]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird_conf.c
8689a33b08e85e58172a3ceb7fae768fefb295b0
[bacula/bacula] / bacula / src / dird / dird_conf.c
1 /*
2  *   Main configuration file parser for Bacula Directors,
3  *    some parts may be split into separate files such as
4  *    the schedule configuration (sch_config.c).
5  *
6  *   Note, the configuration file parser consists of three parts
7  *
8  *   1. The generic lexical scanner in lib/lex.c and lib/lex.h
9  *
10  *   2. The generic config  scanner in lib/parse_config.c and 
11  *      lib/parse_config.h.
12  *      These files contain the parser code, some utility
13  *      routines, and the common store routines (name, int,
14  *      string).
15  *
16  *   3. The daemon specific file, which contains the Resource
17  *      definitions as well as any specific store routines
18  *      for the resource records.
19  *
20  *     Kern Sibbald, January MM
21  */
22 /*
23    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
24
25    This program is free software; you can redistribute it and/or
26    modify it under the terms of the GNU General Public License as
27    published by the Free Software Foundation; either version 2 of
28    the License, or (at your option) any later version.
29
30    This program is distributed in the hope that it will be useful,
31    but WITHOUT ANY WARRANTY; without even the implied warranty of
32    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33    General Public License for more details.
34
35    You should have received a copy of the GNU General Public
36    License along with this program; if not, write to the Free
37    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
38    MA 02111-1307, USA.
39
40  */
41
42 #include "bacula.h"
43 #include "dird.h"
44
45 /* Define the first and last resource ID record
46  * types. Note, these should be unique for each
47  * daemon though not a requirement.
48  */
49 int r_first = R_FIRST;
50 int r_last  = R_LAST;
51 pthread_mutex_t res_mutex =  PTHREAD_MUTEX_INITIALIZER;
52
53 /* Imported subroutines */
54 extern void store_run(LEX *lc, struct res_items *item, int index, int pass);
55
56
57 /* Forward referenced subroutines */
58
59 static void store_inc(LEX *lc, struct res_items *item, int index, int pass);
60 static void store_backup(LEX *lc, struct res_items *item, int index, int pass);
61 static void store_restore(LEX *lc, struct res_items *item, int index, int pass);
62
63
64 /* We build the current resource here as we are
65  * scanning the resource configuration definition,
66  * then move it to allocated memory when the resource
67  * scan is complete.
68  */
69 URES res_all;
70 int  res_all_size = sizeof(res_all);
71
72
73 /* Definition of records permitted within each
74  * resource with the routine to process the record 
75  * information.  NOTE! quoted names must be in lower case.
76  */ 
77 /* 
78  *    Director Resource
79  *
80  *   name          handler     value                 code flags    default_value
81  */
82 static struct res_items dir_items[] = {
83    {"name",        store_name,     ITEM(res_dir.hdr.name), 0, ITEM_REQUIRED, 0},
84    {"description", store_str,      ITEM(res_dir.hdr.desc), 0, 0, 0},
85    {"messages",    store_res,      ITEM(res_dir.messages), R_MSGS, 0, 0},
86    {"dirport",     store_pint,     ITEM(res_dir.DIRport),  0, ITEM_REQUIRED, 0},
87    {"queryfile",   store_dir,      ITEM(res_dir.query_file), 0, 0, 0},
88    {"workingdirectory", store_dir, ITEM(res_dir.working_directory), 0, ITEM_REQUIRED, 0},
89    {"piddirectory", store_dir,     ITEM(res_dir.pid_directory), 0, ITEM_REQUIRED, 0},
90    {"subsysdirectory", store_dir,  ITEM(res_dir.subsys_directory), 0, ITEM_REQUIRED, 0},
91    {"maximumconcurrentjobs", store_pint, ITEM(res_dir.MaxConcurrentJobs), 0, ITEM_DEFAULT, 1},
92    {"password",    store_password, ITEM(res_dir.password), 0, ITEM_REQUIRED, 0},
93    {"fdconnecttimeout", store_time,ITEM(res_dir.FDConnectTimeout), 0, ITEM_DEFAULT, 60 * 30},
94    {"sdconnecttimeout", store_time,ITEM(res_dir.SDConnectTimeout), 0, ITEM_DEFAULT, 60 * 30},
95    {NULL, NULL, NULL, 0, 0, 0}
96 };
97
98 /* 
99  *    Client or File daemon resource
100  *
101  *   name          handler     value                 code flags    default_value
102  */
103
104 static struct res_items cli_items[] = {
105    {"name",     store_name,       ITEM(res_client.hdr.name), 0, ITEM_REQUIRED, 0},
106    {"description", store_str,     ITEM(res_client.hdr.desc), 0, 0, 0},
107    {"address",  store_str,        ITEM(res_client.address),  0, ITEM_REQUIRED, 0},
108    {"fdport",   store_pint,       ITEM(res_client.FDport),   0, ITEM_REQUIRED, 0},
109    {"password", store_password,   ITEM(res_client.password), 0, ITEM_REQUIRED, 0},
110    {"catalog",  store_res,        ITEM(res_client.catalog),  R_CATALOG, 0, 0},
111    {"fileretention", store_time,  ITEM(res_client.FileRetention), 0, ITEM_DEFAULT, 60*60*24*30},
112    {"jobretention",  store_time,  ITEM(res_client.JobRetention),  0, ITEM_DEFAULT, 60*60*24*365},
113    {"autoprune", store_yesno,     ITEM(res_client.AutoPrune), 1, ITEM_DEFAULT, 1},
114    {NULL, NULL, NULL, 0, 0, 0} 
115 };
116
117 /* Storage daemon resource
118  *
119  *   name          handler     value                 code flags    default_value
120  */
121 static struct res_items store_items[] = {
122    {"name",      store_name,     ITEM(res_store.hdr.name),   0, ITEM_REQUIRED, 0},
123    {"description", store_str,    ITEM(res_store.hdr.desc),   0, 0, 0},
124    {"sdport",    store_pint,     ITEM(res_store.SDport),     0, ITEM_REQUIRED, 0},
125    {"sddport",   store_pint,     ITEM(res_store.SDDport),    0, 0, 0}, /* deprecated */
126    {"address",   store_str,      ITEM(res_store.address),    0, ITEM_REQUIRED, 0},
127    {"password",  store_password, ITEM(res_store.password),   0, ITEM_REQUIRED, 0},
128    {"device",    store_strname,  ITEM(res_store.dev_name),   0, ITEM_REQUIRED, 0},
129    {"mediatype", store_strname,  ITEM(res_store.media_type), 0, ITEM_REQUIRED, 0},
130    {NULL, NULL, NULL, 0, 0, 0} 
131 };
132
133 /* 
134  *    Catalog Resource Directives
135  *
136  *   name          handler     value                 code flags    default_value
137  */
138 static struct res_items cat_items[] = {
139    {"name",     store_name,     ITEM(res_cat.hdr.name),    0, ITEM_REQUIRED, 0},
140    {"description", store_str,   ITEM(res_cat.hdr.desc),    0, 0, 0},
141    {"address",  store_str,      ITEM(res_cat.address),     0, 0, 0},
142    {"dbport",   store_pint,     ITEM(res_cat.DBport),      0, 0, 0},
143    /* keep this password as store_str for the moment */
144    {"password", store_str,      ITEM(res_cat.db_password), 0, 0, 0},
145    {"user",     store_str,      ITEM(res_cat.db_user),     0, 0, 0},
146    {"dbname",   store_str,      ITEM(res_cat.db_name),     0, ITEM_REQUIRED, 0},
147    {NULL, NULL, NULL, 0, 0, 0} 
148 };
149
150 /* 
151  *    Job Resource Directives
152  *
153  *   name          handler     value                 code flags    default_value
154  */
155 static struct res_items job_items[] = {
156    {"name",     store_name,   ITEM(res_job.hdr.name), 0, ITEM_REQUIRED, 0},
157    {"description", store_str, ITEM(res_job.hdr.desc), 0, 0, 0},
158    {"backup",   store_backup, ITEM(res_job),          JT_BACKUP, 0, 0},
159    {"verify",   store_backup, ITEM(res_job),          JT_VERIFY, 0, 0},
160    {"restore",  store_restore, ITEM(res_job),         JT_RESTORE, 0, 0},
161    {"schedule", store_res,    ITEM(res_job.schedule), R_SCHEDULE, 0, 0},
162    {"messages", store_res,    ITEM(res_job.messages), R_MSGS, 0, 0},
163    {"storage",  store_res,    ITEM(res_job.storage),  R_STORAGE, 0, 0},
164    {"pool",     store_res,    ITEM(res_job.pool),     R_POOL, 0, 0},
165    {"maxruntime", store_time, ITEM(res_job.MaxRunTime), 0, 0, 0},
166    {"maxstartdelay", store_time, ITEM(res_job.MaxStartDelay), 0, 0, 0},
167    {NULL, NULL, NULL, 0, 0, 0} 
168 };
169
170 /* FileSet resource
171  *
172  *   name          handler     value                 code flags    default_value
173  */
174 static struct res_items fs_items[] = {
175    {"name",        store_name, ITEM(res_fs.hdr.name), 0, ITEM_REQUIRED, 0},
176    {"description", store_str,  ITEM(res_fs.hdr.desc), 0, 0, 0},
177    {"include",     store_inc,  NULL,                  0, 0, 0},
178    {"exclude",     store_inc,  NULL,                  1, 0, 0},
179    {NULL,          NULL,       NULL,                  0, 0, 0} 
180 };
181
182 /* Schedule -- see run_conf.c */
183 /* Schedule
184  *
185  *   name          handler     value                 code flags    default_value
186  */
187 static struct res_items sch_items[] = {
188    {"name",     store_name,  ITEM(res_sch.hdr.name), 0, ITEM_REQUIRED, 0},
189    {"description", store_str, ITEM(res_sch.hdr.desc), 0, 0, 0},
190    {"run",      store_run,   ITEM(res_sch.run),      0, 0, 0},
191    {NULL, NULL, NULL, 0, 0, 0} 
192 };
193
194 /* Group resource -- not implemented
195  *
196  *   name          handler     value                 code flags    default_value
197  */
198 static struct res_items group_items[] = {
199    {"name",        store_name, ITEM(res_group.hdr.name), 0, ITEM_REQUIRED, 0},
200    {"description", store_str,  ITEM(res_group.hdr.desc), 0, 0, 0},
201    {NULL, NULL, NULL, 0, 0, 0} 
202 };
203
204 /* Pool resource
205  *
206  *   name             handler     value                        code flags default_value
207  */
208 static struct res_items pool_items[] = {
209    {"name",            store_name,    ITEM(res_pool.hdr.name),        0, ITEM_REQUIRED, 0},
210    {"description",     store_str,     ITEM(res_pool.hdr.desc),        0, 0,     0},
211    {"pooltype",        store_strname, ITEM(res_pool.pool_type),       0, ITEM_REQUIRED, 0},
212    {"labelformat",     store_strname, ITEM(res_pool.label_format),    0, 0,     0},
213    {"usecatalog",      store_yesno, ITEM(res_pool.use_catalog),     1, ITEM_DEFAULT,  1},
214    {"usevolumeonce",   store_yesno, ITEM(res_pool.use_volume_once), 1, 0,       0},
215    {"maximumvolumes",  store_pint,  ITEM(res_pool.max_volumes),     0, 0,             0},
216    {"acceptanyvolume", store_yesno, ITEM(res_pool.accept_any_volume), 1, 0,     0},
217    {"catalogfiles",    store_yesno, ITEM(res_pool.catalog_files),   1, ITEM_DEFAULT,  1},
218    {"volumeretention", store_time,  ITEM(res_pool.VolumeRetention), 0, ITEM_DEFAULT, 60*60*24*365},
219    {"autorecycle",     store_yesno, ITEM(res_pool.AutoRecycle), 1, ITEM_DEFAULT, 1},
220    {"recycle",         store_yesno, ITEM(res_pool.Recycle),     1, ITEM_DEFAULT, 1},
221    {NULL, NULL, NULL, 0, 0, 0} 
222 };
223
224 /* Message resource */
225 extern struct res_items msgs_items[];
226
227 /* 
228  * This is the master resource definition.  
229  * It must have one item for each of the resources.
230  *
231  *  name             items        rcode        res_head
232  */
233 struct s_res resources[] = {
234    {"director",      dir_items,   R_DIRECTOR,  NULL},
235    {"client",        cli_items,   R_CLIENT,    NULL},
236    {"job",           job_items,   R_JOB,       NULL},
237    {"storage",       store_items, R_STORAGE,   NULL},
238    {"catalog",       cat_items,   R_CATALOG,   NULL},
239    {"schedule",      sch_items,   R_SCHEDULE,  NULL},
240    {"fileset",       fs_items,    R_FILESET,   NULL},
241    {"group",         group_items, R_GROUP,     NULL},
242    {"pool",          pool_items,  R_POOL,      NULL},
243    {"messages",      msgs_items,  R_MSGS,      NULL},
244    {NULL,            NULL,        0,           NULL}
245 };
246
247
248 /* Keywords (RHS) permitted in Job Level records   
249  *
250  *   level_name      level              level_class
251  */
252 struct s_jl joblevels[] = {
253    {"Full",          L_FULL,            JT_BACKUP},
254    {"Incremental",   L_INCREMENTAL,     JT_BACKUP},
255    {"Differential",  L_DIFFERENTIAL,    JT_BACKUP},
256    {"Level",         L_LEVEL,           JT_BACKUP},
257    {"Since",         L_SINCE,           JT_BACKUP},
258    {"Catalog",       L_VERIFY_CATALOG,  JT_VERIFY},
259    {"Initcatalog",   L_VERIFY_INIT,     JT_VERIFY},
260    {"Volume",        L_VERIFY_VOLUME,   JT_VERIFY},
261    {"Data",          L_VERIFY_DATA,     JT_VERIFY},
262    {NULL,            0}
263 };
264
265 /* Keywords (RHS) permitted in Backup and Verify records */
266 static struct s_kw BakVerFields[] = {
267    {"client",        'C'},
268    {"fileset",       'F'},
269    {"level",         'L'}, 
270    {NULL,            0}
271 };
272
273 /* Keywords (RHS) permitted in Restore records */
274 static struct s_kw RestoreFields[] = {
275    {"client",        'C'},
276    {"fileset",       'F'},
277    {"jobid",         'J'},            /* JobId to restore */
278    {"where",         'W'},            /* root of restore */
279    {"replace",       'R'},            /* replacement options */
280    {NULL,              0}
281 };
282
283 /* Options permitted in Restore replace= */
284 static struct s_kw ReplaceOptions[] = {
285    {"always",         'A'},           /* always */
286    {"ifnewer",        'W'},
287    {"never",          'N'},
288    {NULL,               0}
289 };
290
291
292
293 /* Define FileSet KeyWord values */
294
295 #define FS_KW_NONE         0
296 #define FS_KW_COMPRESSION  1
297 #define FS_KW_SIGNATURE    2
298 #define FS_KW_ENCRYPTION   3
299 #define FS_KW_VERIFY       4
300
301 /* FileSet keywords */
302 static struct s_kw FS_option_kw[] = {
303    {"compression", FS_KW_COMPRESSION},
304    {"signature",   FS_KW_SIGNATURE},
305    {"encryption",  FS_KW_ENCRYPTION},
306    {"verify",      FS_KW_VERIFY},
307    {NULL,          0}
308 };
309
310 /* Options for FileSet keywords */
311
312 struct s_fs_opt {
313    char *name;
314    int keyword;
315    char option;
316 };
317
318 /* Options permitted for each keyword and resulting value */
319 static struct s_fs_opt FS_options[] = {
320    {"md5",      FS_KW_SIGNATURE,    'M'},
321    {"gzip",     FS_KW_COMPRESSION,  'Z'},
322    {"blowfish", FS_KW_ENCRYPTION,   'B'},   /* ***FIXME*** not implemented */
323    {"3des",     FS_KW_ENCRYPTION,   '3'},   /* ***FIXME*** not implemented */
324    {NULL,       0,                   0}
325 };
326
327 char *level_to_str(int level)
328 {
329    int i;
330    static char level_no[30];
331    char *str = level_no;
332
333    sprintf(level_no, "%d", level);    /* default if not found */
334    for (i=0; joblevels[i].level_name; i++) {
335       if (level == joblevels[i].level) {
336          str = joblevels[i].level_name;
337          break;
338       }
339    }
340    return str;
341 }
342
343
344
345 /* Dump contents of resource */
346 void dump_resource(int type, RES *reshdr, void sendit(void *sock, char *fmt, ...), void *sock)
347 {
348    int i;
349    URES *res = (URES *)reshdr;
350    int recurse = 1;
351
352    if (res == NULL) {
353       sendit(sock, "No %s resource defined\n", res_to_str(type));
354       return;
355    }
356    if (type < 0) {                    /* no recursion */
357       type = - type;
358       recurse = 0;
359    }
360    switch (type) {
361       case R_DIRECTOR:
362          char ed1[30], ed2[30];
363          sendit(sock, "Director: name=%s maxjobs=%d FDtimeout=%s SDtimeout=%s\n", 
364             reshdr->name, res->res_dir.MaxConcurrentJobs, 
365             edit_uint64(res->res_dir.FDConnectTimeout, ed1),
366             edit_uint64(res->res_dir.SDConnectTimeout, ed2));
367          if (res->res_dir.query_file) {
368             sendit(sock, "   query_file=%s\n", res->res_dir.query_file);
369          }
370          if (res->res_dir.messages) {
371             sendit(sock, "  --> ");
372             dump_resource(-R_MSGS, (RES *)res->res_dir.messages, sendit, sock);
373          }
374          break;
375       case R_CLIENT:
376          sendit(sock, "Client: name=%s address=%s FDport=%d\n",
377             res->res_client.hdr.name, res->res_client.address, res->res_client.FDport);
378          sendit(sock, "JobRetention=%" lld " FileRetention=%" lld " AutoPrune=%d\n",
379             res->res_client.JobRetention, res->res_client.FileRetention,
380             res->res_client.AutoPrune);
381          if (res->res_client.catalog) {
382             sendit(sock, "  --> ");
383             dump_resource(-R_CATALOG, (RES *)res->res_client.catalog, sendit, sock);
384          }
385          break;
386       case R_STORAGE:
387          sendit(sock, "Storage: name=%s address=%s SDport=%d\n\
388          DeviceName=%s MediaType=%s\n",
389             res->res_store.hdr.name, res->res_store.address, res->res_store.SDport,
390             res->res_store.dev_name, res->res_store.media_type);
391          break;
392       case R_CATALOG:
393          sendit(sock, "Catalog: name=%s address=%s DBport=%d db_name=%s\n\
394          db_user=%s\n",
395             res->res_cat.hdr.name, res->res_cat.address, res->res_cat.DBport,
396             res->res_cat.db_name, res->res_cat.db_user);
397          break;
398       case R_JOB:
399          sendit(sock, "Job: name=%s JobType=%d level=%s\n", res->res_job.hdr.name, 
400             res->res_job.JobType, level_to_str(res->res_job.level));
401          if (res->res_job.client) {
402             sendit(sock, "  --> ");
403             dump_resource(-R_CLIENT, (RES *)res->res_job.client, sendit, sock);
404          }
405          if (res->res_job.fs) {
406             sendit(sock, "  --> ");
407             dump_resource(-R_FILESET, (RES *)res->res_job.fs, sendit, sock);
408          }
409          if (res->res_job.schedule) {
410             sendit(sock, "  --> ");
411             dump_resource(-R_SCHEDULE, (RES *)res->res_job.schedule, sendit, sock);
412          }
413          if (res->res_job.RestoreWhere) {
414             sendit(sock, "  --> Where=%s\n", res->res_job.RestoreWhere);
415          }
416          if (res->res_job.storage) {
417             sendit(sock, "  --> ");
418             dump_resource(-R_STORAGE, (RES *)res->res_job.storage, sendit, sock);
419          }
420          if (res->res_job.pool) {
421             sendit(sock, "  --> ");
422             dump_resource(-R_POOL, (RES *)res->res_job.pool, sendit, sock);
423          } else {
424             sendit(sock, "!!! No Pool resource\n");
425          }
426          if (res->res_job.messages) {
427             sendit(sock, "  --> ");
428             dump_resource(-R_MSGS, (RES *)res->res_job.messages, sendit, sock);
429          }
430          break;
431       case R_FILESET:
432          sendit(sock, "FileSet: name=%s\n", res->res_fs.hdr.name);
433          for (i=0; i<res->res_fs.num_includes; i++)
434             sendit(sock, "      Inc: %s\n", res->res_fs.include_array[i]);
435          for (i=0; i<res->res_fs.num_excludes; i++)
436             sendit(sock, "      Exc: %s\n", res->res_fs.exclude_array[i]);
437          break;
438       case R_SCHEDULE:
439          if (res->res_sch.run)
440             sendit(sock, "Schedule: name=%s Level=%s\n", res->res_sch.hdr.name,
441                level_to_str(res->res_sch.run->level));
442          else
443             sendit(sock, "Schedule: name=%s\n", res->res_sch.hdr.name);
444          break;
445       case R_GROUP:
446          sendit(sock, "Group: name=%s\n", res->res_group.hdr.name);
447          break;
448       case R_POOL:
449          sendit(sock, "Pool: name=%s PoolType=%s\n", res->res_pool.hdr.name,
450                  res->res_pool.pool_type);
451          sendit(sock, "      use_cat=%d use_once=%d acpt_any=%d cat_files=%d\n",
452                  res->res_pool.use_catalog, res->res_pool.use_volume_once,
453                  res->res_pool.accept_any_volume, res->res_pool.catalog_files);
454          sendit(sock, "      max_vols=%d auto_recycle=%d VolumeRetention=%" lld "\n",
455                  res->res_pool.max_volumes, res->res_pool.AutoRecycle,
456                  res->res_pool.VolumeRetention);
457
458          sendit(sock, "      LabelFormat=%s\n", res->res_pool.label_format?
459                  res->res_pool.label_format:"NONE");
460          break;
461       case R_MSGS:
462          sendit(sock, "Messages: name=%s\n", res->res_msgs.hdr.name);
463          if (res->res_msgs.mail_cmd) 
464             sendit(sock, "      mailcmd=%s\n", res->res_msgs.mail_cmd);
465          if (res->res_msgs.operator_cmd) 
466             sendit(sock, "      opcmd=%s\n", res->res_msgs.operator_cmd);
467          break;
468       default:
469          sendit(sock, "Unknown resource type %d\n", type);
470          break;
471    }
472    if (recurse && res->res_dir.hdr.next) {
473       dump_resource(type, res->res_dir.hdr.next, sendit, sock);
474    }
475 }
476
477 /* 
478  * Free memory of resource.  
479  * NB, we don't need to worry about freeing any references
480  * to other resources as they will be freed when that 
481  * resource chain is traversed.  Mainly we worry about freeing
482  * allocated strings (names).
483  */
484 void free_resource(int type)
485 {
486    int num;
487    URES *res;
488    RES *nres;
489    int rindex = type - r_first;
490
491    res = (URES *)resources[rindex].res_head;
492
493    if (res == NULL)
494       return;
495
496    /* common stuff -- free the resource name and description */
497    nres = (RES *)res->res_dir.hdr.next;
498    if (res->res_dir.hdr.name) {
499       free(res->res_dir.hdr.name);
500    }
501    if (res->res_dir.hdr.desc) {
502       free(res->res_dir.hdr.desc);
503    }
504
505    switch (type) {
506       case R_DIRECTOR:
507          if (res->res_dir.working_directory)
508             free(res->res_dir.working_directory);
509          if (res->res_dir.pid_directory)
510             free(res->res_dir.pid_directory);
511          if (res->res_dir.subsys_directory)
512             free(res->res_dir.subsys_directory);
513          if (res->res_dir.password)
514             free(res->res_dir.password);
515          if (res->res_dir.query_file)
516             free(res->res_dir.query_file);
517          break;
518       case R_CLIENT:
519          if (res->res_client.address)
520             free(res->res_client.address);
521          if (res->res_client.password)
522             free(res->res_client.password);
523          break;
524       case R_STORAGE:
525          if (res->res_store.address)
526             free(res->res_store.address);
527          if (res->res_store.password)
528             free(res->res_store.password);
529          if (res->res_store.media_type)
530             free(res->res_store.media_type);
531          if (res->res_store.dev_name)
532             free(res->res_store.dev_name);
533          break;
534       case R_CATALOG:
535          if (res->res_cat.address)
536             free(res->res_cat.address);
537          if (res->res_cat.db_user)
538             free(res->res_cat.db_user);
539          if (res->res_cat.db_name)
540             free(res->res_cat.db_name);
541          if (res->res_cat.db_password)
542             free(res->res_cat.db_password);
543          break;
544       case R_FILESET:
545          if ((num=res->res_fs.num_includes)) {
546             while (--num >= 0)    
547                free(res->res_fs.include_array[num]);
548             free(res->res_fs.include_array);
549          }
550          if ((num=res->res_fs.num_excludes)) {
551             while (--num >= 0)    
552                free(res->res_fs.exclude_array[num]);
553             free(res->res_fs.exclude_array);
554          }
555          break;
556       case R_POOL:
557          if (res->res_pool.pool_type) {
558             free(res->res_pool.pool_type);
559          }
560          if (res->res_pool.label_format) {
561             free(res->res_pool.label_format);
562          }
563          break;
564       case R_SCHEDULE:
565          if (res->res_sch.run) {
566             RUN *nrun, *next;
567             nrun = res->res_sch.run;
568             while (nrun) {
569                next = nrun->next;
570                free(nrun);
571                nrun = next;
572             }
573          }
574          break;
575       case R_JOB:
576          if (res->res_job.RestoreWhere) {
577             free(res->res_job.RestoreWhere);
578          }
579          break;
580       case R_MSGS:
581          if (res->res_msgs.mail_cmd)
582             free(res->res_msgs.mail_cmd);
583          if (res->res_msgs.operator_cmd)
584             free(res->res_msgs.operator_cmd);
585
586          break;
587       case R_GROUP:
588          break;
589       default:
590          printf("Unknown resource type %d\n", type);
591    }
592    /* Common stuff again -- free the resource, recurse to next one */
593    free(res);
594    resources[rindex].res_head = nres;
595    if (nres)
596       free_resource(type);
597 }
598
599 /* Save the new resource by chaining it into the head list for
600  * the resource. If this is pass 2, we update any resource
601  * pointers (currently only in the Job resource).
602  */
603 void save_resource(int type, struct res_items *items, int pass)
604 {
605    URES *res;
606    int rindex = type - r_first;
607    int i, size;
608    int error = 0;
609    
610    /* 
611     * Ensure that all required items are present
612     */
613    for (i=0; items[i].name; i++) {
614       if (items[i].flags & ITEM_REQUIRED) {
615             if (!bit_is_set(i, res_all.res_dir.hdr.item_present)) {  
616                Emsg2(M_ABORT, 0, "%s item is required in %s resource, but not found.\n",
617                  items[i].name, resources[rindex]);
618              }
619       }
620       /* If this triggers, take a look at lib/parse_conf.h */
621       if (i >= MAX_RES_ITEMS) {
622          Emsg1(M_ABORT, 0, "Too many items in %s resource\n", resources[rindex]);
623       }
624    }
625
626    /* During pass 2, we looked up pointers to all the resources
627     * referrenced in the current resource, , now we
628     * must copy their address from the static record to the allocated
629     * record.
630     */
631    if (pass == 2) {
632       switch (type) {
633          /* Resources not containing a resource */
634          case R_CATALOG:
635          case R_STORAGE:
636          case R_FILESET:
637          case R_SCHEDULE:
638          case R_GROUP:
639          case R_POOL:
640          case R_MSGS:
641             break;
642
643          /* Resources containing another resource */
644          case R_DIRECTOR:
645             if ((res = (URES *)GetResWithName(R_DIRECTOR, res_all.res_dir.hdr.name)) == NULL) {
646                Emsg1(M_ABORT, 0, "Cannot find Director resource %s\n", res_all.res_dir.hdr.name);
647             }
648             res->res_dir.messages = res_all.res_dir.messages;
649             break;
650          case R_JOB:
651             if ((res = (URES *)GetResWithName(R_JOB, res_all.res_dir.hdr.name)) == NULL) {
652                Emsg1(M_ABORT, 0, "Cannot find Job resource %s\n", res_all.res_dir.hdr.name);
653             }
654             res->res_job.messages = res_all.res_job.messages;
655             res->res_job.schedule = res_all.res_job.schedule;
656             res->res_job.client   = res_all.res_job.client;
657             res->res_job.fs       = res_all.res_job.fs;
658             res->res_job.storage  = res_all.res_job.storage;
659             res->res_job.pool     = res_all.res_job.pool;
660             break;
661          case R_CLIENT:
662             if ((res = (URES *)GetResWithName(R_CLIENT, res_all.res_client.hdr.name)) == NULL) {
663                Emsg1(M_ABORT, 0, "Cannot find Client resource %s\n", res_all.res_client.hdr.name);
664             }
665             res->res_client.catalog = res_all.res_client.catalog;
666             break;
667          default:
668             Emsg1(M_ERROR, 0, "Unknown resource type %d\n", type);
669             error = 1;
670             break;
671       }
672       /* Note, the resource name was already saved during pass 1,
673        * so here, we can just release it.
674        */
675       if (res_all.res_dir.hdr.name) {
676          free(res_all.res_dir.hdr.name);
677          res_all.res_dir.hdr.name = NULL;
678       }
679       return;
680    }
681
682    switch (type) {
683       case R_DIRECTOR:
684          size = sizeof(DIRRES);
685          break;
686       case R_CLIENT:
687          size =sizeof(CLIENT);
688          break;
689       case R_STORAGE:
690          size = sizeof(STORE); 
691          break;
692       case R_CATALOG:
693          size = sizeof(CAT);
694          break;
695       case R_JOB:
696          size = sizeof(JOB);
697          break;
698       case R_FILESET:
699          size = sizeof(FILESET);
700          break;
701       case R_SCHEDULE:
702          size = sizeof(SCHED);
703          break;
704       case R_GROUP:
705          size = sizeof(GROUP);
706          break;
707       case R_POOL:
708          size = sizeof(POOL);
709          break;
710       case R_MSGS:
711          size = sizeof(MSGS);
712          break;
713       default:
714          printf("Unknown resource type %d\n", type);
715          error = 1;
716          break;
717    }
718    /* Common */
719    if (!error) {
720       res = (URES *) malloc(size);
721       memcpy(res, &res_all, size);
722       res->res_dir.hdr.next = resources[rindex].res_head;
723       resources[rindex].res_head = (RES *)res;
724       Dmsg2(90, "dir_conf: inserting %s res: %s\n", res_to_str(type),
725          res->res_dir.hdr.name);
726    }
727
728 }
729
730 /* 
731  * Store backup/verify info for Job record 
732  *
733  * Note, this code is used for both BACKUP and VERIFY jobs
734  *
735  *    Backup = Client=<client-name> FileSet=<FileSet-name> Level=<level>
736  */
737 static void store_backup(LEX *lc, struct res_items *item, int index, int pass)
738 {
739    int token, i;
740    RES *res;
741    int options = lc->options;
742
743    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
744
745    
746    ((JOB *)(item->value))->JobType = item->code;
747    while ((token = lex_get_token(lc)) != T_EOL) {
748       int found;
749
750       if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
751          scan_err1(lc, "Expected a backup/verify keyword, got: %s", lc->str);
752       } else {
753          lcase(lc->str);
754          Dmsg1(190, "Got keyword: %s\n", lc->str);
755          found = FALSE;
756          for (i=0; BakVerFields[i].name; i++) {
757             if (strcasecmp(lc->str, BakVerFields[i].name) == 0) {
758                found = TRUE;
759                if (lex_get_token(lc) != T_EQUALS) {
760                   scan_err1(lc, "Expected an equals, got: %s", lc->str);
761                }
762                token = lex_get_token(lc);
763                if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
764                   scan_err1(lc, "Expected a keyword name, got: %s", lc->str);
765                }
766                Dmsg1(190, "Got value: %s\n", lc->str);
767                switch (BakVerFields[i].token) {
768                   case 'C':
769                      /* Find Client Resource */
770                      if (pass == 2) {
771                         res = GetResWithName(R_CLIENT, lc->str);
772                         if (res == NULL) {
773                            scan_err1(lc, "Could not find specified Client Resource: %s",
774                                       lc->str);
775                         }
776                         res_all.res_job.client = (CLIENT *)res;
777                      }
778                      break;
779                   case 'F':
780                      /* Find FileSet Resource */
781                      if (pass == 2) {
782                         res = GetResWithName(R_FILESET, lc->str);
783                         if (res == NULL) {
784                            scan_err1(lc, "Could not find specified FileSet Resource: %s\n",
785                                        lc->str);
786                         }
787                         res_all.res_job.fs = (FILESET *)res;
788                      }
789                      break;
790                   case 'L':
791                      /* Get level */
792                      lcase(lc->str);
793                      for (i=0; joblevels[i].level_name; i++) {
794                         if (joblevels[i].job_class == item->code && 
795                              strcasecmp(lc->str, joblevels[i].level_name) == 0) {
796                            ((JOB *)(item->value))->level = joblevels[i].level;
797                            i = 0;
798                            break;
799                         }
800                      }
801                      if (i != 0) {
802                         scan_err1(lc, "Expected a Job Level keyword, got: %s", lc->str);
803                      }
804                      break;
805                } /* end switch */
806                break;
807             } /* end if strcmp() */
808          } /* end for */
809          if (!found) {
810             scan_err1(lc, "%s not a valid Backup/verify keyword", lc->str);
811          }
812       }
813    } /* end while */
814    lc->options = options;             /* reset original options */
815    set_bit(index, res_all.hdr.item_present);
816 }
817
818 /* 
819  * Store restore info for Job record 
820  *
821  *    Restore = JobId=<job-id> Where=<root-directory> Replace=<options>
822  *
823  */
824 static void store_restore(LEX *lc, struct res_items *item, int index, int pass)
825 {
826    int token, i;
827    RES *res;
828    int options = lc->options;
829
830    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
831
832    Dmsg0(190, "Enter store_restore()\n");
833    
834    ((JOB *)(item->value))->JobType = item->code;
835    while ((token = lex_get_token(lc)) != T_EOL) {
836       int found; 
837
838       if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
839          scan_err1(lc, "Expected a Restore keyword, got: %s", lc->str);
840       } else {
841          lcase(lc->str);
842          found = FALSE;
843          for (i=0; RestoreFields[i].name; i++) {
844             Dmsg1(190, "Restore kw=%s\n", lc->str);
845             if (strcmp(lc->str, RestoreFields[i].name) == 0) {
846                found = TRUE;
847                if (lex_get_token(lc) != T_EQUALS) {
848                   scan_err1(lc, "Expected an equals, got: %s", lc->str);
849                }
850                token = lex_get_token(lc);
851                Dmsg1(190, "Restore value=%s\n", lc->str);
852                switch (RestoreFields[i].token) {
853                   case 'C':
854                      /* Find Client Resource */
855                      if (pass == 2) {
856                         res = GetResWithName(R_CLIENT, lc->str);
857                         if (res == NULL) {
858                            scan_err1(lc, "Could not find specified Client Resource: %s",
859                                       lc->str);
860                         }
861                         res_all.res_job.client = (CLIENT *)res;
862                      }
863                      break;
864                   case 'F':
865                      /* Find FileSet Resource */
866                      if (pass == 2) {
867                         res = GetResWithName(R_FILESET, lc->str);
868                         if (res == NULL) {
869                            scan_err1(lc, "Could not find specified FileSet Resource: %s\n",
870                                        lc->str);
871                         }
872                         res_all.res_job.fs = (FILESET *)res;
873                      }
874                      break;
875                   case 'J':
876                      /* JobId */
877                      if (token != T_NUMBER) {
878                         scan_err1(lc, "expected an integer number, got: %s", lc->str);
879                      }
880                      errno = 0;
881                      res_all.res_job.RestoreJobId = strtol(lc->str, NULL, 0);
882                      Dmsg1(190, "RestorJobId=%d\n", res_all.res_job.RestoreJobId);
883                      if (errno != 0) {
884                         scan_err1(lc, "expected an integer number, got: %s", lc->str);
885                      }
886                      break;
887                   case 'W':
888                      /* Where */
889                      if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
890                         scan_err1(lc, "Expected a Restore root directory, got: %s", lc->str);
891                      }
892                      if (pass == 1) {
893                         res_all.res_job.RestoreWhere = bstrdup(lc->str);
894                      }
895                      break;
896                   case 'R':
897                      /* Replacement options */
898                      if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
899                         scan_err1(lc, "Expected a keyword name, got: %s", lc->str);
900                      }
901                      lcase(lc->str);
902                      /* Fix to scan Replacement options */
903                      for (i=0; ReplaceOptions[i].name; i++) {
904                         if (strcmp(lc->str, ReplaceOptions[i].name) == 0) {
905                             ((JOB *)(item->value))->RestoreOptions = ReplaceOptions[i].token;
906                            i = 0;
907                            break;
908                         }
909                      }
910                      if (i != 0) {
911                         scan_err1(lc, "Expected a Restore replacement option, got: %s", lc->str);
912                      }
913                      break;
914                } /* end switch */
915                break;
916             } /* end if strcmp() */
917          } /* end for */
918          if (!found) {
919             scan_err1(lc, "%s not a valid Restore keyword", lc->str);
920          }
921       }
922    } /* end while */
923    lc->options = options;             /* reset original options */
924    set_bit(index, res_all.hdr.item_present);
925 }
926
927
928
929 /* 
930  * Scan for FileSet options
931  */
932 static char *scan_fs_options(LEX *lc, int keyword)
933 {
934    int token, i;
935    static char opts[100];
936    char option[2];
937
938    option[0] = 0;                     /* default option = none */
939    opts[0] = option[1] = 0;           /* terminate options */
940    for (;;) {
941       token = lex_get_token(lc);             /* expect at least one option */       
942       if (token != T_IDENTIFIER && token != T_STRING && token != T_QUOTED_STRING) {
943          scan_err1(lc, "expected a FileSet option, got: %s", lc->str);
944       }
945       lcase(lc->str);
946       if (keyword == FS_KW_VERIFY) { /* special case */
947          /* ***FIXME**** ensure these are in permitted set */
948          strcpy(option, "V");         /* indicate Verify */
949          strcat(option, lc->str);
950          strcat(option, ":");         /* terminate it */
951       } else {
952          for (i=0; FS_options[i].name; i++) {
953             if (strcmp(lc->str, FS_options[i].name) == 0 && FS_options[i].keyword == keyword) {
954                option[0] = FS_options[i].option;
955                i = 0;
956                break;
957             }
958          }
959          if (i != 0) {
960             scan_err1(lc, "Expected a FileSet option keyword, got: %s", lc->str);
961          }
962       }
963       strcat(opts, option);
964
965       /* check if more options are specified */
966       if (lc->ch != ',') {
967          break;                       /* no, get out */
968       }
969       token = lex_get_token(lc);      /* yes, eat comma */
970    }
971
972    return opts;
973 }
974
975
976 /* Store FileSet Include/Exclude info */
977 static void store_inc(LEX *lc, struct res_items *item, int index, int pass)
978 {
979    int token, i;
980    int options = lc->options;
981    int keyword;
982    char *fname;
983    char inc_opts[100];
984    int inc_opts_len;
985
986    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
987
988    /* Get include options */
989    strcpy(inc_opts, "0");             /* set no options */
990    while ((token=lex_get_token(lc)) != T_BOB) {
991       if (token != T_STRING) {
992          scan_err1(lc, "expected a FileSet option keyword, got: %s", lc->str);
993       } else {
994          keyword = FS_KW_NONE;
995          lcase(lc->str);
996          for (i=0; FS_option_kw[i].name; i++) {
997             if (strcmp(lc->str, FS_option_kw[i].name) == 0) {
998                keyword = FS_option_kw[i].token;
999                break;
1000             }
1001          }
1002          if (keyword == FS_KW_NONE) {
1003             scan_err1(lc, "Expected a FileSet keyword, got: %s", lc->str);
1004          }
1005       }
1006       /* Option keyword should be following by = <option> */
1007       if ((token=lex_get_token(lc)) != T_EQUALS) {
1008          scan_err1(lc, "expected an = following keyword, got: %s", lc->str);
1009       }
1010       strcat(inc_opts, scan_fs_options(lc, keyword));
1011       if (token == T_BOB) {
1012          break;
1013       }
1014    }
1015    strcat(inc_opts, " ");             /* add field separator */
1016    inc_opts_len = strlen(inc_opts);
1017
1018
1019    if (pass == 1) {
1020       if (!res_all.res_fs.have_MD5) {
1021          MD5Init(&res_all.res_fs.md5c);
1022          res_all.res_fs.have_MD5 = TRUE;
1023       }
1024       /* Pickup include/exclude names. Note, they are stored as
1025        * XYZ fname
1026        * where XYZ are the include/exclude options for the FileSet
1027        *     a "0 " (zero) indicates no options,
1028        * and fname is the file/directory name given
1029        */
1030       while ((token = lex_get_token(lc)) != T_EOB) {
1031          switch (token) {
1032             case T_COMMA:
1033             case T_EOL:
1034                continue;
1035
1036             case T_IDENTIFIER:
1037             case T_STRING:
1038             case T_QUOTED_STRING:
1039                fname = (char *) malloc(lc->str_len + inc_opts_len + 1);
1040                strcpy(fname, inc_opts);
1041                strcat(fname, lc->str);
1042                if (res_all.res_fs.have_MD5) {
1043                   MD5Update(&res_all.res_fs.md5c, (unsigned char *) fname, inc_opts_len + lc->str_len);
1044                }
1045                if (item->code == 0) { /* include */
1046                   if (res_all.res_fs.num_includes == res_all.res_fs.include_size) {
1047                      res_all.res_fs.include_size += 10;
1048                      if (res_all.res_fs.include_array == NULL) {
1049                         res_all.res_fs.include_array = (char **) malloc(sizeof(char *) * res_all.res_fs.include_size);
1050                      } else {
1051                         res_all.res_fs.include_array = (char **) realloc(res_all.res_fs.include_array,
1052                            sizeof(char *) * res_all.res_fs.include_size);
1053                      }
1054                   }
1055                   res_all.res_fs.include_array[res_all.res_fs.num_includes++] =    
1056                      fname;
1057                } else {                /* exclude */
1058                   if (res_all.res_fs.num_excludes == res_all.res_fs.exclude_size) {
1059                      res_all.res_fs.exclude_size += 10;
1060                      if (res_all.res_fs.exclude_array == NULL) {
1061                         res_all.res_fs.exclude_array = (char **) malloc(sizeof(char *) * res_all.res_fs.exclude_size);
1062                      } else {
1063                         res_all.res_fs.exclude_array = (char **) realloc(res_all.res_fs.exclude_array,
1064                            sizeof(char *) * res_all.res_fs.exclude_size);
1065                      }
1066                   }
1067                   res_all.res_fs.exclude_array[res_all.res_fs.num_excludes++] =    
1068                      fname;
1069                }
1070                break;
1071             default:
1072                scan_err1(lc, "Expected a filename, got: %s", lc->str);
1073          }                                 
1074       }
1075    } else { /* pass 2 */
1076       while (lex_get_token(lc) != T_EOB) 
1077          {}
1078    }
1079    scan_to_eol(lc);
1080    lc->options = options;
1081    set_bit(index, res_all.hdr.item_present);
1082 }