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