]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_main.c
2004-10-13 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / bgpd / bgp_main.c
CommitLineData
718e3744 1/* 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"
5e4fa164 28#include <lib/version.h>
718e3744 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 "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'},
edd7c245 50 { "user", required_argument, NULL, 'u'},
718e3744 51 { "version", no_argument, NULL, 'v'},
52 { "help", no_argument, NULL, 'h'},
53 { 0 }
54};
55
2d75d052 56/* signal definitions */
57void sighup (void);
58void sigint (void);
59void sigusr1 (void);
60
61struct quagga_signal_t bgp_signals[] =
62{
63 {
64 .signal = SIGHUP,
65 .handler = &sighup,
66 },
67 {
68 .signal = SIGUSR1,
69 .handler = &sigusr1,
70 },
71 {
72 .signal = SIGINT,
73 .handler = &sigint,
f571dab0 74 },
75 {
76 .signal = SIGTERM,
77 .handler = &sigint,
2d75d052 78 },
79};
80
718e3744 81/* Configuration file and directory. */
718e3744 82char config_default[] = SYSCONFDIR BGP_DEFAULT_CONFIG;
83
84/* Route retain mode flag. */
85int retain_mode = 0;
86
87/* Master of threads. */
88struct thread_master *master;
89
90/* Manually specified configuration file name. */
91char *config_file = NULL;
92
93/* Process ID saved for use by init system */
fd79ac91 94const char *pid_file = PATH_BGPD_PID;
718e3744 95
96/* VTY port number and address. */
97int vty_port = BGP_VTY_PORT;
98char *vty_addr = NULL;
99
edd7c245 100/* privileges */
101zebra_capabilities_t _caps_p [] =
102{
103 ZCAP_BIND,
104};
105
106struct zebra_privs_t bgpd_privs =
107{
d81fadfd 108#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
109 .user = QUAGGA_USER,
110 .group = QUAGGA_GROUP,
111#endif
112#ifdef VTY_GROUP
113 .vty_group = VTY_GROUP,
edd7c245 114#endif
115 .caps_p = _caps_p,
116 .cap_num_p = sizeof(_caps_p)/sizeof(_caps_p[0]),
117 .cap_num_i = 0,
118};
119
718e3744 120/* Help information display. */
121static void
122usage (char *progname, int status)
123{
124 if (status != 0)
125 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
126 else
127 {
128 printf ("Usage : %s [OPTION...]\n\n\
129Daemon which manages kernel routing table management and \
130redistribution between different routing protocols.\n\n\
131-d, --daemon Runs in daemon mode\n\
132-f, --config_file Set configuration file name\n\
133-i, --pid_file Set process identifier file name\n\
134-p, --bgp_port Set bgp protocol's port number\n\
135-A, --vty_addr Set vty's bind address\n\
136-P, --vty_port Set vty's port number\n\
137-r, --retain When program terminates, retain added route by bgpd.\n\
138-n, --no_kernel Do not install route to kernel.\n\
edd7c245 139-u, --user User and group to run as\n\
718e3744 140-v, --version Print program version\n\
141-h, --help Display this help and exit\n\
142\n\
143Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
144 }
145
146 exit (status);
147}
148\f
149/* SIGHUP handler. */
150void
2d75d052 151sighup (void)
718e3744 152{
153 zlog (NULL, LOG_INFO, "SIGHUP received");
154
155 /* Terminate all thread. */
156 bgp_terminate ();
157 bgp_reset ();
158 zlog_info ("bgpd restarting!");
159
160 /* Reload config file. */
320ec10a 161 vty_read_config (config_file, config_default);
718e3744 162
163 /* Create VTY's socket */
4fc4e7ab 164 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
718e3744 165
166 /* Try to return to normal operation. */
167}
168
169/* SIGINT handler. */
170void
2d75d052 171sigint (void)
718e3744 172{
173 zlog (NULL, LOG_INFO, "Terminating on signal");
174
175 if (! retain_mode)
176 bgp_terminate ();
177
178 exit (0);
179}
180
181/* SIGUSR1 handler. */
182void
2d75d052 183sigusr1 (void)
718e3744 184{
185 zlog_rotate (NULL);
186}
718e3744 187\f
188/* Main routine of bgpd. Treatment of argument and start bgp finite
189 state machine is handled at here. */
190int
191main (int argc, char **argv)
192{
193 char *p;
194 int opt;
195 int daemon_mode = 0;
196 char *progname;
197 struct thread thread;
198
199 /* Set umask before anything for security */
200 umask (0027);
201
202 /* Preserve name of myself. */
203 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
204
205 zlog_default = openzlog (progname, ZLOG_NOLOG, ZLOG_BGP,
206 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
207
208 /* BGP master init. */
209 bgp_master_init ();
210
211 /* Command line argument treatment. */
212 while (1)
213 {
96735eea 214 opt = getopt_long (argc, argv, "df:i:hp:A:P:rnu:v", longopts, 0);
718e3744 215
216 if (opt == EOF)
217 break;
218
219 switch (opt)
220 {
221 case 0:
222 break;
223 case 'd':
224 daemon_mode = 1;
225 break;
226 case 'f':
227 config_file = optarg;
228 break;
229 case 'i':
230 pid_file = optarg;
231 break;
232 case 'p':
233 bm->port = atoi (optarg);
234 break;
235 case 'A':
236 vty_addr = optarg;
237 break;
238 case 'P':
4fc4e7ab 239 /* Deal with atoi() returning 0 on failure, and bgpd not
240 listening on bgp port... */
241 if (strcmp(optarg, "0") == 0)
242 {
243 vty_port = 0;
244 break;
245 }
246 vty_port = atoi (optarg);
247 vty_port = (vty_port ? vty_port : BGP_VTY_PORT);
718e3744 248 break;
249 case 'r':
250 retain_mode = 1;
251 break;
252 case 'n':
253 bgp_option_set (BGP_OPT_NO_FIB);
254 break;
edd7c245 255 case 'u':
256 bgpd_privs.user = bgpd_privs.group = optarg;
257 break;
718e3744 258 case 'v':
259 print_version (progname);
260 exit (0);
261 break;
262 case 'h':
263 usage (progname, 0);
264 break;
265 default:
266 usage (progname, 1);
267 break;
268 }
269 }
270
271 /* Make thread master. */
272 master = bm->master;
273
274 /* Initializations. */
275 srand (time (NULL));
2d75d052 276 signal_init (master, Q_SIGC(bgp_signals), bgp_signals);
edd7c245 277 zprivs_init (&bgpd_privs);
718e3744 278 cmd_init (1);
b21b19c5 279 vty_init (master);
718e3744 280 memory_init ();
281
282 /* BGP related initialization. */
283 bgp_init ();
284
285 /* Sort CLI commands. */
286 sort_node ();
287
288 /* Parse config file. */
320ec10a 289 vty_read_config (config_file, config_default);
718e3744 290
291 /* Turn into daemon if daemon_mode is set. */
292 if (daemon_mode)
293 daemon (0, 0);
294
295 /* Process ID file creation. */
296 pid_output (pid_file);
297
298 /* Make bgp vty socket. */
299 vty_serv_sock (vty_addr, vty_port, BGP_VTYSH_PATH);
300
301 /* Print banner. */
e8f2984c 302 zlog_info ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION,
718e3744 303 vty_port, bm->port);
304
305 /* Start finite state machine, here we go! */
306 while (thread_fetch (master, &thread))
307 thread_call (&thread);
308
309 /* Not reached. */
310 exit (0);
311}