]> git.proxmox.com Git - mirror_frr.git/blame - zebra/main.c
tools: retain sanity when reloading under systemd
[mirror_frr.git] / zebra / main.c
CommitLineData
edd7c245 1/* zebra daemon main routine.
718e3744 2 * 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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#include <zebra.h>
22
5e4fa164 23#include <lib/version.h>
718e3744 24#include "getopt.h"
25#include "command.h"
26#include "thread.h"
27#include "filter.h"
28#include "memory.h"
4a1ab8e4 29#include "zebra_memory.h"
fc7948fa 30#include "memory_vty.h"
718e3744 31#include "prefix.h"
32#include "log.h"
7514fb77 33#include "plist.h"
edd7c245 34#include "privs.h"
2d75d052 35#include "sigevent.h"
b72ede27 36#include "vrf.h"
736d41ad 37#include "logicalrouter.h"
4f04a76b 38#include "libfrr.h"
bf094f69 39#include "routemap.h"
329e35da 40#include "frr_pthread.h"
718e3744 41
89272910 42#include "zebra/zebra_router.h"
43e52561 43#include "zebra/zebra_errors.h"
718e3744 44#include "zebra/rib.h"
45#include "zebra/zserv.h"
46#include "zebra/debug.h"
18a6dce6 47#include "zebra/router-id.h"
ca776988 48#include "zebra/irdp.h"
a1ac18c4 49#include "zebra/rtadv.h"
244c1cdc 50#include "zebra/zebra_ptm.h"
fe18ee2d 51#include "zebra/zebra_ns.h"
e2b1be64 52#include "zebra/redistribute.h"
7758e3f3 53#include "zebra/zebra_mpls.h"
fea12efb 54#include "zebra/label_manager.h"
e27dec3c 55#include "zebra/zebra_netns_notify.h"
453844ab 56#include "zebra/zebra_rnh.h"
4c0ec639 57#include "zebra/zebra_pbr.h"
244c1cdc 58
acfa8927 59#if defined(HANDLE_NETLINK_FUZZING)
81a2f870 60#include "zebra/kernel_netlink.h"
acfa8927 61#endif /* HANDLE_NETLINK_FUZZING */
81a2f870 62
244c1cdc 63#define ZEBRA_PTM_SUPPORT
718e3744 64
718e3744 65/* process id. */
718e3744 66pid_t pid;
67
55c72803 68/* Pacify zclient.o in libfrr, which expects this variable. */
87efd646 69struct thread_master *master;
70
718e3744 71/* Route retain mode flag. */
72int retain_mode = 0;
73
6baf7bb8
DS
74/* Allow non-quagga entities to delete quagga routes */
75int allow_delete = 0;
76
718e3744 77/* Don't delete kernel route. */
78int keep_kernel_mode = 0;
79
6b093863
DS
80bool v6_rr_semantics = false;
81
c34b6b57 82#ifdef HAVE_NETLINK
83/* Receive buffer size for netlink socket */
d7c0a89a 84uint32_t nl_rcvbufsize = 4194304;
c34b6b57 85#endif /* HAVE_NETLINK */
86
6b093863 87#define OPTION_V6_RR_SEMANTICS 2000
718e3744 88/* Command line options. */
6b093863
DS
89struct option longopts[] = {
90 {"batch", no_argument, NULL, 'b'},
91 {"allow_delete", no_argument, NULL, 'a'},
92 {"keep_kernel", no_argument, NULL, 'k'},
93 {"socket", required_argument, NULL, 'z'},
94 {"ecmp", required_argument, NULL, 'e'},
95 {"label_socket", no_argument, NULL, 'l'},
96 {"retain", no_argument, NULL, 'r'},
cc6743c2 97 {"vrfdefaultname", required_argument, NULL, 'o'},
c34b6b57 98#ifdef HAVE_NETLINK
6b093863
DS
99 {"vrfwnetns", no_argument, NULL, 'n'},
100 {"nl-bufsize", required_argument, NULL, 's'},
101 {"v6-rr-semantics", no_argument, NULL, OPTION_V6_RR_SEMANTICS},
c34b6b57 102#endif /* HAVE_NETLINK */
6b093863 103 {0}};
718e3744 104
d62a17ae 105zebra_capabilities_t _caps_p[] = {
9d303b37 106 ZCAP_NET_ADMIN, ZCAP_SYS_ADMIN, ZCAP_NET_RAW,
edd7c245 107};
108
109/* zebra privileges to run with */
d62a17ae 110struct zebra_privs_t zserv_privs = {
b2f36157 111#if defined(FRR_USER) && defined(FRR_GROUP)
d62a17ae 112 .user = FRR_USER,
113 .group = FRR_GROUP,
edd7c245 114#endif
115#ifdef VTY_GROUP
d62a17ae 116 .vty_group = VTY_GROUP,
edd7c245 117#endif
d62a17ae 118 .caps_p = _caps_p,
119 .cap_num_p = array_size(_caps_p),
120 .cap_num_i = 0};
edd7c245 121
37fe7731
DS
122unsigned int multipath_num = MULTIPATH_NUM;
123
718e3744 124/* SIGHUP handler. */
d62a17ae 125static void sighup(void)
718e3744 126{
d62a17ae 127 zlog_info("SIGHUP received");
718e3744 128
d62a17ae 129 /* Reload of config file. */
130 ;
718e3744 131}
132
133/* SIGINT handler. */
d62a17ae 134static void sigint(void)
718e3744 135{
d62a17ae 136 struct vrf *vrf;
137 struct zebra_vrf *zvrf;
f3e33b69
QY
138 struct listnode *ln, *nn;
139 struct zserv *client;
ff2460d5
MS
140 static bool sigint_done;
141
142 if (sigint_done)
143 return;
144
145 sigint_done = true;
fe18ee2d 146
d62a17ae 147 zlog_notice("Terminating on signal");
718e3744 148
03951374 149 frr_early_fini();
718e3744 150
4dfd7a02
MS
151 zebra_dplane_pre_finish();
152
161e9ab7 153 for (ALL_LIST_ELEMENTS(zrouter.client_list, ln, nn, client))
f3e33b69
QY
154 zserv_close_client(client);
155
41674562 156 zserv_close();
161e9ab7 157 list_delete_all_node(zrouter.client_list);
41674562 158
f88bd20c 159 zebra_ptm_finish();
d62a17ae 160
161 if (retain_mode)
a2addae8 162 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
d62a17ae 163 zvrf = vrf->info;
164 if (zvrf)
165 SET_FLAG(zvrf->flags, ZEBRA_VRF_RETAIN);
166 }
e2353ec2
DS
167 if (zrouter.lsp_process_q)
168 work_queue_free_and_null(&zrouter.lsp_process_q);
d62a17ae 169 vrf_terminate();
170
62b8bb7a 171 ns_walk_func(zebra_ns_early_shutdown);
e27dec3c 172 zebra_ns_notify_close();
d62a17ae 173
174 access_list_reset();
175 prefix_list_reset();
176 route_map_finish();
03951374 177
161e9ab7 178 list_delete(&zrouter.client_list);
4dfd7a02 179
ff2460d5
MS
180 /* Indicate that all new dplane work has been enqueued. When that
181 * work is complete, the dataplane will enqueue an event
182 * with the 'finalize' function.
183 */
1d11b21f 184 zebra_dplane_finish();
4dfd7a02
MS
185}
186
ff2460d5
MS
187/*
188 * Final shutdown step for the zebra main thread. This is run after all
189 * async update processing has completed.
190 */
4dfd7a02
MS
191int zebra_finalize(struct thread *dummy)
192{
193 zlog_info("Zebra final shutdown");
194
62b8bb7a
MS
195 /* Final shutdown of ns resources */
196 ns_walk_func(zebra_ns_final_shutdown);
197
4dfd7a02
MS
198 /* Stop dplane thread and finish any cleanup */
199 zebra_dplane_shutdown();
1d11b21f 200
89272910
DS
201 zebra_router_terminate();
202
03951374 203 frr_fini();
d62a17ae 204 exit(0);
718e3744 205}
206
207/* SIGUSR1 handler. */
d62a17ae 208static void sigusr1(void)
718e3744 209{
d62a17ae 210 zlog_rotate();
718e3744 211}
212
d62a17ae 213struct quagga_signal_t zebra_signals[] = {
214 {
215 .signal = SIGHUP,
216 .handler = &sighup,
217 },
218 {
219 .signal = SIGUSR1,
220 .handler = &sigusr1,
221 },
222 {
223 .signal = SIGINT,
224 .handler = &sigint,
225 },
226 {
227 .signal = SIGTERM,
228 .handler = &sigint,
229 },
2d75d052 230};
b72ede27 231
8fcdd0d6 232static const struct frr_yang_module_info *zebra_yang_modules[] = {
a4bed468 233 &frr_interface_info,
8fcdd0d6
RW
234};
235
d62a17ae 236FRR_DAEMON_INFO(
237 zebra, ZEBRA, .vty_port = ZEBRA_VTY_PORT, .flags = FRR_NO_ZCLIENT,
4f04a76b 238
d62a17ae 239 .proghelp =
240 "Daemon which manages kernel routing table management "
4f04a76b
DL
241 "and\nredistribution between different routing protocols.",
242
d62a17ae 243 .signals = zebra_signals, .n_signals = array_size(zebra_signals),
4f04a76b 244
8fcdd0d6
RW
245 .privs = &zserv_privs,
246
247 .yang_modules = zebra_yang_modules,
248 .n_yang_modules = array_size(zebra_yang_modules), )
4f04a76b 249
718e3744 250/* Main startup routine. */
d62a17ae 251int main(int argc, char **argv)
718e3744 252{
d62a17ae 253 // int batch_mode = 0;
254 char *zserv_path = NULL;
53af0706 255 char *vrf_default_name_configured = NULL;
d62a17ae 256 /* Socket to external label manager */
257 char *lblmgr_path = NULL;
689f5a8c
DL
258 struct sockaddr_storage dummy;
259 socklen_t dummylen;
411314ed 260#if defined(HANDLE_ZAPI_FUZZING)
81a2f870 261 char *zapi_fuzzing = NULL;
acfa8927
SW
262#endif /* HANDLE_ZAPI_FUZZING */
263#if defined(HANDLE_NETLINK_FUZZING)
81a2f870 264 char *netlink_fuzzing = NULL;
acfa8927 265#endif /* HANDLE_NETLINK_FUZZING */
fea12efb 266
78dd30b2 267 vrf_configure_backend(VRF_BACKEND_VRF_LITE);
996c9314 268 logicalrouter_configure_backend(LOGICALROUTER_BACKEND_NETNS);
78dd30b2 269
d62a17ae 270 frr_preinit(&zebra_di, argc, argv);
718e3744 271
d62a17ae 272 frr_opt_add(
cc6743c2 273 "bakz:e:l:o:r"
4f04a76b 274#ifdef HAVE_NETLINK
78dd30b2 275 "s:n"
411314ed
DS
276#endif
277#if defined(HANDLE_ZAPI_FUZZING)
acfa8927
SW
278 "c:"
279#endif /* HANDLE_ZAPI_FUZZING */
280#if defined(HANDLE_NETLINK_FUZZING)
281 "w:"
282#endif /* HANDLE_NETLINK_FUZZING */
d62a17ae 283 ,
284 longopts,
6b093863
DS
285 " -b, --batch Runs in batch mode\n"
286 " -a, --allow_delete Allow other processes to delete zebra routes\n"
287 " -z, --socket Set path of zebra socket\n"
288 " -e, --ecmp Specify ECMP to use.\n"
289 " -l, --label_socket Socket to external label manager\n"
f6b66ba9 290 " -k, --keep_kernel Don't delete old routes which were installed by zebra.\n"
6b093863 291 " -r, --retain When program terminates, retain added route by zebra.\n"
cc6743c2 292 " -o, --vrfdefaultname Set default VRF name.\n"
4f04a76b 293#ifdef HAVE_NETLINK
f6b66ba9 294 " -n, --vrfwnetns Use NetNS as VRF backend\n"
6b093863
DS
295 " -s, --nl-bufsize Set netlink receive buffer size\n"
296 " --v6-rr-semantics Use v6 RR semantics\n"
4f04a76b 297#endif /* HAVE_NETLINK */
411314ed 298#if defined(HANDLE_ZAPI_FUZZING)
81a2f870 299 " -c <file> Bypass normal startup and use this file for testing of zapi\n"
acfa8927
SW
300#endif /* HANDLE_ZAPI_FUZZING */
301#if defined(HANDLE_NETLINK_FUZZING)
302 " -w <file> Bypass normal startup and use this file for testing of netlink input\n"
303#endif /* HANDLE_NETLINK_FUZZING */
6b093863 304 );
d62a17ae 305
306 while (1) {
307 int opt = frr_getopt(argc, argv, NULL);
308
309 if (opt == EOF)
310 break;
311
312 switch (opt) {
313 case 0:
314 break;
315 case 'b':
316 // batch_mode = 1;
317 break;
318 case 'a':
319 allow_delete = 1;
320 break;
321 case 'k':
322 keep_kernel_mode = 1;
323 break;
324 case 'e':
325 multipath_num = atoi(optarg);
326 if (multipath_num > MULTIPATH_NUM
327 || multipath_num <= 0) {
af4c2728 328 flog_err(
e914ccbe 329 EC_ZEBRA_BAD_MULTIPATH_NUM,
d62a17ae 330 "Multipath Number specified must be less than %d and greater than 0",
331 MULTIPATH_NUM);
332 return 1;
333 }
334 break;
cc6743c2 335 case 'o':
53af0706 336 vrf_default_name_configured = optarg;
cc6743c2 337 break;
d62a17ae 338 case 'z':
339 zserv_path = optarg;
689f5a8c
DL
340 if (!frr_zclient_addr(&dummy, &dummylen, optarg)) {
341 fprintf(stderr,
342 "Invalid zserv socket path: %s\n",
343 optarg);
344 exit(1);
345 }
d62a17ae 346 break;
347 case 'l':
348 lblmgr_path = optarg;
349 break;
350 case 'r':
351 retain_mode = 1;
352 break;
c34b6b57 353#ifdef HAVE_NETLINK
d62a17ae 354 case 's':
355 nl_rcvbufsize = atoi(optarg);
356 break;
78dd30b2
PG
357 case 'n':
358 vrf_configure_backend(VRF_BACKEND_NETNS);
736d41ad 359 logicalrouter_configure_backend(
996c9314 360 LOGICALROUTER_BACKEND_OFF);
78dd30b2 361 break;
6b093863
DS
362 case OPTION_V6_RR_SEMANTICS:
363 v6_rr_semantics = true;
364 break;
c34b6b57 365#endif /* HAVE_NETLINK */
411314ed
DS
366#if defined(HANDLE_ZAPI_FUZZING)
367 case 'c':
81a2f870 368 zapi_fuzzing = optarg;
81a2f870 369 break;
acfa8927
SW
370#endif /* HANDLE_ZAPI_FUZZING */
371#if defined(HANDLE_NETLINK_FUZZING)
81a2f870
SW
372 case 'w':
373 netlink_fuzzing = optarg;
374 /* This ensures we are aren't writing any of the
375 * startup netlink messages that happen when we
376 * just want to read.
377 */
acfa8927 378 netlink_read = true;
411314ed 379 break;
acfa8927 380#endif /* HANDLE_NETLINK_FUZZING */
d62a17ae 381 default:
382 frr_help_exit(1);
383 break;
384 }
718e3744 385 }
d62a17ae 386
3801e764 387 zrouter.master = frr_init();
d62a17ae 388
d8c16a95
MS
389 /* Initialize pthread library */
390 frr_pthread_init();
391
d62a17ae 392 /* Zebra related initialize. */
89272910 393 zebra_router_init();
5f145fb8 394 zserv_init();
d62a17ae 395 rib_init();
396 zebra_if_init();
397 zebra_debug_init();
398 router_id_cmd_init();
f84fc2c9
DS
399
400 /*
401 * Initialize NS( and implicitly the VRF module), and make kernel
402 * routing socket. */
edbc3322 403 zebra_ns_init((const char *)vrf_default_name_configured);
f84fc2c9 404 zebra_vty_init();
d62a17ae 405 access_list_init();
406 prefix_list_init();
407#if defined(HAVE_RTADV)
408 rtadv_cmd_init();
36735ed9 409#endif
d62a17ae 410/* PTM socket */
244c1cdc 411#ifdef ZEBRA_PTM_SUPPORT
d62a17ae 412 zebra_ptm_init();
244c1cdc 413#endif
718e3744 414
d62a17ae 415 zebra_mpls_init();
416 zebra_mpls_vty_init();
2dd0d726 417 zebra_pw_vty_init();
4c0ec639 418 zebra_pbr_init();
7758e3f3 419
996c9314
LB
420/* For debug purpose. */
421/* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
718e3744 422
d62a17ae 423 /* Process the configuration file. Among other configuration
9d303b37
DL
424 * directives we can meet those installing static routes. Such
425 * requests will not be executed immediately, but queued in
426 * zebra->ribq structure until we enter the main execution loop.
427 * The notifications from kernel will show originating PID equal
428 * to that after daemon() completes (if ever called).
429 */
d62a17ae 430 frr_config_fork();
718e3744 431
d62a17ae 432 /* After we have successfully acquired the pidfile, we can be sure
9d303b37
DL
433 * about being the only copy of zebra process, which is submitting
434 * changes to the FIB.
435 * Clean up zebra-originated routes. The requests will be sent to OS
436 * immediately, so originating PID in notifications from kernel
437 * will be equal to the current getpid(). To know about such routes,
438 * we have to have route_read() called before.
439 */
d62a17ae 440 if (!keep_kernel_mode)
441 rib_sweep_route();
91b7351d 442
d62a17ae 443 /* Needed for BSD routing socket. */
444 pid = getpid();
718e3744 445
e5a60d82
MS
446 /* Start dataplane system */
447 zebra_dplane_start();
448
21ccc0cf
QY
449 /* Start Zebra API server */
450 zserv_start(zserv_path);
97be79f9 451
d62a17ae 452 /* Init label manager */
453 label_manager_init(lblmgr_path);
fea12efb 454
453844ab
QY
455 /* RNH init */
456 zebra_rnh_init();
89272910 457
5ad4c39c
QY
458 /* Error init */
459 zebra_error_init();
453844ab 460
2875801f 461#if defined(HANDLE_ZAPI_FUZZING)
81a2f870
SW
462 if (zapi_fuzzing) {
463 zserv_read_file(zapi_fuzzing);
464 exit(0);
acfa8927
SW
465 }
466#endif /* HANDLE_ZAPI_FUZZING */
467#if defined(HANDLE_NETLINK_FUZZING)
468 if (netlink_fuzzing) {
81a2f870 469 netlink_read_init(netlink_fuzzing);
2875801f
QY
470 exit(0);
471 }
acfa8927 472#endif /* HANDLE_NETLINK_FUZZING */
2875801f
QY
473
474
3801e764 475 frr_run(zrouter.master);
718e3744 476
d62a17ae 477 /* Not reached... */
478 return 0;
718e3744 479}