blob: ee28ca8f1aa7d504a638ea010a3bbb1ad3c80d41 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
Tom Jonesab479932024-04-24 10:30:20 +000042#include <vppinfra/unix.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
Jing Peng4859d8d2022-03-04 17:43:50 -050044#include <limits.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#include <signal.h>
46#include <sys/ucontext.h>
47#include <syslog.h>
48#include <sys/types.h>
49#include <sys/stat.h>
50#include <fcntl.h>
Klement Sekerac8c44eb2017-03-02 11:13:30 +010051#include <sys/time.h>
52#include <sys/resource.h>
Damjan Mariona54230d2017-06-21 11:57:07 +020053#include <unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Chris Luke7afda3a2016-04-25 13:49:22 -040055/** Default CLI pager limit is not configured in startup.conf */
56#define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000
57
58/** Default CLI history depth if not configured in startup.conf */
59#define UNIX_CLI_DEFAULT_HISTORY 50
60
Damjan Marion57d963f2017-07-20 19:17:06 +020061char *vlib_default_runtime_dir __attribute__ ((weak));
Damjan Marionc67787b2017-08-30 17:12:25 +020062char *vlib_default_runtime_dir = "vlib";
Chris Luke7afda3a2016-04-25 13:49:22 -040063
Ed Warnickecb9cada2015-12-08 15:45:58 -070064unix_main_t unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +020065clib_file_main_t file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
67static clib_error_t *
68unix_main_init (vlib_main_t * vm)
69{
Dave Barach9b8ffd92016-07-08 08:13:45 -040070 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 um->vlib_main = vm;
Dave Barachf8d50682019-05-14 18:01:44 -040072 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073}
74
Dave Barachf8d50682019-05-14 18:01:44 -040075VLIB_INIT_FUNCTION (unix_main_init) =
76{
77 .runs_before = VLIB_INITS ("unix_input_init"),
78};
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
Kingwel Xie497deaf2018-06-15 04:56:24 -040080static int
81unsetup_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
Paul Vinciguerrad29422c2019-10-27 14:00:53 -040094 corrupted already */
Kingwel Xie497deaf2018-06-15 04:56:24 -040095static u8 *syslog_msg = 0;
Dave Barach695eb932020-10-09 10:17:22 -040096int vlib_last_signum = 0;
97uword vlib_last_faulting_address = 0;
Kingwel Xie497deaf2018-06-15 04:56:24 -040098
Dave Barach9b8ffd92016-07-08 08:13:45 -040099static void
100unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101{
Dave Barach903651c2017-10-13 19:16:56 -0400102 uword fatal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
Dave Barach9e52ef62019-02-28 17:52:57 -0500104 /* These come in handy when looking at core files from optimized images */
Dave Barach695eb932020-10-09 10:17:22 -0400105 vlib_last_signum = signum;
106 vlib_last_faulting_address = (uword) si->si_addr;
Dave Barach9e52ef62019-02-28 17:52:57 -0500107
Kingwel Xie497deaf2018-06-15 04:56:24 -0400108 syslog_msg = format (syslog_msg, "received signal %U, PC %U",
109 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 if (signum == SIGSEGV)
Kingwel Xie497deaf2018-06-15 04:56:24 -0400112 syslog_msg = format (syslog_msg, ", faulting address %p", si->si_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
114 switch (signum)
115 {
116 /* these (caught) signals cause the application to exit */
117 case SIGTERM:
Dave Barachd1e17d02019-03-21 18:01:48 -0400118 /*
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 Barach9b8ffd92016-07-08 08:13:45 -0400122 {
123 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Dave Barach903651c2017-10-13 19:16:56 -0400124 unix_main.vlib_main->main_loop_exit_now = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400125 }
Dave Barachd1e17d02019-03-21 18:01:48 -0400126 else
127 syslog (LOG_ERR | LOG_DAEMON, "IGNORE early SIGTERM...");
Dave Barach903651c2017-10-13 19:16:56 -0400128 break;
Dave Barachb2a6e252016-07-27 10:00:58 -0400129 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 case SIGQUIT:
131 case SIGINT:
132 case SIGILL:
133 case SIGBUS:
134 case SIGSEGV:
135 case SIGHUP:
136 case SIGFPE:
Kingwel Xie497deaf2018-06-15 04:56:24 -0400137 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 fatal = 1;
139 break;
140
141 /* by default, print a message and continue */
142 default:
143 fatal = 0;
144 break;
145 }
146
147 /* Null terminate. */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400148 vec_add1 (syslog_msg, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
150 if (fatal)
151 {
Kingwel Xie497deaf2018-06-15 04:56:24 -0400152 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
153
154 /* Address of callers: outer first, inner last. */
155 uword callers[15];
156 uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0);
157 int i;
158 for (i = 0; i < n_callers; i++)
159 {
160 vec_reset_length (syslog_msg);
161
162 syslog_msg =
163 format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i],
164 format_clib_elf_symbol_with_address, callers[i], 0);
165
166 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
167 }
168
Paul Vinciguerrad29422c2019-10-27 14:00:53 -0400169 /* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400170 unsetup_signal_handlers (SIGABRT);
171
Christian Hopps1da08192020-04-24 04:39:59 -0400172 /* os_exit(1) causes core generation, skip that for SIGINT, SIGHUP */
173 if (signum == SIGINT || signum == SIGHUP)
Christian E. Hopps10a8bda2019-09-27 13:52:50 -0400174 os_exit (0);
175 else
176 os_exit (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 }
178 else
Kingwel Xie497deaf2018-06-15 04:56:24 -0400179 clib_warning ("%s", syslog_msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181}
182
183static clib_error_t *
184setup_signal_handlers (unix_main_t * um)
185{
186 uword i;
187 struct sigaction sa;
188
Kingwel Xie497deaf2018-06-15 04:56:24 -0400189 /* give a big enough buffer for msg, most likely it can avoid vec_resize */
190 vec_alloc (syslog_msg, 2048);
191
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 for (i = 1; i < 32; i++)
193 {
Dave Barachb7b92992018-10-17 10:38:51 -0400194 clib_memset (&sa, 0, sizeof (sa));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 sa.sa_sigaction = (void *) unix_signal_handler;
196 sa.sa_flags = SA_SIGINFO;
197
198 switch (i)
199 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400200 /* these signals take the default action */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 case SIGKILL:
Vladislav Grishenko84862832022-03-21 02:21:42 +0500202 case SIGCONT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400204 case SIGUSR1:
205 case SIGUSR2:
Jieqiang Wang6f533d72020-01-20 13:43:38 +0800206 case SIGPROF:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 continue;
208
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 case SIGPIPE:
211 case SIGCHLD:
212 sa.sa_sigaction = (void *) SIG_IGN;
213 break;
214
Dave Barach9b8ffd92016-07-08 08:13:45 -0400215 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 default:
217 break;
218 }
219
220 if (sigaction (i, &sa, 0) < 0)
221 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
222 }
223
224 return 0;
225}
226
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227static void
228unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800232 /* Echo to stderr when interactive or syslog is disabled. */
233 if (um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 {
235 CLIB_UNUSED (int r) = write (2, msg, msg_len);
236 }
237 else
238 {
Jing Peng4859d8d2022-03-04 17:43:50 -0500239 syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 }
241}
242
Dave Barach9b8ffd92016-07-08 08:13:45 -0400243void
244vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
Dave Barach9b8ffd92016-07-08 08:13:45 -0400248 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
249 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 {
Jing Peng4859d8d2022-03-04 17:43:50 -0500252 u8 *msg = error->what;
253 u32 len = vec_len (msg);
254 int msg_len = (len > INT_MAX) ? INT_MAX : len;
255 syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257}
258
259static uword
260startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 unix_main_t *um = &unix_main;
Xiaoming Jiang4d830d22022-12-08 07:54:06 +0000264 unformat_input_t in;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
266 vlib_process_suspend (vm, 2.0);
267
268 while (um->unix_config_complete == 0)
269 vlib_process_suspend (vm, 0.1);
270
Xiaoming Jiang4d830d22022-12-08 07:54:06 +0000271 if (!um->startup_config_filename)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400272 {
Xiaoming Jiang4d830d22022-12-08 07:54:06 +0000273 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274 }
Xiaoming Jiang4d830d22022-12-08 07:54:06 +0000275
276 unformat_init_vector (&in,
277 format (0, "exec %s", um->startup_config_filename));
278
279 vlib_cli_input (vm, &in, 0, 0);
280
281 unformat_free (&in);
282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 return 0;
284}
285
286VLIB_REGISTER_NODE (startup_config_node,static) = {
287 .function = startup_config_process,
288 .type = VLIB_NODE_TYPE_PROCESS,
289 .name = "startup-config-process",
GordonNoonanb2dbb362019-12-04 15:16:40 +0000290 .process_log2_n_stack_bytes = 18,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291};
292
293static clib_error_t *
294unix_config (vlib_main_t * vm, unformat_input_t * input)
295{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100296 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 unix_main_t *um = &unix_main;
298 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200299 gid_t gid;
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400300 int pidfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
Chris Luke7afda3a2016-04-25 13:49:22 -0400302 /* Defaults */
303 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
304 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
305
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
307 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400308 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 if (unformat (input, "interactive"))
310 um->flags |= UNIX_FLAG_INTERACTIVE;
311 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400312 um->flags |= UNIX_FLAG_NODAEMON;
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800313 else if (unformat (input, "nosyslog"))
314 um->flags |= UNIX_FLAG_NOSYSLOG;
Damjan Marion06d82262020-10-21 12:43:40 +0200315 else if (unformat (input, "nocolor"))
316 um->flags |= UNIX_FLAG_NOCOLOR;
317 else if (unformat (input, "nobanner"))
318 um->flags |= UNIX_FLAG_NOBANNER;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 else if (unformat (input, "cli-prompt %s", &cli_prompt))
320 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 else
322 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 ;
Damjan Marion57d963f2017-07-20 19:17:06 +0200324 else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
325 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400328 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400330 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331 um->cli_no_pager = 1;
Dave Barach85aa4902018-06-14 18:52:46 -0400332 else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
333 ;
Chris Luke7afda3a2016-04-25 13:49:22 -0400334 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 &um->cli_pager_buffer_limit))
336 ;
337 else
338 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
339 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100340 else if (unformat (input, "coredump-size"))
341 {
342 uword coredump_size = 0;
343 if (unformat (input, "unlimited"))
344 {
345 coredump_size = RLIM_INFINITY;
346 }
347 else
348 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
349 {
350 return clib_error_return (0,
351 "invalid coredump-size parameter `%U'",
352 format_unformat_error, input);
353 }
354 const struct rlimit new_limit = { coredump_size, coredump_size };
355 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
356 {
357 clib_unix_warning ("prlimit() failed");
358 }
359 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 {
362 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400365 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400366 {
367 if (write (fd, "0x6f\n", 5) != 5)
368 clib_unix_warning ("coredump filter write failed!");
369 close (fd);
370 }
371 else
372 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
373 }
374 else if (unformat (input, "startup-config %s",
375 &um->startup_config_filename))
376 ;
377 else if (unformat (input, "exec %s", &um->startup_config_filename))
378 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380 {
381 um->log_fd = open ((char *) um->log_filename,
382 O_CREAT | O_WRONLY | O_APPEND, 0644);
383 if (um->log_fd < 0)
384 {
385 clib_warning ("couldn't open log '%s'\n", um->log_filename);
386 um->log_fd = 0;
387 }
388 else
389 {
390 u8 *lv = 0;
391 lv = format (0, "%U: ***** Start: PID %d *****\n",
Andreas Schultz972dc172020-05-15 11:50:07 +0200392 format_timeval, NULL /* current bat-format */,
393 0 /* current bat-time */, getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400395 int rv __attribute__ ((unused)) =
396 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398 vec_free (lv);
399 }
400 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200401 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
402 {
403 if (setegid (gid) == -1)
404 return clib_error_return_unix (0, "setegid");
405 }
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400406 else if (unformat (input, "pidfile %s", &um->pidfile))
407 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 else
409 return clib_error_return (0, "unknown input `%U'",
410 format_unformat_error, input);
411 }
412
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400413 if (um->runtime_dir == 0)
414 {
415 uid_t uid = geteuid ();
416 if (uid == 00)
417 um->runtime_dir = format (0, "/run/%s%c",
418 vlib_default_runtime_dir, 0);
419 else
420 um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
421 vlib_default_runtime_dir, 0);
422 }
423
Ole Troand991a792019-08-19 14:51:45 +0200424 /* Ensure the runtime directory is created */
425 error = vlib_unix_recursive_mkdir ((char *) um->runtime_dir);
426 if (error)
427 return error;
428
Damjan Mariona254de42023-01-26 20:23:11 +0100429 if (chdir ((char *) um->runtime_dir) < 0)
430 return clib_error_return_unix (0, "chdir('%s')", um->runtime_dir);
431
Chris Lukeab7b8d92017-09-07 07:40:13 -0400432 error = setup_signal_handlers (um);
433 if (error)
434 return error;
435
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400436 if (um->pidfile)
437 {
438 if ((error = vlib_unix_validate_runtime_file (um,
439 (char *) um->pidfile,
440 &um->pidfile)))
441 return error;
442
443 if (((pidfd = open ((char *) um->pidfile,
444 O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
445 {
446 return clib_error_return_unix (0, "open");
447 }
448 }
449
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800450 if (!(um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451 {
Damjan Marionfd8deb42021-03-06 12:26:28 +0100452 openlog (vgm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 clib_error_register_handler (unix_error_handler, um);
454
Dave Barach9b8ffd92016-07-08 08:13:45 -0400455 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
456 /* stdin/stdout/stderr -> /dev/null */
457 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 clib_error_return (0, "daemon () fails");
459 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400461 if (pidfd >= 0)
Damjan Marionc67787b2017-08-30 17:12:25 +0200462 {
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400463 u8 *lv = format (0, "%d", getpid ());
464 if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
465 {
466 vec_free (lv);
467 close (pidfd);
468 return clib_error_return_unix (0, "write");
469 }
470 vec_free (lv);
471 close (pidfd);
Damjan Marionc67787b2017-08-30 17:12:25 +0200472 }
473
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400474 um->unix_config_complete = 1;
Damjan Marion57d963f2017-07-20 19:17:06 +0200475
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476 return 0;
477}
478
479/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400480/*?
481 *
482 * @cfgcmd{interactive}
483 * Attach CLI to stdin/out and provide a debugging command line interface.
484 * Implies @c nodaemon.
485 *
486 * @cfgcmd{nodaemon}
487 * Do not fork or background the VPP process. Typically used when invoking
488 * VPP applications from a process monitor.
489 *
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800490 * @cfgcmd{nosyslog}
491 * Do not send e.g. clib_warning(...) output to syslog. Used
492 * when invoking VPP applications from a process monitor which
493 * pipe stdout/stderr to a dedicated logger service.
494 *
Damjan Marion06d82262020-10-21 12:43:40 +0200495 * @cfgcmd{nocolor}
496 * Do not use colors in outputs.
497 * *
498 * @cfgcmd{nobanner}
499 * Do not display startup banner.
500 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400501 * @cfgcmd{exec, &lt;filename&gt;}
502 * @par <code>startup-config &lt;filename&gt;</code>
503 * Read startup operational configuration from @c filename.
504 * The contents of the file will be performed as though entered at the CLI.
505 * The two keywords are aliases for the same function; if both are specified,
506 * only the last will have an effect.
507 *
508 * @cfgcmd{log, &lt;filename&gt;}
509 * Logs the startup configuration and all subsequent CLI commands in
510 * @c filename.
511 * Very useful in situations where folks don't remember or can't be bothered
512 * to include CLI commands in bug reports.
513 *
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400514 * @cfgcmd{pidfile, &lt;filename&gt;}
515 * Writes the pid of the main thread in @c filename.
516 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400517 * @cfgcmd{full-coredump}
518 * Ask the Linux kernel to dump all memory-mapped address regions, instead
519 * of just text+data+bss.
520 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200521 * @cfgcmd{runtime-dir}
522 * Define directory where VPP is going to store all runtime files.
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700523 * Default is /run/vpp when running as root, /run/user/<UID>/vpp if running as
524 * an unprivileged user.
Damjan Marion57d963f2017-07-20 19:17:06 +0200525 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400526 * @cfgcmd{cli-listen, &lt;address:port&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700527 * Bind the CLI to listen at the address and port given. @c localhost
Chris Luke90f52bf2016-09-12 08:55:13 -0400528 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
529 * is typical.
530 *
531 * @cfgcmd{cli-line-mode}
532 * Disable character-by-character I/O on stdin. Useful when combined with,
533 * for example, <tt>emacs M-x gud-gdb</tt>.
534 *
535 * @cfgcmd{cli-prompt, &lt;string&gt;}
536 * Configure the CLI prompt to be @c string.
537 *
538 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700539 * Limit command history to @c nn lines. A value of @c 0
Chris Luke90f52bf2016-09-12 08:55:13 -0400540 * disables command history. Default value: @c 50
541 *
542 * @cfgcmd{cli-no-banner}
543 * Disable the login banner on stdin and Telnet connections.
544 *
545 * @cfgcmd{cli-no-pager}
546 * Disable the output pager.
547 *
548 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
549 * Limit pager buffer to @c nn lines of output.
550 * A value of @c 0 disables the pager. Default value: @c 100000
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700551 *
552 * @cfgcmd{gid, &lt;nn&gt;}
553 * Set the effective gid under which the vpp process is to run.
554 *
555 * @cfgcmd{poll-sleep-usec, &lt;nn&gt;}
556 * Set a fixed poll sleep interval between main loop polls.
Chris Luke90f52bf2016-09-12 08:55:13 -0400557?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200558VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559
560static clib_error_t *
561unix_exit (vlib_main_t * vm)
562{
563 /* Close syslog connection. */
564 closelog ();
565 return 0;
566}
567
568VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
569
570u8 **vlib_thread_stacks;
571
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572static uword
573thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400575 vlib_main_t *vm = (vlib_main_t *) arg;
Damjan Marion2e90b292022-04-04 18:48:11 +0200576 vlib_global_main_t *vgm = vlib_get_global_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 unformat_input_t input;
578 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579
Damjan Marioncea46522020-05-21 16:47:05 +0200580 vlib_process_finish_switch_stack (vm);
581
Damjan Marion2e90b292022-04-04 18:48:11 +0200582 unformat_init_command_line (&input, (char **) vgm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583 i = vlib_main (vm, &input);
584 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586 return i;
587}
588
Damjan Marion586afd72017-04-05 19:18:20 +0200589u8 *
590vlib_thread_stack_init (uword thread_index)
591{
Damjan Marionfc639ff2020-09-11 22:25:34 +0200592 void *stack;
Dave Barach2180bac2019-05-10 15:25:10 -0400593 ASSERT (thread_index < vec_len (vlib_thread_stacks));
Damjan Marionfc639ff2020-09-11 22:25:34 +0200594 stack = clib_mem_vm_map_stack (VLIB_THREAD_STACK_SIZE,
595 CLIB_MEM_PAGE_SZ_DEFAULT,
596 "thread stack: thread %u", thread_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200597
Damjan Marionfc639ff2020-09-11 22:25:34 +0200598 if (stack == CLIB_MEM_VM_MAP_FAILED)
599 clib_panic ("failed to allocate thread %u stack", thread_index);
600
601 vlib_thread_stacks[thread_index] = stack;
602 return stack;
Damjan Marion586afd72017-04-05 19:18:20 +0200603}
604
Damjan Marion2e90b292022-04-04 18:48:11 +0200605#ifndef PATH_MAX
606#define PATH_MAX 4096
607#endif
608
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609int
610vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100612 vlib_global_main_t *vgm = vlib_get_global_main ();
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100613 vlib_main_t *vm = vlib_get_first_main (); /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400615 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616 int i;
617
Damjan Marionfd8deb42021-03-06 12:26:28 +0100618 vec_validate_aligned (vgm->vlib_mains, 0, CLIB_CACHE_LINE_BYTES);
619
Tom Jonesab479932024-04-24 10:30:20 +0000620 vgm->exec_path = (char *) os_get_exec_path ();
621
622 if (vgm->exec_path)
Damjan Marion2e90b292022-04-04 18:48:11 +0200623 {
Tom Jonesab479932024-04-24 10:30:20 +0000624 for (i = vec_len (vgm->exec_path) - 1; i > 0; i--)
625 if (vgm->exec_path[i - 1] == '/')
Damjan Marion2e90b292022-04-04 18:48:11 +0200626 break;
Tom Jonesab479932024-04-24 10:30:20 +0000627
628 vgm->name = 0;
629
630 vec_add (vgm->name, vgm->exec_path + i, vec_len (vgm->exec_path) - i);
631 vec_add1 (vgm->exec_path, 0);
632 vec_add1 (vgm->name, 0);
Damjan Marion2e90b292022-04-04 18:48:11 +0200633 }
634 else
635 vgm->exec_path = vgm->name = argv[0];
636
637 vgm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638
Dave Barach8dc954a2020-02-05 17:31:09 -0500639 clib_time_init (&vm->clib_time);
640
Dave Barachbc867c32020-11-25 10:07:09 -0500641 /* Turn on the event logger at the first possible moment */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100642 vgm->configured_elog_ring_size = 128 << 10;
643 elog_init (vlib_get_elog_main (), vgm->configured_elog_ring_size);
Damjan Marionf553a2c2021-03-26 13:45:37 +0100644 elog_enable_disable (vlib_get_elog_main (), 1);
Dave Barachbc867c32020-11-25 10:07:09 -0500645
Damjan Marion2e90b292022-04-04 18:48:11 +0200646 unformat_init_command_line (&input, (char **) vgm->argv);
Damjan Marion3b46cba2017-01-23 21:13:45 +0100647 if ((e = vlib_plugin_config (vm, &input)))
648 {
649 clib_error_report (e);
650 return 1;
651 }
652 unformat_free (&input);
653
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 i = vlib_plugin_early_init (vm);
655 if (i)
656 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400657
Damjan Marion2e90b292022-04-04 18:48:11 +0200658 unformat_init_command_line (&input, (char **) vgm->argv);
Damjan Marionfd8deb42021-03-06 12:26:28 +0100659 if (vgm->init_functions_called == 0)
660 vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662 if (e != 0)
663 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400664 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665 return 1;
666 }
667 unformat_free (&input);
668
Kingwel Xie497deaf2018-06-15 04:56:24 -0400669 /* always load symbols, for signal handler and mheap memory get/put backtrace */
Damjan Marion2e90b292022-04-04 18:48:11 +0200670 clib_elf_main_init (vgm->exec_path);
Kingwel Xie497deaf2018-06-15 04:56:24 -0400671
Dave Barach2180bac2019-05-10 15:25:10 -0400672 vec_validate (vlib_thread_stacks, 0);
Damjan Marion586afd72017-04-05 19:18:20 +0200673 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674
Damjan Marionf55f9b82017-05-10 21:06:28 +0200675 __os_thread_index = 0;
Keith Burns (alagalah)0bda0f42017-10-20 13:55:18 -0700676 vm->thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400677
Damjan Marioncea46522020-05-21 16:47:05 +0200678 vlib_process_start_switch_stack (vm, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400679 i = clib_calljmp (thread0, (uword) vm,
680 (void *) (vlib_thread_stacks[0] +
681 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 return i;
683}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684
685/*
686 * fd.io coding-style-patch-verification: ON
687 *
688 * Local Variables:
689 * eval: (c-set-style "gnu")
690 * End:
691 */