blob: f812b080f07f45ded55db50bce9b21d97b4d1d24 [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;
Damjan Marion88c06212018-03-05 20:08:28 +010064vlib_physmem_main_t physmem_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;
71 return vlib_call_init_function (vm, unix_input_init);
72}
73
74VLIB_INIT_FUNCTION (unix_main_init);
75
Dave Barach9b8ffd92016-07-08 08:13:45 -040076static void
77unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -070078{
Dave Barach903651c2017-10-13 19:16:56 -040079 uword fatal = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040080 u8 *msg = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 msg = format (msg, "received signal %U, PC %U",
Dave Barach9b8ffd92016-07-08 08:13:45 -040083 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85 if (signum == SIGSEGV)
86 msg = format (msg, ", faulting address %p", si->si_addr);
87
88 switch (signum)
89 {
90 /* these (caught) signals cause the application to exit */
91 case SIGTERM:
Dave Barach9b8ffd92016-07-08 08:13:45 -040092 if (unix_main.vlib_main->main_loop_exit_set)
93 {
94 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Dave Barach903651c2017-10-13 19:16:56 -040095 unix_main.vlib_main->main_loop_exit_now = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -040096 }
Dave Barach903651c2017-10-13 19:16:56 -040097 break;
Dave Barachb2a6e252016-07-27 10:00:58 -040098 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 case SIGQUIT:
100 case SIGINT:
101 case SIGILL:
102 case SIGBUS:
103 case SIGSEGV:
104 case SIGHUP:
105 case SIGFPE:
106 fatal = 1;
107 break;
108
109 /* by default, print a message and continue */
110 default:
111 fatal = 0;
112 break;
113 }
114
115 /* Null terminate. */
116 vec_add1 (msg, 0);
117
118 if (fatal)
119 {
120 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
121 os_exit (1);
122 }
123 else
124 clib_warning ("%s", msg);
125
126 vec_free (msg);
127}
128
129static clib_error_t *
130setup_signal_handlers (unix_main_t * um)
131{
132 uword i;
133 struct sigaction sa;
134
135 for (i = 1; i < 32; i++)
136 {
137 memset (&sa, 0, sizeof (sa));
138 sa.sa_sigaction = (void *) unix_signal_handler;
139 sa.sa_flags = SA_SIGINFO;
140
141 switch (i)
142 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400143 /* these signals take the default action */
144 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 case SIGKILL:
146 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400147 case SIGUSR1:
148 case SIGUSR2:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 continue;
150
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 case SIGPIPE:
153 case SIGCHLD:
154 sa.sa_sigaction = (void *) SIG_IGN;
155 break;
156
Dave Barach9b8ffd92016-07-08 08:13:45 -0400157 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 default:
159 break;
160 }
161
162 if (sigaction (i, &sa, 0) < 0)
163 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
164 }
165
166 return 0;
167}
168
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169static void
170unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400172 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174 /* Echo to stderr when interactive. */
175 if (um->flags & UNIX_FLAG_INTERACTIVE)
176 {
177 CLIB_UNUSED (int r) = write (2, msg, msg_len);
178 }
179 else
180 {
181 char save = msg[msg_len - 1];
182
183 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400184 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
186 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
187
Dave Barach9b8ffd92016-07-08 08:13:45 -0400188 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 }
190}
191
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192void
193vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Dave Barach9b8ffd92016-07-08 08:13:45 -0400197 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
198 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Dave Barach9b8ffd92016-07-08 08:13:45 -0400200 {
201 char save;
202 u8 *msg;
203 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Dave Barach9b8ffd92016-07-08 08:13:45 -0400205 msg = error->what;
206 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208 /* Null Terminate. */
209 save = msg[msg_len - 1];
210 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 msg[msg_len - 1] = save;
215 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216}
217
218static uword
219startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400220 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400222 unix_main_t *um = &unix_main;
223 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 uword l, n = 1;
225
226 vlib_process_suspend (vm, 2.0);
227
228 while (um->unix_config_complete == 0)
229 vlib_process_suspend (vm, 0.1);
230
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 if (um->startup_config_filename)
232 {
233 unformat_input_t sub_input;
234 int fd;
235 struct stat s;
236 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Dave Barach9b8ffd92016-07-08 08:13:45 -0400238 fd = open (fn, O_RDONLY);
239 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400241 clib_warning ("failed to open `%s'", fn);
242 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Dave Barach9b8ffd92016-07-08 08:13:45 -0400245 if (fstat (fd, &s) < 0)
246 {
247 clib_warning ("failed to stat `%s'", fn);
248 bail:
249 close (fd);
250 return 0;
251 }
252
253 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
254 {
255 clib_warning ("not a regular file: `%s'", fn);
256 goto bail;
257 }
258
259 while (n > 0)
260 {
261 l = vec_len (buf);
262 vec_resize (buf, 4096);
263 n = read (fd, buf + l, 4096);
264 if (n > 0)
265 {
266 _vec_len (buf) = l + n;
267 if (n < 4096)
268 break;
269 }
270 else
271 break;
272 }
273 if (um->log_fd && vec_len (buf))
274 {
275 u8 *lv = 0;
276 lv = format (lv, "%U: ***** Startup Config *****\n%v",
277 format_timeval, 0 /* current bat-time */ ,
278 0 /* current bat-format */ ,
279 buf);
280 {
281 int rv __attribute__ ((unused)) =
282 write (um->log_fd, lv, vec_len (lv));
283 }
284 vec_reset_length (lv);
285 lv = format (lv, "%U: ***** End Startup Config *****\n",
286 format_timeval, 0 /* current bat-time */ ,
287 0 /* current bat-format */ );
288 {
289 int rv __attribute__ ((unused)) =
290 write (um->log_fd, lv, vec_len (lv));
291 }
292 vec_free (lv);
293 }
294
295 if (vec_len (buf))
296 {
297 unformat_init_vector (&sub_input, buf);
298 vlib_cli_input (vm, &sub_input, 0, 0);
299 /* frees buf for us */
300 unformat_free (&sub_input);
301 }
302 close (fd);
303 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 return 0;
305}
306
Dave Barach9b8ffd92016-07-08 08:13:45 -0400307/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308VLIB_REGISTER_NODE (startup_config_node,static) = {
309 .function = startup_config_process,
310 .type = VLIB_NODE_TYPE_PROCESS,
311 .name = "startup-config-process",
312};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
315static clib_error_t *
316unix_config (vlib_main_t * vm, unformat_input_t * input)
317{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318 unix_main_t *um = &unix_main;
319 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200320 gid_t gid;
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400321 int pidfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Chris Luke7afda3a2016-04-25 13:49:22 -0400323 /* Defaults */
324 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
325 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
326
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
328 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 if (unformat (input, "interactive"))
331 um->flags |= UNIX_FLAG_INTERACTIVE;
332 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333 um->flags |= UNIX_FLAG_NODAEMON;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 else if (unformat (input, "cli-prompt %s", &cli_prompt))
335 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 else
337 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 ;
Damjan Marion57d963f2017-07-20 19:17:06 +0200339 else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
340 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400343 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400344 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400345 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346 um->cli_no_pager = 1;
Dave Barach85aa4902018-06-14 18:52:46 -0400347 else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
348 ;
Chris Luke7afda3a2016-04-25 13:49:22 -0400349 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400350 &um->cli_pager_buffer_limit))
351 ;
352 else
353 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
354 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100355 else if (unformat (input, "coredump-size"))
356 {
357 uword coredump_size = 0;
358 if (unformat (input, "unlimited"))
359 {
360 coredump_size = RLIM_INFINITY;
361 }
362 else
363 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
364 {
365 return clib_error_return (0,
366 "invalid coredump-size parameter `%U'",
367 format_unformat_error, input);
368 }
369 const struct rlimit new_limit = { coredump_size, coredump_size };
370 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
371 {
372 clib_unix_warning ("prlimit() failed");
373 }
374 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 {
377 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400380 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381 {
382 if (write (fd, "0x6f\n", 5) != 5)
383 clib_unix_warning ("coredump filter write failed!");
384 close (fd);
385 }
386 else
387 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
388 }
389 else if (unformat (input, "startup-config %s",
390 &um->startup_config_filename))
391 ;
392 else if (unformat (input, "exec %s", &um->startup_config_filename))
393 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400395 {
396 um->log_fd = open ((char *) um->log_filename,
397 O_CREAT | O_WRONLY | O_APPEND, 0644);
398 if (um->log_fd < 0)
399 {
400 clib_warning ("couldn't open log '%s'\n", um->log_filename);
401 um->log_fd = 0;
402 }
403 else
404 {
405 u8 *lv = 0;
406 lv = format (0, "%U: ***** Start: PID %d *****\n",
407 format_timeval, 0 /* current bat-time */ ,
408 0 /* current bat-format */ ,
409 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411 int rv __attribute__ ((unused)) =
412 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400414 vec_free (lv);
415 }
416 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200417 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
418 {
419 if (setegid (gid) == -1)
420 return clib_error_return_unix (0, "setegid");
421 }
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400422 else if (unformat (input, "pidfile %s", &um->pidfile))
423 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 else
425 return clib_error_return (0, "unknown input `%U'",
426 format_unformat_error, input);
427 }
428
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400429 if (um->runtime_dir == 0)
430 {
431 uid_t uid = geteuid ();
432 if (uid == 00)
433 um->runtime_dir = format (0, "/run/%s%c",
434 vlib_default_runtime_dir, 0);
435 else
436 um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
437 vlib_default_runtime_dir, 0);
438 }
439
Chris Lukeab7b8d92017-09-07 07:40:13 -0400440 error = setup_signal_handlers (um);
441 if (error)
442 return error;
443
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400444 if (um->pidfile)
445 {
446 if ((error = vlib_unix_validate_runtime_file (um,
447 (char *) um->pidfile,
448 &um->pidfile)))
449 return error;
450
451 if (((pidfd = open ((char *) um->pidfile,
452 O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
453 {
454 return clib_error_return_unix (0, "open");
455 }
456 }
457
Dave Barach9b8ffd92016-07-08 08:13:45 -0400458 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
461 clib_error_register_handler (unix_error_handler, um);
462
Dave Barach9b8ffd92016-07-08 08:13:45 -0400463 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
464 /* stdin/stdout/stderr -> /dev/null */
465 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 clib_error_return (0, "daemon () fails");
467 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400469 if (pidfd >= 0)
Damjan Marionc67787b2017-08-30 17:12:25 +0200470 {
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400471 u8 *lv = format (0, "%d", getpid ());
472 if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
473 {
474 vec_free (lv);
475 close (pidfd);
476 return clib_error_return_unix (0, "write");
477 }
478 vec_free (lv);
479 close (pidfd);
Damjan Marionc67787b2017-08-30 17:12:25 +0200480 }
481
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400482 um->unix_config_complete = 1;
Damjan Marion57d963f2017-07-20 19:17:06 +0200483
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484 return 0;
485}
486
487/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400488/*?
489 *
490 * @cfgcmd{interactive}
491 * Attach CLI to stdin/out and provide a debugging command line interface.
492 * Implies @c nodaemon.
493 *
494 * @cfgcmd{nodaemon}
495 * Do not fork or background the VPP process. Typically used when invoking
496 * VPP applications from a process monitor.
497 *
498 * @cfgcmd{exec, &lt;filename&gt;}
499 * @par <code>startup-config &lt;filename&gt;</code>
500 * Read startup operational configuration from @c filename.
501 * The contents of the file will be performed as though entered at the CLI.
502 * The two keywords are aliases for the same function; if both are specified,
503 * only the last will have an effect.
504 *
505 * @cfgcmd{log, &lt;filename&gt;}
506 * Logs the startup configuration and all subsequent CLI commands in
507 * @c filename.
508 * Very useful in situations where folks don't remember or can't be bothered
509 * to include CLI commands in bug reports.
510 *
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400511 * @cfgcmd{pidfile, &lt;filename&gt;}
512 * Writes the pid of the main thread in @c filename.
513 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400514 * @cfgcmd{full-coredump}
515 * Ask the Linux kernel to dump all memory-mapped address regions, instead
516 * of just text+data+bss.
517 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200518 * @cfgcmd{runtime-dir}
519 * Define directory where VPP is going to store all runtime files.
520 * Default is /run/vpp.
521 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400522 * @cfgcmd{cli-listen, &lt;address:port&gt;}
523 * Bind the CLI to listen at the address and port given. @clocalhost
524 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
525 * is typical.
526 *
527 * @cfgcmd{cli-line-mode}
528 * Disable character-by-character I/O on stdin. Useful when combined with,
529 * for example, <tt>emacs M-x gud-gdb</tt>.
530 *
531 * @cfgcmd{cli-prompt, &lt;string&gt;}
532 * Configure the CLI prompt to be @c string.
533 *
534 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
535 * Limit commmand history to @c nn lines. A value of @c 0
536 * disables command history. Default value: @c 50
537 *
538 * @cfgcmd{cli-no-banner}
539 * Disable the login banner on stdin and Telnet connections.
540 *
541 * @cfgcmd{cli-no-pager}
542 * Disable the output pager.
543 *
544 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
545 * Limit pager buffer to @c nn lines of output.
546 * A value of @c 0 disables the pager. Default value: @c 100000
547?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200548VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
550static clib_error_t *
551unix_exit (vlib_main_t * vm)
552{
553 /* Close syslog connection. */
554 closelog ();
555 return 0;
556}
557
558VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
559
560u8 **vlib_thread_stacks;
561
Dave Barach9b8ffd92016-07-08 08:13:45 -0400562static uword
563thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 unformat_input_t input;
567 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400568
569 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 i = vlib_main (vm, &input);
571 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 return i;
574}
575
Damjan Marion586afd72017-04-05 19:18:20 +0200576u8 *
577vlib_thread_stack_init (uword thread_index)
578{
579 vec_validate (vlib_thread_stacks, thread_index);
580 vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned
581 (VLIB_THREAD_STACK_SIZE, VLIB_THREAD_STACK_SIZE);
582
583 /*
584 * Disallow writes to the bottom page of the stack, to
585 * catch stack overflows.
586 */
587 if (mprotect (vlib_thread_stacks[thread_index],
588 clib_mem_get_page_size (), PROT_READ) < 0)
589 clib_unix_warning ("thread stack");
590 return vlib_thread_stacks[thread_index];
591}
592
Dave Barach9b8ffd92016-07-08 08:13:45 -0400593int
594vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599 int i;
600
Dave Barach9b8ffd92016-07-08 08:13:45 -0400601 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602 vm->name = argv[0];
603 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
Damjan Marion3b46cba2017-01-23 21:13:45 +0100606 unformat_init_command_line (&input, (char **) vm->argv);
607 if ((e = vlib_plugin_config (vm, &input)))
608 {
609 clib_error_report (e);
610 return 1;
611 }
612 unformat_free (&input);
613
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614 i = vlib_plugin_early_init (vm);
615 if (i)
616 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617
618 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500619 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
621 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 if (e != 0)
623 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400624 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 return 1;
626 }
627 unformat_free (&input);
628
Damjan Marion586afd72017-04-05 19:18:20 +0200629 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
Damjan Marionf55f9b82017-05-10 21:06:28 +0200631 __os_thread_index = 0;
Keith Burns (alagalah)0bda0f42017-10-20 13:55:18 -0700632 vm->thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400633
634 i = clib_calljmp (thread0, (uword) vm,
635 (void *) (vlib_thread_stacks[0] +
636 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 return i;
638}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400639
640/*
641 * fd.io coding-style-patch-verification: ON
642 *
643 * Local Variables:
644 * eval: (c-set-style "gnu")
645 * End:
646 */