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