]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird.c
9fed95bc7afac06e2ff605225f6484815cfe54b9
[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 (!check_resources()) {
198       Jmsg((JCR *)NULL, M_ERROR_TERM, 0, _("Please correct configuration file: %s\n"), configfile);
199    }
200
201    if (test_config) {
202       terminate_dird(0);
203    }
204
205    my_name_is(0, NULL, director->hdr.name);    /* set user defined name */
206
207    FDConnectTimeout = (int)director->FDConnectTimeout;
208    SDConnectTimeout = (int)director->SDConnectTimeout;
209
210    if (background) {
211       daemon_start();
212       init_stack_dump();              /* grab new pid */
213    }
214
215    /* Create pid must come after we are a daemon -- so we have our final pid */
216    create_pid_file(director->pid_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
217    read_state_file(director->working_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
218
219    drop(uid, gid);                    /* reduce priveleges if requested */
220
221    signal(SIGHUP, reload_config);
222
223    init_console_msg(working_directory);
224
225    init_python_interpreter(director->hdr.name, director->scripts_directory ?
226       director->scripts_directory : ".");
227
228    set_thread_concurrency(director->MaxConcurrentJobs * 2 +
229       4 /* UA */ + 4 /* sched+watchdog+jobsvr+misc */);
230
231    Dmsg0(200, "Start UA server\n");
232    start_UA_server(director->DIRaddrs);
233
234    start_watchdog();                  /* start network watchdog thread */
235
236    init_jcr_subsystem();              /* start JCR watchdogs etc. */
237
238    init_job_server(director->MaxConcurrentJobs);
239
240 // init_device_resources();
241
242    Dmsg0(200, "wait for next job\n");
243    /* Main loop -- call scheduler to get next job to run */
244    while ((jcr = wait_for_next_job(runjob))) {
245       run_job(jcr);                   /* run job */
246       free_jcr(jcr);                  /* release jcr */
247       if (runjob) {                   /* command line, run a single job? */
248          break;                       /* yes, terminate */
249       }
250    }
251
252    terminate_dird(0);
253 }
254
255 /* Cleanup and then exit */
256 static void terminate_dird(int sig)
257 {
258    static int already_here = FALSE;
259
260    if (already_here) {                /* avoid recursive temination problems */
261       exit(1);
262    }
263    already_here = TRUE;
264    write_state_file(director->working_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
265    delete_pid_file(director->pid_directory, "bacula-dir", get_first_port_host_order(director->DIRaddrs));
266 // signal(SIGCHLD, SIG_IGN);          /* don't worry about children now */
267    term_scheduler();
268    term_job_server();
269    if (runjob) {
270       free(runjob);
271    }
272    if (configfile != NULL) {
273       free(configfile);
274    }
275    if (debug_level > 5) {
276       print_memory_pool_stats();
277    }
278    free_config_resources();
279    term_ua_server();
280    term_msg();                        /* terminate message handler */
281    stop_watchdog();
282    close_memory_pool();               /* release free memory in pool */
283    sm_dump(false);
284    exit(sig);
285 }
286
287 struct RELOAD_TABLE {
288    int job_count;
289    RES **res_table;
290 };
291
292 static const int max_reloads = 10;
293 static RELOAD_TABLE reload_table[max_reloads];
294
295 static void init_reload(void)
296 {
297    for (int i=0; i < max_reloads; i++) {
298       reload_table[i].job_count = 0;
299       reload_table[i].res_table = NULL;
300    }
301 }
302
303 static void free_saved_resources(int table)
304 {
305    int num = r_last - r_first + 1;
306    RES **res_tab = reload_table[table].res_table;
307    if (!res_tab) {
308       Dmsg1(100, "res_tab for table %d already released.\n", table);
309       return;
310    }
311    Dmsg1(100, "Freeing resources for table %d\n", table);
312    for (int j=0; j<num; j++) {
313       free_resource(res_tab[j], r_first + j);
314    }
315    free(res_tab);
316    reload_table[table].job_count = 0;
317    reload_table[table].res_table = NULL;
318 }
319
320 /*
321  * Called here at the end of every job that was
322  * hooked decrementing the active job_count. When
323  * it goes to zero, no one is using the associated
324  * resource table, so free it.
325  */
326 static void reload_job_end_cb(JCR *jcr, void *ctx)
327 {
328    int reload_id = (int)((long int)ctx);
329    Dmsg3(100, "reload job_end JobId=%d table=%d cnt=%d\n", jcr->JobId,
330       reload_id, reload_table[reload_id].job_count);
331    lock_jcr_chain();
332    LockRes();
333    if (--reload_table[reload_id].job_count <= 0) {
334       free_saved_resources(reload_id);
335    }
336    UnlockRes();
337    unlock_jcr_chain();
338 }
339
340 static int find_free_reload_table_entry()
341 {
342    int table = -1;
343    for (int i=0; i < max_reloads; i++) {
344       if (reload_table[i].res_table == NULL) {
345          table = i;
346          break;
347       }
348    }
349    return table;
350 }
351
352 /*
353  * If we get here, we have received a SIGHUP, which means to
354  *    reread our configuration file.
355  *
356  * The algorithm used is as follows: we count how many jobs are
357  *   running and mark the running jobs to make a callback on
358  *   exiting. The old config is saved with the reload table
359  *   id in a reload table. The new config file is read. Now, as
360  *   each job exits, it calls back to the reload_job_end_cb(), which
361  *   decrements the count of open jobs for the given reload table.
362  *   When the count goes to zero, we release those resources.
363  *   This allows us to have pointers into the resource table (from
364  *   jobs), and once they exit and all the pointers are released, we
365  *   release the old table. Note, if no new jobs are running since the
366  *   last reload, then the old resources will be immediately release.
367  *   A console is considered a job because it may have pointers to
368  *   resources, but a SYSTEM job is not since it *should* not have any
369  *   permanent pointers to jobs.
370  */
371 extern "C"
372 void reload_config(int sig)
373 {
374    static bool already_here = false;
375    sigset_t set;
376    JCR *jcr;
377    int njobs = 0;                     /* number of running jobs */
378    int table, rtable;
379    bool ok;       
380
381    if (already_here) {
382       abort();                        /* Oops, recursion -> die */
383    }
384    already_here = true;
385    sigemptyset(&set);
386    sigaddset(&set, SIGHUP);
387    sigprocmask(SIG_BLOCK, &set, NULL);
388
389 // Jmsg(NULL, M_INFO, 0, "Entering experimental reload config code. Bug reports will not be accepted.\n");
390
391    lock_jcr_chain();
392    LockRes();
393
394    table = find_free_reload_table_entry();
395    if (table < 0) {
396       Jmsg(NULL, M_ERROR, 0, _("Too many open reload requests. Request ignored.\n"));
397       goto bail_out;
398    }
399
400    Dmsg1(100, "Reload_config njobs=%d\n", njobs);
401    reload_table[table].res_table = save_config_resources();
402    Dmsg1(100, "Saved old config in table %d\n", table);
403
404    ok = parse_config(configfile, 0);  /* no exit on error */
405
406    Dmsg0(100, "Reloaded config file\n");
407    if (!ok || !check_resources()) {
408       rtable = find_free_reload_table_entry();    /* save new, bad table */
409       if (rtable < 0) {
410          Jmsg(NULL, M_ERROR, 0, _("Please correct configuration file: %s\n"), configfile);
411          Jmsg(NULL, M_ERROR_TERM, 0, _("Out of reload table entries. Giving up.\n"));
412       } else {
413          Jmsg(NULL, M_ERROR, 0, _("Please correct configuration file: %s\n"), configfile);
414          Jmsg(NULL, M_ERROR, 0, _("Resetting previous configuration.\n"));
415       }
416       reload_table[rtable].res_table = save_config_resources();
417       /* Now restore old resoure values */
418       int num = r_last - r_first + 1;
419       RES **res_tab = reload_table[table].res_table;
420       for (int i=0; i<num; i++) {
421          res_head[i] = res_tab[i];
422       }
423       table = rtable;                 /* release new, bad, saved table below */
424    } else {
425       /*
426        * Hook all active jobs so that they release this table
427        */
428       foreach_jcr(jcr) {
429          if (jcr->JobType != JT_SYSTEM) {
430             reload_table[table].job_count++;
431             job_end_push(jcr, reload_job_end_cb, (void *)((long int)table));
432             njobs++;
433          }
434          free_locked_jcr(jcr);
435       }
436    }
437
438    /* Reset globals */
439    set_working_directory(director->working_directory);
440    FDConnectTimeout = director->FDConnectTimeout;
441    SDConnectTimeout = director->SDConnectTimeout;
442    Dmsg0(0, "Director's configuration file reread.\n");
443
444 // init_device_resources();           /* Update Device resources */
445
446    /* Now release saved resources, if no jobs using the resources */
447    if (njobs == 0) {
448       free_saved_resources(table);
449    }
450
451 bail_out:
452    UnlockRes();
453    unlock_jcr_chain();
454    sigprocmask(SIG_UNBLOCK, &set, NULL);
455    signal(SIGHUP, reload_config);
456    already_here = false;
457 }
458
459 /*
460  * Make a quick check to see that we have all the
461  * resources needed.
462  *
463  *  **** FIXME **** this routine could be a lot more
464  *   intelligent and comprehensive.
465  */
466 static int check_resources()
467 {
468    bool OK = true;
469    JOB *job;
470
471    LockRes();
472
473    job = (JOB *)GetNextRes(R_JOB, NULL);
474    director = (DIRRES *)GetNextRes(R_DIRECTOR, NULL);
475    if (!director) {
476       Jmsg(NULL, M_FATAL, 0, _("No Director resource defined in %s\n"
477 "Without that I don't know who I am :-(\n"), configfile);
478       OK = false;
479    } else {
480       set_working_directory(director->working_directory);
481       if (!director->messages) {       /* If message resource not specified */
482          director->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
483          if (!director->messages) {
484             Jmsg(NULL, M_FATAL, 0, _("No Messages resource defined in %s\n"), configfile);
485             OK = false;
486          }
487       }
488       if (GetNextRes(R_DIRECTOR, (RES *)director) != NULL) {
489          Jmsg(NULL, M_FATAL, 0, _("Only one Director resource permitted in %s\n"),
490             configfile);
491          OK = false;
492       }
493    }
494
495    if (!job) {
496       Jmsg(NULL, M_FATAL, 0, _("No Job records defined in %s\n"), configfile);
497       OK = false;
498    }
499    foreach_res(job, R_JOB) {
500       int i;
501
502       if (job->jobdefs) {
503          /* Handle Storage alists specifically */
504          JOB *jobdefs = job->jobdefs;
505          if (jobdefs->storage && !job->storage) {
506             STORE *st;
507             job->storage = New(alist(10, not_owned_by_alist));
508             foreach_alist(st, jobdefs->storage) {
509                job->storage->append(st);
510             }
511          }
512
513          /* Transfer default items from JobDefs Resource */
514          for (i=0; job_items[i].name; i++) {
515             char **def_svalue, **svalue;  /* string value */
516             int *def_ivalue, *ivalue;     /* integer value */
517             int64_t *def_lvalue, *lvalue; /* 64 bit values */
518             uint32_t offset;
519
520             Dmsg4(400, "Job \"%s\", field \"%s\" bit=%d def=%d\n",
521                 job->hdr.name, job_items[i].name,
522                 bit_is_set(i, job->hdr.item_present),
523                 bit_is_set(i, job->jobdefs->hdr.item_present));
524
525             if (!bit_is_set(i, job->hdr.item_present) &&
526                  bit_is_set(i, job->jobdefs->hdr.item_present)) {
527                Dmsg2(400, "Job \"%s\", field \"%s\": getting default.\n",
528                  job->hdr.name, job_items[i].name);
529                offset = (char *)(job_items[i].value) - (char *)&res_all;
530                /*
531                 * Handle strings and directory strings
532                 */
533                if (job_items[i].handler == store_str ||
534                    job_items[i].handler == store_dir) {
535                   def_svalue = (char **)((char *)(job->jobdefs) + offset);
536                   Dmsg5(400, "Job \"%s\", field \"%s\" def_svalue=%s item %d offset=%u\n",
537                        job->hdr.name, job_items[i].name, *def_svalue, i, offset);
538                   svalue = (char **)((char *)job + offset);
539                   if (*svalue) {
540                      Pmsg1(000, "Hey something is wrong. p=0x%lu\n", *svalue);
541                   }
542                   *svalue = bstrdup(*def_svalue);
543                   set_bit(i, job->hdr.item_present);
544                /*
545                 * Handle resources
546                 */
547                } else if (job_items[i].handler == store_res) {
548                   def_svalue = (char **)((char *)(job->jobdefs) + offset);
549                   Dmsg4(400, "Job \"%s\", field \"%s\" item %d offset=%u\n",
550                        job->hdr.name, job_items[i].name, i, offset);
551                   svalue = (char **)((char *)job + offset);
552                   if (*svalue) {
553                      Pmsg1(000, "Hey something is wrong. p=0x%lu\n", *svalue);
554                   }
555                   *svalue = *def_svalue;
556                   set_bit(i, job->hdr.item_present);
557                /*
558                 * Handle alist resources
559                 */
560                } else if (job_items[i].handler == store_alist_res) {
561                   if (bit_is_set(i, job->jobdefs->hdr.item_present)) {
562                      set_bit(i, job->hdr.item_present);
563                   }
564                /*
565                 * Handle integer fields
566                 *    Note, our store_yesno does not handle bitmaped fields
567                 */
568                } else if (job_items[i].handler == store_yesno   ||
569                           job_items[i].handler == store_pint    ||
570                           job_items[i].handler == store_jobtype ||
571                           job_items[i].handler == store_level   ||
572                           job_items[i].handler == store_pint    ||
573                           job_items[i].handler == store_replace) {
574                   def_ivalue = (int *)((char *)(job->jobdefs) + offset);
575                   Dmsg5(400, "Job \"%s\", field \"%s\" def_ivalue=%d item %d offset=%u\n",
576                        job->hdr.name, job_items[i].name, *def_ivalue, i, offset);
577                   ivalue = (int *)((char *)job + offset);
578                   *ivalue = *def_ivalue;
579                   set_bit(i, job->hdr.item_present);
580                /*
581                 * Handle 64 bit integer fields
582                 */
583                } else if (job_items[i].handler == store_time   ||
584                           job_items[i].handler == store_size   ||
585                           job_items[i].handler == store_int64) {
586                   def_lvalue = (int64_t *)((char *)(job->jobdefs) + offset);
587                   Dmsg5(400, "Job \"%s\", field \"%s\" def_lvalue=%" lld " item %d offset=%u\n",
588                        job->hdr.name, job_items[i].name, *def_lvalue, i, offset);
589                   lvalue = (int64_t *)((char *)job + offset);
590                   *lvalue = *def_lvalue;
591                   set_bit(i, job->hdr.item_present);
592                }
593             }
594          }
595       }
596       /*
597        * Ensure that all required items are present
598        */
599       for (i=0; job_items[i].name; i++) {
600          if (job_items[i].flags & ITEM_REQUIRED) {
601                if (!bit_is_set(i, job->hdr.item_present)) {
602                   Jmsg(NULL, M_FATAL, 0, "\"%s\" directive in Job \"%s\" resource is required, but not found.\n",
603                     job_items[i].name, job->hdr.name);
604                   OK = false;
605                 }
606          }
607          /* If this triggers, take a look at lib/parse_conf.h */
608          if (i >= MAX_RES_ITEMS) {
609             Emsg0(M_ERROR_TERM, 0, "Too many items in Job resource\n");
610          }
611       }
612    } /* End loop over Job res */
613
614    /* Loop over databases */
615    CAT *catalog;
616    foreach_res(catalog, R_CATALOG) {
617       B_DB *db;
618       /*
619        * Make sure we can open catalog, otherwise print a warning
620        * message because the server is probably not running.
621        */
622       db = db_init_database(NULL, catalog->db_name, catalog->db_user,
623                          catalog->db_password, catalog->db_address,
624                          catalog->db_port, catalog->db_socket,
625                          catalog->mult_db_connections);
626       if (!db || !db_open_database(NULL, db)) {
627          Jmsg(NULL, M_FATAL, 0, _("Could not open database \"%s\".\n"),
628               catalog->db_name);
629          if (db) {
630             Jmsg(NULL, M_FATAL, 0, _("%s"), db_strerror(db));
631          }
632          OK = false;
633          continue;
634       }
635
636       /* Loop over all pools, defining/updating them in each database */
637       POOL *pool;
638       foreach_res(pool, R_POOL) {
639          create_pool(NULL, db, pool, POOL_OP_UPDATE);  /* update request */
640       }
641
642       STORE *store;
643       foreach_res(store, R_STORAGE) {
644          STORAGE_DBR sr;
645          MEDIATYPE_DBR mr;
646          if (store->media_type) {
647             bstrncpy(mr.MediaType, store->media_type, sizeof(mr.MediaType));
648             mr.ReadOnly = 0;
649             db_create_mediatype_record(NULL, db, &mr);
650          } else {
651             mr.MediaTypeId = 0;
652          }
653          bstrncpy(sr.Name, store->name(), sizeof(sr.Name));
654          sr.AutoChanger = store->autochanger;
655          db_create_storage_record(NULL, db, &sr);
656          store->StorageId = sr.StorageId;   /* set storage Id */
657          if (!sr.created) {                 /* if not created, update it */
658             db_update_storage_record(NULL, db, &sr);
659          }
660       }
661
662       /* Loop over all counters, defining them in each database */
663       /* Set default value in all counters */
664       COUNTER *counter;
665       foreach_res(counter, R_COUNTER) {
666          /* Write to catalog? */
667          if (!counter->created && counter->Catalog == catalog) {
668             COUNTER_DBR cr;
669             bstrncpy(cr.Counter, counter->hdr.name, sizeof(cr.Counter));
670             cr.MinValue = counter->MinValue;
671             cr.MaxValue = counter->MaxValue;
672             cr.CurrentValue = counter->MinValue;
673             if (counter->WrapCounter) {
674                bstrncpy(cr.WrapCounter, counter->WrapCounter->hdr.name, sizeof(cr.WrapCounter));
675             } else {
676                cr.WrapCounter[0] = 0;  /* empty string */
677             }
678             if (db_create_counter_record(NULL, db, &cr)) {
679                counter->CurrentValue = cr.CurrentValue;
680                counter->created = true;
681                Dmsg2(100, "Create counter %s val=%d\n", counter->hdr.name, counter->CurrentValue);
682             }
683          }
684          if (!counter->created) {
685             counter->CurrentValue = counter->MinValue;  /* default value */
686          }
687       }
688       db_close_database(NULL, db);
689    }
690
691    UnlockRes();
692    if (OK) {
693       close_msg(NULL);                /* close temp message handler */
694       init_msg(NULL, director->messages); /* open daemon message handler */
695    }
696    return OK;
697 }