blob: 4f6d9e51400824ee661df575af4349bb9ba6b1f2 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Copyright (C) 1999 Yasuhiro Ohara
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
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#include <zebra.h>
hasso3b4cd3a2004-05-18 19:28:32 +000023#include <lib/version.h>
hasso508e53e2004-05-18 18:57:06 +000024
paul718e3742002-12-13 20:15:29 +000025#include "getopt.h"
26#include "thread.h"
27#include "log.h"
paul718e3742002-12-13 20:15:29 +000028#include "command.h"
29#include "vty.h"
30#include "memory.h"
hasso508e53e2004-05-18 18:57:06 +000031#include "if.h"
32#include "filter.h"
33#include "prefix.h"
34#include "plist.h"
pauledd7c242003-06-04 13:59:38 +000035#include "privs.h"
hassoe42f5a32004-08-28 17:04:33 +000036#include "sigevent.h"
Denis Ovsienko87362ce2011-08-27 22:19:34 +040037#include "zclient.h"
paul718e3742002-12-13 20:15:29 +000038
39#include "ospf6d.h"
Denis Ovsienko87362ce2011-08-27 22:19:34 +040040#include "ospf6_top.h"
41#include "ospf6_message.h"
42#include "ospf6_asbr.h"
43#include "ospf6_lsa.h"
Christian Franked9628722013-03-08 21:47:35 +010044#include "ospf6_interface.h"
45#include "ospf6_zebra.h"
paul718e3742002-12-13 20:15:29 +000046
47/* Default configuration file name for ospf6d. */
48#define OSPF6_DEFAULT_CONFIG "ospf6d.conf"
hasso508e53e2004-05-18 18:57:06 +000049
paul718e3742002-12-13 20:15:29 +000050/* Default port values. */
51#define OSPF6_VTY_PORT 2606
52
pauledd7c242003-06-04 13:59:38 +000053/* ospf6d privileges */
hasso508e53e2004-05-18 18:57:06 +000054zebra_capabilities_t _caps_p [] =
pauledd7c242003-06-04 13:59:38 +000055{
paulceacedb2005-09-29 14:39:32 +000056 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000057 ZCAP_BIND
58};
59
60struct zebra_privs_t ospf6d_privs =
61{
pauld81fadf2003-08-14 05:32:12 +000062#if defined(QUAGGA_USER)
63 .user = QUAGGA_USER,
pauledd7c242003-06-04 13:59:38 +000064#endif
pauld81fadf2003-08-14 05:32:12 +000065#if defined QUAGGA_GROUP
66 .group = QUAGGA_GROUP,
67#endif
68#ifdef VTY_GROUP
69 .vty_group = VTY_GROUP,
pauledd7c242003-06-04 13:59:38 +000070#endif
71 .caps_p = _caps_p,
72 .cap_num_p = 2,
73 .cap_num_i = 0
74};
75
paul718e3742002-12-13 20:15:29 +000076/* ospf6d options, we use GNU getopt library. */
77struct option longopts[] =
78{
79 { "daemon", no_argument, NULL, 'd'},
80 { "config_file", required_argument, NULL, 'f'},
81 { "pid_file", required_argument, NULL, 'i'},
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040082 { "socket", required_argument, NULL, 'z'},
paul718e3742002-12-13 20:15:29 +000083 { "vty_addr", required_argument, NULL, 'A'},
84 { "vty_port", required_argument, NULL, 'P'},
hassoc0652302004-11-25 19:33:48 +000085 { "user", required_argument, NULL, 'u'},
86 { "group", required_argument, NULL, 'g'},
paul718e3742002-12-13 20:15:29 +000087 { "version", no_argument, NULL, 'v'},
Paul Jakma876b8be2006-10-15 23:35:57 +000088 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000089 { "help", no_argument, NULL, 'h'},
90 { 0 }
91};
92
93/* Configuration file and directory. */
paul718e3742002-12-13 20:15:29 +000094char config_default[] = SYSCONFDIR OSPF6_DEFAULT_CONFIG;
95
96/* ospf6d program name. */
hasso508e53e2004-05-18 18:57:06 +000097char *progname;
paul718e3742002-12-13 20:15:29 +000098
99/* is daemon? */
100int daemon_mode = 0;
101
102/* Master of threads. */
103struct thread_master *master;
104
105/* Process ID saved for use by init system */
paul0c083ee2004-10-10 12:54:58 +0000106const char *pid_file = PATH_OSPF6D_PID;
paul718e3742002-12-13 20:15:29 +0000107
paul718e3742002-12-13 20:15:29 +0000108/* Help information display. */
109static void
110usage (char *progname, int status)
111{
112 if (status != 0)
113 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
114 else
115 {
116 printf ("Usage : %s [OPTION...]\n\n\
117Daemon which manages OSPF version 3.\n\n\
118-d, --daemon Runs in daemon mode\n\
119-f, --config_file Set configuration file name\n\
120-i, --pid_file Set process identifier file name\n\
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400121-z, --socket Set path of zebra socket\n\
paul718e3742002-12-13 20:15:29 +0000122-A, --vty_addr Set vty's bind address\n\
123-P, --vty_port Set vty's port number\n\
hassoc0652302004-11-25 19:33:48 +0000124-u, --user User to run as\n\
125-g, --group Group to run as\n\
paul718e3742002-12-13 20:15:29 +0000126-v, --version Print program version\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000127-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000128-h, --help Display this help and exit\n\
129\n\
Christian Franke4ff3bca2013-03-20 10:50:07 +0000130Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
paul718e3742002-12-13 20:15:29 +0000131 }
132
133 exit (status);
134}
paul718e3742002-12-13 20:15:29 +0000135
Stephen Hemmingerc143c382011-12-07 01:25:46 +0400136static void __attribute__ ((noreturn))
Tom Goffae2254a2010-11-10 13:01:41 -0800137ospf6_exit (int status)
138{
Christian Franked9628722013-03-08 21:47:35 +0100139 struct listnode *node;
140 struct interface *ifp;
Tom Goffae2254a2010-11-10 13:01:41 -0800141
142 if (ospf6)
143 ospf6_delete (ospf6);
144
Christian Franked9628722013-03-08 21:47:35 +0100145 for (ALL_LIST_ELEMENTS_RO(iflist, node, ifp))
146 if (ifp->info != NULL)
147 ospf6_interface_delete(ifp->info);
148
Tom Goffae2254a2010-11-10 13:01:41 -0800149 ospf6_message_terminate ();
150 ospf6_asbr_terminate ();
151 ospf6_lsa_terminate ();
152
153 if_terminate ();
154 vty_terminate ();
155 cmd_terminate ();
156
157 if (zclient)
158 zclient_free (zclient);
159
160 if (master)
161 thread_master_free (master);
162
163 if (zlog_default)
164 closezlog (zlog_default);
165
166 exit (status);
167}
168
paul718e3742002-12-13 20:15:29 +0000169/* SIGHUP handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100170static void
hassoe42f5a32004-08-28 17:04:33 +0000171sighup (void)
paul718e3742002-12-13 20:15:29 +0000172{
173 zlog_info ("SIGHUP received");
paul718e3742002-12-13 20:15:29 +0000174}
175
176/* SIGINT handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100177static void
hassoe42f5a32004-08-28 17:04:33 +0000178sigint (void)
paul718e3742002-12-13 20:15:29 +0000179{
ajs887c44a2004-12-03 16:36:46 +0000180 zlog_notice ("Terminating on signal SIGINT");
Tom Goffae2254a2010-11-10 13:01:41 -0800181 ospf6_exit (0);
paul718e3742002-12-13 20:15:29 +0000182}
183
184/* SIGTERM handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100185static void
hassoe42f5a32004-08-28 17:04:33 +0000186sigterm (void)
paul718e3742002-12-13 20:15:29 +0000187{
ajs887c44a2004-12-03 16:36:46 +0000188 zlog_notice ("Terminating on signal SIGTERM");
Phil Laverdiereef2d5d12012-01-02 20:04:26 +0400189 ospf6_clean();
Tom Goffae2254a2010-11-10 13:01:41 -0800190 ospf6_exit (0);
paul718e3742002-12-13 20:15:29 +0000191}
192
193/* SIGUSR1 handler. */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100194static void
hassoe42f5a32004-08-28 17:04:33 +0000195sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000196{
197 zlog_info ("SIGUSR1 received");
198 zlog_rotate (NULL);
199}
200
hassoe42f5a32004-08-28 17:04:33 +0000201struct quagga_signal_t ospf6_signals[] =
paul718e3742002-12-13 20:15:29 +0000202{
hassoe42f5a32004-08-28 17:04:33 +0000203 {
204 .signal = SIGHUP,
205 .handler = &sighup,
206 },
207 {
208 .signal = SIGINT,
209 .handler = &sigint,
210 },
211 {
212 .signal = SIGTERM,
213 .handler = &sigterm,
214 },
215 {
216 .signal = SIGUSR1,
217 .handler = &sigusr1,
218 },
219};
hasso508e53e2004-05-18 18:57:06 +0000220
221/* Main routine of ospf6d. Treatment of argument and starting ospf finite
paul718e3742002-12-13 20:15:29 +0000222 state machine is handled here. */
223int
224main (int argc, char *argv[], char *envp[])
225{
226 char *p;
227 int opt;
228 char *vty_addr = NULL;
hasso508e53e2004-05-18 18:57:06 +0000229 int vty_port = 0;
paul718e3742002-12-13 20:15:29 +0000230 char *config_file = NULL;
paul718e3742002-12-13 20:15:29 +0000231 struct thread thread;
Paul Jakma876b8be2006-10-15 23:35:57 +0000232 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000233
234 /* Set umask before anything for security */
235 umask (0027);
236
237 /* Preserve name of myself. */
238 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
239
paul718e3742002-12-13 20:15:29 +0000240 /* Command line argument treatment. */
241 while (1)
242 {
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400243 opt = getopt_long (argc, argv, "df:i:z:hp:A:P:u:g:vC", longopts, 0);
paul718e3742002-12-13 20:15:29 +0000244
245 if (opt == EOF)
246 break;
247
248 switch (opt)
249 {
250 case 0:
251 break;
252 case 'd':
253 daemon_mode = 1;
254 break;
255 case 'f':
256 config_file = optarg;
257 break;
258 case 'A':
259 vty_addr = optarg;
260 break;
261 case 'i':
262 pid_file = optarg;
263 break;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400264 case 'z':
265 zclient_serv_path_set (optarg);
266 break;
paul718e3742002-12-13 20:15:29 +0000267 case 'P':
paul4fc4e7a2003-01-22 19:47:09 +0000268 /* Deal with atoi() returning 0 on failure, and ospf6d not
269 listening on ospf6d port... */
hasso508e53e2004-05-18 18:57:06 +0000270 if (strcmp(optarg, "0") == 0)
paul4fc4e7a2003-01-22 19:47:09 +0000271 {
272 vty_port = 0;
273 break;
hasso508e53e2004-05-18 18:57:06 +0000274 }
paul718e3742002-12-13 20:15:29 +0000275 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000276 if (vty_port <= 0 || vty_port > 0xffff)
277 vty_port = OSPF6_VTY_PORT;
hasso508e53e2004-05-18 18:57:06 +0000278 break;
pauledd7c242003-06-04 13:59:38 +0000279 case 'u':
hassoc0652302004-11-25 19:33:48 +0000280 ospf6d_privs.user = optarg;
pauledd7c242003-06-04 13:59:38 +0000281 break;
hassoc0652302004-11-25 19:33:48 +0000282 case 'g':
283 ospf6d_privs.group = optarg;
284 break;
paul718e3742002-12-13 20:15:29 +0000285 case 'v':
286 print_version (progname);
287 exit (0);
288 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000289 case 'C':
290 dryrun = 1;
291 break;
paul718e3742002-12-13 20:15:29 +0000292 case 'h':
293 usage (progname, 0);
294 break;
295 default:
296 usage (progname, 1);
297 break;
298 }
299 }
300
Vyacheslav Trushkin6fd16202011-12-20 20:52:31 +0400301 if (geteuid () != 0)
302 {
303 errno = EPERM;
304 perror (progname);
305 exit (1);
306 }
307
paul718e3742002-12-13 20:15:29 +0000308 /* thread master */
309 master = thread_master_create ();
310
311 /* Initializations. */
ajs274a4a42004-12-07 15:39:31 +0000312 zlog_default = openzlog (progname, ZLOG_OSPF6,
paul79dc3732004-07-23 15:17:45 +0000313 LOG_CONS|LOG_NDELAY|LOG_PID,
hasso508e53e2004-05-18 18:57:06 +0000314 LOG_DAEMON);
315 zprivs_init (&ospf6d_privs);
316 /* initialize zebra libraries */
Balaji.G837d16c2012-09-26 14:09:10 +0530317 signal_init (master, array_size(ospf6_signals), ospf6_signals);
paul718e3742002-12-13 20:15:29 +0000318 cmd_init (1);
paulb21b19c2003-06-15 01:28:29 +0000319 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000320 memory_init ();
hasso508e53e2004-05-18 18:57:06 +0000321 if_init ();
322 access_list_init ();
323 prefix_list_init ();
324
325 /* initialize ospf6 */
326 ospf6_init ();
327
paul718e3742002-12-13 20:15:29 +0000328 /* parse config file */
hasso320ec102004-06-20 19:54:37 +0000329 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000330
Paul Jakma876b8be2006-10-15 23:35:57 +0000331 /* Start execution only if not in dry-run mode */
332 if (dryrun)
333 return(0);
334
Stephen Hemminger065de902009-08-07 11:13:49 -0700335 if (daemon_mode && daemon (0, 0) < 0)
336 {
337 zlog_err("OSPF6d daemon failed: %s", strerror(errno));
338 exit (1);
339 }
paul718e3742002-12-13 20:15:29 +0000340
341 /* pid file create */
paul718e3742002-12-13 20:15:29 +0000342 pid_output (pid_file);
paul718e3742002-12-13 20:15:29 +0000343
hasso508e53e2004-05-18 18:57:06 +0000344 /* Make ospf6 vty socket. */
ajs887c44a2004-12-03 16:36:46 +0000345 if (!vty_port)
346 vty_port = OSPF6_VTY_PORT;
347 vty_serv_sock (vty_addr, vty_port, OSPF6_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000348
paul718e3742002-12-13 20:15:29 +0000349 /* Print start message */
ajs887c44a2004-12-03 16:36:46 +0000350 zlog_notice ("OSPF6d (Quagga-%s ospf6d-%s) starts: vty@%d",
351 QUAGGA_VERSION, OSPF6_DAEMON_VERSION,vty_port);
paul718e3742002-12-13 20:15:29 +0000352
353 /* Start finite state machine, here we go! */
354 while (thread_fetch (master, &thread))
355 thread_call (&thread);
356
357 /* Log in case thread failed */
358 zlog_warn ("Thread failed");
paul718e3742002-12-13 20:15:29 +0000359
360 /* Not reached. */
Tom Goffae2254a2010-11-10 13:01:41 -0800361 ospf6_exit (0);
paul718e3742002-12-13 20:15:29 +0000362}
363
hasso508e53e2004-05-18 18:57:06 +0000364