]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/parse_conf.c
06Mar05
[bacula/bacula] / bacula / src / lib / parse_conf.c
index b21560d6283c4f332398b02ceb79ae2f7e59ce02..d5dc130815e7ac8a8360143d43f6e1fcc918f85f 100755 (executable)
@@ -1,6 +1,6 @@
 /*
  *   Master Configuration routines.
- *  
+ *
  *   This file contains the common parts of the Bacula
  *   configuration routines.
  *
@@ -8,11 +8,11 @@
  *
  *   1. The generic lexical scanner in lib/lex.c and lib/lex.h
  *
- *   2. The generic config  scanner in lib/parse_conf.c and 
+ *   2. The generic config  scanner in lib/parse_conf.c and
  *     lib/parse_conf.h.
  *     These files contain the parser code, some utility
  *     routines, and the common store routines (name, int,
- *     string).
+ *     string, time, int64, size, ...).
  *
  *   3. The daemon specific file, which contains the Resource
  *     definitions as well as any specific store routines
@@ -34,7 +34,7 @@
  */
 
 /*
-   Copyright (C) 2000-2003 Kern Sibbald and John Walker
+   Copyright (C) 2000-2005 Kern Sibbald
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
 
 extern int debug_level;
 
-/* Each daemon has a slightly different set of 
+/* Each daemon has a slightly different set of
  * resources, so it will define the following
  * global values.
  */
 extern int r_first;
 extern int r_last;
-extern pthread_mutex_t res_mutex;
-extern struct s_res resources[];
+extern RES_TABLE resources[];
+extern RES **res_head;
+
 #ifdef HAVE_WIN32
 // work around visual studio name manling preventing external linkage since res_all
 // is declared as a different type when instantiated.
@@ -77,7 +78,8 @@ extern int res_all_size;
 #endif
 
 
-static bool res_locked = false;        /* set when resource chains locked */
+static brwlock_t res_lock;           /* resource lock */
+static int res_locked = 0;           /* set when resource chains locked -- for debug */
 
 /* Forward referenced subroutines */
 static void scan_types(LEX *lc, MSGS *msg, int dest, char *where, char *cmd);
@@ -88,12 +90,12 @@ static void scan_types(LEX *lc, MSGS *msg, int dest, char *where, char *cmd);
 /* Message resource directives
  *  name        handler      value       code   flags  default_value
  */
