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