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