blob: 0baae3bfdb0be224488120b751b9f5c1cda312e7 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Main routine of bgpd.
2 Copyright (C) 1996, 97, 98, 1999 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
21#include <zebra.h>
22
23#include "vector.h"
24#include "vty.h"
25#include "command.h"
26#include "getopt.h"
27#include "thread.h"
gdt5e4fa162004-03-16 14:38:36 +000028#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000029#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 "bgpd/bgpd.h"
36#include "bgpd/bgp_attr.h"
37#include "bgpd/bgp_mplsvpn.h"
38
39/* bgpd options, we use GNU getopt library. */
40struct option longopts[] =
41{
42 { "daemon", no_argument, NULL, 'd'},
43 { "config_file", required_argument, NULL, 'f'},
44 { "pid_file", required_argument, NULL, 'i'},
45 { "bgp_port", required_argument, NULL, 'p'},
46 { "vty_addr", required_argument, NULL, 'A'},
47 { "vty_port", required_argument, NULL, 'P'},
48 { "retain", no_argument, NULL, 'r'},
49 { "no_kernel", no_argument, NULL, 'n'},
pauledd7c242003-06-04 13:59:38 +000050 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000051 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000052 { "version", no_argument, NULL, 'v'},
53 { "help", no_argument, NULL, 'h'},
54 { 0 }
55};
56
paul2d75d052004-01-19 21:31:15 +000057/* signal definitions */
58void sighup (void);
59void sigint (void);
60void sigusr1 (void);
61
62struct quagga_signal_t bgp_signals[] =
63{
64 {
65 .signal = SIGHUP,
66 .handler = &sighup,
67 },
68 {
69 .signal = SIGUSR1,
70 .handler = &sigusr1,
71 },
72 {
73 .signal = SIGINT,
74 .handler = &sigint,
75 },
hassof571dab2004-03-22 08:55:25 +000076 {
77 .signal = SIGTERM,
78 .handler = &sigint,
79 },
paul2d75d052004-01-19 21:31:15 +000080};
81
paul718e3742002-12-13 20:15:29 +000082/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000083char config_default[] = SYSCONFDIR BGP_DEFAULT_CONFIG;
84
85/* Route retain mode flag. */
86int retain_mode = 0;
87
88/* Master of threads. */
89struct thread_master *master;
90
91/* Manually specified configuration file name. */
92char *config_file = NULL;
93
94/* Process ID saved for use by init system */
paulfd79ac92004-10-13 05:06:08 +000095const char *pid_file = PATH_BGPD_PID;
paul718e3742002-12-13 20:15:29 +000096
97/* VTY port number and address. */
98int vty_port = BGP_VTY_PORT;
99char *vty_addr = NULL;
100
pauledd7c242003-06-04 13:59:38 +0000101/* privileges */
102zebra_capabilities_t _caps_p [] =
103{
paul98f51632004-10-25 14:19:15 +0000104 ZCAP_BIND,
paulceacedb2005-09-29 14:39:32 +0000105 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +0000106};
107
108struct zebra_privs_t bgpd_privs =
109{
pauld81fadf2003-08-14 05:32:12 +0000110#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
111 .user = QUAGGA_USER,
112 .group = QUAGGA_GROUP,
113#endif
114#ifdef VTY_GROUP
115 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +0000116#endif
117 .caps_p = _caps_p,
118 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
119 .cap_num_i = 0,
120};
121
paul718e3742002-12-13 20:15:29 +0000122/* Help information display. */
123static void
124usage (char *progname, int status)
125{
126 if (status != 0)
127 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
128 else
129 {
130 printf ("Usage : %s [OPTION...]\n\n\
131Daemon which manages kernel routing table management and \
132redistribution between different routing protocols.\n\n\
133-d, --daemon Runs in daemon mode\n\
134-f, --config_file Set configuration file name\n\
135-i, --pid_file Set process identifier file name\n\
136-p, --bgp_port Set bgp protocol's port number\n\
137-A, --vty_addr Set vty's bind address\n\
138-P, --vty_port Set vty's port number\n\
139-r, --retain When program terminates, retain added route by bgpd.\n\
140-n, --no_kernel Do not install route to kernel.\n\
hassoc0652302004-11-25 19:33:48 +0000141-u, --user User to run as\n\
142-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000143-v, --version Print program version\n\
144-h, --help Display this help and exit\n\
145\n\
146Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
147 }
148
149 exit (status);
150}
151
152/* SIGHUP handler. */
153void
paul2d75d052004-01-19 21:31:15 +0000154sighup (void)
paul718e3742002-12-13 20:15:29 +0000155{
156 zlog (NULL, LOG_INFO, "SIGHUP received");
157
158 /* Terminate all thread. */
159 bgp_terminate ();
160 bgp_reset ();
161 zlog_info ("bgpd restarting!");
162
163 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000164 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000165
166 /* Create VTY's socket */
paul4fc4e7a2003-01-22 19:47:09 +0000167 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000168
169 /* Try to return to normal operation. */
170}
171
172/* SIGINT handler. */
173void
paul2d75d052004-01-19 21:31:15 +0000174sigint (void)
paul718e3742002-12-13 20:15:29 +0000175{
ajs887c44a2004-12-03 16:36:46 +0000176 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000177
178 if (! retain_mode)
179 bgp_terminate ();
180
181 exit (0);
182}
183
184/* SIGUSR1 handler. */
185void
paul2d75d052004-01-19 21:31:15 +0000186sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000187{
188 zlog_rotate (NULL);
189}
paul718e3742002-12-13 20:15:29 +0000190
191/* Main routine of bgpd. Treatment of argument and start bgp finite
192 state machine is handled at here. */
193int
194main (int argc, char **argv)
195{
196 char *p;
197 int opt;
198 int daemon_mode = 0;
199 char *progname;
200 struct thread thread;
201
202 /* Set umask before anything for security */
203 umask (0027);
204
205 /* Preserve name of myself. */
206 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
207
ajs274a4a42004-12-07 15:39:31 +0000208 zlog_default = openzlog (progname, ZLOG_BGP,
paul718e3742002-12-13 20:15:29 +0000209 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
210
211 /* BGP master init. */
212 bgp_master_init ();
213
214 /* Command line argument treatment. */
215 while (1)
216 {
hassoc0652302004-11-25 19:33:48 +0000217 opt = getopt_long (argc, argv, "df:i:hp:A:P:rnu:g:v", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000218
219 if (opt == EOF)
220 break;
221
222 switch (opt)
223 {
224 case 0:
225 break;
226 case 'd':
227 daemon_mode = 1;
228 break;
229 case 'f':
230 config_file = optarg;
231 break;
232 case 'i':
233 pid_file = optarg;
234 break;
235 case 'p':
236 bm->port = atoi (optarg);
237 break;
238 case 'A':
239 vty_addr = optarg;
240 break;
241 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000242 /* Deal with atoi() returning 0 on failure, and bgpd not
243 listening on bgp port... */
244 if (strcmp(optarg, "0") == 0)
245 {
246 vty_port = 0;
247 break;
248 }
249 vty_port = atoi (optarg);
250 vty_port = (vty_port ? vty_port : BGP_VTY_PORT);
paul718e3742002-12-13 20:15:29 +0000251 break;
252 case 'r':
253 retain_mode = 1;
254 break;
255 case 'n':
256 bgp_option_set (BGP_OPT_NO_FIB);
257 break;
hassoc0652302004-11-25 19:33:48 +0000258 case 'u':
259 bgpd_privs.user = optarg;
260 break;
261 case 'g':
262 bgpd_privs.group = optarg;
263 break;
paul718e3742002-12-13 20:15:29 +0000264 case 'v':
265 print_version (progname);
266 exit (0);
267 break;
268 case 'h':
269 usage (progname, 0);
270 break;
271 default:
272 usage (progname, 1);
273 break;
274 }
275 }
276
277 /* Make thread master. */
278 master = bm->master;
279
280 /* Initializations. */
281 srand (time (NULL));
paul2d75d052004-01-19 21:31:15 +0000282 signal_init (master, Q_SIGC(bgp_signals), bgp_signals);
pauledd7c242003-06-04 13:59:38 +0000283 zprivs_init (&bgpd_privs);
paul718e3742002-12-13 20:15:29 +0000284 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000285 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000286 memory_init ();
287
288 /* BGP related initialization. */
289 bgp_init ();
290
291 /* Sort CLI commands. */
292 sort_node ();
293
294 /* Parse config file. */
hasso320ec102004-06-20 19:54:37 +0000295 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000296
297 /* Turn into daemon if daemon_mode is set. */
298 if (daemon_mode)
299 daemon (0, 0);
300
301 /* Process ID file creation. */
302 pid_output (pid_file);
303
304 /* Make bgp vty socket. */
305 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
306
307 /* Print banner. */
ajs887c44a2004-12-03 16:36:46 +0000308 zlog_notice ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION,
309 vty_port, bm->port);
paul718e3742002-12-13 20:15:29 +0000310
311 /* Start finite state machine, here we go! */
312 while (thread_fetch (master, &thread))
313 thread_call (&thread);
314
315 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000316 return (0);
paul718e3742002-12-13 20:15:29 +0000317}