Version bump.
[fwd] / conf.c
CommitLineData
e82f7154 1/* -*-c-*-
2 *
9e1c09df 3 * $Id: conf.c,v 1.7 2000/08/01 17:58:10 mdw Exp $
e82f7154 4 *
5 * Configuration parsing
6 *
61e3dbdf 7 * (c) 1999 Straylight/Edgeware
e82f7154 8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the `fw' port forwarder.
13 *
14 * `fw' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * `fw' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with `fw'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: conf.c,v $
9e1c09df 32 * Revision 1.7 2000/08/01 17:58:10 mdw
33 * Fix subtleties with <ctype.h> functions.
34 *
5835a4a8 35 * Revision 1.6 2000/02/12 18:13:20 mdw
36 * Terminate tables of sources and targets.
37 *
82793759 38 * Revision 1.5 1999/10/22 22:46:44 mdw
39 * Improve documentation for conf_enum.
40 *
a6eddf54 41 * Revision 1.4 1999/10/15 21:12:36 mdw
42 * Remove redundant debugging code.
43 *
e73034b0 44 * Revision 1.3 1999/08/19 18:32:48 mdw
45 * Improve lexical analysis. In particular, `chmod' patterns don't have to
46 * be quoted any more.
47 *
61e3dbdf 48 * Revision 1.2 1999/07/26 23:28:39 mdw
49 * Major reconstruction work for new design.
50 *
51 * Revision 1.1.1.1 1999/07/01 08:56:23 mdw
52 * Initial revision.
e82f7154 53 *
54 */
55
56/*----- Header files ------------------------------------------------------*/
57
58#include "config.h"
59
60#include <ctype.h>
61#include <errno.h>
62#include <stdarg.h>
63#include <stdio.h>
64#include <stdlib.h>
65#include <string.h>
66
e82f7154 67#include <mLib/dstr.h>
68#include <mLib/quis.h>
69#include <mLib/report.h>
70
61e3dbdf 71#include "conf.h"
e82f7154 72#include "scan.h"
61e3dbdf 73#include "source.h"
74#include "target.h"
e82f7154 75
61e3dbdf 76#include "exec.h"
77#include "file.h"
78#include "socket.h"
e82f7154 79
61e3dbdf 80/*----- Source and target tables ------------------------------------------*/
81
5835a4a8 82static source_ops *sources[] =
83 { &xsource_ops, &fsource_ops, &ssource_ops, 0 };
84static target_ops *targets[] =
85 { &xtarget_ops, &ftarget_ops, &starget_ops, 0 };
e82f7154 86
e73034b0 87static const char *notword = 0;
88static const char *notdelim = 0;
89
e82f7154 90/*----- Main code ---------------------------------------------------------*/
91
e73034b0 92/* --- @undelim@ --- *
93 *
94 * Arguments: @const char *d, dd@ = pointer to characters to escape
95 *
96 * Returns: ---
97 *
98 * Use: Modifies the tokenizer. Characters in the first list will
99 * always be considered to begin a word. Characters in the
100 * second list will always be allowed to continue a word.
101 */
102
103void undelim(const char *d, const char *dd) { notword = d; notdelim = dd; }
104
e82f7154 105/* --- @token@ --- *
106 *
107 * Arguments: @scanner *sc@ = pointer to scanner definition
108 *
109 * Returns: Type of token scanned.
110 *
111 * Use: Reads the next token from the character scanner.
112 */
113
61e3dbdf 114int token(scanner *sc)
e82f7154 115{
61e3dbdf 116#define SELFDELIM \
117 '{': case '}': case '/': case ',': \
118 case '=': case ':': case ';': \
119 case '.': case '[': case ']'
e82f7154 120
121 int ch;
122
61e3dbdf 123 DRESET(&sc->d);
124
125 /* --- Main tokenization --- */
126
e82f7154 127 for (;;) {
61e3dbdf 128 ch = scan(sc);
129
130 /* --- Deal with pushed-back tokens --- */
131
132 if (sc->head->tok) {
133 dstr_puts(&sc->d, sc->head->tok);
134 free(sc->head->tok);
135 sc->head->tok = 0;
136 sc->t = sc->head->t;
137 goto done;
138 }
139
9e1c09df 140 else if (isspace(ch))
e82f7154 141 ;
142 else switch (ch) {
61e3dbdf 143
144 /* --- End of file --- */
145
e82f7154 146 case EOF:
61e3dbdf 147 sc->t = CTOK_EOF;
148 goto done;
149
150 /* --- Comment character --- */
151
e82f7154 152 case '#':
61e3dbdf 153 do ch = scan(sc); while (ch != EOF && ch != '\n');
e82f7154 154 break;
61e3dbdf 155
156 /* --- Various self-delimiting characters --- */
157
158 case SELFDELIM:
e73034b0 159 if (!notword || strchr(notword, ch) == 0) {
160 dstr_putc(&sc->d, ch);
161 dstr_putz(&sc->d);
162 sc->t = ch;
163 goto done;
164 }
61e3dbdf 165
166 /* --- Bare words --- *
167 *
168 * These aren't as bare any more. You can now backslash-escape
169 * individual characters, and enclose sections in double-quotes.
170 */
171
172 default: {
173 int q = 0;
174
175 for (;;) {
176 switch (ch) {
177 case EOF:
178 goto word;
179 case '\\':
180 ch = scan(sc);
181 if (ch == EOF)
182 goto word;
183 DPUTC(&sc->d, ch);
184 break;
185 case '\"':
186 q = !q;
187 break;
188 case SELFDELIM:
e73034b0 189 if (q || (notdelim && strchr(notdelim, ch)))
61e3dbdf 190 goto insert;
191 goto word;
192 default:
9e1c09df 193 if (!q && isspace(ch))
61e3dbdf 194 goto word;
195 insert:
196 DPUTC(&sc->d, ch);
197 break;
198 }
199 ch = scan(sc);
200 }
201 word:
202 unscan(sc, ch);
e82f7154 203 DPUTZ(&sc->d);
61e3dbdf 204 sc->t = CTOK_WORD;
205 goto done;
206 }
e82f7154 207 }
208 }
209
61e3dbdf 210done:
61e3dbdf 211 return (sc->t);
212}
213
214/* --- @pushback@ --- *
215 *
216 * Arguments: @scanner *sc@ = pointer to scanner definition
217 *
218 * Returns: ---
219 *
220 * Use: Pushes the current token back. This is normally a precursor
221 * to pushing a new scanner source.
222 */
223
224static void pushback(scanner *sc)
225{
226 sc->head->tok = xstrdup(sc->d.buf);
227 sc->head->t = sc->t;
e82f7154 228}
229
230/* --- @error@ --- *
231 *
232 * Arguments: @scanner *sc@ = pointer to scanner definition
233 * @const char *msg@ = message skeleton string
234 * @...@ = extra arguments for the skeleton
235 *
236 * Returns: Doesn't
237 *
238 * Use: Reports an error at the current scanner location.
239 */
240
61e3dbdf 241void error(scanner *sc, const char *msg, ...)
e82f7154 242{
243 va_list ap;
244 va_start(ap, msg);
61e3dbdf 245 fprintf(stderr, "%s: %s:%i: ", QUIS, sc->head->src, sc->head->line);
e82f7154 246 vfprintf(stderr, msg, ap);
247 fputc('\n', stderr);
248 exit(1);
249}
250
61e3dbdf 251/* --- @conf_enum@ --- *
e82f7154 252 *
61e3dbdf 253 * Arguments: @scanner *sc@ = pointer to a scanner object
254 * @const char *list@ = comma-separated things to allow
255 * @unsigned f@ = flags for the search
256 * @const char *err@ = error message if not found
e82f7154 257 *
61e3dbdf 258 * Returns: Index into list, zero-based, or @-1@.
e82f7154 259 *
61e3dbdf 260 * Use: Checks whether the current token is a string which matches
82793759 261 * one of the comma-separated items given. The return value is
262 * the index (zero-based) of the matched string in the list.
263 *
264 * The flags control the behaviour if no exact match is found.
265 * If @ENUM_ABBREV@ is set, and the current token is a left
266 * substring of exactly one of the possibilities, then that one
267 * is chosen. If @ENUM_NONE@ is set, the value @-1@ is
268 * returned; otherwise an error is reported and the program is
269 * terminated.
e82f7154 270 */
271
61e3dbdf 272int conf_enum(scanner *sc, const char *list, unsigned f, const char *err)
e82f7154 273{
61e3dbdf 274 const char *p, *q;
275 int chosen = -1;
276 int ok;
277 int index;
278
279 /* --- Make sure it's a string --- */
280
281 if (sc->t != CTOK_WORD)
282 error(sc, "parse error, expected %s", err);
283
284 /* --- Grind through the list --- */
285
286 q = sc->d.buf;
287 ok = 1;
288 index = 0;
289 p = list;
290 for (;;) {
291 switch (*p) {
292 case 0:
293 if (ok && !*q) {
294 token(sc);
295 return (index);
296 } else if (chosen != -1) {
297 token(sc);
298 return (chosen);
299 }
300 else if (f & ENUM_NONE)
301 return (-1);
302 else
303 error(sc, "unknown %s `%s'", err, sc->d.buf);
304 break;
305 case ',':
306 if (ok && !*q) {
307 token(sc);
308 return (index);
309 }
310 ok = 1;
311 q = sc->d.buf;
312 index++;
313 break;
314 default:
315 if (!ok)
316 break;
317 if ((f & ENUM_ABBREV) && !*q) {
318 if (chosen != -1)
319 error(sc, "ambiguous %s `%s'", err, sc->d.buf);
320 chosen = index;
321 ok = 0;
322 }
323 if (*p == *q)
324 q++;
325 else
326 ok = 0;
327 break;
328 }
329 p++;
330 }
e82f7154 331}
332
61e3dbdf 333/* --- @conf_prefix@ --- *
e82f7154 334 *
61e3dbdf 335 * Arguments: @scanner *sc@ = pointer to a scanner object
336 * @const char *p@ = pointer to prefix string to check
e82f7154 337 *
61e3dbdf 338 * Returns: Nonzero if the prefix matches.
e82f7154 339 *
61e3dbdf 340 * Use: If the current token is a word matching the given prefix
341 * string, then it and an optional `.' character are removed and
342 * a nonzero result is returned. Otherwise the current token is
343 * left as it is, and zero is returned.
344 *
345 * Typical options parsing code would remove an expected prefix,
346 * scan an option anyway (since qualifying prefixes are
347 * optional) and if a match is found, claim the option. If no
348 * match is found, and a prefix was stripped, then an error
349 * should be reported.
e82f7154 350 */
351
61e3dbdf 352int conf_prefix(scanner *sc, const char *p)
e82f7154 353{
61e3dbdf 354 if (sc->t == CTOK_WORD && strcmp(p, sc->d.buf) == 0) {
355 token(sc);
356 if (sc->t == '.')
357 token(sc);
358 return (1);
359 }
360 return (0);
361}
e82f7154 362
61e3dbdf 363/* --- @conf_name@ --- *
364 *
365 * Arguments: @scanner *sc@ = pointer to scanner
366 * @char delim@ = delimiter character to look for
367 * @dstr *d@ = pointer to dynamic string for output
368 *
369 * Returns: ---
370 *
371 * Use: Reads in a compound name consisting of words separated by
372 * delimiters. Leading and trailing delimiters are permitted,
373 * although they'll probably cause confusion if used. The name
374 * may be enclosed in square brackets if that helps at all.
375 *
376 * Examples of compound names are filenames (delimited by `/')
377 * and IP addresses (delimited by `.').
378 */
e82f7154 379
61e3dbdf 380void conf_name(scanner *sc, char delim, dstr *d)
381{
382 unsigned f = 0;
383 enum {
384 f_ok = 1,
385 f_bra = 2
386 };
e82f7154 387
61e3dbdf 388 /* --- Read an optional opening bracket --- */
e82f7154 389
61e3dbdf 390 if (sc->t == '[') {
e82f7154 391 token(sc);
61e3dbdf 392 f |= f_bra;
393 }
e82f7154 394
61e3dbdf 395 /* --- Do the main reading sequence --- */
e82f7154 396
61e3dbdf 397 do {
398 if (sc->t == delim) {
399 DPUTC(d, delim);
400 f |= f_ok;
e82f7154 401 token(sc);
61e3dbdf 402 }
403 if (sc->t == CTOK_WORD) {
404 DPUTD(d, &sc->d);
405 f |= f_ok;
e82f7154 406 token(sc);
407 }
61e3dbdf 408 } while (sc->t == delim);
e82f7154 409
61e3dbdf 410 /* --- Check that the string was OK --- */
e82f7154 411
61e3dbdf 412 if (!(f & f_ok))
413 error(sc, "parse error, name expected");
e82f7154 414
61e3dbdf 415 /* --- Read a closing bracket --- */
e82f7154 416
61e3dbdf 417 if (f & f_bra) {
418 if (sc->t == ']')
419 token(sc);
420 else
421 error(sc, "parse error, missing `]'");
422 }
423 DPUTZ(d);
e82f7154 424}
425
426/* --- @conf_parse@ --- *
427 *
61e3dbdf 428 * Arguments: @scanner *sc@ = pointer to scanner definition
e82f7154 429 *
430 * Returns: ---
431 *
432 * Use: Parses a configuration file from the scanner.
433 */
434
61e3dbdf 435void conf_parse(scanner *sc)
e82f7154 436{
e82f7154 437 token(sc);
438
439 for (;;) {
440 if (sc->t == CTOK_EOF)
441 break;
442 if (sc->t != CTOK_WORD)
443 error(sc, "parse error, keyword expected");
444
445 /* --- Handle a forwarding request --- */
446
447 if (strcmp(sc->d.buf, "forward") == 0 ||
61e3dbdf 448 strcmp(sc->d.buf, "fw") == 0 ||
449 strcmp(sc->d.buf, "from") == 0) {
450 source *s;
451 target *t;
e82f7154 452
453 token(sc);
e82f7154 454
61e3dbdf 455 /* --- Read a source description --- */
e82f7154 456
61e3dbdf 457 {
458 source_ops **sops;
e82f7154 459
61e3dbdf 460 /* --- Try to find a source type which understands --- */
e82f7154 461
61e3dbdf 462 s = 0;
463 for (sops = sources; *sops; sops++) {
464 if ((s = (*sops)->read(sc)) != 0)
465 goto found_source;
466 }
467 error(sc, "unknown source name `%s'", sc->d.buf);
468
469 /* --- Read any source-specific options --- */
470
471 found_source:
472 if (sc->t == '{') {
473 token(sc);
474 while (sc->t == CTOK_WORD) {
475 if (!s->ops->option || !s->ops->option(s, sc)) {
476 error(sc, "unknown %s source option `%s'",
477 s->ops->name, sc->d.buf);
478 }
479 if (sc->t == ';')
480 token(sc);
481 }
482 if (sc->t != '}')
483 error(sc, "parse error, missing `}'");
484 token(sc);
485 }
486 }
e82f7154 487
61e3dbdf 488 /* --- Read a destination description --- */
e82f7154 489
61e3dbdf 490 if (sc->t == CTOK_WORD && (strcmp(sc->d.buf, "to") == 0 ||
491 strcmp(sc->d.buf, "->") == 0))
492 token(sc);
e82f7154 493
494 {
61e3dbdf 495 target_ops **tops;
e82f7154 496
61e3dbdf 497 /* --- Try to find a target which understands --- */
e82f7154 498
61e3dbdf 499 t = 0;
500 for (tops = targets; *tops; tops++) {
501 if ((t = (*tops)->read(sc)) != 0)
502 goto found_target;
503 }
504 error(sc, "unknown target name `%s'", sc->d.buf);
505
506 /* --- Read any target-specific options --- */
507
508 found_target:
509 if (sc->t == '{') {
510 token(sc);
511 while (sc->t == CTOK_WORD) {
512 if (!t->ops->option || !t->ops->option(t, sc)) {
513 error(sc, "unknown %s target option `%s'",
514 t->ops->name, sc->d.buf);
515 }
516 if (sc->t == ';')
517 token(sc);
518 }
519 if (sc->t != '}')
520 error(sc, "parse error, `}' expected");
521 token(sc);
522 }
e82f7154 523 }
524
61e3dbdf 525 /* --- Combine the source and target --- */
e82f7154 526
61e3dbdf 527 s->ops->attach(s, sc, t);
528 }
e82f7154 529
61e3dbdf 530 /* --- Include configuration from a file --- *
531 *
532 * Slightly tricky. Scan the optional semicolon from the including
533 * stream, not the included one.
534 */
e82f7154 535
61e3dbdf 536 else if (strcmp(sc->d.buf, "include") == 0) {
537 FILE *fp;
538 dstr d = DSTR_INIT;
e82f7154 539
540 token(sc);
61e3dbdf 541 conf_name(sc, '/', &d);
542 if ((fp = fopen(d.buf, "r")) == 0)
543 error(sc, "can't include `%s': %s", d.buf, strerror(errno));
544 if (sc->t == ';')
e82f7154 545 token(sc);
61e3dbdf 546 pushback(sc);
547 scan_push(sc, scan_file(fp, xstrdup(d.buf), SCF_FREENAME));
548 token(sc);
549 dstr_destroy(&d);
550 continue; /* Don't parse a trailing `;' */
e82f7154 551 }
552
553 /* --- Other configuration is handled elsewhere --- */
554
61e3dbdf 555 else {
556
557 /* --- First try among the sources --- */
558
559 {
560 source_ops **sops;
561
562 for (sops = sources; *sops; sops++) {
563 if ((*sops)->option && (*sops)->option(0, sc))
564 goto found_option;
565 }
566 }
567
568 /* --- Then try among the targets --- */
569
570 {
571 target_ops **tops;
572
573 for (tops = targets; *tops; tops++) {
574 if ((*tops)->option && (*tops)->option(0, sc))
575 goto found_option;
576 }
577 }
578
579 /* --- Nobody wants the option --- */
580
581 error(sc, "unknown global option or prefix `%s'", sc->d.buf);
582
583 found_option:;
584 }
e82f7154 585
586 if (sc->t == ';')
587 token(sc);
588 }
589}
590
591/*----- That's all, folks -------------------------------------------------*/