]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/parse_conf.c
Rewrite spool error cod + level keyword for estimate
[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-2004 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 RES_TABLE resources[];
68 extern RES **res_head;
69
70 #ifdef HAVE_WIN32
71 // work around visual studio name manling preventing external linkage since res_all
72 // is declared as a different type when instantiated.
73 extern "C" CURES res_all;
74 extern "C" int res_all_size;
75 #else
76 extern  CURES res_all;
77 extern int res_all_size;
78 #endif
79
80
81 static brwlock_t res_lock;            /* resource lock */
82 static int res_locked = 0;            /* set when resource chains locked -- for debug */
83
84 /* Forward referenced subroutines */
85 static void scan_types(LEX *lc, MSGS *msg, int dest, char *where, char *cmd);
86
87
88 /* Common Resource definitions */
89
90 /* Message resource directives
91  *  name         handler      value       code   flags  default_value
92  */
93 RES_ITEM msgs_items[] = {
94    {"name",        store_name,    ITEM(res_msgs.hdr.name),  0, 0, 0},
95    {"description", store_str,     ITEM(res_msgs.hdr.desc),  0, 0, 0},
96    {"mailcommand", store_str,     ITEM(res_msgs.mail_cmd),  0, 0, 0},
97    {"operatorcommand", store_str, ITEM(res_msgs.operator_cmd), 0, 0, 0},
98    {"syslog",      store_msgs, ITEM(res_msgs), MD_SYSLOG,   0, 0}, 
99    {"mail",        store_msgs, ITEM(res_msgs), MD_MAIL,     0, 0},
100    {"mailonerror", store_msgs, ITEM(res_msgs), MD_MAIL_ON_ERROR, 0, 0},
101    {"file",        store_msgs, ITEM(res_msgs), MD_FILE,     0, 0},
102    {"append",      store_msgs, ITEM(res_msgs), MD_APPEND,   0, 0},
103    {"stdout",      store_msgs, ITEM(res_msgs), MD_STDOUT,   0, 0},
104    {"stderr",      store_msgs, ITEM(res_msgs), MD_STDERR,   0, 0},
105    {"director",    store_msgs, ITEM(res_msgs), MD_DIRECTOR, 0, 0},
106    {"console",     store_msgs, ITEM(res_msgs), MD_CONSOLE,  0, 0},   
107    {"operator",    store_msgs, ITEM(res_msgs), MD_OPERATOR, 0, 0},
108    {NULL, NULL,    NULL,       0,              0}
109 };
110
111 struct s_mtypes {       
112    const char *name;
113    int token;   
114 };
115 /* Various message types */
116 static struct s_mtypes msg_types[] = {
117    {"debug",         M_DEBUG},
118    {"abort",         M_ABORT},
119    {"fatal",         M_FATAL},
120    {"error",         M_ERROR},
121    {"warning",       M_WARNING},
122    {"info",          M_INFO},
123    {"saved",         M_SAVED},
124    {"notsaved",      M_NOTSAVED},
125    {"skipped",       M_SKIPPED},
126    {"mount",         M_MOUNT},
127    {"terminate",     M_TERM},
128    {"restored",      M_RESTORED},
129    {"all",           M_MAX+1},
130    {NULL,            0}
131 };
132
133
134 /* Simply print a message */
135 static void prtmsg(void *sock, const char *fmt, ...)
136 {
137    va_list arg_ptr;
138
139    va_start(arg_ptr, fmt);
140    vfprintf(stdout, fmt, arg_ptr);
141    va_end(arg_ptr);
142 }
143
144 const char *res_to_str(int rcode)
145 {
146    if (rcode < r_first || rcode > r_last) {
147       return _("***UNKNOWN***");
148    } else {
149       return resources[rcode-r_first].name;
150    }
151 }
152
153
154 /* 
155  * Initialize the static structure to zeros, then
156  *  apply all the default values.
157  */
158 void init_resource(int type, RES_ITEM *items)
159 {
160    int i;
161    int rindex = type - r_first;
162    static bool first = true;
163    int errstat;
164
165    if (first && (errstat=rwl_init(&res_lock)) != 0) {
166       Emsg1(M_ABORT, 0, _("Unable to initialize resource lock. ERR=%s\n"), 
167             strerror(errstat));
168    }
169    first = false;
170
171    memset(&res_all, 0, res_all_size);
172    res_all.hdr.rcode = type;
173    res_all.hdr.refcnt = 1;
174
175    for (i=0; items[i].name; i++) {
176       Dmsg3(900, "Item=%s def=%s defval=%d\n", items[i].name,
177             (items[i].flags & ITEM_DEFAULT) ? "yes" : "no",      
178             items[i].default_value);
179       if (items[i].flags & ITEM_DEFAULT && items[i].default_value != 0) {
180          if (items[i].handler == store_yesno) {
181             *(int *)(items[i].value) |= items[i].code;
182          } else if (items[i].handler == store_pint || 
183                     items[i].handler == store_int) {
184             *(int *)(items[i].value) = items[i].default_value;
185          } else if (items[i].handler == store_int64) {
186             *(int64_t *)(items[i].value) = items[i].default_value;
187          } else if (items[i].handler == store_size) {
188             *(uint64_t *)(items[i].value) = (uint64_t)items[i].default_value;
189          } else if (items[i].handler == store_time) {
190             *(utime_t *)(items[i].value) = (utime_t)items[i].default_value;
191          }
192       }
193       /* If this triggers, take a look at lib/parse_conf.h */
194       if (i >= MAX_RES_ITEMS) {
195          Emsg1(M_ERROR_TERM, 0, _("Too many items in %s resource\n"), resources[rindex]);
196       }
197    }
198 }
199
200
201 /* Store Messages Destination information */
202 void store_msgs(LEX *lc, RES_ITEM *item, int index, int pass)
203 {
204    int token;
205    char *cmd;
206    POOLMEM *dest;
207    int dest_len;    
208
209    Dmsg2(900, "store_msgs pass=%d code=%d\n", pass, item->code);
210    if (pass == 1) {
211       switch (item->code) {
212       case MD_STDOUT:
213       case MD_STDERR:
214       case MD_SYSLOG:              /* syslog */
215       case MD_CONSOLE:
216          scan_types(lc, (MSGS *)(item->value), item->code, NULL, NULL);
217          break;
218       case MD_OPERATOR:            /* send to operator */
219       case MD_DIRECTOR:            /* send to Director */
220       case MD_MAIL:                /* mail */
221       case MD_MAIL_ON_ERROR:       /* mail if Job errors */
222          if (item->code == MD_OPERATOR) {
223             cmd = res_all.res_msgs.operator_cmd;
224          } else {
225             cmd = res_all.res_msgs.mail_cmd;
226          }
227          dest = get_pool_memory(PM_MESSAGE);
228          dest[0] = 0;
229          dest_len = 0;
230          /* Pick up comma separated list of destinations */
231          for ( ;; ) {
232             token = lex_get_token(lc, T_NAME);   /* scan destination */
233             dest = check_pool_memory_size(dest, dest_len + lc->str_len + 2);
234             if (dest[0] != 0) {
235                pm_strcat(&dest, " ");  /* separate multiple destinations with space */
236                dest_len++;
237             }
238             pm_strcat(&dest, lc->str);
239             dest_len += lc->str_len;
240             Dmsg2(900, "store_msgs newdest=%s: dest=%s:\n", lc->str, NPRT(dest));
241             token = lex_get_token(lc, T_ALL);
242             if (token == T_COMMA) { 
243                continue;           /* get another destination */
244             }
245             if (token != T_EQUALS) {
246                scan_err1(lc, _("expected an =, got: %s"), lc->str); 
247             }
248             break;
249          }
250          Dmsg1(900, "mail_cmd=%s\n", NPRT(cmd));
251          scan_types(lc, (MSGS *)(item->value), item->code, dest, cmd);
252          free_pool_memory(dest);
253          Dmsg0(900, "done with dest codes\n");
254          break;
255       case MD_FILE:                /* file */
256       case MD_APPEND:              /* append */
257          dest = get_pool_memory(PM_MESSAGE);
258          /* Pick up a single destination */
259          token = lex_get_token(lc, T_NAME);   /* scan destination */
260          pm_strcpy(&dest, lc->str);
261          dest_len = lc->str_len;
262          token = lex_get_token(lc, T_ALL);
263          Dmsg1(900, "store_msgs dest=%s:\n", NPRT(dest));
264          if (token != T_EQUALS) {
265             scan_err1(lc, _("expected an =, got: %s"), lc->str); 
266          }
267          scan_types(lc, (MSGS *)(item->value), item->code, dest, NULL);
268          free_pool_memory(dest);
269          Dmsg0(900, "done with dest codes\n");
270          break;
271
272       default:
273          scan_err1(lc, _("Unknown item code: %d\n"), item->code);
274          break;
275       }
276    }
277    scan_to_eol(lc);
278    set_bit(index, res_all.hdr.item_present);
279    Dmsg0(900, "Done store_msgs\n");
280 }
281
282 /* 
283  * Scan for message types and add them to the message
284  * destination. The basic job here is to connect message types
285  *  (WARNING, ERROR, FATAL, INFO, ...) with an appropriate
286  *  destination (MAIL, FILE, OPERATOR, ...)
287  */
288 static void scan_types(LEX *lc, MSGS *msg, int dest_code, char *where, char *cmd)
289 {
290    int i, found, quit, is_not;
291    int msg_type = 0;
292    char *str;
293
294    for (quit=0; !quit;) {
295       lex_get_token(lc, T_NAME);            /* expect at least one type */       
296       found = FALSE;
297       if (lc->str[0] == '!') {
298          is_not = TRUE;
299          str = &lc->str[1];
300       } else {
301          is_not = FALSE;
302          str = &lc->str[0];
303       }
304       for (i=0; msg_types[i].name; i++) {
305          if (strcasecmp(str, msg_types[i].name) == 0) {
306             msg_type = msg_types[i].token;
307             found = TRUE;
308             break;
309          }
310       }
311       if (!found) {
312          scan_err1(lc, _("message type: %s not found"), str);
313          /* NOT REACHED */
314       }
315
316       if (msg_type == M_MAX+1) {         /* all? */
317          for (i=1; i<=M_MAX; i++) {      /* yes set all types */
318             add_msg_dest(msg, dest_code, i, where, cmd);
319          }
320       } else {
321          if (is_not) {
322             rem_msg_dest(msg, dest_code, msg_type, where);
323          } else {
324             add_msg_dest(msg, dest_code, msg_type, where, cmd);
325          }
326       }
327       if (lc->ch != ',') {
328          break;
329       }
330       Dmsg0(900, "call lex_get_token() to eat comma\n");
331       lex_get_token(lc, T_ALL);          /* eat comma */
332    }
333    Dmsg0(900, "Done scan_types()\n");
334 }
335
336
337 /* 
338  * This routine is ONLY for resource names
339  *  Store a name at specified address.
340  */
341 void store_name(LEX *lc, RES_ITEM *item, int index, int pass)
342 {
343    POOLMEM *msg = get_pool_memory(PM_EMSG);
344    lex_get_token(lc, T_NAME);
345    if (!is_name_valid(lc->str, &msg)) {
346       scan_err1(lc, "%s\n", msg);
347    }
348    free_pool_memory(msg);
349    /* Store the name both pass 1 and pass 2 */
350    if (*(item->value)) {
351       scan_err2(lc, _("Attempt to redefine name \"%s\" to \"%s\"."), 
352          *(item->value), lc->str);
353    }
354    *(item->value) = bstrdup(lc->str);
355    scan_to_eol(lc);
356    set_bit(index, res_all.hdr.item_present);
357 }
358
359
360 /*
361  * Store a name string at specified address
362  * A name string is limited to MAX_RES_NAME_LENGTH
363  */
364 void store_strname(LEX *lc, RES_ITEM *item, int index, int pass)
365 {
366    lex_get_token(lc, T_NAME);
367    /* Store the name */
368    if (pass == 1) {
369       *(item->value) = bstrdup(lc->str);
370    }
371    scan_to_eol(lc);
372    set_bit(index, res_all.hdr.item_present);
373 }
374
375 /* Store a string at specified address */
376 void store_str(LEX *lc, RES_ITEM *item, int index, int pass)
377 {
378    lex_get_token(lc, T_STRING);
379    if (pass == 1) {
380       *(item->value) = bstrdup(lc->str);
381    }
382    scan_to_eol(lc);
383    set_bit(index, res_all.hdr.item_present);
384 }
385
386 /*
387  * Store a directory name at specified address. Note, we do
388  *   shell expansion except if the string begins with a vertical
389  *   bar (i.e. it will likely be passed to the shell later).
390  */
391 void store_dir(LEX *lc, RES_ITEM *item, int index, int pass)
392 {
393    lex_get_token(lc, T_STRING);
394    if (pass == 1) {
395       if (lc->str[0] != '|') {
396          do_shell_expansion(lc->str, sizeof(lc->str));
397       }
398       *(item->value) = bstrdup(lc->str);
399    }
400    scan_to_eol(lc);
401    set_bit(index, res_all.hdr.item_present);
402 }
403
404
405 /* Store a password specified address in MD5 coding */
406 void store_password(LEX *lc, RES_ITEM *item, int index, int pass)
407 {
408    unsigned int i, j;
409    struct MD5Context md5c;
410    unsigned char signature[16];
411    char sig[100];
412
413
414    lex_get_token(lc, T_STRING);
415    if (pass == 1) {
416       MD5Init(&md5c);
417       MD5Update(&md5c, (unsigned char *) (lc->str), lc->str_len);
418       MD5Final(signature, &md5c);
419       for (i = j = 0; i < sizeof(signature); i++) {
420          sprintf(&sig[j], "%02x", signature[i]); 
421          j += 2;
422       }
423       *(item->value) = bstrdup(sig);
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, RES_ITEM *item, int index, int pass)
435 {
436    RES *res;
437
438    lex_get_token(lc, T_NAME);
439    if (pass == 2) {
440      res = GetResWithName(item->code, lc->str);
441      if (res == NULL) {
442         scan_err3(lc, _("Could not find config Resource %s referenced on line %d : %s\n"), 
443            lc->str, lc->line_no, lc->line);
444      }
445      *(item->value) = (char *)res;
446    }
447    scan_to_eol(lc);
448    set_bit(index, res_all.hdr.item_present);
449 }
450
451 /*
452  * Store default values for Resource from xxxDefs
453  * If we are in pass 2, do a lookup of the 
454  * resource and store everything not explicitly set
455  * in main resource.
456  *
457  * Note, here item points to the main resource (e.g. Job, not
458  *  the jobdefs, which we look up).
459  */
460 void store_defs(LEX *lc, RES_ITEM *item, int index, int pass)
461 {
462    RES *res;
463
464    lex_get_token(lc, T_NAME);
465    if (pass == 2) {
466      Dmsg2(900, "Code=%d name=%s\n", item->code, lc->str);
467      res = GetResWithName(item->code, lc->str);
468      if (res == NULL) {
469         scan_err3(lc, _("Missing config Resource \"%s\" referenced on line %d : %s\n"), 
470            lc->str, lc->line_no, lc->line);
471      }
472      /* for each item not set, we copy the field from res */
473 #ifdef xxx
474      for (int i=0; item->name;; i++, item++) {
475         if (bit_is_set(i, res->item_present)) {
476            Dmsg2(900, "Item %d is present in %s\n", i, res->name);
477         } else {
478            Dmsg2(900, "Item %d is not present in %s\n", i, res->name);
479         }
480      }
481      /* ***FIXME **** add code */
482 #endif
483    }
484    scan_to_eol(lc);
485 }
486
487
488
489 /* Store an integer at specified address */
490 void store_int(LEX *lc, RES_ITEM *item, int index, int pass)
491 {
492    lex_get_token(lc, T_INT32);
493    *(int *)(item->value) = lc->int32_val;
494    scan_to_eol(lc);
495    set_bit(index, res_all.hdr.item_present);
496 }
497
498 /* Store a positive integer at specified address */
499 void store_pint(LEX *lc, RES_ITEM *item, int index, int pass)
500 {
501    lex_get_token(lc, T_PINT32);
502    *(int *)(item->value) = lc->pint32_val;
503    scan_to_eol(lc);
504    set_bit(index, res_all.hdr.item_present);
505 }
506
507
508 /* Store an 64 bit integer at specified address */
509 void store_int64(LEX *lc, RES_ITEM *item, int index, int pass)
510 {
511    lex_get_token(lc, T_INT64);
512    *(int64_t *)(item->value) = lc->int64_val;
513    scan_to_eol(lc);
514    set_bit(index, res_all.hdr.item_present);
515 }
516
517 /* Store a size in bytes */
518 void store_size(LEX *lc, RES_ITEM *item, int index, int pass)
519 {
520    int token;
521    uint64_t uvalue;
522
523    Dmsg0(900, "Enter store_size\n");
524    token = lex_get_token(lc, T_ALL);
525    errno = 0;
526    switch (token) {
527    case T_NUMBER:
528    case T_IDENTIFIER:
529    case T_UNQUOTED_STRING:
530       if (!size_to_uint64(lc->str, lc->str_len, &uvalue)) {
531          scan_err1(lc, _("expected a size number, got: %s"), lc->str);
532       }
533       *(uint64_t *)(item->value) = uvalue;
534       break;
535    default:
536       scan_err1(lc, _("expected a size, got: %s"), lc->str);
537       break;
538    }
539    scan_to_eol(lc);
540    set_bit(index, res_all.hdr.item_present);
541    Dmsg0(900, "Leave store_size\n");
542 }
543
544
545 /* Store a time period in seconds */
546 void store_time(LEX *lc, RES_ITEM *item, int index, int pass)
547 {
548    int token; 
549    utime_t utime;
550    char period[500];
551
552    token = lex_get_token(lc, T_ALL);
553    errno = 0;
554    switch (token) {
555    case T_NUMBER:
556    case T_IDENTIFIER:
557    case T_UNQUOTED_STRING:
558       bstrncpy(period, lc->str, sizeof(period));
559       if (lc->ch == ' ') {
560          token = lex_get_token(lc, T_ALL);
561          switch (token) {
562          case T_IDENTIFIER:
563          case T_UNQUOTED_STRING:
564             bstrncat(period, lc->str, sizeof(period));
565             break;
566          }
567       }
568       if (!duration_to_utime(period, &utime)) {
569          scan_err1(lc, _("expected a time period, got: %s"), period);
570       }
571       *(utime_t *)(item->value) = utime;
572       break;
573    default:
574       scan_err1(lc, _("expected a time period, got: %s"), lc->str);
575       break;
576    }
577    if (token != T_EOL) {
578       scan_to_eol(lc);
579    }
580    set_bit(index, res_all.hdr.item_present);
581 }
582
583
584 /* Store a yes/no in a bit field */
585 void store_yesno(LEX *lc, RES_ITEM *item, int index, int pass)
586 {
587    lex_get_token(lc, T_NAME);
588    if (strcasecmp(lc->str, "yes") == 0) {
589       *(int *)(item->value) |= item->code;
590    } else if (strcasecmp(lc->str, "no") == 0) {
591       *(int *)(item->value) &= ~(item->code);
592    } else {
593       scan_err1(lc, _("Expect a YES or NO, got: %s"), lc->str);
594    }
595    scan_to_eol(lc);
596    set_bit(index, res_all.hdr.item_present);
597 }
598
599
600 /* #define TRACE_RES */
601
602 void b_LockRes(const char *file, int line)
603 {
604    int errstat;
605 #ifdef TRACE_RES
606    Dmsg4(000, "LockRes   %d,%d at %s:%d\n", res_locked, res_lock.w_active,
607          file, line);
608 #endif
609    if ((errstat=rwl_writelock(&res_lock)) != 0) {
610       Emsg3(M_ABORT, 0, "rwl_writelock failure at %s:%d:  ERR=%s\n",
611            file, line, strerror(errstat));
612    }
613    res_locked++;
614 }
615
616 void b_UnlockRes(const char *file, int line)
617 {
618    int errstat;
619    res_locked--;
620 #ifdef TRACE_RES
621    Dmsg4(000, "UnLockRes %d,%d at %s:%d\n", res_locked, res_lock.w_active,
622          file, line);
623 #endif
624    if ((errstat=rwl_writeunlock(&res_lock)) != 0) {
625       Emsg3(M_ABORT, 0, "rwl_writeunlock failure at %s:%d:. ERR=%s\n",
626            file, line, strerror(errstat));
627    }
628 }
629
630 /*
631  * Return resource of type rcode that matches name
632  */
633 RES *
634 GetResWithName(int rcode, char *name)
635 {
636    RES *res;
637    int rindex = rcode - r_first;
638
639    LockRes();
640    res = res_head[rindex];
641    while (res) {
642       if (strcmp(res->name, name) == 0) {
643          break;
644       }
645       res = res->next;
646    }
647    UnlockRes();
648    return res;
649    
650 }
651
652 /*
653  * Return next resource of type rcode. On first
654  * call second arg (res) is NULL, on subsequent
655  * calls, it is called with previous value.
656  */
657 RES *
658 GetNextRes(int rcode, RES *res)
659 {
660    RES *nres;
661    int rindex = rcode - r_first;
662        
663
664    if (!res_locked) {
665       Emsg0(M_ABORT, 0, "Resource chain not locked.\n");
666    }
667    if (res == NULL) {
668       nres = res_head[rindex];
669    } else {
670       nres = res->next;
671    }
672    return nres;
673 }
674
675
676 /* Parser state */
677 enum parse_state {
678    p_none,
679    p_resource
680 };
681
682 /*********************************************************************
683  *
684  *      Parse configuration file
685  * 
686  * Return 0 if reading failed, 1 otherwise
687  */
688 int 
689 parse_config(const char *cf, int exit_on_error)
690 {
691    set_exit_on_error(exit_on_error);
692    LEX *lc = NULL;
693    int token, i, pass;
694    int res_type = 0;
695    enum parse_state state = p_none;
696    RES_ITEM *items = NULL;
697    int level = 0;
698
699    /* Make two passes. The first builds the name symbol table,
700     * and the second picks up the items. 
701     */
702    Dmsg0(900, "Enter parse_config()\n");
703    for (pass=1; pass <= 2; pass++) {
704       Dmsg1(900, "parse_config pass %d\n", pass);
705       if ((lc = lex_open_file(lc, cf, NULL)) == NULL) {
706          set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
707          return 0;
708       }
709       while ((token=lex_get_token(lc, T_ALL)) != T_EOF) {
710          Dmsg1(900, "parse got token=%s\n", lex_tok_to_str(token));
711          switch (state) {
712          case p_none:
713             if (token == T_EOL) {
714                break;
715             }
716             if (token != T_IDENTIFIER) {
717                scan_err1(lc, _("Expected a Resource name identifier, got: %s"), lc->str);
718                set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
719                return 0;
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                set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
732                return 0;
733             }
734             break;
735          case p_resource:
736             switch (token) {
737             case T_BOB:
738                level++;
739                break;
740             case T_IDENTIFIER:
741                if (level != 1) {
742                   scan_err1(lc, _("not in resource definition: %s"), lc->str);
743                   set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
744                   return 0;
745                }
746                for (i=0; items[i].name; i++) {
747                   if (strcasecmp(items[i].name, lc->str) == 0) {
748                      /* If the ITEM_NO_EQUALS flag is set we do NOT              
749                       *   scan for = after the keyword  */
750                      if (!(items[i].flags & ITEM_NO_EQUALS)) {
751                         token = lex_get_token(lc, T_ALL);
752                         Dmsg1 (900, "in T_IDENT got token=%s\n", lex_tok_to_str(token));
753                         if (token != T_EQUALS) {
754                            scan_err1(lc, _("expected an equals, got: %s"), lc->str);
755                            set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
756                            return 0;
757                         }
758                      }
759                      Dmsg1(900, "calling handler for %s\n", items[i].name);
760                      /* Call item handler */
761                      items[i].handler(lc, &items[i], i, pass);
762                      i = -1;
763                      break;
764                   }
765                }
766                if (i >= 0) {
767                   Dmsg2(900, "level=%d id=%s\n", level, lc->str);
768                   Dmsg1(900, "Keyword = %s\n", lc->str);
769                   scan_err1(lc, _("Keyword \"%s\" not permitted in this resource.\n"
770                      "Perhaps you left the trailing brace off of the previous resource."), lc->str);
771                   set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
772                   return 0;
773                }
774                break;
775
776             case T_EOB:
777                level--;
778                state = p_none;
779                Dmsg0(900, "T_EOB => define new resource\n");
780                save_resource(res_type, items, pass);  /* save resource */
781                break;
782
783             case T_EOL:
784                break;
785
786             default:
787                scan_err2(lc, _("unexpected token %d %s in resource definition"),    
788                   token, lex_tok_to_str(token));
789                set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
790                return 0;
791             }
792             break;
793          default:
794             scan_err1(lc, _("Unknown parser state %d\n"), state);
795             set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
796             return 0;
797          }
798       }
799       if (state != p_none) {
800          scan_err0(lc, _("End of conf file reached with unclosed resource."));
801          set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
802          return 0;
803       }
804       if (debug_level >= 900 && pass == 2) {
805          int i;
806          for (i=r_first; i<=r_last; i++) {
807             dump_resource(i, res_head[i-r_first], prtmsg, NULL);
808          }
809       }
810       lc = lex_close_file(lc);
811    }
812    Dmsg0(900, "Leave parse_config()\n");
813    set_exit_on_error(1);
814    return 1;
815 }
816
817 /*********************************************************************
818  *
819  *      Free configuration resources
820  *
821  */
822 void free_config_resources()
823 {
824    for (int i=r_first; i<=r_last; i++) {
825       free_resource(res_head[i-r_first], i);
826       res_head[i-r_first] = NULL;
827    }
828 }
829
830 RES **save_config_resources() 
831 {
832    int num = r_last - r_first + 1;
833    RES **res = (RES **)malloc(num*sizeof(RES *));
834    for (int i=0; i<num; i++) {
835       res[i] = res_head[i];
836       res_head[i] = NULL;
837    }
838    return res;
839 }
840
841 RES **new_res_head()
842 {
843    int size = (r_last - r_first + 1) * sizeof(RES *);
844    RES **res = (RES **)malloc(size);
845    memset(res, 0, size);
846    return res;
847 }