blob: 57b5f3af2ae6838c9830e90cb7d4f35c0c2e0bd4 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* RIPd main routine.
2 * Copyright (C) 1997, 98 Kunihiro Ishiguro <kunihiro@zebra.org>
3 *
4 * This file is part of GNU Zebra.
5 *
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
9 * later version.
10 *
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.
15 *
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
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
gdt5e4fa162004-03-16 14:38:36 +000024#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000025#include "getopt.h"
26#include "thread.h"
27#include "command.h"
28#include "memory.h"
29#include "prefix.h"
30#include "filter.h"
31#include "keychain.h"
32#include "log.h"
pauledd7c242003-06-04 13:59:38 +000033#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000034#include "sigevent.h"
paul718e3742002-12-13 20:15:29 +000035
36#include "ripd/ripd.h"
37
38/* ripd options. */
39static struct option longopts[] =
40{
41 { "daemon", no_argument, NULL, 'd'},
42 { "config_file", required_argument, NULL, 'f'},
43 { "pid_file", required_argument, NULL, 'i'},
44 { "help", no_argument, NULL, 'h'},
Paul Jakma876b8be2006-10-15 23:35:57 +000045 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000046 { "vty_addr", required_argument, NULL, 'A'},
47 { "vty_port", required_argument, NULL, 'P'},
48 { "retain", no_argument, NULL, 'r'},
pauledd7c242003-06-04 13:59:38 +000049 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000050 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000051 { "version", no_argument, NULL, 'v'},
52 { 0 }
53};
54
pauledd7c242003-06-04 13:59:38 +000055/* ripd privileges */
56zebra_capabilities_t _caps_p [] =
57{
paulceacedb2005-09-29 14:39:32 +000058 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000059 ZCAP_BIND
60};
61
62struct zebra_privs_t ripd_privs =
63{
pauld81fadf2003-08-14 05:32:12 +000064#if defined(QUAGGA_USER)
65 .user = QUAGGA_USER,
pauledd7c242003-06-04 13:59:38 +000066#endif
pauld81fadf2003-08-14 05:32:12 +000067#if defined QUAGGA_GROUP
68 .group = QUAGGA_GROUP,
69#endif
70#ifdef VTY_GROUP
71 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +000072#endif
73 .caps_p = _caps_p,
74 .cap_num_p = 2,
75 .cap_num_i = 0
76};
77
paul718e3742002-12-13 20:15:29 +000078/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000079char config_default[] = SYSCONFDIR RIPD_DEFAULT_CONFIG;
80char *config_file = NULL;
81
82/* ripd program name */
83
84/* Route retain mode flag. */
85int retain_mode = 0;
86
87/* RIP VTY bind address. */
88char *vty_addr = NULL;
89
90/* RIP VTY connection port. */
91int vty_port = RIP_VTY_PORT;
92
93/* Master of threads. */
94struct thread_master *master;
95
96/* Process ID saved for use by init system */
hasso8a676be2004-10-08 06:36:38 +000097const char *pid_file = PATH_RIPD_PID;
paul718e3742002-12-13 20:15:29 +000098
99/* Help information display. */
100static void
101usage (char *progname, int status)
102{
103 if (status != 0)
104 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
105 else
106 {
107 printf ("Usage : %s [OPTION...]\n\
108Daemon which manages RIP version 1 and 2.\n\n\
109-d, --daemon Runs in daemon mode\n\
110-f, --config_file Set configuration file name\n\
111-i, --pid_file Set process identifier file name\n\
112-A, --vty_addr Set vty's bind address\n\
113-P, --vty_port Set vty's port number\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000114-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000115-r, --retain When program terminates, retain added route by ripd.\n\
hassoc0652302004-11-25 19:33:48 +0000116-u, --user User to run as\n\
117-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000118-v, --version Print program version\n\
119-h, --help Display this help and exit\n\
120\n\
121Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
122 }
123
124 exit (status);
125}
126
paul718e3742002-12-13 20:15:29 +0000127/* SIGHUP handler. */
pauldc63bfd2005-10-25 23:31:05 +0000128static void
paul2d75d052004-01-19 21:31:15 +0000129sighup (void)
paul718e3742002-12-13 20:15:29 +0000130{
131 zlog_info ("SIGHUP received");
132 rip_clean ();
133 rip_reset ();
134 zlog_info ("ripd restarting!");
135
136 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000137 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000138
139 /* Create VTY's socket */
140 vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH);
141
142 /* Try to return to normal operation. */
143}
144
145/* SIGINT handler. */
pauldc63bfd2005-10-25 23:31:05 +0000146static void
paul2d75d052004-01-19 21:31:15 +0000147sigint (void)
paul718e3742002-12-13 20:15:29 +0000148{
ajs887c44a2004-12-03 16:36:46 +0000149 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000150
151 if (! retain_mode)
152 rip_clean ();
153
154 exit (0);
155}
156
157/* SIGUSR1 handler. */
pauldc63bfd2005-10-25 23:31:05 +0000158static void
paul2d75d052004-01-19 21:31:15 +0000159sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000160{
161 zlog_rotate (NULL);
162}
163
pauldc63bfd2005-10-25 23:31:05 +0000164static struct quagga_signal_t ripd_signals[] =
paul718e3742002-12-13 20:15:29 +0000165{
paul2d75d052004-01-19 21:31:15 +0000166 {
167 .signal = SIGHUP,
168 .handler = &sighup,
169 },
170 {
171 .signal = SIGUSR1,
172 .handler = &sigusr1,
173 },
174 {
175 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000176 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000177 },
hassof571dab2004-03-22 08:55:25 +0000178 {
179 .signal = SIGTERM,
180 .handler = &sigint,
181 },
paul2d75d052004-01-19 21:31:15 +0000182};
paul718e3742002-12-13 20:15:29 +0000183
184/* Main routine of ripd. */
185int
186main (int argc, char **argv)
187{
188 char *p;
189 int daemon_mode = 0;
Paul Jakma876b8be2006-10-15 23:35:57 +0000190 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000191 char *progname;
192 struct thread thread;
193
194 /* Set umask before anything for security */
195 umask (0027);
196
197 /* Get program name. */
198 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
199
200 /* First of all we need logging init. */
ajs274a4a42004-12-07 15:39:31 +0000201 zlog_default = openzlog (progname, ZLOG_RIP,
paul718e3742002-12-13 20:15:29 +0000202 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
203
204 /* Command line option parse. */
205 while (1)
206 {
207 int opt;
208
Paul Jakma876b8be2006-10-15 23:35:57 +0000209 opt = getopt_long (argc, argv, "df:i:hA:P:u:g:rvC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000210
211 if (opt == EOF)
212 break;
213
214 switch (opt)
215 {
216 case 0:
217 break;
218 case 'd':
219 daemon_mode = 1;
220 break;
221 case 'f':
222 config_file = optarg;
223 break;
224 case 'A':
225 vty_addr = optarg;
226 break;
227 case 'i':
228 pid_file = optarg;
229 break;
230 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000231 /* Deal with atoi() returning 0 on failure, and ripd not
232 listening on rip port... */
233 if (strcmp(optarg, "0") == 0)
234 {
235 vty_port = 0;
236 break;
237 }
238 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000239 if (vty_port <= 0 || vty_port > 0xffff)
240 vty_port = RIP_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000241 break;
242 case 'r':
243 retain_mode = 1;
244 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000245 case 'C':
246 dryrun = 1;
247 break;
hassoc0652302004-11-25 19:33:48 +0000248 case 'u':
249 ripd_privs.user = optarg;
250 break;
251 case 'g':
252 ripd_privs.group = optarg;
253 break;
paul718e3742002-12-13 20:15:29 +0000254 case 'v':
255 print_version (progname);
256 exit (0);
257 break;
258 case 'h':
259 usage (progname, 0);
260 break;
261 default:
262 usage (progname, 1);
263 break;
264 }
265 }
266
267 /* Prepare master thread. */
268 master = thread_master_create ();
269
270 /* Library initialization. */
pauledd7c242003-06-04 13:59:38 +0000271 zprivs_init (&ripd_privs);
paul2d75d052004-01-19 21:31:15 +0000272 signal_init (master, Q_SIGC(ripd_signals), ripd_signals);
paul718e3742002-12-13 20:15:29 +0000273 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000274 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000275 memory_init ();
276 keychain_init ();
277
278 /* RIP related initialization. */
279 rip_init ();
280 rip_if_init ();
281 rip_zclient_init ();
282 rip_peer_init ();
283
284 /* Sort all installed commands. */
285 sort_node ();
286
287 /* Get configuration file. */
hasso320ec102004-06-20 19:54:37 +0000288 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000289
Paul Jakma876b8be2006-10-15 23:35:57 +0000290 /* Start execution only if not in dry-run mode */
291 if(dryrun)
292 return (0);
293
paul718e3742002-12-13 20:15:29 +0000294 /* Change to the daemon program. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700295 if (daemon_mode && daemon (0, 0) < 0)
296 {
297 zlog_err("RIPd daemon failed: %s", strerror(errno));
298 exit (1);
299 }
paul718e3742002-12-13 20:15:29 +0000300
301 /* Pid file create. */
302 pid_output (pid_file);
303
304 /* Create VTY's socket */
305 vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH);
306
ajs887c44a2004-12-03 16:36:46 +0000307 /* Print banner. */
308 zlog_notice ("RIPd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
309
paul718e3742002-12-13 20:15:29 +0000310 /* Execute each thread. */
311 while (thread_fetch (master, &thread))
312 thread_call (&thread);
313
314 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000315 return (0);
paul718e3742002-12-13 20:15:29 +0000316}