]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/stored.c
First cut 1.23 -- kes07Jul02
[bacula/bacula] / bacula / src / stored / stored.c
1 /*
2  * Second generation Storage daemon.
3  *
4  * It accepts a number of simple commands from the File daemon
5  * and acts on them. When a request to append data is made,
6  * it opens a data channel and accepts data from the
7  * File daemon. 
8  *
9  *   Version $Id$
10  * 
11  */
12 /*
13    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
14
15    This program is free software; you can redistribute it and/or
16    modify it under the terms of the GNU General Public License as
17    published by the Free Software Foundation; either version 2 of
18    the License, or (at your option) any later version.
19
20    This program is distributed in the hope that it will be useful,
21    but WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23    General Public License for more details.
24
25    You should have received a copy of the GNU General Public
26    License along with this program; if not, write to the Free
27    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28    MA 02111-1307, USA.
29
30  */
31
32 #include "bacula.h"
33 #include "stored.h"
34
35 /* Imported functions */
36
37
38 /* Forward referenced functions */
39 void terminate_stored(int sig);
40 static void check_config();
41 static void *director_thread(void *arg);
42
43 #define CONFIG_FILE "bacula-sd.conf"  /* Default config file */
44
45
46 /* Global variables exported */
47
48
49 struct s_shm *shm;                    /* memory shared with children */
50 BSHM bshm;                            /* shared memory control packet */
51
52
53 /* This is our own global resource */
54 STORES *me;
55
56 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
57 static uint32_t VolSessionId = 0;
58 uint32_t VolSessionTime;
59
60 static char *configfile;
61 static int foreground = 0;
62
63 static workq_t dird_workq;            /* queue for processing connections */
64 static workq_t filed_workq;           /* queue for processing connections */
65
66
67 static void usage()
68 {
69    fprintf(stderr, _(
70 "\nVersion: " VERSION " (" DATE ")\n\n"
71 "Usage: stored [-s -f ] [-c config_file] [-d debug_level]  [config_file]\n"
72 "        -c <file>   use <file> as configuration file\n"
73 "        -dnn        set debug level to nn\n"
74 "        -f          run in foreground (for debugging)\n"
75 "        -s          no signals (for debugging)\n"
76 "        -t          test - read config and exit\n"
77 "        -?          print this message.\n"
78 "\n"));
79    exit(1);
80 }
81
82 /********************************************************************* 
83  *
84  *  Main Bacula Unix Storage Daemon
85  *
86  */
87 int main (int argc, char *argv[])
88 {
89    int ch, i;
90    int no_signals = FALSE;
91    int test_config = FALSE;
92    DEVRES *device;
93    pthread_t dirid;
94    int status;
95
96    init_stack_dump();
97    my_name_is(argc, argv, "stored");
98    init_msg(NULL, NULL);
99    daemon_start_time = time(NULL);
100    memset(&last_job, 0, sizeof(last_job));
101
102    /* Sanity checks */
103    if (TAPE_BSIZE % DEV_BSIZE != 0 || TAPE_BSIZE / DEV_BSIZE == 0) {
104       Emsg2(M_ABORT, 0, "Tape block size (%d) not multiple of system size (%d)\n",
105          TAPE_BSIZE, DEV_BSIZE);
106    }
107    if (TAPE_BSIZE != (1 << (ffs(TAPE_BSIZE)-1))) {
108       Emsg1(M_ABORT, 0, "Tape block size (%d) is not a power of 2\n", TAPE_BSIZE);
109    }
110
111    while ((ch = getopt(argc, argv, "c:d:fst?")) != -1) {
112       switch (ch) {
113          case 'c':                    /* configuration file */
114             if (configfile != NULL) {
115                free(configfile);
116             }
117             configfile = bstrdup(optarg);
118             break;
119
120          case 'd':                    /* debug level */
121             debug_level = atoi(optarg);
122             if (debug_level <= 0) {
123                debug_level = 1; 
124             }
125             break;
126
127          case 'f':                    /* run in foreground */
128             foreground = TRUE;
129             break;
130
131          case 's':                    /* no signals */
132             no_signals = TRUE;
133             break;
134
135          case 't':
136             test_config = TRUE;
137             break;
138
139          case '?':
140          default:
141             usage();
142
143       }  
144    }
145    argc -= optind;
146    argv += optind;
147
148    if (argc) {
149       if (configfile != NULL) {
150          free(configfile);
151       }
152       configfile = bstrdup(*argv);
153       argc--; 
154       argv++;
155    }
156    if (argc)
157       usage();
158
159    if (!no_signals) {
160       init_signals(terminate_stored);
161    }
162
163
164    if (configfile == NULL) {
165       configfile = bstrdup(CONFIG_FILE);
166    }
167
168    parse_config(configfile);
169    check_config();
170
171    bshm.size = 0;
172    if (test_config) {
173       terminate_stored(0);
174    }
175
176    if (!foreground) {
177       daemon_start();                 /* become daemon */
178       init_stack_dump();              /* pick up new pid */
179    }
180
181    create_pid_file(me->pid_directory, "bacula-sd", me->SDport);
182
183    /*  ****FIXME**** clean this up */
184    /* Create and attach to shared memory. This is a
185     * hold over from the days of child processes. 
186     * Note, in reality all memory is shared. This
187     * is just a global buffer for the device packets.
188     */
189    shm = (s_shm *) malloc(sizeof(struct s_shm));
190    /* Zero shared memory */
191    memset(shm, 0, sizeof(struct s_shm));
192
193    /* Ensure that Volume Session Time and Id are both
194     * set and are both non-zero.
195     */
196    VolSessionTime = (long)daemon_start_time;
197    if (VolSessionTime == 0) { /* paranoid */
198       Emsg0(M_ABORT, 0, _("Volume Session Time is ZERO!\n"));
199    }
200
201    LockRes();
202    for (device=NULL,i=0;  (device=(DEVRES *)GetNextRes(R_DEVICE, (RES *)device)); i++) {
203       if (i >= MAX_DEVICES) {
204          UnlockRes();
205          Emsg1(M_ABORT, 0, _("Too many Device Resources. Max=%d\n"), MAX_DEVICES);
206       }
207       Dmsg1(90, "calling init_dev %s\n", device->device_name);
208       device->dev = init_dev(&shm->dev[i], device->device_name);
209       /* Copy some attributes from the Device Resource to the DEV structure */
210       if (device->dev) {
211          device->dev->capabilities = device->cap_bits;
212          device->dev->min_block_size = device->min_block_size;
213          device->dev->max_block_size = device->max_block_size;
214          device->dev->max_volume_jobs = device->max_volume_jobs;
215          device->dev->max_volume_files = device->max_volume_files;
216          device->dev->max_volume_size = device->max_volume_size;
217          device->dev->max_file_size = device->max_file_size;
218          device->dev->volume_capacity = device->volume_capacity;
219          device->dev->max_rewind_wait = device->max_rewind_wait;
220          device->dev->device = device;
221       }
222       Dmsg1(10, "Init done %s\n", device->device_name);
223       if (!device->dev) {
224          Emsg1(M_ERROR, 0, _("Could not initialize %s\n"), device->device_name);
225       }
226       if (device->cap_bits & CAP_ALWAYSOPEN) {
227          Dmsg1(20, "calling open_device %s\n", device->device_name);
228          if (!open_device(device->dev)) {
229             Emsg1(M_ERROR, 0, _("Could not open device %s\n"), device->device_name);
230          }
231       }
232       if (device->cap_bits & CAP_AUTOMOUNT && device->dev && 
233           device->dev->state & ST_OPENED) {
234          DEV_BLOCK *block;
235          JCR *jcr;
236          block = new_block(device->dev);
237          jcr = new_jcr(sizeof(JCR), stored_free_jcr);
238          switch (read_dev_volume_label(jcr, device->dev, block)) {
239             case VOL_OK:
240                break;
241             default:
242                Emsg1(M_WARNING, 0, _("Could not mount device %s\n"), device->device_name);
243                break;
244          }
245          free_jcr(jcr);
246          free_block(block);
247       }
248    } 
249    UnlockRes();
250    device = NULL;
251
252    set_thread_concurrency(me->max_concurrent_jobs * 2 +
253       4 /* watch dog + servers + misc */);
254
255    start_watchdog();                  /* start watchdog thread */
256
257    /*
258     * Here we support either listening on one port or on two ports
259     */
260    if (me->SDDport == 0 || me->SDDport == me->SDport) {
261       /* Single server used for Director and File daemon */
262       bnet_thread_server(me->SDport, me->max_concurrent_jobs * 2,
263          &dird_workq, connection_request);
264    } else {
265       /* Start the Director server */
266       if ((status=pthread_create(&dirid, NULL, director_thread,         
267            (void *)me->SDport)) != 0) {
268          Emsg1(M_ABORT, 0, _("Cannot create Director thread: %s\n"), strerror(status));
269       }
270       /* Start File daemon server */
271       bnet_thread_server(me->SDDport, 10, &filed_workq, connection_from_filed);
272       /* never returns */
273    }
274
275    exit(1);                           /* to keep compiler quiet */
276 }
277
278 static void *director_thread(void *arg)
279 {
280    int dir_port = (int)arg;
281    pthread_detach(pthread_self());
282    bnet_thread_server(dir_port, 10, &dird_workq, connection_request);
283    return NULL;
284 }
285
286 /* Return a new Session Id */
287 uint32_t newVolSessionId()
288 {
289    uint32_t Id;
290
291    P(mutex);
292    VolSessionId++;
293    Id = VolSessionId;
294    V(mutex);
295    return Id;
296 }
297
298 /* Check Configuration file for necessary info */
299 static void check_config()
300 {
301    struct stat stat_buf; 
302
303    LockRes();
304    me = (STORES *)GetNextRes(R_STORAGE, NULL);
305    if (!me) {
306       UnlockRes();
307       Emsg1(M_ABORT, 0, _("No Storage resource defined in %s. Cannot continue.\n"),
308          configfile);
309    }
310
311    my_name_is(0, (char **)NULL, me->hdr.name);     /* Set our real name */
312
313    if (GetNextRes(R_STORAGE, (RES *)me) != NULL) {
314       UnlockRes();
315       Emsg1(M_ABORT, 0, _("Only one Storage resource permitted in %s\n"), 
316          configfile);
317    }
318    if (GetNextRes(R_DIRECTOR, NULL) == NULL) {
319       UnlockRes();
320       Emsg1(M_ABORT, 0, _("No Director resource defined in %s. Cannot continue.\n"),
321          configfile);
322    }
323    if (GetNextRes(R_DEVICE, NULL) == NULL){
324       UnlockRes();
325       Emsg1(M_ABORT, 0, _("No Device resource defined in %s. Cannot continue.\n"),
326            configfile);
327    }
328    if (!me->messages) {
329       me->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
330       if (!me->messages) {
331          Emsg1(M_ABORT, 0, _("No Messages resource defined in %s. Cannot continue.\n"),
332             configfile);
333       }
334    }
335    close_msg(NULL);                   /* close temp message handler */
336    init_msg(NULL, me->messages);      /* open daemon message handler */
337
338    UnlockRes();
339
340    if (!me->working_directory) {
341       Emsg1(M_ABORT, 0, _("No Working Directory defined in %s. Cannot continue.\n"),
342          configfile);
343    }
344    if (stat(me->working_directory, &stat_buf) != 0) {
345       Emsg1(M_ABORT, 0, _("Working Directory: %s not found. Cannot continue.\n"),
346          me->working_directory);
347    }
348    if (!S_ISDIR(stat_buf.st_mode)) {
349       Emsg1(M_ABORT, 0, _("Working Directory: %s is not a directory. Cannot continue.\n"),
350          me->working_directory);
351    }
352    working_directory = me->working_directory;
353 }
354
355 /* Clean up and then exit */
356 void terminate_stored(int sig)
357 {
358    static int in_here = FALSE;
359    DEVRES *device;
360
361    if (in_here) {                     /* prevent loops */
362       exit(1);
363    }
364    in_here = TRUE;
365
366    delete_pid_file(me->pid_directory, "bacula-sd", me->SDport);
367    stop_watchdog();
368
369    Dmsg0(200, "In terminate_stored()\n");
370
371    LockRes();
372    for (device=NULL; (device=(DEVRES *)GetNextRes(R_DEVICE, (RES *)device)); ) {
373       if (device->dev) {
374          term_dev(device->dev);
375       }
376    } 
377    UnlockRes();
378
379    if (configfile)
380    free(configfile);
381    free_config_resources();
382
383    if (debug_level > 10) {
384       print_memory_pool_stats();
385    }
386    term_msg();
387    close_memory_pool();
388
389    if (shm) {
390       free(shm);
391    }
392
393    sm_dump(False);                    /* dump orphaned buffers */
394    exit(1);
395 }