]> git.proxmox.com Git - mirror_frr.git/blob - zebra/main.c
zebra: Remove `struct zebra_t`
[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
59 #if defined(HANDLE_NETLINK_FUZZING)
60 #include "zebra/kernel_netlink.h"
61 #endif /* HANDLE_NETLINK_FUZZING */
62
63 #define ZEBRA_PTM_SUPPORT
64
65 /* process id. */
66 pid_t pid;
67
68 /* Pacify zclient.o in libfrr, which expects this variable. */
69 struct thread_master *master;
70
71 /* Route retain mode flag. */
72 int retain_mode = 0;
73
74 /* Allow non-quagga entities to delete quagga routes */
75 int allow_delete = 0;
76
77 /* Don't delete kernel route. */
78 int keep_kernel_mode = 0;
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 {"label_socket", no_argument, NULL, 'l'},
96 {"retain", no_argument, NULL, 'r'},
97 {"vrfdefaultname", required_argument, NULL, 'o'},
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 unsigned int multipath_num = MULTIPATH_NUM;
123
124 /* SIGHUP handler. */
125 static void sighup(void)
126 {
127 zlog_info("SIGHUP received");
128
129 /* Reload of config file. */
130 ;
131 }
132
133 /* SIGINT handler. */
134 static void sigint(void)
135 {
136 struct vrf *vrf;
137 struct zebra_vrf *zvrf;
138 struct listnode *ln, *nn;
139 struct zserv *client;
140 static bool sigint_done;
141
142 if (sigint_done)
143 return;
144
145 sigint_done = true;
146
147 zlog_notice("Terminating on signal");
148
149 frr_early_fini();
150
151 zebra_dplane_pre_finish();
152
153 for (ALL_LIST_ELEMENTS(zrouter.client_list, ln, nn, client))
154 zserv_close_client(client);
155
156 list_delete_all_node(zrouter.client_list);
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 /* Socket to external label manager */
255 char *lblmgr_path = NULL;
256 struct sockaddr_storage dummy;
257 socklen_t dummylen;
258 #if defined(HANDLE_ZAPI_FUZZING)
259 char *zapi_fuzzing = NULL;
260 #endif /* HANDLE_ZAPI_FUZZING */
261 #if defined(HANDLE_NETLINK_FUZZING)
262 char *netlink_fuzzing = NULL;
263 #endif /* HANDLE_NETLINK_FUZZING */
264
265 vrf_configure_backend(VRF_BACKEND_VRF_LITE);
266 logicalrouter_configure_backend(LOGICALROUTER_BACKEND_NETNS);
267
268 frr_preinit(&zebra_di, argc, argv);
269
270 frr_opt_add(
271 "bakz:e:l:o:r"
272 #ifdef HAVE_NETLINK
273 "s:n"
274 #endif
275 #if defined(HANDLE_ZAPI_FUZZING)
276 "c:"
277 #endif /* HANDLE_ZAPI_FUZZING */
278 #if defined(HANDLE_NETLINK_FUZZING)
279 "w:"
280 #endif /* HANDLE_NETLINK_FUZZING */
281 ,
282 longopts,
283 " -b, --batch Runs in batch mode\n"
284 " -a, --allow_delete Allow other processes to delete zebra routes\n"
285 " -z, --socket Set path of zebra socket\n"
286 " -e, --ecmp Specify ECMP to use.\n"
287 " -l, --label_socket Socket to external label manager\n"
288 " -k, --keep_kernel Don't delete old routes which were installed by zebra.\n"
289 " -r, --retain When program terminates, retain added route by zebra.\n"
290 " -o, --vrfdefaultname Set default VRF name.\n"
291 #ifdef HAVE_NETLINK
292 " -n, --vrfwnetns Use NetNS as VRF backend\n"
293 " -s, --nl-bufsize Set netlink receive buffer size\n"
294 " --v6-rr-semantics Use v6 RR semantics\n"
295 #endif /* HAVE_NETLINK */
296 #if defined(HANDLE_ZAPI_FUZZING)
297 " -c <file> Bypass normal startup and use this file for testing of zapi\n"
298 #endif /* HANDLE_ZAPI_FUZZING */
299 #if defined(HANDLE_NETLINK_FUZZING)
300 " -w <file> Bypass normal startup and use this file for testing of netlink input\n"
301 #endif /* HANDLE_NETLINK_FUZZING */
302 );
303
304 while (1) {
305 int opt = frr_getopt(argc, argv, NULL);
306
307 if (opt == EOF)
308 break;
309
310 switch (opt) {
311 case 0:
312 break;
313 case 'b':
314 // batch_mode = 1;
315 break;
316 case 'a':
317 allow_delete = 1;
318 break;
319 case 'k':
320 keep_kernel_mode = 1;
321 break;
322 case 'e':
323 multipath_num = atoi(optarg);
324 if (multipath_num > MULTIPATH_NUM
325 || multipath_num <= 0) {
326 flog_err(
327 EC_ZEBRA_BAD_MULTIPATH_NUM,
328 "Multipath Number specified must be less than %d and greater than 0",
329 MULTIPATH_NUM);
330 return 1;
331 }
332 break;
333 case 'o':
334 vrf_default_name_configured = optarg;
335 break;
336 case 'z':
337 zserv_path = optarg;
338 if (!frr_zclient_addr(&dummy, &dummylen, optarg)) {
339 fprintf(stderr,
340 "Invalid zserv socket path: %s\n",
341 optarg);
342 exit(1);
343 }
344 break;
345 case 'l':
346 lblmgr_path = optarg;
347 break;
348 case 'r':
349 retain_mode = 1;
350 break;
351 #ifdef HAVE_NETLINK
352 case 's':
353 nl_rcvbufsize = atoi(optarg);
354 break;
355 case 'n':
356 vrf_configure_backend(VRF_BACKEND_NETNS);
357 logicalrouter_configure_backend(
358 LOGICALROUTER_BACKEND_OFF);
359 break;
360 case OPTION_V6_RR_SEMANTICS:
361 v6_rr_semantics = true;
362 break;
363 #endif /* HAVE_NETLINK */
364 #if defined(HANDLE_ZAPI_FUZZING)
365 case 'c':
366 zapi_fuzzing = optarg;
367 break;
368 #endif /* HANDLE_ZAPI_FUZZING */
369 #if defined(HANDLE_NETLINK_FUZZING)
370 case 'w':
371 netlink_fuzzing = optarg;
372 /* This ensures we are aren't writing any of the
373 * startup netlink messages that happen when we
374 * just want to read.
375 */
376 netlink_read = true;
377 break;
378 #endif /* HANDLE_NETLINK_FUZZING */
379 default:
380 frr_help_exit(1);
381 break;
382 }
383 }
384
385 zrouter.master = frr_init();
386
387 /* Initialize pthread library */
388 frr_pthread_init();
389
390 /* Zebra related initialize. */
391 zebra_router_init();
392 zserv_init();
393 rib_init();
394 zebra_if_init();
395 zebra_debug_init();
396 router_id_cmd_init();
397
398 /*
399 * Initialize NS( and implicitly the VRF module), and make kernel
400 * routing socket. */
401 zebra_ns_init((const char *)vrf_default_name_configured);
402 zebra_vty_init();
403 access_list_init();
404 prefix_list_init();
405 #if defined(HAVE_RTADV)
406 rtadv_cmd_init();
407 #endif
408 /* PTM socket */
409 #ifdef ZEBRA_PTM_SUPPORT
410 zebra_ptm_init();
411 #endif
412
413 zebra_mpls_init();
414 zebra_mpls_vty_init();
415 zebra_pw_vty_init();
416 zebra_pbr_init();
417
418 /* For debug purpose. */
419 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
420
421 /* Process the configuration file. Among other configuration
422 * directives we can meet those installing static routes. Such
423 * requests will not be executed immediately, but queued in
424 * zebra->ribq structure until we enter the main execution loop.
425 * The notifications from kernel will show originating PID equal
426 * to that after daemon() completes (if ever called).
427 */
428 frr_config_fork();
429
430 /* After we have successfully acquired the pidfile, we can be sure
431 * about being the only copy of zebra process, which is submitting
432 * changes to the FIB.
433 * Clean up zebra-originated routes. The requests will be sent to OS
434 * immediately, so originating PID in notifications from kernel
435 * will be equal to the current getpid(). To know about such routes,
436 * we have to have route_read() called before.
437 */
438 if (!keep_kernel_mode)
439 rib_sweep_route();
440
441 /* Needed for BSD routing socket. */
442 pid = getpid();
443
444 /* Start dataplane system */
445 zebra_dplane_start();
446
447 /* Start Zebra API server */
448 zserv_start(zserv_path);
449
450 /* Init label manager */
451 label_manager_init(lblmgr_path);
452
453 /* RNH init */
454 zebra_rnh_init();
455
456 /* Error init */
457 zebra_error_init();
458
459 #if defined(HANDLE_ZAPI_FUZZING)
460 if (zapi_fuzzing) {
461 zserv_read_file(zapi_fuzzing);
462 exit(0);
463 }
464 #endif /* HANDLE_ZAPI_FUZZING */
465 #if defined(HANDLE_NETLINK_FUZZING)
466 if (netlink_fuzzing) {
467 netlink_read_init(netlink_fuzzing);
468 exit(0);
469 }
470 #endif /* HANDLE_NETLINK_FUZZING */
471
472
473 frr_run(zrouter.master);
474
475 /* Not reached... */
476 return 0;
477 }