blob: ba1c9d1bd63eecf33b414053e5c3174d95a1b4df [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>
42
Jing Peng4859d8d2022-03-04 17:43:50 -050043#include <limits.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#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 Sekerac8c44eb2017-03-02 11:13:30 +010050#include <sys/time.h>
51#include <sys/resource.h>
Damjan Mariona54230d2017-06-21 11:57:07 +020052#include <unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Chris Luke7afda3a2016-04-25 13:49:22 -040054/** 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 Marion57d963f2017-07-20 19:17:06 +020060char *vlib_default_runtime_dir __attribute__ ((weak));
Damjan Marionc67787b2017-08-30 17:12:25 +020061char *vlib_default_runtime_dir = "vlib";
Chris Luke7afda3a2016-04-25 13:49:22 -040062
Ed Warnickecb9cada2015-12-08 15:45:58 -070063unix_main_t unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +020064clib_file_main_t file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
66static clib_error_t *
67unix_main_init (vlib_main_t * vm)
68{
Dave Barach9b8ffd92016-07-08 08:13:45 -040069 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 um->vlib_main = vm;
Dave Barachf8d50682019-05-14 18:01:44 -040071 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072}
73
Dave Barachf8d50682019-05-14 18:01:44 -040074/* *INDENT-OFF* */
75VLIB_INIT_FUNCTION (unix_main_init) =
76{
77 .runs_before = VLIB_INITS ("unix_input_init"),
78};
79/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Kingwel Xie497deaf2018-06-15 04:56:24 -040081static int
82unsetup_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 Vinciguerrad29422c2019-10-27 14:00:53 -040095 corrupted already */
Kingwel Xie497deaf2018-06-15 04:56:24 -040096static u8 *syslog_msg = 0;
Dave Barach695eb932020-10-09 10:17:22 -040097int vlib_last_signum = 0;
98uword vlib_last_faulting_address = 0;
Kingwel Xie497deaf2018-06-15 04:56:24 -040099
Dave Barach9b8ffd92016-07-08 08:13:45 -0400100static void
101unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102{
Dave Barach903651c2017-10-13 19:16:56 -0400103 uword fatal = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
Dave Barach9e52ef62019-02-28 17:52:57 -0500105 /* These come in handy when looking at core files from optimized images */
Dave Barach695eb932020-10-09 10:17:22 -0400106 vlib_last_signum = signum;
107 vlib_last_faulting_address = (uword) si->si_addr;
Dave Barach9e52ef62019-02-28 17:52:57 -0500108
Kingwel Xie497deaf2018-06-15 04:56:24 -0400109 syslog_msg = format (syslog_msg, "received signal %U, PC %U",
110 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
112 if (signum == SIGSEGV)
Kingwel Xie497deaf2018-06-15 04:56:24 -0400113 syslog_msg = format (syslog_msg, ", faulting address %p", si->si_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
115 switch (signum)
116 {
117 /* these (caught) signals cause the application to exit */
118 case SIGTERM:
Dave Barachd1e17d02019-03-21 18:01:48 -0400119 /*
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 Barach9b8ffd92016-07-08 08:13:45 -0400123 {
124 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Dave Barach903651c2017-10-13 19:16:56 -0400125 unix_main.vlib_main->main_loop_exit_now = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400126 }
Dave Barachd1e17d02019-03-21 18:01:48 -0400127 else
128 syslog (LOG_ERR | LOG_DAEMON, "IGNORE early SIGTERM...");
Dave Barach903651c2017-10-13 19:16:56 -0400129 break;
Dave Barachb2a6e252016-07-27 10:00:58 -0400130 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 case SIGQUIT:
132 case SIGINT:
133 case SIGILL:
134 case SIGBUS:
135 case SIGSEGV:
136 case SIGHUP:
137 case SIGFPE:
Kingwel Xie497deaf2018-06-15 04:56:24 -0400138 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 fatal = 1;
140 break;
141
142 /* by default, print a message and continue */
143 default:
144 fatal = 0;
145 break;
146 }
147
Dave Barachad646872019-05-06 10:49:41 -0400148#ifdef CLIB_GCOV
149 /*
150 * Test framework sends SIGTERM, so we need to flush the
151 * code coverage stats here.
152 */
153 {
154 void __gcov_flush (void);
155 __gcov_flush ();
156 }
157#endif
158
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 /* Null terminate. */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400160 vec_add1 (syslog_msg, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
162 if (fatal)
163 {
Kingwel Xie497deaf2018-06-15 04:56:24 -0400164 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
165
166 /* Address of callers: outer first, inner last. */
167 uword callers[15];
168 uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0);
169 int i;
170 for (i = 0; i < n_callers; i++)
171 {
172 vec_reset_length (syslog_msg);
173
174 syslog_msg =
175 format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i],
176 format_clib_elf_symbol_with_address, callers[i], 0);
177
178 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
179 }
180
Paul Vinciguerrad29422c2019-10-27 14:00:53 -0400181 /* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400182 unsetup_signal_handlers (SIGABRT);
183
Christian Hopps1da08192020-04-24 04:39:59 -0400184 /* os_exit(1) causes core generation, skip that for SIGINT, SIGHUP */
185 if (signum == SIGINT || signum == SIGHUP)
Christian E. Hopps10a8bda2019-09-27 13:52:50 -0400186 os_exit (0);
187 else
188 os_exit (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 }
190 else
Kingwel Xie497deaf2018-06-15 04:56:24 -0400191 clib_warning ("%s", syslog_msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193}
194
195static clib_error_t *
196setup_signal_handlers (unix_main_t * um)
197{
198 uword i;
199 struct sigaction sa;
200
Kingwel Xie497deaf2018-06-15 04:56:24 -0400201 /* give a big enough buffer for msg, most likely it can avoid vec_resize */
202 vec_alloc (syslog_msg, 2048);
203
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 for (i = 1; i < 32; i++)
205 {
Dave Barachb7b92992018-10-17 10:38:51 -0400206 clib_memset (&sa, 0, sizeof (sa));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 sa.sa_sigaction = (void *) unix_signal_handler;
208 sa.sa_flags = SA_SIGINFO;
209
210 switch (i)
211 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212 /* these signals take the default action */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 case SIGKILL:
Vladislav Grishenko84862832022-03-21 02:21:42 +0500214 case SIGCONT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 case SIGUSR1:
217 case SIGUSR2:
Jieqiang Wang6f533d72020-01-20 13:43:38 +0800218 case SIGPROF:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 continue;
220
Dave Barach9b8ffd92016-07-08 08:13:45 -0400221 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 case SIGPIPE:
223 case SIGCHLD:
224 sa.sa_sigaction = (void *) SIG_IGN;
225 break;
226
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 default:
229 break;
230 }
231
232 if (sigaction (i, &sa, 0) < 0)
233 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
234 }
235
236 return 0;
237}
238
Dave Barach9b8ffd92016-07-08 08:13:45 -0400239static void
240unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400242 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800244 /* Echo to stderr when interactive or syslog is disabled. */
245 if (um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 {
247 CLIB_UNUSED (int r) = write (2, msg, msg_len);
248 }
249 else
250 {
Jing Peng4859d8d2022-03-04 17:43:50 -0500251 syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 }
253}
254
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255void
256vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400258 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
261 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 {
Jing Peng4859d8d2022-03-04 17:43:50 -0500264 u8 *msg = error->what;
265 u32 len = vec_len (msg);
266 int msg_len = (len > INT_MAX) ? INT_MAX : len;
267 syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269}
270
271static uword
272startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400273 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 unix_main_t *um = &unix_main;
276 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 uword l, n = 1;
278
279 vlib_process_suspend (vm, 2.0);
280
281 while (um->unix_config_complete == 0)
282 vlib_process_suspend (vm, 0.1);
283
Dave Barach9b8ffd92016-07-08 08:13:45 -0400284 if (um->startup_config_filename)
285 {
286 unformat_input_t sub_input;
287 int fd;
288 struct stat s;
289 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Dave Barach9b8ffd92016-07-08 08:13:45 -0400291 fd = open (fn, O_RDONLY);
292 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400294 clib_warning ("failed to open `%s'", fn);
295 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 if (fstat (fd, &s) < 0)
299 {
300 clib_warning ("failed to stat `%s'", fn);
301 bail:
302 close (fd);
303 return 0;
304 }
305
306 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
307 {
308 clib_warning ("not a regular file: `%s'", fn);
309 goto bail;
310 }
311
312 while (n > 0)
313 {
314 l = vec_len (buf);
315 vec_resize (buf, 4096);
316 n = read (fd, buf + l, 4096);
317 if (n > 0)
318 {
319 _vec_len (buf) = l + n;
320 if (n < 4096)
321 break;
322 }
323 else
324 break;
325 }
326 if (um->log_fd && vec_len (buf))
327 {
328 u8 *lv = 0;
329 lv = format (lv, "%U: ***** Startup Config *****\n%v",
330 format_timeval, 0 /* current bat-time */ ,
331 0 /* current bat-format */ ,
332 buf);
333 {
334 int rv __attribute__ ((unused)) =
335 write (um->log_fd, lv, vec_len (lv));
336 }
337 vec_reset_length (lv);
338 lv = format (lv, "%U: ***** End Startup Config *****\n",
339 format_timeval, 0 /* current bat-time */ ,
340 0 /* current bat-format */ );
341 {
342 int rv __attribute__ ((unused)) =
343 write (um->log_fd, lv, vec_len (lv));
344 }
345 vec_free (lv);
346 }
347
348 if (vec_len (buf))
349 {
350 unformat_init_vector (&sub_input, buf);
351 vlib_cli_input (vm, &sub_input, 0, 0);
352 /* frees buf for us */
353 unformat_free (&sub_input);
354 }
355 close (fd);
356 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357 return 0;
358}
359
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361VLIB_REGISTER_NODE (startup_config_node,static) = {
362 .function = startup_config_process,
363 .type = VLIB_NODE_TYPE_PROCESS,
364 .name = "startup-config-process",
GordonNoonanb2dbb362019-12-04 15:16:40 +0000365 .process_log2_n_stack_bytes = 18,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369static clib_error_t *
370unix_config (vlib_main_t * vm, unformat_input_t * input)
371{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100372 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 unix_main_t *um = &unix_main;
374 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200375 gid_t gid;
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400376 int pidfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Chris Luke7afda3a2016-04-25 13:49:22 -0400378 /* Defaults */
379 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
380 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
381
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
383 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 if (unformat (input, "interactive"))
386 um->flags |= UNIX_FLAG_INTERACTIVE;
387 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400388 um->flags |= UNIX_FLAG_NODAEMON;
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800389 else if (unformat (input, "nosyslog"))
390 um->flags |= UNIX_FLAG_NOSYSLOG;
Damjan Marion06d82262020-10-21 12:43:40 +0200391 else if (unformat (input, "nocolor"))
392 um->flags |= UNIX_FLAG_NOCOLOR;
393 else if (unformat (input, "nobanner"))
394 um->flags |= UNIX_FLAG_NOBANNER;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 else if (unformat (input, "cli-prompt %s", &cli_prompt))
396 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 else
398 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 ;
Damjan Marion57d963f2017-07-20 19:17:06 +0200400 else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
401 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400404 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400406 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400407 um->cli_no_pager = 1;
Dave Barach85aa4902018-06-14 18:52:46 -0400408 else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
409 ;
Chris Luke7afda3a2016-04-25 13:49:22 -0400410 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411 &um->cli_pager_buffer_limit))
412 ;
413 else
414 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
415 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100416 else if (unformat (input, "coredump-size"))
417 {
418 uword coredump_size = 0;
419 if (unformat (input, "unlimited"))
420 {
421 coredump_size = RLIM_INFINITY;
422 }
423 else
424 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
425 {
426 return clib_error_return (0,
427 "invalid coredump-size parameter `%U'",
428 format_unformat_error, input);
429 }
430 const struct rlimit new_limit = { coredump_size, coredump_size };
431 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
432 {
433 clib_unix_warning ("prlimit() failed");
434 }
435 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437 {
438 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400441 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 {
443 if (write (fd, "0x6f\n", 5) != 5)
444 clib_unix_warning ("coredump filter write failed!");
445 close (fd);
446 }
447 else
448 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
449 }
450 else if (unformat (input, "startup-config %s",
451 &um->startup_config_filename))
452 ;
453 else if (unformat (input, "exec %s", &um->startup_config_filename))
454 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400456 {
457 um->log_fd = open ((char *) um->log_filename,
458 O_CREAT | O_WRONLY | O_APPEND, 0644);
459 if (um->log_fd < 0)
460 {
461 clib_warning ("couldn't open log '%s'\n", um->log_filename);
462 um->log_fd = 0;
463 }
464 else
465 {
466 u8 *lv = 0;
467 lv = format (0, "%U: ***** Start: PID %d *****\n",
468 format_timeval, 0 /* current bat-time */ ,
469 0 /* current bat-format */ ,
470 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472 int rv __attribute__ ((unused)) =
473 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400475 vec_free (lv);
476 }
477 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200478 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
479 {
480 if (setegid (gid) == -1)
481 return clib_error_return_unix (0, "setegid");
482 }
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400483 else if (unformat (input, "pidfile %s", &um->pidfile))
484 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 else
486 return clib_error_return (0, "unknown input `%U'",
487 format_unformat_error, input);
488 }
489
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400490 if (um->runtime_dir == 0)
491 {
492 uid_t uid = geteuid ();
493 if (uid == 00)
494 um->runtime_dir = format (0, "/run/%s%c",
495 vlib_default_runtime_dir, 0);
496 else
497 um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
498 vlib_default_runtime_dir, 0);
499 }
500
Ole Troand991a792019-08-19 14:51:45 +0200501 /* Ensure the runtime directory is created */
502 error = vlib_unix_recursive_mkdir ((char *) um->runtime_dir);
503 if (error)
504 return error;
505
Chris Lukeab7b8d92017-09-07 07:40:13 -0400506 error = setup_signal_handlers (um);
507 if (error)
508 return error;
509
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400510 if (um->pidfile)
511 {
512 if ((error = vlib_unix_validate_runtime_file (um,
513 (char *) um->pidfile,
514 &um->pidfile)))
515 return error;
516
517 if (((pidfd = open ((char *) um->pidfile,
518 O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
519 {
520 return clib_error_return_unix (0, "open");
521 }
522 }
523
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800524 if (!(um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 {
Damjan Marionfd8deb42021-03-06 12:26:28 +0100526 openlog (vgm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 clib_error_register_handler (unix_error_handler, um);
528
Dave Barach9b8ffd92016-07-08 08:13:45 -0400529 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
530 /* stdin/stdout/stderr -> /dev/null */
531 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 clib_error_return (0, "daemon () fails");
533 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400535 if (pidfd >= 0)
Damjan Marionc67787b2017-08-30 17:12:25 +0200536 {
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400537 u8 *lv = format (0, "%d", getpid ());
538 if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
539 {
540 vec_free (lv);
541 close (pidfd);
542 return clib_error_return_unix (0, "write");
543 }
544 vec_free (lv);
545 close (pidfd);
Damjan Marionc67787b2017-08-30 17:12:25 +0200546 }
547
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400548 um->unix_config_complete = 1;
Damjan Marion57d963f2017-07-20 19:17:06 +0200549
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550 return 0;
551}
552
553/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400554/*?
555 *
556 * @cfgcmd{interactive}
557 * Attach CLI to stdin/out and provide a debugging command line interface.
558 * Implies @c nodaemon.
559 *
560 * @cfgcmd{nodaemon}
561 * Do not fork or background the VPP process. Typically used when invoking
562 * VPP applications from a process monitor.
563 *
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800564 * @cfgcmd{nosyslog}
565 * Do not send e.g. clib_warning(...) output to syslog. Used
566 * when invoking VPP applications from a process monitor which
567 * pipe stdout/stderr to a dedicated logger service.
568 *
Damjan Marion06d82262020-10-21 12:43:40 +0200569 * @cfgcmd{nocolor}
570 * Do not use colors in outputs.
571 * *
572 * @cfgcmd{nobanner}
573 * Do not display startup banner.
574 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400575 * @cfgcmd{exec, &lt;filename&gt;}
576 * @par <code>startup-config &lt;filename&gt;</code>
577 * Read startup operational configuration from @c filename.
578 * The contents of the file will be performed as though entered at the CLI.
579 * The two keywords are aliases for the same function; if both are specified,
580 * only the last will have an effect.
581 *
582 * @cfgcmd{log, &lt;filename&gt;}
583 * Logs the startup configuration and all subsequent CLI commands in
584 * @c filename.
585 * Very useful in situations where folks don't remember or can't be bothered
586 * to include CLI commands in bug reports.
587 *
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400588 * @cfgcmd{pidfile, &lt;filename&gt;}
589 * Writes the pid of the main thread in @c filename.
590 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400591 * @cfgcmd{full-coredump}
592 * Ask the Linux kernel to dump all memory-mapped address regions, instead
593 * of just text+data+bss.
594 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200595 * @cfgcmd{runtime-dir}
596 * Define directory where VPP is going to store all runtime files.
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700597 * Default is /run/vpp when running as root, /run/user/<UID>/vpp if running as
598 * an unprivileged user.
Damjan Marion57d963f2017-07-20 19:17:06 +0200599 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400600 * @cfgcmd{cli-listen, &lt;address:port&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700601 * Bind the CLI to listen at the address and port given. @c localhost
Chris Luke90f52bf2016-09-12 08:55:13 -0400602 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
603 * is typical.
604 *
605 * @cfgcmd{cli-line-mode}
606 * Disable character-by-character I/O on stdin. Useful when combined with,
607 * for example, <tt>emacs M-x gud-gdb</tt>.
608 *
609 * @cfgcmd{cli-prompt, &lt;string&gt;}
610 * Configure the CLI prompt to be @c string.
611 *
612 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700613 * Limit command history to @c nn lines. A value of @c 0
Chris Luke90f52bf2016-09-12 08:55:13 -0400614 * disables command history. Default value: @c 50
615 *
616 * @cfgcmd{cli-no-banner}
617 * Disable the login banner on stdin and Telnet connections.
618 *
619 * @cfgcmd{cli-no-pager}
620 * Disable the output pager.
621 *
622 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
623 * Limit pager buffer to @c nn lines of output.
624 * A value of @c 0 disables the pager. Default value: @c 100000
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700625 *
626 * @cfgcmd{gid, &lt;nn&gt;}
627 * Set the effective gid under which the vpp process is to run.
628 *
629 * @cfgcmd{poll-sleep-usec, &lt;nn&gt;}
630 * Set a fixed poll sleep interval between main loop polls.
Chris Luke90f52bf2016-09-12 08:55:13 -0400631?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200632VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
634static clib_error_t *
635unix_exit (vlib_main_t * vm)
636{
637 /* Close syslog connection. */
638 closelog ();
639 return 0;
640}
641
642VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
643
644u8 **vlib_thread_stacks;
645
Dave Barach9b8ffd92016-07-08 08:13:45 -0400646static uword
647thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 unformat_input_t input;
651 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400652
Damjan Marioncea46522020-05-21 16:47:05 +0200653 vlib_process_finish_switch_stack (vm);
654
Dave Barach9b8ffd92016-07-08 08:13:45 -0400655 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 i = vlib_main (vm, &input);
657 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658
Dave Barach9b8ffd92016-07-08 08:13:45 -0400659 return i;
660}
661
Damjan Marion586afd72017-04-05 19:18:20 +0200662u8 *
663vlib_thread_stack_init (uword thread_index)
664{
Damjan Marionfc639ff2020-09-11 22:25:34 +0200665 void *stack;
Dave Barach2180bac2019-05-10 15:25:10 -0400666 ASSERT (thread_index < vec_len (vlib_thread_stacks));
Damjan Marionfc639ff2020-09-11 22:25:34 +0200667 stack = clib_mem_vm_map_stack (VLIB_THREAD_STACK_SIZE,
668 CLIB_MEM_PAGE_SZ_DEFAULT,
669 "thread stack: thread %u", thread_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200670
Damjan Marionfc639ff2020-09-11 22:25:34 +0200671 if (stack == CLIB_MEM_VM_MAP_FAILED)
672 clib_panic ("failed to allocate thread %u stack", thread_index);
673
674 vlib_thread_stacks[thread_index] = stack;
675 return stack;
Damjan Marion586afd72017-04-05 19:18:20 +0200676}
677
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678int
679vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100681 vlib_global_main_t *vgm = vlib_get_global_main ();
Damjan Marion6ffb7c62021-03-26 13:06:13 +0100682 vlib_main_t *vm = vlib_get_first_main (); /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685 int i;
686
Damjan Marionfd8deb42021-03-06 12:26:28 +0100687 vec_validate_aligned (vgm->vlib_mains, 0, CLIB_CACHE_LINE_BYTES);
688
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689 vm->argv = (u8 **) argv;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100690 vgm->name = argv[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 vm->heap_base = clib_mem_get_heap ();
Damjan Marionb32bd702021-12-23 17:05:02 +0100692 vm->heap_aligned_base =
693 (void *) (((uword) vm->heap_base) & ~(CLIB_CACHE_LINE_BYTES - 1));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400694 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Dave Barach8dc954a2020-02-05 17:31:09 -0500696 clib_time_init (&vm->clib_time);
697
Dave Barachbc867c32020-11-25 10:07:09 -0500698 /* Turn on the event logger at the first possible moment */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100699 vgm->configured_elog_ring_size = 128 << 10;
700 elog_init (vlib_get_elog_main (), vgm->configured_elog_ring_size);
Damjan Marionf553a2c2021-03-26 13:45:37 +0100701 elog_enable_disable (vlib_get_elog_main (), 1);
Dave Barachbc867c32020-11-25 10:07:09 -0500702
Damjan Marion3b46cba2017-01-23 21:13:45 +0100703 unformat_init_command_line (&input, (char **) vm->argv);
704 if ((e = vlib_plugin_config (vm, &input)))
705 {
706 clib_error_report (e);
707 return 1;
708 }
709 unformat_free (&input);
710
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711 i = vlib_plugin_early_init (vm);
712 if (i)
713 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714
715 unformat_init_command_line (&input, (char **) vm->argv);
Damjan Marionfd8deb42021-03-06 12:26:28 +0100716 if (vgm->init_functions_called == 0)
717 vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400718 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 if (e != 0)
720 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400721 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 return 1;
723 }
724 unformat_free (&input);
725
Kingwel Xie497deaf2018-06-15 04:56:24 -0400726 /* always load symbols, for signal handler and mheap memory get/put backtrace */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100727 clib_elf_main_init (vgm->name);
Kingwel Xie497deaf2018-06-15 04:56:24 -0400728
Dave Barach2180bac2019-05-10 15:25:10 -0400729 vec_validate (vlib_thread_stacks, 0);
Damjan Marion586afd72017-04-05 19:18:20 +0200730 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731
Damjan Marionf55f9b82017-05-10 21:06:28 +0200732 __os_thread_index = 0;
Keith Burns (alagalah)0bda0f42017-10-20 13:55:18 -0700733 vm->thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734
Damjan Marioncea46522020-05-21 16:47:05 +0200735 vlib_process_start_switch_stack (vm, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 i = clib_calljmp (thread0, (uword) vm,
737 (void *) (vlib_thread_stacks[0] +
738 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739 return i;
740}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741
742/*
743 * fd.io coding-style-patch-verification: ON
744 *
745 * Local Variables:
746 * eval: (c-set-style "gnu")
747 * End:
748 */