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