]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/stored.c
Fix DATE problem and minor compile stuff
[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-2003 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 *device_allocation(void *arg);
42
43 #define CONFIG_FILE "bacula-sd.conf"  /* Default config file */
44
45
46 /* Global variables exported */
47
48
49 /* This is our own global resource */
50 STORES *me;
51
52 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
53 static uint32_t VolSessionId = 0;
54 uint32_t VolSessionTime;
55
56 char *configfile;
57 static int foreground = 0;
58
59 static workq_t dird_workq;            /* queue for processing connections */
60
61
62 static void usage()
63 {
64    fprintf(stderr, _(
65 "\nVersion: " VERSION " (" BDATE ")\n\n"
66 "Usage: stored [-s -f ] [-c config_file] [-d debug_level]  [config_file]\n"
67 "        -c <file>   use <file> as configuration file\n"
68 "        -dnn        set debug level to nn\n"
69 "        -f          run in foreground (for debugging)\n"
70 "        -s          no signals (for debugging)\n"
71 "        -t          test - read config and exit\n"
72 "        -?          print this message.\n"
73 "\n"));
74    exit(1);
75 }
76
77 /********************************************************************* 
78  *
79  *  Main Bacula Unix Storage Daemon
80  *
81  */
82 int main (int argc, char *argv[])
83 {
84    int ch;   
85    int no_signals = FALSE;
86    int test_config = FALSE;
87    pthread_t thid;
88
89    init_stack_dump();
90    my_name_is(argc, argv, "stored");
91    init_msg(NULL, NULL);
92    daemon_start_time = time(NULL);
93    memset(&last_job, 0, sizeof(last_job));
94
95    /* Sanity checks */
96    if (TAPE_BSIZE % DEV_BSIZE != 0 || TAPE_BSIZE / DEV_BSIZE == 0) {
97       Emsg2(M_ABORT, 0, "Tape block size (%d) not multiple of system size (%d)\n",
98          TAPE_BSIZE, DEV_BSIZE);
99    }
100    if (TAPE_BSIZE != (1 << (ffs(TAPE_BSIZE)-1))) {
101       Emsg1(M_ABORT, 0, "Tape block size (%d) is not a power of 2\n", TAPE_BSIZE);
102    }
103
104    while ((ch = getopt(argc, argv, "c:d:fst?")) != -1) {
105       switch (ch) {
106          case 'c':                    /* configuration file */
107             if (configfile != NULL) {
108                free(configfile);
109             }
110             configfile = bstrdup(optarg);
111             break;
112
113          case 'd':                    /* debug level */
114             debug_level = atoi(optarg);
115             if (debug_level <= 0) {
116                debug_level = 1; 
117             }
118             break;
119
120          case 'f':                    /* run in foreground */
121             foreground = TRUE;
122             break;
123
124          case 's':                    /* no signals */
125             no_signals = TRUE;
126             break;
127
128          case 't':
129             test_config = TRUE;
130             break;
131
132          case '?':
133          default:
134             usage();
135
136       }  
137    }
138    argc -= optind;
139    argv += optind;
140
141    if (argc) {
142       if (configfile != NULL) {
143          free(configfile);
144       }
145       configfile = bstrdup(*argv);
146       argc--; 
147       argv++;
148    }
149    if (argc)
150       usage();
151
152    if (!no_signals) {
153       init_signals(terminate_stored);
154    }
155
156
157    if (configfile == NULL) {
158       configfile = bstrdup(CONFIG_FILE);
159    }
160
161    parse_config(configfile);
162    check_config();
163
164    if (test_config) {
165       terminate_stored(0);
166    }
167
168    if (!foreground) {
169       daemon_start();                 /* become daemon */
170       init_stack_dump();              /* pick up new pid */
171    }
172
173    create_pid_file(me->pid_directory, "bacula-sd", me->SDport);
174
175    /* Ensure that Volume Session Time and Id are both
176     * set and are both non-zero.
177     */
178    VolSessionTime = (long)daemon_start_time;
179    if (VolSessionTime == 0) { /* paranoid */
180       Emsg0(M_ABORT, 0, _("Volume Session Time is ZERO!\n"));
181    }
182
183    /* Make sure on Solaris we can run concurrent, watch dog + servers + misc */
184    set_thread_concurrency(me->max_concurrent_jobs * 2 + 4);
185
186     /*
187      * Start the device allocation thread
188      */
189    if (pthread_create(&thid, NULL, device_allocation, NULL) != 0) {
190       Emsg1(M_ABORT, 0, _("Unable to create thread. ERR=%s\n"), strerror(errno));
191    }
192
193    start_watchdog();                  /* start watchdog thread */
194
195    /* 
196     * Sleep a bit to give device thread a chance to lock the resource
197     * chain before we start the server.
198     */
199    sleep(1); 
200                                  
201    /* Single server used for Director and File daemon */
202    bnet_thread_server(me->SDaddr, me->SDport, me->max_concurrent_jobs * 2 + 1,
203                       &dird_workq, connection_request);
204    exit(1);                           /* to keep compiler quiet */
205 }
206
207 /* Return a new Session Id */
208 uint32_t newVolSessionId()
209 {
210    uint32_t Id;
211
212    P(mutex);
213    VolSessionId++;
214    Id = VolSessionId;
215    V(mutex);
216    return Id;
217 }
218
219 /* Check Configuration file for necessary info */
220 static void check_config()
221 {
222    struct stat stat_buf; 
223
224    LockRes();
225    me = (STORES *)GetNextRes(R_STORAGE, NULL);
226    if (!me) {
227       UnlockRes();
228       Emsg1(M_ERROR_TERM, 0, _("No Storage resource defined in %s. Cannot continue.\n"),
229          configfile);
230    }
231
232    my_name_is(0, (char **)NULL, me->hdr.name);     /* Set our real name */
233
234    if (GetNextRes(R_STORAGE, (RES *)me) != NULL) {
235       UnlockRes();
236       Emsg1(M_ERROR_TERM, 0, _("Only one Storage resource permitted in %s\n"), 
237          configfile);
238    }
239    if (GetNextRes(R_DIRECTOR, NULL) == NULL) {
240       UnlockRes();
241       Emsg1(M_ERROR_TERM, 0, _("No Director resource defined in %s. Cannot continue.\n"),
242          configfile);
243    }
244    if (GetNextRes(R_DEVICE, NULL) == NULL){
245       UnlockRes();
246       Emsg1(M_ERROR_TERM, 0, _("No Device resource defined in %s. Cannot continue.\n"),
247            configfile);
248    }
249    if (!me->messages) {
250       me->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
251       if (!me->messages) {
252          Emsg1(M_ERROR_TERM, 0, _("No Messages resource defined in %s. Cannot continue.\n"),
253             configfile);
254       }
255    }
256    close_msg(NULL);                   /* close temp message handler */
257    init_msg(NULL, me->messages);      /* open daemon message handler */
258
259    UnlockRes();
260
261    if (!me->working_directory) {
262       Emsg1(M_ERROR_TERM, 0, _("No Working Directory defined in %s. Cannot continue.\n"),
263          configfile);
264    }
265    if (stat(me->working_directory, &stat_buf) != 0) {
266       Emsg1(M_ERROR_TERM, 0, _("Working Directory: %s not found. Cannot continue.\n"),
267          me->working_directory);
268    }
269    if (!S_ISDIR(stat_buf.st_mode)) {
270       Emsg1(M_ERROR_TERM, 0, _("Working Directory: %s is not a directory. Cannot continue.\n"),
271          me->working_directory);
272    }
273    working_directory = me->working_directory;
274 }
275
276 /*
277  * We are started as a separate thread.  The
278  *  resources are alread locked.
279  */
280 static void *device_allocation(void *arg)
281 {
282    int i;
283    DEVRES *device;
284
285    LockRes();
286    pthread_detach(pthread_self());
287
288    for (device=NULL,i=0;  (device=(DEVRES *)GetNextRes(R_DEVICE, (RES *)device)); i++) {
289       Dmsg1(90, "calling init_dev %s\n", device->device_name);
290       device->dev = init_dev(NULL, device);
291       Dmsg1(10, "SD init done %s\n", device->device_name);
292       if (!device->dev) {
293          Emsg1(M_ERROR, 0, _("Could not initialize %s\n"), device->device_name);
294       }
295       if (device->cap_bits & CAP_ALWAYSOPEN) {
296          Dmsg1(20, "calling open_device %s\n", device->device_name);
297          if (!open_device(device->dev)) {
298             Emsg1(M_ERROR, 0, _("Could not open device %s\n"), device->device_name);
299          }
300       }
301       if (device->cap_bits & CAP_AUTOMOUNT && device->dev && 
302           device->dev->state & ST_OPENED) {
303          DEV_BLOCK *block;
304          JCR *jcr;
305          block = new_block(device->dev);
306          jcr = new_jcr(sizeof(JCR), stored_free_jcr);
307          switch (read_dev_volume_label(jcr, device->dev, block)) {
308             case VOL_OK:
309                break;
310             default:
311                Emsg1(M_WARNING, 0, _("Could not mount device %s\n"), device->device_name);
312                break;
313          }
314          free_jcr(jcr);
315          free_block(block);
316       }
317    } 
318    UnlockRes();
319    return NULL;
320 }
321
322
323 /* Clean up and then exit */
324 void terminate_stored(int sig)
325 {
326    static int in_here = FALSE;
327    DEVRES *device;
328
329    if (in_here) {                     /* prevent loops */
330       exit(1);
331    }
332    in_here = TRUE;
333
334    delete_pid_file(me->pid_directory, "bacula-sd", me->SDport);
335    stop_watchdog();
336
337    Dmsg0(200, "In terminate_stored()\n");
338
339    LockRes();
340    for (device=NULL; (device=(DEVRES *)GetNextRes(R_DEVICE, (RES *)device)); ) {
341       if (device->dev) {
342          term_dev(device->dev);
343       }
344    } 
345    UnlockRes();
346
347    if (configfile)
348    free(configfile);
349    free_config_resources();
350
351    if (debug_level > 10) {
352       print_memory_pool_stats();
353    }
354    term_msg();
355    close_memory_pool();
356
357    sm_dump(False);                    /* dump orphaned buffers */
358    exit(1);
359 }