blob: 5885f47c8403bdd773f33a14dd4689385b3558be [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"
paul718e3742002-12-13 20:15:29 +000037
38#include "ripngd/ripngd.h"
39
40/* Configuration filename and directory. */
paul718e3742002-12-13 20:15:29 +000041char config_default[] = SYSCONFDIR RIPNG_DEFAULT_CONFIG;
hassoa94434b2003-05-25 17:10:12 +000042char *config_file = NULL;
paul718e3742002-12-13 20:15:29 +000043
44/* RIPngd options. */
45struct option longopts[] =
46{
47 { "daemon", no_argument, NULL, 'd'},
48 { "config_file", required_argument, NULL, 'f'},
49 { "pid_file", required_argument, NULL, 'i'},
50 { "log_mode", no_argument, NULL, 'l'},
51 { "help", no_argument, NULL, 'h'},
52 { "vty_addr", required_argument, NULL, 'A'},
53 { "vty_port", required_argument, NULL, 'P'},
54 { "retain", no_argument, NULL, 'r'},
pauledd7c242003-06-04 13:59:38 +000055 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000056 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000057 { "version", no_argument, NULL, 'v'},
58 { 0 }
59};
60
pauledd7c242003-06-04 13:59:38 +000061/* ripngd privileges */
62zebra_capabilities_t _caps_p [] =
63{
paulceacedb2005-09-29 14:39:32 +000064 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000065 ZCAP_BIND
66};
67
68struct zebra_privs_t ripngd_privs =
69{
pauld81fadf2003-08-14 05:32:12 +000070#if defined(QUAGGA_USER)
71 .user = QUAGGA_USER,
pauledd7c242003-06-04 13:59:38 +000072#endif
pauld81fadf2003-08-14 05:32:12 +000073#if defined QUAGGA_GROUP
74 .group = QUAGGA_GROUP,
75#endif
76#ifdef VTY_GROUP
77 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +000078#endif
79 .caps_p = _caps_p,
80 .cap_num_p = 2,
81 .cap_num_i = 0
82};
83
84
paul718e3742002-12-13 20:15:29 +000085/* RIPngd program name */
86
87/* Route retain mode flag. */
88int retain_mode = 0;
89
hassoa94434b2003-05-25 17:10:12 +000090/* RIPng VTY bind address. */
91char *vty_addr = NULL;
92
93/* RIPng VTY connection port. */
94int vty_port = RIPNG_VTY_PORT;
95
paul718e3742002-12-13 20:15:29 +000096/* Master of threads. */
97struct thread_master *master;
98
99/* Process ID saved for use by init system */
hasso7a1d5832004-10-08 06:32:23 +0000100const char *pid_file = PATH_RIPNGD_PID;
paul718e3742002-12-13 20:15:29 +0000101
102/* Help information display. */
103static void
104usage (char *progname, int status)
105{
106 if (status != 0)
107 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
108 else
109 {
110 printf ("Usage : %s [OPTION...]\n\
111Daemon which manages RIPng.\n\n\
112-d, --daemon Runs in daemon mode\n\
113-f, --config_file Set configuration file name\n\
114-i, --pid_file Set process identifier file name\n\
115-l. --log_mode Set verbose log mode flag\n\
116-A, --vty_addr Set vty's bind address\n\
117-P, --vty_port Set vty's port number\n\
118-r, --retain When program terminates, retain added route by ripngd.\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 exit (status);
127}
128
129/* SIGHUP handler. */
130void
paul2d75d052004-01-19 21:31:15 +0000131sighup (void)
paul718e3742002-12-13 20:15:29 +0000132{
hassoa94434b2003-05-25 17:10:12 +0000133 zlog_info ("SIGHUP received");
134 ripng_clean ();
135 ripng_reset ();
hassoa94434b2003-05-25 17:10:12 +0000136
137 /* Reload config file. */
hasso320ec102004-06-20 19:54:37 +0000138 vty_read_config (config_file, config_default);
hassoa94434b2003-05-25 17:10:12 +0000139 /* Create VTY's socket */
140 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
141
142 /* Try to return to normal operation. */
paul718e3742002-12-13 20:15:29 +0000143}
144
145/* SIGINT handler. */
146void
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)
hassoa94434b2003-05-25 17:10:12 +0000152 ripng_clean ();
paul718e3742002-12-13 20:15:29 +0000153
154 exit (0);
155}
156
157/* SIGUSR1 handler. */
158void
paul2d75d052004-01-19 21:31:15 +0000159sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000160{
161 zlog_rotate (NULL);
162}
163
paul2d75d052004-01-19 21:31:15 +0000164struct quagga_signal_t ripng_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,
176 .handler = &sigint,
177 },
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/* RIPngd main routine. */
185int
186main (int argc, char **argv)
187{
188 char *p;
paul4fc4e7a2003-01-22 19:47:09 +0000189 int vty_port = RIPNG_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000190 int daemon_mode = 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
ajs274a4a42004-12-07 15:39:31 +0000200 zlog_default = openzlog(progname, ZLOG_RIPNG,
paul718e3742002-12-13 20:15:29 +0000201 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
202
203 while (1)
204 {
205 int opt;
206
hassoc0652302004-11-25 19:33:48 +0000207 opt = getopt_long (argc, argv, "dlf:i:hA:P:u:g:v", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000208
209 if (opt == EOF)
210 break;
211
212 switch (opt)
213 {
214 case 0:
215 break;
216 case 'd':
217 daemon_mode = 1;
218 break;
219 case 'l':
220 /* log_mode = 1; */
221 break;
222 case 'f':
223 config_file = optarg;
224 break;
225 case 'A':
226 vty_addr = optarg;
227 break;
228 case 'i':
229 pid_file = optarg;
paul4fc4e7a2003-01-22 19:47:09 +0000230 break;
paul718e3742002-12-13 20:15:29 +0000231 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000232 /* Deal with atoi() returning 0 on failure, and ripngd not
233 listening on ripngd port... */
234 if (strcmp(optarg, "0") == 0)
235 {
236 vty_port = 0;
237 break;
238 }
239 vty_port = atoi (optarg);
240 vty_port = (vty_port ? vty_port : RIPNG_VTY_PORT);
241 break;
paul718e3742002-12-13 20:15:29 +0000242 case 'r':
243 retain_mode = 1;
244 break;
hassoc0652302004-11-25 19:33:48 +0000245 case 'u':
246 ripngd_privs.user = optarg;
247 break;
248 case 'g':
249 ripngd_privs.group = optarg;
250 break;
paul718e3742002-12-13 20:15:29 +0000251 case 'v':
252 print_version (progname);
253 exit (0);
254 break;
255 case 'h':
256 usage (progname, 0);
257 break;
258 default:
259 usage (progname, 1);
260 break;
261 }
262 }
263
264 master = thread_master_create ();
265
266 /* Library inits. */
pauledd7c242003-06-04 13:59:38 +0000267 zprivs_init (&ripngd_privs);
paul2d75d052004-01-19 21:31:15 +0000268 signal_init (master, Q_SIGC(ripng_signals), ripng_signals);
paul718e3742002-12-13 20:15:29 +0000269 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000270 vty_init (master);
hassoa94434b2003-05-25 17:10:12 +0000271 memory_init ();
paul718e3742002-12-13 20:15:29 +0000272
273 /* RIPngd inits. */
274 ripng_init ();
275 zebra_init ();
hassoa94434b2003-05-25 17:10:12 +0000276 ripng_peer_init ();
277
278 /* Sort all installed commands. */
paul718e3742002-12-13 20:15:29 +0000279 sort_node ();
280
281 /* Get configuration file. */
hasso320ec102004-06-20 19:54:37 +0000282 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000283
284 /* Change to the daemon program. */
285 if (daemon_mode)
286 daemon (0, 0);
287
288 /* Create VTY socket */
paul4fc4e7a2003-01-22 19:47:09 +0000289 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000290
291 /* Process id file create. */
292 pid_output (pid_file);
293
ajs887c44a2004-12-03 16:36:46 +0000294 /* Print banner. */
295 zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
296
paul718e3742002-12-13 20:15:29 +0000297 /* Fetch next active thread. */
298 while (thread_fetch (master, &thread))
299 thread_call (&thread);
300
301 /* Not reached. */
302 exit (0);
303}