]> git.proxmox.com Git - mirror_frr.git/blame - ripngd/ripng_main.c
lib, zebra: add "vrf_id" into the "struct interface"
[mirror_frr.git] / ripngd / ripng_main.c
CommitLineData
718e3744 1/*
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
5e4fa164 25#include <lib/version.h>
718e3744 26#include "getopt.h"
27#include "vector.h"
28#include "vty.h"
29#include "command.h"
a94434b6 30#include "memory.h"
718e3744 31#include "thread.h"
32#include "log.h"
33#include "prefix.h"
34#include "if.h"
edd7c245 35#include "privs.h"
2d75d052 36#include "sigevent.h"
718e3744 37
38#include "ripngd/ripngd.h"
39
40/* Configuration filename and directory. */
718e3744 41char config_default[] = SYSCONFDIR RIPNG_DEFAULT_CONFIG;
a94434b6 42char *config_file = NULL;
718e3744 43
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'},
b5114685 50 { "socket", required_argument, NULL, 'z'},
876b8be0 51 { "dryrun", no_argument, NULL, 'C'},
718e3744 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'},
edd7c245 56 { "user", required_argument, NULL, 'u'},
c065230a 57 { "group", required_argument, NULL, 'g'},
718e3744 58 { "version", no_argument, NULL, 'v'},
59 { 0 }
60};
61
edd7c245 62/* ripngd privileges */
63zebra_capabilities_t _caps_p [] =
64{
ceacedba 65 ZCAP_NET_RAW,
edd7c245 66 ZCAP_BIND
67};
68
69struct zebra_privs_t ripngd_privs =
70{
d81fadfd 71#if defined(QUAGGA_USER)
72 .user = QUAGGA_USER,
edd7c245 73#endif
d81fadfd 74#if defined QUAGGA_GROUP
75 .group = QUAGGA_GROUP,
76#endif
77#ifdef VTY_GROUP
78 .vty_group = VTY_GROUP,
edd7c245 79#endif
80 .caps_p = _caps_p,
81 .cap_num_p = 2,
82 .cap_num_i = 0
83};
84
85
718e3744 86/* RIPngd program name */
87
88/* Route retain mode flag. */
89int retain_mode = 0;
90
a94434b6 91/* RIPng VTY bind address. */
92char *vty_addr = NULL;
93
94/* RIPng VTY connection port. */
95int vty_port = RIPNG_VTY_PORT;
96
718e3744 97/* Master of threads. */
98struct thread_master *master;
99
100/* Process ID saved for use by init system */
7a1d583c 101const char *pid_file = PATH_RIPNGD_PID;
718e3744 102
103/* Help information display. */
104static void
105usage (char *progname, int status)
106{
107 if (status != 0)
108 fprintf (stderr, "Try `%s --help' for more information.\n", progname);
109 else
110 {
111 printf ("Usage : %s [OPTION...]\n\
112Daemon 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\
b5114685 116-z, --socket Set path of zebra socket\n\
718e3744 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\
c065230a 120-u, --user User to run as\n\
121-g, --group Group to run as\n\
718e3744 122-v, --version Print program version\n\
876b8be0 123-C, --dryrun Check configuration for validity and exit\n\
718e3744 124-h, --help Display this help and exit\n\
125\n\
126Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
127 }
128 exit (status);
129}
6b0655a2 130
718e3744 131/* SIGHUP handler. */
6ac29a51 132static void
2d75d052 133sighup (void)
718e3744 134{
a94434b6 135 zlog_info ("SIGHUP received");
136 ripng_clean ();
137 ripng_reset ();
a94434b6 138
139 /* Reload config file. */
320ec10a 140 vty_read_config (config_file, config_default);
a94434b6 141 /* Create VTY's socket */
142 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
143
144 /* Try to return to normal operation. */
718e3744 145}
146
147/* SIGINT handler. */
6ac29a51 148static void
2d75d052 149sigint (void)
718e3744 150{
887c44a4 151 zlog_notice ("Terminating on signal");
718e3744 152
153 if (! retain_mode)
a94434b6 154 ripng_clean ();
718e3744 155
156 exit (0);
157}
158
159/* SIGUSR1 handler. */
6ac29a51 160static void
2d75d052 161sigusr1 (void)
718e3744 162{
163 zlog_rotate (NULL);
164}
165
2d75d052 166struct quagga_signal_t ripng_signals[] =
718e3744 167{
2d75d052 168 {
169 .signal = SIGHUP,
170 .handler = &sighup,
171 },
172 {
173 .signal = SIGUSR1,
174 .handler = &sigusr1,
175 },
176 {
177 .signal = SIGINT,
178 .handler = &sigint,
179 },
f571dab0 180 {
181 .signal = SIGTERM,
182 .handler = &sigint,
183 },
2d75d052 184};
6b0655a2 185
718e3744 186/* RIPngd main routine. */
187int
188main (int argc, char **argv)
189{
190 char *p;
4fc4e7ab 191 int vty_port = RIPNG_VTY_PORT;
718e3744 192 int daemon_mode = 0;
718e3744 193 char *progname;
194 struct thread thread;
876b8be0 195 int dryrun = 0;
718e3744 196
197 /* Set umask before anything for security */
198 umask (0027);
199
200 /* get program name */
201 progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);
202
7c8ff89e 203 zlog_default = openzlog(progname, ZLOG_RIPNG, 0,
718e3744 204 LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
205
206 while (1)
207 {
208 int opt;
209
b5114685 210 opt = getopt_long (argc, argv, "df:i:z:hA:P:u:g:vC", longopts, 0);
718e3744 211
212 if (opt == EOF)
213 break;
214
215 switch (opt)
216 {
217 case 0:
218 break;
219 case 'd':
220 daemon_mode = 1;
221 break;
718e3744 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;
b5114685
VT
230 break;
231 case 'z':
232 zclient_serv_path_set (optarg);
233 break;
718e3744 234 case 'P':
4fc4e7ab 235 /* Deal with atoi() returning 0 on failure, and ripngd not
236 listening on ripngd port... */
237 if (strcmp(optarg, "0") == 0)
238 {
239 vty_port = 0;
240 break;
241 }
242 vty_port = atoi (optarg);
0d6b2ee2
PJ
243 if (vty_port <= 0 || vty_port > 0xffff)
244 vty_port = RIPNG_VTY_PORT;
4fc4e7ab 245 break;
718e3744 246 case 'r':
247 retain_mode = 1;
248 break;
c065230a 249 case 'u':
250 ripngd_privs.user = optarg;
251 break;
252 case 'g':
253 ripngd_privs.group = optarg;
254 break;
718e3744 255 case 'v':
256 print_version (progname);
257 exit (0);
258 break;
876b8be0
PJ
259 case 'C':
260 dryrun = 1;
261 break;
718e3744 262 case 'h':
263 usage (progname, 0);
264 break;
265 default:
266 usage (progname, 1);
267 break;
268 }
269 }
270
271 master = thread_master_create ();
272
273 /* Library inits. */
edd7c245 274 zprivs_init (&ripngd_privs);
837d16cc 275 signal_init (master, array_size(ripng_signals), ripng_signals);
718e3744 276 cmd_init (1);
b21b19c5 277 vty_init (master);
a94434b6 278 memory_init ();
718e3744 279
280 /* RIPngd inits. */
281 ripng_init ();
4140ca4d 282 zebra_init(master);
a94434b6 283 ripng_peer_init ();
284
718e3744 285 /* Get configuration file. */
320ec10a 286 vty_read_config (config_file, config_default);
718e3744 287
876b8be0
PJ
288 /* Start execution only if not in dry-run mode */
289 if(dryrun)
290 return(0);
291
718e3744 292 /* Change to the daemon program. */
065de903
SH
293 if (daemon_mode && daemon (0, 0) < 0)
294 {
295 zlog_err("RIPNGd daemon failed: %s", strerror(errno));
296 exit (1);
297 }
718e3744 298
299 /* Create VTY socket */
4fc4e7ab 300 vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH);
718e3744 301
302 /* Process id file create. */
303 pid_output (pid_file);
304
887c44a4 305 /* Print banner. */
306 zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port);
307
718e3744 308 /* Fetch next active thread. */
309 while (thread_fetch (master, &thread))
310 thread_call (&thread);
311
312 /* Not reached. */
e8e1946e 313 return 0;
718e3744 314}