blob: e86d421056cbc61159dad7492345b4ab11dd0500 [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
43#include <signal.h>
44#include <sys/ucontext.h>
45#include <syslog.h>
46#include <sys/types.h>
47#include <sys/stat.h>
48#include <fcntl.h>
Klement Sekerac8c44eb2017-03-02 11:13:30 +010049#include <sys/time.h>
50#include <sys/resource.h>
Damjan Mariona54230d2017-06-21 11:57:07 +020051#include <unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Chris Luke7afda3a2016-04-25 13:49:22 -040053/** Default CLI pager limit is not configured in startup.conf */
54#define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000
55
56/** Default CLI history depth if not configured in startup.conf */
57#define UNIX_CLI_DEFAULT_HISTORY 50
58
Damjan Marion57d963f2017-07-20 19:17:06 +020059char *vlib_default_runtime_dir __attribute__ ((weak));
Damjan Marionc67787b2017-08-30 17:12:25 +020060char *vlib_default_runtime_dir = "vlib";
Chris Luke7afda3a2016-04-25 13:49:22 -040061
Ed Warnickecb9cada2015-12-08 15:45:58 -070062unix_main_t unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +020063clib_file_main_t file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
65static clib_error_t *
66unix_main_init (vlib_main_t * vm)
67{
Dave Barach9b8ffd92016-07-08 08:13:45 -040068 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 um->vlib_main = vm;
Dave Barachf8d50682019-05-14 18:01:44 -040070 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071}
72
Dave Barachf8d50682019-05-14 18:01:44 -040073/* *INDENT-OFF* */
74VLIB_INIT_FUNCTION (unix_main_init) =
75{
76 .runs_before = VLIB_INITS ("unix_input_init"),
77};
78/* *INDENT-ON* */
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
Dave Barachad646872019-05-06 10:49:41 -0400147#ifdef CLIB_GCOV
148 /*
149 * Test framework sends SIGTERM, so we need to flush the
150 * code coverage stats here.
151 */
152 {
153 void __gcov_flush (void);
154 __gcov_flush ();
155 }
156#endif
157
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 /* Null terminate. */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400159 vec_add1 (syslog_msg, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
161 if (fatal)
162 {
Kingwel Xie497deaf2018-06-15 04:56:24 -0400163 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
164
165 /* Address of callers: outer first, inner last. */
166 uword callers[15];
167 uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0);
168 int i;
169 for (i = 0; i < n_callers; i++)
170 {
171 vec_reset_length (syslog_msg);
172
173 syslog_msg =
174 format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i],
175 format_clib_elf_symbol_with_address, callers[i], 0);
176
177 syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
178 }
179
Paul Vinciguerrad29422c2019-10-27 14:00:53 -0400180 /* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
Kingwel Xie497deaf2018-06-15 04:56:24 -0400181 unsetup_signal_handlers (SIGABRT);
182
Christian Hopps1da08192020-04-24 04:39:59 -0400183 /* os_exit(1) causes core generation, skip that for SIGINT, SIGHUP */
184 if (signum == SIGINT || signum == SIGHUP)
Christian E. Hopps10a8bda2019-09-27 13:52:50 -0400185 os_exit (0);
186 else
187 os_exit (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 }
189 else
Kingwel Xie497deaf2018-06-15 04:56:24 -0400190 clib_warning ("%s", syslog_msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192}
193
194static clib_error_t *
195setup_signal_handlers (unix_main_t * um)
196{
197 uword i;
198 struct sigaction sa;
199
Kingwel Xie497deaf2018-06-15 04:56:24 -0400200 /* give a big enough buffer for msg, most likely it can avoid vec_resize */
201 vec_alloc (syslog_msg, 2048);
202
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 for (i = 1; i < 32; i++)
204 {
Dave Barachb7b92992018-10-17 10:38:51 -0400205 clib_memset (&sa, 0, sizeof (sa));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 sa.sa_sigaction = (void *) unix_signal_handler;
207 sa.sa_flags = SA_SIGINFO;
208
209 switch (i)
210 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 /* these signals take the default action */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 case SIGKILL:
213 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 case SIGUSR1:
215 case SIGUSR2:
Jieqiang Wang6f533d72020-01-20 13:43:38 +0800216 case SIGPROF:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 continue;
218
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 case SIGPIPE:
221 case SIGCHLD:
222 sa.sa_sigaction = (void *) SIG_IGN;
223 break;
224
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 default:
227 break;
228 }
229
230 if (sigaction (i, &sa, 0) < 0)
231 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
232 }
233
234 return 0;
235}
236
Dave Barach9b8ffd92016-07-08 08:13:45 -0400237static void
238unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400240 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800242 /* Echo to stderr when interactive or syslog is disabled. */
243 if (um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 {
245 CLIB_UNUSED (int r) = write (2, msg, msg_len);
246 }
247 else
248 {
249 char save = msg[msg_len - 1];
250
251 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
254 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
255
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 }
258}
259
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260void
261vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Dave Barach9b8ffd92016-07-08 08:13:45 -0400265 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
266 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268 {
269 char save;
270 u8 *msg;
271 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Dave Barach9b8ffd92016-07-08 08:13:45 -0400273 msg = error->what;
274 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276 /* Null Terminate. */
277 save = msg[msg_len - 1];
278 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Dave Barach9b8ffd92016-07-08 08:13:45 -0400280 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Dave Barach9b8ffd92016-07-08 08:13:45 -0400282 msg[msg_len - 1] = save;
283 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284}
285
286static uword
287startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400288 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400290 unix_main_t *um = &unix_main;
291 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 uword l, n = 1;
293
294 vlib_process_suspend (vm, 2.0);
295
296 while (um->unix_config_complete == 0)
297 vlib_process_suspend (vm, 0.1);
298
Dave Barach9b8ffd92016-07-08 08:13:45 -0400299 if (um->startup_config_filename)
300 {
301 unformat_input_t sub_input;
302 int fd;
303 struct stat s;
304 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306 fd = open (fn, O_RDONLY);
307 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400309 clib_warning ("failed to open `%s'", fn);
310 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313 if (fstat (fd, &s) < 0)
314 {
315 clib_warning ("failed to stat `%s'", fn);
316 bail:
317 close (fd);
318 return 0;
319 }
320
321 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
322 {
323 clib_warning ("not a regular file: `%s'", fn);
324 goto bail;
325 }
326
327 while (n > 0)
328 {
329 l = vec_len (buf);
330 vec_resize (buf, 4096);
331 n = read (fd, buf + l, 4096);
332 if (n > 0)
333 {
334 _vec_len (buf) = l + n;
335 if (n < 4096)
336 break;
337 }
338 else
339 break;
340 }
341 if (um->log_fd && vec_len (buf))
342 {
343 u8 *lv = 0;
344 lv = format (lv, "%U: ***** Startup Config *****\n%v",
345 format_timeval, 0 /* current bat-time */ ,
346 0 /* current bat-format */ ,
347 buf);
348 {
349 int rv __attribute__ ((unused)) =
350 write (um->log_fd, lv, vec_len (lv));
351 }
352 vec_reset_length (lv);
353 lv = format (lv, "%U: ***** End Startup Config *****\n",
354 format_timeval, 0 /* current bat-time */ ,
355 0 /* current bat-format */ );
356 {
357 int rv __attribute__ ((unused)) =
358 write (um->log_fd, lv, vec_len (lv));
359 }
360 vec_free (lv);
361 }
362
363 if (vec_len (buf))
364 {
365 unformat_init_vector (&sub_input, buf);
366 vlib_cli_input (vm, &sub_input, 0, 0);
367 /* frees buf for us */
368 unformat_free (&sub_input);
369 }
370 close (fd);
371 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 return 0;
373}
374
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376VLIB_REGISTER_NODE (startup_config_node,static) = {
377 .function = startup_config_process,
378 .type = VLIB_NODE_TYPE_PROCESS,
379 .name = "startup-config-process",
GordonNoonanb2dbb362019-12-04 15:16:40 +0000380 .process_log2_n_stack_bytes = 18,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
384static clib_error_t *
385unix_config (vlib_main_t * vm, unformat_input_t * input)
386{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 unix_main_t *um = &unix_main;
388 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200389 gid_t gid;
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400390 int pidfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
Chris Luke7afda3a2016-04-25 13:49:22 -0400392 /* Defaults */
393 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
394 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
395
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
397 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 if (unformat (input, "interactive"))
400 um->flags |= UNIX_FLAG_INTERACTIVE;
401 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402 um->flags |= UNIX_FLAG_NODAEMON;
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800403 else if (unformat (input, "nosyslog"))
404 um->flags |= UNIX_FLAG_NOSYSLOG;
Damjan Marion06d82262020-10-21 12:43:40 +0200405 else if (unformat (input, "nocolor"))
406 um->flags |= UNIX_FLAG_NOCOLOR;
407 else if (unformat (input, "nobanner"))
408 um->flags |= UNIX_FLAG_NOBANNER;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 else if (unformat (input, "cli-prompt %s", &cli_prompt))
410 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411 else
412 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 ;
Damjan Marion57d963f2017-07-20 19:17:06 +0200414 else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
415 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400417 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400418 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400419 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400420 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400421 um->cli_no_pager = 1;
Dave Barach85aa4902018-06-14 18:52:46 -0400422 else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
423 ;
Chris Luke7afda3a2016-04-25 13:49:22 -0400424 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 &um->cli_pager_buffer_limit))
426 ;
427 else
428 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
429 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100430 else if (unformat (input, "coredump-size"))
431 {
432 uword coredump_size = 0;
433 if (unformat (input, "unlimited"))
434 {
435 coredump_size = RLIM_INFINITY;
436 }
437 else
438 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
439 {
440 return clib_error_return (0,
441 "invalid coredump-size parameter `%U'",
442 format_unformat_error, input);
443 }
444 const struct rlimit new_limit = { coredump_size, coredump_size };
445 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
446 {
447 clib_unix_warning ("prlimit() failed");
448 }
449 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400451 {
452 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400455 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400456 {
457 if (write (fd, "0x6f\n", 5) != 5)
458 clib_unix_warning ("coredump filter write failed!");
459 close (fd);
460 }
461 else
462 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
463 }
464 else if (unformat (input, "startup-config %s",
465 &um->startup_config_filename))
466 ;
467 else if (unformat (input, "exec %s", &um->startup_config_filename))
468 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470 {
471 um->log_fd = open ((char *) um->log_filename,
472 O_CREAT | O_WRONLY | O_APPEND, 0644);
473 if (um->log_fd < 0)
474 {
475 clib_warning ("couldn't open log '%s'\n", um->log_filename);
476 um->log_fd = 0;
477 }
478 else
479 {
480 u8 *lv = 0;
481 lv = format (0, "%U: ***** Start: PID %d *****\n",
482 format_timeval, 0 /* current bat-time */ ,
483 0 /* current bat-format */ ,
484 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400486 int rv __attribute__ ((unused)) =
487 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 vec_free (lv);
490 }
491 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200492 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
493 {
494 if (setegid (gid) == -1)
495 return clib_error_return_unix (0, "setegid");
496 }
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400497 else if (unformat (input, "pidfile %s", &um->pidfile))
498 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 else
500 return clib_error_return (0, "unknown input `%U'",
501 format_unformat_error, input);
502 }
503
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400504 if (um->runtime_dir == 0)
505 {
506 uid_t uid = geteuid ();
507 if (uid == 00)
508 um->runtime_dir = format (0, "/run/%s%c",
509 vlib_default_runtime_dir, 0);
510 else
511 um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
512 vlib_default_runtime_dir, 0);
513 }
514
Ole Troand991a792019-08-19 14:51:45 +0200515 /* Ensure the runtime directory is created */
516 error = vlib_unix_recursive_mkdir ((char *) um->runtime_dir);
517 if (error)
518 return error;
519
Chris Lukeab7b8d92017-09-07 07:40:13 -0400520 error = setup_signal_handlers (um);
521 if (error)
522 return error;
523
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400524 if (um->pidfile)
525 {
526 if ((error = vlib_unix_validate_runtime_file (um,
527 (char *) um->pidfile,
528 &um->pidfile)))
529 return error;
530
531 if (((pidfd = open ((char *) um->pidfile,
532 O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
533 {
534 return clib_error_return_unix (0, "open");
535 }
536 }
537
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800538 if (!(um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
541 clib_error_register_handler (unix_error_handler, um);
542
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
544 /* stdin/stdout/stderr -> /dev/null */
545 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 clib_error_return (0, "daemon () fails");
547 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400549 if (pidfd >= 0)
Damjan Marionc67787b2017-08-30 17:12:25 +0200550 {
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400551 u8 *lv = format (0, "%d", getpid ());
552 if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
553 {
554 vec_free (lv);
555 close (pidfd);
556 return clib_error_return_unix (0, "write");
557 }
558 vec_free (lv);
559 close (pidfd);
Damjan Marionc67787b2017-08-30 17:12:25 +0200560 }
561
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400562 um->unix_config_complete = 1;
Damjan Marion57d963f2017-07-20 19:17:06 +0200563
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 return 0;
565}
566
567/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400568/*?
569 *
570 * @cfgcmd{interactive}
571 * Attach CLI to stdin/out and provide a debugging command line interface.
572 * Implies @c nodaemon.
573 *
574 * @cfgcmd{nodaemon}
575 * Do not fork or background the VPP process. Typically used when invoking
576 * VPP applications from a process monitor.
577 *
Ruslan Babayeve31820a2020-02-14 17:45:02 -0800578 * @cfgcmd{nosyslog}
579 * Do not send e.g. clib_warning(...) output to syslog. Used
580 * when invoking VPP applications from a process monitor which
581 * pipe stdout/stderr to a dedicated logger service.
582 *
Damjan Marion06d82262020-10-21 12:43:40 +0200583 * @cfgcmd{nocolor}
584 * Do not use colors in outputs.
585 * *
586 * @cfgcmd{nobanner}
587 * Do not display startup banner.
588 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400589 * @cfgcmd{exec, &lt;filename&gt;}
590 * @par <code>startup-config &lt;filename&gt;</code>
591 * Read startup operational configuration from @c filename.
592 * The contents of the file will be performed as though entered at the CLI.
593 * The two keywords are aliases for the same function; if both are specified,
594 * only the last will have an effect.
595 *
596 * @cfgcmd{log, &lt;filename&gt;}
597 * Logs the startup configuration and all subsequent CLI commands in
598 * @c filename.
599 * Very useful in situations where folks don't remember or can't be bothered
600 * to include CLI commands in bug reports.
601 *
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400602 * @cfgcmd{pidfile, &lt;filename&gt;}
603 * Writes the pid of the main thread in @c filename.
604 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400605 * @cfgcmd{full-coredump}
606 * Ask the Linux kernel to dump all memory-mapped address regions, instead
607 * of just text+data+bss.
608 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200609 * @cfgcmd{runtime-dir}
610 * Define directory where VPP is going to store all runtime files.
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700611 * Default is /run/vpp when running as root, /run/user/<UID>/vpp if running as
612 * an unprivileged user.
Damjan Marion57d963f2017-07-20 19:17:06 +0200613 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400614 * @cfgcmd{cli-listen, &lt;address:port&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700615 * Bind the CLI to listen at the address and port given. @c localhost
Chris Luke90f52bf2016-09-12 08:55:13 -0400616 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
617 * is typical.
618 *
619 * @cfgcmd{cli-line-mode}
620 * Disable character-by-character I/O on stdin. Useful when combined with,
621 * for example, <tt>emacs M-x gud-gdb</tt>.
622 *
623 * @cfgcmd{cli-prompt, &lt;string&gt;}
624 * Configure the CLI prompt to be @c string.
625 *
626 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700627 * Limit command history to @c nn lines. A value of @c 0
Chris Luke90f52bf2016-09-12 08:55:13 -0400628 * disables command history. Default value: @c 50
629 *
630 * @cfgcmd{cli-no-banner}
631 * Disable the login banner on stdin and Telnet connections.
632 *
633 * @cfgcmd{cli-no-pager}
634 * Disable the output pager.
635 *
636 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
637 * Limit pager buffer to @c nn lines of output.
638 * A value of @c 0 disables the pager. Default value: @c 100000
Paul Vinciguerrad54815c2019-04-11 06:32:19 -0700639 *
640 * @cfgcmd{gid, &lt;nn&gt;}
641 * Set the effective gid under which the vpp process is to run.
642 *
643 * @cfgcmd{poll-sleep-usec, &lt;nn&gt;}
644 * Set a fixed poll sleep interval between main loop polls.
Chris Luke90f52bf2016-09-12 08:55:13 -0400645?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200646VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648static clib_error_t *
649unix_exit (vlib_main_t * vm)
650{
651 /* Close syslog connection. */
652 closelog ();
653 return 0;
654}
655
656VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
657
658u8 **vlib_thread_stacks;
659
Dave Barach9b8ffd92016-07-08 08:13:45 -0400660static uword
661thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400663 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 unformat_input_t input;
665 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666
Damjan Marioncea46522020-05-21 16:47:05 +0200667 vlib_process_finish_switch_stack (vm);
668
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670 i = vlib_main (vm, &input);
671 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673 return i;
674}
675
Damjan Marion586afd72017-04-05 19:18:20 +0200676u8 *
677vlib_thread_stack_init (uword thread_index)
678{
Damjan Marionfc639ff2020-09-11 22:25:34 +0200679 void *stack;
Dave Barach2180bac2019-05-10 15:25:10 -0400680 ASSERT (thread_index < vec_len (vlib_thread_stacks));
Damjan Marionfc639ff2020-09-11 22:25:34 +0200681 stack = clib_mem_vm_map_stack (VLIB_THREAD_STACK_SIZE,
682 CLIB_MEM_PAGE_SZ_DEFAULT,
683 "thread stack: thread %u", thread_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200684
Damjan Marionfc639ff2020-09-11 22:25:34 +0200685 if (stack == CLIB_MEM_VM_MAP_FAILED)
686 clib_panic ("failed to allocate thread %u stack", thread_index);
687
688 vlib_thread_stacks[thread_index] = stack;
689 return stack;
Damjan Marion586afd72017-04-05 19:18:20 +0200690}
691
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692int
693vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400695 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 int i;
699
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 vm->name = argv[0];
702 vm->heap_base = clib_mem_get_heap ();
Dave Barach6a5adc32018-07-04 10:56:23 -0400703 vm->heap_aligned_base = (void *)
704 (((uword) vm->heap_base) & ~(VLIB_FRAME_ALIGN - 1));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Dave Barach8dc954a2020-02-05 17:31:09 -0500707 clib_time_init (&vm->clib_time);
708
Dave Barachbc867c32020-11-25 10:07:09 -0500709 /* Turn on the event logger at the first possible moment */
710 vm->configured_elog_ring_size = 128 << 10;
711 elog_init (&vm->elog_main, vm->configured_elog_ring_size);
712 elog_enable_disable (&vm->elog_main, 1);
713
Damjan Marion3b46cba2017-01-23 21:13:45 +0100714 unformat_init_command_line (&input, (char **) vm->argv);
715 if ((e = vlib_plugin_config (vm, &input)))
716 {
717 clib_error_report (e);
718 return 1;
719 }
720 unformat_free (&input);
721
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 i = vlib_plugin_early_init (vm);
723 if (i)
724 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725
726 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500727 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
729 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 if (e != 0)
731 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400732 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 return 1;
734 }
735 unformat_free (&input);
736
Kingwel Xie497deaf2018-06-15 04:56:24 -0400737 /* always load symbols, for signal handler and mheap memory get/put backtrace */
738 clib_elf_main_init (vm->name);
739
Dave Barach2180bac2019-05-10 15:25:10 -0400740 vec_validate (vlib_thread_stacks, 0);
Damjan Marion586afd72017-04-05 19:18:20 +0200741 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
Damjan Marionf55f9b82017-05-10 21:06:28 +0200743 __os_thread_index = 0;
Keith Burns (alagalah)0bda0f42017-10-20 13:55:18 -0700744 vm->thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745
Damjan Marioncea46522020-05-21 16:47:05 +0200746 vlib_process_start_switch_stack (vm, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 i = clib_calljmp (thread0, (uword) vm,
748 (void *) (vlib_thread_stacks[0] +
749 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750 return i;
751}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752
753/*
754 * fd.io coding-style-patch-verification: ON
755 *
756 * Local Variables:
757 * eval: (c-set-style "gnu")
758 * End:
759 */