blob: 32b64e2aa0e35b688d5d9a6f99845ea68b5d72ff [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPFd main routine.
3 * Copyright (C) 1998, 99 Kunihiro Ishiguro, Toshiaki Takada
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 "thread.h"
28#include "prefix.h"
29#include "linklist.h"
30#include "if.h"
31#include "vector.h"
32#include "vty.h"
33#include "command.h"
34#include "filter.h"
35#include "plist.h"
36#include "stream.h"
37#include "log.h"
38#include "memory.h"
pauledd7c242003-06-04 13:59:38 +000039#include "privs.h"
paul2d75d052004-01-19 21:31:15 +000040#include "sigevent.h"
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040041#include "zclient.h"
Feng Lu126215c2015-05-22 11:39:58 +020042#include "vrf.h"
paul718e3742002-12-13 20:15:29 +000043
44#include "ospfd/ospfd.h"
45#include "ospfd/ospf_interface.h"
46#include "ospfd/ospf_asbr.h"
47#include "ospfd/ospf_lsa.h"
48#include "ospfd/ospf_lsdb.h"
49#include "ospfd/ospf_neighbor.h"
50#include "ospfd/ospf_dump.h"
51#include "ospfd/ospf_zebra.h"
52#include "ospfd/ospf_vty.h"
53
pauledd7c242003-06-04 13:59:38 +000054/* ospfd privileges */
55zebra_capabilities_t _caps_p [] =
56{
paulceacedb2005-09-29 14:39:32 +000057 ZCAP_NET_RAW,
pauledd7c242003-06-04 13:59:38 +000058 ZCAP_BIND,
paulceacedb2005-09-29 14:39:32 +000059 ZCAP_NET_ADMIN,
pauledd7c242003-06-04 13:59:38 +000060};
61
62struct zebra_privs_t ospfd_privs =
63{
pauld81fadf2003-08-14 05:32:12 +000064#if defined(QUAGGA_USER) && defined(QUAGGA_GROUP)
65 .user = QUAGGA_USER,
66 .group = QUAGGA_GROUP,
pauledd7c242003-06-04 13:59:38 +000067#endif
68#if defined(VTY_GROUP)
69 .vty_group = VTY_GROUP,
70#endif
71 .caps_p = _caps_p,
Balaji.G837d16c2012-09-26 14:09:10 +053072 .cap_num_p = array_size(_caps_p),
pauledd7c242003-06-04 13:59:38 +000073 .cap_num_i = 0
74};
75
paul718e3742002-12-13 20:15:29 +000076/* Configuration filename and directory. */
paul718e3742002-12-13 20:15:29 +000077char config_default[] = SYSCONFDIR OSPF_DEFAULT_CONFIG;
78
79/* OSPFd options. */
80struct option longopts[] =
81{
82 { "daemon", no_argument, NULL, 'd'},
83 { "config_file", required_argument, NULL, 'f'},
84 { "pid_file", required_argument, NULL, 'i'},
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +040085 { "socket", required_argument, NULL, 'z'},
Paul Jakma876b8be2006-10-15 23:35:57 +000086 { "dryrun", no_argument, NULL, 'C'},
paul718e3742002-12-13 20:15:29 +000087 { "help", no_argument, NULL, 'h'},
88 { "vty_addr", required_argument, NULL, 'A'},
89 { "vty_port", required_argument, NULL, 'P'},
pauledd7c242003-06-04 13:59:38 +000090 { "user", required_argument, NULL, 'u'},
hassoc0652302004-11-25 19:33:48 +000091 { "group", required_argument, NULL, 'g'},
hassoc3abdb72004-10-11 16:27:03 +000092 { "apiserver", no_argument, NULL, 'a'},
paul718e3742002-12-13 20:15:29 +000093 { "version", no_argument, NULL, 'v'},
94 { 0 }
95};
96
97/* OSPFd program name */
98
99/* Master of threads. */
100struct thread_master *master;
101
102/* Process ID saved for use by init system */
hassoeb1ce602004-10-08 08:17:22 +0000103const char *pid_file = PATH_OSPFD_PID;
paul718e3742002-12-13 20:15:29 +0000104
hassod68614d2004-10-13 09:32:48 +0000105#ifdef SUPPORT_OSPF_API
hassof4d58ce2004-10-12 06:13:54 +0000106extern int ospf_apiserver_enable;
hassod68614d2004-10-13 09:32:48 +0000107#endif /* SUPPORT_OSPF_API */
hassoc3abdb72004-10-11 16:27:03 +0000108
paul718e3742002-12-13 20:15:29 +0000109/* Help information display. */
paul4dadc292005-05-06 21:37:42 +0000110static void __attribute__ ((noreturn))
paul718e3742002-12-13 20:15:29 +0000111usage (char *progname, int status)
112{
113 if (status != 0)
114 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
115 else
116 {
117 printf ("Usage : %s [OPTION...]\n\
118Daemon which manages OSPF.\n\n\
119-d, --daemon Runs in daemon mode\n\
120-f, --config_file Set configuration file name\n\
121-i, --pid_file Set process identifier file name\n\
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400122-z, --socket Set path of zebra socket\n\
paul718e3742002-12-13 20:15:29 +0000123-A, --vty_addr Set vty's bind address\n\
124-P, --vty_port Set vty's port number\n\
hassoc0652302004-11-25 19:33:48 +0000125-u, --user User to run as\n\
126-g, --group Group to run as\n\
hassoc3abdb72004-10-11 16:27:03 +0000127-a. --apiserver Enable OSPF apiserver\n\
paul718e3742002-12-13 20:15:29 +0000128-v, --version Print program version\n\
Paul Jakma876b8be2006-10-15 23:35:57 +0000129-C, --dryrun Check configuration for validity and exit\n\
paul718e3742002-12-13 20:15:29 +0000130-h, --help Display this help and exit\n\
131\n\
132Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
133 }
134 exit (status);
135}
David Lamparter6b0655a2014-06-04 06:53:35 +0200136
paul718e3742002-12-13 20:15:29 +0000137/* SIGHUP handler. */
paul4dadc292005-05-06 21:37:42 +0000138static void
paul2d75d052004-01-19 21:31:15 +0000139sighup (void)
paul718e3742002-12-13 20:15:29 +0000140{
141 zlog (NULL, LOG_INFO, "SIGHUP received");
142}
143
paul88d6cf32005-10-29 12:50:09 +0000144/* SIGINT / SIGTERM handler. */
145static void
paul2d75d052004-01-19 21:31:15 +0000146sigint (void)
paul718e3742002-12-13 20:15:29 +0000147{
ajs887c44a2004-12-03 16:36:46 +0000148 zlog_notice ("Terminating on signal");
paul718e3742002-12-13 20:15:29 +0000149 ospf_terminate ();
paul718e3742002-12-13 20:15:29 +0000150}
151
152/* SIGUSR1 handler. */
paul4dadc292005-05-06 21:37:42 +0000153static void
paul2d75d052004-01-19 21:31:15 +0000154sigusr1 (void)
paul718e3742002-12-13 20:15:29 +0000155{
156 zlog_rotate (NULL);
157}
158
paul2d75d052004-01-19 21:31:15 +0000159struct quagga_signal_t ospf_signals[] =
paul718e3742002-12-13 20:15:29 +0000160{
paul2d75d052004-01-19 21:31:15 +0000161 {
162 .signal = SIGHUP,
163 .handler = &sighup,
164 },
165 {
166 .signal = SIGUSR1,
167 .handler = &sigusr1,
168 },
169 {
170 .signal = SIGINT,
171 .handler = &sigint,
172 },
hassof571dab2004-03-22 08:55:25 +0000173 {
174 .signal = SIGTERM,
175 .handler = &sigint,
176 },
paul2d75d052004-01-19 21:31:15 +0000177};
David Lamparter6b0655a2014-06-04 06:53:35 +0200178
paul718e3742002-12-13 20:15:29 +0000179/* OSPFd main routine. */
180int
181main (int argc, char **argv)
182{
183 char *p;
184 char *vty_addr = NULL;
paul4fc4e7a2003-01-22 19:47:09 +0000185 int vty_port = OSPF_VTY_PORT;
paul718e3742002-12-13 20:15:29 +0000186 int daemon_mode = 0;
187 char *config_file = NULL;
188 char *progname;
189 struct thread thread;
Paul Jakma876b8be2006-10-15 23:35:57 +0000190 int dryrun = 0;
paul718e3742002-12-13 20:15:29 +0000191
192 /* Set umask before anything for security */
193 umask (0027);
194
David Lamparter822d8f52012-12-04 11:11:41 -0800195#ifdef SUPPORT_OSPF_API
196 /* OSPF apiserver is disabled by default. */
197 ospf_apiserver_enable = 0;
198#endif /* SUPPORT_OSPF_API */
199
paul718e3742002-12-13 20:15:29 +0000200 /* get program name */
201 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
202
paul718e3742002-12-13 20:15:29 +0000203 while (1)
204 {
205 int opt;
206
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400207 opt = getopt_long (argc, argv, "df:i:z:hA:P:u:g:avC", 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 'f':
220 config_file = optarg;
221 break;
222 case 'A':
223 vty_addr = optarg;
224 break;
225 case 'i':
226 pid_file = optarg;
227 break;
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400228 case 'z':
229 zclient_serv_path_set (optarg);
230 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 ospfd not
233 listening on ospfd port... */
234 if (strcmp(optarg, "0") == 0)
235 {
236 vty_port = 0;
237 break;
238 }
239 vty_port = atoi (optarg);
Paul Jakma0d6b2ee2008-05-29 18:29:16 +0000240 if (vty_port <= 0 || vty_port > 0xffff)
241 vty_port = OSPF_VTY_PORT;
paul4fc4e7a2003-01-22 19:47:09 +0000242 break;
hassoc3abdb72004-10-11 16:27:03 +0000243 case 'u':
hassoc0652302004-11-25 19:33:48 +0000244 ospfd_privs.user = optarg;
245 break;
246 case 'g':
247 ospfd_privs.group = optarg;
hassoc3abdb72004-10-11 16:27:03 +0000248 break;
hassod68614d2004-10-13 09:32:48 +0000249#ifdef SUPPORT_OSPF_API
hassoc3abdb72004-10-11 16:27:03 +0000250 case 'a':
251 ospf_apiserver_enable = 1;
252 break;
hassod68614d2004-10-13 09:32:48 +0000253#endif /* SUPPORT_OSPF_API */
paul718e3742002-12-13 20:15:29 +0000254 case 'v':
255 print_version (progname);
256 exit (0);
257 break;
Paul Jakma876b8be2006-10-15 23:35:57 +0000258 case 'C':
259 dryrun = 1;
260 break;
paul718e3742002-12-13 20:15:29 +0000261 case 'h':
262 usage (progname, 0);
263 break;
264 default:
265 usage (progname, 1);
266 break;
267 }
268 }
269
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400270 /* Invoked by a priviledged user? -- endo. */
271 if (geteuid () != 0)
272 {
273 errno = EPERM;
274 perror (progname);
275 exit (1);
276 }
277
278 zlog_default = openzlog (progname, ZLOG_OSPF,
279 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
280
281 /* OSPF master init. */
282 ospf_master_init ();
283
paul718e3742002-12-13 20:15:29 +0000284 /* Initializations. */
paul020709f2003-04-04 02:44:16 +0000285 master = om->master;
paul718e3742002-12-13 20:15:29 +0000286
287 /* Library inits. */
pauledd7c242003-06-04 13:59:38 +0000288 zprivs_init (&ospfd_privs);
Balaji.G837d16c2012-09-26 14:09:10 +0530289 signal_init (master, array_size(ospf_signals), ospf_signals);
paul718e3742002-12-13 20:15:29 +0000290 cmd_init (1);
291 debug_init ();
paulb21b19c2003-06-15 01:28:29 +0000292 vty_init (master);
paul718e3742002-12-13 20:15:29 +0000293 memory_init ();
Feng Lu126215c2015-05-22 11:39:58 +0200294 vrf_init ();
paul718e3742002-12-13 20:15:29 +0000295
296 access_list_init ();
297 prefix_list_init ();
298
299 /* OSPFd inits. */
paul718e3742002-12-13 20:15:29 +0000300 ospf_if_init ();
Donald Sharp71252932015-09-24 09:25:19 -0400301 ospf_zebra_init (master);
paul718e3742002-12-13 20:15:29 +0000302
303 /* OSPF vty inits. */
304 ospf_vty_init ();
305 ospf_vty_show_init ();
Vipin Kumara90dc872015-05-19 17:58:13 -0700306 ospf_vty_clear_init ();
paul718e3742002-12-13 20:15:29 +0000307
308 ospf_route_map_init ();
309#ifdef HAVE_SNMP
310 ospf_snmp_init ();
311#endif /* HAVE_SNMP */
paul718e3742002-12-13 20:15:29 +0000312 ospf_opaque_init ();
paul718e3742002-12-13 20:15:29 +0000313
paul718e3742002-12-13 20:15:29 +0000314 /* Get configuration file. */
hasso320ec102004-06-20 19:54:37 +0000315 vty_read_config (config_file, config_default);
paul718e3742002-12-13 20:15:29 +0000316
Paul Jakma876b8be2006-10-15 23:35:57 +0000317 /* Start execution only if not in dry-run mode */
318 if (dryrun)
319 return(0);
320
paul718e3742002-12-13 20:15:29 +0000321 /* Change to the daemon program. */
Stephen Hemminger065de902009-08-07 11:13:49 -0700322 if (daemon_mode && daemon (0, 0) < 0)
323 {
324 zlog_err("OSPFd daemon failed: %s", strerror(errno));
325 exit (1);
326 }
paul718e3742002-12-13 20:15:29 +0000327
328 /* Process id file create. */
329 pid_output (pid_file);
330
331 /* Create VTY socket */
paul4fc4e7a2003-01-22 19:47:09 +0000332 vty_serv_sock (vty_addr, vty_port, OSPF_VTYSH_PATH);
paul718e3742002-12-13 20:15:29 +0000333
334 /* Print banner. */
ajs887c44a2004-12-03 16:36:46 +0000335 zlog_notice ("OSPFd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
paul718e3742002-12-13 20:15:29 +0000336
337 /* Fetch next active thread. */
338 while (thread_fetch (master, &thread))
339 thread_call (&thread);
340
341 /* Not reached. */
paule8e19462006-01-19 20:16:55 +0000342 return (0);
paul718e3742002-12-13 20:15:29 +0000343}
344