blob: 1c184e2c29cad3eca42e104cf6ccb64b78822840 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * RIPngd main routine.
3 * Copyright (C) 1998, 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
gdt5e4fa162004-03-16 14:38:36 +000025#include <lib/version.h>
paul718e3742002-12-13 20:15:29 +000026#include "getopt.h"
27#include "vector.h"
28#include "vty.h"
29#include "command.h"
hassoa94434b2003-05-25 17:10:12 +000030#include "memory.h"
paul718e3742002-12-13 20:15:29 +000031#include "thread.h"
32#include "log.h"
33#include "prefix.h"
34#include "if.h"
pauledd7c242003-06-04 13:59:38 +000035#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000036#include "sigevent.h"
Feng Lu126215c2015-05-22 11:39:58 +020037#include "vrf.h"
paul718e3742002-12-13 20:15:29 +000038
39#include "ripngd/ripngd.h"
40
41/* Configuration filename and directory. */
paul718e3742002-12-13 20:15:29 +000042char config_default[] = SYSCONFDIR RIPNG_DEFAULT_CONFIG;
hassoa94434b2003-05-25 17:10:12 +000043char *config_file = NULL;
paul718e3742002-12-13 20:15:29 +000044
45/* RIPngd options. */
46struct option longopts[] =
47{
48 { "daemon", no_argument, NULL, 'd'},
49 { "config_file", required_argument, NULL, 'f'},
50 { "pid_file", required_argument, NULL, 'i'},
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040051 { "socket", required_argument, NULL, 'z'},
Paul Jakma876b8be2006-10-15 23:35:57 +000052 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000053 { "help", no_argument, NULL, 'h'},
54 { "vty_addr", required_argument, NULL, 'A'},
55 { "vty_port", required_argument, NULL, 'P'},
56 { "retain", no_argument, NULL, 'r'},
pauledd7c242003-06-04 13:59:38 +000057 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000058 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000059 { "version", no_argument, NULL, 'v'},
60 { 0 }
61};
62
pauledd7c242003-06-04 13:59:38 +000063/* ripngd privileges */
64zebra_capabilities_t _caps_p [] =
65{
paulceacedb2005-09-29 14:39:32 +000066 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000067 ZCAP_BIND
68};
69
70struct zebra_privs_t ripngd_privs =
71{
pauld81fadf2003-08-14 05:32:12 +000072#if defined(QUAGGA_USER)
73 .user = QUAGGA_USER,
pauledd7c242003-06-04 13:59:38 +000074#endif
pauld81fadf2003-08-14 05:32:12 +000075#if defined QUAGGA_GROUP
76 .group = QUAGGA_GROUP,
77#endif
78#ifdef VTY_GROUP
79 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +000080#endif
81 .caps_p = _caps_p,
82 .cap_num_p = 2,
83 .cap_num_i = 0
84};
85
86
paul718e3742002-12-13 20:15:29 +000087/* RIPngd program name */
88
89/* Route retain mode flag. */
90int retain_mode = 0;
91
hassoa94434b2003-05-25 17:10:12 +000092/* RIPng VTY bind address. */
93char *vty_addr = NULL;
94
95/* RIPng VTY connection port. */
96int vty_port = RIPNG_VTY_PORT;
97
paul718e3742002-12-13 20:15:29 +000098/* Master of threads. */
99struct thread_master *master;
100
101/* Process ID saved for use by init system */
hasso7a1d5832004-10-08 06:32:23 +0000102const char *pid_file = PATH_RIPNGD_PID;
paul718e3742002-12-13 20:15:29 +0000103
104/* Help information display. */
105static void
106usage (char *progname, int status)
107{
108 if (status != 0)
109 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
110 else
111 {
112 printf ("Usage : %s [OPTION...]\n\
113Daemon which manages RIPng.\n\n\
114-d, --daemon Runs in daemon mode\n\
115-f, --config_file Set configuration file name\n\
116-i, --pid_file Set process identifier file name\n\
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400117-z, --socket Set path of zebra socket\n\
paul718e3742002-12-13 20:15:29 +0000118-A, --vty_addr Set vty's bind address\n\
119-P, --vty_port Set vty's port number\n\
120-r, --retain When program terminates, retain added route by ripngd.\n\
hassoc0652302004-11-25 19:33:48 +0000121-u, --user User to run as\n\
122-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000123-v, --version Print program version\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000124-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000125-h, --help Display this help and exit\n\
126\n\
127Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
128 }
129 exit (status);
130}
David Lamparter6b0655a2014-06-04 06:53:35 +0200131
paul718e3742002-12-13 20:15:29 +0000132/* SIGHUP handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100133static void
paul2d75d052004-01-19 21:31:15 +0000134sighup (void)
paul718e3742002-12-13 20:15:29 +0000135{
hassoa94434b2003-05-25 17:10:12 +0000136 zlog_info ("SIGHUP received");
137 ripng_clean ();
138 ripng_reset ();
hassoa94434b2003-05-25 17:10:12 +0000139
140 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000141 vty_read_config (config_file, config_default);
hassoa94434b2003-05-25 17:10:12 +0000142 /* Create VTY's socket */
143 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
144
145 /* Try to return to normal operation. */
paul718e3742002-12-13 20:15:29 +0000146}
147
148/* SIGINT handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100149static 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)
hassoa94434b2003-05-25 17:10:12 +0000155 ripng_clean ();
paul718e3742002-12-13 20:15:29 +0000156
157 exit (0);
158}
159
160/* SIGUSR1 handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100161static void
paul2d75d052004-01-19 21:31:15 +0000162sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000163{
164 zlog_rotate (NULL);
165}
166
paul2d75d052004-01-19 21:31:15 +0000167struct quagga_signal_t ripng_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,
179 .handler = &sigint,
180 },
hassof571dab2004-03-22 08:55:25 +0000181 {
182 .signal = SIGTERM,
183 .handler = &sigint,
184 },
paul2d75d052004-01-19 21:31:15 +0000185};
David Lamparter6b0655a2014-06-04 06:53:35 +0200186
paul718e3742002-12-13 20:15:29 +0000187/* RIPngd main routine. */
188int
189main (int argc, char **argv)
190{
191 char *p;
paul4fc4e7a2003-01-22 19:47:09 +0000192 int vty_port = RIPNG_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000193 int daemon_mode = 0;
paul718e3742002-12-13 20:15:29 +0000194 char *progname;
195 struct thread thread;
Paul Jakma876b8be2006-10-15 23:35:57 +0000196 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000197
198 /* Set umask before anything for security */
199 umask (0027);
200
201 /* get program name */
202 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
203
ajs274a4a42004-12-07 15:39:31 +0000204 zlog_default = openzlog(progname, ZLOG_RIPNG,
paul718e3742002-12-13 20:15:29 +0000205 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
206
207 while (1)
208 {
209 int opt;
210
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400211 opt = getopt_long (argc, argv, "df:i:z:hA:P:u:g:vC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000212
213 if (opt == EOF)
214 break;
215
216 switch (opt)
217 {
218 case 0:
219 break;
220 case 'd':
221 daemon_mode = 1;
222 break;
paul718e3742002-12-13 20:15:29 +0000223 case 'f':
224 config_file = optarg;
225 break;
226 case 'A':
227 vty_addr = optarg;
228 break;
229 case 'i':
230 pid_file = optarg;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400231 break;
232 case 'z':
233 zclient_serv_path_set (optarg);
234 break;
paul718e3742002-12-13 20:15:29 +0000235 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000236 /* Deal with atoi() returning 0 on failure, and ripngd not
237 listening on ripngd port... */
238 if (strcmp(optarg, "0") == 0)
239 {
240 vty_port = 0;
241 break;
242 }
243 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000244 if (vty_port <= 0 || vty_port > 0xffff)
245 vty_port = RIPNG_VTY_PORT;
paul4fc4e7a2003-01-22 19:47:09 +0000246 break;
paul718e3742002-12-13 20:15:29 +0000247 case 'r':
248 retain_mode = 1;
249 break;
hassoc0652302004-11-25 19:33:48 +0000250 case 'u':
251 ripngd_privs.user = optarg;
252 break;
253 case 'g':
254 ripngd_privs.group = optarg;
255 break;
paul718e3742002-12-13 20:15:29 +0000256 case 'v':
257 print_version (progname);
258 exit (0);
259 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000260 case 'C':
261 dryrun = 1;
262 break;
paul718e3742002-12-13 20:15:29 +0000263 case 'h':
264 usage (progname, 0);
265 break;
266 default:
267 usage (progname, 1);
268 break;
269 }
270 }
271
272 master = thread_master_create ();
273
274 /* Library inits. */
pauledd7c242003-06-04 13:59:38 +0000275 zprivs_init (&ripngd_privs);
Balaji.G837d16c2012-09-26 14:09:10 +0530276 signal_init (master, array_size(ripng_signals), ripng_signals);
paul718e3742002-12-13 20:15:29 +0000277 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000278 vty_init (master);
hassoa94434b2003-05-25 17:10:12 +0000279 memory_init ();
Feng Lu126215c2015-05-22 11:39:58 +0200280 vrf_init ();
paul718e3742002-12-13 20:15:29 +0000281
282 /* RIPngd inits. */
283 ripng_init ();
Donald Sharp71252932015-09-24 09:25:19 -0400284 zebra_init (master);
hassoa94434b2003-05-25 17:10:12 +0000285 ripng_peer_init ();
286
paul718e3742002-12-13 20:15:29 +0000287 /* 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("RIPNGd daemon failed: %s", strerror(errno));
298 exit (1);
299 }
paul718e3742002-12-13 20:15:29 +0000300
301 /* Create VTY socket */
paul4fc4e7a2003-01-22 19:47:09 +0000302 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000303
304 /* Process id file create. */
305 pid_output (pid_file);
306
ajs887c44a2004-12-03 16:36:46 +0000307 /* Print banner. */
308 zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
309
paul718e3742002-12-13 20:15:29 +0000310 /* Fetch next active 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}