blob: acfde80aea790972762b960ec99403e713320c61 [file] [log] [blame]
pauledd7c242003-06-04 13:59:38 +00001/* zebra daemon main routine.
paul718e3742002-12-13 20:15:29 +00002 * Copyright (C) 1997, 98 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
gdt5e4fa162004-03-16 14:38:36 +000024#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000025#include "getopt.h"
26#include "command.h"
27#include "thread.h"
28#include "filter.h"
29#include "memory.h"
30#include "prefix.h"
31#include "log.h"
pauledd7c242003-06-04 13:59:38 +000032#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000033#include "sigevent.h"
paul718e3742002-12-13 20:15:29 +000034
35#include "zebra/rib.h"
36#include "zebra/zserv.h"
37#include "zebra/debug.h"
hasso18a6dce2004-10-03 18:18:34 +000038#include "zebra/router-id.h"
hassoca776982004-06-12 14:33:05 +000039#include "zebra/irdp.h"
paula1ac18c2005-06-28 17:17:12 +000040#include "zebra/rtadv.h"
paul718e3742002-12-13 20:15:29 +000041
paulb21b19c2003-06-15 01:28:29 +000042/* Zebra instance */
43struct zebra_t zebrad =
44{
45 .rtm_table_default = 0,
46};
paul718e3742002-12-13 20:15:29 +000047
48/* process id. */
49pid_t old_pid;
50pid_t pid;
51
gdt87efd642004-06-30 17:36:11 +000052/* Pacify zclient.o in libzebra, which expects this variable. */
53struct thread_master *master;
54
paul718e3742002-12-13 20:15:29 +000055/* Route retain mode flag. */
56int retain_mode = 0;
57
58/* Don't delete kernel route. */
59int keep_kernel_mode = 0;
60
hassoc34b6b52004-08-31 13:41:49 +000061#ifdef HAVE_NETLINK
62/* Receive buffer size for netlink socket */
63u_int32_t nl_rcvbufsize = 0;
64#endif /* HAVE_NETLINK */
65
paul718e3742002-12-13 20:15:29 +000066/* Command line options. */
67struct option longopts[] =
68{
69 { "batch", no_argument, NULL, 'b'},
70 { "daemon", no_argument, NULL, 'd'},
71 { "keep_kernel", no_argument, NULL, 'k'},
72 { "log_mode", no_argument, NULL, 'l'},
73 { "config_file", required_argument, NULL, 'f'},
74 { "pid_file", required_argument, NULL, 'i'},
75 { "help", no_argument, NULL, 'h'},
76 { "vty_addr", required_argument, NULL, 'A'},
77 { "vty_port", required_argument, NULL, 'P'},
78 { "retain", no_argument, NULL, 'r'},
hassoc34b6b52004-08-31 13:41:49 +000079#ifdef HAVE_NETLINK
hasso583d8002005-01-16 23:34:02 +000080 { "nl-bufsize", required_argument, NULL, 's'},
hassoc34b6b52004-08-31 13:41:49 +000081#endif /* HAVE_NETLINK */
pauledd7c242003-06-04 13:59:38 +000082 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000083 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000084 { "version", no_argument, NULL, 'v'},
85 { 0 }
86};
87
pauledd7c242003-06-04 13:59:38 +000088zebra_capabilities_t _caps_p [] =
89{
90 ZCAP_ADMIN,
91 ZCAP_SYS_ADMIN,
hasso41908812003-06-05 11:33:10 +000092 ZCAP_RAW,
pauledd7c242003-06-04 13:59:38 +000093};
94
95/* zebra privileges to run with */
96struct zebra_privs_t zserv_privs =
97{
pauld81fadf2003-08-14 05:32:12 +000098#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
99 .user = QUAGGA_USER,
100 .group = QUAGGA_GROUP,
pauledd7c242003-06-04 13:59:38 +0000101#endif
102#ifdef VTY_GROUP
103 .vty_group = VTY_GROUP,
104#endif
105 .caps_p = _caps_p,
106 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
107 .cap_num_i = 0
108};
109
paul718e3742002-12-13 20:15:29 +0000110/* Default configuration file path. */
paul718e3742002-12-13 20:15:29 +0000111char config_default[] = SYSCONFDIR DEFAULT_CONFIG_FILE;
112
113/* Process ID saved for use by init system */
hassofce954f2004-10-07 20:29:24 +0000114const char *pid_file = PATH_ZEBRA_PID;
paul718e3742002-12-13 20:15:29 +0000115
116/* Help information display. */
117static void
118usage (char *progname, int status)
119{
120 if (status != 0)
121 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
122 else
123 {
hassoc34b6b52004-08-31 13:41:49 +0000124 printf ("Usage : %s [OPTION...]\n\n"\
125 "Daemon which manages kernel routing table management and "\
126 "redistribution between different routing protocols.\n\n"\
127 "-b, --batch Runs in batch mode\n"\
128 "-d, --daemon Runs in daemon mode\n"\
129 "-f, --config_file Set configuration file name\n"\
130 "-i, --pid_file Set process identifier file name\n"\
131 "-k, --keep_kernel Don't delete old routes which installed by "\
132 "zebra.\n"\
133 "-l, --log_mode Set verbose log mode flag\n"\
134 "-A, --vty_addr Set vty's bind address\n"\
135 "-P, --vty_port Set vty's port number\n"\
136 "-r, --retain When program terminates, retain added route "\
137 "by zebra.\n"\
hassoc0652302004-11-25 19:33:48 +0000138 "-u, --user User to run as\n"\
139 "-g, --group Group to run as\n", progname);
hassoc34b6b52004-08-31 13:41:49 +0000140#ifdef HAVE_NETLINK
141 printf ("-s, --nl-bufsize Set netlink receive buffer size\n");
142#endif /* HAVE_NETLINK */
143 printf ("-v, --version Print program version\n"\
144 "-h, --help Display this help and exit\n"\
145 "\n"\
146 "Report bugs to %s\n", ZEBRA_BUG_ADDRESS);
paul718e3742002-12-13 20:15:29 +0000147 }
148
149 exit (status);
150}
151
152/* SIGHUP handler. */
paula1ac18c2005-06-28 17:17:12 +0000153static void
paul2d75d052004-01-19 21:31:15 +0000154sighup (void)
paul718e3742002-12-13 20:15:29 +0000155{
156 zlog_info ("SIGHUP received");
157
158 /* Reload of config file. */
159 ;
160}
161
162/* SIGINT handler. */
paula1ac18c2005-06-28 17:17:12 +0000163static void
paul2d75d052004-01-19 21:31:15 +0000164sigint (void)
paul718e3742002-12-13 20:15:29 +0000165{
166 /* Decrared in rib.c */
167 void rib_close ();
168
ajs887c44a2004-12-03 16:36:46 +0000169 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000170
171 if (!retain_mode)
172 rib_close ();
hassoca776982004-06-12 14:33:05 +0000173#ifdef HAVE_IRDP
174 irdp_finish();
175#endif
paul718e3742002-12-13 20:15:29 +0000176
177 exit (0);
178}
179
180/* SIGUSR1 handler. */
paula1ac18c2005-06-28 17:17:12 +0000181static void
paul2d75d052004-01-19 21:31:15 +0000182sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000183{
184 zlog_rotate (NULL);
185}
186
paul2d75d052004-01-19 21:31:15 +0000187struct quagga_signal_t zebra_signals[] =
paul718e3742002-12-13 20:15:29 +0000188{
paul2d75d052004-01-19 21:31:15 +0000189 {
190 .signal = SIGHUP,
191 .handler = &sighup,
192 },
193 {
194 .signal = SIGUSR1,
195 .handler = &sigusr1,
196 },
197 {
198 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000199 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000200 },
hassof571dab2004-03-22 08:55:25 +0000201 {
202 .signal = SIGTERM,
203 .handler = &sigint,
204 },
paul2d75d052004-01-19 21:31:15 +0000205};
paul718e3742002-12-13 20:15:29 +0000206
207/* Main startup routine. */
208int
209main (int argc, char **argv)
210{
211 char *p;
212 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000213 int vty_port = ZEBRA_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000214 int batch_mode = 0;
215 int daemon_mode = 0;
216 char *config_file = NULL;
217 char *progname;
218 struct thread thread;
paul718e3742002-12-13 20:15:29 +0000219
220 /* Set umask before anything for security */
221 umask (0027);
222
223 /* preserve my name */
224 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
225
ajs274a4a42004-12-07 15:39:31 +0000226 zlog_default = openzlog (progname, ZLOG_ZEBRA,
paul718e3742002-12-13 20:15:29 +0000227 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
228
229 while (1)
230 {
231 int opt;
232
hassoc34b6b52004-08-31 13:41:49 +0000233#ifdef HAVE_NETLINK
hassoc0652302004-11-25 19:33:48 +0000234 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:g:vs:", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000235#else
hassoc0652302004-11-25 19:33:48 +0000236 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:g:v", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000237#endif /* HAVE_NETLINK */
paul718e3742002-12-13 20:15:29 +0000238
239 if (opt == EOF)
240 break;
241
242 switch (opt)
243 {
244 case 0:
245 break;
246 case 'b':
247 batch_mode = 1;
248 case 'd':
249 daemon_mode = 1;
250 break;
251 case 'k':
252 keep_kernel_mode = 1;
253 break;
254 case 'l':
255 /* log_mode = 1; */
256 break;
257 case 'f':
258 config_file = optarg;
259 break;
260 case 'A':
261 vty_addr = optarg;
262 break;
263 case 'i':
264 pid_file = optarg;
265 break;
266 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000267 /* Deal with atoi() returning 0 on failure, and zebra not
268 listening on zebra port... */
269 if (strcmp(optarg, "0") == 0)
270 {
271 vty_port = 0;
272 break;
273 }
paul718e3742002-12-13 20:15:29 +0000274 vty_port = atoi (optarg);
paul4fc4e7a2003-01-22 19:47:09 +0000275 vty_port = (vty_port ? vty_port : ZEBRA_VTY_PORT);
paul718e3742002-12-13 20:15:29 +0000276 break;
277 case 'r':
278 retain_mode = 1;
279 break;
hassoc34b6b52004-08-31 13:41:49 +0000280#ifdef HAVE_NETLINK
281 case 's':
282 nl_rcvbufsize = atoi (optarg);
283 break;
284#endif /* HAVE_NETLINK */
hassoc0652302004-11-25 19:33:48 +0000285 case 'u':
286 zserv_privs.user = optarg;
287 break;
288 case 'g':
289 zserv_privs.group = optarg;
290 break;
paul718e3742002-12-13 20:15:29 +0000291 case 'v':
292 print_version (progname);
293 exit (0);
294 break;
295 case 'h':
296 usage (progname, 0);
297 break;
298 default:
299 usage (progname, 1);
300 break;
301 }
302 }
303
304 /* Make master thread emulator. */
paulb21b19c2003-06-15 01:28:29 +0000305 zebrad.master = thread_master_create ();
paul718e3742002-12-13 20:15:29 +0000306
pauledd7c242003-06-04 13:59:38 +0000307 /* privs initialise */
308 zprivs_init (&zserv_privs);
309
paul718e3742002-12-13 20:15:29 +0000310 /* Vty related initialize. */
paul2d75d052004-01-19 21:31:15 +0000311 signal_init (zebrad.master, Q_SIGC(zebra_signals), zebra_signals);
paul718e3742002-12-13 20:15:29 +0000312 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000313 vty_init (zebrad.master);
paul718e3742002-12-13 20:15:29 +0000314 memory_init ();
315
316 /* Zebra related initialize. */
317 zebra_init ();
318 rib_init ();
319 zebra_if_init ();
320 zebra_debug_init ();
hasso18a6dce2004-10-03 18:18:34 +0000321 router_id_init();
paul718e3742002-12-13 20:15:29 +0000322 zebra_vty_init ();
323 access_list_init ();
324 rtadv_init ();
hassoca776982004-06-12 14:33:05 +0000325#ifdef HAVE_IRDP
326 irdp_init();
327#endif
paul718e3742002-12-13 20:15:29 +0000328
329 /* For debug purpose. */
330 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
331
332 /* Make kernel routing socket. */
333 kernel_init ();
334 interface_list ();
335 route_read ();
336
337 /* Sort VTY commands. */
338 sort_node ();
339
340#ifdef HAVE_SNMP
341 zebra_snmp_init ();
342#endif /* HAVE_SNMP */
343
344 /* Clean up self inserted route. */
345 if (! keep_kernel_mode)
346 rib_sweep_route ();
347
348 /* Configuration file read*/
hasso320ec102004-06-20 19:54:37 +0000349 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000350
351 /* Clean up rib. */
352 rib_weed_tables ();
353
354 /* Exit when zebra is working in batch mode. */
355 if (batch_mode)
356 exit (0);
357
358 /* Needed for BSD routing socket. */
359 old_pid = getpid ();
360
361 /* Daemonize. */
362 if (daemon_mode)
363 daemon (0, 0);
364
365 /* Output pid of zebra. */
366 pid_output (pid_file);
367
368 /* Needed for BSD routing socket. */
369 pid = getpid ();
370
371 /* Make vty server socket. */
paul4fc4e7a2003-01-22 19:47:09 +0000372 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000373
ajs887c44a2004-12-03 16:36:46 +0000374 /* Print banner. */
375 zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
376
paulb21b19c2003-06-15 01:28:29 +0000377 while (thread_fetch (zebrad.master, &thread))
paul718e3742002-12-13 20:15:29 +0000378 thread_call (&thread);
379
380 /* Not reached... */
381 exit (0);
382}