blob: 843b124ecb06d843bc398f7ee1cd1d5b3ccc083c [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'},
Paul Jakma3a02d1f2007-11-01 14:29:11 +000046 { "listenon", required_argument, NULL, 'l'},
paul718e3742002-12-13 20:15:29 +000047 { "vty_addr", required_argument, NULL, 'A'},
48 { "vty_port", required_argument, NULL, 'P'},
49 { "retain", no_argument, NULL, 'r'},
50 { "no_kernel", no_argument, NULL, 'n'},
pauledd7c242003-06-04 13:59:38 +000051 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000052 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000053 { "version", no_argument, NULL, 'v'},
Paul Jakma876b8be2006-10-15 23:35:57 +000054 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000055 { "help", no_argument, NULL, 'h'},
56 { 0 }
57};
58
paul2d75d052004-01-19 21:31:15 +000059/* signal definitions */
60void sighup (void);
61void sigint (void);
62void sigusr1 (void);
63
64struct quagga_signal_t bgp_signals[] =
65{
66 {
67 .signal = SIGHUP,
68 .handler = &sighup,
69 },
70 {
71 .signal = SIGUSR1,
72 .handler = &sigusr1,
73 },
74 {
75 .signal = SIGINT,
76 .handler = &sigint,
77 },
hassof571dab2004-03-22 08:55:25 +000078 {
79 .signal = SIGTERM,
80 .handler = &sigint,
81 },
paul2d75d052004-01-19 21:31:15 +000082};
83
paul718e3742002-12-13 20:15:29 +000084/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000085char config_default[] = SYSCONFDIR BGP_DEFAULT_CONFIG;
86
87/* Route retain mode flag. */
88int retain_mode = 0;
89
90/* Master of threads. */
91struct thread_master *master;
92
93/* Manually specified configuration file name. */
94char *config_file = NULL;
95
96/* Process ID saved for use by init system */
paulfd79ac92004-10-13 05:06:08 +000097const char *pid_file = PATH_BGPD_PID;
paul718e3742002-12-13 20:15:29 +000098
99/* VTY port number and address. */
100int vty_port = BGP_VTY_PORT;
101char *vty_addr = NULL;
102
pauledd7c242003-06-04 13:59:38 +0000103/* privileges */
104zebra_capabilities_t _caps_p [] =
105{
paul98f51632004-10-25 14:19:15 +0000106 ZCAP_BIND,
paulceacedb2005-09-29 14:39:32 +0000107 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +0000108};
109
110struct zebra_privs_t bgpd_privs =
111{
pauld81fadf2003-08-14 05:32:12 +0000112#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
113 .user = QUAGGA_USER,
114 .group = QUAGGA_GROUP,
115#endif
116#ifdef VTY_GROUP
117 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +0000118#endif
119 .caps_p = _caps_p,
120 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
121 .cap_num_i = 0,
122};
123
paul718e3742002-12-13 20:15:29 +0000124/* Help information display. */
125static void
126usage (char *progname, int status)
127{
128 if (status != 0)
129 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
130 else
131 {
132 printf ("Usage : %s [OPTION...]\n\n\
133Daemon which manages kernel routing table management and \
134redistribution between different routing protocols.\n\n\
135-d, --daemon Runs in daemon mode\n\
136-f, --config_file Set configuration file name\n\
137-i, --pid_file Set process identifier file name\n\
138-p, --bgp_port Set bgp protocol's port number\n\
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000139-l, --listenon Listen on specified address (implies -n)\n\
paul718e3742002-12-13 20:15:29 +0000140-A, --vty_addr Set vty's bind address\n\
141-P, --vty_port Set vty's port number\n\
142-r, --retain When program terminates, retain added route by bgpd.\n\
143-n, --no_kernel Do not install route to kernel.\n\
hassoc0652302004-11-25 19:33:48 +0000144-u, --user User to run as\n\
145-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000146-v, --version Print program version\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000147-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000148-h, --help Display this help and exit\n\
149\n\
150Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
151 }
152
153 exit (status);
154}
155
156/* SIGHUP handler. */
157void
paul2d75d052004-01-19 21:31:15 +0000158sighup (void)
paul718e3742002-12-13 20:15:29 +0000159{
160 zlog (NULL, LOG_INFO, "SIGHUP received");
161
162 /* Terminate all thread. */
163 bgp_terminate ();
164 bgp_reset ();
165 zlog_info ("bgpd restarting!");
166
167 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000168 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000169
170 /* Create VTY's socket */
paul4fc4e7a2003-01-22 19:47:09 +0000171 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000172
173 /* Try to return to normal operation. */
174}
175
176/* SIGINT handler. */
177void
paul2d75d052004-01-19 21:31:15 +0000178sigint (void)
paul718e3742002-12-13 20:15:29 +0000179{
ajs887c44a2004-12-03 16:36:46 +0000180 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000181
182 if (! retain_mode)
183 bgp_terminate ();
184
185 exit (0);
186}
187
188/* SIGUSR1 handler. */
189void
paul2d75d052004-01-19 21:31:15 +0000190sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000191{
192 zlog_rotate (NULL);
193}
paul718e3742002-12-13 20:15:29 +0000194
195/* Main routine of bgpd. Treatment of argument and start bgp finite
196 state machine is handled at here. */
197int
198main (int argc, char **argv)
199{
200 char *p;
201 int opt;
202 int daemon_mode = 0;
Paul Jakma876b8be2006-10-15 23:35:57 +0000203 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000204 char *progname;
205 struct thread thread;
206
207 /* Set umask before anything for security */
208 umask (0027);
209
210 /* Preserve name of myself. */
211 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
212
ajs274a4a42004-12-07 15:39:31 +0000213 zlog_default = openzlog (progname, ZLOG_BGP,
paul718e3742002-12-13 20:15:29 +0000214 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
215
216 /* BGP master init. */
217 bgp_master_init ();
218
219 /* Command line argument treatment. */
220 while (1)
221 {
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000222 opt = getopt_long (argc, argv, "df:i:hp:l:A:P:rnu:g:vC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000223
224 if (opt == EOF)
225 break;
226
227 switch (opt)
228 {
229 case 0:
230 break;
231 case 'd':
232 daemon_mode = 1;
233 break;
234 case 'f':
235 config_file = optarg;
236 break;
237 case 'i':
238 pid_file = optarg;
239 break;
240 case 'p':
241 bm->port = atoi (optarg);
242 break;
243 case 'A':
244 vty_addr = optarg;
245 break;
246 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000247 /* Deal with atoi() returning 0 on failure, and bgpd not
248 listening on bgp port... */
249 if (strcmp(optarg, "0") == 0)
250 {
251 vty_port = 0;
252 break;
253 }
254 vty_port = atoi (optarg);
255 vty_port = (vty_port ? vty_port : BGP_VTY_PORT);
paul718e3742002-12-13 20:15:29 +0000256 break;
257 case 'r':
258 retain_mode = 1;
259 break;
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000260 case 'l':
261 bm->address = optarg;
262 /* listenon implies -n */
paul718e3742002-12-13 20:15:29 +0000263 case 'n':
264 bgp_option_set (BGP_OPT_NO_FIB);
265 break;
hassoc0652302004-11-25 19:33:48 +0000266 case 'u':
267 bgpd_privs.user = optarg;
268 break;
269 case 'g':
270 bgpd_privs.group = optarg;
271 break;
paul718e3742002-12-13 20:15:29 +0000272 case 'v':
273 print_version (progname);
274 exit (0);
275 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000276 case 'C':
277 dryrun = 1;
278 break;
paul718e3742002-12-13 20:15:29 +0000279 case 'h':
280 usage (progname, 0);
281 break;
282 default:
283 usage (progname, 1);
284 break;
285 }
286 }
287
288 /* Make thread master. */
289 master = bm->master;
290
291 /* Initializations. */
292 srand (time (NULL));
paul2d75d052004-01-19 21:31:15 +0000293 signal_init (master, Q_SIGC(bgp_signals), bgp_signals);
pauledd7c242003-06-04 13:59:38 +0000294 zprivs_init (&bgpd_privs);
paul718e3742002-12-13 20:15:29 +0000295 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000296 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000297 memory_init ();
298
299 /* BGP related initialization. */
300 bgp_init ();
301
302 /* Sort CLI commands. */
303 sort_node ();
304
305 /* Parse config file. */
hasso320ec102004-06-20 19:54:37 +0000306 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000307
Paul Jakma876b8be2006-10-15 23:35:57 +0000308 /* Start execution only if not in dry-run mode */
309 if(dryrun)
310 return(0);
311
paul718e3742002-12-13 20:15:29 +0000312 /* Turn into daemon if daemon_mode is set. */
313 if (daemon_mode)
314 daemon (0, 0);
315
316 /* Process ID file creation. */
317 pid_output (pid_file);
318
319 /* Make bgp vty socket. */
320 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
321
322 /* Print banner. */
Paul Jakma3a02d1f2007-11-01 14:29:11 +0000323 zlog_notice ("BGPd %s starting: vty@%d, bgp@%s:%d", QUAGGA_VERSION,
324 vty_port, bm->address, bm->port);
paul718e3742002-12-13 20:15:29 +0000325
326 /* Start finite state machine, here we go! */
327 while (thread_fetch (master, &thread))
328 thread_call (&thread);
329
330 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000331 return (0);
paul718e3742002-12-13 20:15:29 +0000332}