blob: 786addf2e0a73c42af61d459e231aeebe9df6269 [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;
Chris Luke7afda3a2016-04-25 13:49:22 -0400347 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400348 &um->cli_pager_buffer_limit))
349 ;
350 else
351 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
352 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100353 else if (unformat (input, "coredump-size"))
354 {
355 uword coredump_size = 0;
356 if (unformat (input, "unlimited"))
357 {
358 coredump_size = RLIM_INFINITY;
359 }
360 else
361 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
362 {
363 return clib_error_return (0,
364 "invalid coredump-size parameter `%U'",
365 format_unformat_error, input);
366 }
367 const struct rlimit new_limit = { coredump_size, coredump_size };
368 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
369 {
370 clib_unix_warning ("prlimit() failed");
371 }
372 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400374 {
375 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
Dave Barach9b8ffd92016-07-08 08:13:45 -0400377 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400378 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379 {
380 if (write (fd, "0x6f\n", 5) != 5)
381 clib_unix_warning ("coredump filter write failed!");
382 close (fd);
383 }
384 else
385 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
386 }
387 else if (unformat (input, "startup-config %s",
388 &um->startup_config_filename))
389 ;
390 else if (unformat (input, "exec %s", &um->startup_config_filename))
391 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400393 {
394 um->log_fd = open ((char *) um->log_filename,
395 O_CREAT | O_WRONLY | O_APPEND, 0644);
396 if (um->log_fd < 0)
397 {
398 clib_warning ("couldn't open log '%s'\n", um->log_filename);
399 um->log_fd = 0;
400 }
401 else
402 {
403 u8 *lv = 0;
404 lv = format (0, "%U: ***** Start: PID %d *****\n",
405 format_timeval, 0 /* current bat-time */ ,
406 0 /* current bat-format */ ,
407 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400409 int rv __attribute__ ((unused)) =
410 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412 vec_free (lv);
413 }
414 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200415 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
416 {
417 if (setegid (gid) == -1)
418 return clib_error_return_unix (0, "setegid");
419 }
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400420 else if (unformat (input, "pidfile %s", &um->pidfile))
421 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 else
423 return clib_error_return (0, "unknown input `%U'",
424 format_unformat_error, input);
425 }
426
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400427 if (um->runtime_dir == 0)
428 {
429 uid_t uid = geteuid ();
430 if (uid == 00)
431 um->runtime_dir = format (0, "/run/%s%c",
432 vlib_default_runtime_dir, 0);
433 else
434 um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
435 vlib_default_runtime_dir, 0);
436 }
437
Chris Lukeab7b8d92017-09-07 07:40:13 -0400438 error = setup_signal_handlers (um);
439 if (error)
440 return error;
441
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400442 if (um->pidfile)
443 {
444 if ((error = vlib_unix_validate_runtime_file (um,
445 (char *) um->pidfile,
446 &um->pidfile)))
447 return error;
448
449 if (((pidfd = open ((char *) um->pidfile,
450 O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
451 {
452 return clib_error_return_unix (0, "open");
453 }
454 }
455
Dave Barach9b8ffd92016-07-08 08:13:45 -0400456 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
459 clib_error_register_handler (unix_error_handler, um);
460
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
462 /* stdin/stdout/stderr -> /dev/null */
463 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 clib_error_return (0, "daemon () fails");
465 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400467 if (pidfd >= 0)
Damjan Marionc67787b2017-08-30 17:12:25 +0200468 {
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400469 u8 *lv = format (0, "%d", getpid ());
470 if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
471 {
472 vec_free (lv);
473 close (pidfd);
474 return clib_error_return_unix (0, "write");
475 }
476 vec_free (lv);
477 close (pidfd);
Damjan Marionc67787b2017-08-30 17:12:25 +0200478 }
479
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400480 um->unix_config_complete = 1;
Damjan Marion57d963f2017-07-20 19:17:06 +0200481
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 return 0;
483}
484
485/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400486/*?
487 *
488 * @cfgcmd{interactive}
489 * Attach CLI to stdin/out and provide a debugging command line interface.
490 * Implies @c nodaemon.
491 *
492 * @cfgcmd{nodaemon}
493 * Do not fork or background the VPP process. Typically used when invoking
494 * VPP applications from a process monitor.
495 *
496 * @cfgcmd{exec, &lt;filename&gt;}
497 * @par <code>startup-config &lt;filename&gt;</code>
498 * Read startup operational configuration from @c filename.
499 * The contents of the file will be performed as though entered at the CLI.
500 * The two keywords are aliases for the same function; if both are specified,
501 * only the last will have an effect.
502 *
503 * @cfgcmd{log, &lt;filename&gt;}
504 * Logs the startup configuration and all subsequent CLI commands in
505 * @c filename.
506 * Very useful in situations where folks don't remember or can't be bothered
507 * to include CLI commands in bug reports.
508 *
Pierre Pfister9a244bb2017-07-27 22:57:34 -0400509 * @cfgcmd{pidfile, &lt;filename&gt;}
510 * Writes the pid of the main thread in @c filename.
511 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400512 * @cfgcmd{full-coredump}
513 * Ask the Linux kernel to dump all memory-mapped address regions, instead
514 * of just text+data+bss.
515 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200516 * @cfgcmd{runtime-dir}
517 * Define directory where VPP is going to store all runtime files.
518 * Default is /run/vpp.
519 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400520 * @cfgcmd{cli-listen, &lt;address:port&gt;}
521 * Bind the CLI to listen at the address and port given. @clocalhost
522 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
523 * is typical.
524 *
525 * @cfgcmd{cli-line-mode}
526 * Disable character-by-character I/O on stdin. Useful when combined with,
527 * for example, <tt>emacs M-x gud-gdb</tt>.
528 *
529 * @cfgcmd{cli-prompt, &lt;string&gt;}
530 * Configure the CLI prompt to be @c string.
531 *
532 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
533 * Limit commmand history to @c nn lines. A value of @c 0
534 * disables command history. Default value: @c 50
535 *
536 * @cfgcmd{cli-no-banner}
537 * Disable the login banner on stdin and Telnet connections.
538 *
539 * @cfgcmd{cli-no-pager}
540 * Disable the output pager.
541 *
542 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
543 * Limit pager buffer to @c nn lines of output.
544 * A value of @c 0 disables the pager. Default value: @c 100000
545?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200546VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
548static clib_error_t *
549unix_exit (vlib_main_t * vm)
550{
551 /* Close syslog connection. */
552 closelog ();
553 return 0;
554}
555
556VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
557
558u8 **vlib_thread_stacks;
559
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560static uword
561thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400563 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 unformat_input_t input;
565 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400566
567 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568 i = vlib_main (vm, &input);
569 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Dave Barach9b8ffd92016-07-08 08:13:45 -0400571 return i;
572}
573
Damjan Marion586afd72017-04-05 19:18:20 +0200574u8 *
575vlib_thread_stack_init (uword thread_index)
576{
577 vec_validate (vlib_thread_stacks, thread_index);
578 vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned
579 (VLIB_THREAD_STACK_SIZE, VLIB_THREAD_STACK_SIZE);
580
581 /*
582 * Disallow writes to the bottom page of the stack, to
583 * catch stack overflows.
584 */
585 if (mprotect (vlib_thread_stacks[thread_index],
586 clib_mem_get_page_size (), PROT_READ) < 0)
587 clib_unix_warning ("thread stack");
588 return vlib_thread_stacks[thread_index];
589}
590
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591int
592vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400594 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 int i;
598
Dave Barach9b8ffd92016-07-08 08:13:45 -0400599 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 vm->name = argv[0];
601 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400602 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
Damjan Marion3b46cba2017-01-23 21:13:45 +0100604 unformat_init_command_line (&input, (char **) vm->argv);
605 if ((e = vlib_plugin_config (vm, &input)))
606 {
607 clib_error_report (e);
608 return 1;
609 }
610 unformat_free (&input);
611
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 i = vlib_plugin_early_init (vm);
613 if (i)
614 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400615
616 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500617 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
619 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 if (e != 0)
621 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400622 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 return 1;
624 }
625 unformat_free (&input);
626
Damjan Marion586afd72017-04-05 19:18:20 +0200627 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628
Damjan Marionf55f9b82017-05-10 21:06:28 +0200629 __os_thread_index = 0;
Keith Burns (alagalah)0bda0f42017-10-20 13:55:18 -0700630 vm->thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631
632 i = clib_calljmp (thread0, (uword) vm,
633 (void *) (vlib_thread_stacks[0] +
634 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 return i;
636}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637
638/*
639 * fd.io coding-style-patch-verification: ON
640 *
641 * Local Variables:
642 * eval: (c-set-style "gnu")
643 * End:
644 */