cfg_lexer.c
7.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/* cfg_lexer.c -- default lexer for Mailutils configuration files
Copyright (C) 2007 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <ctype.h>
#include <mailutils/argcv.h>
#include <mailutils/nls.h>
#include <mailutils/cfg.h>
#include <mailutils/errno.h>
#include <mailutils/error.h>
#include <mailutils/mutil.h>
#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
#include "obstack.h"
#include "cfg_parser.h"
struct lexer_data
{
char *buffer;
char *curp;
struct obstack stk;
};
static void
skipws (struct lexer_data *p)
{
while (*p->curp && isspace (*p->curp))
{
if (*p->curp == '\n')
mu_cfg_locus.line++;
p->curp++;
}
}
static void
skipline (struct lexer_data *p)
{
while (*p->curp && *p->curp != '\n')
p->curp++;
}
static int
isword (int c)
{
if (mu_cfg_tie_in)
return c && c != ';';
return isalnum (c) || c == '_' || c == '-';
}
static char *
copy_alpha (struct lexer_data *p)
{
do
{
if (*p->curp == '\n')
mu_cfg_locus.line++;
obstack_1grow (&p->stk, *p->curp);
p->curp++;
} while (*p->curp && isword(*p->curp));
obstack_1grow (&p->stk, 0);
return obstack_finish (&p->stk);
}
static char *
copy_string(struct lexer_data *p)
{
int quote = *p->curp++;
while (*p->curp)
{
if (*p->curp == '\\')
{
char c;
if (*++p->curp == 0)
{
obstack_1grow (&p->stk, '\\');
break;
}
c = mu_argcv_unquote_char (*p->curp);
if (c == *p->curp)
{
obstack_1grow (&p->stk, '\\');
obstack_1grow (&p->stk, *p->curp);
}
else
obstack_1grow (&p->stk, c);
p->curp++;
}
else if (*p->curp == quote)
{
p->curp++;
break;
}
else
{
obstack_1grow (&p->stk, *p->curp);
p->curp++;
}
}
obstack_1grow (&p->stk, 0);
return obstack_finish (&p->stk);
}
int
default_lexer (void *dp)
{
struct lexer_data *p = dp;
char *save_start;
char *tag, *label;
again:
skipws (p);
if (*p->curp == '#')
{
skipline (p);
goto again;
}
if (*p->curp == '/' && p->curp[1] == '*')
{
int keep_line = mu_cfg_locus.line;
p->curp += 2;
do
{
while (*p->curp != '*')
{
if (*p->curp == 0)
{
mu_cfg_perror (p,
&mu_cfg_locus,
_("unexpected EOF in comment started at line %d"),
keep_line);
return 0;
}
else if (*p->curp == '\n')
mu_cfg_locus.line++;
++p->curp;
}
} while (*++p->curp != '/');
++p->curp;
goto again;
}
if (*p->curp == 0)
return 0;
if (*p->curp == '\"')
{
mu_cfg_yylval.string = copy_string (p);
return MU_CFG_STRING_TOKEN;
}
if (mu_cfg_tie_in)
{
mu_cfg_yylval.string = copy_alpha (p);
return MU_CFG_STRING_TOKEN;
}
if (*p->curp == '}')
{
p->curp++;
memset (&mu_cfg_yylval.node, 0, sizeof mu_cfg_yylval.node);
mu_cfg_yylval.node.locus = mu_cfg_locus;
return MU_CFG_END_TOKEN;
}
if (*p->curp == ';')
{
p->curp++;
return MU_CFG_EOL_TOKEN;
}
tag = copy_alpha (p);
skipws (p);
if (*p->curp == '"')
{
mu_cfg_yylval.string = tag;
return MU_CFG_STRING_TOKEN;
}
save_start = p->curp;
if (*p->curp != '{')
{
label = copy_alpha(p);
skipws(p);
}
else
label = NULL;
if (*p->curp == '{')
{
p->curp++;
mu_cfg_yylval.node.tag_name = tag;
mu_cfg_yylval.node.locus = mu_cfg_locus;
mu_cfg_yylval.node.tag_label = label;
return MU_CFG_START_TOKEN;
}
else
{
p->curp = save_start;
mu_cfg_yylval.string = tag;
}
return MU_CFG_STRING_TOKEN;
}
static struct mu_cfg_section *root_section;
int
mu_config_register_section (const char *parent_path,
const char *ident,
mu_cfg_section_fp parser,
void *data,
struct mu_cfg_param *param)
{
struct mu_cfg_section *parent;
size_t size = 0;
if (!root_section)
{
root_section = calloc (1, sizeof (root_section[0]));
if (!root_section)
return MU_ERR_NOENT;
}
if (parent_path)
{
if (mu_cfg_find_section (root_section, parent_path, &parent))
return MU_ERR_NOENT;
}
else
parent = root_section;
if (ident)
{
struct mu_cfg_section *s;
if (parent->subsec)
for (s = parent->subsec; s->ident; s++)
size++;
s = realloc (parent->subsec, (size + 2) * sizeof parent->subsec[0]);
if (!s)
return ENOMEM;
parent->subsec = s;
s = parent->subsec + size;
s[1].ident = NULL;
s->ident = strdup (ident);
s->parser = parser;
s->data = data;
s->subsec = NULL;
s->param = param;
}
else
{
size_t orig_size = 0;
struct mu_cfg_param *p;
if (parent->param)
for (p = parent->param; p->ident; p++)
orig_size++;
size = 0;
for (p = param; p->ident; p++)
size++;
parent->param = realloc (parent->param,
(size + orig_size + 1)
* sizeof (parent->param[0]));
memcpy (parent->param + orig_size, param,
size * sizeof (parent->param[0]));
if (!parent->parser)
parent->parser = parser;
if (!parent->data)
parent->data = data;
}
return 0;
}
int
mu_config_register_plain_section (const char *parent_path, const char *ident,
struct mu_cfg_param *params)
{
return mu_config_register_section (parent_path, ident, NULL, NULL, params);
}
static int
_mu_parse_config (char *file, char *progname)
{
struct lexer_data data;
struct stat st;
int fd;
extern int mu_cfg_yydebug;
int rc;
mu_cfg_node_t *parse_tree;
mu_cfg_locus.file = file;
mu_cfg_locus.line = 1;
if (stat (mu_cfg_locus.file, &st))
{
mu_error (_("can't stat `%s'"), mu_cfg_locus.file);
return -1;
}
fd = open (mu_cfg_locus.file, O_RDONLY);
if (fd == -1)
{
if (errno != ENOENT)
mu_error (_("can't open config file `%s'"),
mu_cfg_locus.file);
return -1;
}
data.buffer = malloc (st.st_size+1);
read (fd, data.buffer, st.st_size);
data.buffer[st.st_size] = 0;
close (fd);
data.curp = data.buffer;
mu_cfg_yydebug = strncmp (data.curp, "#debug", 6) == 0;
obstack_init (&data.stk);
/* Parse configuration */
rc = mu_cfg_parse (&parse_tree,
&data,
default_lexer,
NULL,
NULL,
NULL);
if (rc == 0)
{
rc = mu_cfg_scan_tree (parse_tree, root_section,
progname, NULL, NULL, NULL);
}
mu_cfg_destroy_tree (&parse_tree);
obstack_free (&data.stk, NULL);
free (data.buffer);
return rc;
}
int
mu_parse_config (char *file, char *progname)
{
int rc;
char *full_name = mu_tilde_expansion (file, "/", NULL);
if (full_name)
{
if (access (full_name, R_OK) == 0)
{
rc = _mu_parse_config (full_name, progname);
free (full_name);
}
else
rc = ENOENT;
}
else
rc = ENOMEM;
return rc;
}