]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/parse_conf.c
Documentation, fix watchdog.c -- kes22Jun02
[bacula/bacula] / bacula / src / lib / parse_conf.c
1 /*
2  *   Master Configuration routines.
3  *  
4  *   This file contains the common parts of the Bacula
5  *   configuration routines.
6  *
7  *   Note, the configuration file parser consists of three parts
8  *
9  *   1. The generic lexical scanner in lib/lex.c and lib/lex.h
10  *
11  *   2. The generic config  scanner in lib/parse_conf.c and 
12  *      lib/parse_conf.h.
13  *      These files contain the parser code, some utility
14  *      routines, and the common store routines (name, int,
15  *      string).
16  *
17  *   3. The daemon specific file, which contains the Resource
18  *      definitions as well as any specific store routines
19  *      for the resource records.
20  *
21  *    N.B. This is a two pass parser, so if you malloc() a string
22  *         in a "store" routine, you must ensure to do it during
23  *         only one of the two passes, or to free it between.
24  *         Also, note that the resource record is malloced and
25  *         saved in save_resource() during pass 1.  Anything that
26  *         you want saved after pass two (e.g. resource pointers)
27  *         must explicitly be done in save_resource. Take a look
28  *         at the Job resource in src/dird/dird_conf.c to see how
29  *         it is done.
30  *
31  *     Kern Sibbald, January MM
32  *
33  *   Version $Id$
34  */
35
36 /*
37    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
38
39    This program is free software; you can redistribute it and/or
40    modify it under the terms of the GNU General Public License as
41    published by the Free Software Foundation; either version 2 of
42    the License, or (at your option) any later version.
43
44    This program is distributed in the hope that it will be useful,
45    but WITHOUT ANY WARRANTY; without even the implied warranty of
46    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
47    General Public License for more details.
48
49    You should have received a copy of the GNU General Public
50    License along with this program; if not, write to the Free
51    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
52    MA 02111-1307, USA.
53
54  */
55
56
57 #include "bacula.h"
58
59 extern int debug_level;
60
61 /* Each daemon has a slightly different set of 
62  * resources, so it will define the following
63  * global values.
64  */
65 extern int r_first;
66 extern int r_last;
67 extern pthread_mutex_t res_mutex;
68 extern struct s_res resources[];
69 extern CURES res_all;
70 extern int res_all_size;
71
72 static int res_locked = 0;             /* set when resource chains locked */
73
74 /* Forward referenced subroutines */
75 static void scan_types(LEX *lc, MSGS *msg, int dest, char *where, char *cmd);
76
77
78 /* Common Resource definitions */
79
80 /* Message resource directives
81  *  name         handler      value       code   flags  default_value
82  */
83 struct res_items msgs_items[] = {
84    {"name",        store_name,    ITEM(res_msgs.hdr.name),  0, 0, 0},
85    {"description", store_str,     ITEM(res_msgs.hdr.desc),  0, 0, 0},
86    {"mailcommand", store_str,     ITEM(res_msgs.mail_cmd),  0, 0, 0},
87    {"operatorcommand", store_str, ITEM(res_msgs.operator_cmd), 0, 0, 0},
88    {"syslog",      store_msgs, ITEM(res_msgs), MD_SYSLOG,   0, 0}, 
89    {"mail",        store_msgs, ITEM(res_msgs), MD_MAIL,     0, 0},
90    {"mailonerror", store_msgs, ITEM(res_msgs), MD_MAIL_ON_ERROR, 0, 0},
91    {"file",        store_msgs, ITEM(res_msgs), MD_FILE,     0, 0},
92    {"append",      store_msgs, ITEM(res_msgs), MD_APPEND,   0, 0},
93    {"stdout",      store_msgs, ITEM(res_msgs), MD_STDOUT,   0, 0},
94    {"stderr",      store_msgs, ITEM(res_msgs), MD_STDERR,   0, 0},
95    {"director",    store_msgs, ITEM(res_msgs), MD_DIRECTOR, 0, 0},
96    {"console",     store_msgs, ITEM(res_msgs), MD_CONSOLE,  0, 0},   
97    {"operator",    store_msgs, ITEM(res_msgs), MD_OPERATOR, 0, 0},
98    {NULL, NULL,    NULL, 0}
99 };
100
101 struct s_mtypes {       
102    char *name;
103    int token;   
104 };
105 /* Various message types */
106 static struct s_mtypes msg_types[] = {
107    {"debug",         M_DEBUG},
108    {"abort",         M_ABORT},
109    {"fatal",         M_FATAL},
110    {"error",         M_ERROR},
111    {"warning",       M_WARNING},
112    {"info",          M_INFO},
113    {"saved",         M_SAVED},
114    {"notsaved",      M_NOTSAVED},
115    {"skipped",       M_SKIPPED},
116    {"mount",         M_MOUNT},
117    {"terminate",     M_TERM},
118    {"all",           M_MAX+1},
119    {NULL,            0}
120 };
121
122
123 /* Simply print a message */
124 static void prtmsg(void *sock, char *fmt, ...)
125 {
126    va_list arg_ptr;
127
128    va_start(arg_ptr, fmt);
129    vfprintf(stdout, fmt, arg_ptr);
130    va_end(arg_ptr);
131 }
132
133 #ifdef DEBUG
134 char *res_to_str(int rcode)
135 {
136    if (rcode < r_first || rcode > r_last) {
137       return "***UNKNOWN***";
138    } else {
139       return resources[rcode-r_first].name;
140    }
141 }
142 #endif /* DEBUG */
143
144
145 /* 
146  * Initialize the static structure to zeros, then
147  *  apply all the default values.
148  */
149 void init_resource(int type, struct res_items *items)
150 {
151    int i;
152    int rindex = type - r_first;
153
154    memset(&res_all, 0, res_all_size);
155    res_all.hdr.rcode = type;
156    res_all.hdr.refcnt = 1;
157
158    for (i=0; items[i].name; i++) {
159       Dmsg3(300, "Item=%s def=%s defval=%d\n", items[i].name,
160             (items[i].flags & ITEM_DEFAULT) ? "yes" : "no",      
161             items[i].default_value);
162       if (items[i].flags & ITEM_DEFAULT && items[i].default_value != 0) {
163          if (items[i].handler == store_yesno) {
164             *(int *)(items[i].value) |= items[i].code;
165          } else if (items[i].handler == store_pint || 
166                     items[i].handler == store_int) {
167             *(int *)(items[i].value) = items[i].default_value;
168          } else if (items[i].handler == store_int64) {
169             *(int64_t *)(items[i].value) = items[i].default_value;
170          } else if (items[i].handler == store_size ||
171                     items[i].handler == store_time) {
172             *(uint64_t *)(items[i].value) = items[i].default_value;
173          }
174       }
175       /* If this triggers, take a look at lib/parse_conf.h */
176       if (i >= MAX_RES_ITEMS) {
177          Emsg1(M_ERROR_TERM, 0, _("Too many items in %s resource\n"), resources[rindex]);
178       }
179    }
180 }
181
182
183 /* Store Messages Destination information */
184 void store_msgs(LEX *lc, struct res_items *item, int index, int pass)
185 {
186    int token;
187    char *cmd;
188    POOLMEM *dest;
189    int dest_len;
190
191    Dmsg2(200, "store_msgs pass=%d code=%d\n", pass, item->code);
192    if (pass == 1) {
193       switch (item->code) {
194          case MD_STDOUT:
195          case MD_STDERR:
196          case MD_SYSLOG:              /* syslog */
197          case MD_CONSOLE:
198             scan_types(lc, (MSGS *)(item->value), item->code, NULL, NULL);
199             break;
200          case MD_OPERATOR:            /* send to operator */
201          case MD_DIRECTOR:            /* send to Director */
202          case MD_MAIL:                /* mail */
203          case MD_MAIL_ON_ERROR:       /* mail if Job errors */
204             if (item->code == MD_OPERATOR) {
205                cmd = res_all.res_msgs.operator_cmd;
206             } else {
207                cmd = res_all.res_msgs.mail_cmd;
208             }
209             dest = get_pool_memory(PM_MESSAGE);
210             dest_len = 0;
211             dest[0] = 0;
212             /* Pick up comma separated list of destinations */
213             for ( ;; ) {
214                token = lex_get_token(lc, T_NAME);   /* scan destination */
215                dest = (char *) check_pool_memory_size(dest, dest_len + lc->str_len + 2);
216                if (dest[0] != 0) {
217                   strcat(dest, " ");  /* separate multiple destinations with space */
218                   dest_len++;
219                }
220                strcat(dest, lc->str);
221                dest_len += lc->str_len;
222                Dmsg2(100, "store_msgs newdest=%s: dest=%s:\n", lc->str, NPRT(dest));
223                token = lex_get_token(lc, T_ALL);
224                if (token == T_COMMA) { 
225                   continue;           /* get another destination */
226                }
227                if (token != T_EQUALS) {
228                   scan_err1(lc, "expected an =, got: %s", lc->str); 
229                }
230                break;
231             }
232             Dmsg1(200, "mail_cmd=%s\n", NPRT(cmd));
233             scan_types(lc, (MSGS *)(item->value), item->code, dest, cmd);
234             free_pool_memory(dest);
235             Dmsg0(200, "done with dest codes\n");
236             break;
237          case MD_FILE:                /* file */
238          case MD_APPEND:              /* append */
239             dest = get_pool_memory(PM_MESSAGE);
240             /* Pick up a single destination */
241             token = lex_get_token(lc, T_NAME);   /* scan destination */
242             dest = check_pool_memory_size(dest, dest_len + lc->str_len + 2);
243             strcpy(dest, lc->str);
244             dest_len = lc->str_len;
245             token = lex_get_token(lc, T_ALL);
246             Dmsg1(200, "store_msgs dest=%s:\n", NPRT(dest));
247             if (token != T_EQUALS) {
248                scan_err1(lc, "expected an =, got: %s", lc->str); 
249             }
250             scan_types(lc, (MSGS *)(item->value), item->code, dest, NULL);
251             free_pool_memory(dest);
252             Dmsg0(200, "done with dest codes\n");
253             break;
254
255          default:
256             scan_err1(lc, "Unknown item code: %d\n", item->code);
257             break;
258       }
259    }
260    scan_to_eol(lc);
261    set_bit(index, res_all.hdr.item_present);
262    Dmsg0(200, "Done store_msgs\n");
263 }
264
265 /* 
266  * Scan for message types and add them to the message
267  * destination. The basic job here is to connect message types
268  *  (WARNING, ERROR, FATAL, INFO, ...) with an appropriate
269  *  destination (MAIL, FILE, OPERATOR, ...)
270  */
271 static void scan_types(LEX *lc, MSGS *msg, int dest_code, char *where, char *cmd)
272 {
273    int token, i, found, quit, is_not;
274    int msg_type;
275    char *str;
276
277    for (quit=0; !quit;) {
278       token = lex_get_token(lc, T_NAME);            /* expect at least one type */       
279       found = FALSE;
280       if (lc->str[0] == '!') {
281          is_not = TRUE;
282          str = &lc->str[1];
283       } else {
284          is_not = FALSE;
285          str = &lc->str[0];
286       }
287       for (i=0; msg_types[i].name; i++) {
288          if (strcmp(str, msg_types[i].name) == 0) {
289             msg_type = msg_types[i].token;
290             found = TRUE;
291             break;
292          }
293       }
294       if (!found) {
295          scan_err1(lc, "message type: %s not found", str);
296       }
297
298       if (msg_type == M_MAX+1) {         /* all? */
299          for (i=1; i<=M_MAX; i++) {      /* yes set all types */
300             add_msg_dest(msg, dest_code, i, where, cmd);
301          }
302       } else {
303          if (is_not) {
304             rem_msg_dest(msg, dest_code, msg_type, where);
305          } else {
306             add_msg_dest(msg, dest_code, msg_type, where, cmd);
307          }
308       }
309       if (lc->ch != ',') {
310          break;
311       }
312       Dmsg0(200, "call lex_get_token() to eat comma\n");
313       token = lex_get_token(lc, T_ALL);          /* eat comma */
314    }
315    Dmsg0(200, "Done scan_types()\n");
316 }
317
318
319 /* 
320  * This routine is ONLY for resource names
321  *  Store a name at specified address.
322  */
323 void store_name(LEX *lc, struct res_items *item, int index, int pass)
324 {
325    int token;
326
327    token = lex_get_token(lc, T_NAME);
328    /* Store the name both pass 1 and pass 2 */
329    *(item->value) = bstrdup(lc->str);
330    scan_to_eol(lc);
331    set_bit(index, res_all.hdr.item_present);
332 }
333
334
335 /*
336  * Store a name string at specified address
337  * A name string is limited to MAX_RES_NAME_LENGTH
338  */
339 void store_strname(LEX *lc, struct res_items *item, int index, int pass)
340 {
341    int token;
342
343    token = lex_get_token(lc, T_NAME);
344    /* Store the name */
345    if (pass == 1) {
346       *(item->value) = bstrdup(lc->str);
347    }
348    scan_to_eol(lc);
349    set_bit(index, res_all.hdr.item_present);
350 }
351
352
353
354 /* Store a string at specified address */
355 void store_str(LEX *lc, struct res_items *item, int index, int pass)
356 {
357    int token;
358
359    token = lex_get_token(lc, T_STRING);
360    if (pass == 1) {
361       *(item->value) = bstrdup(lc->str);
362    }
363    scan_to_eol(lc);
364    set_bit(index, res_all.hdr.item_present);
365 }
366
367 /* Store a directory name at specified address */
368 void store_dir(LEX *lc, struct res_items *item, int index, int pass)
369 {
370    int token;
371
372    token = lex_get_token(lc, T_STRING);
373    if (pass == 1) {
374       do_shell_expansion(lc->str);
375       *(item->value) = bstrdup(lc->str);
376    }
377    scan_to_eol(lc);
378    set_bit(index, res_all.hdr.item_present);
379 }
380
381
382 /* Store a password specified address in MD5 coding */
383 void store_password(LEX *lc, struct res_items *item, int index, int pass)
384 {
385    unsigned int token, i, j;
386    struct MD5Context md5c;
387    unsigned char signature[16];
388    char sig[100];
389
390
391    token = lex_get_token(lc, T_STRING);
392    if (pass == 1) {
393       MD5Init(&md5c);
394       MD5Update(&md5c, (unsigned char *) (lc->str), lc->str_len);
395       MD5Final(signature, &md5c);
396       for (i = j = 0; i < sizeof(signature); i++) {
397          sprintf(&sig[j], "%02x", signature[i]); 
398          j += 2;
399       }
400       *(item->value) = bstrdup(sig);
401    }
402    scan_to_eol(lc);
403    set_bit(index, res_all.hdr.item_present);
404 }
405
406
407 /* Store a resource at specified address.
408  * If we are in pass 2, do a lookup of the 
409  * resource.
410  */
411 void store_res(LEX *lc, struct res_items *item, int index, int pass)
412 {
413    int token;
414    RES *res;
415
416    token = lex_get_token(lc, T_NAME);
417    if (pass == 2) {
418      res = GetResWithName(item->code, lc->str);
419      if (res == NULL) {
420         scan_err3(lc, "Could not find Resource %s referenced on line %d : %s\n", 
421            lc->str, lc->line_no, lc->line);
422      }
423      *(item->value) = (char *)res;
424    }
425    scan_to_eol(lc);
426    set_bit(index, res_all.hdr.item_present);
427 }
428
429
430 /* Store an integer at specified address */
431 void store_int(LEX *lc, struct res_items *item, int index, int pass)
432 {
433    int token;
434
435    token = lex_get_token(lc, T_INT32);
436    *(int *)(item->value) = lc->int32_val;
437    scan_to_eol(lc);
438    set_bit(index, res_all.hdr.item_present);
439 }
440
441 /* Store a positive integer at specified address */
442 void store_pint(LEX *lc, struct res_items *item, int index, int pass)
443 {
444    int token;
445
446    token = lex_get_token(lc, T_PINT32);
447    *(int *)(item->value) = lc->pint32_val;
448    scan_to_eol(lc);
449    set_bit(index, res_all.hdr.item_present);
450 }
451
452
453 /* Store an 64 bit integer at specified address */
454 void store_int64(LEX *lc, struct res_items *item, int index, int pass)
455 {
456    int token;
457
458    token = lex_get_token(lc, T_INT64);
459    *(int64_t *)(item->value) = lc->int64_val;
460    scan_to_eol(lc);
461    set_bit(index, res_all.hdr.item_present);
462 }
463
464 /* Store a size in bytes */
465 void store_size(LEX *lc, struct res_items *item, int index, int pass)
466 {
467    int token, i, ch;
468    uint64_t value;
469    int mod[]  = {'*', 'k', 'm', 'g', 0}; /* first item * not used */
470    uint64_t mult[] = {1,             /* byte */
471                       1024,          /* kilobyte */
472                       1048576,       /* megabyte */
473                       1073741824};   /* gigabyte */
474
475 #ifdef we_have_a_compiler_that_works
476    int mod[]  = {'*', 'k', 'm', 'g', 't', 0};
477    uint64_t mult[] = {1,             /* byte */
478                       1024,          /* kilobyte */
479                       1048576,       /* megabyte */
480                       1073741824,    /* gigabyte */
481                       1099511627776};/* terabyte */
482 #endif
483
484    Dmsg0(400, "Enter store_size\n");
485    token = lex_get_token(lc, T_ALL);
486    errno = 0;
487    switch (token) {
488    case T_NUMBER:
489       Dmsg2(400, "size num=:%s: %f\n", lc->str, strtod(lc->str, NULL)); 
490       value = (uint64_t)strtod(lc->str, NULL);
491       if (errno != 0 || token < 0) {
492          scan_err1(lc, "expected a size number, got: %s", lc->str);
493       }
494       *(uint64_t *)(item->value) = value;
495       break;
496    case T_IDENTIFIER:
497    case T_UNQUOTED_STRING:
498       /* Look for modifier */
499       ch = lc->str[lc->str_len - 1];
500       i = 0;
501       if (ISALPHA(ch)) {
502          if (ISUPPER(ch)) {
503             ch = tolower(ch);
504          }
505          while (mod[++i] != 0) {
506             if (ch == mod[i]) {
507                lc->str_len--;
508                lc->str[lc->str_len] = 0; /* strip modifier */
509                break;
510             }
511          }
512       }
513       if (mod[i] == 0 || !is_a_number(lc->str)) {
514          scan_err1(lc, "expected a size number, got: %s", lc->str);
515       }
516       Dmsg3(400, "size str=:%s: %f i=%d\n", lc->str, strtod(lc->str, NULL), i);
517
518       value = (uint64_t)strtod(lc->str, NULL);
519       Dmsg1(400, "Int value = %d\n", (int)value);
520       if (errno != 0 || value < 0) {
521          scan_err1(lc, "expected a size number, got: %s", lc->str);
522       }
523       *(uint64_t *)(item->value) = value * mult[i];
524       Dmsg2(400, "Full value = %f %" lld "\n", strtod(lc->str, NULL) * mult[i],
525           value *mult[i]);
526       break;
527    default:
528       scan_err1(lc, "expected a size, got: %s", lc->str);
529       break;
530    }
531    scan_to_eol(lc);
532    set_bit(index, res_all.hdr.item_present);
533    Dmsg0(400, "Leave store_size\n");
534 }
535
536
537 /* Store a time period in seconds */
538 void store_time(LEX *lc, struct res_items *item, int index, int pass)
539 {
540    int token; 
541    btime_t value;
542
543    token = lex_get_token(lc, T_ALL);
544    errno = 0;
545    switch (token) {
546    case T_NUMBER:
547       value = (btime_t)strtod(lc->str, NULL);
548       if (errno != 0 || value < 0) {
549          scan_err1(lc, "expected a time period, got: %s", lc->str);
550       }
551       *(btime_t *)(item->value) = value;
552       break;
553    case T_IDENTIFIER:
554    case T_UNQUOTED_STRING:
555       if (!string_to_btime(lc->str, &value)) {
556          scan_err1(lc, "expected a time period, got: %s", lc->str);
557       }
558       *(btime_t *)(item->value) = value;
559       break;
560    default:
561       scan_err1(lc, "expected a time period, got: %s", lc->str);
562       break;
563    }
564    scan_to_eol(lc);
565    set_bit(index, res_all.hdr.item_present);
566 }
567
568
569 /* Store a yes/no in a bit field */
570 void store_yesno(LEX *lc, struct res_items *item, int index, int pass)
571 {
572    int token;
573
574    token = lex_get_token(lc, T_NAME);
575    if (strcasecmp(lc->str, "yes") == 0) {
576       *(int *)(item->value) |= item->code;
577    } else if (strcasecmp(lc->str, "no") == 0) {
578       *(int *)(item->value) &= ~(item->code);
579    } else {
580       scan_err1(lc, "Expect a YES or NO, got: %s", lc->str);
581    }
582    scan_to_eol(lc);
583    set_bit(index, res_all.hdr.item_present);
584 }
585
586
587
588 void LockRes()
589 {
590    P(res_mutex);
591    res_locked = 1;
592 }
593
594 void UnlockRes()
595 {
596    res_locked = 0;
597    V(res_mutex);
598 }
599
600 /*
601  * Return resource of type rcode that matches name
602  */
603 RES *
604 GetResWithName(int rcode, char *name)
605 {
606    RES *res;
607    int rindex = rcode - r_first;
608
609    LockRes();
610    res = resources[rindex].res_head;
611    while (res) {
612       if (strcmp(res->name, name) == 0) {
613          break;
614       }
615       res = res->next;
616    }
617    UnlockRes();
618    return res;
619    
620 }
621
622 /*
623  * Return next resource of type rcode. On first
624  * call second arg (res) is NULL, on subsequent
625  * calls, it is called with previous value.
626  */
627 RES *
628 GetNextRes(int rcode, RES *res)
629 {
630    RES *nres;
631    int rindex = rcode - r_first;
632        
633
634    if (!res_locked) {
635       Emsg0(M_ABORT, 0, "Resource chain not locked.\n");
636    }
637    if (res == NULL) {
638       nres = resources[rindex].res_head;
639    } else {
640       nres = res->next;
641    }
642    return nres;
643 }
644
645
646 /* Parser state */
647 enum parse_state {
648    p_none,
649    p_resource
650 };
651
652 /*********************************************************************
653  *
654  *      Parse configuration file
655  *
656  */
657 void 
658 parse_config(char *cf)
659 {
660    LEX *lc = NULL;
661    int token, i, res_type, pass;
662    enum parse_state state = p_none;
663    struct res_items *items;
664    int level = 0;
665
666    /* Make two passes. The first builds the name symbol table,
667     * and the second picks up the items. 
668     */
669    Dmsg0(200, "Enter parse_config()\n");
670    for (pass=1; pass <= 2; pass++) {
671       Dmsg1(200, "parse_config pass %d\n", pass);
672       lc = lex_open_file(lc, cf);
673       while ((token=lex_get_token(lc, T_ALL)) != T_EOF) {
674          Dmsg1(150, "parse got token=%s\n", lex_tok_to_str(token));
675          switch (state) {
676             case p_none:
677                if (token == T_EOL) {
678                   break;
679                }
680                if (token != T_IDENTIFIER) {
681                   scan_err1(lc, "Expected a Resource name identifier, got: %s", lc->str);
682                }
683                for (i=0; resources[i].name; i++)
684                   if (strcasecmp(resources[i].name, lc->str) == 0) {
685                      state = p_resource;
686                      items = resources[i].items;
687                      res_type = resources[i].rcode;
688                      init_resource(res_type, items);
689                      break;
690                   }
691                if (state == p_none) {
692                   scan_err1(lc, "expected resource name, got: %s", lc->str);
693                }
694                break;
695             case p_resource:
696                switch (token) {
697                   case T_BOB:
698                      level++;
699                      break;
700                   case T_IDENTIFIER:
701                      if (level != 1) {
702                         scan_err1(lc, "not in resource definition: %s", lc->str);
703                      }
704                      for (i=0; items[i].name; i++) {
705                         if (strcasecmp(items[i].name, lc->str) == 0) {
706                            token = lex_get_token(lc, T_ALL);
707                            Dmsg1 (150, "in T_IDENT got token=%s\n", lex_tok_to_str(token));
708                            if (token != T_EQUALS) {
709                               scan_err1(lc, "expected an equals, got: %s", lc->str);
710                            }
711                            Dmsg1(150, "calling handler for %s\n", items[i].name);
712                            /* Call item handler */
713                            items[i].handler(lc, &items[i], i, pass);
714                            i = -1;
715                            break;
716                         }
717                      }
718                      if (i >= 0) {
719                         Dmsg2(150, "level=%d id=%s\n", level, lc->str);
720                         Dmsg1(150, "Keyword = %s\n", lc->str);
721                         scan_err1(lc, "Keyword %s not permitted in this resource", lc->str);
722                      }
723                      break;
724
725                   case T_EOB:
726                      level--;
727                      state = p_none;
728                      Dmsg0(150, "T_EOB => define new resource\n");
729                      save_resource(res_type, items, pass);  /* save resource */
730                      break;
731
732                   case T_EOL:
733                      break;
734
735                   default:
736                      scan_err2(lc, "unexpected token %d %s in resource definition",    
737                         token, lex_tok_to_str(token));
738                }
739                break;
740             default:
741                scan_err1(lc, "Unknown parser state %d\n", state);
742          }
743       }
744       if (debug_level > 50 && pass == 2) {
745          int i;
746          for (i=r_first; i<=r_last; i++) {
747             dump_resource(i, resources[i-r_first].res_head, prtmsg, NULL);
748          }
749       }
750       lc = lex_close_file(lc);
751    }
752    Dmsg0(200, "Leave parse_config()\n");
753 }
754
755 /*********************************************************************
756  *
757  *      Free configuration resources
758  *
759  */
760 void 
761 free_config_resources()
762 {
763    int i;
764    for (i=r_first; i<=r_last; i++) {
765       free_resource(i);
766    }
767 }