]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird_conf.c
7afda206d9e40e1948882d2d09054a67e36df030
[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  *     Version $Id$
23  */
24 /*
25    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
26
27    This program is free software; you can redistribute it and/or
28    modify it under the terms of the GNU General Public License as
29    published by the Free Software Foundation; either version 2 of
30    the License, or (at your option) any later version.
31
32    This program is distributed in the hope that it will be useful,
33    but WITHOUT ANY WARRANTY; without even the implied warranty of
34    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
35    General Public License for more details.
36
37    You should have received a copy of the GNU General Public
38    License along with this program; if not, write to the Free
39    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
40    MA 02111-1307, USA.
41
42  */
43
44 #include "bacula.h"
45 #include "dird.h"
46
47 /* Define the first and last resource ID record
48  * types. Note, these should be unique for each
49  * daemon though not a requirement.
50  */
51 int r_first = R_FIRST;
52 int r_last  = R_LAST;
53 pthread_mutex_t res_mutex =  PTHREAD_MUTEX_INITIALIZER;
54
55 /* Imported subroutines */
56 extern void store_run(LEX *lc, struct res_items *item, int index, int pass);
57
58
59 /* Forward referenced subroutines */
60
61 static void store_inc(LEX *lc, struct res_items *item, int index, int pass);
62 static void store_backup(LEX *lc, struct res_items *item, int index, int pass);
63 static void store_restore(LEX *lc, struct res_items *item, int index, int pass);
64 static void store_jobtype(LEX *lc, struct res_items *item, int index, int pass);
65 static void store_level(LEX *lc, struct res_items *item, int index, int pass);
66 static void store_replace(LEX *lc, struct res_items *item, int index, int pass);
67
68
69 /* We build the current resource here as we are
70  * scanning the resource configuration definition,
71  * then move it to allocated memory when the resource
72  * scan is complete.
73  */
74 URES res_all;
75 int  res_all_size = sizeof(res_all);
76
77
78 /* Definition of records permitted within each
79  * resource with the routine to process the record 
80  * information.  NOTE! quoted names must be in lower case.
81  */ 
82 /* 
83  *    Director Resource
84  *
85  *   name          handler     value                 code flags    default_value
86  */
87 static struct res_items dir_items[] = {
88    {"name",        store_name,     ITEM(res_dir.hdr.name), 0, ITEM_REQUIRED, 0},
89    {"description", store_str,      ITEM(res_dir.hdr.desc), 0, 0, 0},
90    {"messages",    store_res,      ITEM(res_dir.messages), R_MSGS, 0, 0},
91    {"dirport",     store_pint,     ITEM(res_dir.DIRport),  0, ITEM_DEFAULT, 9101},
92    {"diraddress",  store_str,      ITEM(res_dir.DIRaddr),  0, 0, 0},
93    {"queryfile",   store_dir,      ITEM(res_dir.query_file), 0, ITEM_REQUIRED, 0},
94    {"workingdirectory", store_dir, ITEM(res_dir.working_directory), 0, ITEM_REQUIRED, 0},
95    {"piddirectory", store_dir,     ITEM(res_dir.pid_directory), 0, ITEM_REQUIRED, 0},
96    {"subsysdirectory", store_dir,  ITEM(res_dir.subsys_directory), 0, ITEM_REQUIRED, 0},
97    {"maximumconcurrentjobs", store_pint, ITEM(res_dir.MaxConcurrentJobs), 0, ITEM_DEFAULT, 1},
98    {"password",    store_password, ITEM(res_dir.password), 0, ITEM_REQUIRED, 0},
99    {"fdconnecttimeout", store_time,ITEM(res_dir.FDConnectTimeout), 0, ITEM_DEFAULT, 60 * 30},
100    {"sdconnecttimeout", store_time,ITEM(res_dir.SDConnectTimeout), 0, ITEM_DEFAULT, 60 * 30},
101    {NULL, NULL, NULL, 0, 0, 0}
102 };
103
104 /* 
105  *    Client or File daemon resource
106  *
107  *   name          handler     value                 code flags    default_value
108  */
109
110 static struct res_items cli_items[] = {
111    {"name",     store_name,       ITEM(res_client.hdr.name), 0, ITEM_REQUIRED, 0},
112    {"description", store_str,     ITEM(res_client.hdr.desc), 0, 0, 0},
113    {"address",  store_str,        ITEM(res_client.address),  0, ITEM_REQUIRED, 0},
114    {"fdport",   store_pint,       ITEM(res_client.FDport),   0, ITEM_DEFAULT, 9102},
115    {"password", store_password,   ITEM(res_client.password), 0, ITEM_REQUIRED, 0},
116    {"catalog",  store_res,        ITEM(res_client.catalog),  R_CATALOG, 0, 0},
117    {"fileretention", store_time,  ITEM(res_client.FileRetention), 0, ITEM_DEFAULT, 60*60*24*60},
118    {"jobretention",  store_time,  ITEM(res_client.JobRetention),  0, ITEM_DEFAULT, 60*60*24*180},
119    {"autoprune", store_yesno,     ITEM(res_client.AutoPrune), 1, ITEM_DEFAULT, 1},
120    {NULL, NULL, NULL, 0, 0, 0} 
121 };
122
123 /* Storage daemon resource
124  *
125  *   name          handler     value                 code flags    default_value
126  */
127 static struct res_items store_items[] = {
128    {"name",      store_name,     ITEM(res_store.hdr.name),   0, ITEM_REQUIRED, 0},
129    {"description", store_str,    ITEM(res_store.hdr.desc),   0, 0, 0},
130    {"sdport",    store_pint,     ITEM(res_store.SDport),     0, ITEM_DEFAULT, 9103},
131    {"sddport",   store_pint,     ITEM(res_store.SDDport),    0, 0, 0}, /* deprecated */
132    {"address",   store_str,      ITEM(res_store.address),    0, ITEM_REQUIRED, 0},
133    {"password",  store_password, ITEM(res_store.password),   0, ITEM_REQUIRED, 0},
134    {"device",    store_strname,  ITEM(res_store.dev_name),   0, ITEM_REQUIRED, 0},
135    {"mediatype", store_strname,  ITEM(res_store.media_type), 0, ITEM_REQUIRED, 0},
136    {"autochanger", store_yesno,  ITEM(res_store.autochanger), 1, ITEM_DEFAULT, 0},
137    {NULL, NULL, NULL, 0, 0, 0} 
138 };
139
140 /* 
141  *    Catalog Resource Directives
142  *
143  *   name          handler     value                 code flags    default_value
144  */
145 static struct res_items cat_items[] = {
146    {"name",     store_name,     ITEM(res_cat.hdr.name),    0, ITEM_REQUIRED, 0},
147    {"description", store_str,   ITEM(res_cat.hdr.desc),    0, 0, 0},
148    {"address",  store_str,      ITEM(res_cat.address),     0, 0, 0},
149    {"dbport",   store_pint,     ITEM(res_cat.DBport),      0, 0, 0},
150    /* keep this password as store_str for the moment */
151    {"password", store_str,      ITEM(res_cat.db_password), 0, 0, 0},
152    {"user",     store_str,      ITEM(res_cat.db_user),     0, 0, 0},
153    {"dbname",   store_str,      ITEM(res_cat.db_name),     0, ITEM_REQUIRED, 0},
154    {NULL, NULL, NULL, 0, 0, 0} 
155 };
156
157 /* 
158  *    Job Resource Directives
159  *
160  *   name          handler     value                 code flags    default_value
161  */
162 static struct res_items job_items[] = {
163    {"name",     store_name,    ITEM(res_job.hdr.name), 0, ITEM_REQUIRED, 0},
164    {"description", store_str,  ITEM(res_job.hdr.desc), 0, 0, 0},
165    {"backup",   store_backup,  ITEM(res_job),          JT_BACKUP, 0, 0},
166    {"verify",   store_backup,  ITEM(res_job),          JT_VERIFY, 0, 0},
167    {"restore",  store_restore, ITEM(res_job),          JT_RESTORE, 0, 0},
168    {"schedule", store_res,     ITEM(res_job.schedule), R_SCHEDULE, 0, 0},
169    {"type",     store_jobtype, ITEM(res_job),          0, 0, 0},
170    {"level",    store_level,   ITEM(res_job),          0, 0, 0},
171    {"messages", store_res,     ITEM(res_job.messages), R_MSGS, 0, 0},
172    {"storage",  store_res,     ITEM(res_job.storage),  R_STORAGE, 0, 0},
173    {"pool",     store_res,     ITEM(res_job.pool),     R_POOL, 0, 0},
174    {"client",   store_res,     ITEM(res_job.client),   R_CLIENT, 0, 0},
175    {"fileset",  store_res,     ITEM(res_job.fileset),  R_FILESET, 0, 0},
176    {"where",    store_dir,     ITEM(res_job.RestoreWhere), 0, 0, 0},
177    {"replace",  store_replace, ITEM(res_job.replace), REPLACE_ALWAYS, ITEM_DEFAULT, 0},
178    {"bootstrap",store_dir,     ITEM(res_job.RestoreBootstrap), 0, 0, 0},
179    {"maxruntime", store_time,  ITEM(res_job.MaxRunTime), 0, 0, 0},
180    {"maxstartdelay", store_time,ITEM(res_job.MaxStartDelay), 0, 0, 0},
181    {"prunejobs",   store_yesno, ITEM(res_job.PruneJobs), 1, ITEM_DEFAULT, 0},
182    {"prunefiles",  store_yesno, ITEM(res_job.PruneFiles), 1, ITEM_DEFAULT, 0},
183    {"prunevolumes", store_yesno, ITEM(res_job.PruneVolumes), 1, ITEM_DEFAULT, 0},
184    {"runbeforejob", store_str,  ITEM(res_job.RunBeforeJob), 0, 0, 0},
185    {"runafterjob",  store_str,  ITEM(res_job.RunAfterJob),  0, 0, 0},
186    {"spoolattributes", store_yesno, ITEM(res_job.SpoolAttributes), 1, ITEM_DEFAULT, 0},
187    {"writebootstrap", store_dir, ITEM(res_job.WriteBootstrap), 0, 0, 0},
188    {NULL, NULL, NULL, 0, 0, 0} 
189 };
190
191 /* FileSet resource
192  *
193  *   name          handler     value                 code flags    default_value
194  */
195 static struct res_items fs_items[] = {
196    {"name",        store_name, ITEM(res_fs.hdr.name), 0, ITEM_REQUIRED, 0},
197    {"description", store_str,  ITEM(res_fs.hdr.desc), 0, 0, 0},
198    {"include",     store_inc,  NULL,                  0, 0, 0},
199    {"exclude",     store_inc,  NULL,                  1, 0, 0},
200    {NULL,          NULL,       NULL,                  0, 0, 0} 
201 };
202
203 /* Schedule -- see run_conf.c */
204 /* Schedule
205  *
206  *   name          handler     value                 code flags    default_value
207  */
208 static struct res_items sch_items[] = {
209    {"name",     store_name,  ITEM(res_sch.hdr.name), 0, ITEM_REQUIRED, 0},
210    {"description", store_str, ITEM(res_sch.hdr.desc), 0, 0, 0},
211    {"run",      store_run,   ITEM(res_sch.run),      0, 0, 0},
212    {NULL, NULL, NULL, 0, 0, 0} 
213 };
214
215 /* Group resource -- not implemented
216  *
217  *   name          handler     value                 code flags    default_value
218  */
219 static struct res_items group_items[] = {
220    {"name",        store_name, ITEM(res_group.hdr.name), 0, ITEM_REQUIRED, 0},
221    {"description", store_str,  ITEM(res_group.hdr.desc), 0, 0, 0},
222    {NULL, NULL, NULL, 0, 0, 0} 
223 };
224
225 /* Pool resource
226  *
227  *   name             handler     value                        code flags default_value
228  */
229 static struct res_items pool_items[] = {
230    {"name",            store_name,    ITEM(res_pool.hdr.name),      0, ITEM_REQUIRED, 0},
231    {"description",     store_str,     ITEM(res_pool.hdr.desc),      0, 0,     0},
232    {"pooltype",        store_strname, ITEM(res_pool.pool_type),     0, ITEM_REQUIRED, 0},
233    {"labelformat",     store_strname, ITEM(res_pool.label_format),  0, 0,     0},
234    {"usecatalog",      store_yesno, ITEM(res_pool.use_catalog),     1, ITEM_DEFAULT,  1},
235    {"usevolumeonce",   store_yesno, ITEM(res_pool.use_volume_once), 1, 0,        0},
236    {"maximumvolumes",  store_pint,  ITEM(res_pool.max_volumes),     0, 0,        0},
237    {"maximumvolumejobs", store_pint,  ITEM(res_pool.MaxVolJobs),    0, 0,       0},
238    {"maximumvolumefiles", store_pint, ITEM(res_pool.MaxVolFiles),   0, 0,       0},
239    {"maximumvolumebytes", store_size, ITEM(res_pool.MaxVolBytes),   0, 0,       0},
240    {"acceptanyvolume", store_yesno, ITEM(res_pool.accept_any_volume), 1, ITEM_DEFAULT,     1},
241    {"catalogfiles",    store_yesno, ITEM(res_pool.catalog_files),   1, ITEM_DEFAULT,  1},
242    {"volumeretention", store_time,  ITEM(res_pool.VolRetention),    0, ITEM_DEFAULT, 60*60*24*365},
243    {"volumeuseduration", store_time,  ITEM(res_pool.VolUseDuration),0, 0, 0},
244    {"autoprune",       store_yesno, ITEM(res_pool.AutoPrune), 1, ITEM_DEFAULT, 1},
245    {"recycle",         store_yesno, ITEM(res_pool.Recycle),     1, ITEM_DEFAULT, 1},
246    {NULL, NULL, NULL, 0, 0, 0} 
247 };
248
249 /* 
250  * Counter Resource
251  *   name             handler     value                        code flags default_value
252  */
253 static struct res_items counter_items[] = {
254    {"name",            store_name,    ITEM(res_counter.hdr.name),        0, ITEM_REQUIRED, 0},
255    {"description",     store_str,     ITEM(res_counter.hdr.desc),        0, 0,     0},
256    {"minimum",         store_int,     ITEM(res_counter.MinValue),        0, ITEM_DEFAULT, 0},
257    {"maximum",         store_pint,    ITEM(res_counter.MaxValue),        0, ITEM_DEFAULT, INT32_MAX},
258    {"global",          store_yesno,   ITEM(res_counter.Global),          0, ITEM_DEFAULT, 0},
259    {"wrapcounter",     store_strname, ITEM(res_counter.WrapCounter),     0, 0, 0},
260    {NULL, NULL, NULL, 0, 0, 0} 
261 };
262
263
264 /* Message resource */
265 extern struct res_items msgs_items[];
266
267 /* 
268  * This is the master resource definition.  
269  * It must have one item for each of the resources.
270  *
271  *  name             items        rcode        res_head
272  */
273 struct s_res resources[] = {
274    {"director",      dir_items,   R_DIRECTOR,  NULL},
275    {"client",        cli_items,   R_CLIENT,    NULL},
276    {"job",           job_items,   R_JOB,       NULL},
277    {"storage",       store_items, R_STORAGE,   NULL},
278    {"catalog",       cat_items,   R_CATALOG,   NULL},
279    {"schedule",      sch_items,   R_SCHEDULE,  NULL},
280    {"fileset",       fs_items,    R_FILESET,   NULL},
281    {"group",         group_items, R_GROUP,     NULL},
282    {"pool",          pool_items,  R_POOL,      NULL},
283    {"messages",      msgs_items,  R_MSGS,      NULL},
284    {"counter",       counter_items, R_COUNTER, NULL},
285    {NULL,            NULL,        0,           NULL}
286 };
287
288
289 /* Keywords (RHS) permitted in Job Level records   
290  *
291  *   level_name      level              job_type
292  */
293 struct s_jl joblevels[] = {
294    {"Full",          L_FULL,            JT_BACKUP},
295    {"Incremental",   L_INCREMENTAL,     JT_BACKUP},
296    {"Differential",  L_DIFFERENTIAL,    JT_BACKUP},
297    {"Since",         L_SINCE,           JT_BACKUP},
298    {"Catalog",       L_VERIFY_CATALOG,  JT_VERIFY},
299    {"Initcatalog",   L_VERIFY_INIT,     JT_VERIFY},
300    {"VolumeToCatalog", L_VERIFY_VOLUME_TO_CATALOG,   JT_VERIFY},
301    {"Data",          L_VERIFY_DATA,     JT_VERIFY},
302    {NULL,            0}
303 };
304
305 /* Keywords (RHS) permitted in Job type records   
306  *
307  *   type_name       job_type
308  */
309 struct s_jt jobtypes[] = {
310    {"backup",        JT_BACKUP},
311    {"admin",         JT_ADMIN},
312    {"verify",        JT_VERIFY},
313    {"restore",       JT_RESTORE},
314    {NULL,            0}
315 };
316
317
318 /* Keywords (RHS) permitted in Backup and Verify records */
319 static struct s_kw BakVerFields[] = {
320    {"client",        'C'},
321    {"fileset",       'F'},
322    {"level",         'L'}, 
323    {NULL,            0}
324 };
325
326 /* Keywords (RHS) permitted in Restore records */
327 static struct s_kw RestoreFields[] = {
328    {"client",        'C'},
329    {"fileset",       'F'},
330    {"jobid",         'J'},            /* JobId to restore */
331    {"where",         'W'},            /* root of restore */
332    {"replace",       'R'},            /* replacement options */
333    {"bootstrap",     'B'},            /* bootstrap file */
334    {NULL,              0}
335 };
336
337 /* Options permitted in Restore replace= */
338 struct s_kw ReplaceOptions[] = {
339    {"always",         REPLACE_ALWAYS},
340    {"ifnewer",        REPLACE_IFNEWER},
341    {"ifolder",        REPLACE_IFOLDER},
342    {"never",          REPLACE_NEVER},
343    {NULL,               0}
344 };
345
346
347
348 /* Define FileSet KeyWord values */
349
350 #define INC_KW_NONE         0
351 #define INC_KW_COMPRESSION  1
352 #define INC_KW_SIGNATURE    2
353 #define INC_KW_ENCRYPTION   3
354 #define INC_KW_VERIFY       4
355 #define INC_KW_ONEFS        5
356 #define INC_KW_RECURSE      6
357 #define INC_KW_SPARSE       7
358 #define INC_KW_REPLACE      8         /* restore options */
359
360 /* Include keywords */
361 static struct s_kw FS_option_kw[] = {
362    {"compression", INC_KW_COMPRESSION},
363    {"signature",   INC_KW_SIGNATURE},
364    {"encryption",  INC_KW_ENCRYPTION},
365    {"verify",      INC_KW_VERIFY},
366    {"onefs",       INC_KW_ONEFS},
367    {"recurse",     INC_KW_RECURSE},
368    {"sparse",      INC_KW_SPARSE},
369    {"replace",     INC_KW_REPLACE},
370    {NULL,          0}
371 };
372
373 /* Options for FileSet keywords */
374
375 struct s_fs_opt {
376    char *name;
377    int keyword;
378    char *option;
379 };
380
381 /* Options permitted for each keyword and resulting value */
382 static struct s_fs_opt FS_options[] = {
383    {"md5",      INC_KW_SIGNATURE,    "M"},
384    {"gzip",     INC_KW_COMPRESSION,  "Z6"},
385    {"gzip1",    INC_KW_COMPRESSION,  "Z1"},
386    {"gzip2",    INC_KW_COMPRESSION,  "Z2"},
387    {"gzip3",    INC_KW_COMPRESSION,  "Z3"},
388    {"gzip4",    INC_KW_COMPRESSION,  "Z4"},
389    {"gzip5",    INC_KW_COMPRESSION,  "Z5"},
390    {"gzip6",    INC_KW_COMPRESSION,  "Z6"},
391    {"gzip7",    INC_KW_COMPRESSION,  "Z7"},
392    {"gzip8",    INC_KW_COMPRESSION,  "Z8"},
393    {"gzip9",    INC_KW_COMPRESSION,  "Z9"},
394    {"blowfish", INC_KW_ENCRYPTION,    "B"},   /* ***FIXME*** not implemented */
395    {"3des",     INC_KW_ENCRYPTION,    "3"},   /* ***FIXME*** not implemented */
396    {"yes",      INC_KW_ONEFS,         "0"},
397    {"no",       INC_KW_ONEFS,         "f"},
398    {"yes",      INC_KW_RECURSE,       "0"},
399    {"no",       INC_KW_RECURSE,       "h"},
400    {"yes",      INC_KW_SPARSE,        "s"},
401    {"no",       INC_KW_SPARSE,        "0"},
402    {"always",   INC_KW_REPLACE,       "a"},
403    {"ifnewer",  INC_KW_REPLACE,       "w"},
404    {"never",    INC_KW_REPLACE,       "n"},
405    {NULL,       0,                   0}
406 };
407
408 char *level_to_str(int level)
409 {
410    int i;
411    static char level_no[30];
412    char *str = level_no;
413
414    sprintf(level_no, "%d", level);    /* default if not found */
415    for (i=0; joblevels[i].level_name; i++) {
416       if (level == joblevels[i].level) {
417          str = joblevels[i].level_name;
418          break;
419       }
420    }
421    return str;
422 }
423
424
425
426 /* Dump contents of resource */
427 void dump_resource(int type, RES *reshdr, void sendit(void *sock, char *fmt, ...), void *sock)
428 {
429    int i;
430    URES *res = (URES *)reshdr;
431    int recurse = 1;
432
433    if (res == NULL) {
434       sendit(sock, "No %s resource defined\n", res_to_str(type));
435       return;
436    }
437    if (type < 0) {                    /* no recursion */
438       type = - type;
439       recurse = 0;
440    }
441    switch (type) {
442       case R_DIRECTOR:
443          char ed1[30], ed2[30];
444          sendit(sock, "Director: name=%s maxjobs=%d FDtimeout=%s SDtimeout=%s\n", 
445             reshdr->name, res->res_dir.MaxConcurrentJobs, 
446             edit_uint64(res->res_dir.FDConnectTimeout, ed1),
447             edit_uint64(res->res_dir.SDConnectTimeout, ed2));
448          if (res->res_dir.query_file) {
449             sendit(sock, "   query_file=%s\n", res->res_dir.query_file);
450          }
451          if (res->res_dir.messages) {
452             sendit(sock, "  --> ");
453             dump_resource(-R_MSGS, (RES *)res->res_dir.messages, sendit, sock);
454          }
455          break;
456       case R_CLIENT:
457          sendit(sock, "Client: name=%s address=%s FDport=%d\n",
458             res->res_client.hdr.name, res->res_client.address, res->res_client.FDport);
459          sendit(sock, "JobRetention=%" lld " FileRetention=%" lld " AutoPrune=%d\n",
460             res->res_client.JobRetention, res->res_client.FileRetention,
461             res->res_client.AutoPrune);
462          if (res->res_client.catalog) {
463             sendit(sock, "  --> ");
464             dump_resource(-R_CATALOG, (RES *)res->res_client.catalog, sendit, sock);
465          }
466          break;
467       case R_STORAGE:
468          sendit(sock, "Storage: name=%s address=%s SDport=%d\n\
469          DeviceName=%s MediaType=%s\n",
470             res->res_store.hdr.name, res->res_store.address, res->res_store.SDport,
471             res->res_store.dev_name, res->res_store.media_type);
472          break;
473       case R_CATALOG:
474          sendit(sock, "Catalog: name=%s address=%s DBport=%d db_name=%s\n\
475          db_user=%s\n",
476             res->res_cat.hdr.name, NPRT(res->res_cat.address),
477             res->res_cat.DBport, res->res_cat.db_name, NPRT(res->res_cat.db_user));
478          break;
479       case R_JOB:
480          sendit(sock, "Job: name=%s JobType=%d level=%s\n", res->res_job.hdr.name, 
481             res->res_job.JobType, level_to_str(res->res_job.level));
482          if (res->res_job.client) {
483             sendit(sock, "  --> ");
484             dump_resource(-R_CLIENT, (RES *)res->res_job.client, sendit, sock);
485          }
486          if (res->res_job.fileset) {
487             sendit(sock, "  --> ");
488             dump_resource(-R_FILESET, (RES *)res->res_job.fileset, sendit, sock);
489          }
490          if (res->res_job.schedule) {
491             sendit(sock, "  --> ");
492             dump_resource(-R_SCHEDULE, (RES *)res->res_job.schedule, sendit, sock);
493          }
494          if (res->res_job.RestoreWhere) {
495             sendit(sock, "  --> Where=%s\n", NPRT(res->res_job.RestoreWhere));
496          }
497          if (res->res_job.RestoreBootstrap) {
498             sendit(sock, "  --> Bootstrap=%s\n", NPRT(res->res_job.RestoreBootstrap));
499          }
500          if (res->res_job.RunBeforeJob) {
501             sendit(sock, "  --> RunBefore=%s\n", NPRT(res->res_job.RunBeforeJob));
502          }
503          if (res->res_job.RunAfterJob) {
504             sendit(sock, "  --> RunAfter=%s\n", NPRT(res->res_job.RunAfterJob));
505          }
506          if (res->res_job.WriteBootstrap) {
507             sendit(sock, "  --> WriteBootstrap=%s\n", NPRT(res->res_job.WriteBootstrap));
508          }
509          if (res->res_job.storage) {
510             sendit(sock, "  --> ");
511             dump_resource(-R_STORAGE, (RES *)res->res_job.storage, sendit, sock);
512          }
513          if (res->res_job.pool) {
514             sendit(sock, "  --> ");
515             dump_resource(-R_POOL, (RES *)res->res_job.pool, sendit, sock);
516          } else {
517             sendit(sock, "!!! No Pool resource\n");
518          }
519          if (res->res_job.messages) {
520             sendit(sock, "  --> ");
521             dump_resource(-R_MSGS, (RES *)res->res_job.messages, sendit, sock);
522          }
523          break;
524       case R_FILESET:
525          sendit(sock, "FileSet: name=%s\n", res->res_fs.hdr.name);
526          for (i=0; i<res->res_fs.num_includes; i++)
527             sendit(sock, "      Inc: %s\n", res->res_fs.include_array[i]);
528          for (i=0; i<res->res_fs.num_excludes; i++)
529             sendit(sock, "      Exc: %s\n", res->res_fs.exclude_array[i]);
530          break;
531       case R_SCHEDULE:
532          if (res->res_sch.run) {
533             int i;
534             RUN *run = res->res_sch.run;
535             char buf[1000], num[10];
536             sendit(sock, "Schedule: name=%s\n", res->res_sch.hdr.name);
537             if (!run) {
538                break;
539             }
540 next_run:
541             sendit(sock, "  --> Run Level=%s\n", level_to_str(run->level));
542             strcpy(buf, "      hour=");
543             for (i=0; i<24; i++) {
544                if (bit_is_set(i, run->hour)) {
545                   sprintf(num, "%d ", i+1);
546                   strcat(buf, num);
547                }
548             }
549             strcat(buf, "\n");
550             sendit(sock, buf);
551             strcpy(buf, "      mday=");
552             for (i=0; i<31; i++) {
553                if (bit_is_set(i, run->mday)) {
554                   sprintf(num, "%d ", i+1);
555                   strcat(buf, num);
556                }
557             }
558             strcat(buf, "\n");
559             sendit(sock, buf);
560             strcpy(buf, "      month=");
561             for (i=0; i<12; i++) {
562                if (bit_is_set(i, run->month)) {
563                   sprintf(num, "%d ", i+1);
564                   strcat(buf, num);
565                }
566             }
567             strcat(buf, "\n");
568             sendit(sock, buf);
569             strcpy(buf, "      wday=");
570             for (i=0; i<7; i++) {
571                if (bit_is_set(i, run->wday)) {
572                   sprintf(num, "%d ", i+1);
573                   strcat(buf, num);
574                }
575             }
576             strcat(buf, "\n");
577             sendit(sock, buf);
578             sendit(sock, "      mins=%d\n", run->minute);
579             if (run->pool) {
580                sendit(sock, "     --> ");
581                dump_resource(-R_POOL, (RES *)run->pool, sendit, sock);
582             }
583             if (run->storage) {
584                sendit(sock, "     --> ");
585                dump_resource(-R_STORAGE, (RES *)run->storage, sendit, sock);
586             }
587             if (run->msgs) {
588                sendit(sock, "     --> ");
589                dump_resource(-R_MSGS, (RES *)run->msgs, sendit, sock);
590             }
591             /* If another Run record is chained in, go print it */
592             if (run->next) {
593                run = run->next;
594                goto next_run;
595             }
596          } else {
597             sendit(sock, "Schedule: name=%s\n", res->res_sch.hdr.name);
598          }
599          break;
600       case R_GROUP:
601          sendit(sock, "Group: name=%s\n", res->res_group.hdr.name);
602          break;
603       case R_POOL:
604          sendit(sock, "Pool: name=%s PoolType=%s\n", res->res_pool.hdr.name,
605                  res->res_pool.pool_type);
606          sendit(sock, "      use_cat=%d use_once=%d acpt_any=%d cat_files=%d\n",
607                  res->res_pool.use_catalog, res->res_pool.use_volume_once,
608                  res->res_pool.accept_any_volume, res->res_pool.catalog_files);
609          sendit(sock, "      max_vols=%d auto_prune=%d VolRetention=%" lld "\n",
610                  res->res_pool.max_volumes, res->res_pool.AutoPrune,
611                  res->res_pool.VolRetention);
612          sendit(sock, "      recycle=%d LabelFormat=%s\n", res->res_pool.Recycle,
613                  NPRT(res->res_pool.label_format));
614          break;
615       case R_MSGS:
616          sendit(sock, "Messages: name=%s\n", res->res_msgs.hdr.name);
617          if (res->res_msgs.mail_cmd) 
618             sendit(sock, "      mailcmd=%s\n", res->res_msgs.mail_cmd);
619          if (res->res_msgs.operator_cmd) 
620             sendit(sock, "      opcmd=%s\n", res->res_msgs.operator_cmd);
621          break;
622       default:
623          sendit(sock, "Unknown resource type %d\n", type);
624          break;
625    }
626    if (recurse && res->res_dir.hdr.next) {
627       dump_resource(type, res->res_dir.hdr.next, sendit, sock);
628    }
629 }
630
631 /* 
632  * Free memory of resource.  
633  * NB, we don't need to worry about freeing any references
634  * to other resources as they will be freed when that 
635  * resource chain is traversed.  Mainly we worry about freeing
636  * allocated strings (names).
637  */
638 void free_resource(int type)
639 {
640    int num;
641    URES *res;
642    RES *nres;
643    int rindex = type - r_first;
644
645    res = (URES *)resources[rindex].res_head;
646
647    if (res == NULL)
648       return;
649
650    /* common stuff -- free the resource name and description */
651    nres = (RES *)res->res_dir.hdr.next;
652    if (res->res_dir.hdr.name) {
653       free(res->res_dir.hdr.name);
654    }
655    if (res->res_dir.hdr.desc) {
656       free(res->res_dir.hdr.desc);
657    }
658
659    switch (type) {
660       case R_DIRECTOR:
661          if (res->res_dir.working_directory) {
662             free(res->res_dir.working_directory);
663          }
664          if (res->res_dir.pid_directory) {
665             free(res->res_dir.pid_directory);
666          }
667          if (res->res_dir.subsys_directory) {
668             free(res->res_dir.subsys_directory);
669          }
670          if (res->res_dir.password) {
671             free(res->res_dir.password);
672          }
673          if (res->res_dir.query_file) {
674             free(res->res_dir.query_file);
675          }
676          if (res->res_dir.DIRaddr) {
677             free(res->res_dir.DIRaddr);
678          }
679          break;
680       case R_CLIENT:
681          if (res->res_client.address) {
682             free(res->res_client.address);
683          }
684          if (res->res_client.password) {
685             free(res->res_client.password);
686          }
687          break;
688       case R_STORAGE:
689          if (res->res_store.address)
690             free(res->res_store.address);
691          if (res->res_store.password)
692             free(res->res_store.password);
693          if (res->res_store.media_type)
694             free(res->res_store.media_type);
695          if (res->res_store.dev_name)
696             free(res->res_store.dev_name);
697          break;
698       case R_CATALOG:
699          if (res->res_cat.address)
700             free(res->res_cat.address);
701          if (res->res_cat.db_user)
702             free(res->res_cat.db_user);
703          if (res->res_cat.db_name)
704             free(res->res_cat.db_name);
705          if (res->res_cat.db_password)
706             free(res->res_cat.db_password);
707          break;
708       case R_FILESET:
709          if ((num=res->res_fs.num_includes)) {
710             while (--num >= 0)    
711                free(res->res_fs.include_array[num]);
712             free(res->res_fs.include_array);
713          }
714          if ((num=res->res_fs.num_excludes)) {
715             while (--num >= 0)    
716                free(res->res_fs.exclude_array[num]);
717             free(res->res_fs.exclude_array);
718          }
719          break;
720       case R_POOL:
721          if (res->res_pool.pool_type) {
722             free(res->res_pool.pool_type);
723          }
724          if (res->res_pool.label_format) {
725             free(res->res_pool.label_format);
726          }
727          break;
728       case R_SCHEDULE:
729          if (res->res_sch.run) {
730             RUN *nrun, *next;
731             nrun = res->res_sch.run;
732             while (nrun) {
733                next = nrun->next;
734                free(nrun);
735                nrun = next;
736             }
737          }
738          break;
739       case R_JOB:
740          if (res->res_job.RestoreWhere) {
741             free(res->res_job.RestoreWhere);
742          }
743          if (res->res_job.RestoreBootstrap) {
744             free(res->res_job.RestoreBootstrap);
745          }
746          if (res->res_job.WriteBootstrap) {
747             free(res->res_job.WriteBootstrap);
748          }
749          if (res->res_job.RunBeforeJob) {
750             free(res->res_job.RunBeforeJob);
751          }
752          if (res->res_job.RunAfterJob) {
753             free(res->res_job.RunAfterJob);
754          }
755          break;
756       case R_MSGS:
757          if (res->res_msgs.mail_cmd)
758             free(res->res_msgs.mail_cmd);
759          if (res->res_msgs.operator_cmd)
760             free(res->res_msgs.operator_cmd);
761          free_msgs_res((MSGS *)res);  /* free message resource */
762          res = NULL;
763          break;
764       case R_GROUP:
765          break;
766       default:
767          printf("Unknown resource type %d\n", type);
768    }
769    /* Common stuff again -- free the resource, recurse to next one */
770    if (res) {
771       free(res);
772    }
773    resources[rindex].res_head = nres;
774    if (nres) {
775       free_resource(type);
776    }
777 }
778
779 /*
780  * Save the new resource by chaining it into the head list for
781  * the resource. If this is pass 2, we update any resource
782  * pointers because they may not have been defined until 
783  * later in pass 1.
784  */
785 void save_resource(int type, struct res_items *items, int pass)
786 {
787    URES *res;
788    int rindex = type - r_first;
789    int i, size;
790    int error = 0;
791    
792    /* 
793     * Ensure that all required items are present
794     */
795    for (i=0; items[i].name; i++) {
796       if (items[i].flags & ITEM_REQUIRED) {
797             if (!bit_is_set(i, res_all.res_dir.hdr.item_present)) {  
798                Emsg2(M_ERROR_TERM, 0, "%s item is required in %s resource, but not found.\n",
799                  items[i].name, resources[rindex]);
800              }
801       }
802       /* If this triggers, take a look at lib/parse_conf.h */
803       if (i >= MAX_RES_ITEMS) {
804          Emsg1(M_ERROR_TERM, 0, "Too many items in %s resource\n", resources[rindex]);
805       }
806    }
807
808    /* During pass 2 in each "store" routine, we looked up pointers 
809     * to all the resources referrenced in the current resource, now we
810     * must copy their addresses from the static record to the allocated
811     * record.
812     */
813    if (pass == 2) {
814       switch (type) {
815          /* Resources not containing a resource */
816          case R_CATALOG:
817          case R_STORAGE:
818          case R_FILESET:
819          case R_GROUP:
820          case R_POOL:
821          case R_MSGS:
822             break;
823
824          /* Resources containing another resource */
825          case R_DIRECTOR:
826             if ((res = (URES *)GetResWithName(R_DIRECTOR, res_all.res_dir.hdr.name)) == NULL) {
827                Emsg1(M_ERROR_TERM, 0, "Cannot find Director resource %s\n", res_all.res_dir.hdr.name);
828             }
829             res->res_dir.messages = res_all.res_dir.messages;
830             break;
831          case R_JOB:
832             if ((res = (URES *)GetResWithName(R_JOB, res_all.res_dir.hdr.name)) == NULL) {
833                Emsg1(M_ERROR_TERM, 0, "Cannot find Job resource %s\n", res_all.res_dir.hdr.name);
834             }
835             res->res_job.messages = res_all.res_job.messages;
836             res->res_job.schedule = res_all.res_job.schedule;
837             res->res_job.client   = res_all.res_job.client;
838             res->res_job.fileset  = res_all.res_job.fileset;
839             res->res_job.storage  = res_all.res_job.storage;
840             res->res_job.pool     = res_all.res_job.pool;
841             if (res->res_job.JobType == 0) {
842                Emsg1(M_ERROR_TERM, 0, "Job Type not defined for Job resource %s\n", res_all.res_dir.hdr.name);
843             }
844             if (res->res_job.level != 0) {
845                int i;
846                for (i=0; joblevels[i].level_name; i++) {
847                   if (joblevels[i].level == res->res_job.level &&
848                       joblevels[i].job_type == res->res_job.JobType) {
849                      i = 0;
850                      break;
851                   }
852                }
853                if (i != 0) {
854                   Emsg1(M_ERROR_TERM, 0, "Inappropriate level specified in Job resource %s\n", 
855                      res_all.res_dir.hdr.name);
856                }
857             }
858             break;
859          case R_CLIENT:
860             if ((res = (URES *)GetResWithName(R_CLIENT, res_all.res_client.hdr.name)) == NULL) {
861                Emsg1(M_ERROR_TERM, 0, "Cannot find Client resource %s\n", res_all.res_client.hdr.name);
862             }
863             res->res_client.catalog = res_all.res_client.catalog;
864             break;
865          case R_SCHEDULE:
866             /* Schedule is a bit different in that it contains a RUN record
867              * chain which isn't a "named" resource. This chain was linked
868              * in by run_conf.c during pass 2, so here we jam the pointer 
869              * into the Schedule resource.                         
870              */
871             if ((res = (URES *)GetResWithName(R_SCHEDULE, res_all.res_client.hdr.name)) == NULL) {
872                Emsg1(M_ERROR_TERM, 0, "Cannot find Schedule resource %s\n", res_all.res_client.hdr.name);
873             }
874             res->res_sch.run = res_all.res_sch.run;
875             break;
876          default:
877             Emsg1(M_ERROR, 0, "Unknown resource type %d\n", type);
878             error = 1;
879             break;
880       }
881       /* Note, the resource name was already saved during pass 1,
882        * so here, we can just release it.
883        */
884       if (res_all.res_dir.hdr.name) {
885          free(res_all.res_dir.hdr.name);
886          res_all.res_dir.hdr.name = NULL;
887       }
888       if (res_all.res_dir.hdr.desc) {
889          free(res_all.res_dir.hdr.desc);
890          res_all.res_dir.hdr.desc = NULL;
891       }
892       return;
893    }
894
895    /* The following code is only executed for pass 1 */
896    switch (type) {
897       case R_DIRECTOR:
898          size = sizeof(DIRRES);
899          break;
900       case R_CLIENT:
901          size =sizeof(CLIENT);
902          break;
903       case R_STORAGE:
904          size = sizeof(STORE); 
905          break;
906       case R_CATALOG:
907          size = sizeof(CAT);
908          break;
909       case R_JOB:
910          size = sizeof(JOB);
911          break;
912       case R_FILESET:
913          size = sizeof(FILESET);
914          break;
915       case R_SCHEDULE:
916          size = sizeof(SCHED);
917          break;
918       case R_GROUP:
919          size = sizeof(GROUP);
920          break;
921       case R_POOL:
922          size = sizeof(POOL);
923          break;
924       case R_MSGS:
925          size = sizeof(MSGS);
926          break;
927       default:
928          printf("Unknown resource type %d\n", type);
929          error = 1;
930          size = 1;
931          break;
932    }
933    /* Common */
934    if (!error) {
935       res = (URES *)malloc(size);
936       memcpy(res, &res_all, size);
937       if (!resources[rindex].res_head) {
938          resources[rindex].res_head = (RES *)res; /* store first entry */
939       } else {
940          RES *next;
941          /* Add new res to end of chain */
942          for (next=resources[rindex].res_head; next->next; next=next->next)
943             { }
944          next->next = (RES *)res;
945          Dmsg2(90, "Inserting %s res: %s\n", res_to_str(type),
946                res->res_dir.hdr.name);
947       }
948    }
949 }
950
951 /* 
952  * Store JobType (backup, verify, restore)
953  *
954  */
955 static void store_jobtype(LEX *lc, struct res_items *item, int index, int pass)
956 {
957    int token, i;   
958
959    token = lex_get_token(lc, T_NAME);
960    /* Store the type both pass 1 and pass 2 */
961    for (i=0; jobtypes[i].type_name; i++) {
962       if (strcasecmp(lc->str, jobtypes[i].type_name) == 0) {
963          ((JOB *)(item->value))->JobType = jobtypes[i].job_type;
964          i = 0;
965          break;
966       }
967    }
968    if (i != 0) {
969       scan_err1(lc, "Expected a Job Type keyword, got: %s", lc->str);
970    }
971    scan_to_eol(lc);
972    set_bit(index, res_all.hdr.item_present);
973 }
974
975 /* 
976  * Store Job Level (Full, Incremental, ...)
977  *
978  */
979 static void store_level(LEX *lc, struct res_items *item, int index, int pass)
980 {
981    int token, i;
982
983    token = lex_get_token(lc, T_NAME);
984    /* Store the level pass 2 so that type is defined */
985    for (i=0; joblevels[i].level_name; i++) {
986       if (strcasecmp(lc->str, joblevels[i].level_name) == 0) {
987          ((JOB *)(item->value))->level = joblevels[i].level;
988          i = 0;
989          break;
990       }
991    }
992    if (i != 0) {
993       scan_err1(lc, "Expected a Job Level keyword, got: %s", lc->str);
994    }
995    scan_to_eol(lc);
996    set_bit(index, res_all.hdr.item_present);
997 }
998
999 static void store_replace(LEX *lc, struct res_items *item, int index, int pass)
1000 {
1001    int token, i;
1002    token = lex_get_token(lc, T_NAME);
1003    /* Scan Replacement options */
1004    for (i=0; ReplaceOptions[i].name; i++) {
1005       if (strcasecmp(lc->str, ReplaceOptions[i].name) == 0) {
1006           ((JOB *)(item->value))->replace = ReplaceOptions[i].token;
1007          i = 0;
1008          break;
1009       }
1010    }
1011    if (i != 0) {
1012       scan_err1(lc, "Expected a Restore replacement option, got: %s", lc->str);
1013    }
1014    scan_to_eol(lc);
1015    set_bit(index, res_all.hdr.item_present);
1016 }
1017
1018 /* 
1019  * Store backup/verify info for Job record 
1020  *
1021  * Note, this code is used for both BACKUP and VERIFY jobs
1022  *
1023  *    Backup = Client=<client-name> FileSet=<FileSet-name> Level=<level>
1024  */
1025 static void store_backup(LEX *lc, struct res_items *item, int index, int pass)
1026 {
1027    int token, i;
1028    RES *res;
1029    int options = lc->options;
1030
1031    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
1032
1033    
1034    ((JOB *)(item->value))->JobType = item->code;
1035    while ((token = lex_get_token(lc, T_ALL)) != T_EOL) {
1036       int found;
1037
1038       Dmsg1(150, "store_backup got token=%s\n", lex_tok_to_str(token));
1039       
1040       if (token != T_IDENTIFIER && token != T_UNQUOTED_STRING && token != T_QUOTED_STRING) {
1041          scan_err1(lc, "Expected a backup/verify keyword, got: %s", lc->str);
1042       }
1043       Dmsg1(190, "Got keyword: %s\n", lc->str);
1044       found = FALSE;
1045       for (i=0; BakVerFields[i].name; i++) {
1046          if (strcasecmp(lc->str, BakVerFields[i].name) == 0) {
1047             found = TRUE;
1048             if (lex_get_token(lc, T_ALL) != T_EQUALS) {
1049                scan_err1(lc, "Expected an equals, got: %s", lc->str);
1050             }
1051             token = lex_get_token(lc, T_NAME);
1052             Dmsg1(190, "Got value: %s\n", lc->str);
1053             switch (BakVerFields[i].token) {
1054                case 'C':
1055                   /* Find Client Resource */
1056                   if (pass == 2) {
1057                      res = GetResWithName(R_CLIENT, lc->str);
1058                      if (res == NULL) {
1059                         scan_err1(lc, "Could not find specified Client Resource: %s",
1060                                    lc->str);
1061                      }
1062                      res_all.res_job.client = (CLIENT *)res;
1063                   }
1064                   break;
1065                case 'F':
1066                   /* Find FileSet Resource */
1067                   if (pass == 2) {
1068                      res = GetResWithName(R_FILESET, lc->str);
1069                      if (res == NULL) {
1070                         scan_err1(lc, "Could not find specified FileSet Resource: %s\n",
1071                                     lc->str);
1072                      }
1073                      res_all.res_job.fileset = (FILESET *)res;
1074                   }
1075                   break;
1076                case 'L':
1077                   /* Get level */
1078                   for (i=0; joblevels[i].level_name; i++) {
1079                      if (joblevels[i].job_type == item->code && 
1080                           strcasecmp(lc->str, joblevels[i].level_name) == 0) {
1081                         ((JOB *)(item->value))->level = joblevels[i].level;
1082                         i = 0;
1083                         break;
1084                      }
1085                   }
1086                   if (i != 0) {
1087                      scan_err1(lc, "Expected a Job Level keyword, got: %s", lc->str);
1088                   }
1089                   break;
1090             } /* end switch */
1091             break;
1092          } /* end if strcmp() */
1093       } /* end for */
1094       if (!found) {
1095          scan_err1(lc, "%s not a valid Backup/verify keyword", lc->str);
1096       }
1097    } /* end while */
1098    lc->options = options;             /* reset original options */
1099    set_bit(index, res_all.hdr.item_present);
1100 }
1101
1102 /* 
1103  * Store restore info for Job record 
1104  *
1105  *    Restore = JobId=<job-id> Where=<root-directory> Replace=<options> Bootstrap=<file>
1106  *
1107  */
1108 static void store_restore(LEX *lc, struct res_items *item, int index, int pass)
1109 {
1110    int token, i;
1111    RES *res;
1112    int options = lc->options;
1113
1114    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
1115
1116    Dmsg0(190, "Enter store_restore()\n");
1117    
1118    ((JOB *)(item->value))->JobType = item->code;
1119    while ((token = lex_get_token(lc, T_ALL)) != T_EOL) {
1120       int found; 
1121
1122       if (token != T_IDENTIFIER && token != T_UNQUOTED_STRING && token != T_QUOTED_STRING) {
1123          scan_err1(lc, "expected a name, got: %s", lc->str);
1124       }
1125       found = FALSE;
1126       for (i=0; RestoreFields[i].name; i++) {
1127          Dmsg1(190, "Restore kw=%s\n", lc->str);
1128          if (strcasecmp(lc->str, RestoreFields[i].name) == 0) {
1129             found = TRUE;
1130             if (lex_get_token(lc, T_ALL) != T_EQUALS) {
1131                scan_err1(lc, "Expected an equals, got: %s", lc->str);
1132             }
1133             token = lex_get_token(lc, T_ALL);
1134             Dmsg1(190, "Restore value=%s\n", lc->str);
1135             switch (RestoreFields[i].token) {
1136                case 'B':
1137                   /* Bootstrap */
1138                   if (token != T_IDENTIFIER && token != T_UNQUOTED_STRING && token != T_QUOTED_STRING) {
1139                      scan_err1(lc, "Expected a Restore bootstrap file, got: %s", lc->str);
1140                   }
1141                   if (pass == 1) {
1142                      res_all.res_job.RestoreBootstrap = bstrdup(lc->str);
1143                   }
1144                   break;
1145                case 'C':
1146                   /* Find Client Resource */
1147                   if (pass == 2) {
1148                      res = GetResWithName(R_CLIENT, lc->str);
1149                      if (res == NULL) {
1150                         scan_err1(lc, "Could not find specified Client Resource: %s",
1151                                    lc->str);
1152                      }
1153                      res_all.res_job.client = (CLIENT *)res;
1154                   }
1155                   break;
1156                case 'F':
1157                   /* Find FileSet Resource */
1158                   if (pass == 2) {
1159                      res = GetResWithName(R_FILESET, lc->str);
1160                      if (res == NULL) {
1161                         scan_err1(lc, "Could not find specified FileSet Resource: %s\n",
1162                                     lc->str);
1163                      }
1164                      res_all.res_job.fileset = (FILESET *)res;
1165                   }
1166                   break;
1167                case 'J':
1168                   /* JobId */
1169                   if (token != T_NUMBER) {
1170                      scan_err1(lc, "expected an integer number, got: %s", lc->str);
1171                   }
1172                   errno = 0;
1173                   res_all.res_job.RestoreJobId = strtol(lc->str, NULL, 0);
1174                   Dmsg1(190, "RestorJobId=%d\n", res_all.res_job.RestoreJobId);
1175                   if (errno != 0) {
1176                      scan_err1(lc, "expected an integer number, got: %s", lc->str);
1177                   }
1178                   break;
1179                case 'W':
1180                   /* Where */
1181                   if (token != T_IDENTIFIER && token != T_UNQUOTED_STRING && token != T_QUOTED_STRING) {
1182                      scan_err1(lc, "Expected a Restore root directory, got: %s", lc->str);
1183                   }
1184                   if (pass == 1) {
1185                      res_all.res_job.RestoreWhere = bstrdup(lc->str);
1186                   }
1187                   break;
1188                case 'R':
1189                   /* Replacement options */
1190                   if (token != T_IDENTIFIER && token != T_UNQUOTED_STRING && token != T_QUOTED_STRING) {
1191                      scan_err1(lc, "Expected a keyword name, got: %s", lc->str);
1192                   }
1193                   /* Fix to scan Replacement options */
1194                   for (i=0; ReplaceOptions[i].name; i++) {
1195                      if (strcasecmp(lc->str, ReplaceOptions[i].name) == 0) {
1196                          ((JOB *)(item->value))->replace = ReplaceOptions[i].token;
1197                         i = 0;
1198                         break;
1199                      }
1200                   }
1201                   if (i != 0) {
1202                      scan_err1(lc, "Expected a Restore replacement option, got: %s", lc->str);
1203                   }
1204                   break;
1205             } /* end switch */
1206             break;
1207          } /* end if strcmp() */
1208       } /* end for */
1209       if (!found) {
1210          scan_err1(lc, "%s not a valid Restore keyword", lc->str);
1211       }
1212    } /* end while */
1213    lc->options = options;             /* reset original options */
1214    set_bit(index, res_all.hdr.item_present);
1215 }
1216
1217
1218
1219 /* 
1220  * Scan for Include options (keyword=option) is converted into one or
1221  *  two characters. Verifyopts=xxxx is Vxxxx:
1222  */
1223 static void scan_include_options(LEX *lc, int keyword, char *opts, int optlen)
1224 {
1225    int token, i;
1226    char option[3];
1227
1228    option[0] = 0;                     /* default option = none */
1229    option[2] = 0;                     /* terminate options */
1230    token = lex_get_token(lc, T_NAME);             /* expect at least one option */       
1231    if (keyword == INC_KW_VERIFY) { /* special case */
1232       /* ***FIXME**** ensure these are in permitted set */
1233       bstrncat(opts, "V", optlen);         /* indicate Verify */
1234       bstrncat(opts, lc->str, optlen);
1235       bstrncat(opts, ":", optlen);         /* terminate it */
1236    } else {
1237       for (i=0; FS_options[i].name; i++) {
1238          if (strcasecmp(lc->str, FS_options[i].name) == 0 && FS_options[i].keyword == keyword) {
1239             /* NOTE! maximum 2 letters here or increase option[3] */
1240             option[0] = FS_options[i].option[0];
1241             option[1] = FS_options[i].option[1];
1242             i = 0;
1243             break;
1244          }
1245       }
1246       if (i != 0) {
1247          scan_err1(lc, "Expected a FileSet option keyword, got:%s:", lc->str);
1248       } else { /* add option */
1249          bstrncat(opts, option, optlen);
1250          Dmsg3(200, "Catopts=%s option=%s optlen=%d\n", opts, option,optlen);
1251       }
1252    }
1253
1254    /* If option terminated by comma, eat it */
1255    if (lc->ch == ',') {
1256       token = lex_get_token(lc, T_ALL);      /* yes, eat comma */
1257    }
1258 }
1259
1260
1261 /* Store FileSet Include/Exclude info */
1262 static void store_inc(LEX *lc, struct res_items *item, int index, int pass)
1263 {
1264    int token, i;
1265    int options = lc->options;
1266    int keyword;
1267    char *fname;
1268    char inc_opts[100];
1269    int inc_opts_len;
1270
1271    lc->options |= LOPT_NO_IDENT;      /* make spaces significant */
1272
1273    /* Get include options */
1274    inc_opts[0] = 0;
1275    while ((token=lex_get_token(lc, T_ALL)) != T_BOB) {
1276       keyword = INC_KW_NONE;
1277       for (i=0; FS_option_kw[i].name; i++) {
1278          if (strcasecmp(lc->str, FS_option_kw[i].name) == 0) {
1279             keyword = FS_option_kw[i].token;
1280             break;
1281          }
1282       }
1283       if (keyword == INC_KW_NONE) {
1284          scan_err1(lc, "Expected a FileSet keyword, got: %s", lc->str);
1285       }
1286       /* Option keyword should be following by = <option> */
1287       if ((token=lex_get_token(lc, T_ALL)) != T_EQUALS) {
1288          scan_err1(lc, "expected an = following keyword, got: %s", lc->str);
1289       }
1290       scan_include_options(lc, keyword, inc_opts, sizeof(inc_opts));
1291       if (token == T_BOB) {
1292          break;
1293       }
1294    }
1295    if (!inc_opts[0]) {
1296       strcat(inc_opts, "0 ");         /* set no options */
1297    } else {
1298       strcat(inc_opts, " ");          /* add field separator */
1299    }
1300    inc_opts_len = strlen(inc_opts);
1301
1302    if (pass == 1) {
1303       if (!res_all.res_fs.have_MD5) {
1304          MD5Init(&res_all.res_fs.md5c);
1305          res_all.res_fs.have_MD5 = TRUE;
1306       }
1307       /* Pickup include/exclude names. Note, they are stored as
1308        * XYZ fname
1309        * where XYZ are the include/exclude options for the FileSet
1310        *     a "0 " (zero) indicates no options,
1311        * and fname is the file/directory name given
1312        */
1313       while ((token = lex_get_token(lc, T_ALL)) != T_EOB) {
1314          switch (token) {
1315             case T_COMMA:
1316             case T_EOL:
1317                continue;
1318
1319             case T_IDENTIFIER:
1320             case T_UNQUOTED_STRING:
1321             case T_QUOTED_STRING:
1322                fname = (char *) malloc(lc->str_len + inc_opts_len + 1);
1323                strcpy(fname, inc_opts);
1324                strcat(fname, lc->str);
1325                if (res_all.res_fs.have_MD5) {
1326                   MD5Update(&res_all.res_fs.md5c, (unsigned char *) fname, inc_opts_len + lc->str_len);
1327                }
1328                if (item->code == 0) { /* include */
1329                   if (res_all.res_fs.num_includes == res_all.res_fs.include_size) {
1330                      res_all.res_fs.include_size += 10;
1331                      if (res_all.res_fs.include_array == NULL) {
1332                         res_all.res_fs.include_array = (char **) malloc(sizeof(char *) * res_all.res_fs.include_size);
1333                      } else {
1334                         res_all.res_fs.include_array = (char **) realloc(res_all.res_fs.include_array,
1335                            sizeof(char *) * res_all.res_fs.include_size);
1336                      }
1337                   }
1338                   res_all.res_fs.include_array[res_all.res_fs.num_includes++] =    
1339                      fname;
1340                } else {                /* exclude */
1341                   if (res_all.res_fs.num_excludes == res_all.res_fs.exclude_size) {
1342                      res_all.res_fs.exclude_size += 10;
1343                      if (res_all.res_fs.exclude_array == NULL) {
1344                         res_all.res_fs.exclude_array = (char **) malloc(sizeof(char *) * res_all.res_fs.exclude_size);
1345                      } else {
1346                         res_all.res_fs.exclude_array = (char **) realloc(res_all.res_fs.exclude_array,
1347                            sizeof(char *) * res_all.res_fs.exclude_size);
1348                      }
1349                   }
1350                   res_all.res_fs.exclude_array[res_all.res_fs.num_excludes++] =    
1351                      fname;
1352                }
1353                break;
1354             default:
1355                scan_err1(lc, "Expected a filename, got: %s", lc->str);
1356          }                                 
1357       }
1358    } else { /* pass 2 */
1359       while (lex_get_token(lc, T_ALL) != T_EOB) 
1360          {}
1361    }
1362    scan_to_eol(lc);
1363    lc->options = options;
1364    set_bit(index, res_all.hdr.item_present);
1365 }