blob: d829c046c6e5a780f73cab5b8cd528995546b3e3 [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"
Paul Jakma7514fb72007-05-02 16:05:35 +000032#include "plist.h"
pauledd7c242003-06-04 13:59:38 +000033#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000034#include "sigevent.h"
paul718e3742002-12-13 20:15:29 +000035
36#include "zebra/rib.h"
37#include "zebra/zserv.h"
38#include "zebra/debug.h"
hasso18a6dce2004-10-03 18:18:34 +000039#include "zebra/router-id.h"
hassoca776982004-06-12 14:33:05 +000040#include "zebra/irdp.h"
paula1ac18c2005-06-28 17:17:12 +000041#include "zebra/rtadv.h"
paul718e3742002-12-13 20:15:29 +000042
paulb21b19c2003-06-15 01:28:29 +000043/* Zebra instance */
44struct zebra_t zebrad =
45{
46 .rtm_table_default = 0,
47};
paul718e3742002-12-13 20:15:29 +000048
49/* process id. */
paul718e3742002-12-13 20:15:29 +000050pid_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'},
paul718e3742002-12-13 20:15:29 +000072 { "config_file", required_argument, NULL, 'f'},
73 { "pid_file", required_argument, NULL, 'i'},
74 { "help", no_argument, NULL, 'h'},
75 { "vty_addr", required_argument, NULL, 'A'},
76 { "vty_port", required_argument, NULL, 'P'},
77 { "retain", no_argument, NULL, 'r'},
Paul Jakma876b8be2006-10-15 23:35:57 +000078 { "dryrun", no_argument, NULL, 'C'},
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{
paulceacedb2005-09-29 14:39:32 +000090 ZCAP_NET_ADMIN,
pauledd7c242003-06-04 13:59:38 +000091 ZCAP_SYS_ADMIN,
paulceacedb2005-09-29 14:39:32 +000092 ZCAP_NET_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"\
Paul Jakma876b8be2006-10-15 23:35:57 +0000133 "-C, --dryrun Check configuration for validity and exit\n"\
hassoc34b6b52004-08-31 13:41:49 +0000134 "-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{
ajs887c44a2004-12-03 16:36:46 +0000166 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000167
168 if (!retain_mode)
169 rib_close ();
hassoca776982004-06-12 14:33:05 +0000170#ifdef HAVE_IRDP
171 irdp_finish();
172#endif
paul718e3742002-12-13 20:15:29 +0000173
174 exit (0);
175}
176
177/* SIGUSR1 handler. */
paula1ac18c2005-06-28 17:17:12 +0000178static void
paul2d75d052004-01-19 21:31:15 +0000179sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000180{
181 zlog_rotate (NULL);
182}
183
paul2d75d052004-01-19 21:31:15 +0000184struct quagga_signal_t zebra_signals[] =
paul718e3742002-12-13 20:15:29 +0000185{
paul2d75d052004-01-19 21:31:15 +0000186 {
187 .signal = SIGHUP,
188 .handler = &sighup,
189 },
190 {
191 .signal = SIGUSR1,
192 .handler = &sigusr1,
193 },
194 {
195 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000196 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000197 },
hassof571dab2004-03-22 08:55:25 +0000198 {
199 .signal = SIGTERM,
200 .handler = &sigint,
201 },
paul2d75d052004-01-19 21:31:15 +0000202};
paul718e3742002-12-13 20:15:29 +0000203
204/* Main startup routine. */
205int
206main (int argc, char **argv)
207{
208 char *p;
209 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000210 int vty_port = ZEBRA_VTY_PORT;
Paul Jakma876b8be2006-10-15 23:35:57 +0000211 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000212 int batch_mode = 0;
213 int daemon_mode = 0;
214 char *config_file = NULL;
215 char *progname;
216 struct thread thread;
paul718e3742002-12-13 20:15:29 +0000217
218 /* Set umask before anything for security */
219 umask (0027);
220
221 /* preserve my name */
222 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
223
ajs274a4a42004-12-07 15:39:31 +0000224 zlog_default = openzlog (progname, ZLOG_ZEBRA,
paul718e3742002-12-13 20:15:29 +0000225 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
226
227 while (1)
228 {
229 int opt;
230
hassoc34b6b52004-08-31 13:41:49 +0000231#ifdef HAVE_NETLINK
Jeremy Jacksonc77cffd2008-12-28 12:57:42 -0500232 opt = getopt_long (argc, argv, "bdkf:i:hA:P:ru:g:vs:C", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000233#else
Jeremy Jacksonc77cffd2008-12-28 12:57:42 -0500234 opt = getopt_long (argc, argv, "bdkf:i:hA:P:ru:g:vC", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000235#endif /* HAVE_NETLINK */
paul718e3742002-12-13 20:15:29 +0000236
237 if (opt == EOF)
238 break;
239
240 switch (opt)
241 {
242 case 0:
243 break;
244 case 'b':
245 batch_mode = 1;
246 case 'd':
247 daemon_mode = 1;
248 break;
249 case 'k':
250 keep_kernel_mode = 1;
251 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000252 case 'C':
253 dryrun = 1;
254 break;
paul718e3742002-12-13 20:15:29 +0000255 case 'f':
256 config_file = optarg;
257 break;
258 case 'A':
259 vty_addr = optarg;
260 break;
261 case 'i':
262 pid_file = optarg;
263 break;
264 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000265 /* Deal with atoi() returning 0 on failure, and zebra not
266 listening on zebra port... */
267 if (strcmp(optarg, "0") == 0)
268 {
269 vty_port = 0;
270 break;
271 }
paul718e3742002-12-13 20:15:29 +0000272 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000273 if (vty_port <= 0 || vty_port > 0xffff)
274 vty_port = ZEBRA_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000275 break;
276 case 'r':
277 retain_mode = 1;
278 break;
hassoc34b6b52004-08-31 13:41:49 +0000279#ifdef HAVE_NETLINK
280 case 's':
281 nl_rcvbufsize = atoi (optarg);
282 break;
283#endif /* HAVE_NETLINK */
hassoc0652302004-11-25 19:33:48 +0000284 case 'u':
285 zserv_privs.user = optarg;
286 break;
287 case 'g':
288 zserv_privs.group = optarg;
289 break;
paul718e3742002-12-13 20:15:29 +0000290 case 'v':
291 print_version (progname);
292 exit (0);
293 break;
294 case 'h':
295 usage (progname, 0);
296 break;
297 default:
298 usage (progname, 1);
299 break;
300 }
301 }
302
303 /* Make master thread emulator. */
paulb21b19c2003-06-15 01:28:29 +0000304 zebrad.master = thread_master_create ();
paul718e3742002-12-13 20:15:29 +0000305
pauledd7c242003-06-04 13:59:38 +0000306 /* privs initialise */
307 zprivs_init (&zserv_privs);
308
paul718e3742002-12-13 20:15:29 +0000309 /* Vty related initialize. */
paul2d75d052004-01-19 21:31:15 +0000310 signal_init (zebrad.master, Q_SIGC(zebra_signals), zebra_signals);
paul718e3742002-12-13 20:15:29 +0000311 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000312 vty_init (zebrad.master);
paul718e3742002-12-13 20:15:29 +0000313 memory_init ();
314
315 /* Zebra related initialize. */
316 zebra_init ();
317 rib_init ();
318 zebra_if_init ();
319 zebra_debug_init ();
hasso18a6dce2004-10-03 18:18:34 +0000320 router_id_init();
paul718e3742002-12-13 20:15:29 +0000321 zebra_vty_init ();
322 access_list_init ();
Paul Jakma7514fb72007-05-02 16:05:35 +0000323 prefix_list_init ();
paul718e3742002-12-13 20:15:29 +0000324 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
Denis Ovsienko91b73512007-09-14 13:31:52 +0000344 /* Process the configuration file. Among other configuration
345 * directives we can meet those installing static routes. Such
346 * requests will not be executed immediately, but queued in
347 * zebra->ribq structure until we enter the main execution loop.
348 * The notifications from kernel will show originating PID equal
349 * to that after daemon() completes (if ever called).
350 */
hasso320ec102004-06-20 19:54:37 +0000351 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000352
Paul Jakma876b8be2006-10-15 23:35:57 +0000353 /* Don't start execution if we are in dry-run mode */
354 if (dryrun)
355 return(0);
356
paul718e3742002-12-13 20:15:29 +0000357 /* Clean up rib. */
358 rib_weed_tables ();
359
360 /* Exit when zebra is working in batch mode. */
361 if (batch_mode)
362 exit (0);
363
paul718e3742002-12-13 20:15:29 +0000364 /* Daemonize. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700365 if (daemon_mode && daemon (0, 0) < 0)
366 {
367 zlog_err("Zebra daemon failed: %s", strerror(errno));
368 exit (1);
369 }
paul718e3742002-12-13 20:15:29 +0000370
371 /* Output pid of zebra. */
372 pid_output (pid_file);
373
Denis Ovsienko91b73512007-09-14 13:31:52 +0000374 /* After we have successfully acquired the pidfile, we can be sure
375 * about being the only copy of zebra process, which is submitting
376 * changes to the FIB.
377 * Clean up zebra-originated routes. The requests will be sent to OS
378 * immediately, so originating PID in notifications from kernel
379 * will be equal to the current getpid(). To know about such routes,
380 * we have to have route_read() called before.
381 */
382 if (! keep_kernel_mode)
383 rib_sweep_route ();
384
paul718e3742002-12-13 20:15:29 +0000385 /* Needed for BSD routing socket. */
386 pid = getpid ();
387
Denis Ovsienko97be79f2009-07-24 20:45:31 +0400388 /* This must be done only after locking pidfile (bug #403). */
389 zebra_zserv_socket_init ();
390
paul718e3742002-12-13 20:15:29 +0000391 /* Make vty server socket. */
paul4fc4e7a2003-01-22 19:47:09 +0000392 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000393
ajs887c44a2004-12-03 16:36:46 +0000394 /* Print banner. */
395 zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
396
paulb21b19c2003-06-15 01:28:29 +0000397 while (thread_fetch (zebrad.master, &thread))
paul718e3742002-12-13 20:15:29 +0000398 thread_call (&thread);
399
400 /* Not reached... */
paule8e19462006-01-19 20:16:55 +0000401 return 0;
paul718e3742002-12-13 20:15:29 +0000402}