1 /* Main routine of bgpd.
2 Copyright (C) 1996, 97, 98, 1999 Kunihiro Ishiguro
4 This file is part of GNU Zebra.
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
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.
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
28 #include <lib/version.h>
35 #include "bgpd/bgpd.h"
36 #include "bgpd/bgp_attr.h"
37 #include "bgpd/bgp_mplsvpn.h"
39 /* bgpd options, we use GNU getopt library. */
40 struct option longopts
[] =
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'},
50 { "user", required_argument
, NULL
, 'u'},
51 { "group", required_argument
, NULL
, 'g'},
52 { "version", no_argument
, NULL
, 'v'},
53 { "help", no_argument
, NULL
, 'h'},
57 /* signal definitions */
62 struct quagga_signal_t bgp_signals
[] =
82 /* Configuration file and directory. */
83 char config_default
[] = SYSCONFDIR BGP_DEFAULT_CONFIG
;
85 /* Route retain mode flag. */
88 /* Master of threads. */
89 struct thread_master
*master
;
91 /* Manually specified configuration file name. */
92 char *config_file
= NULL
;
94 /* Process ID saved for use by init system */
95 const char *pid_file
= PATH_BGPD_PID
;
97 /* VTY port number and address. */
98 int vty_port
= BGP_VTY_PORT
;
99 char *vty_addr
= NULL
;
102 zebra_capabilities_t _caps_p
[] =
108 struct zebra_privs_t bgpd_privs
=
110 #if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
112 .group
= QUAGGA_GROUP
,
115 .vty_group
= VTY_GROUP
,
118 .cap_num_p
= sizeof(_caps_p
)/sizeof(_caps_p
[0]),
122 /* Help information display. */
124 usage (char *progname
, int status
)
127 fprintf (stderr
, "Try `%s --help' for more information.\n", progname
);
130 printf ("Usage : %s [OPTION...]\n\n\
131 Daemon which manages kernel routing table management and \
132 redistribution 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\
141 -u, --user User to run as\n\
142 -g, --group Group to run as\n\
143 -v, --version Print program version\n\
144 -h, --help Display this help and exit\n\
146 Report bugs to %s\n", progname
, ZEBRA_BUG_ADDRESS
);
152 /* SIGHUP handler. */
156 zlog (NULL
, LOG_INFO
, "SIGHUP received");
158 /* Terminate all thread. */
161 zlog_info ("bgpd restarting!");
163 /* Reload config file. */
164 vty_read_config (config_file
, config_default
);
166 /* Create VTY's socket */
167 vty_serv_sock (vty_addr
, vty_port
, BGP_VTYSH_PATH
);
169 /* Try to return to normal operation. */
172 /* SIGINT handler. */
176 zlog_notice ("Terminating on signal");
184 /* SIGUSR1 handler. */
191 /* Main routine of bgpd. Treatment of argument and start bgp finite
192 state machine is handled at here. */
194 main (int argc
, char **argv
)
200 struct thread thread
;
202 /* Set umask before anything for security */
205 /* Preserve name of myself. */
206 progname
= ((p
= strrchr (argv
[0], '/')) ? ++p
: argv
[0]);
208 zlog_default
= openzlog (progname
, ZLOG_BGP
,
209 LOG_CONS
|LOG_NDELAY
|LOG_PID
, LOG_DAEMON
);
211 /* BGP master init. */
214 /* Command line argument treatment. */
217 opt
= getopt_long (argc
, argv
, "df:i:hp:A:P:rnu:g:v", longopts
, 0);
230 config_file
= optarg
;
236 bm
->port
= atoi (optarg
);
242 /* Deal with atoi() returning 0 on failure, and bgpd not
243 listening on bgp port... */
244 if (strcmp(optarg
, "0") == 0)
249 vty_port
= atoi (optarg
);
250 vty_port
= (vty_port
? vty_port
: BGP_VTY_PORT
);
256 bgp_option_set (BGP_OPT_NO_FIB
);
259 bgpd_privs
.user
= optarg
;
262 bgpd_privs
.group
= optarg
;
265 print_version (progname
);
277 /* Make thread master. */
280 /* Initializations. */
282 signal_init (master
, Q_SIGC(bgp_signals
), bgp_signals
);
283 zprivs_init (&bgpd_privs
);
288 /* BGP related initialization. */
291 /* Sort CLI commands. */
294 /* Parse config file. */
295 vty_read_config (config_file
, config_default
);
297 /* Turn into daemon if daemon_mode is set. */
301 /* Process ID file creation. */
302 pid_output (pid_file
);
304 /* Make bgp vty socket. */
305 vty_serv_sock (vty_addr
, vty_port
, BGP_VTYSH_PATH
);
308 zlog_notice ("BGPd %s starting: vty@%d, bgp@%d", QUAGGA_VERSION
,
311 /* Start finite state machine, here we go! */
312 while (thread_fetch (master
, &thread
))
313 thread_call (&thread
);