-struct res_items msgs_items[] = {
+RES_ITEM msgs_items[] = {
    {"name",        store_name,    ITEM(res_msgs.hdr.name),  0, 0, 0},
    {"description", store_str,     ITEM(res_msgs.hdr.desc),  0, 0, 0},
    {"mailcommand", store_str,     ITEM(res_msgs.mail_cmd),  0, 0, 0},
    {"operatorcommand", store_str, ITEM(res_msgs.operator_cmd), 0, 0, 0},
-   {"syslog",      store_msgs, ITEM(res_msgs), MD_SYSLOG,   0, 0}, 
+   {"syslog",      store_msgs, ITEM(res_msgs), MD_SYSLOG,   0, 0},
    {"mail",        store_msgs, ITEM(res_msgs), MD_MAIL,     0, 0},
    {"mailonerror", store_msgs, ITEM(res_msgs), MD_MAIL_ON_ERROR, 0, 0},
    {"file",        store_msgs, ITEM(res_msgs), MD_FILE,     0, 0},
@@ -101,14 +103,14 @@ struct res_items msgs_items[] = {
    {"stdout",      store_msgs, ITEM(res_msgs), MD_STDOUT,   0, 0},
    {"stderr",      store_msgs, ITEM(res_msgs), MD_STDERR,   0, 0},
    {"director",    store_msgs, ITEM(res_msgs), MD_DIRECTOR, 0, 0},
-   {"console",     store_msgs, ITEM(res_msgs), MD_CONSOLE,  0, 0},   
+   {"console",     store_msgs, ITEM(res_msgs), MD_CONSOLE,  0, 0},
    {"operator",    store_msgs, ITEM(res_msgs), MD_OPERATOR, 0, 0},
-   {NULL, NULL,    NULL, 0}
+   {NULL, NULL,    NULL,       0,             0}
 };
 
-struct s_mtypes {      
+struct s_mtypes {
    const char *name;
-   int token;  
+   int token;
 };
 /* Various message types */
 static struct s_mtypes msg_types[] = {
@@ -124,13 +126,33 @@ static struct s_mtypes msg_types[] = {
    {"mount",         M_MOUNT},
    {"terminate",     M_TERM},
    {"restored",      M_RESTORED},
+   {"security",      M_SECURITY},
+   {"alert",         M_ALERT},
    {"all",           M_MAX+1},
    {NULL,           0}
 };
 
+/* Used for certain KeyWord tables */
+struct s_kw {
+   const char *name;
+   int token;
+};
+
+/*
+ * Tape Label types permitted in Pool records 
+ *
+ *   tape label      label code = token
+ */
+struct s_kw tapelabels[] = {
+   {"bacula",        B_BACULA_LABEL},
+   {"ansi",          B_ANSI_LABEL},
+   {"ibm",           B_IBM_LABEL},
+   {NULL,           0}
+};
+
 
 /* Simply print a message */
-static void prtmsg(void *sock, char *fmt, ...)
+static void prtmsg(void *sock, const char *fmt, ...)
 {
    va_list arg_ptr;
 
@@ -149,27 +171,35 @@ const char *res_to_str(int rcode)
 }
 
 
-/* 
+/*
  * Initialize the static structure to zeros, then
  *  apply all the default values.
  */
-void init_resource(int type, struct res_items *items)
+void init_resource(int type, RES_ITEM *items, int pass)
 {
    int i;
    int rindex = type - r_first;
+   static bool first = true;
+   int errstat;
+
+   if (first && (errstat=rwl_init(&res_lock)) != 0) {
+      Emsg1(M_ABORT, 0, _("Unable to initialize resource lock. ERR=%s\n"),
+           strerror(errstat));
+   }
+   first = false;
 
    memset(&res_all, 0, res_all_size);
    res_all.hdr.rcode = type;
    res_all.hdr.refcnt = 1;
 
    for (i=0; items[i].name; i++) {
-      Dmsg3(300, "Item=%s def=%s defval=%d\n", items[i].name,
-            (items[i].flags & ITEM_DEFAULT) ? "yes" : "no",      
+      Dmsg3(900, "Item=%s def=%s defval=%d\n", items[i].name,
+            (items[i].flags & ITEM_DEFAULT) ? "yes" : "no",
            items[i].default_value);
       if (items[i].flags & ITEM_DEFAULT && items[i].default_value != 0) {
         if (items[i].handler == store_yesno) {
            *(int *)(items[i].value) |= items[i].code;
-        } else if (items[i].handler == store_pint || 
+        } else if (items[i].handler == store_pint ||
                    items[i].handler == store_int) {
            *(int *)(items[i].value) = items[i].default_value;
         } else if (items[i].handler == store_int64) {
@@ -178,6 +208,8 @@ void init_resource(int type, struct res_items *items)
            *(uint64_t *)(items[i].value) = (uint64_t)items[i].default_value;
         } else if (items[i].handler == store_time) {
            *(utime_t *)(items[i].value) = (utime_t)items[i].default_value;
+        } else if (pass == 1 && items[i].handler == store_addresses) {
+           init_default_addresses((dlist**)items[i].value, items[i].default_value);
         }
       }
       /* If this triggers, take a look at lib/parse_conf.h */
@@ -189,14 +221,14 @@ void init_resource(int type, struct res_items *items)
 
 
 /* Store Messages Destination information */
-void store_msgs(LEX *lc, struct res_items *item, int index, int pass)
+void store_msgs(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    int token;
    char *cmd;
    POOLMEM *dest;
-   int dest_len;    
+   int dest_len;
 
-   Dmsg2(200, "store_msgs pass=%d code=%d\n", pass, item->code);
+   Dmsg2(900, "store_msgs pass=%d code=%d\n", pass, item->code);
    if (pass == 1) {
       switch (item->code) {
       case MD_STDOUT:
@@ -222,41 +254,41 @@ void store_msgs(LEX *lc, struct res_items *item, int index, int pass)
            token = lex_get_token(lc, T_NAME);   /* scan destination */
            dest = check_pool_memory_size(dest, dest_len + lc->str_len + 2);
            if (dest[0] != 0) {
-               pm_strcat(&dest, " ");  /* separate multiple destinations with space */
+               pm_strcat(dest, " ");  /* separate multiple destinations with space */
               dest_len++;
            }
-           pm_strcat(&dest, lc->str);
+           pm_strcat(dest, lc->str);
            dest_len += lc->str_len;
-            Dmsg2(100, "store_msgs newdest=%s: dest=%s:\n", lc->str, NPRT(dest));
-           token = lex_get_token(lc, T_ALL);
-           if (token == T_COMMA) { 
+            Dmsg2(900, "store_msgs newdest=%s: dest=%s:\n", lc->str, NPRT(dest));
+           token = lex_get_token(lc, T_SKIP_EOL);
+           if (token == T_COMMA) {
               continue;           /* get another destination */
            }
            if (token != T_EQUALS) {
-               scan_err1(lc, _("expected an =, got: %s"), lc->str); 
+               scan_err1(lc, _("expected an =, got: %s"), lc->str);
            }
            break;
         }
-         Dmsg1(200, "mail_cmd=%s\n", NPRT(cmd));
+         Dmsg1(900, "mail_cmd=%s\n", NPRT(cmd));
         scan_types(lc, (MSGS *)(item->value), item->code, dest, cmd);
         free_pool_memory(dest);
-         Dmsg0(200, "done with dest codes\n");
+         Dmsg0(900, "done with dest codes\n");
         break;
       case MD_FILE:               /* file */
       case MD_APPEND:             /* append */
         dest = get_pool_memory(PM_MESSAGE);
         /* Pick up a single destination */
         token = lex_get_token(lc, T_NAME);   /* scan destination */
-        pm_strcpy(&dest, lc->str);
+        pm_strcpy(dest, lc->str);
         dest_len = lc->str_len;
-        token = lex_get_token(lc, T_ALL);
-         Dmsg1(200, "store_msgs dest=%s:\n", NPRT(dest));
+        token = lex_get_token(lc, T_SKIP_EOL);
+         Dmsg1(900, "store_msgs dest=%s:\n", NPRT(dest));
         if (token != T_EQUALS) {
-            scan_err1(lc, _("expected an =, got: %s"), lc->str); 
+            scan_err1(lc, _("expected an =, got: %s"), lc->str);
         }
         scan_types(lc, (MSGS *)(item->value), item->code, dest, NULL);
         free_pool_memory(dest);
-         Dmsg0(200, "done with dest codes\n");
+         Dmsg0(900, "done with dest codes\n");
         break;
 
       default:
@@ -266,10 +298,10 @@ void store_msgs(LEX *lc, struct res_items *item, int index, int pass)
    }
    scan_to_eol(lc);
    set_bit(index, res_all.hdr.item_present);
-   Dmsg0(200, "Done store_msgs\n");
+   Dmsg0(900, "Done store_msgs\n");
 }
 
-/* 
+/*
  * Scan for message types and add them to the message
  * destination. The basic job here is to connect message types
  *  (WARNING, ERROR, FATAL, INFO, ...) with an appropriate
@@ -282,7 +314,7 @@ static void scan_types(LEX *lc, MSGS *msg, int dest_code, char *where, char *cmd
    char *str;
 
    for (quit=0; !quit;) {
-      lex_get_token(lc, T_NAME);           /* expect at least one type */       
+      lex_get_token(lc, T_NAME);           /* expect at least one type */
       found = FALSE;
       if (lc->str[0] == '!') {
         is_not = TRUE;
@@ -317,18 +349,18 @@ static void scan_types(LEX *lc, MSGS *msg, int dest_code, char *where, char *cmd
       if (lc->ch != ',') {
         break;
       }
-      Dmsg0(200, "call lex_get_token() to eat comma\n");
+      Dmsg0(900, "call lex_get_token() to eat comma\n");
       lex_get_token(lc, T_ALL);         /* eat comma */
    }
-   Dmsg0(200, "Done scan_types()\n");
+   Dmsg0(900, "Done scan_types()\n");
 }
 
 
-/* 
+/*
  * This routine is ONLY for resource names
  *  Store a name at specified address.
  */
-void store_name(LEX *lc, struct res_items *item, int index, int pass)
+void store_name(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    POOLMEM *msg = get_pool_memory(PM_EMSG);
    lex_get_token(lc, T_NAME);
@@ -338,7 +370,7 @@ void store_name(LEX *lc, struct res_items *item, int index, int pass)
    free_pool_memory(msg);
    /* Store the name both pass 1 and pass 2 */
    if (*(item->value)) {
-      scan_err2(lc, _("Attempt to redefine name \"%s\" to \"%s\"."), 
+      scan_err2(lc, _("Attempt to redefine name \"%s\" to \"%s\"."),
         *(item->value), lc->str);
    }
    *(item->value) = bstrdup(lc->str);
@@ -351,7 +383,7 @@ void store_name(LEX *lc, struct res_items *item, int index, int pass)
  * Store a name string at specified address
  * A name string is limited to MAX_RES_NAME_LENGTH
  */
-void store_strname(LEX *lc, struct res_items *item, int index, int pass)
+void store_strname(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_NAME);
    /* Store the name */
@@ -363,7 +395,7 @@ void store_strname(LEX *lc, struct res_items *item, int index, int pass)
 }
 
 /* Store a string at specified address */
-void store_str(LEX *lc, struct res_items *item, int index, int pass)
+void store_str(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_STRING);
    if (pass == 1) {
@@ -378,7 +410,7 @@ void store_str(LEX *lc, struct res_items *item, int index, int pass)
  *   shell expansion except if the string begins with a vertical
  *   bar (i.e. it will likely be passed to the shell later).
  */
-void store_dir(LEX *lc, struct res_items *item, int index, int pass)
+void store_dir(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_STRING);
    if (pass == 1) {
@@ -393,7 +425,7 @@ void store_dir(LEX *lc, struct res_items *item, int index, int pass)
 
 
 /* Store a password specified address in MD5 coding */
-void store_password(LEX *lc, struct res_items *item, int index, int pass)
+void store_password(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    unsigned int i, j;
    struct MD5Context md5c;
@@ -407,7 +439,7 @@ void store_password(LEX *lc, struct res_items *item, int index, int pass)
       MD5Update(&md5c, (unsigned char *) (lc->str), lc->str_len);
       MD5Final(signature, &md5c);
       for (i = j = 0; i < sizeof(signature); i++) {
-         sprintf(&sig[j], "%02x", signature[i]); 
+         sprintf(&sig[j], "%02x", signature[i]);
         j += 2;
       }
       *(item->value) = bstrdup(sig);
@@ -418,54 +450,138 @@ void store_password(LEX *lc, struct res_items *item, int index, int pass)
 
 
 /* Store a resource at specified address.
- * If we are in pass 2, do a lookup of the 
+ * If we are in pass 2, do a lookup of the
  * resource.
  */
-void store_res(LEX *lc, struct res_items *item, int index, int pass)
+void store_res(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    RES *res;
 
    lex_get_token(lc, T_NAME);
    if (pass == 2) {
-     res = GetResWithName(item->code, lc->str);
-     if (res == NULL) {
-        scan_err3(lc, _("Could not find config Resource %s referenced on line %d : %s\n"), 
-          lc->str, lc->line_no, lc->line);
-     }
-     *(item->value) = (char *)res;
+      res = GetResWithName(item->code, lc->str);
+      if (res == NULL) {
+         scan_err3(lc, _("Could not find config Resource %s referenced on line %d : %s\n"),
+           lc->str, lc->line_no, lc->line);
+      }
+      if (*(item->value)) {
+         scan_err3(lc, _("Attempt to redefine resource \"%s\" referenced on line %d : %s\n"),
+           item->name, lc->line_no, lc->line);
+      }
+      *(item->value) = (char *)res;
+   }
+   scan_to_eol(lc);
+   set_bit(index, res_all.hdr.item_present);
+}
+
+/*
+ * Store a resource pointer in an alist. default_value indicates how many
+ *   times this routine can be called -- i.e. how many alists
+ *   there are.
+ * If we are in pass 2, do a lookup of the
+ *   resource.
+ */
+void store_alist_res(LEX *lc, RES_ITEM *item, int index, int pass)
+{
+   RES *res;
+   int count = item->default_value;
+   int i = 0;
+   alist *list;
+
+   if (pass == 2) {
+      if (count == 0) {              /* always store in item->value */
+        i = 0;
+        if ((item->value)[i] == NULL) {
+           list = New(alist(10, not_owned_by_alist));
+        } else {
+           list = (alist *)(item->value)[i];
+        }
+      } else {
+        /* Find empty place to store this directive */
+        while ((item->value)[i] != NULL && i++ < count) { }
+        if (i >= count) {
+            scan_err4(lc, _("Too many %s directives. Max. is %d. line %d: %s\n"),
+              lc->str, count, lc->line_no, lc->line);
+        }
+        list = New(alist(10, not_owned_by_alist));
+      }
+
+      for (;;) {
+        lex_get_token(lc, T_NAME);   /* scan next item */
+        res = GetResWithName(item->code, lc->str);
+        if (res == NULL) {
+            scan_err3(lc, _("Could not find config Resource \"%s\" referenced on line %d : %s\n"),
+              item->name, lc->line_no, lc->line);
+        }
+         Dmsg5(900, "Append %p to alist %p size=%d i=%d %s\n", 
+              res, list, list->size(), i, item->name);
+        list->append(res);
+        (item->value)[i] = (char *)list;
+         if (lc->ch != ',') {         /* if no other item follows */
+           break;                    /* get out */
+        }
+        lex_get_token(lc, T_ALL);    /* eat comma */
+      }
+   }
+   scan_to_eol(lc);
+   set_bit(index, res_all.hdr.item_present);
+}
+
+
+/*
+ * Store a string in an alist.
+ */
+void store_alist_str(LEX *lc, RES_ITEM *item, int index, int pass)
+{
+   alist *list;
+
+   if (pass == 2) {
+      if (*(item->value) == NULL) {
+        list = New(alist(10, owned_by_alist));
+      } else {
+        list = (alist *)(*(item->value));    
+      }
+
+      lex_get_token(lc, T_STRING);   /* scan next item */
+      Dmsg4(900, "Append %s to alist %p size=%d %s\n", 
+        lc->str, list, list->size(), item->name);
+      list->append(bstrdup(lc->str));
+      *(item->value) = (char *)list;
    }
    scan_to_eol(lc);
    set_bit(index, res_all.hdr.item_present);
 }
 
+
+
 /*
  * Store default values for Resource from xxxDefs
- * If we are in pass 2, do a lookup of the 
+ * If we are in pass 2, do a lookup of the
  * resource and store everything not explicitly set
  * in main resource.
  *
  * Note, here item points to the main resource (e.g. Job, not
  *  the jobdefs, which we look up).
  */
-void store_defs(LEX *lc, struct res_items *item, int index, int pass)
+void store_defs(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    RES *res;
 
    lex_get_token(lc, T_NAME);
    if (pass == 2) {
-     Dmsg2(200, "Code=%d name=%s\n", item->code, lc->str);
+     Dmsg2(900, "Code=%d name=%s\n", item->code, lc->str);
      res = GetResWithName(item->code, lc->str);
      if (res == NULL) {
-        scan_err3(lc, _("Missing config Resource \"%s\" referenced on line %d : %s\n"), 
+        scan_err3(lc, _("Missing config Resource \"%s\" referenced on line %d : %s\n"),
           lc->str, lc->line_no, lc->line);
      }
      /* for each item not set, we copy the field from res */
 #ifdef xxx
      for (int i=0; item->name;; i++, item++) {
        if (bit_is_set(i, res->item_present)) {
-           Dmsg2(000, "Item %d is present in %s\n", i, res->name);
+           Dmsg2(900, "Item %d is present in %s\n", i, res->name);
        } else {
-           Dmsg2(000, "Item %d is not present in %s\n", i, res->name);
+           Dmsg2(900, "Item %d is not present in %s\n", i, res->name);
        }
      }
      /* ***FIXME **** add code */
@@ -477,7 +593,7 @@ void store_defs(LEX *lc, struct res_items *item, int index, int pass)
 
 
 /* Store an integer at specified address */
-void store_int(LEX *lc, struct res_items *item, int index, int pass)
+void store_int(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_INT32);
    *(int *)(item->value) = lc->int32_val;
@@ -486,7 +602,7 @@ void store_int(LEX *lc, struct res_items *item, int index, int pass)
 }
 
 /* Store a positive integer at specified address */
-void store_pint(LEX *lc, struct res_items *item, int index, int pass)
+void store_pint(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_PINT32);
    *(int *)(item->value) = lc->pint32_val;
@@ -496,7 +612,7 @@ void store_pint(LEX *lc, struct res_items *item, int index, int pass)
 
 
 /* Store an 64 bit integer at specified address */
-void store_int64(LEX *lc, struct res_items *item, int index, int pass)
+void store_int64(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_INT64);
    *(int64_t *)(item->value) = lc->int64_val;
@@ -505,13 +621,13 @@ void store_int64(LEX *lc, struct res_items *item, int index, int pass)
 }
 
 /* Store a size in bytes */
-void store_size(LEX *lc, struct res_items *item, int index, int pass)
+void store_size(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    int token;
    uint64_t uvalue;
 
-   Dmsg0(400, "Enter store_size\n");
-   token = lex_get_token(lc, T_ALL);
+   Dmsg0(900, "Enter store_size\n");
+   token = lex_get_token(lc, T_SKIP_EOL);
    errno = 0;
    switch (token) {
    case T_NUMBER:
@@ -528,18 +644,18 @@ void store_size(LEX *lc, struct res_items *item, int index, int pass)
    }
    scan_to_eol(lc);
    set_bit(index, res_all.hdr.item_present);
-   Dmsg0(400, "Leave store_size\n");
+   Dmsg0(900, "Leave store_size\n");
 }
 
 
 /* Store a time period in seconds */
-void store_time(LEX *lc, struct res_items *item, int index, int pass)
+void store_time(LEX *lc, RES_ITEM *item, int index, int pass)
 {
-   int token; 
+   int token;
    utime_t utime;
    char period[500];
 
-   token = lex_get_token(lc, T_ALL);
+   token = lex_get_token(lc, T_SKIP_EOL);
    errno = 0;
    switch (token) {
    case T_NUMBER:
@@ -572,7 +688,7 @@ void store_time(LEX *lc, struct res_items *item, int index, int pass)
 
 
 /* Store a yes/no in a bit field */
-void store_yesno(LEX *lc, struct res_items *item, int index, int pass)
+void store_yesno(LEX *lc, RES_ITEM *item, int index, int pass)
 {
    lex_get_token(lc, T_NAME);
    if (strcasecmp(lc->str, "yes") == 0) {
@@ -586,18 +702,59 @@ void store_yesno(LEX *lc, struct res_items *item, int index, int pass)
    set_bit(index, res_all.hdr.item_present);
 }
 
+/*
+ * Store Tape Label Type (Bacula, ANSI, IBM)
+ *
+ */
+void store_label(LEX *lc, RES_ITEM *item, int index, int pass)
+{
+   int token, i;
+
+   token = lex_get_token(lc, T_NAME);
+   /* Store the label pass 2 so that type is defined */
+   for (i=0; tapelabels[i].name; i++) {
+      if (strcasecmp(lc->str, tapelabels[i].name) == 0) {
+        *(int *)(item->value) = tapelabels[i].token;
+        i = 0;
+        break;
+      }
+   }
+   if (i != 0) {
+      scan_err1(lc, "Expected a Tape Label keyword, got: %s", lc->str);
+   }
+   scan_to_eol(lc);
+   set_bit(index, res_all.hdr.item_present);
+}
+
 
+/* #define TRACE_RES */
 
-void LockRes()
+void b_LockRes(const char *file, int line)
 {
-   P(res_mutex);
-   res_locked = true;
+   int errstat;
+#ifdef TRACE_RES
+   Pmsg4(000, "LockRes   %d,%d at %s:%d\n", res_locked, res_lock.w_active,
+        file, line);
+#endif
+   if ((errstat=rwl_writelock(&res_lock)) != 0) {
+      Emsg3(M_ABORT, 0, "rwl_writelock failure at %s:%d:  ERR=%s\n",
+          file, line, strerror(errstat));
+   }
+   res_locked++;
 }
 
-void UnlockRes()
+void b_UnlockRes(const char *file, int line)
 {
-   res_locked = false;
-   V(res_mutex);
+   int errstat;
+   res_locked--;
+#ifdef TRACE_RES
+   Pmsg4(000, "UnLockRes %d,%d at %s:%d\n", res_locked, res_lock.w_active,
+        file, line);
+#endif
+   if ((errstat=rwl_writeunlock(&res_lock)) != 0) {
+      Emsg3(M_ABORT, 0, "rwl_writeunlock failure at %s:%d:. ERR=%s\n",
+          file, line, strerror(errstat));
+   }
 }
 
 /*
@@ -610,7 +767,7 @@ GetResWithName(int rcode, char *name)
    int rindex = rcode - r_first;
 
    LockRes();
-   res = resources[rindex].res_head;
+   res = res_head[rindex];
    while (res) {
       if (strcmp(res->name, name) == 0) {
         break;
@@ -619,7 +776,7 @@ GetResWithName(int rcode, char *name)
    }
    UnlockRes();
    return res;
-   
+
 }
 
 /*
@@ -632,13 +789,13 @@ GetNextRes(int rcode, RES *res)
 {
    RES *nres;
    int rindex = rcode - r_first;
-       
+
 
    if (!res_locked) {
       Emsg0(M_ABORT, 0, "Resource chain not locked.\n");
    }
    if (res == NULL) {
-      nres = resources[rindex].res_head;
+      nres = res_head[rindex];
    } else {
       nres = res->next;
    }
@@ -656,119 +813,135 @@ enum parse_state {
  *
  *     Parse configuration file
  *
+ * Return 0 if reading failed, 1 otherwise
  */
-void 
-parse_config(char *cf)
+int
+parse_config(const char *cf, int exit_on_error)
 {
+   set_exit_on_error(exit_on_error);
    LEX *lc = NULL;
    int token, i, pass;
    int res_type = 0;
    enum parse_state state = p_none;
-   struct res_items *items = NULL;
+   RES_ITEM *items = NULL;
    int level = 0;
 
    /* Make two passes. The first builds the name symbol table,
-    * and the second picks up the items. 
+    * and the second picks up the items.
     */
-   Dmsg0(200, "Enter parse_config()\n");
+   Dmsg0(900, "Enter parse_config()\n");
    for (pass=1; pass <= 2; pass++) {
-      Dmsg1(200, "parse_config pass %d\n", pass);
-      lc = lex_open_file(lc, cf, NULL);
+      Dmsg1(900, "parse_config pass %d\n", pass);
+      if ((lc = lex_open_file(lc, cf, NULL)) == NULL) {
+        set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+        return 0;
+      }
       while ((token=lex_get_token(lc, T_ALL)) != T_EOF) {
-         Dmsg1(150, "parse got token=%s\n", lex_tok_to_str(token));
+         Dmsg1(900, "parse got token=%s\n", lex_tok_to_str(token));
         switch (state) {
-           case p_none:
-              if (token == T_EOL) {
+        case p_none:
+           if (token == T_EOL) {
+              break;
+           }
+           if (token != T_IDENTIFIER) {
+               scan_err1(lc, _("Expected a Resource name identifier, got: %s"), lc->str);
+              set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+              return 0;
+           }
+           for (i=0; resources[i].name; i++)
+              if (strcasecmp(resources[i].name, lc->str) == 0) {
+                 state = p_resource;
+                 items = resources[i].items;
+                 res_type = resources[i].rcode;
+                 init_resource(res_type, items, pass);
                  break;
               }
-              if (token != T_IDENTIFIER) {
-                  scan_err1(lc, _("Expected a Resource name identifier, got: %s"), lc->str);
-                 /* NOT REACHED */
+           if (state == p_none) {
+               scan_err1(lc, _("expected resource name, got: %s"), lc->str);
+              set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+              return 0;
+           }
+           break;
+        case p_resource:
+           switch (token) {
+           case T_BOB:
+              level++;
+              break;
+           case T_IDENTIFIER:
+              if (level != 1) {
+                  scan_err1(lc, _("not in resource definition: %s"), lc->str);
+                 set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+                 return 0;
               }
-              for (i=0; resources[i].name; i++)
-                 if (strcasecmp(resources[i].name, lc->str) == 0) {
-                    state = p_resource;
-                    items = resources[i].items;
-                    res_type = resources[i].rcode;
-                    init_resource(res_type, items);
+              for (i=0; items[i].name; i++) {
+                 if (strcasecmp(items[i].name, lc->str) == 0) {
+                    /* If the ITEM_NO_EQUALS flag is set we do NOT
+                     *   scan for = after the keyword  */
+                    if (!(items[i].flags & ITEM_NO_EQUALS)) {
+                       token = lex_get_token(lc, T_SKIP_EOL);
+                        Dmsg1 (900, "in T_IDENT got token=%s\n", lex_tok_to_str(token));
+                       if (token != T_EQUALS) {
+                           scan_err1(lc, _("expected an equals, got: %s"), lc->str);
+                          set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+                          return 0;
+                       }
+                    }
+                     Dmsg1(900, "calling handler for %s\n", items[i].name);
+                    /* Call item handler */
+                    items[i].handler(lc, &items[i], i, pass);
+                    i = -1;
                     break;
                  }
-              if (state == p_none) {
-                  scan_err1(lc, _("expected resource name, got: %s"), lc->str);
-                 /* NOT REACHED */
+              }
+              if (i >= 0) {
+                  Dmsg2(900, "level=%d id=%s\n", level, lc->str);
+                  Dmsg1(900, "Keyword = %s\n", lc->str);
+                  scan_err1(lc, _("Keyword \"%s\" not permitted in this resource.\n"
+                     "Perhaps you left the trailing brace off of the previous resource."), lc->str);
+                 set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+                 return 0;
               }
               break;
-           case p_resource:
-              switch (token) {
-                 case T_BOB:
-                    level++;
-                    break;
-                 case T_IDENTIFIER:
-                    if (level != 1) {
-                        scan_err1(lc, _("not in resource definition: %s"), lc->str);
-                       /* NOT REACHED */
-                    }
-                    for (i=0; items[i].name; i++) {
-                       if (strcasecmp(items[i].name, lc->str) == 0) {
-                          /* If the ITEM_NO_EQUALS flag is set we do NOT              
-                           *   scan for = after the keyword  */
-                          if (!(items[i].flags & ITEM_NO_EQUALS)) {
-                             token = lex_get_token(lc, T_ALL);
-                              Dmsg1 (150, "in T_IDENT got token=%s\n", lex_tok_to_str(token));
-                             if (token != T_EQUALS) {
-                                 scan_err1(lc, _("expected an equals, got: %s"), lc->str);
-                                /* NOT REACHED */
-                             }
-                          }
-                           Dmsg1(150, "calling handler for %s\n", items[i].name);
-                          /* Call item handler */
-                          items[i].handler(lc, &items[i], i, pass);
-                          i = -1;
-                          break;
-                       }
-                    }
-                    if (i >= 0) {
-                        Dmsg2(150, "level=%d id=%s\n", level, lc->str);
-                        Dmsg1(150, "Keyword = %s\n", lc->str);
-                        scan_err1(lc, _("Keyword \"%s\" not permitted in this resource.\n"
-                           "Perhaps you left the trailing brace off of the previous resource."), lc->str);
-                       /* NOT REACHED */
-                    }
-                    break;
 
-                 case T_EOB:
-                    level--;
-                    state = p_none;
-                     Dmsg0(150, "T_EOB => define new resource\n");
-                    save_resource(res_type, items, pass);  /* save resource */
-                    break;
-
-                 case T_EOL:
-                    break;
+           case T_EOB:
+              level--;
+              state = p_none;
+               Dmsg0(900, "T_EOB => define new resource\n");
+              save_resource(res_type, items, pass);  /* save resource */
+              break;
 
-                 default:
-                     scan_err2(lc, _("unexpected token %d %s in resource definition"),    
-                       token, lex_tok_to_str(token));
-                    /* NOT REACHED */
-              }
+           case T_EOL:
               break;
+
            default:
-               scan_err1(lc, _("Unknown parser state %d\n"), state);
-              /* NOT REACHED */
+               scan_err2(lc, _("unexpected token %d %s in resource definition"),
+                 token, lex_tok_to_str(token));
+              set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+              return 0;
+           }
+           break;
+        default:
+            scan_err1(lc, _("Unknown parser state %d\n"), state);
+           set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+           return 0;
         }
       }
       if (state != p_none) {
          scan_err0(lc, _("End of conf file reached with unclosed resource."));
+        set_exit_on_error(1); /* Never reached if exit_on_error == 1 */
+        return 0;
       }
-      if (debug_level > 50 && pass == 2) {
+      if (debug_level >= 900 && pass == 2) {
         int i;
         for (i=r_first; i<=r_last; i++) {
-           dump_resource(i, resources[i-r_first].res_head, prtmsg, NULL);
+           dump_resource(i, res_head[i-r_first], prtmsg, NULL);
         }
       }
       lc = lex_close_file(lc);
    }
-   Dmsg0(200, "Leave parse_config()\n");
+   Dmsg0(900, "Leave parse_config()\n");
+   set_exit_on_error(1);
+   return 1;
 }
 
 /*********************************************************************
@@ -776,11 +949,29 @@ parse_config(char *cf)
  *     Free configuration resources
  *
  */
-void 
-free_config_resources()
+void free_config_resources()
 {
-   int i;
-   for (i=r_first; i<=r_last; i++) {
-      free_resource(i);
+   for (int i=r_first; i<=r_last; i++) {
+      free_resource(res_head[i-r_first], i);
+      res_head[i-r_first] = NULL;
+   }
+}
+
+RES **save_config_resources()
+{
+   int num = r_last - r_first + 1;
+   RES **res = (RES **)malloc(num*sizeof(RES *));
+   for (int i=0; i<num; i++) {
+      res[i] = res_head[i];
+      res_head[i] = NULL;
    }
+   return res;
+}
+
+RES **new_res_head()
+{
+   int size = (r_last - r_first + 1) * sizeof(RES *);
+   RES **res = (RES **)malloc(size);
+   memset(res, 0, size);
+   return res;
 }