]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird.c
- Move test for MaxStartDelay as suggested by Peter.
[bacula/bacula] / bacula / src / dird / dird.c
1 /*
2  *
3  *   Bacula Director daemon -- this is the main program
4  *
5  *     Kern Sibbald, March MM
6  *
7  *   Version $Id$
8  */
9 /*
10    Copyright (C) 2000-2005 Kern Sibbald
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "dird.h"
31
32 /* Forward referenced subroutines */
33 static void terminate_dird(int sig);
34 static int check_resources();
35
36 /* Exported subroutines */
37
38 extern "C" void reload_config(int sig);
39
40
41 /* Imported subroutines */
42 JCR *wait_for_next_job(char *runjob);
43 void term_scheduler();
44 void term_ua_server();
45 void start_UA_server(dlist *addrs);
46 void init_job_server(int max_workers);
47 void term_job_server();
48 void store_jobtype(LEX *lc, RES_ITEM *item, int index, int pass);
49 void store_level(LEX *lc, RES_ITEM *item, int index, int pass);
50 void store_replace(LEX *lc, RES_ITEM *item, int index, int pass);
51 void init_device_resources();
52
53 static char *configfile = NULL;
54 static char *runjob = NULL;
55 static int background = 1;
56 static void init_reload(void);
57
58 /* Globals Exported */
59 DIRRES *director;                     /* Director resource */
60 int FDConnectTimeout;
61 int SDConnectTimeout;
62
63 /* Globals Imported */
64 extern int r_first, r_last;           /* first and last resources */
65 extern RES_TABLE resources[];
66 extern RES **res_head;
67 extern RES_ITEM job_items[];
68 extern URES res_all;
69
70
71 #define CONFIG_FILE "./bacula-dir.conf" /* default configuration file */
72
73 static void usage()
74 {
75    fprintf(stderr, _(
76 "Copyright (C) 2000-2005 Kern Sibbald.\n"
77 "\nVersion: " VERSION " (" BDATE ")\n\n"
78 "Usage: dird [-f -s] [-c config_file] [-d debug_level] [config_file]\n"
79 "       -c <file>   set configuration file to file\n"
80 "       -dnn        set debug level to nn\n"
81 "       -f          run in foreground (for debugging)\n"
82 "       -g          groupid\n"
83 "       -r <job>    run <job> now\n"
84 "       -s          no signals\n"
85 "       -t          test - read configuration and exit\n"
86 "       -u          userid\n"
87 "       -v          verbose user messages\n"
88 "       -?          print this message.\n"
89 "\n"));
90
91    exit(1);
92 }
93
94
95 /*********************************************************************
96  *
97  *         Main Bacula Server program
98  *
99  */
100 int main (int argc, char *argv[])
101 {
102    int ch;
103    JCR *jcr;
104    int no_signals = FALSE;
105    int test_config = FALSE;
106    char *uid = NULL;
107    char *gid = NULL;
108
109    init_stack_dump();
110    my_name_is(argc, argv, "bacula-dir");
111    textdomain("bacula");
112    init_msg(NULL, NULL);              /* initialize message handler */
113    init_reload();
114    daemon_start_time = time(NULL);
115
116    while ((ch = getopt(argc, argv, "c:d:fg:r:stu:v?")) != -1) {
117       switch (ch) {
118       case 'c':                    /* specify config file */
119          if (configfile != NULL) {
120             free(configfile);
121          }
122          configfile = bstrdup(optarg);
123          break;
124
125       case 'd':                    /* set debug level */
126          debug_level = atoi(optarg);
127          if (debug_level <= 0) {
128             debug_level = 1;
129          }
130          Dmsg1(0, "Debug level = %d\n", debug_level);
131          break;
132
133       case 'f':                    /* run in foreground */
134          background = FALSE;
135          break;
136
137       case 'g':                    /* set group id */
138          gid = optarg;
139          break;
140
141       case 'r':                    /* run job */
142          if (runjob != NULL) {
143             free(runjob);
144          }
145          if (optarg) {
146             runjob = bstrdup(optarg);
147          }
148          break;
149
150       case 's':                    /* turn off signals */
151          no_signals = TRUE;
152          break;
153
154       case 't':                    /* test config */
155          test_config = TRUE;
156          break;
157
158       case 'u':                    /* set uid */
159          uid = optarg;
160          break;
161
162       case 'v':                    /* verbose */
163          verbose++;
164          break;
165
166       case '?':
167       default:
168          usage();
169
170       }
171    }
172    argc -= optind;
173    argv += optind;
174
175    if (!no_signals) {
176       init_signals(terminate_dird);
177    }
178
179    if (argc) {
180       if (configfile != NULL) {
181          free(configfile);
182       }
183       configfile = bstrdup(*argv);
184       argc--;
185       argv++;
186    }
187    if (argc) {
188       usage();
189    }
190
191    if (configfile == NULL) {
192       configfile = bstrdup(CONFIG_FILE);
193    }
194
195    parse_config(configfile);
196
197    if (init_tls() != 0) {
198       Jmsg((JCR *)NULL, M_ERROR_TERM, 0, _("TLS library initialization failed.\n"));
199    }
200
201    if (!check_resources()) {
202       Jmsg((JCR *)NULL, M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
203    }
204
205    if (test_config) {
206       terminate_dird(0);
207    }
208
209    my_name_is(0, NULL, director->hdr.name);    /* set user defined name */
210
211    FDConnectTimeout = (int)director->FDConnectTimeout;
212    SDConnectTimeout = (int)director->SDConnectTimeout;
213
214    if (background) {
215       daemon_start();
216       init_stack_dump();              /* grab new pid */
217    }
218
219    /* Create pid must come after we are a daemon -- so we have our final pid */
220    create_pid_file(director->pid_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
221    read_state_file(director->working_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
222
223    drop(uid, gid);                    /* reduce priveleges if requested */
224
225    signal(SIGHUP, reload_config);
226
227    init_console_msg(working_directory);
228
229    init_python_interpreter(director->hdr.name, director->scripts_directory, 
230        "DirStartUp");
231
232    set_thread_concurrency(director->MaxConcurrentJobs * 2 +
233       4 /* UA */ + 4 /* sched+watchdog+jobsvr+misc */);
234
235    Dmsg0(200, "Start UA server\n");
236    start_UA_server(director->DIRaddrs);
237
238    start_watchdog();                  /* start network watchdog thread */
239
240    init_jcr_subsystem();              /* start JCR watchdogs etc. */
241
242    init_job_server(director->MaxConcurrentJobs);
243
244 // init_device_resources();
245
246    Dmsg0(200, "wait for next job\n");
247    /* Main loop -- call scheduler to get next job to run */
248    while ((jcr = wait_for_next_job(runjob))) {
249       run_job(jcr);                   /* run job */
250       free_jcr(jcr);                  /* release jcr */
251       if (runjob) {                   /* command line, run a single job? */
252          break;                       /* yes, terminate */
253       }
254    }
255
256    terminate_dird(0);
257 }
258
259 /* Cleanup and then exit */
260 static void terminate_dird(int sig)
261 {
262    static bool already_here = false;
263
264    if (already_here) {                /* avoid recursive temination problems */
265       exit(1);
266    }
267    already_here = true;
268    generate_daemon_event(NULL, "Exit");
269    write_state_file(director->working_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
270    delete_pid_file(director->pid_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
271 // signal(SIGCHLD, SIG_IGN);          /* don't worry about children now */
272    term_scheduler();
273    term_job_server();
274    if (runjob) {
275       free(runjob);
276    }
277    if (configfile != NULL) {
278       free(configfile);
279    }
280    if (debug_level > 5) {
281       print_memory_pool_stats();
282    }
283    free_config_resources();
284    term_ua_server();
285    term_msg();                        /* terminate message handler */
286    stop_watchdog();
287    cleanup_tls();
288    close_memory_pool();               /* release free memory in pool */
289    sm_dump(false);
290    exit(sig);
291 }
292
293 struct RELOAD_TABLE {
294    int job_count;
295    RES **res_table;
296 };
297
298 static const int max_reloads = 10;
299 static RELOAD_TABLE reload_table[max_reloads];
300
301 static void init_reload(void)
302 {
303    for (int i=0; i < max_reloads; i++) {
304       reload_table[i].job_count = 0;
305       reload_table[i].res_table = NULL;
306    }
307 }
308
309 static void free_saved_resources(int table)
310 {
311    int num = r_last - r_first + 1;
312    RES **res_tab = reload_table[table].res_table;
313    if (!res_tab) {
314       Dmsg1(100, "res_tab for table %d already released.\n", table);
315       return;
316    }
317    Dmsg1(100, "Freeing resources for table %d\n", table);
318    for (int j=0; j<num; j++) {
319       free_resource(res_tab[j], r_first + j);
320    }
321    free(res_tab);
322    reload_table[table].job_count = 0;
323    reload_table[table].res_table = NULL;
324 }
325
326 /*
327  * Called here at the end of every job that was
328  * hooked decrementing the active job_count. When
329  * it goes to zero, no one is using the associated
330  * resource table, so free it.
331  */
332 static void reload_job_end_cb(JCR *jcr, void *ctx)
333 {
334    int reload_id = (int)((long int)ctx);
335    Dmsg3(100, "reload job_end JobId=%d table=%d cnt=%d\n", jcr->JobId,
336       reload_id, reload_table[reload_id].job_count);
337    lock_jcr_chain();
338    LockRes();
339    if (--reload_table[reload_id].job_count <= 0) {
340       free_saved_resources(reload_id);
341    }
342    UnlockRes();
343    unlock_jcr_chain();
344 }
345
346 static int find_free_reload_table_entry()
347 {
348    int table = -1;
349    for (int i=0; i < max_reloads; i++) {
350       if (reload_table[i].res_table == NULL) {
351          table = i;
352          break;
353       }
354    }
355    return table;
356 }
357
358 /*
359  * If we get here, we have received a SIGHUP, which means to
360  *    reread our configuration file.
361  *
362  * The algorithm used is as follows: we count how many jobs are
363  *   running and mark the running jobs to make a callback on
364  *   exiting. The old config is saved with the reload table
365  *   id in a reload table. The new config file is read. Now, as
366  *   each job exits, it calls back to the reload_job_end_cb(), which
367  *   decrements the count of open jobs for the given reload table.
368  *   When the count goes to zero, we release those resources.
369  *   This allows us to have pointers into the resource table (from
370  *   jobs), and once they exit and all the pointers are released, we
371  *   release the old table. Note, if no new jobs are running since the
372  *   last reload, then the old resources will be immediately release.
373  *   A console is considered a job because it may have pointers to
374  *   resources, but a SYSTEM job is not since it *should* not have any
375  *   permanent pointers to jobs.
376  */
377 extern "C"
378 void reload_config(int sig)
379 {
380    static bool already_here = false;
381    sigset_t set;
382    JCR *jcr;
383    int njobs = 0;                     /* number of running jobs */
384    int table, rtable;
385    bool ok;       
386
387    if (already_here) {
388       abort();                        /* Oops, recursion -> die */
389    }
390    already_here = true;
391    sigemptyset(&set);
392    sigaddset(&set, SIGHUP);
393    sigprocmask(SIG_BLOCK, &set, NULL);
394
395 // Jmsg(NULL, M_INFO, 0, "Entering experimental reload config code. Bug reports will not be accepted.\n");
396
397    lock_jcr_chain();
398    LockRes();
399
400    table = find_free_reload_table_entry();
401    if (table < 0) {
402       Jmsg(NULL, M_ERROR, 0, _("Too many open reload requests. Request ignored.\n"));
403       goto bail_out;
404    }
405
406    Dmsg1(100, "Reload_config njobs=%d\n", njobs);
407    reload_table[table].res_table = save_config_resources();
408    Dmsg1(100, "Saved old config in table %d\n", table);
409
410    ok = parse_config(configfile, 0);  /* no exit on error */
411
412    Dmsg0(100, "Reloaded config file\n");
413    if (!ok || !check_resources()) {
414       rtable = find_free_reload_table_entry();    /* save new, bad table */
415       if (rtable < 0) {
416          Jmsg(NULL, M_ERROR, 0, _("Please correct configuration file: %s\n"), configfile);
417          Jmsg(NULL, M_ERROR_TERM, 0, _("Out of reload table entries. Giving up.\n"));
418       } else {
419          Jmsg(NULL, M_ERROR, 0, _("Please correct configuration file: %s\n"), configfile);
420          Jmsg(NULL, M_ERROR, 0, _("Resetting previous configuration.\n"));
421       }
422       reload_table[rtable].res_table = save_config_resources();
423       /* Now restore old resoure values */
424       int num = r_last - r_first + 1;
425       RES **res_tab = reload_table[table].res_table;
426       for (int i=0; i<num; i++) {
427          res_head[i] = res_tab[i];
428       }
429       table = rtable;                 /* release new, bad, saved table below */
430    } else {
431       /*
432        * Hook all active jobs so that they release this table
433        */
434       foreach_jcr(jcr) {
435          if (jcr->JobType != JT_SYSTEM) {
436             reload_table[table].job_count++;
437             job_end_push(jcr, reload_job_end_cb, (void *)((long int)table));
438             njobs++;
439          }
440          free_locked_jcr(jcr);
441       }
442    }
443
444    /* Reset globals */
445    set_working_directory(director->working_directory);
446    FDConnectTimeout = director->FDConnectTimeout;
447    SDConnectTimeout = director->SDConnectTimeout;
448    Dmsg0(0, "Director's configuration file reread.\n");
449
450 // init_device_resources();           /* Update Device resources */
451
452    /* Now release saved resources, if no jobs using the resources */
453    if (njobs == 0) {
454       free_saved_resources(table);
455    }
456
457 bail_out:
458    UnlockRes();
459    unlock_jcr_chain();
460    sigprocmask(SIG_UNBLOCK, &set, NULL);
461    signal(SIGHUP, reload_config);
462    already_here = false;
463 }
464
465 /*
466  * Make a quick check to see that we have all the
467  * resources needed.
468  *
469  *  **** FIXME **** this routine could be a lot more
470  *   intelligent and comprehensive.
471  */
472 static int check_resources()
473 {
474    bool OK = true;
475    JOB *job;
476
477    LockRes();
478
479    job = (JOB *)GetNextRes(R_JOB, NULL);
480    director = (DIRRES *)GetNextRes(R_DIRECTOR, NULL);
481    if (!director) {
482       Jmsg(NULL, M_FATAL, 0, _("No Director resource defined in %s\n"
483 "Without that I don't know who I am :-(\n"), configfile);
484       OK = false;
485    } else {
486       set_working_directory(director->working_directory);
487       if (!director->messages) {       /* If message resource not specified */
488          director->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
489          if (!director->messages) {
490             Jmsg(NULL, M_FATAL, 0, _("No Messages resource defined in %s\n"), configfile);
491             OK = false;
492          }
493       }
494       if (GetNextRes(R_DIRECTOR, (RES *)director) != NULL) {
495          Jmsg(NULL, M_FATAL, 0, _("Only one Director resource permitted in %s\n"),
496             configfile);
497          OK = false;
498       }
499 #ifdef HAVE_TLS
500       /* tls_require implies tls_enable */
501       if (director->tls_require) {
502          director->tls_enable = true;
503       }
504
505       if (!director->tls_certfile && director->tls_enable) {
506          Jmsg(NULL, M_FATAL, 0, _("\"TLS Certificate\" file not defined for Director \"%s\" in %s.\n"),
507             director->hdr.name, configfile);
508          OK = false;
509       }
510
511       if (!director->tls_keyfile && director->tls_enable) {
512          Jmsg(NULL, M_FATAL, 0, _("\"TLS Key\" file not defined for Director \"%s\" in %s.\n"),
513             director->hdr.name, configfile);
514          OK = false;
515       }
516
517       if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && director->tls_enable && director->tls_verify_peer) {
518          Jmsg(NULL, M_FATAL, 0, _("Neither \"TLS CA Certificate\" or \"TLS CA"
519               " Certificate Dir\" are defined for Director \"%s\" in %s."
520               " At least one CA certificate store is required"
521               " when using \"TLS Verify Peer\".\n"),
522               director->hdr.name, configfile);
523          OK = false;
524       }
525
526       /* If everything is well, attempt to initialize our per-resource TLS context */
527       if (OK && (director->tls_enable || director->tls_require)) {
528          /* Initialize TLS context:
529           * Args: CA certfile, CA certdir, Certfile, Keyfile,
530           * Keyfile PEM Callback, Keyfile CB Userdata, DHfile, Verify Peer */
531          director->tls_ctx = new_tls_context(director->tls_ca_certfile,
532             director->tls_ca_certdir, director->tls_certfile,
533             director->tls_keyfile, NULL, NULL, director->tls_dhfile,
534             director->tls_verify_peer);
535          
536          if (!director->tls_ctx) {
537             Jmsg(NULL, M_FATAL, 0, _("Failed to initialize TLS context for Director \"%s\" in %s.\n"),
538                  director->hdr.name, configfile);
539             OK = false;
540          }
541       }
542 #endif /* HAVE_TLS */
543    }
544
545    if (!job) {
546       Jmsg(NULL, M_FATAL, 0, _("No Job records defined in %s\n"), configfile);
547       OK = false;
548    }
549    foreach_res(job, R_JOB) {
550       int i;
551
552       if (job->jobdefs) {
553          /* Handle Storage alists specifically */
554          JOB *jobdefs = job->jobdefs;
555          if (jobdefs->storage && !job->storage) {
556             STORE *st;
557             job->storage = New(alist(10, not_owned_by_alist));
558             foreach_alist(st, jobdefs->storage) {
559                job->storage->append(st);
560             }
561          }
562
563          /* Transfer default items from JobDefs Resource */
564          for (i=0; job_items[i].name; i++) {
565             char **def_svalue, **svalue;  /* string value */
566             int *def_ivalue, *ivalue;     /* integer value */
567             int64_t *def_lvalue, *lvalue; /* 64 bit values */
568             uint32_t offset;
569
570             Dmsg4(1400, "Job \"%s\", field \"%s\" bit=%d def=%d\n",
571                 job->hdr.name, job_items[i].name,
572                 bit_is_set(i, job->hdr.item_present),
573                 bit_is_set(i, job->jobdefs->hdr.item_present));
574
575             if (!bit_is_set(i, job->hdr.item_present) &&
576                  bit_is_set(i, job->jobdefs->hdr.item_present)) {
577                Dmsg2(400, "Job \"%s\", field \"%s\": getting default.\n",
578                  job->hdr.name, job_items[i].name);
579                offset = (char *)(job_items[i].value) - (char *)&res_all;
580                /*
581                 * Handle strings and directory strings
582                 */
583                if (job_items[i].handler == store_str ||
584                    job_items[i].handler == store_dir) {
585                   def_svalue = (char **)((char *)(job->jobdefs) + offset);
586                   Dmsg5(400, "Job \"%s\", field \"%s\" def_svalue=%s item %d offset=%u\n",
587                        job->hdr.name, job_items[i].name, *def_svalue, i, offset);
588                   svalue = (char **)((char *)job + offset);
589                   if (*svalue) {
590                      Pmsg1(000, "Hey something is wrong. p=0x%lu\n", *svalue);
591                   }
592                   *svalue = bstrdup(*def_svalue);
593                   set_bit(i, job->hdr.item_present);
594                /*
595                 * Handle resources
596                 */
597                } else if (job_items[i].handler == store_res) {
598                   def_svalue = (char **)((char *)(job->jobdefs) + offset);
599                   Dmsg4(400, "Job \"%s\", field \"%s\" item %d offset=%u\n",
600                        job->hdr.name, job_items[i].name, i, offset);
601                   svalue = (char **)((char *)job + offset);
602                   if (*svalue) {
603                      Pmsg1(000, "Hey something is wrong. p=0x%lu\n", *svalue);
604                   }
605                   *svalue = *def_svalue;
606                   set_bit(i, job->hdr.item_present);
607                /*
608                 * Handle alist resources
609                 */
610                } else if (job_items[i].handler == store_alist_res) {
611                   if (bit_is_set(i, job->jobdefs->hdr.item_present)) {
612                      set_bit(i, job->hdr.item_present);
613                   }
614                /*
615                 * Handle integer fields
616                 *    Note, our store_yesno does not handle bitmaped fields
617                 */
618                } else if (job_items[i].handler == store_yesno   ||
619                           job_items[i].handler == store_pint    ||
620                           job_items[i].handler == store_jobtype ||
621                           job_items[i].handler == store_level   ||
622                           job_items[i].handler == store_pint    ||
623                           job_items[i].handler == store_replace) {
624                   def_ivalue = (int *)((char *)(job->jobdefs) + offset);
625                   Dmsg5(400, "Job \"%s\", field \"%s\" def_ivalue=%d item %d offset=%u\n",
626                        job->hdr.name, job_items[i].name, *def_ivalue, i, offset);
627                   ivalue = (int *)((char *)job + offset);
628                   *ivalue = *def_ivalue;
629                   set_bit(i, job->hdr.item_present);
630                /*
631                 * Handle 64 bit integer fields
632                 */
633                } else if (job_items[i].handler == store_time   ||
634                           job_items[i].handler == store_size   ||
635                           job_items[i].handler == store_int64) {
636                   def_lvalue = (int64_t *)((char *)(job->jobdefs) + offset);
637                   Dmsg5(400, "Job \"%s\", field \"%s\" def_lvalue=%" lld " item %d offset=%u\n",
638                        job->hdr.name, job_items[i].name, *def_lvalue, i, offset);
639                   lvalue = (int64_t *)((char *)job + offset);
640                   *lvalue = *def_lvalue;
641                   set_bit(i, job->hdr.item_present);
642                }
643             }
644          }
645       }
646       /*
647        * Ensure that all required items are present
648        */
649       for (i=0; job_items[i].name; i++) {
650          if (job_items[i].flags & ITEM_REQUIRED) {
651                if (!bit_is_set(i, job->hdr.item_present)) {
652                   Jmsg(NULL, M_FATAL, 0, "\"%s\" directive in Job \"%s\" resource is required, but not found.\n",
653                     job_items[i].name, job->hdr.name);
654                   OK = false;
655                 }
656          }
657          /* If this triggers, take a look at lib/parse_conf.h */
658          if (i >= MAX_RES_ITEMS) {
659             Emsg0(M_ERROR_TERM, 0, "Too many items in Job resource\n");
660          }
661       }
662    } /* End loop over Job res */
663
664    /* Loop over databases */
665    CAT *catalog;
666    foreach_res(catalog, R_CATALOG) {
667       B_DB *db;
668       /*
669        * Make sure we can open catalog, otherwise print a warning
670        * message because the server is probably not running.
671        */
672       db = db_init_database(NULL, catalog->db_name, catalog->db_user,
673                          catalog->db_password, catalog->db_address,
674                          catalog->db_port, catalog->db_socket,
675                          catalog->mult_db_connections);
676       if (!db || !db_open_database(NULL, db)) {
677          Jmsg(NULL, M_FATAL, 0, _("Could not open database \"%s\".\n"),
678               catalog->db_name);
679          if (db) {
680             Jmsg(NULL, M_FATAL, 0, _("%s"), db_strerror(db));
681          }
682          OK = false;
683          continue;
684       }
685
686       /* Loop over all pools, defining/updating them in each database */
687       POOL *pool;
688       foreach_res(pool, R_POOL) {
689          create_pool(NULL, db, pool, POOL_OP_UPDATE);  /* update request */
690       }
691
692       STORE *store;
693       foreach_res(store, R_STORAGE) {
694          STORAGE_DBR sr;
695          MEDIATYPE_DBR mr;
696          if (store->media_type) {
697             bstrncpy(mr.MediaType, store->media_type, sizeof(mr.MediaType));
698             mr.ReadOnly = 0;
699             db_create_mediatype_record(NULL, db, &mr);
700          } else {
701             mr.MediaTypeId = 0;
702          }
703          bstrncpy(sr.Name, store->name(), sizeof(sr.Name));
704          sr.AutoChanger = store->autochanger;
705          db_create_storage_record(NULL, db, &sr);
706          store->StorageId = sr.StorageId;   /* set storage Id */
707          if (!sr.created) {                 /* if not created, update it */
708             db_update_storage_record(NULL, db, &sr);
709          }
710
711 #ifdef HAVE_TLS
712          /* tls_require implies tls_enable */
713          if (store->tls_require) {
714             store->tls_enable = true;
715          } 
716
717          if ((!store->tls_ca_certfile && !store->tls_ca_certdir) && store->tls_enable) {
718             Jmsg(NULL, M_FATAL, 0, _("Neither \"TLS CA Certificate\""
719                  " or \"TLS CA Certificate Dir\" are defined for Storage \"%s\" in %s.\n"),
720                  store->hdr.name, configfile);
721             OK = false;
722          }
723
724          /* If everything is well, attempt to initialize our per-resource TLS context */
725          if (OK && (store->tls_enable || store->tls_require)) {
726            /* Initialize TLS context:
727             * Args: CA certfile, CA certdir, Certfile, Keyfile,
728             * Keyfile PEM Callback, Keyfile CB Userdata, DHfile, Verify Peer */
729             store->tls_ctx = new_tls_context(store->tls_ca_certfile,
730                store->tls_ca_certdir, store->tls_certfile,
731                store->tls_keyfile, NULL, NULL, NULL, true);
732          
733             if (!store->tls_ctx) {
734                Jmsg(NULL, M_FATAL, 0, _("Failed to initialize TLS context for Storage \"%s\" in %s.\n"),
735                     store->hdr.name, configfile);
736                OK = false;
737             }
738          }
739 #endif /* HAVE_TLS */
740       }
741
742       /* Loop over all counters, defining them in each database */
743       /* Set default value in all counters */
744       COUNTER *counter;
745       foreach_res(counter, R_COUNTER) {
746          /* Write to catalog? */
747          if (!counter->created && counter->Catalog == catalog) {
748             COUNTER_DBR cr;
749             bstrncpy(cr.Counter, counter->hdr.name, sizeof(cr.Counter));
750             cr.MinValue = counter->MinValue;
751             cr.MaxValue = counter->MaxValue;
752             cr.CurrentValue = counter->MinValue;
753             if (counter->WrapCounter) {
754                bstrncpy(cr.WrapCounter, counter->WrapCounter->hdr.name, sizeof(cr.WrapCounter));
755             } else {
756                cr.WrapCounter[0] = 0;  /* empty string */
757             }
758             if (db_create_counter_record(NULL, db, &cr)) {
759                counter->CurrentValue = cr.CurrentValue;
760                counter->created = true;
761                Dmsg2(100, "Create counter %s val=%d\n", counter->hdr.name, counter->CurrentValue);
762             }
763          }
764          if (!counter->created) {
765             counter->CurrentValue = counter->MinValue;  /* default value */
766          }
767       }
768       db_close_database(NULL, db);
769    }
770
771 #ifdef HAVE_TLS
772    /* Loop over Consoles */
773    CONRES *cons;
774    foreach_res(cons, R_CONSOLE) {
775       /* tls_require implies tls_enable */
776       if (cons->tls_require) {
777          cons->tls_enable = true;
778       }
779
780       if (!cons->tls_certfile && cons->tls_enable) {
781          Jmsg(NULL, M_FATAL, 0, _("\"TLS Certificate\" file not defined for Console \"%s\" in %s.\n"),
782             cons->hdr.name, configfile);
783          OK = false;
784       }
785
786       if (!cons->tls_keyfile && cons->tls_enable) {
787          Jmsg(NULL, M_FATAL, 0, _("\"TLS Key\" file not defined for Console \"%s\" in %s.\n"),
788             cons->hdr.name, configfile);
789          OK = false;
790       }
791
792       if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && cons->tls_enable && cons->tls_verify_peer) {
793          Jmsg(NULL, M_FATAL, 0, _("Neither \"TLS CA Certificate\" or \"TLS CA"
794             " Certificate Dir\" are defined for Console \"%s\" in %s."
795             " At least one CA certificate store is required"
796             " when using \"TLS Verify Peer\".\n"),
797             cons->hdr.name, configfile);
798          OK = false;
799       }
800       /* If everything is well, attempt to initialize our per-resource TLS context */
801       if (OK && (cons->tls_enable || cons->tls_require)) {
802          /* Initialize TLS context:
803           * Args: CA certfile, CA certdir, Certfile, Keyfile,
804           * Keyfile PEM Callback, Keyfile CB Userdata, DHfile, Verify Peer */
805          cons->tls_ctx = new_tls_context(cons->tls_ca_certfile,
806             cons->tls_ca_certdir, cons->tls_certfile,
807             cons->tls_keyfile, NULL, NULL, cons->tls_dhfile, cons->tls_verify_peer);
808          
809          if (!cons->tls_ctx) {
810             Jmsg(NULL, M_FATAL, 0, _("Failed to initialize TLS context for File daemon \"%s\" in %s.\n"),
811                cons->hdr.name, configfile);
812             OK = false;
813          }
814       }
815
816    }
817 #endif /* HAVE_TLS */
818
819 #ifdef HAVE_TLS
820    /* Loop over Clients */
821    CLIENT *client;
822    foreach_res(client, R_CLIENT) {
823       /* tls_require implies tls_enable */
824       if (client->tls_require) {
825          client->tls_enable = true;
826       }
827
828       if ((!client->tls_ca_certfile && !client->tls_ca_certdir) && client->tls_enable) {
829          Jmsg(NULL, M_FATAL, 0, _("Neither \"TLS CA Certificate\""
830             " or \"TLS CA Certificate Dir\" are defined for File daemon \"%s\" in %s.\n"),
831             client->hdr.name, configfile);
832          OK = false;
833       }
834
835       /* If everything is well, attempt to initialize our per-resource TLS context */
836       if (OK && (client->tls_enable || client->tls_require)) {
837          /* Initialize TLS context:
838           * Args: CA certfile, CA certdir, Certfile, Keyfile,
839           * Keyfile PEM Callback, Keyfile CB Userdata, DHfile, Verify Peer */
840          client->tls_ctx = new_tls_context(client->tls_ca_certfile,
841             client->tls_ca_certdir, client->tls_certfile,
842             client->tls_keyfile, NULL, NULL, NULL,
843             true);
844          
845          if (!client->tls_ctx) {
846             Jmsg(NULL, M_FATAL, 0, _("Failed to initialize TLS context for File daemon \"%s\" in %s.\n"),
847                client->hdr.name, configfile);
848             OK = false;
849          }
850       }
851    }
852 #endif /* HAVE_TLS */
853
854    UnlockRes();
855    if (OK) {
856       close_msg(NULL);                /* close temp message handler */
857       init_msg(NULL, director->messages); /* open daemon message handler */
858    }
859    return OK;
860 }