2 * Copyright (C) 1997, 98 Kunihiro Ishiguro <kunihiro@zebra.org>
4 * This file is part of GNU Zebra.
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
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.
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 Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24 #include <lib/version.h>
36 #include "ripd/ripd.h"
39 static struct option longopts
[] =
41 { "daemon", no_argument
, NULL
, 'd'},
42 { "config_file", required_argument
, NULL
, 'f'},
43 { "pid_file", required_argument
, NULL
, 'i'},
44 { "help", no_argument
, NULL
, 'h'},
45 { "dryrun", no_argument
, NULL
, 'C'},
46 { "vty_addr", required_argument
, NULL
, 'A'},
47 { "vty_port", required_argument
, NULL
, 'P'},
48 { "retain", no_argument
, NULL
, 'r'},
49 { "user", required_argument
, NULL
, 'u'},
50 { "group", required_argument
, NULL
, 'g'},
51 { "version", no_argument
, NULL
, 'v'},
56 zebra_capabilities_t _caps_p
[] =
62 struct zebra_privs_t ripd_privs
=
64 #if defined(QUAGGA_USER)
67 #if defined QUAGGA_GROUP
68 .group
= QUAGGA_GROUP
,
71 .vty_group
= VTY_GROUP
,
78 /* Configuration file and directory. */
79 char config_default
[] = SYSCONFDIR RIPD_DEFAULT_CONFIG
;
80 char *config_file
= NULL
;
82 /* ripd program name */
84 /* Route retain mode flag. */
87 /* RIP VTY bind address. */
88 char *vty_addr
= NULL
;
90 /* RIP VTY connection port. */
91 int vty_port
= RIP_VTY_PORT
;
93 /* Master of threads. */
94 struct thread_master
*master
;
96 /* Process ID saved for use by init system */
97 const char *pid_file
= PATH_RIPD_PID
;
99 /* Help information display. */
101 usage (char *progname
, int status
)
104 fprintf (stderr
, "Try `%s --help' for more information.\n", progname
);
107 printf ("Usage : %s [OPTION...]\n\
108 Daemon which manages RIP version 1 and 2.\n\n\
109 -d, --daemon Runs in daemon mode\n\
110 -f, --config_file Set configuration file name\n\
111 -i, --pid_file Set process identifier file name\n\
112 -A, --vty_addr Set vty's bind address\n\
113 -P, --vty_port Set vty's port number\n\
114 -C, --dryrun Check configuration for validity and exit\n\
115 -r, --retain When program terminates, retain added route by ripd.\n\
116 -u, --user User to run as\n\
117 -g, --group Group to run as\n\
118 -v, --version Print program version\n\
119 -h, --help Display this help and exit\n\
121 Report bugs to %s\n", progname
, ZEBRA_BUG_ADDRESS
);
127 /* SIGHUP handler. */
131 zlog_info ("SIGHUP received");
134 zlog_info ("ripd restarting!");
136 /* Reload config file. */
137 vty_read_config (config_file
, config_default
);
139 /* Create VTY's socket */
140 vty_serv_sock (vty_addr
, vty_port
, RIP_VTYSH_PATH
);
142 /* Try to return to normal operation. */
145 /* SIGINT handler. */
149 zlog_notice ("Terminating on signal");
157 /* SIGUSR1 handler. */
164 static struct quagga_signal_t ripd_signals
[] =
184 /* Main routine of ripd. */
186 main (int argc
, char **argv
)
192 struct thread thread
;
194 /* Set umask before anything for security */
197 /* Get program name. */
198 progname
= ((p
= strrchr (argv
[0], '/')) ? ++p
: argv
[0]);
200 /* First of all we need logging init. */
201 zlog_default
= openzlog (progname
, ZLOG_RIP
,
202 LOG_CONS
|LOG_NDELAY
|LOG_PID
, LOG_DAEMON
);
204 /* Command line option parse. */
209 opt
= getopt_long (argc
, argv
, "df:i:hA:P:u:g:rvC", longopts
, 0);
222 config_file
= optarg
;
231 /* Deal with atoi() returning 0 on failure, and ripd not
232 listening on rip port... */
233 if (strcmp(optarg
, "0") == 0)
238 vty_port
= atoi (optarg
);
239 if (vty_port
<= 0 || vty_port
> 0xffff)
240 vty_port
= RIP_VTY_PORT
;
249 ripd_privs
.user
= optarg
;
252 ripd_privs
.group
= optarg
;
255 print_version (progname
);
267 /* Prepare master thread. */
268 master
= thread_master_create ();
270 /* Library initialization. */
271 zprivs_init (&ripd_privs
);
272 signal_init (master
, Q_SIGC(ripd_signals
), ripd_signals
);
278 /* RIP related initialization. */
284 /* Sort all installed commands. */
287 /* Get configuration file. */
288 vty_read_config (config_file
, config_default
);
290 /* Start execution only if not in dry-run mode */
294 /* Change to the daemon program. */
298 /* Pid file create. */
299 pid_output (pid_file
);
301 /* Create VTY's socket */
302 vty_serv_sock (vty_addr
, vty_port
, RIP_VTYSH_PATH
);
305 zlog_notice ("RIPd %s starting: vty@%d", QUAGGA_VERSION
, vty_port
);
307 /* Execute each thread. */
308 while (thread_fetch (master
, &thread
))
309 thread_call (&thread
);