blob: ecfe62ef1cc7fe247aa49b62bcf2dac434562427 [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'},
Paul Jakma876b8be2006-10-15 23:35:57 +000053 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000054 { "help", no_argument, NULL, 'h'},
55 { 0 }
56};
57
paul2d75d052004-01-19 21:31:15 +000058/* signal definitions */
59void sighup (void);
60void sigint (void);
61void sigusr1 (void);
62
63struct quagga_signal_t bgp_signals[] =
64{
65 {
66 .signal = SIGHUP,
67 .handler = &sighup,
68 },
69 {
70 .signal = SIGUSR1,
71 .handler = &sigusr1,
72 },
73 {
74 .signal = SIGINT,
75 .handler = &sigint,
76 },
hassof571dab2004-03-22 08:55:25 +000077 {
78 .signal = SIGTERM,
79 .handler = &sigint,
80 },
paul2d75d052004-01-19 21:31:15 +000081};
82
paul718e3742002-12-13 20:15:29 +000083/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000084char config_default[] = SYSCONFDIR BGP_DEFAULT_CONFIG;
85
86/* Route retain mode flag. */
87int retain_mode = 0;
88
89/* Master of threads. */
90struct thread_master *master;
91
92/* Manually specified configuration file name. */
93char *config_file = NULL;
94
95/* Process ID saved for use by init system */
paulfd79ac92004-10-13 05:06:08 +000096const char *pid_file = PATH_BGPD_PID;
paul718e3742002-12-13 20:15:29 +000097
98/* VTY port number and address. */
99int vty_port = BGP_VTY_PORT;
100char *vty_addr = NULL;
101
pauledd7c242003-06-04 13:59:38 +0000102/* privileges */
103zebra_capabilities_t _caps_p [] =
104{
paul98f51632004-10-25 14:19:15 +0000105 ZCAP_BIND,
paulceacedb2005-09-29 14:39:32 +0000106 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +0000107};
108
109struct zebra_privs_t bgpd_privs =
110{
pauld81fadf2003-08-14 05:32:12 +0000111#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
112 .user = QUAGGA_USER,
113 .group = QUAGGA_GROUP,
114#endif
115#ifdef VTY_GROUP
116 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +0000117#endif
118 .caps_p = _caps_p,
119 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
120 .cap_num_i = 0,
121};
122
paul718e3742002-12-13 20:15:29 +0000123/* Help information display. */
124static void
125usage (char *progname, int status)
126{
127 if (status != 0)
128 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
129 else
130 {
131 printf ("Usage : %s [OPTION...]\n\n\
132Daemon which manages kernel routing table management and \
133redistribution between different routing protocols.\n\n\
134-d, --daemon Runs in daemon mode\n\
135-f, --config_file Set configuration file name\n\
136-i, --pid_file Set process identifier file name\n\
137-p, --bgp_port Set bgp protocol's port number\n\
138-A, --vty_addr Set vty's bind address\n\
139-P, --vty_port Set vty's port number\n\
140-r, --retain When program terminates, retain added route by bgpd.\n\
141-n, --no_kernel Do not install route to kernel.\n\
hassoc0652302004-11-25 19:33:48 +0000142-u, --user User to run as\n\
143-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000144-v, --version Print program version\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000145-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000146-h, --help Display this help and exit\n\
147\n\
148Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
149 }
150
151 exit (status);
152}
153
154/* SIGHUP handler. */
155void
paul2d75d052004-01-19 21:31:15 +0000156sighup (void)
paul718e3742002-12-13 20:15:29 +0000157{
158 zlog (NULL, LOG_INFO, "SIGHUP received");
159
160 /* Terminate all thread. */
161 bgp_terminate ();
162 bgp_reset ();
163 zlog_info ("bgpd restarting!");
164
165 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000166 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000167
168 /* Create VTY's socket */
paul4fc4e7a2003-01-22 19:47:09 +0000169 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000170
171 /* Try to return to normal operation. */
172}
173
174/* SIGINT handler. */
175void
paul2d75d052004-01-19 21:31:15 +0000176sigint (void)
paul718e3742002-12-13 20:15:29 +0000177{
ajs887c44a2004-12-03 16:36:46 +0000178 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000179
180 if (! retain_mode)
181 bgp_terminate ();
182
183 exit (0);
184}
185
186/* SIGUSR1 handler. */
187void
paul2d75d052004-01-19 21:31:15 +0000188sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000189{
190 zlog_rotate (NULL);
191}
paul718e3742002-12-13 20:15:29 +0000192
193/* Main routine of bgpd. Treatment of argument and start bgp finite
194 state machine is handled at here. */
195int
196main (int argc, char **argv)
197{
198 char *p;
199 int opt;
200 int daemon_mode = 0;
Paul Jakma876b8be2006-10-15 23:35:57 +0000201 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000202 char *progname;
203 struct thread thread;
204
205 /* Set umask before anything for security */
206 umask (0027);
207
208 /* Preserve name of myself. */
209 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
210
ajs274a4a42004-12-07 15:39:31 +0000211 zlog_default = openzlog (progname, ZLOG_BGP,
paul718e3742002-12-13 20:15:29 +0000212 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
213
214 /* BGP master init. */
215 bgp_master_init ();
216
217 /* Command line argument treatment. */
218 while (1)
219 {
Paul Jakma876b8be2006-10-15 23:35:57 +0000220 opt = getopt_long (argc, argv, "df:i:hp:A:P:rnu:g:vC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000221
222 if (opt == EOF)
223 break;
224
225 switch (opt)
226 {
227 case 0:
228 break;
229 case 'd':
230 daemon_mode = 1;
231 break;
232 case 'f':
233 config_file = optarg;
234 break;
235 case 'i':
236 pid_file = optarg;
237 break;
238 case 'p':
239 bm->port = atoi (optarg);
240 break;
241 case 'A':
242 vty_addr = optarg;
243 break;
244 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000245 /* Deal with atoi() returning 0 on failure, and bgpd not
246 listening on bgp port... */
247 if (strcmp(optarg, "0") == 0)
248 {
249 vty_port = 0;
250 break;
251 }
252 vty_port = atoi (optarg);
253 vty_port = (vty_port ? vty_port : BGP_VTY_PORT);
paul718e3742002-12-13 20:15:29 +0000254 break;
255 case 'r':
256 retain_mode = 1;
257 break;
258 case 'n':
259 bgp_option_set (BGP_OPT_NO_FIB);
260 break;
hassoc0652302004-11-25 19:33:48 +0000261 case 'u':
262 bgpd_privs.user = optarg;
263 break;
264 case 'g':
265 bgpd_privs.group = optarg;
266 break;
paul718e3742002-12-13 20:15:29 +0000267 case 'v':
268 print_version (progname);
269 exit (0);
270 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000271 case 'C':
272 dryrun = 1;
273 break;
paul718e3742002-12-13 20:15:29 +0000274 case 'h':
275 usage (progname, 0);
276 break;
277 default:
278 usage (progname, 1);
279 break;
280 }
281 }
282
283 /* Make thread master. */
284 master = bm->master;
285
286 /* Initializations. */
287 srand (time (NULL));
paul2d75d052004-01-19 21:31:15 +0000288 signal_init (master, Q_SIGC(bgp_signals), bgp_signals);
pauledd7c242003-06-04 13:59:38 +0000289 zprivs_init (&bgpd_privs);
paul718e3742002-12-13 20:15:29 +0000290 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000291 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000292 memory_init ();
293
294 /* BGP related initialization. */
295 bgp_init ();
296
297 /* Sort CLI commands. */
298 sort_node ();
299
300 /* Parse config file. */
hasso320ec102004-06-20 19:54:37 +0000301 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000302
Paul Jakma876b8be2006-10-15 23:35:57 +0000303 /* Start execution only if not in dry-run mode */
304 if(dryrun)
305 return(0);
306
paul718e3742002-12-13 20:15:29 +0000307 /* Turn into daemon if daemon_mode is set. */
308 if (daemon_mode)
309 daemon (0, 0);
310
311 /* Process ID file creation. */
312 pid_output (pid_file);
313
314 /* Make bgp vty socket. */
315 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
316
317 /* Print banner. */
ajs887c44a2004-12-03 16:36:46 +0000318 zlog_notice ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION,
319 vty_port, bm->port);
paul718e3742002-12-13 20:15:29 +0000320
321 /* Start finite state machine, here we go! */
322 while (thread_fetch (master, &thread))
323 thread_call (&thread);
324
325 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000326 return (0);
paul718e3742002-12-13 20:15:29 +0000327}