blob: a690c9a197b49f78704299946e3e7d67136518f6 [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;
218 }
219
220 return 0;
221}
222
223/* Zebra VRF initialization. */
224static void
225zebra_vrf_init (void)
226{
227 vrf_add_hook (VRF_NEW_HOOK, zebra_vrf_new);
228 vrf_init ();
229}
230
paul718e3742002-12-13 20:15:29 +0000231/* Main startup routine. */
232int
233main (int argc, char **argv)
234{
235 char *p;
236 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000237 int vty_port = ZEBRA_VTY_PORT;
Paul Jakma876b8be2006-10-15 23:35:57 +0000238 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000239 int batch_mode = 0;
240 int daemon_mode = 0;
241 char *config_file = NULL;
242 char *progname;
243 struct thread thread;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400244 char *zserv_path = NULL;
paul718e3742002-12-13 20:15:29 +0000245
246 /* Set umask before anything for security */
247 umask (0027);
248
249 /* preserve my name */
250 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
251
ajs274a4a42004-12-07 15:39:31 +0000252 zlog_default = openzlog (progname, ZLOG_ZEBRA,
paul718e3742002-12-13 20:15:29 +0000253 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
254
255 while (1)
256 {
257 int opt;
258
hassoc34b6b52004-08-31 13:41:49 +0000259#ifdef HAVE_NETLINK
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400260 opt = getopt_long (argc, argv, "bdkf:i:z:hA:P:ru:g:vs:C", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000261#else
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400262 opt = getopt_long (argc, argv, "bdkf:i:z:hA:P:ru:g:vC", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000263#endif /* HAVE_NETLINK */
paul718e3742002-12-13 20:15:29 +0000264
265 if (opt == EOF)
266 break;
267
268 switch (opt)
269 {
270 case 0:
271 break;
272 case 'b':
273 batch_mode = 1;
274 case 'd':
275 daemon_mode = 1;
276 break;
277 case 'k':
278 keep_kernel_mode = 1;
279 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000280 case 'C':
281 dryrun = 1;
282 break;
paul718e3742002-12-13 20:15:29 +0000283 case 'f':
284 config_file = optarg;
285 break;
286 case 'A':
287 vty_addr = optarg;
288 break;
289 case 'i':
290 pid_file = optarg;
291 break;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400292 case 'z':
293 zserv_path = optarg;
294 break;
paul718e3742002-12-13 20:15:29 +0000295 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000296 /* Deal with atoi() returning 0 on failure, and zebra not
297 listening on zebra port... */
298 if (strcmp(optarg, "0") == 0)
299 {
300 vty_port = 0;
301 break;
302 }
paul718e3742002-12-13 20:15:29 +0000303 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000304 if (vty_port <= 0 || vty_port > 0xffff)
305 vty_port = ZEBRA_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000306 break;
307 case 'r':
308 retain_mode = 1;
309 break;
hassoc34b6b52004-08-31 13:41:49 +0000310#ifdef HAVE_NETLINK
311 case 's':
312 nl_rcvbufsize = atoi (optarg);
313 break;
314#endif /* HAVE_NETLINK */
hassoc0652302004-11-25 19:33:48 +0000315 case 'u':
316 zserv_privs.user = optarg;
317 break;
318 case 'g':
319 zserv_privs.group = optarg;
320 break;
paul718e3742002-12-13 20:15:29 +0000321 case 'v':
322 print_version (progname);
323 exit (0);
324 break;
325 case 'h':
326 usage (progname, 0);
327 break;
328 default:
329 usage (progname, 1);
330 break;
331 }
332 }
333
334 /* Make master thread emulator. */
paulb21b19c2003-06-15 01:28:29 +0000335 zebrad.master = thread_master_create ();
paul718e3742002-12-13 20:15:29 +0000336
pauledd7c242003-06-04 13:59:38 +0000337 /* privs initialise */
338 zprivs_init (&zserv_privs);
339
paul718e3742002-12-13 20:15:29 +0000340 /* Vty related initialize. */
Balaji.G837d16c2012-09-26 14:09:10 +0530341 signal_init (zebrad.master, array_size(zebra_signals), zebra_signals);
paul718e3742002-12-13 20:15:29 +0000342 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000343 vty_init (zebrad.master);
paul718e3742002-12-13 20:15:29 +0000344 memory_init ();
345
346 /* Zebra related initialize. */
347 zebra_init ();
348 rib_init ();
349 zebra_if_init ();
350 zebra_debug_init ();
hasso18a6dce2004-10-03 18:18:34 +0000351 router_id_init();
paul718e3742002-12-13 20:15:29 +0000352 zebra_vty_init ();
353 access_list_init ();
Paul Jakma7514fb72007-05-02 16:05:35 +0000354 prefix_list_init ();
Joachim Nilsson36735ed2012-05-09 13:38:36 +0200355#ifdef RTADV
paul718e3742002-12-13 20:15:29 +0000356 rtadv_init ();
Joachim Nilsson36735ed2012-05-09 13:38:36 +0200357#endif
hassoca776982004-06-12 14:33:05 +0000358#ifdef HAVE_IRDP
359 irdp_init();
360#endif
paul718e3742002-12-13 20:15:29 +0000361
362 /* For debug purpose. */
363 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
364
Feng Lu41f44a22015-05-22 11:39:56 +0200365 /* Initialize VRF module, and make kernel routing socket. */
366 zebra_vrf_init ();
paul718e3742002-12-13 20:15:29 +0000367 kernel_init ();
368 interface_list ();
369 route_read ();
370
paul718e3742002-12-13 20:15:29 +0000371#ifdef HAVE_SNMP
372 zebra_snmp_init ();
373#endif /* HAVE_SNMP */
374
Avneesh Sachdev5adc2522012-11-13 22:48:59 +0000375#ifdef HAVE_FPM
376 zfpm_init (zebrad.master, 1, 0);
377#else
378 zfpm_init (zebrad.master, 0, 0);
379#endif
380
Denis Ovsienko91b73512007-09-14 13:31:52 +0000381 /* Process the configuration file. Among other configuration
382 * directives we can meet those installing static routes. Such
383 * requests will not be executed immediately, but queued in
384 * zebra->ribq structure until we enter the main execution loop.
385 * The notifications from kernel will show originating PID equal
386 * to that after daemon() completes (if ever called).
387 */
hasso320ec102004-06-20 19:54:37 +0000388 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000389
Paul Jakma876b8be2006-10-15 23:35:57 +0000390 /* Don't start execution if we are in dry-run mode */
391 if (dryrun)
392 return(0);
393
paul718e3742002-12-13 20:15:29 +0000394 /* Clean up rib. */
395 rib_weed_tables ();
396
397 /* Exit when zebra is working in batch mode. */
398 if (batch_mode)
399 exit (0);
400
paul718e3742002-12-13 20:15:29 +0000401 /* Daemonize. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700402 if (daemon_mode && daemon (0, 0) < 0)
403 {
404 zlog_err("Zebra daemon failed: %s", strerror(errno));
405 exit (1);
406 }
paul718e3742002-12-13 20:15:29 +0000407
408 /* Output pid of zebra. */
409 pid_output (pid_file);
410
Denis Ovsienko91b73512007-09-14 13:31:52 +0000411 /* After we have successfully acquired the pidfile, we can be sure
412 * about being the only copy of zebra process, which is submitting
413 * changes to the FIB.
414 * Clean up zebra-originated routes. The requests will be sent to OS
415 * immediately, so originating PID in notifications from kernel
416 * will be equal to the current getpid(). To know about such routes,
417 * we have to have route_read() called before.
418 */
419 if (! keep_kernel_mode)
420 rib_sweep_route ();
421
paul718e3742002-12-13 20:15:29 +0000422 /* Needed for BSD routing socket. */
423 pid = getpid ();
424
Denis Ovsienko97be79f2009-07-24 20:45:31 +0400425 /* This must be done only after locking pidfile (bug #403). */
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400426 zebra_zserv_socket_init (zserv_path);
Denis Ovsienko97be79f2009-07-24 20:45:31 +0400427
paul718e3742002-12-13 20:15:29 +0000428 /* Make vty server socket. */
paul4fc4e7a2003-01-22 19:47:09 +0000429 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000430
ajs887c44a2004-12-03 16:36:46 +0000431 /* Print banner. */
432 zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
433
paulb21b19c2003-06-15 01:28:29 +0000434 while (thread_fetch (zebrad.master, &thread))
paul718e3742002-12-13 20:15:29 +0000435 thread_call (&thread);
436
437 /* Not reached... */
paule8e19462006-01-19 20:16:55 +0000438 return 0;
paul718e3742002-12-13 20:15:29 +0000439}