]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/parse_conf.c
4d9bd0f49acd725c6e4f3eb806aa2e7fdfafa0f7
[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 char *res_to_str(int rcode)
134 {
135    if (rcode < r_first || rcode > r_last) {
136       return "***UNKNOWN***";
137    } else {
138       return resources[rcode-r_first].name;
139    }
140 }
141
142
143 /* 
144  * Initialize the static structure to zeros, then
145  *  apply all the default values.
146  */
147 void init_resource(int type, struct res_items *items)
148 {
149    int i;
150    int rindex = type - r_first;
151
152    memset(&res_all, 0, res_all_size);
153    res_all.hdr.rcode = type;
154    res_all.hdr.refcnt = 1;
155
156    for (i=0; items[i].name; i++) {
157       Dmsg3(300, "Item=%s def=%s defval=%d\n", items[i].name,
158             (items[i].flags & ITEM_DEFAULT) ? "yes" : "no",      
159             items[i].default_value);
160       if (items[i].flags & ITEM_DEFAULT && items[i].default_value != 0) {
161          if (items[i].handler == store_yesno) {
162             *(int *)(items[i].value) |= items[i].code;
163          } else if (items[i].handler == store_pint || 
164                     items[i].handler == store_int) {
165             *(int *)(items[i].value) = items[i].default_value;
166          } else if (items[i].handler == store_int64) {
167             *(int64_t *)(items[i].value) = items[i].default_value;
168          } else if (items[i].handler == store_size ||
169                     items[i].handler == store_time) {
170             *(uint64_t *)(items[i].value) = items[i].default_value;
171          }
172       }
173       /* If this triggers, take a look at lib/parse_conf.h */
174       if (i >= MAX_RES_ITEMS) {
175          Emsg1(M_ERROR_TERM, 0, _("Too many items in %s resource\n"), resources[rindex]);
176       }
177    }
178 }
179
180
181 /* Store Messages Destination information */
182 void store_msgs(LEX *lc, struct res_items *item, int index, int pass)
183 {
184    int token;
185    char *cmd;
186    POOLMEM *dest;
187    int dest_len;
188
189    Dmsg2(200, "store_msgs pass=%d code=%d\n", pass, item->code);
190    if (pass == 1) {
191       switch (item->code) {
192          case MD_STDOUT:
193          case MD_STDERR:
194          case MD_SYSLOG:              /* syslog */
195          case MD_CONSOLE:
196             scan_types(lc, (MSGS *)(item->value), item->code, NULL, NULL);
197             break;
198          case MD_OPERATOR:            /* send to operator */
199          case MD_DIRECTOR:            /* send to Director */
200          case MD_MAIL:                /* mail */
201          case MD_MAIL_ON_ERROR:       /* mail if Job errors */
202             if (item->code == MD_OPERATOR) {
203                cmd = res_all.res_msgs.operator_cmd;
204             } else {
205                cmd = res_all.res_msgs.mail_cmd;
206             }
207             dest = get_pool_memory(PM_MESSAGE);
208             dest_len = 0;
209             dest[0] = 0;
210             /* Pick up comma separated list of destinations */
211             for ( ;; ) {
212                token = lex_get_token(lc, T_NAME);   /* scan destination */
213                dest = (char *) check_pool_memory_size(dest, dest_len + lc->str_len + 2);
214                if (dest[0] != 0) {
215                   strcat(dest, " ");  /* separate multiple destinations with space */
216                   dest_len++;
217                }
218                strcat(dest, lc->str);
219                dest_len += lc->str_len;
220                Dmsg2(100, "store_msgs newdest=%s: dest=%s:\n", lc->str, NPRT(dest));
221                token = lex_get_token(lc, T_ALL);
222                if (token == T_COMMA) { 
223                   continue;           /* get another destination */
224                }
225                if (token != T_EQUALS) {
226                   scan_err1(lc, "expected an =, got: %s", lc->str); 
227                }
228                break;
229             }
230             Dmsg1(200, "mail_cmd=%s\n", NPRT(cmd));
231             scan_types(lc, (MSGS *)(item->value), item->code, dest, cmd);
232             free_pool_memory(dest);
233             Dmsg0(200, "done with dest codes\n");
234             break;
235          case MD_FILE:                /* file */
236          case MD_APPEND:              /* append */
237             dest = get_pool_memory(PM_MESSAGE);
238             /* Pick up a single destination */
239             token = lex_get_token(lc, T_NAME);   /* scan destination */
240             dest = check_pool_memory_size(dest, dest_len + lc->str_len + 2);
241             strcpy(dest, lc->str);
242             dest_len = lc->str_len;
243             token = lex_get_token(lc, T_ALL);
244             Dmsg1(200, "store_msgs dest=%s:\n", NPRT(dest));
245             if (token != T_EQUALS) {
246                scan_err1(lc, "expected an =, got: %s", lc->str); 
247             }
248             scan_types(lc, (MSGS *)(item->value), item->code, dest, NULL);
249             free_pool_memory(dest);
250             Dmsg0(200, "done with dest codes\n");
251             break;
252
253          default:
254             scan_err1(lc, "Unknown item code: %d\n", item->code);
255             break;
256       }
257    }
258    scan_to_eol(lc);
259    set_bit(index, res_all.hdr.item_present);
260    Dmsg0(200, "Done store_msgs\n");
261 }
262
263 /* 
264  * Scan for message types and add them to the message
265  * destination. The basic job here is to connect message types
266  *  (WARNING, ERROR, FATAL, INFO, ...) with an appropriate
267  *  destination (MAIL, FILE, OPERATOR, ...)
268  */
269 static void scan_types(LEX *lc, MSGS *msg, int dest_code, char *where, char *cmd)
270 {
271    int token, i, found, quit, is_not;
272    int msg_type;
273    char *str;
274
275    for (quit=0; !quit;) {
276       token = lex_get_token(lc, T_NAME);            /* expect at least one type */       
277       found = FALSE;
278       if (lc->str[0] == '!') {
279          is_not = TRUE;
280          str = &lc->str[1];
281       } else {
282          is_not = FALSE;
283          str = &lc->str[0];
284       }
285       for (i=0; msg_types[i].name; i++) {
286          if (strcmp(str, msg_types[i].name) == 0) {
287             msg_type = msg_types[i].token;
288             found = TRUE;
289             break;
290          }
291       }
292       if (!found) {
293          scan_err1(lc, "message type: %s not found", str);
294       }
295
296       if (msg_type == M_MAX+1) {         /* all? */
297          for (i=1; i<=M_MAX; i++) {      /* yes set all types */
298             add_msg_dest(msg, dest_code, i, where, cmd);
299          }
300       } else {
301          if (is_not) {
302             rem_msg_dest(msg, dest_code, msg_type, where);
303          } else {
304             add_msg_dest(msg, dest_code, msg_type, where, cmd);
305          }
306       }
307       if (lc->ch != ',') {
308          break;
309       }
310       Dmsg0(200, "call lex_get_token() to eat comma\n");
311       token = lex_get_token(lc, T_ALL);          /* eat comma */
312    }
313    Dmsg0(200, "Done scan_types()\n");
314 }
315
316
317 /* 
318  * This routine is ONLY for resource names
319  *  Store a name at specified address.
320  */
321 void store_name(LEX *lc, struct res_items *item, int index, int pass)
322 {
323    int token;
324
325    token = lex_get_token(lc, T_NAME);
326    /* Store the name both pass 1 and pass 2 */
327    *(item->value) = bstrdup(lc->str);
328    scan_to_eol(lc);
329    set_bit(index, res_all.hdr.item_present);
330 }
331
332
333 /*
334  * Store a name string at specified address
335  * A name string is limited to MAX_RES_NAME_LENGTH
336  */
337 void store_strname(LEX *lc, struct res_items *item, int index, int pass)
338 {
339    int token;
340
341    token = lex_get_token(lc, T_NAME);
342    /* Store the name */
343    if (pass == 1) {
344       *(item->value) = bstrdup(lc->str);
345    }
346    scan_to_eol(lc);
347    set_bit(index, res_all.hdr.item_present);
348 }
349
350
351
352 /* Store a string at specified address */
353 void store_str(LEX *lc, struct res_items *item, int index, int pass)
354 {
355    int token;
356
357    token = lex_get_token(lc, T_STRING);
358    if (pass == 1) {
359       *(item->value) = bstrdup(lc->str);
360    }
361    scan_to_eol(lc);
362    set_bit(index, res_all.hdr.item_present);
363 }
364
365 /* Store a directory name at specified address */
366 void store_dir(LEX *lc, struct res_items *item, int index, int pass)
367 {
368    int token;
369
370    token = lex_get_token(lc, T_STRING);
371    if (pass == 1) {
372       do_shell_expansion(lc->str);
373       *(item->value) = bstrdup(lc->str);
374    }
375    scan_to_eol(lc);
376    set_bit(index, res_all.hdr.item_present);
377 }
378
379
380 /* Store a password specified address in MD5 coding */
381 void store_password(LEX *lc, struct res_items *item, int index, int pass)
382 {
383    unsigned int token, i, j;
384    struct MD5Context md5c;
385    unsigned char signature[16];
386    char sig[100];
387
388
389    token = lex_get_token(lc, T_STRING);
390    if (pass == 1) {
391       MD5Init(&md5c);
392       MD5Update(&md5c, (unsigned char *) (lc->str), lc->str_len);
393       MD5Final(signature, &md5c);
394       for (i = j = 0; i < sizeof(signature); i++) {
395          sprintf(&sig[j], "%02x", signature[i]); 
396          j += 2;
397       }
398       *(item->value) = bstrdup(sig);
399    }
400    scan_to_eol(lc);
401    set_bit(index, res_all.hdr.item_present);
402 }
403
404
405 /* Store a resource at specified address.
406  * If we are in pass 2, do a lookup of the 
407  * resource.
408  */
409 void store_res(LEX *lc, struct res_items *item, int index, int pass)
410 {
411    int token;
412    RES *res;
413
414    token = lex_get_token(lc, T_NAME);
415    if (pass == 2) {
416      res = GetResWithName(item->code, lc->str);
417      if (res == NULL) {
418         scan_err3(lc, "Could not find Resource %s referenced on line %d : %s\n", 
419            lc->str, lc->line_no, lc->line);
420      }
421      *(item->value) = (char *)res;
422    }
423    scan_to_eol(lc);
424    set_bit(index, res_all.hdr.item_present);
425 }
426
427
428 /* Store an integer at specified address */
429 void store_int(LEX *lc, struct res_items *item, int index, int pass)
430 {
431    int token;
432
433    token = lex_get_token(lc, T_INT32);
434    *(int *)(item->value) = lc->int32_val;
435    scan_to_eol(lc);
436    set_bit(index, res_all.hdr.item_present);
437 }
438
439 /* Store a positive integer at specified address */
440 void store_pint(LEX *lc, struct res_items *item, int index, int pass)
441 {
442    int token;
443
444    token = lex_get_token(lc, T_PINT32);
445    *(int *)(item->value) = lc->pint32_val;
446    scan_to_eol(lc);
447    set_bit(index, res_all.hdr.item_present);
448 }
449
450
451 /* Store an 64 bit integer at specified address */
452 void store_int64(LEX *lc, struct res_items *item, int index, int pass)
453 {
454    int token;
455
456    token = lex_get_token(lc, T_INT64);
457    *(int64_t *)(item->value) = lc->int64_val;
458    scan_to_eol(lc);
459    set_bit(index, res_all.hdr.item_present);
460 }
461
462 /* Store a size in bytes */
463 void store_size(LEX *lc, struct res_items *item, int index, int pass)
464 {
465    int token, i, ch;
466    uint64_t value;
467    int mod[]  = {'*', 'k', 'm', 'g', 0}; /* first item * not used */
468    uint64_t mult[] = {1,             /* byte */
469                       1024,          /* kilobyte */
470                       1048576,       /* megabyte */
471                       1073741824};   /* gigabyte */
472
473 #ifdef we_have_a_compiler_that_works
474    int mod[]  = {'*', 'k', 'm', 'g', 't', 0};
475    uint64_t mult[] = {1,             /* byte */
476                       1024,          /* kilobyte */
477                       1048576,       /* megabyte */
478                       1073741824,    /* gigabyte */
479                       1099511627776};/* terabyte */
480 #endif
481
482    Dmsg0(400, "Enter store_size\n");
483    token = lex_get_token(lc, T_ALL);
484    errno = 0;
485    switch (token) {
486    case T_NUMBER:
487       Dmsg2(400, "size num=:%s: %f\n", lc->str, strtod(lc->str, NULL)); 
488       value = (uint64_t)strtod(lc->str, NULL);
489       if (errno != 0 || token < 0) {
490          scan_err1(lc, "expected a size number, got: %s", lc->str);
491       }
492       *(uint64_t *)(item->value) = value;
493       break;
494    case T_IDENTIFIER:
495    case T_UNQUOTED_STRING:
496       /* Look for modifier */
497       ch = lc->str[lc->str_len - 1];
498       i = 0;
499       if (ISALPHA(ch)) {
500          if (ISUPPER(ch)) {
501             ch = tolower(ch);
502          }
503          while (mod[++i] != 0) {
504             if (ch == mod[i]) {
505                lc->str_len--;
506                lc->str[lc->str_len] = 0; /* strip modifier */
507                break;
508             }
509          }
510       }
511       if (mod[i] == 0 || !is_a_number(lc->str)) {
512          scan_err1(lc, "expected a size number, got: %s", lc->str);
513       }
514       Dmsg3(400, "size str=:%s: %f i=%d\n", lc->str, strtod(lc->str, NULL), i);
515
516       value = (uint64_t)strtod(lc->str, NULL);
517       Dmsg1(400, "Int value = %d\n", (int)value);
518       if (errno != 0 || value < 0) {
519          scan_err1(lc, "expected a size number, got: %s", lc->str);
520       }
521       *(uint64_t *)(item->value) = value * mult[i];
522       Dmsg2(400, "Full value = %f %" lld "\n", strtod(lc->str, NULL) * mult[i],
523           value *mult[i]);
524       break;
525    default:
526       scan_err1(lc, "expected a size, got: %s", lc->str);
527       break;
528    }
529    scan_to_eol(lc);
530    set_bit(index, res_all.hdr.item_present);
531    Dmsg0(400, "Leave store_size\n");
532 }
533
534
535 /* Store a time period in seconds */
536 void store_time(LEX *lc, struct res_items *item, int index, int pass)
537 {
538    int token; 
539    btime_t value;
540
541    token = lex_get_token(lc, T_ALL);
542    errno = 0;
543    switch (token) {
544    case T_NUMBER:
545       value = (btime_t)strtod(lc->str, NULL);
546       if (errno != 0 || value < 0) {
547          scan_err1(lc, "expected a time period, got: %s", lc->str);
548       }
549       *(btime_t *)(item->value) = value;
550       break;
551    case T_IDENTIFIER:
552    case T_UNQUOTED_STRING:
553       if (!string_to_btime(lc->str, &value)) {
554          scan_err1(lc, "expected a time period, got: %s", lc->str);
555       }
556       *(btime_t *)(item->value) = value;
557       break;
558    default:
559       scan_err1(lc, "expected a time period, got: %s", lc->str);
560       break;
561    }
562    scan_to_eol(lc);
563    set_bit(index, res_all.hdr.item_present);
564 }
565
566
567 /* Store a yes/no in a bit field */
568 void store_yesno(LEX *lc, struct res_items *item, int index, int pass)
569 {
570    int token;
571
572    token = lex_get_token(lc, T_NAME);
573    if (strcasecmp(lc->str, "yes") == 0) {
574       *(int *)(item->value) |= item->code;
575    } else if (strcasecmp(lc->str, "no") == 0) {
576       *(int *)(item->value) &= ~(item->code);
577    } else {
578       scan_err1(lc, "Expect a YES or NO, got: %s", lc->str);
579    }
580    scan_to_eol(lc);
581    set_bit(index, res_all.hdr.item_present);
582 }
583
584
585
586 void LockRes()
587 {
588    P(res_mutex);
589    res_locked = 1;
590 }
591
592 void UnlockRes()
593 {
594    res_locked = 0;
595    V(res_mutex);
596 }
597
598 /*
599  * Return resource of type rcode that matches name
600  */
601 RES *
602 GetResWithName(int rcode, char *name)
603 {
604    RES *res;
605    int rindex = rcode - r_first;
606
607    LockRes();
608    res = resources[rindex].res_head;
609    while (res) {
610       if (strcmp(res->name, name) == 0) {
611          break;
612       }
613       res = res->next;
614    }
615    UnlockRes();
616    return res;
617    
618 }
619
620 /*
621  * Return next resource of type rcode. On first
622  * call second arg (res) is NULL, on subsequent
623  * calls, it is called with previous value.
624  */
625 RES *
626 GetNextRes(int rcode, RES *res)
627 {
628    RES *nres;
629    int rindex = rcode - r_first;
630        
631
632    if (!res_locked) {
633       Emsg0(M_ABORT, 0, "Resource chain not locked.\n");
634    }
635    if (res == NULL) {
636       nres = resources[rindex].res_head;
637    } else {
638       nres = res->next;
639    }
640    return nres;
641 }
642
643
644 /* Parser state */
645 enum parse_state {
646    p_none,
647    p_resource
648 };
649
650 /*********************************************************************
651  *
652  *      Parse configuration file
653  *
654  */
655 void 
656 parse_config(char *cf)
657 {
658    LEX *lc = NULL;
659    int token, i, res_type, pass;
660    enum parse_state state = p_none;
661    struct res_items *items;
662    int level = 0;
663
664    /* Make two passes. The first builds the name symbol table,
665     * and the second picks up the items. 
666     */
667    Dmsg0(200, "Enter parse_config()\n");
668    for (pass=1; pass <= 2; pass++) {
669       Dmsg1(200, "parse_config pass %d\n", pass);
670       lc = lex_open_file(lc, cf, NULL);
671       while ((token=lex_get_token(lc, T_ALL)) != T_EOF) {
672          Dmsg1(150, "parse got token=%s\n", lex_tok_to_str(token));
673          switch (state) {
674             case p_none:
675                if (token == T_EOL) {
676                   break;
677                }
678                if (token != T_IDENTIFIER) {
679                   scan_err1(lc, "Expected a Resource name identifier, got: %s", lc->str);
680                }
681                for (i=0; resources[i].name; i++)
682                   if (strcasecmp(resources[i].name, lc->str) == 0) {
683                      state = p_resource;
684                      items = resources[i].items;
685                      res_type = resources[i].rcode;
686                      init_resource(res_type, items);
687                      break;
688                   }
689                if (state == p_none) {
690                   scan_err1(lc, "expected resource name, got: %s", lc->str);
691                }
692                break;
693             case p_resource:
694                switch (token) {
695                   case T_BOB:
696                      level++;
697                      break;
698                   case T_IDENTIFIER:
699                      if (level != 1) {
700                         scan_err1(lc, "not in resource definition: %s", lc->str);
701                      }
702                      for (i=0; items[i].name; i++) {
703                         if (strcasecmp(items[i].name, lc->str) == 0) {
704                            token = lex_get_token(lc, T_ALL);
705                            Dmsg1 (150, "in T_IDENT got token=%s\n", lex_tok_to_str(token));
706                            if (token != T_EQUALS) {
707                               scan_err1(lc, "expected an equals, got: %s", lc->str);
708                            }
709                            Dmsg1(150, "calling handler for %s\n", items[i].name);
710                            /* Call item handler */
711                            items[i].handler(lc, &items[i], i, pass);
712                            i = -1;
713                            break;
714                         }
715                      }
716                      if (i >= 0) {
717                         Dmsg2(150, "level=%d id=%s\n", level, lc->str);
718                         Dmsg1(150, "Keyword = %s\n", lc->str);
719                         scan_err1(lc, "Keyword %s not permitted in this resource", lc->str);
720                      }
721                      break;
722
723                   case T_EOB:
724                      level--;
725                      state = p_none;
726                      Dmsg0(150, "T_EOB => define new resource\n");
727                      save_resource(res_type, items, pass);  /* save resource */
728                      break;
729
730                   case T_EOL:
731                      break;
732
733                   default:
734                      scan_err2(lc, "unexpected token %d %s in resource definition",    
735                         token, lex_tok_to_str(token));
736                }
737                break;
738             default:
739                scan_err1(lc, "Unknown parser state %d\n", state);
740          }
741       }
742       if (debug_level > 50 && pass == 2) {
743          int i;
744          for (i=r_first; i<=r_last; i++) {
745             dump_resource(i, resources[i-r_first].res_head, prtmsg, NULL);
746          }
747       }
748       lc = lex_close_file(lc);
749    }
750    Dmsg0(200, "Leave parse_config()\n");
751 }
752
753 /*********************************************************************
754  *
755  *      Free configuration resources
756  *
757  */
758 void 
759 free_config_resources()
760 {
761    int i;
762    for (i=r_first; i<=r_last; i++) {
763       free_resource(i);
764    }
765 }