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