Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * main.c: Unix main routine |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | #include <vlib/vlib.h> |
| 40 | #include <vlib/unix/unix.h> |
| 41 | #include <vlib/unix/plugin.h> |
| 42 | |
| 43 | #include <signal.h> |
| 44 | #include <sys/ucontext.h> |
| 45 | #include <syslog.h> |
| 46 | #include <sys/types.h> |
| 47 | #include <sys/stat.h> |
| 48 | #include <fcntl.h> |
| 49 | |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 50 | /** Default CLI pager limit is not configured in startup.conf */ |
| 51 | #define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000 |
| 52 | |
| 53 | /** Default CLI history depth if not configured in startup.conf */ |
| 54 | #define UNIX_CLI_DEFAULT_HISTORY 50 |
| 55 | |
| 56 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | unix_main_t unix_main; |
| 58 | |
| 59 | static clib_error_t * |
| 60 | unix_main_init (vlib_main_t * vm) |
| 61 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 62 | unix_main_t *um = &unix_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 63 | um->vlib_main = vm; |
| 64 | return vlib_call_init_function (vm, unix_input_init); |
| 65 | } |
| 66 | |
| 67 | VLIB_INIT_FUNCTION (unix_main_init); |
| 68 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 69 | static void |
| 70 | unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | { |
| 72 | uword fatal; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 73 | u8 *msg = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | |
| 75 | msg = format (msg, "received signal %U, PC %U", |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 76 | format_signal, signum, format_ucontext_pc, uc); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | |
| 78 | if (signum == SIGSEGV) |
| 79 | msg = format (msg, ", faulting address %p", si->si_addr); |
| 80 | |
| 81 | switch (signum) |
| 82 | { |
| 83 | /* these (caught) signals cause the application to exit */ |
| 84 | case SIGTERM: |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 85 | if (unix_main.vlib_main->main_loop_exit_set) |
| 86 | { |
| 87 | syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting..."); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 89 | clib_longjmp (&unix_main.vlib_main->main_loop_exit, |
| 90 | VLIB_MAIN_LOOP_EXIT_CLI); |
| 91 | } |
Dave Barach | b2a6e25 | 2016-07-27 10:00:58 -0400 | [diff] [blame] | 92 | /* fall through */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | case SIGQUIT: |
| 94 | case SIGINT: |
| 95 | case SIGILL: |
| 96 | case SIGBUS: |
| 97 | case SIGSEGV: |
| 98 | case SIGHUP: |
| 99 | case SIGFPE: |
| 100 | fatal = 1; |
| 101 | break; |
| 102 | |
| 103 | /* by default, print a message and continue */ |
| 104 | default: |
| 105 | fatal = 0; |
| 106 | break; |
| 107 | } |
| 108 | |
| 109 | /* Null terminate. */ |
| 110 | vec_add1 (msg, 0); |
| 111 | |
| 112 | if (fatal) |
| 113 | { |
| 114 | syslog (LOG_ERR | LOG_DAEMON, "%s", msg); |
| 115 | os_exit (1); |
| 116 | } |
| 117 | else |
| 118 | clib_warning ("%s", msg); |
| 119 | |
| 120 | vec_free (msg); |
| 121 | } |
| 122 | |
| 123 | static clib_error_t * |
| 124 | setup_signal_handlers (unix_main_t * um) |
| 125 | { |
| 126 | uword i; |
| 127 | struct sigaction sa; |
| 128 | |
| 129 | for (i = 1; i < 32; i++) |
| 130 | { |
| 131 | memset (&sa, 0, sizeof (sa)); |
| 132 | sa.sa_sigaction = (void *) unix_signal_handler; |
| 133 | sa.sa_flags = SA_SIGINFO; |
| 134 | |
| 135 | switch (i) |
| 136 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 137 | /* these signals take the default action */ |
| 138 | case SIGABRT: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | case SIGKILL: |
| 140 | case SIGSTOP: |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 141 | case SIGUSR1: |
| 142 | case SIGUSR2: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | continue; |
| 144 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | /* ignore SIGPIPE, SIGCHLD */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | case SIGPIPE: |
| 147 | case SIGCHLD: |
| 148 | sa.sa_sigaction = (void *) SIG_IGN; |
| 149 | break; |
| 150 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 151 | /* catch and handle all other signals */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | default: |
| 153 | break; |
| 154 | } |
| 155 | |
| 156 | if (sigaction (i, &sa, 0) < 0) |
| 157 | return clib_error_return_unix (0, "sigaction %U", format_signal, i); |
| 158 | } |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 163 | static void |
| 164 | unix_error_handler (void *arg, u8 * msg, int msg_len) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 166 | unix_main_t *um = arg; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
| 168 | /* Echo to stderr when interactive. */ |
| 169 | if (um->flags & UNIX_FLAG_INTERACTIVE) |
| 170 | { |
| 171 | CLIB_UNUSED (int r) = write (2, msg, msg_len); |
| 172 | } |
| 173 | else |
| 174 | { |
| 175 | char save = msg[msg_len - 1]; |
| 176 | |
| 177 | /* Null Terminate. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 178 | msg[msg_len - 1] = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | |
| 180 | syslog (LOG_ERR | LOG_DAEMON, "%s", msg); |
| 181 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 182 | msg[msg_len - 1] = save; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | } |
| 184 | } |
| 185 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 186 | void |
| 187 | vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 189 | unix_main_t *um = &unix_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 191 | if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0) |
| 192 | return; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 194 | { |
| 195 | char save; |
| 196 | u8 *msg; |
| 197 | u32 msg_len; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 199 | msg = error->what; |
| 200 | msg_len = vec_len (msg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 202 | /* Null Terminate. */ |
| 203 | save = msg[msg_len - 1]; |
| 204 | msg[msg_len - 1] = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 206 | syslog (LOG_ERR | LOG_DAEMON, "%s", msg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 208 | msg[msg_len - 1] = save; |
| 209 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | static uword |
| 213 | startup_config_process (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 214 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 216 | unix_main_t *um = &unix_main; |
| 217 | u8 *buf = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | uword l, n = 1; |
| 219 | |
| 220 | vlib_process_suspend (vm, 2.0); |
| 221 | |
| 222 | while (um->unix_config_complete == 0) |
| 223 | vlib_process_suspend (vm, 0.1); |
| 224 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 225 | if (um->startup_config_filename) |
| 226 | { |
| 227 | unformat_input_t sub_input; |
| 228 | int fd; |
| 229 | struct stat s; |
| 230 | char *fn = (char *) um->startup_config_filename; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 232 | fd = open (fn, O_RDONLY); |
| 233 | if (fd < 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 235 | clib_warning ("failed to open `%s'", fn); |
| 236 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 239 | if (fstat (fd, &s) < 0) |
| 240 | { |
| 241 | clib_warning ("failed to stat `%s'", fn); |
| 242 | bail: |
| 243 | close (fd); |
| 244 | return 0; |
| 245 | } |
| 246 | |
| 247 | if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode))) |
| 248 | { |
| 249 | clib_warning ("not a regular file: `%s'", fn); |
| 250 | goto bail; |
| 251 | } |
| 252 | |
| 253 | while (n > 0) |
| 254 | { |
| 255 | l = vec_len (buf); |
| 256 | vec_resize (buf, 4096); |
| 257 | n = read (fd, buf + l, 4096); |
| 258 | if (n > 0) |
| 259 | { |
| 260 | _vec_len (buf) = l + n; |
| 261 | if (n < 4096) |
| 262 | break; |
| 263 | } |
| 264 | else |
| 265 | break; |
| 266 | } |
| 267 | if (um->log_fd && vec_len (buf)) |
| 268 | { |
| 269 | u8 *lv = 0; |
| 270 | lv = format (lv, "%U: ***** Startup Config *****\n%v", |
| 271 | format_timeval, 0 /* current bat-time */ , |
| 272 | 0 /* current bat-format */ , |
| 273 | buf); |
| 274 | { |
| 275 | int rv __attribute__ ((unused)) = |
| 276 | write (um->log_fd, lv, vec_len (lv)); |
| 277 | } |
| 278 | vec_reset_length (lv); |
| 279 | lv = format (lv, "%U: ***** End Startup Config *****\n", |
| 280 | format_timeval, 0 /* current bat-time */ , |
| 281 | 0 /* current bat-format */ ); |
| 282 | { |
| 283 | int rv __attribute__ ((unused)) = |
| 284 | write (um->log_fd, lv, vec_len (lv)); |
| 285 | } |
| 286 | vec_free (lv); |
| 287 | } |
| 288 | |
| 289 | if (vec_len (buf)) |
| 290 | { |
| 291 | unformat_init_vector (&sub_input, buf); |
| 292 | vlib_cli_input (vm, &sub_input, 0, 0); |
| 293 | /* frees buf for us */ |
| 294 | unformat_free (&sub_input); |
| 295 | } |
| 296 | close (fd); |
| 297 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 298 | return 0; |
| 299 | } |
| 300 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 301 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | VLIB_REGISTER_NODE (startup_config_node,static) = { |
| 303 | .function = startup_config_process, |
| 304 | .type = VLIB_NODE_TYPE_PROCESS, |
| 305 | .name = "startup-config-process", |
| 306 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 307 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
| 309 | static clib_error_t * |
| 310 | unix_config (vlib_main_t * vm, unformat_input_t * input) |
| 311 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 312 | unix_main_t *um = &unix_main; |
| 313 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 315 | /* Defaults */ |
| 316 | um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT; |
| 317 | um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY; |
| 318 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 320 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 321 | char *cli_prompt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | if (unformat (input, "interactive")) |
| 323 | um->flags |= UNIX_FLAG_INTERACTIVE; |
| 324 | else if (unformat (input, "nodaemon")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 325 | um->flags |= UNIX_FLAG_NODAEMON; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | else if (unformat (input, "cli-prompt %s", &cli_prompt)) |
| 327 | vlib_unix_cli_set_prompt (cli_prompt); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 328 | else |
| 329 | if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | ; |
| 331 | else if (unformat (input, "cli-line-mode")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 332 | um->cli_line_mode = 1; |
Chris Luke | 572d812 | 2016-04-25 13:49:07 -0400 | [diff] [blame] | 333 | else if (unformat (input, "cli-no-banner")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 334 | um->cli_no_banner = 1; |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 335 | else if (unformat (input, "cli-no-pager")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 336 | um->cli_no_pager = 1; |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 337 | else if (unformat (input, "cli-pager-buffer-limit %d", |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 338 | &um->cli_pager_buffer_limit)) |
| 339 | ; |
| 340 | else |
| 341 | if (unformat (input, "cli-history-limit %d", &um->cli_history_limit)) |
| 342 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | else if (unformat (input, "full-coredump")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 344 | { |
| 345 | int fd; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 346 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 347 | fd = open ("/proc/self/coredump_filter", O_WRONLY); |
Dave Barach | b2a6e25 | 2016-07-27 10:00:58 -0400 | [diff] [blame] | 348 | if (fd >= 0) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 349 | { |
| 350 | if (write (fd, "0x6f\n", 5) != 5) |
| 351 | clib_unix_warning ("coredump filter write failed!"); |
| 352 | close (fd); |
| 353 | } |
| 354 | else |
| 355 | clib_unix_warning ("couldn't open /proc/self/coredump_filter"); |
| 356 | } |
| 357 | else if (unformat (input, "startup-config %s", |
| 358 | &um->startup_config_filename)) |
| 359 | ; |
| 360 | else if (unformat (input, "exec %s", &um->startup_config_filename)) |
| 361 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | else if (unformat (input, "log %s", &um->log_filename)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 363 | { |
| 364 | um->log_fd = open ((char *) um->log_filename, |
| 365 | O_CREAT | O_WRONLY | O_APPEND, 0644); |
| 366 | if (um->log_fd < 0) |
| 367 | { |
| 368 | clib_warning ("couldn't open log '%s'\n", um->log_filename); |
| 369 | um->log_fd = 0; |
| 370 | } |
| 371 | else |
| 372 | { |
| 373 | u8 *lv = 0; |
| 374 | lv = format (0, "%U: ***** Start: PID %d *****\n", |
| 375 | format_timeval, 0 /* current bat-time */ , |
| 376 | 0 /* current bat-format */ , |
| 377 | getpid ()); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 378 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 379 | int rv __attribute__ ((unused)) = |
| 380 | write (um->log_fd, lv, vec_len (lv)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 381 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 382 | vec_free (lv); |
| 383 | } |
| 384 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 385 | else |
| 386 | return clib_error_return (0, "unknown input `%U'", |
| 387 | format_unformat_error, input); |
| 388 | } |
| 389 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 390 | if (!(um->flags & UNIX_FLAG_INTERACTIVE)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 391 | { |
| 392 | error = setup_signal_handlers (um); |
| 393 | if (error) |
| 394 | return error; |
| 395 | |
| 396 | openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON); |
| 397 | clib_error_register_handler (unix_error_handler, um); |
| 398 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 399 | if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0, |
| 400 | /* stdin/stdout/stderr -> /dev/null */ |
| 401 | 0) < 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 402 | clib_error_return (0, "daemon () fails"); |
| 403 | } |
| 404 | um->unix_config_complete = 1; |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | /* unix { ... } configuration. */ |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 410 | /*? |
| 411 | * |
| 412 | * @cfgcmd{interactive} |
| 413 | * Attach CLI to stdin/out and provide a debugging command line interface. |
| 414 | * Implies @c nodaemon. |
| 415 | * |
| 416 | * @cfgcmd{nodaemon} |
| 417 | * Do not fork or background the VPP process. Typically used when invoking |
| 418 | * VPP applications from a process monitor. |
| 419 | * |
| 420 | * @cfgcmd{exec, <filename>} |
| 421 | * @par <code>startup-config <filename></code> |
| 422 | * Read startup operational configuration from @c filename. |
| 423 | * The contents of the file will be performed as though entered at the CLI. |
| 424 | * The two keywords are aliases for the same function; if both are specified, |
| 425 | * only the last will have an effect. |
| 426 | * |
| 427 | * @cfgcmd{log, <filename>} |
| 428 | * Logs the startup configuration and all subsequent CLI commands in |
| 429 | * @c filename. |
| 430 | * Very useful in situations where folks don't remember or can't be bothered |
| 431 | * to include CLI commands in bug reports. |
| 432 | * |
| 433 | * @cfgcmd{full-coredump} |
| 434 | * Ask the Linux kernel to dump all memory-mapped address regions, instead |
| 435 | * of just text+data+bss. |
| 436 | * |
| 437 | * @cfgcmd{cli-listen, <address:port>} |
| 438 | * Bind the CLI to listen at the address and port given. @clocalhost |
| 439 | * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>, |
| 440 | * is typical. |
| 441 | * |
| 442 | * @cfgcmd{cli-line-mode} |
| 443 | * Disable character-by-character I/O on stdin. Useful when combined with, |
| 444 | * for example, <tt>emacs M-x gud-gdb</tt>. |
| 445 | * |
| 446 | * @cfgcmd{cli-prompt, <string>} |
| 447 | * Configure the CLI prompt to be @c string. |
| 448 | * |
| 449 | * @cfgcmd{cli-history-limit, <nn>} |
| 450 | * Limit commmand history to @c nn lines. A value of @c 0 |
| 451 | * disables command history. Default value: @c 50 |
| 452 | * |
| 453 | * @cfgcmd{cli-no-banner} |
| 454 | * Disable the login banner on stdin and Telnet connections. |
| 455 | * |
| 456 | * @cfgcmd{cli-no-pager} |
| 457 | * Disable the output pager. |
| 458 | * |
| 459 | * @cfgcmd{cli-pager-buffer-limit, <nn>} |
| 460 | * Limit pager buffer to @c nn lines of output. |
| 461 | * A value of @c 0 disables the pager. Default value: @c 100000 |
| 462 | ?*/ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 463 | VLIB_CONFIG_FUNCTION (unix_config, "unix"); |
| 464 | |
| 465 | static clib_error_t * |
| 466 | unix_exit (vlib_main_t * vm) |
| 467 | { |
| 468 | /* Close syslog connection. */ |
| 469 | closelog (); |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit); |
| 474 | |
| 475 | u8 **vlib_thread_stacks; |
| 476 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 477 | static uword |
| 478 | thread0 (uword arg) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 479 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 480 | vlib_main_t *vm = (vlib_main_t *) arg; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 481 | unformat_input_t input; |
| 482 | int i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 483 | |
| 484 | unformat_init_command_line (&input, (char **) vm->argv); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 485 | i = vlib_main (vm, &input); |
| 486 | unformat_free (&input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 487 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 488 | return i; |
| 489 | } |
| 490 | |
| 491 | int |
| 492 | vlib_unix_main (int argc, char *argv[]) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 493 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 494 | vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 495 | vlib_thread_main_t *tm = &vlib_thread_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | unformat_input_t input; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 497 | u8 *thread_stacks; |
| 498 | clib_error_t *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 499 | int i; |
| 500 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 501 | vm->argv = (u8 **) argv; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 502 | vm->name = argv[0]; |
| 503 | vm->heap_base = clib_mem_get_heap (); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 504 | ASSERT (vm->heap_base); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 505 | |
| 506 | i = vlib_plugin_early_init (vm); |
| 507 | if (i) |
| 508 | return i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 509 | |
| 510 | unformat_init_command_line (&input, (char **) vm->argv); |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 511 | if (vm->init_functions_called == 0) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 512 | vm->init_functions_called = hash_create (0, /* value bytes */ 0); |
| 513 | e = vlib_call_all_config_functions (vm, &input, 1 /* early */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 514 | if (e != 0) |
| 515 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 516 | clib_error_report (e); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 517 | return 1; |
| 518 | } |
| 519 | unformat_free (&input); |
| 520 | |
Dave Barach | 01e3caa | 2016-09-12 16:44:08 -0400 | [diff] [blame] | 521 | /* |
| 522 | * allocate n x VLIB_THREAD_STACK_SIZE stacks, aligned to a |
| 523 | * VLIB_THREAD_STACK_SIZE boundary |
| 524 | * See also: os_get_cpu_number() in vlib/vlib/threads.c |
| 525 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 526 | thread_stacks = clib_mem_alloc_aligned |
Dave Barach | b2a6e25 | 2016-07-27 10:00:58 -0400 | [diff] [blame] | 527 | ((uword) tm->n_thread_stacks * VLIB_THREAD_STACK_SIZE, |
Dave Barach | 01e3caa | 2016-09-12 16:44:08 -0400 | [diff] [blame] | 528 | VLIB_THREAD_STACK_SIZE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 530 | vec_validate (vlib_thread_stacks, tm->n_thread_stacks - 1); |
| 531 | for (i = 0; i < vec_len (vlib_thread_stacks); i++) |
| 532 | { |
| 533 | vlib_thread_stacks[i] = thread_stacks; |
| 534 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 535 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 536 | * Disallow writes to the bottom page of the stack, to |
| 537 | * catch stack overflows. |
| 538 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 539 | if (mprotect (thread_stacks, clib_mem_get_page_size (), PROT_READ) < 0) |
| 540 | clib_unix_warning ("thread stack"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 541 | |
| 542 | thread_stacks += VLIB_THREAD_STACK_SIZE; |
| 543 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 544 | |
| 545 | i = clib_calljmp (thread0, (uword) vm, |
| 546 | (void *) (vlib_thread_stacks[0] + |
| 547 | VLIB_THREAD_STACK_SIZE)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 548 | return i; |
| 549 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 550 | |
| 551 | /* |
| 552 | * fd.io coding-style-patch-verification: ON |
| 553 | * |
| 554 | * Local Variables: |
| 555 | * eval: (c-set-style "gnu") |
| 556 | * End: |
| 557 | */ |