]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/filed.c
bootstrap improvements -- kes19Jun02
[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, 2001, 2002 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 /* Forward referenced functions */
36 void terminate_filed(int sig);
37
38 /* Exported variables */
39
40
41 #ifdef HAVE_CYGWIN
42 int win32_client = 1;
43 #else
44 int win32_client = 0;
45 #endif
46
47
48 #define CONFIG_FILE "./bacula-fd.conf" /* default config file */
49
50 static char *configfile = NULL;
51 static int foreground = 0;
52 static workq_t dir_workq;             /* queue of work from Director */
53 static CLIENT *me;                    /* my resource */
54
55 static void usage()
56 {
57    fprintf(stderr, _(
58 "\nVersion: " VERSION " (" DATE ")\n\n"
59 "Usage: filed [-f -s] [-c config_file] [-d debug_level] [config_file]\n"  
60 "        -c <file>   use <file> as configuration file\n"
61 "        -dnn        set debug level to nn\n"
62 "        -f          run in foreground (for debugging)\n"
63 "        -s          no signals (for debugging)\n"
64 "        -t          test configuration file and exit\n"
65 "        -?          print this message.\n"
66 "\n"));         
67    exit(1);
68 }
69
70
71 /********************************************************************* 
72  *
73  *  Main Bacula Unix Client Program                        
74  *
75  */
76 #ifdef HAVE_CYGWIN
77 #define main BaculaMain
78 #endif
79 int main (int argc, char *argv[])
80 {
81    int ch;
82    int no_signals = FALSE;
83    int test_config = FALSE;
84    DIRRES *director;
85
86    init_stack_dump();
87    my_name_is(argc, argv, "filed");
88    init_msg(NULL, NULL);
89    daemon_start_time = time(NULL);
90
91    memset(&last_job, 0, sizeof(last_job));
92
93    while ((ch = getopt(argc, argv, "c:d:fst?")) != -1) {
94       switch (ch) {
95          case 'c':                    /* configuration file */
96             if (configfile != NULL) {
97                free(configfile);
98             }
99             configfile = bstrdup(optarg);
100             break;
101
102          case 'd':                    /* debug level */
103             debug_level = atoi(optarg);
104             if (debug_level <= 0) {
105                debug_level = 1; 
106             }
107             break;
108
109          case 'f':                    /* run in foreground */
110             foreground = TRUE;
111             break;
112
113          case 's':
114             no_signals = TRUE;
115             break;
116
117          case 't':
118             test_config = TRUE;
119             break;
120
121          case '?':
122          default:
123             usage();
124
125       }  
126    }
127    argc -= optind;
128    argv += optind;
129
130    if (argc) {
131       if (configfile != NULL)
132          free(configfile);
133       configfile = bstrdup(*argv);
134       argc--; 
135       argv++;
136    }
137    if (argc) {
138       usage();
139    }
140
141    if (!no_signals) {
142       init_signals(terminate_filed);
143    }
144
145    if (configfile == NULL) {
146       configfile = bstrdup(CONFIG_FILE);
147    }
148
149    parse_config(configfile);
150
151    LockRes();
152    director = (DIRRES *)GetNextRes(R_DIRECTOR, NULL);
153    UnlockRes();
154    if (!director) {
155       Emsg1(M_ABORT, 0, _("No Director resource defined in %s\n"),
156          configfile);
157    }
158
159    LockRes();
160    me = (CLIENT *)GetNextRes(R_CLIENT, NULL);
161    UnlockRes();
162    if (!me) {
163       Emsg1(M_ABORT, 0, _("No File daemon resource defined in %s\n\
164 Without that I don't know who I am :-(\n"), configfile);
165    } else {
166       my_name_is(0, NULL, me->hdr.name);
167       if (!me->messages) {
168          LockRes();
169          me->messages = (MSGS *)GetNextRes(R_MSGS, NULL);
170          UnlockRes();
171          if (!me->messages) {
172              Emsg1(M_ABORT, 0, _("No Messages resource defined in %s\n"), configfile);
173          }
174       }
175       close_msg(NULL);                /* close temp message handler */
176       init_msg(NULL, me->messages);   /* open user specified message handler */
177    }
178    working_directory = me->working_directory;
179
180    if (test_config) {
181       terminate_filed(0);
182    }
183
184    if (!foreground) {
185       daemon_start();
186       init_stack_dump();              /* set new pid */
187    }
188
189    create_pid_file(me->pid_directory, "bacula-fd", me->FDport);
190
191 #ifdef BOMB
192    me += 1000000;
193 #endif
194
195    start_watchdog();                  /* start watchdog thread */
196
197    /* Become server, and handle requests */
198    Dmsg1(10, "filed: listening on port %d\n", me->FDport);
199    bnet_thread_server(me->FDport, 10, &dir_workq, handle_client_request);
200
201    exit(0);                           /* should never get here */
202 }
203
204 void terminate_filed(int sig)
205 {
206    stop_watchdog();
207
208    if (configfile != NULL) {
209       free(configfile);
210    }
211    if (debug_level > 5) {
212       print_memory_pool_stats(); 
213    }
214    delete_pid_file(me->pid_directory, "bacula-fd", me->FDport);
215    free_config_resources();
216    term_msg();
217    close_memory_pool();               /* release free memory in pool */
218    sm_dump(False);                    /* dump orphaned buffers */
219    exit(1);
220 }