2 * IS-IS Rout(e)ing protocol - isis_main.c
4 * Copyright (C) 2001,2002 Sampo Saaristo
5 * Tampere University of Technology
6 * Institute of Communications Engineering
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <lib/version.h>
38 #include "isisd/dict.h"
39 #include "include-netbsd/iso.h"
40 #include "isisd/isis_constants.h"
41 #include "isisd/isis_common.h"
42 #include "isisd/isis_flags.h"
43 #include "isisd/isis_circuit.h"
44 #include "isisd/isisd.h"
45 #include "isisd/isis_dynhn.h"
47 /* Default configuration file name */
48 #define ISISD_DEFAULT_CONFIG "isisd.conf"
49 /* Default vty port */
50 #define ISISD_VTY_PORT 2608
52 /* isisd privileges */
53 zebra_capabilities_t _caps_p
[] = {
58 struct zebra_privs_t isisd_privs
= {
59 #if defined(QUAGGA_USER)
62 #if defined QUAGGA_GROUP
63 .group
= QUAGGA_GROUP
,
66 .vty_group
= VTY_GROUP
,
74 struct option longopts
[] = {
75 {"daemon", no_argument
, NULL
, 'd'},
76 {"config_file", required_argument
, NULL
, 'f'},
77 {"pid_file", required_argument
, NULL
, 'i'},
78 {"vty_addr", required_argument
, NULL
, 'A'},
79 {"vty_port", required_argument
, NULL
, 'P'},
80 {"user", required_argument
, NULL
, 'u'},
81 {"group", required_argument
, NULL
, 'g'},
82 {"version", no_argument
, NULL
, 'v'},
83 {"dryrun", no_argument
, NULL
, 'C'},
84 {"help", no_argument
, NULL
, 'h'},
88 /* Configuration file and directory. */
89 char config_default
[] = SYSCONFDIR ISISD_DEFAULT_CONFIG
;
90 char *config_file
= NULL
;
92 /* isisd program name. */
97 /* Master of threads. */
98 struct thread_master
*master
;
100 /* Process ID saved for use by init system */
101 const char *pid_file
= PATH_ISISD_PID
;
104 char _cwd
[MAXPATHLEN
];
105 char _progpath
[MAXPATHLEN
];
120 /* Help information display. */
125 fprintf (stderr
, "Try `%s --help' for more information.\n", progname
);
128 printf ("Usage : %s [OPTION...]\n\n\
129 Daemon which manages IS-IS routing\n\n\
130 -d, --daemon Runs in daemon mode\n\
131 -f, --config_file Set configuration file name\n\
132 -i, --pid_file Set process identifier file name\n\
133 -A, --vty_addr Set vty's bind address\n\
134 -P, --vty_port Set vty's port number\n\
135 -u, --user User to run as\n\
136 -g, --group Group to run as\n\
137 -v, --version Print program version\n\
138 -C, --dryrun Check configuration for validity and exit\n\
139 -h, --help Display this help and exit\n\
141 Report bugs to http://bugzilla.quagga.net\n", progname
);
151 zlog_debug ("Reload");
152 /* FIXME: Clean up func call here */
154 execve (_progpath
, _argv
, _envp
);
170 zlog_debug ("SIGHUP received");
179 zlog_notice ("Terminating on signal SIGINT");
186 zlog_notice ("Terminating on signal SIGTERM");
193 zlog_debug ("SIGUSR1 received");
197 struct quagga_signal_t isisd_signals
[] =
218 * Main routine of isisd. Parse arguments and handle IS-IS state machine.
221 main (int argc
, char **argv
, char **envp
)
224 int opt
, vty_port
= ISISD_VTY_PORT
;
225 struct thread thread
;
226 char *config_file
= NULL
;
227 char *vty_addr
= NULL
;
230 /* Get the programname without the preceding path. */
231 progname
= ((p
= strrchr (argv
[0], '/')) ? ++p
: argv
[0]);
233 zlog_default
= openzlog (progname
, ZLOG_ISIS
,
234 LOG_CONS
| LOG_NDELAY
| LOG_PID
, LOG_DAEMON
);
240 getcwd (_cwd
, sizeof (_cwd
));
242 snprintf (_progpath
, sizeof (_progpath
), "%s/%s", _cwd
, _argv
[0]);
244 snprintf (_progpath
, sizeof (_progpath
), "%s", argv
[0]);
246 /* Command line argument treatment. */
249 opt
= getopt_long (argc
, argv
, "df:i:hA:p:P:u:g:vC", longopts
, 0);
262 config_file
= optarg
;
271 /* Deal with atoi() returning 0 on failure, and isisd not
272 listening on isisd port... */
273 if (strcmp (optarg
, "0") == 0)
278 vty_port
= atoi (optarg
);
279 vty_port
= (vty_port
? vty_port
: ISISD_VTY_PORT
);
282 isisd_privs
.user
= optarg
;
285 isisd_privs
.group
= optarg
;
288 printf ("ISISd version %s\n", ISISD_VERSION
);
289 printf ("Copyright (c) 2001-2002 Sampo Saaristo,"
290 " Ofer Wald and Hannes Gredler\n");
291 print_version ("Zebra");
307 master
= thread_master_create ();
309 /* random seed from time */
315 zprivs_init (&isisd_privs
);
316 signal_init (master
, Q_SIGC (isisd_signals
), isisd_signals
);
325 /* parse config file */
326 /* this is needed three times! because we have interfaces before the areas */
327 vty_read_config (config_file
, config_default
);
328 vty_read_config (config_file
, config_default
);
329 vty_read_config (config_file
, config_default
);
331 /* Start execution only if not in dry-run mode */
336 if (daemon_mode
&& daemon (0, 0) < 0)
338 zlog_err("ISISd daemon failed: %s", strerror(errno
));
342 /* Process ID file creation. */
343 pid_output (pid_file
);
345 /* Make isis vty socket. */
346 vty_serv_sock (vty_addr
, vty_port
, ISIS_VTYSH_PATH
);
349 zlog_notice ("Quagga-ISISd %s starting: vty@%d", QUAGGA_VERSION
, vty_port
);
351 /* Start finite state machine. */
352 while (thread_fetch (master
, &thread
))
353 thread_call (&thread
);