]> git.proxmox.com Git - mirror_frr.git/blob - zebra/main.c
[compiler] miscellaneous trivial compiler warning fixes
[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
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22 #include <zebra.h>
23
24 #include <lib/version.h>
25 #include "getopt.h"
26 #include "command.h"
27 #include "thread.h"
28 #include "filter.h"
29 #include "memory.h"
30 #include "prefix.h"
31 #include "log.h"
32 #include "privs.h"
33 #include "sigevent.h"
34
35 #include "zebra/rib.h"
36 #include "zebra/zserv.h"
37 #include "zebra/debug.h"
38 #include "zebra/router-id.h"
39 #include "zebra/irdp.h"
40 #include "zebra/rtadv.h"
41
42 /* Zebra instance */
43 struct zebra_t zebrad =
44 {
45 .rtm_table_default = 0,
46 };
47
48 /* process id. */
49 pid_t old_pid;
50 pid_t pid;
51
52 /* Pacify zclient.o in libzebra, which expects this variable. */
53 struct thread_master *master;
54
55 /* Route retain mode flag. */
56 int retain_mode = 0;
57
58 /* Don't delete kernel route. */
59 int keep_kernel_mode = 0;
60
61 #ifdef HAVE_NETLINK
62 /* Receive buffer size for netlink socket */
63 u_int32_t nl_rcvbufsize = 0;
64 #endif /* HAVE_NETLINK */
65
66 /* Command line options. */
67 struct option longopts[] =
68 {
69 { "batch", no_argument, NULL, 'b'},
70 { "daemon", no_argument, NULL, 'd'},
71 { "keep_kernel", no_argument, NULL, 'k'},
72 { "log_mode", no_argument, NULL, 'l'},
73 { "config_file", required_argument, NULL, 'f'},
74 { "pid_file", required_argument, NULL, 'i'},
75 { "help", no_argument, NULL, 'h'},
76 { "vty_addr", required_argument, NULL, 'A'},
77 { "vty_port", required_argument, NULL, 'P'},
78 { "retain", no_argument, NULL, 'r'},
79 #ifdef HAVE_NETLINK
80 { "nl-bufsize", required_argument, NULL, 's'},
81 #endif /* HAVE_NETLINK */
82 { "user", required_argument, NULL, 'u'},
83 { "group", required_argument, NULL, 'g'},
84 { "version", no_argument, NULL, 'v'},
85 { 0 }
86 };
87
88 zebra_capabilities_t _caps_p [] =
89 {
90 ZCAP_NET_ADMIN,
91 ZCAP_SYS_ADMIN,
92 ZCAP_NET_RAW,
93 };
94
95 /* zebra privileges to run with */
96 struct zebra_privs_t zserv_privs =
97 {
98 #if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
99 .user = QUAGGA_USER,
100 .group = QUAGGA_GROUP,
101 #endif
102 #ifdef VTY_GROUP
103 .vty_group = VTY_GROUP,
104 #endif
105 .caps_p = _caps_p,
106 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
107 .cap_num_i = 0
108 };
109
110 /* Default configuration file path. */
111 char config_default[] = SYSCONFDIR DEFAULT_CONFIG_FILE;
112
113 /* Process ID saved for use by init system */
114 const char *pid_file = PATH_ZEBRA_PID;
115
116 /* Help information display. */
117 static void
118 usage (char *progname, int status)
119 {
120 if (status != 0)
121 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
122 else
123 {
124 printf ("Usage : %s [OPTION...]\n\n"\
125 "Daemon which manages kernel routing table management and "\
126 "redistribution between different routing protocols.\n\n"\
127 "-b, --batch Runs in batch mode\n"\
128 "-d, --daemon Runs in daemon mode\n"\
129 "-f, --config_file Set configuration file name\n"\
130 "-i, --pid_file Set process identifier file name\n"\
131 "-k, --keep_kernel Don't delete old routes which installed by "\
132 "zebra.\n"\
133 "-l, --log_mode Set verbose log mode flag\n"\
134 "-A, --vty_addr Set vty's bind address\n"\
135 "-P, --vty_port Set vty's port number\n"\
136 "-r, --retain When program terminates, retain added route "\
137 "by zebra.\n"\
138 "-u, --user User to run as\n"\
139 "-g, --group Group to run as\n", progname);
140 #ifdef HAVE_NETLINK
141 printf ("-s, --nl-bufsize Set netlink receive buffer size\n");
142 #endif /* HAVE_NETLINK */
143 printf ("-v, --version Print program version\n"\
144 "-h, --help Display this help and exit\n"\
145 "\n"\
146 "Report bugs to %s\n", ZEBRA_BUG_ADDRESS);
147 }
148
149 exit (status);
150 }
151 \f
152 /* SIGHUP handler. */
153 static void
154 sighup (void)
155 {
156 zlog_info ("SIGHUP received");
157
158 /* Reload of config file. */
159 ;
160 }
161
162 /* SIGINT handler. */
163 static void
164 sigint (void)
165 {
166 zlog_notice ("Terminating on signal");
167
168 if (!retain_mode)
169 rib_close ();
170 #ifdef HAVE_IRDP
171 irdp_finish();
172 #endif
173
174 exit (0);
175 }
176
177 /* SIGUSR1 handler. */
178 static void
179 sigusr1 (void)
180 {
181 zlog_rotate (NULL);
182 }
183
184 struct quagga_signal_t zebra_signals[] =
185 {
186 {
187 .signal = SIGHUP,
188 .handler = &sighup,
189 },
190 {
191 .signal = SIGUSR1,
192 .handler = &sigusr1,
193 },
194 {
195 .signal = SIGINT,
196 .handler = &sigint,
197 },
198 {
199 .signal = SIGTERM,
200 .handler = &sigint,
201 },
202 };
203 \f
204 /* Main startup routine. */
205 int
206 main (int argc, char **argv)
207 {
208 char *p;
209 char *vty_addr = NULL;
210 int vty_port = ZEBRA_VTY_PORT;
211 int batch_mode = 0;
212 int daemon_mode = 0;
213 char *config_file = NULL;
214 char *progname;
215 struct thread thread;
216
217 /* Set umask before anything for security */
218 umask (0027);
219
220 /* preserve my name */
221 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
222
223 zlog_default = openzlog (progname, ZLOG_ZEBRA,
224 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
225
226 while (1)
227 {
228 int opt;
229
230 #ifdef HAVE_NETLINK
231 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:g:vs:", longopts, 0);
232 #else
233 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:g:v", longopts, 0);
234 #endif /* HAVE_NETLINK */
235
236 if (opt == EOF)
237 break;
238
239 switch (opt)
240 {
241 case 0:
242 break;
243 case 'b':
244 batch_mode = 1;
245 case 'd':
246 daemon_mode = 1;
247 break;
248 case 'k':
249 keep_kernel_mode = 1;
250 break;
251 case 'l':
252 /* log_mode = 1; */
253 break;
254 case 'f':
255 config_file = optarg;
256 break;
257 case 'A':
258 vty_addr = optarg;
259 break;
260 case 'i':
261 pid_file = optarg;
262 break;
263 case 'P':
264 /* Deal with atoi() returning 0 on failure, and zebra not
265 listening on zebra port... */
266 if (strcmp(optarg, "0") == 0)
267 {
268 vty_port = 0;
269 break;
270 }
271 vty_port = atoi (optarg);
272 vty_port = (vty_port ? vty_port : ZEBRA_VTY_PORT);
273 break;
274 case 'r':
275 retain_mode = 1;
276 break;
277 #ifdef HAVE_NETLINK
278 case 's':
279 nl_rcvbufsize = atoi (optarg);
280 break;
281 #endif /* HAVE_NETLINK */
282 case 'u':
283 zserv_privs.user = optarg;
284 break;
285 case 'g':
286 zserv_privs.group = optarg;
287 break;
288 case 'v':
289 print_version (progname);
290 exit (0);
291 break;
292 case 'h':
293 usage (progname, 0);
294 break;
295 default:
296 usage (progname, 1);
297 break;
298 }
299 }
300
301 /* Make master thread emulator. */
302 zebrad.master = thread_master_create ();
303
304 /* privs initialise */
305 zprivs_init (&zserv_privs);
306
307 /* Vty related initialize. */
308 signal_init (zebrad.master, Q_SIGC(zebra_signals), zebra_signals);
309 cmd_init (1);
310 vty_init (zebrad.master);
311 memory_init ();
312
313 /* Zebra related initialize. */
314 zebra_init ();
315 rib_init ();
316 zebra_if_init ();
317 zebra_debug_init ();
318 router_id_init();
319 zebra_vty_init ();
320 access_list_init ();
321 rtadv_init ();
322 #ifdef HAVE_IRDP
323 irdp_init();
324 #endif
325
326 /* For debug purpose. */
327 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
328
329 /* Make kernel routing socket. */
330 kernel_init ();
331 interface_list ();
332 route_read ();
333
334 /* Sort VTY commands. */
335 sort_node ();
336
337 #ifdef HAVE_SNMP
338 zebra_snmp_init ();
339 #endif /* HAVE_SNMP */
340
341 /* Clean up self inserted route. */
342 if (! keep_kernel_mode)
343 rib_sweep_route ();
344
345 /* Configuration file read*/
346 vty_read_config (config_file, config_default);
347
348 /* Clean up rib. */
349 rib_weed_tables ();
350
351 /* Exit when zebra is working in batch mode. */
352 if (batch_mode)
353 exit (0);
354
355 /* Needed for BSD routing socket. */
356 old_pid = getpid ();
357
358 /* Daemonize. */
359 if (daemon_mode)
360 daemon (0, 0);
361
362 /* Output pid of zebra. */
363 pid_output (pid_file);
364
365 /* Needed for BSD routing socket. */
366 pid = getpid ();
367
368 /* Make vty server socket. */
369 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
370
371 /* Print banner. */
372 zlog_notice ("Zebra %s starting: vty@%d", QUAGGA_VERSION, vty_port);
373
374 while (thread_fetch (zebrad.master, &thread))
375 thread_call (&thread);
376
377 /* Not reached... */
378 return 0;
379 }