blob: e10755b93d98c4a66d9a662a12d495988bbbe1c9 [file] [log] [blame]
pauledd7c242003-06-04 13:59:38 +00001/* zebra daemon main routine.
paul718e3742002-12-13 20:15:29 +00002 * 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
gdt5e4fa162004-03-16 14:38:36 +000024#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000025#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"
pauledd7c242003-06-04 13:59:38 +000032#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000033#include "sigevent.h"
paul718e3742002-12-13 20:15:29 +000034
35#include "zebra/rib.h"
36#include "zebra/zserv.h"
37#include "zebra/debug.h"
hasso18a6dce2004-10-03 18:18:34 +000038#include "zebra/router-id.h"
hassoca776982004-06-12 14:33:05 +000039#include "zebra/irdp.h"
paul718e3742002-12-13 20:15:29 +000040
paulb21b19c2003-06-15 01:28:29 +000041/* Zebra instance */
42struct zebra_t zebrad =
43{
44 .rtm_table_default = 0,
45};
paul718e3742002-12-13 20:15:29 +000046
47/* process id. */
48pid_t old_pid;
49pid_t pid;
50
gdt87efd642004-06-30 17:36:11 +000051/* Pacify zclient.o in libzebra, which expects this variable. */
52struct thread_master *master;
53
paul718e3742002-12-13 20:15:29 +000054/* Route retain mode flag. */
55int retain_mode = 0;
56
57/* Don't delete kernel route. */
58int keep_kernel_mode = 0;
59
hassoc34b6b52004-08-31 13:41:49 +000060#ifdef HAVE_NETLINK
61/* Receive buffer size for netlink socket */
62u_int32_t nl_rcvbufsize = 0;
63#endif /* HAVE_NETLINK */
64
paul718e3742002-12-13 20:15:29 +000065/* Command line options. */
66struct option longopts[] =
67{
68 { "batch", no_argument, NULL, 'b'},
69 { "daemon", no_argument, NULL, 'd'},
70 { "keep_kernel", no_argument, NULL, 'k'},
71 { "log_mode", no_argument, NULL, 'l'},
72 { "config_file", required_argument, NULL, 'f'},
73 { "pid_file", required_argument, NULL, 'i'},
74 { "help", no_argument, NULL, 'h'},
75 { "vty_addr", required_argument, NULL, 'A'},
76 { "vty_port", required_argument, NULL, 'P'},
77 { "retain", no_argument, NULL, 'r'},
hassoc34b6b52004-08-31 13:41:49 +000078#ifdef HAVE_NETLINK
79 { "nl-bufsize", no_argument, NULL, 's'},
80#endif /* HAVE_NETLINK */
pauledd7c242003-06-04 13:59:38 +000081 { "user", required_argument, NULL, 'u'},
paul718e3742002-12-13 20:15:29 +000082 { "version", no_argument, NULL, 'v'},
83 { 0 }
84};
85
pauledd7c242003-06-04 13:59:38 +000086zebra_capabilities_t _caps_p [] =
87{
88 ZCAP_ADMIN,
89 ZCAP_SYS_ADMIN,
hasso41908812003-06-05 11:33:10 +000090 ZCAP_RAW,
pauledd7c242003-06-04 13:59:38 +000091};
92
93/* zebra privileges to run with */
94struct zebra_privs_t zserv_privs =
95{
pauld81fadf2003-08-14 05:32:12 +000096#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
97 .user = QUAGGA_USER,
98 .group = QUAGGA_GROUP,
pauledd7c242003-06-04 13:59:38 +000099#endif
100#ifdef VTY_GROUP
101 .vty_group = VTY_GROUP,
102#endif
103 .caps_p = _caps_p,
104 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
105 .cap_num_i = 0
106};
107
paul718e3742002-12-13 20:15:29 +0000108/* Default configuration file path. */
paul718e3742002-12-13 20:15:29 +0000109char config_default[] = SYSCONFDIR DEFAULT_CONFIG_FILE;
110
111/* Process ID saved for use by init system */
112char *pid_file = PATH_ZEBRA_PID;
113
114/* Help information display. */
115static void
116usage (char *progname, int status)
117{
118 if (status != 0)
119 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
120 else
121 {
hassoc34b6b52004-08-31 13:41:49 +0000122 printf ("Usage : %s [OPTION...]\n\n"\
123 "Daemon which manages kernel routing table management and "\
124 "redistribution between different routing protocols.\n\n"\
125 "-b, --batch Runs in batch mode\n"\
126 "-d, --daemon Runs in daemon mode\n"\
127 "-f, --config_file Set configuration file name\n"\
128 "-i, --pid_file Set process identifier file name\n"\
129 "-k, --keep_kernel Don't delete old routes which installed by "\
130 "zebra.\n"\
131 "-l, --log_mode Set verbose log mode flag\n"\
132 "-A, --vty_addr Set vty's bind address\n"\
133 "-P, --vty_port Set vty's port number\n"\
134 "-r, --retain When program terminates, retain added route "\
135 "by zebra.\n"\
136 "-u, --user User and group to run as\n", progname);
137#ifdef HAVE_NETLINK
138 printf ("-s, --nl-bufsize Set netlink receive buffer size\n");
139#endif /* HAVE_NETLINK */
140 printf ("-v, --version Print program version\n"\
141 "-h, --help Display this help and exit\n"\
142 "\n"\
143 "Report bugs to %s\n", ZEBRA_BUG_ADDRESS);
paul718e3742002-12-13 20:15:29 +0000144 }
145
146 exit (status);
147}
148
149/* SIGHUP handler. */
150void
paul2d75d052004-01-19 21:31:15 +0000151sighup (void)
paul718e3742002-12-13 20:15:29 +0000152{
153 zlog_info ("SIGHUP received");
154
155 /* Reload of config file. */
156 ;
157}
158
159/* SIGINT handler. */
160void
paul2d75d052004-01-19 21:31:15 +0000161sigint (void)
paul718e3742002-12-13 20:15:29 +0000162{
163 /* Decrared in rib.c */
164 void rib_close ();
165
166 zlog_info ("Terminating on signal");
167
168 if (!retain_mode)
169 rib_close ();
hassoca776982004-06-12 14:33:05 +0000170#ifdef HAVE_IRDP
171 irdp_finish();
172#endif
paul718e3742002-12-13 20:15:29 +0000173
174 exit (0);
175}
176
177/* SIGUSR1 handler. */
178void
paul2d75d052004-01-19 21:31:15 +0000179sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000180{
181 zlog_rotate (NULL);
182}
183
paul2d75d052004-01-19 21:31:15 +0000184struct quagga_signal_t zebra_signals[] =
paul718e3742002-12-13 20:15:29 +0000185{
paul2d75d052004-01-19 21:31:15 +0000186 {
187 .signal = SIGHUP,
188 .handler = &sighup,
189 },
190 {
191 .signal = SIGUSR1,
192 .handler = &sigusr1,
193 },
194 {
195 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000196 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000197 },
hassof571dab2004-03-22 08:55:25 +0000198 {
199 .signal = SIGTERM,
200 .handler = &sigint,
201 },
paul2d75d052004-01-19 21:31:15 +0000202};
paul718e3742002-12-13 20:15:29 +0000203
204/* Main startup routine. */
205int
206main (int argc, char **argv)
207{
208 char *p;
209 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000210 int vty_port = ZEBRA_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000211 int batch_mode = 0;
212 int daemon_mode = 0;
213 char *config_file = NULL;
214 char *progname;
215 struct thread thread;
216 void rib_weed_tables ();
217 void zebra_vty_init ();
218
219 /* Set umask before anything for security */
220 umask (0027);
221
222 /* preserve my name */
223 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
224
225 zlog_default = openzlog (progname, ZLOG_STDOUT, ZLOG_ZEBRA,
226 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
227
228 while (1)
229 {
230 int opt;
231
hassoc34b6b52004-08-31 13:41:49 +0000232#ifdef HAVE_NETLINK
233 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:vs:", longopts, 0);
234#else
paul96735ee2003-08-10 02:51:22 +0000235 opt = getopt_long (argc, argv, "bdklf:i:hA:P:ru:v", longopts, 0);
hassoc34b6b52004-08-31 13:41:49 +0000236#endif /* HAVE_NETLINK */
paul718e3742002-12-13 20:15:29 +0000237
238 if (opt == EOF)
239 break;
240
241 switch (opt)
242 {
243 case 0:
244 break;
245 case 'b':
246 batch_mode = 1;
247 case 'd':
248 daemon_mode = 1;
249 break;
250 case 'k':
251 keep_kernel_mode = 1;
252 break;
253 case 'l':
254 /* log_mode = 1; */
255 break;
256 case 'f':
257 config_file = optarg;
258 break;
259 case 'A':
260 vty_addr = optarg;
261 break;
262 case 'i':
263 pid_file = optarg;
264 break;
265 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000266 /* Deal with atoi() returning 0 on failure, and zebra not
267 listening on zebra port... */
268 if (strcmp(optarg, "0") == 0)
269 {
270 vty_port = 0;
271 break;
272 }
paul718e3742002-12-13 20:15:29 +0000273 vty_port = atoi (optarg);
paul4fc4e7a2003-01-22 19:47:09 +0000274 vty_port = (vty_port ? vty_port : ZEBRA_VTY_PORT);
paul718e3742002-12-13 20:15:29 +0000275 break;
276 case 'r':
277 retain_mode = 1;
278 break;
hassoc34b6b52004-08-31 13:41:49 +0000279#ifdef HAVE_NETLINK
280 case 's':
281 nl_rcvbufsize = atoi (optarg);
282 break;
283#endif /* HAVE_NETLINK */
pauledd7c242003-06-04 13:59:38 +0000284 case 'u':
285 zserv_privs.user = zserv_privs.group = optarg;
286 break;
paul718e3742002-12-13 20:15:29 +0000287 case 'v':
288 print_version (progname);
289 exit (0);
290 break;
291 case 'h':
292 usage (progname, 0);
293 break;
294 default:
295 usage (progname, 1);
296 break;
297 }
298 }
299
300 /* Make master thread emulator. */
paulb21b19c2003-06-15 01:28:29 +0000301 zebrad.master = thread_master_create ();
paul718e3742002-12-13 20:15:29 +0000302
pauledd7c242003-06-04 13:59:38 +0000303 /* privs initialise */
304 zprivs_init (&zserv_privs);
305
paul718e3742002-12-13 20:15:29 +0000306 /* Vty related initialize. */
paul2d75d052004-01-19 21:31:15 +0000307 signal_init (zebrad.master, Q_SIGC(zebra_signals), zebra_signals);
paul718e3742002-12-13 20:15:29 +0000308 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000309 vty_init (zebrad.master);
paul718e3742002-12-13 20:15:29 +0000310 memory_init ();
311
312 /* Zebra related initialize. */
313 zebra_init ();
314 rib_init ();
315 zebra_if_init ();
316 zebra_debug_init ();
hasso18a6dce2004-10-03 18:18:34 +0000317 router_id_init();
paul718e3742002-12-13 20:15:29 +0000318 zebra_vty_init ();
319 access_list_init ();
320 rtadv_init ();
hassoca776982004-06-12 14:33:05 +0000321#ifdef HAVE_IRDP
322 irdp_init();
323#endif
paul718e3742002-12-13 20:15:29 +0000324
325 /* For debug purpose. */
326 /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */
327
328 /* Make kernel routing socket. */
329 kernel_init ();
330 interface_list ();
331 route_read ();
332
333 /* Sort VTY commands. */
334 sort_node ();
335
336#ifdef HAVE_SNMP
337 zebra_snmp_init ();
338#endif /* HAVE_SNMP */
339
340 /* Clean up self inserted route. */
341 if (! keep_kernel_mode)
342 rib_sweep_route ();
343
344 /* Configuration file read*/
hasso320ec102004-06-20 19:54:37 +0000345 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000346
347 /* Clean up rib. */
348 rib_weed_tables ();
349
350 /* Exit when zebra is working in batch mode. */
351 if (batch_mode)
352 exit (0);
353
354 /* Needed for BSD routing socket. */
355 old_pid = getpid ();
356
357 /* Daemonize. */
358 if (daemon_mode)
359 daemon (0, 0);
360
361 /* Output pid of zebra. */
362 pid_output (pid_file);
363
364 /* Needed for BSD routing socket. */
365 pid = getpid ();
366
367 /* Make vty server socket. */
paul4fc4e7a2003-01-22 19:47:09 +0000368 vty_serv_sock (vty_addr, vty_port, ZEBRA_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000369
paulb21b19c2003-06-15 01:28:29 +0000370 while (thread_fetch (zebrad.master, &thread))
paul718e3742002-12-13 20:15:29 +0000371 thread_call (&thread);
372
373 /* Not reached... */
374 exit (0);
375}