jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_main.c |
| 3 | * |
| 4 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 5 | * Tampere University of Technology |
| 6 | * Institute of Communications Engineering |
| 7 | * |
| 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) |
| 11 | * any later version. |
| 12 | * |
| 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 |
| 16 | * more details. |
| 17 | |
| 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. |
| 21 | */ |
| 22 | |
| 23 | #include <stdio.h> |
| 24 | #include <zebra.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 25 | |
| 26 | #include "getopt.h" |
| 27 | #include "thread.h" |
| 28 | #include "log.h" |
gdt | 5e4fa16 | 2004-03-16 14:38:36 +0000 | [diff] [blame] | 29 | #include <lib/version.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 30 | #include "command.h" |
| 31 | #include "vty.h" |
| 32 | #include "memory.h" |
| 33 | #include "stream.h" |
| 34 | #include "if.h" |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 35 | #include "privs.h" |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 36 | #include "sigevent.h" |
hasso | c729c65 | 2004-10-13 08:36:47 +0000 | [diff] [blame] | 37 | #include "filter.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 38 | |
| 39 | #include "isisd/dict.h" |
| 40 | #include "include-netbsd/iso.h" |
| 41 | #include "isisd/isis_constants.h" |
| 42 | #include "isisd/isis_common.h" |
| 43 | #include "isisd/isis_flags.h" |
| 44 | #include "isisd/isis_circuit.h" |
| 45 | #include "isisd/isisd.h" |
| 46 | #include "isisd/isis_dynhn.h" |
| 47 | |
| 48 | /* Default configuration file name */ |
| 49 | #define ISISD_DEFAULT_CONFIG "isisd.conf" |
| 50 | /* Default vty port */ |
jardin | fc58e87 | 2003-12-23 10:42:45 +0000 | [diff] [blame] | 51 | #define ISISD_VTY_PORT 2608 |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 52 | |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 53 | /* isisd privileges */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 54 | zebra_capabilities_t _caps_p[] = { |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 55 | ZCAP_RAW, |
| 56 | ZCAP_BIND |
| 57 | }; |
| 58 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 59 | struct zebra_privs_t isisd_privs = { |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 60 | #if defined(QUAGGA_USER) |
| 61 | .user = QUAGGA_USER, |
| 62 | #endif |
| 63 | #if defined QUAGGA_GROUP |
| 64 | .group = QUAGGA_GROUP, |
| 65 | #endif |
| 66 | #ifdef VTY_GROUP |
| 67 | .vty_group = VTY_GROUP, |
| 68 | #endif |
| 69 | .caps_p = _caps_p, |
| 70 | .cap_num_p = 2, |
| 71 | .cap_num_i = 0 |
| 72 | }; |
| 73 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 74 | /* isisd options */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 75 | struct option longopts[] = { |
| 76 | {"daemon", no_argument, NULL, 'd'}, |
| 77 | {"config_file", required_argument, NULL, 'f'}, |
| 78 | {"pid_file", required_argument, NULL, 'i'}, |
| 79 | {"vty_addr", required_argument, NULL, 'A'}, |
| 80 | {"vty_port", required_argument, NULL, 'P'}, |
| 81 | {"user", required_argument, NULL, 'u'}, |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 82 | {"group", required_argument, NULL, 'g'}, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 83 | {"version", no_argument, NULL, 'v'}, |
| 84 | {"help", no_argument, NULL, 'h'}, |
| 85 | {0} |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | /* Configuration file and directory. */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 89 | char config_default[] = SYSCONFDIR ISISD_DEFAULT_CONFIG; |
| 90 | char *config_file = NULL; |
| 91 | |
| 92 | /* isisd program name. */ |
| 93 | char *progname; |
| 94 | |
| 95 | int daemon_mode = 0; |
| 96 | |
| 97 | /* Master of threads. */ |
| 98 | struct thread_master *master; |
| 99 | |
hasso | c3aac6f | 2004-02-20 18:44:21 +0000 | [diff] [blame] | 100 | /* Process ID saved for use by init system */ |
hasso | 1cd8084 | 2004-10-07 20:07:40 +0000 | [diff] [blame] | 101 | const char *pid_file = PATH_ISISD_PID; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 102 | |
| 103 | /* for reload */ |
hasso | 37da8c0 | 2004-05-19 11:38:40 +0000 | [diff] [blame] | 104 | char _cwd[MAXPATHLEN]; |
| 105 | char _progpath[MAXPATHLEN]; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 106 | int _argc; |
| 107 | char **_argv; |
| 108 | char **_envp; |
| 109 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 110 | /* Help information display. */ |
| 111 | static void |
| 112 | usage (int status) |
| 113 | { |
| 114 | if (status != 0) |
| 115 | fprintf (stderr, "Try `%s --help' for more information.\n", progname); |
| 116 | else |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 117 | { |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 118 | printf ("Usage : %s [OPTION...]\n\n\ |
| 119 | Daemon which manages IS-IS routing\n\n\ |
| 120 | -d, --daemon Runs in daemon mode\n\ |
| 121 | -f, --config_file Set configuration file name\n\ |
hasso | c3aac6f | 2004-02-20 18:44:21 +0000 | [diff] [blame] | 122 | -i, --pid_file Set process identifier file name\n\ |
| 123 | -A, --vty_addr Set vty's bind address\n\ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 124 | -P, --vty_port Set vty's port number\n\ |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 125 | -u, --user User to run as\n\ |
| 126 | -g, --group Group to run as\n\ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 127 | -v, --version Print program version\n\ |
| 128 | -h, --help Display this help and exit\n\ |
| 129 | \n\ |
hasso | aa0b9f9 | 2004-09-28 15:05:56 +0000 | [diff] [blame] | 130 | Report bugs to http://bugzilla.quagga.net\n", progname); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | exit (status); |
| 134 | } |
| 135 | |
| 136 | |
| 137 | void |
| 138 | reload () |
| 139 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 140 | zlog_debug ("Reload"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 141 | /* FIXME: Clean up func call here */ |
| 142 | vty_finish (); |
| 143 | execve (_progpath, _argv, _envp); |
| 144 | } |
| 145 | |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 146 | static void |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 147 | terminate (int i) |
| 148 | { |
| 149 | exit (i); |
| 150 | } |
| 151 | |
| 152 | /* |
| 153 | * Signal handlers |
| 154 | */ |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 155 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 156 | void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 157 | sighup (void) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 158 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 159 | zlog_debug ("SIGHUP received"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 160 | reload (); |
| 161 | |
| 162 | return; |
| 163 | } |
| 164 | |
| 165 | void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 166 | sigint (void) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 167 | { |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 168 | zlog_notice ("Terminating on signal SIGINT"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 169 | terminate (0); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 173 | sigterm (void) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 174 | { |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 175 | zlog_notice ("Terminating on signal SIGTERM"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 176 | terminate (0); |
| 177 | } |
| 178 | |
| 179 | void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 180 | sigusr1 (void) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 181 | { |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 182 | zlog_debug ("SIGUSR1 received"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 183 | zlog_rotate (NULL); |
| 184 | } |
| 185 | |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 186 | struct quagga_signal_t isisd_signals[] = |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 187 | { |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 188 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 189 | .signal = SIGHUP, |
| 190 | .handler = &sighup, |
| 191 | }, |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 192 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 193 | .signal = SIGUSR1, |
| 194 | .handler = &sigusr1, |
| 195 | }, |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 196 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 197 | .signal = SIGINT, |
| 198 | .handler = &sigint, |
| 199 | }, |
| 200 | { |
| 201 | .signal = SIGTERM, |
| 202 | .handler = &sigterm, |
| 203 | }, |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 204 | }; |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * Main routine of isisd. Parse arguments and handle IS-IS state machine. |
| 208 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 209 | int |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 210 | main (int argc, char **argv, char **envp) |
| 211 | { |
| 212 | char *p; |
| 213 | int opt, vty_port = ISISD_VTY_PORT; |
| 214 | struct thread thread; |
| 215 | char *config_file = NULL; |
| 216 | char *vty_addr = NULL; |
| 217 | |
| 218 | /* Get the programname without the preceding path. */ |
| 219 | progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]); |
| 220 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 221 | zlog_default = openzlog (progname, ZLOG_ISIS, |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 222 | LOG_CONS | LOG_NDELAY | LOG_PID, LOG_DAEMON); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 223 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 224 | /* for reload */ |
| 225 | _argc = argc; |
| 226 | _argv = argv; |
| 227 | _envp = envp; |
| 228 | getcwd (_cwd, sizeof (_cwd)); |
| 229 | if (*argv[0] == '.') |
| 230 | snprintf (_progpath, sizeof (_progpath), "%s/%s", _cwd, _argv[0]); |
| 231 | else |
| 232 | snprintf (_progpath, sizeof (_progpath), "%s", argv[0]); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 233 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 234 | /* Command line argument treatment. */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 235 | while (1) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 236 | { |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 237 | opt = getopt_long (argc, argv, "df:i:hA:p:P:u:g:v", longopts, 0); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 238 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 239 | if (opt == EOF) |
| 240 | break; |
| 241 | |
| 242 | switch (opt) |
| 243 | { |
| 244 | case 0: |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 245 | break; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 246 | case 'd': |
| 247 | daemon_mode = 1; |
| 248 | break; |
| 249 | case 'f': |
| 250 | config_file = optarg; |
| 251 | break; |
| 252 | case 'i': |
| 253 | pid_file = optarg; |
| 254 | break; |
| 255 | case 'A': |
| 256 | vty_addr = optarg; |
| 257 | break; |
| 258 | case 'P': |
| 259 | /* Deal with atoi() returning 0 on failure, and isisd not |
| 260 | listening on isisd port... */ |
| 261 | if (strcmp (optarg, "0") == 0) |
| 262 | { |
| 263 | vty_port = 0; |
| 264 | break; |
| 265 | } |
| 266 | vty_port = atoi (optarg); |
| 267 | vty_port = (vty_port ? vty_port : ISISD_VTY_PORT); |
| 268 | break; |
| 269 | case 'u': |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 270 | isisd_privs.user = optarg; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 271 | break; |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 272 | case 'g': |
| 273 | isisd_privs.group = optarg; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 274 | break; |
| 275 | case 'v': |
| 276 | printf ("ISISd version %s\n", ISISD_VERSION); |
| 277 | printf ("Copyright (c) 2001-2002 Sampo Saaristo," |
| 278 | " Ofer Wald and Hannes Gredler\n"); |
| 279 | print_version ("Zebra"); |
| 280 | exit (0); |
| 281 | break; |
| 282 | case 'h': |
| 283 | usage (0); |
| 284 | break; |
| 285 | default: |
| 286 | usage (1); |
| 287 | break; |
| 288 | } |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 289 | } |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 290 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 291 | /* thread master */ |
| 292 | master = thread_master_create (); |
| 293 | |
| 294 | /* random seed from time */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 295 | srand (time (NULL)); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 296 | |
| 297 | /* |
| 298 | * initializations |
| 299 | */ |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 300 | zprivs_init (&isisd_privs); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 301 | signal_init (master, Q_SIGC (isisd_signals), isisd_signals); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 302 | cmd_init (1); |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 303 | vty_init (master); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 304 | memory_init (); |
hasso | c729c65 | 2004-10-13 08:36:47 +0000 | [diff] [blame] | 305 | access_list_init(); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 306 | isis_init (); |
| 307 | dyn_cache_init (); |
| 308 | sort_node (); |
| 309 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 310 | /* parse config file */ |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 311 | /* this is needed three times! because we have interfaces before the areas */ |
hasso | 320ec10 | 2004-06-20 19:54:37 +0000 | [diff] [blame] | 312 | vty_read_config (config_file, config_default); |
| 313 | vty_read_config (config_file, config_default); |
| 314 | vty_read_config (config_file, config_default); |
hasso | 00995cf | 2004-05-19 13:43:50 +0000 | [diff] [blame] | 315 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 316 | /* demonize */ |
| 317 | if (daemon_mode) |
| 318 | daemon (0, 0); |
| 319 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 320 | /* Process ID file creation. */ |
hasso | c3aac6f | 2004-02-20 18:44:21 +0000 | [diff] [blame] | 321 | pid_output (pid_file); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 322 | |
| 323 | /* Make isis vty socket. */ |
jardin | 9e867fe | 2003-12-23 08:56:18 +0000 | [diff] [blame] | 324 | vty_serv_sock (vty_addr, vty_port, ISIS_VTYSH_PATH); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 325 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 326 | /* Print banner. */ |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 327 | zlog_notice ("Quagga-ISISd %s starting: vty@%d", QUAGGA_VERSION, vty_port); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 328 | #ifdef HAVE_IPV6 |
hasso | 529d65b | 2004-12-24 00:14:50 +0000 | [diff] [blame] | 329 | zlog_debug ("IPv6 enabled"); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 330 | #endif |
| 331 | /* Start finite state machine. */ |
| 332 | while (thread_fetch (master, &thread)) |
| 333 | thread_call (&thread); |
| 334 | |
| 335 | /* Not reached. */ |
| 336 | exit (0); |
| 337 | } |