blob: f3c08f1929d2a5fa8cae368b8f602af2031bcdda [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"
Feng Lu41f44a22015-05-22 11:39:56 +020035#include "vrf.h"
paul718e3742002-12-13 20:15:29 +000036
37#include "zebra/rib.h"
38#include "zebra/zserv.h"
39#include "zebra/debug.h"
hasso18a6dce2004-10-03 18:18:34 +000040#include "zebra/router-id.h"
hassoca776982004-06-12 14:33:05 +000041#include "zebra/irdp.h"
paula1ac18c2005-06-28 17:17:12 +000042#include "zebra/rtadv.h"
Avneesh Sachdev5adc2522012-11-13 22:48:59 +000043#include "zebra/zebra_fpm.h"
paul718e3742002-12-13 20:15:29 +000044
paulb21b19c2003-06-15 01:28:29 +000045/* Zebra instance */
46struct zebra_t zebrad =
47{
48 .rtm_table_default = 0,
49};
paul718e3742002-12-13 20:15:29 +000050
51/* process id. */
paul718e3742002-12-13 20:15:29 +000052pid_t pid;
53
gdt87efd642004-06-30 17:36:11 +000054/* Pacify zclient.o in libzebra, which expects this variable. */
55struct thread_master *master;
56
paul718e3742002-12-13 20:15:29 +000057/* Route retain mode flag. */
58int retain_mode = 0;
59
60/* Don't delete kernel route. */
61int keep_kernel_mode = 0;
62
hassoc34b6b52004-08-31 13:41:49 +000063#ifdef HAVE_NETLINK
64/* Receive buffer size for netlink socket */
65u_int32_t nl_rcvbufsize = 0;
66#endif /* HAVE_NETLINK */
67
paul718e3742002-12-13 20:15:29 +000068/* Command line options. */
69struct option longopts[] =
70{
71 { "batch", no_argument, NULL, 'b'},
72 { "daemon", no_argument, NULL, 'd'},
73 { "keep_kernel", no_argument, NULL, 'k'},
paul718e3742002-12-13 20:15:29 +000074 { "config_file", required_argument, NULL, 'f'},
75 { "pid_file", required_argument, NULL, 'i'},
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040076 { "socket", required_argument, NULL, 'z'},
paul718e3742002-12-13 20:15:29 +000077 { "help", no_argument, NULL, 'h'},
78 { "vty_addr", required_argument, NULL, 'A'},
79 { "vty_port", required_argument, NULL, 'P'},
80 { "retain", no_argument, NULL, 'r'},
Paul Jakma876b8be2006-10-15 23:35:57 +000081 { "dryrun", no_argument, NULL, 'C'},
hassoc34b6b52004-08-31 13:41:49 +000082#ifdef HAVE_NETLINK
hasso583d8002005-01-16 23:34:02 +000083 { "nl-bufsize", required_argument, NULL, 's'},
hassoc34b6b52004-08-31 13:41:49 +000084#endif /* HAVE_NETLINK */
pauledd7c242003-06-04 13:59:38 +000085 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000086 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000087 { "version", no_argument, NULL, 'v'},
88 { 0 }
89};
90
pauledd7c242003-06-04 13:59:38 +000091zebra_capabilities_t _caps_p [] =
92{
paulceacedb2005-09-29 14:39:32 +000093 ZCAP_NET_ADMIN,
pauledd7c242003-06-04 13:59:38 +000094 ZCAP_SYS_ADMIN,
paulceacedb2005-09-29 14:39:32 +000095 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000096};
97
98/* zebra privileges to run with */
99struct zebra_privs_t zserv_privs =
100{
pauld81fadf2003-08-14 05:32:12 +0000101#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
102 .user = QUAGGA_USER,
103 .group = QUAGGA_GROUP,
pauledd7c242003-06-04 13:59:38 +0000104#endif
105#ifdef VTY_GROUP
106 .vty_group = VTY_GROUP,
107#endif
108 .caps_p = _caps_p,
Balaji.G837d16c2012-09-26 14:09:10 +0530109 .cap_num_p = array_size(_caps_p),
pauledd7c242003-06-04 13:59:38 +0000110 .cap_num_i = 0
111};
112
paul718e3742002-12-13 20:15:29 +0000113/* Default configuration file path. */
paul718e3742002-12-13 20:15:29 +0000114char config_default[] = SYSCONFDIR DEFAULT_CONFIG_FILE;
115
116/* Process ID saved for use by init system */
hassofce954f2004-10-07 20:29:24 +0000117const char *pid_file = PATH_ZEBRA_PID;
paul718e3742002-12-13 20:15:29 +0000118
119/* Help information display. */
120static void
121usage (char *progname, int status)
122{
123 if (status != 0)
124 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
125 else
126 {
hassoc34b6b52004-08-31 13:41:49 +0000127 printf ("Usage : %s [OPTION...]\n\n"\
128 "Daemon which manages kernel routing table management and "\
129 "redistribution between different routing protocols.\n\n"\
130 "-b, --batch Runs in batch mode\n"\
131 "-d, --daemon Runs in daemon mode\n"\
132 "-f, --config_file Set configuration file name\n"\
133 "-i, --pid_file Set process identifier file name\n"\
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400134 "-z, --socket Set path of zebra socket\n"\
hassoc34b6b52004-08-31 13:41:49 +0000135 "-k, --keep_kernel Don't delete old routes which installed by "\
136 "zebra.\n"\
Paul Jakma876b8be2006-10-15 23:35:57 +0000137 "-C, --dryrun Check configuration for validity and exit\n"\
hassoc34b6b52004-08-31 13:41:49 +0000138 "-A, --vty_addr Set vty's bind address\n"\
139 "-P, --vty_port Set vty's port number\n"\
140 "-r, --retain When program terminates, retain added route "\
141 "by zebra.\n"\
hassoc0652302004-11-25 19:33:48 +0000142 "-u, --user User to run as\n"\
143 "-g, --group Group to run as\n", progname);
hassoc34b6b52004-08-31 13:41:49 +0000144#ifdef HAVE_NETLINK
145 printf ("-s, --nl-bufsize Set netlink receive buffer size\n");
146#endif /* HAVE_NETLINK */
147 printf ("-v, --version Print program version\n"\
148 "-h, --help Display this help and exit\n"\
149 "\n"\
150 "Report bugs to %s\n", ZEBRA_BUG_ADDRESS);
paul718e3742002-12-13 20:15:29 +0000151 }
152
153 exit (status);
154}
David Lamparter6b0655a2014-06-04 06:53:35 +0200155
paul718e3742002-12-13 20:15:29 +0000156/* SIGHUP handler. */
paula1ac18c2005-06-28 17:17:12 +0000157static void
paul2d75d052004-01-19 21:31:15 +0000158sighup (void)
paul718e3742002-12-13 20:15:29 +0000159{
160 zlog_info ("SIGHUP received");
161
162 /* Reload of config file. */
163 ;
164}
165
166/* SIGINT handler. */
paula1ac18c2005-06-28 17:17:12 +0000167static void
paul2d75d052004-01-19 21:31:15 +0000168sigint (void)
paul718e3742002-12-13 20:15:29 +0000169{
ajs887c44a2004-12-03 16:36:46 +0000170 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000171
172 if (!retain_mode)
173 rib_close ();
hassoca776982004-06-12 14:33:05 +0000174#ifdef HAVE_IRDP
175 irdp_finish();
176#endif
paul718e3742002-12-13 20:15:29 +0000177
178 exit (0);
179}
180
181/* SIGUSR1 handler. */
paula1ac18c2005-06-28 17:17:12 +0000182static void
paul2d75d052004-01-19 21:31:15 +0000183sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000184{
185 zlog_rotate (NULL);
186}
187
paul2d75d052004-01-19 21:31:15 +0000188struct quagga_signal_t zebra_signals[] =
paul718e3742002-12-13 20:15:29 +0000189{
paul2d75d052004-01-19 21:31:15 +0000190 {
191 .signal = SIGHUP,
192 .handler = &sighup,
193 },
194 {
195 .signal = SIGUSR1,
196 .handler = &sigusr1,
197 },
198 {
199 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000200 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000201 },
hassof571dab2004-03-22 08:55:25 +0000202 {
203 .signal = SIGTERM,
204 .handler = &sigint,
205 },
paul2d75d052004-01-19 21:31:15 +0000206};
David Lamparter6b0655a2014-06-04 06:53:35 +0200207
Feng Lu41f44a22015-05-22 11:39:56 +0200208/* Callback upon creating a new VRF. */
209static int
210zebra_vrf_new (vrf_id_t vrf_id, void **info)
211{
212 struct zebra_vrf *zvrf = *info;
213
214 if (! zvrf)
215 {
216 zvrf = zebra_vrf_alloc (vrf_id);
217 *info = (void *)zvrf;
Feng Luac19a442015-05-22 11:40:07 +0200218 router_id_init (zvrf);
Feng Lu41f44a22015-05-22 11:39:56 +0200219 }
220
221 return 0;
222}
223
Feng Lu267ceb22015-05-22 11:40:09 +0200224/* Callback upon enabling a VRF. */
225static int
226zebra_vrf_enable (vrf_id_t vrf_id, void **info)
227{
228 struct zebra_vrf *zvrf = (struct zebra_vrf *) (*info);
229
230 assert (zvrf);
231
Donald Sharp64257732015-11-20 08:33:30 -0500232#if defined (HAVE_RTADV)
Feng Lu49f76092015-05-22 11:40:10 +0200233 rtadv_init (zvrf);
234#endif
Feng Lu758fb8f2014-07-03 18:23:09 +0800235 kernel_init (zvrf);
236 interface_list (zvrf);
237 route_read (zvrf);
238
Feng Lu267ceb22015-05-22 11:40:09 +0200239 return 0;
240}
241
242/* Callback upon disabling a VRF. */
243static int
244zebra_vrf_disable (vrf_id_t vrf_id, void **info)
245{
246 struct zebra_vrf *zvrf = (struct zebra_vrf *) (*info);
247 struct listnode *list_node;
248 struct interface *ifp;
249
250 assert (zvrf);
251
252 rib_close_table (zvrf->table[AFI_IP][SAFI_UNICAST]);
253 rib_close_table (zvrf->table[AFI_IP6][SAFI_UNICAST]);
254
255 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (vrf_id), list_node, ifp))
256 {
257 int operative = if_is_operative (ifp);
258 UNSET_FLAG (ifp->flags, IFF_UP);
259 if (operative)
260 if_down (ifp);
261 }
262
Donald Sharp64257732015-11-20 08:33:30 -0500263#if defined (HAVE_RTADV)
Feng Lu49f76092015-05-22 11:40:10 +0200264 rtadv_terminate (zvrf);
265#endif
Feng Lu758fb8f2014-07-03 18:23:09 +0800266 kernel_terminate (zvrf);
Feng Lu49f76092015-05-22 11:40:10 +0200267
Feng Lu267ceb22015-05-22 11:40:09 +0200268 list_delete_all_node (zvrf->rid_all_sorted_list);
269 list_delete_all_node (zvrf->rid_lo_sorted_list);
270
271 return 0;
272}
273
Feng Lu41f44a22015-05-22 11:39:56 +0200274/* Zebra VRF initialization. */
275static void
276zebra_vrf_init (void)
277{
278 vrf_add_hook (VRF_NEW_HOOK, zebra_vrf_new);
Feng Lu267ceb22015-05-22 11:40:09 +0200279 vrf_add_hook (VRF_ENABLE_HOOK, zebra_vrf_enable);
280 vrf_add_hook (VRF_DISABLE_HOOK, zebra_vrf_disable);
Feng Lu41f44a22015-05-22 11:39:56 +0200281 vrf_init ();
282}
283
paul718e3742002-12-13 20:15:29 +0000284/* Main startup routine. */
285int
286main (int argc, char **argv)
287{
288 char *p;
289 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000290 int vty_port = ZEBRA_VTY_PORT;
Paul Jakma876b8be2006-10-15 23:35:57 +0000291 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000292 int batch_mode = 0;
293 int daemon_mode = 0;
294 char *config_file = NULL;
295 char *progname;
296 struct thread thread;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400297 char *zserv_path = NULL;
paul718e3742002-12-13 20:15:29 +0000298
299 /* Set umask before anything for security */
300 umask (0027);
301
302 /* preserve my name */
303 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
304
ajs274a4a42004-12-07 15:39:31 +0000305 zlog_default = openzlog (progname, ZLOG_ZEBRA,
paul718e3742002-12-13 20:15:29 +0000306 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
307
308 while (1)
309 {
310 int opt;
311
hassoc34b6b52004-08-31 13:41:49 +0000312#ifdef HAVE_NETLINK
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400313 opt = getopt_long (argc, argv, "bdkf:i:z:hA:P:ru:g:vs:C", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000314#else
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400315 opt = getopt_long (argc, argv, "bdkf:i:z:hA:P:ru:g:vC", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000316#endif /* HAVE_NETLINK */
paul718e3742002-12-13 20:15:29 +0000317
318 if (opt == EOF)
319 break;
320
321 switch (opt)
322 {
323 case 0:
324 break;
325 case 'b':
326 batch_mode = 1;
327 case 'd':
328 daemon_mode = 1;
329 break;
330 case 'k':
331 keep_kernel_mode = 1;
332 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000333 case 'C':
334 dryrun = 1;
335 break;
paul718e3742002-12-13 20:15:29 +0000336 case 'f':
337 config_file = optarg;
338 break;
339 case 'A':
340 vty_addr = optarg;
341 break;
342 case 'i':
343 pid_file = optarg;
344 break;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400345 case 'z':
346 zserv_path = optarg;
347 break;
paul718e3742002-12-13 20:15:29 +0000348 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000349 /* Deal with atoi() returning 0 on failure, and zebra not
350 listening on zebra port... */
351 if (strcmp(optarg, "0") == 0)
352 {
353 vty_port = 0;
354 break;
355 }
paul718e3742002-12-13 20:15:29 +0000356 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000357 if (vty_port <= 0 || vty_port > 0xffff)
358 vty_port = ZEBRA_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000359 break;
360 case 'r':
361 retain_mode = 1;
362 break;
hassoc34b6b52004-08-31 13:41:49 +0000363#ifdef HAVE_NETLINK
364 case 's':
365 nl_rcvbufsize = atoi (optarg);
366 break;
367#endif /* HAVE_NETLINK */
hassoc0652302004-11-25 19:33:48 +0000368 case 'u':
369 zserv_privs.user = optarg;
370 break;
371 case 'g':
372 zserv_privs.group = optarg;
373 break;
paul718e3742002-12-13 20:15:29 +0000374 case 'v':
375 print_version (progname);
376 exit (0);
377 break;
378 case 'h':
379 usage (progname, 0);
380 break;
381 default:
382 usage (progname, 1);
383 break;
384 }
385 }
386
387 /* Make master thread emulator. */
paulb21b19c2003-06-15 01:28:29 +0000388 zebrad.master = thread_master_create ();
paul718e3742002-12-13 20:15:29 +0000389
pauledd7c242003-06-04 13:59:38 +0000390 /* privs initialise */
391 zprivs_init (&zserv_privs);
392
paul718e3742002-12-13 20:15:29 +0000393 /* Vty related initialize. */
Balaji.G837d16c2012-09-26 14:09:10 +0530394 signal_init (zebrad.master, array_size(zebra_signals), zebra_signals);
paul718e3742002-12-13 20:15:29 +0000395 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000396 vty_init (zebrad.master);
paul718e3742002-12-13 20:15:29 +0000397 memory_init ();
398
399 /* Zebra related initialize. */
400 zebra_init ();
401 rib_init ();
402 zebra_if_init ();
403 zebra_debug_init ();
Feng Luac19a442015-05-22 11:40:07 +0200404 router_id_cmd_init ();
paul718e3742002-12-13 20:15:29 +0000405 zebra_vty_init ();
406 access_list_init ();
Paul Jakma7514fb72007-05-02 16:05:35 +0000407 prefix_list_init ();
Donald Sharp64257732015-11-20 08:33:30 -0500408#if defined (HAVE_RTADV)
Feng Lu49f76092015-05-22 11:40:10 +0200409 rtadv_cmd_init ();
Joachim Nilsson36735ed2012-05-09 13:38:36 +0200410#endif
hassoca776982004-06-12 14:33:05 +0000411#ifdef HAVE_IRDP
412 irdp_init();
413#endif
paul718e3742002-12-13 20:15:29 +0000414
415 /* For debug purpose. */
416 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
417
Feng Lu41f44a22015-05-22 11:39:56 +0200418 /* Initialize VRF module, and make kernel routing socket. */
419 zebra_vrf_init ();
paul718e3742002-12-13 20:15:29 +0000420
paul718e3742002-12-13 20:15:29 +0000421#ifdef HAVE_SNMP
422 zebra_snmp_init ();
423#endif /* HAVE_SNMP */
424
Avneesh Sachdev5adc2522012-11-13 22:48:59 +0000425#ifdef HAVE_FPM
426 zfpm_init (zebrad.master, 1, 0);
427#else
428 zfpm_init (zebrad.master, 0, 0);
429#endif
430
Denis Ovsienko91b73512007-09-14 13:31:52 +0000431 /* Process the configuration file. Among other configuration
432 * directives we can meet those installing static routes. Such
433 * requests will not be executed immediately, but queued in
434 * zebra->ribq structure until we enter the main execution loop.
435 * The notifications from kernel will show originating PID equal
436 * to that after daemon() completes (if ever called).
437 */
hasso320ec102004-06-20 19:54:37 +0000438 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000439
Paul Jakma876b8be2006-10-15 23:35:57 +0000440 /* Don't start execution if we are in dry-run mode */
441 if (dryrun)
442 return(0);
443
paul718e3742002-12-13 20:15:29 +0000444 /* Clean up rib. */
445 rib_weed_tables ();
446
447 /* Exit when zebra is working in batch mode. */
448 if (batch_mode)
449 exit (0);
450
paul718e3742002-12-13 20:15:29 +0000451 /* Daemonize. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700452 if (daemon_mode && daemon (0, 0) < 0)
453 {
454 zlog_err("Zebra daemon failed: %s", strerror(errno));
455 exit (1);
456 }
paul718e3742002-12-13 20:15:29 +0000457
458 /* Output pid of zebra. */
459 pid_output (pid_file);
460
Denis Ovsienko91b73512007-09-14 13:31:52 +0000461 /* After we have successfully acquired the pidfile, we can be sure
462 * about being the only copy of zebra process, which is submitting
463 * changes to the FIB.
464 * Clean up zebra-originated routes. The requests will be sent to OS
465 * immediately, so originating PID in notifications from kernel
466 * will be equal to the current getpid(). To know about such routes,
467 * we have to have route_read() called before.
468 */
469 if (! keep_kernel_mode)
470 rib_sweep_route ();
471
paul718e3742002-12-13 20:15:29 +0000472 /* Needed for BSD routing socket. */
473 pid = getpid ();
474
Denis Ovsienko97be79f2009-07-24 20:45:31 +0400475 /* This must be done only after locking pidfile (bug #403). */
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400476 zebra_zserv_socket_init (zserv_path);
Denis Ovsienko97be79f2009-07-24 20:45:31 +0400477
paul718e3742002-12-13 20:15:29 +0000478 /* Make vty server socket. */
paul4fc4e7a2003-01-22 19:47:09 +0000479 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000480
ajs887c44a2004-12-03 16:36:46 +0000481 /* Print banner. */
482 zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
483
paulb21b19c2003-06-15 01:28:29 +0000484 while (thread_fetch (zebrad.master, &thread))
paul718e3742002-12-13 20:15:29 +0000485 thread_call (&thread);
486
487 /* Not reached... */
paule8e19462006-01-19 20:16:55 +0000488 return 0;
paul718e3742002-12-13 20:15:29 +0000489}