blob: ccb5fa012678934537a2db178540155cd593a8df [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"
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040035#include "zclient.h"
paul718e3742002-12-13 20:15:29 +000036
37#include "ripd/ripd.h"
38
39/* ripd options. */
40static struct option longopts[] =
41{
42 { "daemon", no_argument, NULL, 'd'},
43 { "config_file", required_argument, NULL, 'f'},
44 { "pid_file", required_argument, NULL, 'i'},
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040045 { "socket", required_argument, NULL, 'z'},
paul718e3742002-12-13 20:15:29 +000046 { "help", no_argument, NULL, 'h'},
Paul Jakma876b8be2006-10-15 23:35:57 +000047 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000048 { "vty_addr", required_argument, NULL, 'A'},
49 { "vty_port", required_argument, NULL, 'P'},
50 { "retain", no_argument, NULL, 'r'},
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'},
54 { 0 }
55};
56
pauledd7c242003-06-04 13:59:38 +000057/* ripd privileges */
58zebra_capabilities_t _caps_p [] =
59{
paulceacedb2005-09-29 14:39:32 +000060 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000061 ZCAP_BIND
62};
63
64struct zebra_privs_t ripd_privs =
65{
pauld81fadf2003-08-14 05:32:12 +000066#if defined(QUAGGA_USER)
67 .user = QUAGGA_USER,
pauledd7c242003-06-04 13:59:38 +000068#endif
pauld81fadf2003-08-14 05:32:12 +000069#if defined QUAGGA_GROUP
70 .group = QUAGGA_GROUP,
71#endif
72#ifdef VTY_GROUP
73 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +000074#endif
75 .caps_p = _caps_p,
76 .cap_num_p = 2,
77 .cap_num_i = 0
78};
79
paul718e3742002-12-13 20:15:29 +000080/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000081char config_default[] = SYSCONFDIR RIPD_DEFAULT_CONFIG;
82char *config_file = NULL;
83
84/* ripd program name */
85
86/* Route retain mode flag. */
87int retain_mode = 0;
88
89/* RIP VTY bind address. */
90char *vty_addr = NULL;
91
92/* RIP VTY connection port. */
93int vty_port = RIP_VTY_PORT;
94
95/* Master of threads. */
96struct thread_master *master;
97
98/* Process ID saved for use by init system */
hasso8a676be2004-10-08 06:36:38 +000099const char *pid_file = PATH_RIPD_PID;
paul718e3742002-12-13 20:15:29 +0000100
101/* Help information display. */
102static void
103usage (char *progname, int status)
104{
105 if (status != 0)
106 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
107 else
108 {
109 printf ("Usage : %s [OPTION...]\n\
110Daemon which manages RIP version 1 and 2.\n\n\
111-d, --daemon Runs in daemon mode\n\
112-f, --config_file Set configuration file name\n\
113-i, --pid_file Set process identifier file name\n\
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400114-z, --socket Set path of zebra socket\n\
paul718e3742002-12-13 20:15:29 +0000115-A, --vty_addr Set vty's bind address\n\
116-P, --vty_port Set vty's port number\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000117-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000118-r, --retain When program terminates, retain added route by ripd.\n\
hassoc0652302004-11-25 19:33:48 +0000119-u, --user User to run as\n\
120-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000121-v, --version Print program version\n\
122-h, --help Display this help and exit\n\
123\n\
124Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
125 }
126
127 exit (status);
128}
129
paul718e3742002-12-13 20:15:29 +0000130/* SIGHUP handler. */
pauldc63bfd2005-10-25 23:31:05 +0000131static void
paul2d75d052004-01-19 21:31:15 +0000132sighup (void)
paul718e3742002-12-13 20:15:29 +0000133{
134 zlog_info ("SIGHUP received");
135 rip_clean ();
136 rip_reset ();
137 zlog_info ("ripd restarting!");
138
139 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000140 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000141
142 /* Create VTY's socket */
143 vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH);
144
145 /* Try to return to normal operation. */
146}
147
148/* SIGINT handler. */
pauldc63bfd2005-10-25 23:31:05 +0000149static void
paul2d75d052004-01-19 21:31:15 +0000150sigint (void)
paul718e3742002-12-13 20:15:29 +0000151{
ajs887c44a2004-12-03 16:36:46 +0000152 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000153
154 if (! retain_mode)
155 rip_clean ();
156
157 exit (0);
158}
159
160/* SIGUSR1 handler. */
pauldc63bfd2005-10-25 23:31:05 +0000161static void
paul2d75d052004-01-19 21:31:15 +0000162sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000163{
164 zlog_rotate (NULL);
165}
166
pauldc63bfd2005-10-25 23:31:05 +0000167static struct quagga_signal_t ripd_signals[] =
paul718e3742002-12-13 20:15:29 +0000168{
paul2d75d052004-01-19 21:31:15 +0000169 {
170 .signal = SIGHUP,
171 .handler = &sighup,
172 },
173 {
174 .signal = SIGUSR1,
175 .handler = &sigusr1,
176 },
177 {
178 .signal = SIGINT,
hasso8c903fb2004-03-17 20:39:18 +0000179 .handler = &sigint,
paul2d75d052004-01-19 21:31:15 +0000180 },
hassof571dab2004-03-22 08:55:25 +0000181 {
182 .signal = SIGTERM,
183 .handler = &sigint,
184 },
paul2d75d052004-01-19 21:31:15 +0000185};
paul718e3742002-12-13 20:15:29 +0000186
187/* Main routine of ripd. */
188int
189main (int argc, char **argv)
190{
191 char *p;
192 int daemon_mode = 0;
Paul Jakma876b8be2006-10-15 23:35:57 +0000193 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000194 char *progname;
195 struct thread thread;
196
197 /* Set umask before anything for security */
198 umask (0027);
199
200 /* Get program name. */
201 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
202
203 /* First of all we need logging init. */
ajs274a4a42004-12-07 15:39:31 +0000204 zlog_default = openzlog (progname, ZLOG_RIP,
paul718e3742002-12-13 20:15:29 +0000205 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
206
207 /* Command line option parse. */
208 while (1)
209 {
210 int opt;
211
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400212 opt = getopt_long (argc, argv, "df:i:z:hA:P:u:g:rvC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000213
214 if (opt == EOF)
215 break;
216
217 switch (opt)
218 {
219 case 0:
220 break;
221 case 'd':
222 daemon_mode = 1;
223 break;
224 case 'f':
225 config_file = optarg;
226 break;
227 case 'A':
228 vty_addr = optarg;
229 break;
230 case 'i':
231 pid_file = optarg;
232 break;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400233 case 'z':
234 zclient_serv_path_set (optarg);
235 break;
paul718e3742002-12-13 20:15:29 +0000236 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000237 /* Deal with atoi() returning 0 on failure, and ripd not
238 listening on rip port... */
239 if (strcmp(optarg, "0") == 0)
240 {
241 vty_port = 0;
242 break;
243 }
244 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000245 if (vty_port <= 0 || vty_port > 0xffff)
246 vty_port = RIP_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000247 break;
248 case 'r':
249 retain_mode = 1;
250 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000251 case 'C':
252 dryrun = 1;
253 break;
hassoc0652302004-11-25 19:33:48 +0000254 case 'u':
255 ripd_privs.user = optarg;
256 break;
257 case 'g':
258 ripd_privs.group = optarg;
259 break;
paul718e3742002-12-13 20:15:29 +0000260 case 'v':
261 print_version (progname);
262 exit (0);
263 break;
264 case 'h':
265 usage (progname, 0);
266 break;
267 default:
268 usage (progname, 1);
269 break;
270 }
271 }
272
273 /* Prepare master thread. */
274 master = thread_master_create ();
275
276 /* Library initialization. */
pauledd7c242003-06-04 13:59:38 +0000277 zprivs_init (&ripd_privs);
paul2d75d052004-01-19 21:31:15 +0000278 signal_init (master, Q_SIGC(ripd_signals), ripd_signals);
paul718e3742002-12-13 20:15:29 +0000279 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000280 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000281 memory_init ();
282 keychain_init ();
283
284 /* RIP related initialization. */
285 rip_init ();
286 rip_if_init ();
287 rip_zclient_init ();
288 rip_peer_init ();
289
290 /* Sort all installed commands. */
291 sort_node ();
292
293 /* Get configuration file. */
hasso320ec102004-06-20 19:54:37 +0000294 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000295
Paul Jakma876b8be2006-10-15 23:35:57 +0000296 /* Start execution only if not in dry-run mode */
297 if(dryrun)
298 return (0);
299
paul718e3742002-12-13 20:15:29 +0000300 /* Change to the daemon program. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700301 if (daemon_mode && daemon (0, 0) < 0)
302 {
303 zlog_err("RIPd daemon failed: %s", strerror(errno));
304 exit (1);
305 }
paul718e3742002-12-13 20:15:29 +0000306
307 /* Pid file create. */
308 pid_output (pid_file);
309
310 /* Create VTY's socket */
311 vty_serv_sock (vty_addr, vty_port, RIP_VTYSH_PATH);
312
ajs887c44a2004-12-03 16:36:46 +0000313 /* Print banner. */
314 zlog_notice ("RIPd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
315
paul718e3742002-12-13 20:15:29 +0000316 /* Execute each thread. */
317 while (thread_fetch (master, &thread))
318 thread_call (&thread);
319
320 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000321 return (0);
paul718e3742002-12-13 20:15:29 +0000322}