]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/filed.c
!!! I didn't run the regression tests.!!!
[bacula/bacula] / bacula / src / filed / filed.c
1 /*
2  *  Bacula File Daemon
3  *
4  *    Kern Sibbald, March MM
5  *
6  *   Version $Id$
7  *
8  */
9 /*
10    Copyright (C) 2000-2004 Kern Sibbald and John Walker
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 "filed.h"
31
32 /* Imported Functions */
33 extern void *handle_client_request(void *dir_sock);
34
35 /* Imported Variables */
36 extern time_t watchdog_sleep_time;
37
38 /* Forward referenced functions */
39 void terminate_filed(int sig);
40
41 /* Exported variables */
42 CLIENT *me;                           /* my resource */
43 char OK_msg[]   = "2000 OK\n";
44 char TERM_msg[] = "2999 Terminate\n";
45 bool no_signals = false;
46
47 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
48 const int win32_client = 1;
49 #else
50 const int win32_client = 0;
51 #endif
52
53
54 #define CONFIG_FILE "./bacula-fd.conf" /* default config file */
55
56 static char *configfile = NULL;
57 static bool foreground = false;
58 static bool inetd_request = false;
59 static workq_t dir_workq;             /* queue of work from Director */
60 static pthread_t server_tid;
61
62
63 static void usage()
64 {
65    fprintf(stderr, _(
66 "Copyright (C) 2000-2004 Kern Sibbald and John Walker\n"
67 "\nVersion: " VERSION " (" BDATE ")\n\n"
68 "Usage: bacula-fd [-f -s] [-c config_file] [-d debug_level]\n"  
69 "        -c <file>   use <file> as configuration file\n"
70 "        -dnn        set debug level to nn\n"
71 "        -f          run in foreground (for debugging)\n"
72 "        -g          groupid\n"
73 "        -i          inetd request\n"
74 "        -s          no signals (for debugging)\n"
75 "        -t          test configuration file and exit\n"
76 "        -u          userid\n"
77 "        -v          verbose user messages\n"
78 "        -?          print this message.\n"
79 "\n"));         
80    exit(1);
81 }
82
83
84 /********************************************************************* 
85  *
86  *  Main Bacula Unix Client Program                        
87  *
88  */
89 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
90 #define main BaculaMain
91 #endif
92
93 int main (int argc, char *argv[])
94 {
95    int ch;
96    bool test_config = false;
97    DIRRES *director;
98    char *uid = NULL;
99    char *gid = NULL;
100
101    init_stack_dump();
102    my_name_is(argc, argv, "bacula-fd");
103    textdomain("bacula");
104    init_msg(NULL, NULL);
105    daemon_start_time = time(NULL);
106
107    while ((ch = getopt(argc, argv, "c:d:fg:istu:v?")) != -1) {
108       switch (ch) {
109       case 'c':                    /* configuration file */
110          if (configfile != NULL) {
111             free(configfile);
112          }
113          configfile = bstrdup(optarg);
114          break;
115
116       case 'd':                    /* debug level */
117          debug_level = atoi(optarg);
118          if (debug_level <= 0) {
119             debug_level = 1; 
120          }
121          break;
122
123       case 'f':                    /* run in foreground */
124          foreground = true;
125          break;
126
127       case 'g':                    /* set group */
128          gid = optarg;
129          break;
130
131       case 'i':
132          inetd_request = true;
133          break;
134       case 's':
135          no_signals = true;
136          break;
137
138       case 't':
139          test_config = true;
140          break;
141
142       case 'u':                    /* set userid */
143          uid = optarg;
144          break;
145
146       case 'v':                    /* verbose */
147          verbose++;
148          break;
149
150       case '?':
151       default:
152          usage();
153
154       }  
155    }
156    argc -= optind;
157    argv += optind;
158
159    if (argc) {
160       if (configfile != NULL)
161          free(configfile);
162       configfile = bstrdup(*argv);
163       argc--; 
164       argv++;
165    }
166    if (argc) {
167       usage();
168    }
169
170    if (!no_signals) {
171       init_signals(terminate_filed);
172    } else {
173       /* This reduces the number of signals facilitating debugging */
174       watchdog_sleep_time = 120;      /* long timeout for debugging */
175    }
176
177    if (configfile == NULL) {
178       configfile = bstrdup(CONFIG_FILE);
179    }
180
181    parse_config(configfile);
182
183    LockRes();
184    director = (DIRRES *)GetNextRes(R_DIRECTOR, NULL);
185    UnlockRes();
186    if (!director) {
187       Emsg1(M_ABORT, 0, _("No Director resource defined in %s\n"),
188          configfile);
189    }
190
191    LockRes();
192    me = (CLIENT *)GetNextRes(R_CLIENT, NULL);
193    UnlockRes();
194    if (!me) {
195       Emsg1(M_ABORT, 0, _("No File daemon resource defined in %s\n\
196 Without that I don't know who I am :-(\n"), configfile);
197    } else {
198       my_name_is(0, NULL, me->hdr.name);
199       if (!me->messages) {
200          LockRes();
201          me->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
202          UnlockRes();
203          if (!me->messages) {
204              Emsg1(M_ABORT, 0, _("No Messages resource defined in %s\n"), configfile);
205          }
206       }
207       close_msg(NULL);                /* close temp message handler */
208       init_msg(NULL, me->messages);   /* open user specified message handler */
209    }
210
211    set_working_directory(me->working_directory);
212
213    if (test_config) {
214       terminate_filed(0);
215    }
216
217    if (!foreground &&!inetd_request) {
218       daemon_start();
219       init_stack_dump();              /* set new pid */
220    }
221
222    /* Maximum 1 daemon at a time */
223    create_pid_file(me->pid_directory, "bacula-fd", get_first_port_host_order(me->FDaddrs));
224    read_state_file(me->working_directory, "bacula-fd", get_first_port_host_order(me->FDaddrs));
225
226    drop(uid, gid);
227
228 #ifdef BOMB
229    me += 1000000;
230 #endif
231
232    set_thread_concurrency(10);
233
234    if (!no_signals) {
235       start_watchdog();               /* start watchdog thread */
236       init_jcr_subsystem();           /* start JCR watchdogs etc. */
237    }
238    server_tid = pthread_self();
239
240    if (inetd_request) {
241       /* Socket is on fd 0 */          
242       struct sockaddr client_addr;
243       int port = -1;
244       socklen_t client_addr_len = sizeof(client_addr);
245       if (getsockname(0, &client_addr, &client_addr_len) == 0) {
246                 /* MA BUG 6 remove ifdefs */
247                 port = sockaddr_get_port_net_order(&client_addr);
248       }
249       BSOCK *bs = init_bsock(NULL, 0, "client", "unknown client", port, &client_addr);
250       handle_client_request((void *)bs);
251    } else {
252       /* Become server, and handle requests */
253       IPADDR *p;
254       foreach_dlist(p, me->FDaddrs) {
255          Dmsg1(10, "filed: listening on port %d\n", p->get_port_host_order());
256       }
257       bnet_thread_server(me->FDaddrs, me->MaxConcurrentJobs, &dir_workq, handle_client_request);
258    }
259
260    terminate_filed(0);
261    exit(0);                           /* should never get here */
262 }
263
264 void terminate_filed(int sig)
265 {
266    bnet_stop_thread_server(server_tid);
267    write_state_file(me->working_directory, "bacula-fd", get_first_port_host_order(me->FDaddrs));
268    delete_pid_file(me->pid_directory, "bacula-fd", get_first_port_host_order(me->FDaddrs));
269    if (configfile != NULL) {
270       free(configfile);
271    }
272    if (debug_level > 5) {
273       print_memory_pool_stats(); 
274    }
275    free_config_resources();
276    term_msg();
277    stop_watchdog();
278    close_memory_pool();               /* release free memory in pool */
279    sm_dump(false);                    /* dump orphaned buffers */
280    exit(sig);
281 }