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> |
Klement Sekera | c8c44eb | 2017-03-02 11:13:30 +0100 | [diff] [blame] | 49 | #include <sys/time.h> |
| 50 | #include <sys/resource.h> |
Damjan Marion | a54230d | 2017-06-21 11:57:07 +0200 | [diff] [blame] | 51 | #include <unistd.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 53 | /** Default CLI pager limit is not configured in startup.conf */ |
| 54 | #define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000 |
| 55 | |
| 56 | /** Default CLI history depth if not configured in startup.conf */ |
| 57 | #define UNIX_CLI_DEFAULT_HISTORY 50 |
| 58 | |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 59 | char *vlib_default_runtime_dir __attribute__ ((weak)); |
Damjan Marion | c67787b | 2017-08-30 17:12:25 +0200 | [diff] [blame] | 60 | char *vlib_default_runtime_dir = "vlib"; |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 61 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | unix_main_t unix_main; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 63 | clib_file_main_t file_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | |
| 65 | static clib_error_t * |
| 66 | unix_main_init (vlib_main_t * vm) |
| 67 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 68 | unix_main_t *um = &unix_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | um->vlib_main = vm; |
Dave Barach | f8d5068 | 2019-05-14 18:01:44 -0400 | [diff] [blame^] | 70 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Dave Barach | f8d5068 | 2019-05-14 18:01:44 -0400 | [diff] [blame^] | 73 | /* *INDENT-OFF* */ |
| 74 | VLIB_INIT_FUNCTION (unix_main_init) = |
| 75 | { |
| 76 | .runs_before = VLIB_INITS ("unix_input_init"), |
| 77 | }; |
| 78 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 80 | static int |
| 81 | unsetup_signal_handlers (int sig) |
| 82 | { |
| 83 | struct sigaction sa; |
| 84 | |
| 85 | sa.sa_handler = SIG_DFL; |
| 86 | sa.sa_flags = 0; |
| 87 | sigemptyset (&sa.sa_mask); |
| 88 | return sigaction (sig, &sa, 0); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | /* allocate this buffer from mheap when setting up the signal handler. |
| 93 | dangerous to vec_resize it when crashing, mheap itself might have been |
| 94 | corruptted already */ |
| 95 | static u8 *syslog_msg = 0; |
Dave Barach | 9e52ef6 | 2019-02-28 17:52:57 -0500 | [diff] [blame] | 96 | static int last_signum = 0; |
| 97 | static uword last_faulting_address = 0; |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 98 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 99 | static void |
| 100 | unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | { |
Dave Barach | 903651c | 2017-10-13 19:16:56 -0400 | [diff] [blame] | 102 | uword fatal = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | |
Dave Barach | 9e52ef6 | 2019-02-28 17:52:57 -0500 | [diff] [blame] | 104 | /* These come in handy when looking at core files from optimized images */ |
| 105 | last_signum = signum; |
| 106 | last_faulting_address = (uword) si->si_addr; |
| 107 | |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 108 | syslog_msg = format (syslog_msg, "received signal %U, PC %U", |
| 109 | format_signal, signum, format_ucontext_pc, uc); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | |
| 111 | if (signum == SIGSEGV) |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 112 | syslog_msg = format (syslog_msg, ", faulting address %p", si->si_addr); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | |
| 114 | switch (signum) |
| 115 | { |
| 116 | /* these (caught) signals cause the application to exit */ |
| 117 | case SIGTERM: |
Dave Barach | d1e17d0 | 2019-03-21 18:01:48 -0400 | [diff] [blame] | 118 | /* |
| 119 | * Ignore SIGTERM if it's sent before we're ready. |
| 120 | */ |
| 121 | if (unix_main.vlib_main && unix_main.vlib_main->main_loop_exit_set) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 122 | { |
| 123 | syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting..."); |
Dave Barach | 903651c | 2017-10-13 19:16:56 -0400 | [diff] [blame] | 124 | unix_main.vlib_main->main_loop_exit_now = 1; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 125 | } |
Dave Barach | d1e17d0 | 2019-03-21 18:01:48 -0400 | [diff] [blame] | 126 | else |
| 127 | syslog (LOG_ERR | LOG_DAEMON, "IGNORE early SIGTERM..."); |
Dave Barach | 903651c | 2017-10-13 19:16:56 -0400 | [diff] [blame] | 128 | break; |
Dave Barach | b2a6e25 | 2016-07-27 10:00:58 -0400 | [diff] [blame] | 129 | /* fall through */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | case SIGQUIT: |
| 131 | case SIGINT: |
| 132 | case SIGILL: |
| 133 | case SIGBUS: |
| 134 | case SIGSEGV: |
| 135 | case SIGHUP: |
| 136 | case SIGFPE: |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 137 | case SIGABRT: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 138 | fatal = 1; |
| 139 | break; |
| 140 | |
| 141 | /* by default, print a message and continue */ |
| 142 | default: |
| 143 | fatal = 0; |
| 144 | break; |
| 145 | } |
| 146 | |
Dave Barach | ad64687 | 2019-05-06 10:49:41 -0400 | [diff] [blame] | 147 | #ifdef CLIB_GCOV |
| 148 | /* |
| 149 | * Test framework sends SIGTERM, so we need to flush the |
| 150 | * code coverage stats here. |
| 151 | */ |
| 152 | { |
| 153 | void __gcov_flush (void); |
| 154 | __gcov_flush (); |
| 155 | } |
| 156 | #endif |
| 157 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | /* Null terminate. */ |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 159 | vec_add1 (syslog_msg, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 160 | |
| 161 | if (fatal) |
| 162 | { |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 163 | syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg); |
| 164 | |
| 165 | /* Address of callers: outer first, inner last. */ |
| 166 | uword callers[15]; |
| 167 | uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0); |
| 168 | int i; |
| 169 | for (i = 0; i < n_callers; i++) |
| 170 | { |
| 171 | vec_reset_length (syslog_msg); |
| 172 | |
| 173 | syslog_msg = |
| 174 | format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i], |
| 175 | format_clib_elf_symbol_with_address, callers[i], 0); |
| 176 | |
| 177 | syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg); |
| 178 | } |
| 179 | |
| 180 | /* have to remove SIGABRT to avoid recusive - os_exit calling abort() */ |
| 181 | unsetup_signal_handlers (SIGABRT); |
| 182 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | os_exit (1); |
| 184 | } |
| 185 | else |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 186 | clib_warning ("%s", syslog_msg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | static clib_error_t * |
| 191 | setup_signal_handlers (unix_main_t * um) |
| 192 | { |
| 193 | uword i; |
| 194 | struct sigaction sa; |
| 195 | |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 196 | /* give a big enough buffer for msg, most likely it can avoid vec_resize */ |
| 197 | vec_alloc (syslog_msg, 2048); |
| 198 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | for (i = 1; i < 32; i++) |
| 200 | { |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 201 | clib_memset (&sa, 0, sizeof (sa)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | sa.sa_sigaction = (void *) unix_signal_handler; |
| 203 | sa.sa_flags = SA_SIGINFO; |
| 204 | |
| 205 | switch (i) |
| 206 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 207 | /* these signals take the default action */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 208 | case SIGKILL: |
| 209 | case SIGSTOP: |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 210 | case SIGUSR1: |
| 211 | case SIGUSR2: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | continue; |
| 213 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 214 | /* ignore SIGPIPE, SIGCHLD */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | case SIGPIPE: |
| 216 | case SIGCHLD: |
| 217 | sa.sa_sigaction = (void *) SIG_IGN; |
| 218 | break; |
| 219 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 220 | /* catch and handle all other signals */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | default: |
| 222 | break; |
| 223 | } |
| 224 | |
| 225 | if (sigaction (i, &sa, 0) < 0) |
| 226 | return clib_error_return_unix (0, "sigaction %U", format_signal, i); |
| 227 | } |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 232 | static void |
| 233 | unix_error_handler (void *arg, u8 * msg, int msg_len) |
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 | unix_main_t *um = arg; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | |
| 237 | /* Echo to stderr when interactive. */ |
| 238 | if (um->flags & UNIX_FLAG_INTERACTIVE) |
| 239 | { |
| 240 | CLIB_UNUSED (int r) = write (2, msg, msg_len); |
| 241 | } |
| 242 | else |
| 243 | { |
| 244 | char save = msg[msg_len - 1]; |
| 245 | |
| 246 | /* Null Terminate. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 247 | msg[msg_len - 1] = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | |
| 249 | syslog (LOG_ERR | LOG_DAEMON, "%s", msg); |
| 250 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 251 | msg[msg_len - 1] = save; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 255 | void |
| 256 | vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 257 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 258 | unix_main_t *um = &unix_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 260 | if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0) |
| 261 | return; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 262 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 263 | { |
| 264 | char save; |
| 265 | u8 *msg; |
| 266 | u32 msg_len; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 268 | msg = error->what; |
| 269 | msg_len = vec_len (msg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 270 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 271 | /* Null Terminate. */ |
| 272 | save = msg[msg_len - 1]; |
| 273 | msg[msg_len - 1] = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 274 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 275 | syslog (LOG_ERR | LOG_DAEMON, "%s", msg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 277 | msg[msg_len - 1] = save; |
| 278 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static uword |
| 282 | startup_config_process (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 283 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 285 | unix_main_t *um = &unix_main; |
| 286 | u8 *buf = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | uword l, n = 1; |
| 288 | |
| 289 | vlib_process_suspend (vm, 2.0); |
| 290 | |
| 291 | while (um->unix_config_complete == 0) |
| 292 | vlib_process_suspend (vm, 0.1); |
| 293 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 294 | if (um->startup_config_filename) |
| 295 | { |
| 296 | unformat_input_t sub_input; |
| 297 | int fd; |
| 298 | struct stat s; |
| 299 | char *fn = (char *) um->startup_config_filename; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 300 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 301 | fd = open (fn, O_RDONLY); |
| 302 | if (fd < 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 304 | clib_warning ("failed to open `%s'", fn); |
| 305 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 306 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 307 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 308 | if (fstat (fd, &s) < 0) |
| 309 | { |
| 310 | clib_warning ("failed to stat `%s'", fn); |
| 311 | bail: |
| 312 | close (fd); |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode))) |
| 317 | { |
| 318 | clib_warning ("not a regular file: `%s'", fn); |
| 319 | goto bail; |
| 320 | } |
| 321 | |
| 322 | while (n > 0) |
| 323 | { |
| 324 | l = vec_len (buf); |
| 325 | vec_resize (buf, 4096); |
| 326 | n = read (fd, buf + l, 4096); |
| 327 | if (n > 0) |
| 328 | { |
| 329 | _vec_len (buf) = l + n; |
| 330 | if (n < 4096) |
| 331 | break; |
| 332 | } |
| 333 | else |
| 334 | break; |
| 335 | } |
| 336 | if (um->log_fd && vec_len (buf)) |
| 337 | { |
| 338 | u8 *lv = 0; |
| 339 | lv = format (lv, "%U: ***** Startup Config *****\n%v", |
| 340 | format_timeval, 0 /* current bat-time */ , |
| 341 | 0 /* current bat-format */ , |
| 342 | buf); |
| 343 | { |
| 344 | int rv __attribute__ ((unused)) = |
| 345 | write (um->log_fd, lv, vec_len (lv)); |
| 346 | } |
| 347 | vec_reset_length (lv); |
| 348 | lv = format (lv, "%U: ***** End Startup Config *****\n", |
| 349 | format_timeval, 0 /* current bat-time */ , |
| 350 | 0 /* current bat-format */ ); |
| 351 | { |
| 352 | int rv __attribute__ ((unused)) = |
| 353 | write (um->log_fd, lv, vec_len (lv)); |
| 354 | } |
| 355 | vec_free (lv); |
| 356 | } |
| 357 | |
| 358 | if (vec_len (buf)) |
| 359 | { |
| 360 | unformat_init_vector (&sub_input, buf); |
| 361 | vlib_cli_input (vm, &sub_input, 0, 0); |
| 362 | /* frees buf for us */ |
| 363 | unformat_free (&sub_input); |
| 364 | } |
| 365 | close (fd); |
| 366 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | return 0; |
| 368 | } |
| 369 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 370 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 371 | VLIB_REGISTER_NODE (startup_config_node,static) = { |
| 372 | .function = startup_config_process, |
| 373 | .type = VLIB_NODE_TYPE_PROCESS, |
| 374 | .name = "startup-config-process", |
| 375 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 376 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 377 | |
| 378 | static clib_error_t * |
| 379 | unix_config (vlib_main_t * vm, unformat_input_t * input) |
| 380 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 381 | unix_main_t *um = &unix_main; |
| 382 | clib_error_t *error = 0; |
Damjan Marion | a54230d | 2017-06-21 11:57:07 +0200 | [diff] [blame] | 383 | gid_t gid; |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 384 | int pidfd = -1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 385 | |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 386 | /* Defaults */ |
| 387 | um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT; |
| 388 | um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY; |
| 389 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 390 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 391 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 392 | char *cli_prompt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 393 | if (unformat (input, "interactive")) |
| 394 | um->flags |= UNIX_FLAG_INTERACTIVE; |
| 395 | else if (unformat (input, "nodaemon")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 396 | um->flags |= UNIX_FLAG_NODAEMON; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 397 | else if (unformat (input, "cli-prompt %s", &cli_prompt)) |
| 398 | vlib_unix_cli_set_prompt (cli_prompt); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 399 | else |
| 400 | if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 401 | ; |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 402 | else if (unformat (input, "runtime-dir %s", &um->runtime_dir)) |
| 403 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 404 | else if (unformat (input, "cli-line-mode")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 405 | um->cli_line_mode = 1; |
Chris Luke | 572d812 | 2016-04-25 13:49:07 -0400 | [diff] [blame] | 406 | else if (unformat (input, "cli-no-banner")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 407 | um->cli_no_banner = 1; |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 408 | else if (unformat (input, "cli-no-pager")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 409 | um->cli_no_pager = 1; |
Dave Barach | 85aa490 | 2018-06-14 18:52:46 -0400 | [diff] [blame] | 410 | else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec)) |
| 411 | ; |
Chris Luke | 7afda3a | 2016-04-25 13:49:22 -0400 | [diff] [blame] | 412 | else if (unformat (input, "cli-pager-buffer-limit %d", |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 413 | &um->cli_pager_buffer_limit)) |
| 414 | ; |
| 415 | else |
| 416 | if (unformat (input, "cli-history-limit %d", &um->cli_history_limit)) |
| 417 | ; |
Klement Sekera | c8c44eb | 2017-03-02 11:13:30 +0100 | [diff] [blame] | 418 | else if (unformat (input, "coredump-size")) |
| 419 | { |
| 420 | uword coredump_size = 0; |
| 421 | if (unformat (input, "unlimited")) |
| 422 | { |
| 423 | coredump_size = RLIM_INFINITY; |
| 424 | } |
| 425 | else |
| 426 | if (!unformat (input, "%U", unformat_memory_size, &coredump_size)) |
| 427 | { |
| 428 | return clib_error_return (0, |
| 429 | "invalid coredump-size parameter `%U'", |
| 430 | format_unformat_error, input); |
| 431 | } |
| 432 | const struct rlimit new_limit = { coredump_size, coredump_size }; |
| 433 | if (0 != setrlimit (RLIMIT_CORE, &new_limit)) |
| 434 | { |
| 435 | clib_unix_warning ("prlimit() failed"); |
| 436 | } |
| 437 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 438 | else if (unformat (input, "full-coredump")) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 439 | { |
| 440 | int fd; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 441 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 442 | fd = open ("/proc/self/coredump_filter", O_WRONLY); |
Dave Barach | b2a6e25 | 2016-07-27 10:00:58 -0400 | [diff] [blame] | 443 | if (fd >= 0) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 444 | { |
| 445 | if (write (fd, "0x6f\n", 5) != 5) |
| 446 | clib_unix_warning ("coredump filter write failed!"); |
| 447 | close (fd); |
| 448 | } |
| 449 | else |
| 450 | clib_unix_warning ("couldn't open /proc/self/coredump_filter"); |
| 451 | } |
| 452 | else if (unformat (input, "startup-config %s", |
| 453 | &um->startup_config_filename)) |
| 454 | ; |
| 455 | else if (unformat (input, "exec %s", &um->startup_config_filename)) |
| 456 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | else if (unformat (input, "log %s", &um->log_filename)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 458 | { |
| 459 | um->log_fd = open ((char *) um->log_filename, |
| 460 | O_CREAT | O_WRONLY | O_APPEND, 0644); |
| 461 | if (um->log_fd < 0) |
| 462 | { |
| 463 | clib_warning ("couldn't open log '%s'\n", um->log_filename); |
| 464 | um->log_fd = 0; |
| 465 | } |
| 466 | else |
| 467 | { |
| 468 | u8 *lv = 0; |
| 469 | lv = format (0, "%U: ***** Start: PID %d *****\n", |
| 470 | format_timeval, 0 /* current bat-time */ , |
| 471 | 0 /* current bat-format */ , |
| 472 | getpid ()); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 474 | int rv __attribute__ ((unused)) = |
| 475 | write (um->log_fd, lv, vec_len (lv)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 477 | vec_free (lv); |
| 478 | } |
| 479 | } |
Damjan Marion | a54230d | 2017-06-21 11:57:07 +0200 | [diff] [blame] | 480 | else if (unformat (input, "gid %U", unformat_unix_gid, &gid)) |
| 481 | { |
| 482 | if (setegid (gid) == -1) |
| 483 | return clib_error_return_unix (0, "setegid"); |
| 484 | } |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 485 | else if (unformat (input, "pidfile %s", &um->pidfile)) |
| 486 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 487 | else |
| 488 | return clib_error_return (0, "unknown input `%U'", |
| 489 | format_unformat_error, input); |
| 490 | } |
| 491 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 492 | if (um->runtime_dir == 0) |
| 493 | { |
| 494 | uid_t uid = geteuid (); |
| 495 | if (uid == 00) |
| 496 | um->runtime_dir = format (0, "/run/%s%c", |
| 497 | vlib_default_runtime_dir, 0); |
| 498 | else |
| 499 | um->runtime_dir = format (0, "/run/user/%u/%s%c", uid, |
| 500 | vlib_default_runtime_dir, 0); |
| 501 | } |
| 502 | |
Chris Luke | ab7b8d9 | 2017-09-07 07:40:13 -0400 | [diff] [blame] | 503 | error = setup_signal_handlers (um); |
| 504 | if (error) |
| 505 | return error; |
| 506 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 507 | if (um->pidfile) |
| 508 | { |
| 509 | if ((error = vlib_unix_validate_runtime_file (um, |
| 510 | (char *) um->pidfile, |
| 511 | &um->pidfile))) |
| 512 | return error; |
| 513 | |
| 514 | if (((pidfd = open ((char *) um->pidfile, |
| 515 | O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0)) |
| 516 | { |
| 517 | return clib_error_return_unix (0, "open"); |
| 518 | } |
| 519 | } |
| 520 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 521 | if (!(um->flags & UNIX_FLAG_INTERACTIVE)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 522 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 523 | openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON); |
| 524 | clib_error_register_handler (unix_error_handler, um); |
| 525 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 526 | if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0, |
| 527 | /* stdin/stdout/stderr -> /dev/null */ |
| 528 | 0) < 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | clib_error_return (0, "daemon () fails"); |
| 530 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 531 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 532 | if (pidfd >= 0) |
Damjan Marion | c67787b | 2017-08-30 17:12:25 +0200 | [diff] [blame] | 533 | { |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 534 | u8 *lv = format (0, "%d", getpid ()); |
| 535 | if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv)) |
| 536 | { |
| 537 | vec_free (lv); |
| 538 | close (pidfd); |
| 539 | return clib_error_return_unix (0, "write"); |
| 540 | } |
| 541 | vec_free (lv); |
| 542 | close (pidfd); |
Damjan Marion | c67787b | 2017-08-30 17:12:25 +0200 | [diff] [blame] | 543 | } |
| 544 | |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 545 | um->unix_config_complete = 1; |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 546 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | return 0; |
| 548 | } |
| 549 | |
| 550 | /* unix { ... } configuration. */ |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 551 | /*? |
| 552 | * |
| 553 | * @cfgcmd{interactive} |
| 554 | * Attach CLI to stdin/out and provide a debugging command line interface. |
| 555 | * Implies @c nodaemon. |
| 556 | * |
| 557 | * @cfgcmd{nodaemon} |
| 558 | * Do not fork or background the VPP process. Typically used when invoking |
| 559 | * VPP applications from a process monitor. |
| 560 | * |
| 561 | * @cfgcmd{exec, <filename>} |
| 562 | * @par <code>startup-config <filename></code> |
| 563 | * Read startup operational configuration from @c filename. |
| 564 | * The contents of the file will be performed as though entered at the CLI. |
| 565 | * The two keywords are aliases for the same function; if both are specified, |
| 566 | * only the last will have an effect. |
| 567 | * |
| 568 | * @cfgcmd{log, <filename>} |
| 569 | * Logs the startup configuration and all subsequent CLI commands in |
| 570 | * @c filename. |
| 571 | * Very useful in situations where folks don't remember or can't be bothered |
| 572 | * to include CLI commands in bug reports. |
| 573 | * |
Pierre Pfister | 9a244bb | 2017-07-27 22:57:34 -0400 | [diff] [blame] | 574 | * @cfgcmd{pidfile, <filename>} |
| 575 | * Writes the pid of the main thread in @c filename. |
| 576 | * |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 577 | * @cfgcmd{full-coredump} |
| 578 | * Ask the Linux kernel to dump all memory-mapped address regions, instead |
| 579 | * of just text+data+bss. |
| 580 | * |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 581 | * @cfgcmd{runtime-dir} |
| 582 | * Define directory where VPP is going to store all runtime files. |
Paul Vinciguerra | d54815c | 2019-04-11 06:32:19 -0700 | [diff] [blame] | 583 | * Default is /run/vpp when running as root, /run/user/<UID>/vpp if running as |
| 584 | * an unprivileged user. |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 585 | * |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 586 | * @cfgcmd{cli-listen, <address:port>} |
Paul Vinciguerra | d54815c | 2019-04-11 06:32:19 -0700 | [diff] [blame] | 587 | * Bind the CLI to listen at the address and port given. @c localhost |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 588 | * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>, |
| 589 | * is typical. |
| 590 | * |
| 591 | * @cfgcmd{cli-line-mode} |
| 592 | * Disable character-by-character I/O on stdin. Useful when combined with, |
| 593 | * for example, <tt>emacs M-x gud-gdb</tt>. |
| 594 | * |
| 595 | * @cfgcmd{cli-prompt, <string>} |
| 596 | * Configure the CLI prompt to be @c string. |
| 597 | * |
| 598 | * @cfgcmd{cli-history-limit, <nn>} |
Paul Vinciguerra | d54815c | 2019-04-11 06:32:19 -0700 | [diff] [blame] | 599 | * Limit command history to @c nn lines. A value of @c 0 |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 600 | * disables command history. Default value: @c 50 |
| 601 | * |
| 602 | * @cfgcmd{cli-no-banner} |
| 603 | * Disable the login banner on stdin and Telnet connections. |
| 604 | * |
| 605 | * @cfgcmd{cli-no-pager} |
| 606 | * Disable the output pager. |
| 607 | * |
| 608 | * @cfgcmd{cli-pager-buffer-limit, <nn>} |
| 609 | * Limit pager buffer to @c nn lines of output. |
| 610 | * A value of @c 0 disables the pager. Default value: @c 100000 |
Paul Vinciguerra | d54815c | 2019-04-11 06:32:19 -0700 | [diff] [blame] | 611 | * |
| 612 | * @cfgcmd{gid, <nn>} |
| 613 | * Set the effective gid under which the vpp process is to run. |
| 614 | * |
| 615 | * @cfgcmd{poll-sleep-usec, <nn>} |
| 616 | * Set a fixed poll sleep interval between main loop polls. |
Chris Luke | 90f52bf | 2016-09-12 08:55:13 -0400 | [diff] [blame] | 617 | ?*/ |
Damjan Marion | 57d963f | 2017-07-20 19:17:06 +0200 | [diff] [blame] | 618 | VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 619 | |
| 620 | static clib_error_t * |
| 621 | unix_exit (vlib_main_t * vm) |
| 622 | { |
| 623 | /* Close syslog connection. */ |
| 624 | closelog (); |
| 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit); |
| 629 | |
| 630 | u8 **vlib_thread_stacks; |
| 631 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 632 | static uword |
| 633 | thread0 (uword arg) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 634 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 635 | vlib_main_t *vm = (vlib_main_t *) arg; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 636 | unformat_input_t input; |
| 637 | int i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 638 | |
| 639 | unformat_init_command_line (&input, (char **) vm->argv); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 640 | i = vlib_main (vm, &input); |
| 641 | unformat_free (&input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 642 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 643 | return i; |
| 644 | } |
| 645 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 646 | u8 * |
| 647 | vlib_thread_stack_init (uword thread_index) |
| 648 | { |
Dave Barach | 2180bac | 2019-05-10 15:25:10 -0400 | [diff] [blame] | 649 | ASSERT (thread_index < vec_len (vlib_thread_stacks)); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 650 | vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned |
BenoƮt Ganne | 3a95003 | 2019-05-01 10:10:48 +0200 | [diff] [blame] | 651 | (VLIB_THREAD_STACK_SIZE, clib_mem_get_page_size ()); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 652 | |
| 653 | /* |
| 654 | * Disallow writes to the bottom page of the stack, to |
| 655 | * catch stack overflows. |
| 656 | */ |
| 657 | if (mprotect (vlib_thread_stacks[thread_index], |
| 658 | clib_mem_get_page_size (), PROT_READ) < 0) |
| 659 | clib_unix_warning ("thread stack"); |
| 660 | return vlib_thread_stacks[thread_index]; |
| 661 | } |
| 662 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 663 | int |
| 664 | vlib_unix_main (int argc, char *argv[]) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 665 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 666 | vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 667 | unformat_input_t input; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 668 | clib_error_t *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 669 | int i; |
| 670 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 671 | vm->argv = (u8 **) argv; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 672 | vm->name = argv[0]; |
| 673 | vm->heap_base = clib_mem_get_heap (); |
Dave Barach | 6a5adc3 | 2018-07-04 10:56:23 -0400 | [diff] [blame] | 674 | vm->heap_aligned_base = (void *) |
| 675 | (((uword) vm->heap_base) & ~(VLIB_FRAME_ALIGN - 1)); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 676 | ASSERT (vm->heap_base); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 677 | |
Damjan Marion | 3b46cba | 2017-01-23 21:13:45 +0100 | [diff] [blame] | 678 | unformat_init_command_line (&input, (char **) vm->argv); |
| 679 | if ((e = vlib_plugin_config (vm, &input))) |
| 680 | { |
| 681 | clib_error_report (e); |
| 682 | return 1; |
| 683 | } |
| 684 | unformat_free (&input); |
| 685 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 686 | i = vlib_plugin_early_init (vm); |
| 687 | if (i) |
| 688 | return i; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 689 | |
| 690 | unformat_init_command_line (&input, (char **) vm->argv); |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 691 | if (vm->init_functions_called == 0) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 692 | vm->init_functions_called = hash_create (0, /* value bytes */ 0); |
| 693 | e = vlib_call_all_config_functions (vm, &input, 1 /* early */ ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 694 | if (e != 0) |
| 695 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 696 | clib_error_report (e); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 697 | return 1; |
| 698 | } |
| 699 | unformat_free (&input); |
| 700 | |
Kingwel Xie | 497deaf | 2018-06-15 04:56:24 -0400 | [diff] [blame] | 701 | /* always load symbols, for signal handler and mheap memory get/put backtrace */ |
| 702 | clib_elf_main_init (vm->name); |
| 703 | |
Dave Barach | 2180bac | 2019-05-10 15:25:10 -0400 | [diff] [blame] | 704 | vec_validate (vlib_thread_stacks, 0); |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 705 | vlib_thread_stack_init (0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 706 | |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 707 | __os_thread_index = 0; |
Keith Burns (alagalah) | 0bda0f4 | 2017-10-20 13:55:18 -0700 | [diff] [blame] | 708 | vm->thread_index = 0; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 709 | |
| 710 | i = clib_calljmp (thread0, (uword) vm, |
| 711 | (void *) (vlib_thread_stacks[0] + |
| 712 | VLIB_THREAD_STACK_SIZE)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 713 | return i; |
| 714 | } |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 715 | |
| 716 | /* |
| 717 | * fd.io coding-style-patch-verification: ON |
| 718 | * |
| 719 | * Local Variables: |
| 720 | * eval: (c-set-style "gnu") |
| 721 | * End: |
| 722 | */ |