Switch from LOOKUP() to lookup() for rtm_type (see bug #401 for details).
[jleu-quagga.git] / ripngd / ripng_main.c
blob7055391052485f7a4674a1c9b51ff51a77291cc3
1 /*
2 * RIPngd main routine.
3 * Copyright (C) 1998, 1999 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
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.
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.
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.
23 #include <zebra.h>
25 #include <lib/version.h>
26 #include "getopt.h"
27 #include "vector.h"
28 #include "vty.h"
29 #include "command.h"
30 #include "memory.h"
31 #include "thread.h"
32 #include "log.h"
33 #include "prefix.h"
34 #include "if.h"
35 #include "privs.h"
36 #include "sigevent.h"
38 #include "ripngd/ripngd.h"
40 /* Configuration filename and directory. */
41 char config_default[] = SYSCONFDIR RIPNG_DEFAULT_CONFIG;
42 char *config_file = NULL;
44 /* RIPngd options. */
45 struct option longopts[] =
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 { "dryrun", no_argument, NULL, 'C'},
52 { "help", no_argument, NULL, 'h'},
53 { "vty_addr", required_argument, NULL, 'A'},
54 { "vty_port", required_argument, NULL, 'P'},
55 { "retain", no_argument, NULL, 'r'},
56 { "user", required_argument, NULL, 'u'},
57 { "group", required_argument, NULL, 'g'},
58 { "version", no_argument, NULL, 'v'},
59 { 0 }
62 /* ripngd privileges */
63 zebra_capabilities_t _caps_p [] =
65 ZCAP_NET_RAW,
66 ZCAP_BIND
69 struct zebra_privs_t ripngd_privs =
71 #if defined(QUAGGA_USER)
72 .user = QUAGGA_USER,
73 #endif
74 #if defined QUAGGA_GROUP
75 .group = QUAGGA_GROUP,
76 #endif
77 #ifdef VTY_GROUP
78 .vty_group = VTY_GROUP,
79 #endif
80 .caps_p = _caps_p,
81 .cap_num_p = 2,
82 .cap_num_i = 0
86 /* RIPngd program name */
88 /* Route retain mode flag. */
89 int retain_mode = 0;
91 /* RIPng VTY bind address. */
92 char *vty_addr = NULL;
94 /* RIPng VTY connection port. */
95 int vty_port = RIPNG_VTY_PORT;
97 /* Master of threads. */
98 struct thread_master *master;
100 /* Process ID saved for use by init system */
101 const char *pid_file = PATH_RIPNGD_PID;
103 /* Help information display. */
104 static void
105 usage (char *progname, int status)
107 if (status != 0)
108 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
109 else
111 printf ("Usage : %s [OPTION...]\n\
112 Daemon which manages RIPng.\n\n\
113 -d, --daemon Runs in daemon mode\n\
114 -f, --config_file Set configuration file name\n\
115 -i, --pid_file Set process identifier file name\n\
116 -l. --log_mode Set verbose log mode flag\n\
117 -A, --vty_addr Set vty's bind address\n\
118 -P, --vty_port Set vty's port number\n\
119 -r, --retain When program terminates, retain added route by ripngd.\n\
120 -u, --user User to run as\n\
121 -g, --group Group to run as\n\
122 -v, --version Print program version\n\
123 -C, --dryrun Check configuration for validity and exit\n\
124 -h, --help Display this help and exit\n\
126 Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
128 exit (status);
131 /* SIGHUP handler. */
132 void
133 sighup (void)
135 zlog_info ("SIGHUP received");
136 ripng_clean ();
137 ripng_reset ();
139 /* Reload config file. */
140 vty_read_config (config_file, config_default);
141 /* Create VTY's socket */
142 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
144 /* Try to return to normal operation. */
147 /* SIGINT handler. */
148 void
149 sigint (void)
151 zlog_notice ("Terminating on signal");
153 if (! retain_mode)
154 ripng_clean ();
156 exit (0);
159 /* SIGUSR1 handler. */
160 void
161 sigusr1 (void)
163 zlog_rotate (NULL);
166 struct quagga_signal_t ripng_signals[] =
169 .signal = SIGHUP,
170 .handler = &sighup,
173 .signal = SIGUSR1,
174 .handler = &sigusr1,
177 .signal = SIGINT,
178 .handler = &sigint,
181 .signal = SIGTERM,
182 .handler = &sigint,
186 /* RIPngd main routine. */
188 main (int argc, char **argv)
190 char *p;
191 int vty_port = RIPNG_VTY_PORT;
192 int daemon_mode = 0;
193 char *progname;
194 struct thread thread;
195 int dryrun = 0;
197 /* Set umask before anything for security */
198 umask (0027);
200 /* get program name */
201 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
203 zlog_default = openzlog(progname, ZLOG_RIPNG,
204 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
206 while (1)
208 int opt;
210 opt = getopt_long (argc, argv, "dlf:i:hA:P:u:g:vC", longopts, 0);
212 if (opt == EOF)
213 break;
215 switch (opt)
217 case 0:
218 break;
219 case 'd':
220 daemon_mode = 1;
221 break;
222 case 'l':
223 /* log_mode = 1; */
224 break;
225 case 'f':
226 config_file = optarg;
227 break;
228 case 'A':
229 vty_addr = optarg;
230 break;
231 case 'i':
232 pid_file = optarg;
233 break;
234 case 'P':
235 /* Deal with atoi() returning 0 on failure, and ripngd not
236 listening on ripngd port... */
237 if (strcmp(optarg, "0") == 0)
239 vty_port = 0;
240 break;
242 vty_port = atoi (optarg);
243 vty_port = (vty_port ? vty_port : RIPNG_VTY_PORT);
244 break;
245 case 'r':
246 retain_mode = 1;
247 break;
248 case 'u':
249 ripngd_privs.user = optarg;
250 break;
251 case 'g':
252 ripngd_privs.group = optarg;
253 break;
254 case 'v':
255 print_version (progname);
256 exit (0);
257 break;
258 case 'C':
259 dryrun = 1;
260 break;
261 case 'h':
262 usage (progname, 0);
263 break;
264 default:
265 usage (progname, 1);
266 break;
270 master = thread_master_create ();
272 /* Library inits. */
273 zprivs_init (&ripngd_privs);
274 signal_init (master, Q_SIGC(ripng_signals), ripng_signals);
275 cmd_init (1);
276 vty_init (master);
277 memory_init ();
279 /* RIPngd inits. */
280 ripng_init ();
281 zebra_init ();
282 ripng_peer_init ();
284 /* Sort all installed commands. */
285 sort_node ();
287 /* Get configuration file. */
288 vty_read_config (config_file, config_default);
290 /* Start execution only if not in dry-run mode */
291 if(dryrun)
292 return(0);
294 /* Change to the daemon program. */
295 if (daemon_mode)
296 daemon (0, 0);
298 /* Create VTY socket */
299 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
301 /* Process id file create. */
302 pid_output (pid_file);
304 /* Print banner. */
305 zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
307 /* Fetch next active thread. */
308 while (thread_fetch (master, &thread))
309 thread_call (&thread);
311 /* Not reached. */
312 return 0;