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