/src/ntp-dev/sntp/libopts/configfile.c
Line | Count | Source (jump to first uncovered line) |
1 | | /** |
2 | | * \file configfile.c |
3 | | * |
4 | | * configuration/rc/ini file handling. |
5 | | * |
6 | | * @addtogroup autoopts |
7 | | * @{ |
8 | | */ |
9 | | /* |
10 | | * This file is part of AutoOpts, a companion to AutoGen. |
11 | | * AutoOpts is free software. |
12 | | * AutoOpts is Copyright (C) 1992-2015 by Bruce Korb - all rights reserved |
13 | | * |
14 | | * AutoOpts is available under any one of two licenses. The license |
15 | | * in use must be one of these two and the choice is under the control |
16 | | * of the user of the license. |
17 | | * |
18 | | * The GNU Lesser General Public License, version 3 or later |
19 | | * See the files "COPYING.lgplv3" and "COPYING.gplv3" |
20 | | * |
21 | | * The Modified Berkeley Software Distribution License |
22 | | * See the file "COPYING.mbsd" |
23 | | * |
24 | | * These files have the following sha256 sums: |
25 | | * |
26 | | * 8584710e9b04216a394078dc156b781d0b47e1729104d666658aecef8ee32e95 COPYING.gplv3 |
27 | | * 4379e7444a0e2ce2b12dd6f5a52a27a4d02d39d247901d3285c88cf0d37f477b COPYING.lgplv3 |
28 | | * 13aa749a5b0a454917a944ed8fffc530b784f5ead522b1aacaf4ec8aa55a6239 COPYING.mbsd |
29 | | */ |
30 | | |
31 | | /* = = = START-STATIC-FORWARD = = = */ |
32 | | static void |
33 | | file_preset(tOptions * opts, char const * fname, int dir); |
34 | | |
35 | | static char * |
36 | | handle_comment(char * txt); |
37 | | |
38 | | static char * |
39 | | handle_cfg(tOptions * opts, tOptState * ost, char * txt, int dir); |
40 | | |
41 | | static char * |
42 | | handle_directive(tOptions * opts, char * txt); |
43 | | |
44 | | static char * |
45 | | aoflags_directive(tOptions * opts, char * txt); |
46 | | |
47 | | static char * |
48 | | program_directive(tOptions * opts, char * txt); |
49 | | |
50 | | static char * |
51 | | handle_section(tOptions * opts, char * txt); |
52 | | |
53 | | static int |
54 | | parse_xml_encoding(char ** ppz); |
55 | | |
56 | | static char * |
57 | | trim_xml_text(char * intxt, char const * pznm, tOptionLoadMode mode); |
58 | | |
59 | | static void |
60 | | cook_xml_text(char * pzData); |
61 | | |
62 | | static char * |
63 | | handle_struct(tOptions * opts, tOptState * ost, char * txt, int dir); |
64 | | |
65 | | static char const * |
66 | | parse_keyword(tOptions * opts, char const * txt, tOptionValue * typ); |
67 | | |
68 | | static char const * |
69 | | parse_set_mem(tOptions * opts, char const * txt, tOptionValue * typ); |
70 | | |
71 | | static char const * |
72 | | parse_value(char const * txt, tOptionValue * typ); |
73 | | /* = = = END-STATIC-FORWARD = = = */ |
74 | | |
75 | | /** |
76 | | * Skip over some unknown attribute |
77 | | * @param[in] txt start of skpped text |
78 | | * @returns character after skipped text |
79 | | */ |
80 | | inline static char const * |
81 | | skip_unkn(char const * txt) |
82 | 0 | { |
83 | 0 | txt = BRK_END_XML_TOKEN_CHARS(txt); |
84 | 0 | return (*txt == NUL) ? NULL : txt; |
85 | 0 | } |
86 | | |
87 | | /*=export_func configFileLoad |
88 | | * |
89 | | * what: parse a configuration file |
90 | | * arg: + char const * + fname + the file to load + |
91 | | * |
92 | | * ret_type: const tOptionValue * |
93 | | * ret_desc: An allocated, compound value structure |
94 | | * |
95 | | * doc: |
96 | | * This routine will load a named configuration file and parse the |
97 | | * text as a hierarchically valued option. The option descriptor |
98 | | * created from an option definition file is not used via this interface. |
99 | | * The returned value is "named" with the input file name and is of |
100 | | * type "@code{OPARG_TYPE_HIERARCHY}". It may be used in calls to |
101 | | * @code{optionGetValue()}, @code{optionNextValue()} and |
102 | | * @code{optionUnloadNested()}. |
103 | | * |
104 | | * err: |
105 | | * If the file cannot be loaded or processed, @code{NULL} is returned and |
106 | | * @var{errno} is set. It may be set by a call to either @code{open(2)} |
107 | | * @code{mmap(2)} or other file system calls, or it may be: |
108 | | * @itemize @bullet |
109 | | * @item |
110 | | * @code{ENOENT} - the file was not found. |
111 | | * @item |
112 | | * @code{ENOMSG} - the file was empty. |
113 | | * @item |
114 | | * @code{EINVAL} - the file contents are invalid -- not properly formed. |
115 | | * @item |
116 | | * @code{ENOMEM} - not enough memory to allocate the needed structures. |
117 | | * @end itemize |
118 | | =*/ |
119 | | const tOptionValue * |
120 | | configFileLoad(char const * fname) |
121 | 0 | { |
122 | 0 | tmap_info_t cfgfile; |
123 | 0 | tOptionValue * res = NULL; |
124 | 0 | tOptionLoadMode save_mode = option_load_mode; |
125 | |
|
126 | 0 | char * txt = text_mmap(fname, PROT_READ, MAP_PRIVATE, &cfgfile); |
127 | |
|
128 | 0 | if (TEXT_MMAP_FAILED_ADDR(txt)) |
129 | 0 | return NULL; /* errno is set */ |
130 | | |
131 | 0 | option_load_mode = OPTION_LOAD_COOKED; |
132 | 0 | res = optionLoadNested(txt, fname, strlen(fname)); |
133 | |
|
134 | 0 | if (res == NULL) { |
135 | 0 | int err = errno; |
136 | 0 | text_munmap(&cfgfile); |
137 | 0 | errno = err; |
138 | 0 | } else |
139 | 0 | text_munmap(&cfgfile); |
140 | |
|
141 | 0 | option_load_mode = save_mode; |
142 | 0 | return res; |
143 | 0 | } |
144 | | |
145 | | |
146 | | /*=export_func optionFindValue |
147 | | * |
148 | | * what: find a hierarcicaly valued option instance |
149 | | * arg: + const tOptDesc * + odesc + an option with a nested arg type + |
150 | | * arg: + char const * + name + name of value to find + |
151 | | * arg: + char const * + val + the matching value + |
152 | | * |
153 | | * ret_type: const tOptionValue * |
154 | | * ret_desc: a compound value structure |
155 | | * |
156 | | * doc: |
157 | | * This routine will find an entry in a nested value option or configurable. |
158 | | * It will search through the list and return a matching entry. |
159 | | * |
160 | | * err: |
161 | | * The returned result is NULL and errno is set: |
162 | | * @itemize @bullet |
163 | | * @item |
164 | | * @code{EINVAL} - the @code{pOptValue} does not point to a valid |
165 | | * hierarchical option value. |
166 | | * @item |
167 | | * @code{ENOENT} - no entry matched the given name. |
168 | | * @end itemize |
169 | | =*/ |
170 | | const tOptionValue * |
171 | | optionFindValue(const tOptDesc * odesc, char const * name, char const * val) |
172 | 0 | { |
173 | 0 | const tOptionValue * res = NULL; |
174 | |
|
175 | 0 | if ( (odesc == NULL) |
176 | 0 | || (OPTST_GET_ARGTYPE(odesc->fOptState) != OPARG_TYPE_HIERARCHY)) { |
177 | 0 | errno = EINVAL; |
178 | 0 | } |
179 | | |
180 | 0 | else if (odesc->optCookie == NULL) { |
181 | 0 | errno = ENOENT; |
182 | 0 | } |
183 | | |
184 | 0 | else do { |
185 | 0 | tArgList * argl = odesc->optCookie; |
186 | 0 | int argct = argl->useCt; |
187 | 0 | void ** poptv = (void **)(argl->apzArgs); |
188 | |
|
189 | 0 | if (argct == 0) { |
190 | 0 | errno = ENOENT; |
191 | 0 | break; |
192 | 0 | } |
193 | | |
194 | 0 | if (name == NULL) { |
195 | 0 | res = (tOptionValue *)*poptv; |
196 | 0 | break; |
197 | 0 | } |
198 | | |
199 | 0 | while (--argct >= 0) { |
200 | 0 | const tOptionValue * ov = *(poptv++); |
201 | 0 | const tOptionValue * rv = optionGetValue(ov, name); |
202 | |
|
203 | 0 | if (rv == NULL) |
204 | 0 | continue; |
205 | | |
206 | 0 | if (val == NULL) { |
207 | 0 | res = ov; |
208 | 0 | break; |
209 | 0 | } |
210 | 0 | } |
211 | 0 | if (res == NULL) |
212 | 0 | errno = ENOENT; |
213 | 0 | } while (false); |
214 | | |
215 | 0 | return res; |
216 | 0 | } |
217 | | |
218 | | |
219 | | /*=export_func optionFindNextValue |
220 | | * |
221 | | * FIXME: the handling of 'pzName' and 'pzVal' is just wrong. |
222 | | * |
223 | | * what: find a hierarcicaly valued option instance |
224 | | * arg: + const tOptDesc * + odesc + an option with a nested arg type + |
225 | | * arg: + const tOptionValue * + pPrevVal + the last entry + |
226 | | * arg: + char const * + name + name of value to find + |
227 | | * arg: + char const * + value + the matching value + |
228 | | * |
229 | | * ret_type: const tOptionValue * |
230 | | * ret_desc: a compound value structure |
231 | | * |
232 | | * doc: |
233 | | * This routine will find the next entry in a nested value option or |
234 | | * configurable. It will search through the list and return the next entry |
235 | | * that matches the criteria. |
236 | | * |
237 | | * err: |
238 | | * The returned result is NULL and errno is set: |
239 | | * @itemize @bullet |
240 | | * @item |
241 | | * @code{EINVAL} - the @code{pOptValue} does not point to a valid |
242 | | * hierarchical option value. |
243 | | * @item |
244 | | * @code{ENOENT} - no entry matched the given name. |
245 | | * @end itemize |
246 | | =*/ |
247 | | tOptionValue const * |
248 | | optionFindNextValue(const tOptDesc * odesc, const tOptionValue * pPrevVal, |
249 | | char const * pzName, char const * pzVal) |
250 | 0 | { |
251 | 0 | bool old_found = false; |
252 | 0 | tOptionValue * res = NULL; |
253 | |
|
254 | 0 | (void)pzName; |
255 | 0 | (void)pzVal; |
256 | |
|
257 | 0 | if ( (odesc == NULL) |
258 | 0 | || (OPTST_GET_ARGTYPE(odesc->fOptState) != OPARG_TYPE_HIERARCHY)) { |
259 | 0 | errno = EINVAL; |
260 | 0 | } |
261 | | |
262 | 0 | else if (odesc->optCookie == NULL) { |
263 | 0 | errno = ENOENT; |
264 | 0 | } |
265 | | |
266 | 0 | else do { |
267 | 0 | tArgList * argl = odesc->optCookie; |
268 | 0 | int ct = argl->useCt; |
269 | 0 | void ** poptv = (void **)argl->apzArgs; |
270 | |
|
271 | 0 | while (--ct >= 0) { |
272 | 0 | tOptionValue * pOV = *(poptv++); |
273 | 0 | if (old_found) { |
274 | 0 | res = pOV; |
275 | 0 | break; |
276 | 0 | } |
277 | 0 | if (pOV == pPrevVal) |
278 | 0 | old_found = true; |
279 | 0 | } |
280 | 0 | if (res == NULL) |
281 | 0 | errno = ENOENT; |
282 | 0 | } while (false); |
283 | |
|
284 | 0 | return res; |
285 | 0 | } |
286 | | |
287 | | |
288 | | /*=export_func optionGetValue |
289 | | * |
290 | | * what: get a specific value from a hierarcical list |
291 | | * arg: + const tOptionValue * + pOptValue + a hierarchcal value + |
292 | | * arg: + char const * + valueName + name of value to get + |
293 | | * |
294 | | * ret_type: const tOptionValue * |
295 | | * ret_desc: a compound value structure |
296 | | * |
297 | | * doc: |
298 | | * This routine will find an entry in a nested value option or configurable. |
299 | | * If "valueName" is NULL, then the first entry is returned. Otherwise, |
300 | | * the first entry with a name that exactly matches the argument will be |
301 | | * returned. If there is no matching value, NULL is returned and errno is |
302 | | * set to ENOENT. If the provided option value is not a hierarchical value, |
303 | | * NULL is also returned and errno is set to EINVAL. |
304 | | * |
305 | | * err: |
306 | | * The returned result is NULL and errno is set: |
307 | | * @itemize @bullet |
308 | | * @item |
309 | | * @code{EINVAL} - the @code{pOptValue} does not point to a valid |
310 | | * hierarchical option value. |
311 | | * @item |
312 | | * @code{ENOENT} - no entry matched the given name. |
313 | | * @end itemize |
314 | | =*/ |
315 | | tOptionValue const * |
316 | | optionGetValue(tOptionValue const * oov, char const * vname) |
317 | 0 | { |
318 | 0 | tArgList * arg_list; |
319 | 0 | tOptionValue * res = NULL; |
320 | |
|
321 | 0 | if ((oov == NULL) || (oov->valType != OPARG_TYPE_HIERARCHY)) { |
322 | 0 | errno = EINVAL; |
323 | 0 | return res; |
324 | 0 | } |
325 | 0 | arg_list = oov->v.nestVal; |
326 | |
|
327 | 0 | if (arg_list->useCt > 0) { |
328 | 0 | int ct = arg_list->useCt; |
329 | 0 | void ** ovlist = (void **)(arg_list->apzArgs); |
330 | |
|
331 | 0 | if (vname == NULL) { |
332 | 0 | res = (tOptionValue *)*ovlist; |
333 | |
|
334 | 0 | } else do { |
335 | 0 | tOptionValue * opt_val = *(ovlist++); |
336 | 0 | if (strcmp(opt_val->pzName, vname) == 0) { |
337 | 0 | res = opt_val; |
338 | 0 | break; |
339 | 0 | } |
340 | 0 | } while (--ct > 0); |
341 | 0 | } |
342 | 0 | if (res == NULL) |
343 | 0 | errno = ENOENT; |
344 | 0 | return res; |
345 | 0 | } |
346 | | |
347 | | /*=export_func optionNextValue |
348 | | * |
349 | | * what: get the next value from a hierarchical list |
350 | | * arg: + const tOptionValue * + pOptValue + a hierarchcal list value + |
351 | | * arg: + const tOptionValue * + pOldValue + a value from this list + |
352 | | * |
353 | | * ret_type: const tOptionValue * |
354 | | * ret_desc: a compound value structure |
355 | | * |
356 | | * doc: |
357 | | * This routine will return the next entry after the entry passed in. At the |
358 | | * end of the list, NULL will be returned. If the entry is not found on the |
359 | | * list, NULL will be returned and "@var{errno}" will be set to EINVAL. |
360 | | * The "@var{pOldValue}" must have been gotten from a prior call to this |
361 | | * routine or to "@code{opitonGetValue()}". |
362 | | * |
363 | | * err: |
364 | | * The returned result is NULL and errno is set: |
365 | | * @itemize @bullet |
366 | | * @item |
367 | | * @code{EINVAL} - the @code{pOptValue} does not point to a valid |
368 | | * hierarchical option value or @code{pOldValue} does not point to a |
369 | | * member of that option value. |
370 | | * @item |
371 | | * @code{ENOENT} - the supplied @code{pOldValue} pointed to the last entry. |
372 | | * @end itemize |
373 | | =*/ |
374 | | tOptionValue const * |
375 | | optionNextValue(tOptionValue const * ov_list,tOptionValue const * oov ) |
376 | 0 | { |
377 | 0 | tArgList * arg_list; |
378 | 0 | tOptionValue * res = NULL; |
379 | 0 | int err = EINVAL; |
380 | |
|
381 | 0 | if ((ov_list == NULL) || (ov_list->valType != OPARG_TYPE_HIERARCHY)) { |
382 | 0 | errno = EINVAL; |
383 | 0 | return NULL; |
384 | 0 | } |
385 | 0 | arg_list = ov_list->v.nestVal; |
386 | 0 | { |
387 | 0 | int ct = arg_list->useCt; |
388 | 0 | void ** o_list = (void **)(arg_list->apzArgs); |
389 | |
|
390 | 0 | while (ct-- > 0) { |
391 | 0 | tOptionValue * nov = *(o_list++); |
392 | 0 | if (nov == oov) { |
393 | 0 | if (ct == 0) { |
394 | 0 | err = ENOENT; |
395 | |
|
396 | 0 | } else { |
397 | 0 | err = 0; |
398 | 0 | res = (tOptionValue *)*o_list; |
399 | 0 | } |
400 | 0 | break; |
401 | 0 | } |
402 | 0 | } |
403 | 0 | } |
404 | 0 | if (err != 0) |
405 | 0 | errno = err; |
406 | 0 | return res; |
407 | 0 | } |
408 | | |
409 | | /** |
410 | | * Load a file containing presetting information (a configuration file). |
411 | | */ |
412 | | static void |
413 | | file_preset(tOptions * opts, char const * fname, int dir) |
414 | 0 | { |
415 | 0 | tmap_info_t cfgfile; |
416 | 0 | tOptState optst = OPTSTATE_INITIALIZER(PRESET); |
417 | 0 | opt_state_mask_t st_flags = optst.flags; |
418 | 0 | opt_state_mask_t fl_save = opts->fOptSet; |
419 | 0 | char * ftext = |
420 | 0 | text_mmap(fname, PROT_READ|PROT_WRITE, MAP_PRIVATE, &cfgfile); |
421 | |
|
422 | 0 | if (TEXT_MMAP_FAILED_ADDR(ftext)) |
423 | 0 | return; |
424 | | |
425 | | /* |
426 | | * While processing config files, we ignore errors. |
427 | | */ |
428 | 0 | opts->fOptSet &= ~OPTPROC_ERRSTOP; |
429 | |
|
430 | 0 | if (dir == DIRECTION_CALLED) { |
431 | 0 | st_flags = OPTST_DEFINED; |
432 | 0 | dir = DIRECTION_PROCESS; |
433 | 0 | } |
434 | | |
435 | | /* |
436 | | * IF this is called via "optionProcess", then we are presetting. |
437 | | * This is the default and the PRESETTING bit will be set. |
438 | | * If this is called via "optionFileLoad", then the bit is not set |
439 | | * and we consider stuff set herein to be "set" by the client program. |
440 | | */ |
441 | 0 | if ((opts->fOptSet & OPTPROC_PRESETTING) == 0) |
442 | 0 | st_flags = OPTST_SET; |
443 | |
|
444 | 0 | do { |
445 | 0 | optst.flags = st_flags; |
446 | 0 | ftext = SPN_WHITESPACE_CHARS(ftext); |
447 | |
|
448 | 0 | if (IS_VAR_FIRST_CHAR(*ftext)) { |
449 | 0 | ftext = handle_cfg(opts, &optst, ftext, dir); |
450 | |
|
451 | 0 | } else switch (*ftext) { |
452 | 0 | case '<': |
453 | 0 | if (IS_VAR_FIRST_CHAR(ftext[1])) |
454 | 0 | ftext = handle_struct(opts, &optst, ftext, dir); |
455 | | |
456 | 0 | else switch (ftext[1]) { |
457 | 0 | case '?': |
458 | 0 | ftext = handle_directive(opts, ftext); |
459 | 0 | break; |
460 | | |
461 | 0 | case '!': |
462 | 0 | ftext = handle_comment(ftext); |
463 | 0 | break; |
464 | | |
465 | 0 | case '/': |
466 | 0 | ftext = strchr(ftext + 2, '>'); |
467 | 0 | if (ftext++ != NULL) |
468 | 0 | break; |
469 | | |
470 | 0 | default: |
471 | 0 | ftext = NULL; |
472 | 0 | } |
473 | 0 | if (ftext == NULL) |
474 | 0 | goto all_done; |
475 | 0 | break; |
476 | | |
477 | 0 | case '[': |
478 | 0 | ftext = handle_section(opts, ftext); |
479 | 0 | break; |
480 | | |
481 | 0 | case '#': |
482 | 0 | ftext = strchr(ftext + 1, NL); |
483 | 0 | break; |
484 | | |
485 | 0 | default: |
486 | 0 | goto all_done; /* invalid format */ |
487 | 0 | } |
488 | 0 | } while (ftext != NULL); |
489 | | |
490 | 0 | all_done: |
491 | 0 | text_munmap(&cfgfile); |
492 | 0 | opts->fOptSet = fl_save; |
493 | 0 | } |
494 | | |
495 | | /** |
496 | | * "txt" points to a "<!" sequence. |
497 | | * Theoretically, we should ensure that it begins with "<!--", |
498 | | * but actually I don't care that much. It ends with "-->". |
499 | | */ |
500 | | static char * |
501 | | handle_comment(char * txt) |
502 | 0 | { |
503 | 0 | char * pz = strstr(txt, "-->"); |
504 | 0 | if (pz != NULL) |
505 | 0 | pz += 3; |
506 | 0 | return pz; |
507 | 0 | } |
508 | | |
509 | | /** |
510 | | * "txt" points to the start of some value name. |
511 | | * The end of the entry is the end of the line that is not preceded by |
512 | | * a backslash escape character. The string value is always processed |
513 | | * in "cooked" mode. |
514 | | */ |
515 | | static char * |
516 | | handle_cfg(tOptions * opts, tOptState * ost, char * txt, int dir) |
517 | 0 | { |
518 | 0 | char * pzName = txt++; |
519 | 0 | char * pzEnd = strchr(txt, NL); |
520 | |
|
521 | 0 | if (pzEnd == NULL) |
522 | 0 | return txt + strlen(txt); |
523 | | |
524 | 0 | txt = SPN_VALUE_NAME_CHARS(txt); |
525 | 0 | txt = SPN_WHITESPACE_CHARS(txt); |
526 | 0 | if (txt > pzEnd) { |
527 | 0 | name_only: |
528 | 0 | *pzEnd++ = NUL; |
529 | 0 | load_opt_line(opts, ost, pzName, dir, OPTION_LOAD_UNCOOKED); |
530 | 0 | return pzEnd; |
531 | 0 | } |
532 | | |
533 | | /* |
534 | | * Either the first character after the name is a ':' or '=', |
535 | | * or else we must have skipped over white space. Anything else |
536 | | * is an invalid format and we give up parsing the text. |
537 | | */ |
538 | 0 | if ((*txt == '=') || (*txt == ':')) { |
539 | 0 | txt = SPN_WHITESPACE_CHARS(txt+1); |
540 | 0 | if (txt > pzEnd) |
541 | 0 | goto name_only; |
542 | 0 | } else if (! IS_WHITESPACE_CHAR(txt[-1])) |
543 | 0 | return NULL; |
544 | | |
545 | | /* |
546 | | * IF the value is continued, remove the backslash escape and push "pzEnd" |
547 | | * on to a newline *not* preceded by a backslash. |
548 | | */ |
549 | 0 | if (pzEnd[-1] == '\\') { |
550 | 0 | char * pcD = pzEnd-1; |
551 | 0 | char * pcS = pzEnd; |
552 | |
|
553 | 0 | for (;;) { |
554 | 0 | char ch = *(pcS++); |
555 | 0 | switch (ch) { |
556 | 0 | case NUL: |
557 | 0 | pcS = NULL; |
558 | | /* FALLTHROUGH */ |
559 | |
|
560 | 0 | case NL: |
561 | 0 | *pcD = NUL; |
562 | 0 | pzEnd = pcS; |
563 | 0 | goto copy_done; |
564 | | |
565 | 0 | case '\\': |
566 | 0 | if (*pcS == NL) |
567 | 0 | ch = *(pcS++); |
568 | | /* FALLTHROUGH */ |
569 | 0 | default: |
570 | 0 | *(pcD++) = ch; |
571 | 0 | } |
572 | 0 | } copy_done:; |
573 | |
|
574 | 0 | } else { |
575 | | /* |
576 | | * The newline was not preceded by a backslash. NUL it out |
577 | | */ |
578 | 0 | *(pzEnd++) = NUL; |
579 | 0 | } |
580 | | |
581 | | /* |
582 | | * "pzName" points to what looks like text for one option/configurable. |
583 | | * It is NUL terminated. Process it. |
584 | | */ |
585 | 0 | load_opt_line(opts, ost, pzName, dir, OPTION_LOAD_UNCOOKED); |
586 | |
|
587 | 0 | return pzEnd; |
588 | 0 | } |
589 | | |
590 | | /** |
591 | | * "txt" points to a "<?" sequence. |
592 | | * We handle "<?program" and "<?auto-options" directives. |
593 | | * All others are treated as comments. |
594 | | * |
595 | | * @param[in,out] opts program option descriptor |
596 | | * @param[in] txt scanning pointer |
597 | | * @returns the next character to look at |
598 | | */ |
599 | | static char * |
600 | | handle_directive(tOptions * opts, char * txt) |
601 | 0 | { |
602 | 0 | # define DIRECTIVE_TABLE \ |
603 | 0 | _dt_(zCfgProg, program_directive) \ |
604 | 0 | _dt_(zCfgAO_Flags, aoflags_directive) |
605 | |
|
606 | 0 | typedef char * (directive_func_t)(tOptions *, char *); |
607 | 0 | # define _dt_(_s, _fn) _fn, |
608 | 0 | static directive_func_t * dir_disp[] = { |
609 | 0 | DIRECTIVE_TABLE |
610 | 0 | }; |
611 | 0 | # undef _dt_ |
612 | |
|
613 | 0 | # define _dt_(_s, _fn) 1 + |
614 | 0 | static int const dir_ct = DIRECTIVE_TABLE 0; |
615 | 0 | static char const * dir_names[DIRECTIVE_TABLE 0]; |
616 | 0 | # undef _dt_ |
617 | |
|
618 | 0 | int ix; |
619 | |
|
620 | 0 | if (dir_names[0] == NULL) { |
621 | 0 | ix = 0; |
622 | 0 | # define _dt_(_s, _fn) dir_names[ix++] = _s; |
623 | 0 | DIRECTIVE_TABLE; |
624 | 0 | # undef _dt_ |
625 | 0 | } |
626 | |
|
627 | 0 | for (ix = 0; ix < dir_ct; ix++) { |
628 | 0 | size_t len = strlen(dir_names[ix]); |
629 | 0 | if ( (strncmp(txt + 2, dir_names[ix], len) == 0) |
630 | 0 | && (! IS_VALUE_NAME_CHAR(txt[len+2])) ) |
631 | 0 | return dir_disp[ix](opts, txt + len + 2); |
632 | 0 | } |
633 | | |
634 | | /* |
635 | | * We don't know what this is. Skip it. |
636 | | */ |
637 | 0 | txt = strchr(txt+2, '>'); |
638 | 0 | if (txt != NULL) |
639 | 0 | txt++; |
640 | 0 | return txt; |
641 | 0 | # undef DIRECTIVE_TABLE |
642 | 0 | } |
643 | | |
644 | | /** |
645 | | * handle AutoOpts mode flags. |
646 | | * |
647 | | * @param[in,out] opts program option descriptor |
648 | | * @param[in] txt scanning pointer |
649 | | * @returns the next character to look at |
650 | | */ |
651 | | static char * |
652 | | aoflags_directive(tOptions * opts, char * txt) |
653 | 0 | { |
654 | 0 | char * pz; |
655 | |
|
656 | 0 | pz = SPN_WHITESPACE_CHARS(txt+1); |
657 | 0 | txt = strchr(pz, '>'); |
658 | 0 | if (txt != NULL) { |
659 | |
|
660 | 0 | size_t len = (unsigned)(txt - pz); |
661 | 0 | char * ftxt = AGALOC(len + 1, "aoflags"); |
662 | |
|
663 | 0 | memcpy(ftxt, pz, len); |
664 | 0 | ftxt[len] = NUL; |
665 | 0 | set_usage_flags(opts, ftxt); |
666 | 0 | AGFREE(ftxt); |
667 | |
|
668 | 0 | txt++; |
669 | 0 | } |
670 | |
|
671 | 0 | return txt; |
672 | 0 | } |
673 | | |
674 | | /** |
675 | | * handle program segmentation of config file. |
676 | | * |
677 | | * @param[in,out] opts program option descriptor |
678 | | * @param[in] txt scanning pointer |
679 | | * @returns the next character to look at |
680 | | */ |
681 | | static char * |
682 | | program_directive(tOptions * opts, char * txt) |
683 | 0 | { |
684 | 0 | static char const ttlfmt[] = "<?"; |
685 | 0 | size_t ttl_len = sizeof(ttlfmt) + strlen(zCfgProg); |
686 | 0 | char * ttl = AGALOC(ttl_len, "prog title"); |
687 | 0 | size_t name_len = strlen(opts->pzProgName); |
688 | |
|
689 | 0 | memcpy(ttl, ttlfmt, sizeof(ttlfmt) - 1); |
690 | 0 | memcpy(ttl + sizeof(ttlfmt) - 1, zCfgProg, ttl_len - (sizeof(ttlfmt) - 1)); |
691 | |
|
692 | 0 | do { |
693 | 0 | txt = SPN_WHITESPACE_CHARS(txt+1); |
694 | |
|
695 | 0 | if ( (strneqvcmp(txt, opts->pzProgName, (int)name_len) == 0) |
696 | 0 | && (IS_END_XML_TOKEN_CHAR(txt[name_len])) ) { |
697 | 0 | txt += name_len; |
698 | 0 | break; |
699 | 0 | } |
700 | | |
701 | 0 | txt = strstr(txt, ttl); |
702 | 0 | } while (txt != NULL); |
703 | | |
704 | 0 | AGFREE(ttl); |
705 | 0 | if (txt != NULL) |
706 | 0 | for (;;) { |
707 | 0 | if (*txt == NUL) { |
708 | 0 | txt = NULL; |
709 | 0 | break; |
710 | 0 | } |
711 | 0 | if (*(txt++) == '>') |
712 | 0 | break; |
713 | 0 | } |
714 | |
|
715 | 0 | return txt; |
716 | 0 | } |
717 | | |
718 | | /** |
719 | | * "txt" points to a '[' character. |
720 | | * The "traditional" [PROG_NAME] segmentation of the config file. |
721 | | * Do not ever mix with the "<?program prog-name>" variation. |
722 | | * |
723 | | * @param[in,out] opts program option descriptor |
724 | | * @param[in] txt scanning pointer |
725 | | * @returns the next character to look at |
726 | | */ |
727 | | static char * |
728 | | handle_section(tOptions * opts, char * txt) |
729 | 0 | { |
730 | 0 | size_t len = strlen(opts->pzPROGNAME); |
731 | 0 | if ( (strncmp(txt+1, opts->pzPROGNAME, len) == 0) |
732 | 0 | && (txt[len+1] == ']')) |
733 | 0 | return strchr(txt + len + 2, NL); |
734 | | |
735 | 0 | if (len > 16) |
736 | 0 | return NULL; |
737 | | |
738 | 0 | { |
739 | 0 | char z[24]; |
740 | 0 | sprintf(z, "[%s]", opts->pzPROGNAME); |
741 | 0 | txt = strstr(txt, z); |
742 | 0 | } |
743 | |
|
744 | 0 | if (txt != NULL) |
745 | 0 | txt = strchr(txt, NL); |
746 | 0 | return txt; |
747 | 0 | } |
748 | | |
749 | | /** |
750 | | * parse XML encodings |
751 | | */ |
752 | | static int |
753 | | parse_xml_encoding(char ** ppz) |
754 | 0 | { |
755 | 0 | # define XMLTABLE \ |
756 | 0 | _xmlNm_(amp, '&') \ |
757 | 0 | _xmlNm_(lt, '<') \ |
758 | 0 | _xmlNm_(gt, '>') \ |
759 | 0 | _xmlNm_(ff, '\f') \ |
760 | 0 | _xmlNm_(ht, '\t') \ |
761 | 0 | _xmlNm_(cr, '\r') \ |
762 | 0 | _xmlNm_(vt, '\v') \ |
763 | 0 | _xmlNm_(bel, '\a') \ |
764 | 0 | _xmlNm_(nl, NL) \ |
765 | 0 | _xmlNm_(space, ' ') \ |
766 | 0 | _xmlNm_(quot, '"') \ |
767 | 0 | _xmlNm_(apos, '\'') |
768 | |
|
769 | 0 | static struct { |
770 | 0 | char const * const nm_str; |
771 | 0 | unsigned short nm_len; |
772 | 0 | short nm_val; |
773 | 0 | } const xml_names[] = { |
774 | 0 | # define _xmlNm_(_n, _v) { #_n ";", sizeof(#_n), _v }, |
775 | 0 | XMLTABLE |
776 | 0 | # undef _xmlNm_ |
777 | 0 | # undef XMLTABLE |
778 | 0 | }; |
779 | |
|
780 | 0 | static int const nm_ct = sizeof(xml_names) / sizeof(xml_names[0]); |
781 | 0 | int base = 10; |
782 | |
|
783 | 0 | char * pz = *ppz; |
784 | |
|
785 | 0 | if (*pz == '#') { |
786 | 0 | pz++; |
787 | 0 | goto parse_number; |
788 | 0 | } |
789 | | |
790 | 0 | if (IS_DEC_DIGIT_CHAR(*pz)) { |
791 | 0 | unsigned long v; |
792 | |
|
793 | 0 | parse_number: |
794 | 0 | switch (*pz) { |
795 | 0 | case 'x': case 'X': |
796 | | /* |
797 | | * Some forms specify hex with: &#xNN; |
798 | | */ |
799 | 0 | base = 16; |
800 | 0 | pz++; |
801 | 0 | break; |
802 | | |
803 | 0 | case '0': |
804 | | /* |
805 | | *  is hex and  is decimal. Cool. |
806 | | * Ya gotta love it. |
807 | | */ |
808 | 0 | if (pz[1] == '0') |
809 | 0 | base = 16; |
810 | 0 | break; |
811 | 0 | } |
812 | | |
813 | 0 | v = strtoul(pz, &pz, base); |
814 | 0 | if ((*pz != ';') || (v > 0x7F)) |
815 | 0 | return NUL; |
816 | 0 | *ppz = pz + 1; |
817 | 0 | return (int)v; |
818 | 0 | } |
819 | | |
820 | 0 | { |
821 | 0 | int ix = 0; |
822 | 0 | do { |
823 | 0 | if (strncmp(pz, xml_names[ix].nm_str, xml_names[ix].nm_len) |
824 | 0 | == 0) { |
825 | 0 | *ppz = pz + xml_names[ix].nm_len; |
826 | 0 | return xml_names[ix].nm_val; |
827 | 0 | } |
828 | 0 | } while (++ix < nm_ct); |
829 | 0 | } |
830 | | |
831 | 0 | return NUL; |
832 | 0 | } |
833 | | |
834 | | /** |
835 | | * Find the end marker for the named section of XML. |
836 | | * Trim that text there, trimming trailing white space for all modes |
837 | | * except for OPTION_LOAD_UNCOOKED. |
838 | | */ |
839 | | static char * |
840 | | trim_xml_text(char * intxt, char const * pznm, tOptionLoadMode mode) |
841 | 0 | { |
842 | 0 | static char const fmt[] = "</%s>"; |
843 | 0 | size_t len = strlen(pznm) + sizeof(fmt) - 2 /* for %s */; |
844 | 0 | char * etext; |
845 | |
|
846 | 0 | { |
847 | 0 | char z[64], *pz = z; |
848 | 0 | if (len >= sizeof(z)) |
849 | 0 | pz = AGALOC(len, "scan name"); |
850 | |
|
851 | 0 | len = (size_t)sprintf(pz, fmt, pznm); |
852 | 0 | *intxt = ' '; |
853 | 0 | etext = strstr(intxt, pz); |
854 | 0 | if (pz != z) AGFREE(pz); |
855 | 0 | } |
856 | |
|
857 | 0 | if (etext == NULL) |
858 | 0 | return etext; |
859 | | |
860 | 0 | { |
861 | 0 | char * result = etext + len; |
862 | |
|
863 | 0 | if (mode != OPTION_LOAD_UNCOOKED) |
864 | 0 | etext = SPN_WHITESPACE_BACK(intxt, etext); |
865 | |
|
866 | 0 | *etext = NUL; |
867 | 0 | return result; |
868 | 0 | } |
869 | 0 | } |
870 | | |
871 | | /** |
872 | | */ |
873 | | static void |
874 | | cook_xml_text(char * pzData) |
875 | 0 | { |
876 | 0 | char * pzs = pzData; |
877 | 0 | char * pzd = pzData; |
878 | 0 | char bf[4]; |
879 | 0 | bf[2] = NUL; |
880 | |
|
881 | 0 | for (;;) { |
882 | 0 | int ch = ((int)*(pzs++)) & 0xFF; |
883 | 0 | switch (ch) { |
884 | 0 | case NUL: |
885 | 0 | *pzd = NUL; |
886 | 0 | return; |
887 | | |
888 | 0 | case '&': |
889 | 0 | ch = parse_xml_encoding(&pzs); |
890 | 0 | *(pzd++) = (char)ch; |
891 | 0 | if (ch == NUL) |
892 | 0 | return; |
893 | 0 | break; |
894 | | |
895 | 0 | case '%': |
896 | 0 | bf[0] = *(pzs++); |
897 | 0 | bf[1] = *(pzs++); |
898 | 0 | if ((bf[0] == NUL) || (bf[1] == NUL)) { |
899 | 0 | *pzd = NUL; |
900 | 0 | return; |
901 | 0 | } |
902 | | |
903 | 0 | ch = (int)strtoul(bf, NULL, 16); |
904 | | /* FALLTHROUGH */ |
905 | |
|
906 | 0 | default: |
907 | 0 | *(pzd++) = (char)ch; |
908 | 0 | } |
909 | 0 | } |
910 | 0 | } |
911 | | |
912 | | /** |
913 | | * "txt" points to a '<' character, followed by an alpha. |
914 | | * The end of the entry is either the "/>" following the name, or else a |
915 | | * "</name>" string. |
916 | | */ |
917 | | static char * |
918 | | handle_struct(tOptions * opts, tOptState * ost, char * txt, int dir) |
919 | 0 | { |
920 | 0 | tOptionLoadMode mode = option_load_mode; |
921 | 0 | tOptionValue valu; |
922 | |
|
923 | 0 | char * pzName = ++txt; |
924 | 0 | char * pzData; |
925 | 0 | char * pcNulPoint; |
926 | |
|
927 | 0 | txt = SPN_VALUE_NAME_CHARS(txt); |
928 | 0 | pcNulPoint = txt; |
929 | 0 | valu.valType = OPARG_TYPE_STRING; |
930 | |
|
931 | 0 | switch (*txt) { |
932 | 0 | case ' ': |
933 | 0 | case '\t': |
934 | 0 | txt = VOIDP(parse_attrs( |
935 | 0 | opts, SPN_WHITESPACE_CHARS(txt), &mode, &valu)); |
936 | 0 | if (txt == NULL) |
937 | 0 | return txt; |
938 | 0 | if (*txt == '>') |
939 | 0 | break; |
940 | 0 | if (*txt != '/') |
941 | 0 | return NULL; |
942 | | /* FALLTHROUGH */ |
943 | | |
944 | 0 | case '/': |
945 | 0 | if (txt[1] != '>') |
946 | 0 | return NULL; |
947 | 0 | *txt = NUL; |
948 | 0 | txt += 2; |
949 | 0 | load_opt_line(opts, ost, pzName, dir, mode); |
950 | 0 | return txt; |
951 | | |
952 | 0 | case '>': |
953 | 0 | break; |
954 | | |
955 | 0 | default: |
956 | 0 | txt = strchr(txt, '>'); |
957 | 0 | if (txt != NULL) |
958 | 0 | txt++; |
959 | 0 | return txt; |
960 | 0 | } |
961 | | |
962 | | /* |
963 | | * If we are here, we have a value. "txt" points to a closing angle |
964 | | * bracket. Separate the name from the value for a moment. |
965 | | */ |
966 | 0 | *pcNulPoint = NUL; |
967 | 0 | pzData = ++txt; |
968 | 0 | txt = trim_xml_text(txt, pzName, mode); |
969 | 0 | if (txt == NULL) |
970 | 0 | return txt; |
971 | | |
972 | | /* |
973 | | * Rejoin the name and value for parsing by "load_opt_line()". |
974 | | * Erase any attributes parsed by "parse_attrs()". |
975 | | */ |
976 | 0 | memset(pcNulPoint, ' ', (size_t)(pzData - pcNulPoint)); |
977 | | |
978 | | /* |
979 | | * If we are getting a "string" value that is to be cooked, |
980 | | * then process the XML-ish &xx; XML-ish and %XX hex characters. |
981 | | */ |
982 | 0 | if ( (valu.valType == OPARG_TYPE_STRING) |
983 | 0 | && (mode == OPTION_LOAD_COOKED)) |
984 | 0 | cook_xml_text(pzData); |
985 | | |
986 | | /* |
987 | | * "pzName" points to what looks like text for one option/configurable. |
988 | | * It is NUL terminated. Process it. |
989 | | */ |
990 | 0 | load_opt_line(opts, ost, pzName, dir, mode); |
991 | |
|
992 | 0 | return txt; |
993 | 0 | } |
994 | | |
995 | | /** |
996 | | * Load a configuration file. This may be invoked either from |
997 | | * scanning the "homerc" list, or from a specific file request. |
998 | | * (see "optionFileLoad()", the implementation for --load-opts) |
999 | | */ |
1000 | | LOCAL void |
1001 | | intern_file_load(tOptions * opts) |
1002 | 0 | { |
1003 | 0 | uint32_t svfl; |
1004 | 0 | int idx; |
1005 | 0 | int inc; |
1006 | 0 | char f_name[ AG_PATH_MAX+1 ]; |
1007 | |
|
1008 | 0 | if (opts->papzHomeList == NULL) |
1009 | 0 | return; |
1010 | | |
1011 | 0 | svfl = opts->fOptSet; |
1012 | 0 | inc = DIRECTION_PRESET; |
1013 | | |
1014 | | /* |
1015 | | * Never stop on errors in config files. |
1016 | | */ |
1017 | 0 | opts->fOptSet &= ~OPTPROC_ERRSTOP; |
1018 | | |
1019 | | /* |
1020 | | * Find the last RC entry (highest priority entry) |
1021 | | */ |
1022 | 0 | for (idx = 0; opts->papzHomeList[ idx+1 ] != NULL; ++idx) ; |
1023 | | |
1024 | | /* |
1025 | | * For every path in the home list, ... *TWICE* We start at the last |
1026 | | * (highest priority) entry, work our way down to the lowest priority, |
1027 | | * handling the immediate options. |
1028 | | * Then we go back up, doing the normal options. |
1029 | | */ |
1030 | 0 | for (;;) { |
1031 | 0 | struct stat sb; |
1032 | 0 | cch_t * path; |
1033 | | |
1034 | | /* |
1035 | | * IF we've reached the bottom end, change direction |
1036 | | */ |
1037 | 0 | if (idx < 0) { |
1038 | 0 | inc = DIRECTION_PROCESS; |
1039 | 0 | idx = 0; |
1040 | 0 | } |
1041 | |
|
1042 | 0 | path = opts->papzHomeList[ idx ]; |
1043 | | |
1044 | | /* |
1045 | | * IF we've reached the top end, bail out |
1046 | | */ |
1047 | 0 | if (path == NULL) |
1048 | 0 | break; |
1049 | | |
1050 | 0 | idx += inc; |
1051 | |
|
1052 | 0 | if (! optionMakePath(f_name, (int)sizeof(f_name), |
1053 | 0 | path, opts->pzProgPath)) |
1054 | 0 | continue; |
1055 | | |
1056 | | /* |
1057 | | * IF the file name we constructed is a directory, |
1058 | | * THEN append the Resource Configuration file name |
1059 | | * ELSE we must have the complete file name |
1060 | | */ |
1061 | 0 | if (stat(f_name, &sb) != 0) |
1062 | 0 | continue; /* bogus name - skip the home list entry */ |
1063 | | |
1064 | 0 | if (S_ISDIR(sb.st_mode)) { |
1065 | 0 | size_t len = strlen(f_name); |
1066 | 0 | size_t nln = strlen(opts->pzRcName) + 1; |
1067 | 0 | char * pz = f_name + len; |
1068 | |
|
1069 | 0 | if (len + 1 + nln >= sizeof(f_name)) |
1070 | 0 | continue; |
1071 | | |
1072 | 0 | if (pz[-1] != DIRCH) |
1073 | 0 | *(pz++) = DIRCH; |
1074 | 0 | memcpy(pz, opts->pzRcName, nln); |
1075 | 0 | } |
1076 | | |
1077 | 0 | file_preset(opts, f_name, inc); |
1078 | | |
1079 | | /* |
1080 | | * IF we are now to skip config files AND we are presetting, |
1081 | | * THEN change direction. We must go the other way. |
1082 | | */ |
1083 | 0 | { |
1084 | 0 | tOptDesc * od = opts->pOptDesc + opts->specOptIdx.save_opts + 1; |
1085 | 0 | if (DISABLED_OPT(od) && PRESETTING(inc)) { |
1086 | 0 | idx -= inc; /* go back and reprocess current file */ |
1087 | 0 | inc = DIRECTION_PROCESS; |
1088 | 0 | } |
1089 | 0 | } |
1090 | 0 | } /* twice for every path in the home list, ... */ |
1091 | |
|
1092 | 0 | opts->fOptSet = svfl; |
1093 | 0 | } |
1094 | | |
1095 | | /*=export_func optionFileLoad |
1096 | | * |
1097 | | * what: Load the locatable config files, in order |
1098 | | * |
1099 | | * arg: + tOptions * + opts + program options descriptor + |
1100 | | * arg: + char const * + prog + program name + |
1101 | | * |
1102 | | * ret_type: int |
1103 | | * ret_desc: 0 -> SUCCESS, -1 -> FAILURE |
1104 | | * |
1105 | | * doc: |
1106 | | * |
1107 | | * This function looks in all the specified directories for a configuration |
1108 | | * file ("rc" file or "ini" file) and processes any found twice. The first |
1109 | | * time through, they are processed in reverse order (last file first). At |
1110 | | * that time, only "immediate action" configurables are processed. For |
1111 | | * example, if the last named file specifies not processing any more |
1112 | | * configuration files, then no more configuration files will be processed. |
1113 | | * Such an option in the @strong{first} named directory will have no effect. |
1114 | | * |
1115 | | * Once the immediate action configurables have been handled, then the |
1116 | | * directories are handled in normal, forward order. In that way, later |
1117 | | * config files can override the settings of earlier config files. |
1118 | | * |
1119 | | * See the AutoOpts documentation for a thorough discussion of the |
1120 | | * config file format. |
1121 | | * |
1122 | | * Configuration files not found or not decipherable are simply ignored. |
1123 | | * |
1124 | | * err: Returns the value, "-1" if the program options descriptor |
1125 | | * is out of date or indecipherable. Otherwise, the value "0" will |
1126 | | * always be returned. |
1127 | | =*/ |
1128 | | int |
1129 | | optionFileLoad(tOptions * opts, char const * prog) |
1130 | 0 | { |
1131 | 0 | if (! SUCCESSFUL(validate_struct(opts, prog))) |
1132 | 0 | return -1; |
1133 | | |
1134 | | /* |
1135 | | * The pointer to the program name is "const". However, the |
1136 | | * structure is in writable memory, so we coerce the address |
1137 | | * of this pointer to point to writable memory. |
1138 | | */ |
1139 | 0 | { |
1140 | 0 | char const ** pp = VOIDP(&(opts->pzProgName)); |
1141 | 0 | *pp = prog; |
1142 | 0 | } |
1143 | |
|
1144 | 0 | intern_file_load(opts); |
1145 | 0 | return 0; |
1146 | 0 | } |
1147 | | |
1148 | | /*=export_func optionLoadOpt |
1149 | | * private: |
1150 | | * |
1151 | | * what: Load an option rc/ini file |
1152 | | * arg: + tOptions * + opts + program options descriptor + |
1153 | | * arg: + tOptDesc * + odesc + the descriptor for this arg + |
1154 | | * |
1155 | | * doc: |
1156 | | * Processes the options found in the file named with |
1157 | | * odesc->optArg.argString. |
1158 | | =*/ |
1159 | | void |
1160 | | optionLoadOpt(tOptions * opts, tOptDesc * odesc) |
1161 | 0 | { |
1162 | 0 | struct stat sb; |
1163 | |
|
1164 | 0 | if (opts <= OPTPROC_EMIT_LIMIT) |
1165 | 0 | return; |
1166 | | |
1167 | | /* |
1168 | | * IF the option is not being disabled, THEN load the file. There must |
1169 | | * be a file. (If it is being disabled, then the disablement processing |
1170 | | * already took place. It must be done to suppress preloading of ini/rc |
1171 | | * files.) |
1172 | | */ |
1173 | 0 | if ( DISABLED_OPT(odesc) |
1174 | 0 | || ((odesc->fOptState & OPTST_RESET) != 0)) |
1175 | 0 | return; |
1176 | | |
1177 | 0 | if (stat(odesc->optArg.argString, &sb) != 0) { |
1178 | 0 | if ((opts->fOptSet & OPTPROC_ERRSTOP) == 0) |
1179 | 0 | return; |
1180 | | |
1181 | 0 | fserr_exit(opts->pzProgName, "stat", odesc->optArg.argString); |
1182 | | /* NOT REACHED */ |
1183 | 0 | } |
1184 | | |
1185 | 0 | if (! S_ISREG(sb.st_mode)) { |
1186 | 0 | if ((opts->fOptSet & OPTPROC_ERRSTOP) == 0) |
1187 | 0 | return; |
1188 | 0 | errno = EINVAL; |
1189 | 0 | fserr_exit(opts->pzProgName, "stat", odesc->optArg.argString); |
1190 | | /* NOT REACHED */ |
1191 | 0 | } |
1192 | | |
1193 | 0 | file_preset(opts, odesc->optArg.argString, DIRECTION_CALLED); |
1194 | 0 | } |
1195 | | |
1196 | | /** |
1197 | | * Parse the various attributes of an XML-styled config file entry |
1198 | | * |
1199 | | * @returns NULL on failure, otherwise the scan point |
1200 | | */ |
1201 | | LOCAL char const * |
1202 | | parse_attrs(tOptions * opts, char const * txt, tOptionLoadMode * pMode, |
1203 | | tOptionValue * pType) |
1204 | 0 | { |
1205 | 0 | size_t len = 0; |
1206 | |
|
1207 | 0 | for (;;) { |
1208 | 0 | len = (size_t)(SPN_LOWER_CASE_CHARS(txt) - txt); |
1209 | | |
1210 | | /* |
1211 | | * The enumeration used in this switch is derived from this switch |
1212 | | * statement itself. The "find_option_xat_attribute_cmd" function |
1213 | | * will return XAT_CMD_MEMBERS for the "txt" string value |
1214 | | * "members", etc. |
1215 | | */ |
1216 | 0 | switch (find_option_xat_attribute_cmd(txt, len)) { |
1217 | 0 | case XAT_CMD_TYPE: |
1218 | 0 | txt = parse_value(txt+len, pType); |
1219 | 0 | break; |
1220 | | |
1221 | 0 | case XAT_CMD_WORDS: |
1222 | 0 | txt = parse_keyword(opts, txt+len, pType); |
1223 | 0 | break; |
1224 | | |
1225 | 0 | case XAT_CMD_MEMBERS: |
1226 | 0 | txt = parse_set_mem(opts, txt+len, pType); |
1227 | 0 | break; |
1228 | | |
1229 | 0 | case XAT_CMD_COOKED: |
1230 | 0 | txt += len; |
1231 | 0 | if (! IS_END_XML_TOKEN_CHAR(*txt)) |
1232 | 0 | goto invalid_kwd; |
1233 | | |
1234 | 0 | *pMode = OPTION_LOAD_COOKED; |
1235 | 0 | break; |
1236 | | |
1237 | 0 | case XAT_CMD_UNCOOKED: |
1238 | 0 | txt += len; |
1239 | 0 | if (! IS_END_XML_TOKEN_CHAR(*txt)) |
1240 | 0 | goto invalid_kwd; |
1241 | | |
1242 | 0 | *pMode = OPTION_LOAD_UNCOOKED; |
1243 | 0 | break; |
1244 | | |
1245 | 0 | case XAT_CMD_KEEP: |
1246 | 0 | txt += len; |
1247 | 0 | if (! IS_END_XML_TOKEN_CHAR(*txt)) |
1248 | 0 | goto invalid_kwd; |
1249 | | |
1250 | 0 | *pMode = OPTION_LOAD_KEEP; |
1251 | 0 | break; |
1252 | | |
1253 | 0 | default: |
1254 | 0 | case XAT_INVALID_CMD: |
1255 | 0 | invalid_kwd: |
1256 | 0 | pType->valType = OPARG_TYPE_NONE; |
1257 | 0 | return skip_unkn(txt); |
1258 | 0 | } |
1259 | | |
1260 | 0 | if (txt == NULL) |
1261 | 0 | return NULL; |
1262 | 0 | txt = SPN_WHITESPACE_CHARS(txt); |
1263 | 0 | switch (*txt) { |
1264 | 0 | case '/': pType->valType = OPARG_TYPE_NONE; |
1265 | | /* FALLTHROUGH */ |
1266 | 0 | case '>': return txt; |
1267 | 0 | } |
1268 | 0 | if (! IS_LOWER_CASE_CHAR(*txt)) |
1269 | 0 | return NULL; |
1270 | 0 | } |
1271 | 0 | } |
1272 | | |
1273 | | /** |
1274 | | * "txt" points to the character after "words=". |
1275 | | * What should follow is a name of a keyword (enumeration) list. |
1276 | | * |
1277 | | * @param opts unused |
1278 | | * @param[in] txt keyword to skip over |
1279 | | * @param type unused value type |
1280 | | * @returns pointer after skipped text |
1281 | | */ |
1282 | | static char const * |
1283 | | parse_keyword(tOptions * opts, char const * txt, tOptionValue * typ) |
1284 | 0 | { |
1285 | 0 | (void)opts; |
1286 | 0 | (void)typ; |
1287 | |
|
1288 | 0 | return skip_unkn(txt); |
1289 | 0 | } |
1290 | | |
1291 | | /** |
1292 | | * "txt" points to the character after "members=" |
1293 | | * What should follow is a name of a "set membership". |
1294 | | * A collection of bit flags. |
1295 | | * |
1296 | | * @param opts unused |
1297 | | * @param[in] txt keyword to skip over |
1298 | | * @param type unused value type |
1299 | | * @returns pointer after skipped text |
1300 | | */ |
1301 | | static char const * |
1302 | | parse_set_mem(tOptions * opts, char const * txt, tOptionValue * typ) |
1303 | 0 | { |
1304 | 0 | (void)opts; |
1305 | 0 | (void)typ; |
1306 | |
|
1307 | 0 | return skip_unkn(txt); |
1308 | 0 | } |
1309 | | |
1310 | | /** |
1311 | | * parse the type. The keyword "type" was found, now figure out |
1312 | | * the type that follows the type. |
1313 | | * |
1314 | | * @param[in] txt points to the '=' character after the "type" keyword. |
1315 | | * @param[out] typ where to store the type found |
1316 | | * @returns the next byte after the type name |
1317 | | */ |
1318 | | static char const * |
1319 | | parse_value(char const * txt, tOptionValue * typ) |
1320 | 0 | { |
1321 | 0 | size_t len = 0; |
1322 | |
|
1323 | 0 | if (*(txt++) != '=') |
1324 | 0 | goto woops; |
1325 | | |
1326 | 0 | len = (size_t)(SPN_OPTION_NAME_CHARS(txt) - txt); |
1327 | |
|
1328 | 0 | if ((len == 0) || (! IS_END_XML_TOKEN_CHAR(txt[len]))) { |
1329 | 0 | woops: |
1330 | 0 | typ->valType = OPARG_TYPE_NONE; |
1331 | 0 | return skip_unkn(txt + len); |
1332 | 0 | } |
1333 | | |
1334 | | /* |
1335 | | * The enumeration used in this switch is derived from this switch |
1336 | | * statement itself. The "find_option_value_type_cmd" function |
1337 | | * will return VTP_CMD_INTEGER for the "txt" string value |
1338 | | * "integer", etc. |
1339 | | */ |
1340 | 0 | switch (find_option_value_type_cmd(txt, len)) { |
1341 | 0 | default: |
1342 | 0 | case VTP_INVALID_CMD: goto woops; |
1343 | | |
1344 | 0 | case VTP_CMD_STRING: |
1345 | 0 | typ->valType = OPARG_TYPE_STRING; |
1346 | 0 | break; |
1347 | | |
1348 | 0 | case VTP_CMD_INTEGER: |
1349 | 0 | typ->valType = OPARG_TYPE_NUMERIC; |
1350 | 0 | break; |
1351 | | |
1352 | 0 | case VTP_CMD_BOOL: |
1353 | 0 | case VTP_CMD_BOOLEAN: |
1354 | 0 | typ->valType = OPARG_TYPE_BOOLEAN; |
1355 | 0 | break; |
1356 | | |
1357 | 0 | case VTP_CMD_KEYWORD: |
1358 | 0 | typ->valType = OPARG_TYPE_ENUMERATION; |
1359 | 0 | break; |
1360 | | |
1361 | 0 | case VTP_CMD_SET: |
1362 | 0 | case VTP_CMD_SET_MEMBERSHIP: |
1363 | 0 | typ->valType = OPARG_TYPE_MEMBERSHIP; |
1364 | 0 | break; |
1365 | | |
1366 | 0 | case VTP_CMD_NESTED: |
1367 | 0 | case VTP_CMD_HIERARCHY: |
1368 | 0 | typ->valType = OPARG_TYPE_HIERARCHY; |
1369 | 0 | } |
1370 | | |
1371 | 0 | return txt + len; |
1372 | 0 | } |
1373 | | |
1374 | | /** @} |
1375 | | * |
1376 | | * Local Variables: |
1377 | | * mode: C |
1378 | | * c-file-style: "stroustrup" |
1379 | | * indent-tabs-mode: nil |
1380 | | * End: |
1381 | | * end of autoopts/configfile.c */ |