paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 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 | |
gdt | 5e4fa16 | 2004-03-16 14:38:36 +0000 | [diff] [blame] | 25 | #include <lib/version.h> |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 26 | #include "getopt.h" |
| 27 | #include "vector.h" |
| 28 | #include "vty.h" |
| 29 | #include "command.h" |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 30 | #include "memory.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 31 | #include "thread.h" |
| 32 | #include "log.h" |
| 33 | #include "prefix.h" |
| 34 | #include "if.h" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 35 | #include "privs.h" |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 36 | #include "sigevent.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 37 | |
| 38 | #include "ripngd/ripngd.h" |
| 39 | |
| 40 | /* Configuration filename and directory. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 41 | char config_default[] = SYSCONFDIR RIPNG_DEFAULT_CONFIG; |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 42 | char *config_file = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 43 | |
| 44 | /* RIPngd options. */ |
| 45 | struct option longopts[] = |
| 46 | { |
| 47 | { "daemon", no_argument, NULL, 'd'}, |
| 48 | { "config_file", required_argument, NULL, 'f'}, |
| 49 | { "pid_file", required_argument, NULL, 'i'}, |
Paul Jakma | 876b8be | 2006-10-15 23:35:57 +0000 | [diff] [blame] | 50 | { "dryrun", no_argument, NULL, 'C'}, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | { "help", no_argument, NULL, 'h'}, |
| 52 | { "vty_addr", required_argument, NULL, 'A'}, |
| 53 | { "vty_port", required_argument, NULL, 'P'}, |
| 54 | { "retain", no_argument, NULL, 'r'}, |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 55 | { "user", required_argument, NULL, 'u'}, |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 56 | { "group", required_argument, NULL, 'g'}, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 57 | { "version", no_argument, NULL, 'v'}, |
| 58 | { 0 } |
| 59 | }; |
| 60 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 61 | /* ripngd privileges */ |
| 62 | zebra_capabilities_t _caps_p [] = |
| 63 | { |
paul | ceacedb | 2005-09-29 14:39:32 +0000 | [diff] [blame] | 64 | ZCAP_NET_RAW, |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 65 | ZCAP_BIND |
| 66 | }; |
| 67 | |
| 68 | struct zebra_privs_t ripngd_privs = |
| 69 | { |
paul | d81fadf | 2003-08-14 05:32:12 +0000 | [diff] [blame] | 70 | #if defined(QUAGGA_USER) |
| 71 | .user = QUAGGA_USER, |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 72 | #endif |
paul | d81fadf | 2003-08-14 05:32:12 +0000 | [diff] [blame] | 73 | #if defined QUAGGA_GROUP |
| 74 | .group = QUAGGA_GROUP, |
| 75 | #endif |
| 76 | #ifdef VTY_GROUP |
| 77 | .vty_group = VTY_GROUP, |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 78 | #endif |
| 79 | .caps_p = _caps_p, |
| 80 | .cap_num_p = 2, |
| 81 | .cap_num_i = 0 |
| 82 | }; |
| 83 | |
| 84 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 85 | /* RIPngd program name */ |
| 86 | |
| 87 | /* Route retain mode flag. */ |
| 88 | int retain_mode = 0; |
| 89 | |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 90 | /* RIPng VTY bind address. */ |
| 91 | char *vty_addr = NULL; |
| 92 | |
| 93 | /* RIPng VTY connection port. */ |
| 94 | int vty_port = RIPNG_VTY_PORT; |
| 95 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 96 | /* Master of threads. */ |
| 97 | struct thread_master *master; |
| 98 | |
| 99 | /* Process ID saved for use by init system */ |
hasso | 7a1d583 | 2004-10-08 06:32:23 +0000 | [diff] [blame] | 100 | const char *pid_file = PATH_RIPNGD_PID; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 101 | |
| 102 | /* Help information display. */ |
| 103 | static void |
| 104 | usage (char *progname, int status) |
| 105 | { |
| 106 | if (status != 0) |
| 107 | fprintf (stderr, "Try `%s --help' for more information.\n", progname); |
| 108 | else |
| 109 | { |
| 110 | printf ("Usage : %s [OPTION...]\n\ |
| 111 | Daemon which manages RIPng.\n\n\ |
| 112 | -d, --daemon Runs in daemon mode\n\ |
| 113 | -f, --config_file Set configuration file name\n\ |
| 114 | -i, --pid_file Set process identifier file name\n\ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 115 | -A, --vty_addr Set vty's bind address\n\ |
| 116 | -P, --vty_port Set vty's port number\n\ |
| 117 | -r, --retain When program terminates, retain added route by ripngd.\n\ |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 118 | -u, --user User to run as\n\ |
| 119 | -g, --group Group to run as\n\ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 120 | -v, --version Print program version\n\ |
Paul Jakma | 876b8be | 2006-10-15 23:35:57 +0000 | [diff] [blame] | 121 | -C, --dryrun Check configuration for validity and exit\n\ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 122 | -h, --help Display this help and exit\n\ |
| 123 | \n\ |
| 124 | Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS); |
| 125 | } |
| 126 | exit (status); |
| 127 | } |
| 128 | |
| 129 | /* SIGHUP handler. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 130 | static void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 131 | sighup (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 132 | { |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 133 | zlog_info ("SIGHUP received"); |
| 134 | ripng_clean (); |
| 135 | ripng_reset (); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 136 | |
| 137 | /* Reload config file. */ |
hasso | 320ec10 | 2004-06-20 19:54:37 +0000 | [diff] [blame] | 138 | vty_read_config (config_file, config_default); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 139 | /* Create VTY's socket */ |
| 140 | vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH); |
| 141 | |
| 142 | /* Try to return to normal operation. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | /* SIGINT handler. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 146 | static void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 147 | sigint (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 148 | { |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 149 | zlog_notice ("Terminating on signal"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 150 | |
| 151 | if (! retain_mode) |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 152 | ripng_clean (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 153 | |
| 154 | exit (0); |
| 155 | } |
| 156 | |
| 157 | /* SIGUSR1 handler. */ |
Paul Jakma | 6ac29a5 | 2008-08-15 13:45:30 +0100 | [diff] [blame] | 158 | static void |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 159 | sigusr1 (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 160 | { |
| 161 | zlog_rotate (NULL); |
| 162 | } |
| 163 | |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 164 | struct quagga_signal_t ripng_signals[] = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 165 | { |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 166 | { |
| 167 | .signal = SIGHUP, |
| 168 | .handler = &sighup, |
| 169 | }, |
| 170 | { |
| 171 | .signal = SIGUSR1, |
| 172 | .handler = &sigusr1, |
| 173 | }, |
| 174 | { |
| 175 | .signal = SIGINT, |
| 176 | .handler = &sigint, |
| 177 | }, |
hasso | f571dab | 2004-03-22 08:55:25 +0000 | [diff] [blame] | 178 | { |
| 179 | .signal = SIGTERM, |
| 180 | .handler = &sigint, |
| 181 | }, |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 182 | }; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 183 | |
| 184 | /* RIPngd main routine. */ |
| 185 | int |
| 186 | main (int argc, char **argv) |
| 187 | { |
| 188 | char *p; |
paul | 4fc4e7a | 2003-01-22 19:47:09 +0000 | [diff] [blame] | 189 | int vty_port = RIPNG_VTY_PORT; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 190 | int daemon_mode = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 191 | char *progname; |
| 192 | struct thread thread; |
Paul Jakma | 876b8be | 2006-10-15 23:35:57 +0000 | [diff] [blame] | 193 | int dryrun = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 194 | |
| 195 | /* Set umask before anything for security */ |
| 196 | umask (0027); |
| 197 | |
| 198 | /* get program name */ |
| 199 | progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]); |
| 200 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 201 | zlog_default = openzlog(progname, ZLOG_RIPNG, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 202 | LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); |
| 203 | |
| 204 | while (1) |
| 205 | { |
| 206 | int opt; |
| 207 | |
Jeremy Jackson | c77cffd | 2008-12-28 12:57:42 -0500 | [diff] [blame] | 208 | opt = getopt_long (argc, argv, "df:i:hA:P:u:g:vC", longopts, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 209 | |
| 210 | if (opt == EOF) |
| 211 | break; |
| 212 | |
| 213 | switch (opt) |
| 214 | { |
| 215 | case 0: |
| 216 | break; |
| 217 | case 'd': |
| 218 | daemon_mode = 1; |
| 219 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 220 | case 'f': |
| 221 | config_file = optarg; |
| 222 | break; |
| 223 | case 'A': |
| 224 | vty_addr = optarg; |
| 225 | break; |
| 226 | case 'i': |
| 227 | pid_file = optarg; |
paul | 4fc4e7a | 2003-01-22 19:47:09 +0000 | [diff] [blame] | 228 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 229 | case 'P': |
paul | 4fc4e7a | 2003-01-22 19:47:09 +0000 | [diff] [blame] | 230 | /* Deal with atoi() returning 0 on failure, and ripngd not |
| 231 | listening on ripngd port... */ |
| 232 | if (strcmp(optarg, "0") == 0) |
| 233 | { |
| 234 | vty_port = 0; |
| 235 | break; |
| 236 | } |
| 237 | vty_port = atoi (optarg); |
Paul Jakma | 0d6b2ee | 2008-05-29 18:29:16 +0000 | [diff] [blame] | 238 | if (vty_port <= 0 || vty_port > 0xffff) |
| 239 | vty_port = RIPNG_VTY_PORT; |
paul | 4fc4e7a | 2003-01-22 19:47:09 +0000 | [diff] [blame] | 240 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 241 | case 'r': |
| 242 | retain_mode = 1; |
| 243 | break; |
hasso | c065230 | 2004-11-25 19:33:48 +0000 | [diff] [blame] | 244 | case 'u': |
| 245 | ripngd_privs.user = optarg; |
| 246 | break; |
| 247 | case 'g': |
| 248 | ripngd_privs.group = optarg; |
| 249 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 250 | case 'v': |
| 251 | print_version (progname); |
| 252 | exit (0); |
| 253 | break; |
Paul Jakma | 876b8be | 2006-10-15 23:35:57 +0000 | [diff] [blame] | 254 | case 'C': |
| 255 | dryrun = 1; |
| 256 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 257 | case 'h': |
| 258 | usage (progname, 0); |
| 259 | break; |
| 260 | default: |
| 261 | usage (progname, 1); |
| 262 | break; |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | master = thread_master_create (); |
| 267 | |
| 268 | /* Library inits. */ |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 269 | zprivs_init (&ripngd_privs); |
paul | 2d75d05 | 2004-01-19 21:31:15 +0000 | [diff] [blame] | 270 | signal_init (master, Q_SIGC(ripng_signals), ripng_signals); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 271 | cmd_init (1); |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 272 | vty_init (master); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 273 | memory_init (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 274 | |
| 275 | /* RIPngd inits. */ |
| 276 | ripng_init (); |
| 277 | zebra_init (); |
hasso | a94434b | 2003-05-25 17:10:12 +0000 | [diff] [blame] | 278 | ripng_peer_init (); |
| 279 | |
| 280 | /* Sort all installed commands. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 281 | sort_node (); |
| 282 | |
| 283 | /* Get configuration file. */ |
hasso | 320ec10 | 2004-06-20 19:54:37 +0000 | [diff] [blame] | 284 | vty_read_config (config_file, config_default); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 285 | |
Paul Jakma | 876b8be | 2006-10-15 23:35:57 +0000 | [diff] [blame] | 286 | /* Start execution only if not in dry-run mode */ |
| 287 | if(dryrun) |
| 288 | return(0); |
| 289 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 290 | /* Change to the daemon program. */ |
Stephen Hemminger | 065de90 | 2009-08-07 11:13:49 -0700 | [diff] [blame] | 291 | if (daemon_mode && daemon (0, 0) < 0) |
| 292 | { |
| 293 | zlog_err("RIPNGd daemon failed: %s", strerror(errno)); |
| 294 | exit (1); |
| 295 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 296 | |
| 297 | /* Create VTY socket */ |
paul | 4fc4e7a | 2003-01-22 19:47:09 +0000 | [diff] [blame] | 298 | vty_serv_sock (vty_addr, vty_port, RIPNG_VTYSH_PATH); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 299 | |
| 300 | /* Process id file create. */ |
| 301 | pid_output (pid_file); |
| 302 | |
ajs | 887c44a | 2004-12-03 16:36:46 +0000 | [diff] [blame] | 303 | /* Print banner. */ |
| 304 | zlog_notice ("RIPNGd %s starting: vty@%d", QUAGGA_VERSION, vty_port); |
| 305 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 306 | /* Fetch next active thread. */ |
| 307 | while (thread_fetch (master, &thread)) |
| 308 | thread_call (&thread); |
| 309 | |
| 310 | /* Not reached. */ |
paul | e8e1946 | 2006-01-19 20:16:55 +0000 | [diff] [blame] | 311 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 312 | } |