blob: cb34a89f87a00566b0251dba99d3a762acc57e47 [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));
60char *vlib_default_runtime_dir = "/run/vlib";
Chris Luke7afda3a2016-04-25 13:49:22 -040061
Ed Warnickecb9cada2015-12-08 15:45:58 -070062unix_main_t unix_main;
63
64static clib_error_t *
65unix_main_init (vlib_main_t * vm)
66{
Dave Barach9b8ffd92016-07-08 08:13:45 -040067 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 um->vlib_main = vm;
69 return vlib_call_init_function (vm, unix_input_init);
70}
71
72VLIB_INIT_FUNCTION (unix_main_init);
73
Dave Barach9b8ffd92016-07-08 08:13:45 -040074static void
75unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
77 uword fatal;
Dave Barach9b8ffd92016-07-08 08:13:45 -040078 u8 *msg = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
80 msg = format (msg, "received signal %U, PC %U",
Dave Barach9b8ffd92016-07-08 08:13:45 -040081 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
83 if (signum == SIGSEGV)
84 msg = format (msg, ", faulting address %p", si->si_addr);
85
86 switch (signum)
87 {
88 /* these (caught) signals cause the application to exit */
89 case SIGTERM:
Dave Barach9b8ffd92016-07-08 08:13:45 -040090 if (unix_main.vlib_main->main_loop_exit_set)
91 {
92 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Dave Barach9b8ffd92016-07-08 08:13:45 -040094 clib_longjmp (&unix_main.vlib_main->main_loop_exit,
95 VLIB_MAIN_LOOP_EXIT_CLI);
96 }
Dave Barachb2a6e252016-07-27 10:00:58 -040097 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 case SIGQUIT:
99 case SIGINT:
100 case SIGILL:
101 case SIGBUS:
102 case SIGSEGV:
103 case SIGHUP:
104 case SIGFPE:
105 fatal = 1;
106 break;
107
108 /* by default, print a message and continue */
109 default:
110 fatal = 0;
111 break;
112 }
113
114 /* Null terminate. */
115 vec_add1 (msg, 0);
116
117 if (fatal)
118 {
119 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
120 os_exit (1);
121 }
122 else
123 clib_warning ("%s", msg);
124
125 vec_free (msg);
126}
127
128static clib_error_t *
129setup_signal_handlers (unix_main_t * um)
130{
131 uword i;
132 struct sigaction sa;
133
134 for (i = 1; i < 32; i++)
135 {
136 memset (&sa, 0, sizeof (sa));
137 sa.sa_sigaction = (void *) unix_signal_handler;
138 sa.sa_flags = SA_SIGINFO;
139
140 switch (i)
141 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400142 /* these signals take the default action */
143 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 case SIGKILL:
145 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400146 case SIGUSR1:
147 case SIGUSR2:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 continue;
149
Dave Barach9b8ffd92016-07-08 08:13:45 -0400150 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 case SIGPIPE:
152 case SIGCHLD:
153 sa.sa_sigaction = (void *) SIG_IGN;
154 break;
155
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157 default:
158 break;
159 }
160
161 if (sigaction (i, &sa, 0) < 0)
162 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
163 }
164
165 return 0;
166}
167
Dave Barach9b8ffd92016-07-08 08:13:45 -0400168static void
169unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400171 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173 /* Echo to stderr when interactive. */
174 if (um->flags & UNIX_FLAG_INTERACTIVE)
175 {
176 CLIB_UNUSED (int r) = write (2, msg, msg_len);
177 }
178 else
179 {
180 char save = msg[msg_len - 1];
181
182 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400183 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
185 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
186
Dave Barach9b8ffd92016-07-08 08:13:45 -0400187 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 }
189}
190
Dave Barach9b8ffd92016-07-08 08:13:45 -0400191void
192vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Dave Barach9b8ffd92016-07-08 08:13:45 -0400196 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
197 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 {
200 char save;
201 u8 *msg;
202 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
Dave Barach9b8ffd92016-07-08 08:13:45 -0400204 msg = error->what;
205 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206
Dave Barach9b8ffd92016-07-08 08:13:45 -0400207 /* Null Terminate. */
208 save = msg[msg_len - 1];
209 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 msg[msg_len - 1] = save;
214 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215}
216
217static uword
218startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400221 unix_main_t *um = &unix_main;
222 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 uword l, n = 1;
224
225 vlib_process_suspend (vm, 2.0);
226
227 while (um->unix_config_complete == 0)
228 vlib_process_suspend (vm, 0.1);
229
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 if (um->startup_config_filename)
231 {
232 unformat_input_t sub_input;
233 int fd;
234 struct stat s;
235 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
Dave Barach9b8ffd92016-07-08 08:13:45 -0400237 fd = open (fn, O_RDONLY);
238 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400240 clib_warning ("failed to open `%s'", fn);
241 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Dave Barach9b8ffd92016-07-08 08:13:45 -0400244 if (fstat (fd, &s) < 0)
245 {
246 clib_warning ("failed to stat `%s'", fn);
247 bail:
248 close (fd);
249 return 0;
250 }
251
252 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
253 {
254 clib_warning ("not a regular file: `%s'", fn);
255 goto bail;
256 }
257
258 while (n > 0)
259 {
260 l = vec_len (buf);
261 vec_resize (buf, 4096);
262 n = read (fd, buf + l, 4096);
263 if (n > 0)
264 {
265 _vec_len (buf) = l + n;
266 if (n < 4096)
267 break;
268 }
269 else
270 break;
271 }
272 if (um->log_fd && vec_len (buf))
273 {
274 u8 *lv = 0;
275 lv = format (lv, "%U: ***** Startup Config *****\n%v",
276 format_timeval, 0 /* current bat-time */ ,
277 0 /* current bat-format */ ,
278 buf);
279 {
280 int rv __attribute__ ((unused)) =
281 write (um->log_fd, lv, vec_len (lv));
282 }
283 vec_reset_length (lv);
284 lv = format (lv, "%U: ***** End Startup Config *****\n",
285 format_timeval, 0 /* current bat-time */ ,
286 0 /* current bat-format */ );
287 {
288 int rv __attribute__ ((unused)) =
289 write (um->log_fd, lv, vec_len (lv));
290 }
291 vec_free (lv);
292 }
293
294 if (vec_len (buf))
295 {
296 unformat_init_vector (&sub_input, buf);
297 vlib_cli_input (vm, &sub_input, 0, 0);
298 /* frees buf for us */
299 unformat_free (&sub_input);
300 }
301 close (fd);
302 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 return 0;
304}
305
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307VLIB_REGISTER_NODE (startup_config_node,static) = {
308 .function = startup_config_process,
309 .type = VLIB_NODE_TYPE_PROCESS,
310 .name = "startup-config-process",
311};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400312/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
314static clib_error_t *
315unix_config (vlib_main_t * vm, unformat_input_t * input)
316{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400317 unix_main_t *um = &unix_main;
318 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200319 gid_t gid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Chris Luke7afda3a2016-04-25 13:49:22 -0400321 /* Defaults */
322 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
323 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
324
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
326 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 if (unformat (input, "interactive"))
329 um->flags |= UNIX_FLAG_INTERACTIVE;
330 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331 um->flags |= UNIX_FLAG_NODAEMON;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 else if (unformat (input, "cli-prompt %s", &cli_prompt))
333 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 else
335 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 ;
Damjan Marion57d963f2017-07-20 19:17:06 +0200337 else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
338 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400341 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400343 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400344 um->cli_no_pager = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400345 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346 &um->cli_pager_buffer_limit))
347 ;
348 else
349 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
350 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100351 else if (unformat (input, "coredump-size"))
352 {
353 uword coredump_size = 0;
354 if (unformat (input, "unlimited"))
355 {
356 coredump_size = RLIM_INFINITY;
357 }
358 else
359 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
360 {
361 return clib_error_return (0,
362 "invalid coredump-size parameter `%U'",
363 format_unformat_error, input);
364 }
365 const struct rlimit new_limit = { coredump_size, coredump_size };
366 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
367 {
368 clib_unix_warning ("prlimit() failed");
369 }
370 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 {
373 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400376 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400377 {
378 if (write (fd, "0x6f\n", 5) != 5)
379 clib_unix_warning ("coredump filter write failed!");
380 close (fd);
381 }
382 else
383 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
384 }
385 else if (unformat (input, "startup-config %s",
386 &um->startup_config_filename))
387 ;
388 else if (unformat (input, "exec %s", &um->startup_config_filename))
389 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400391 {
392 um->log_fd = open ((char *) um->log_filename,
393 O_CREAT | O_WRONLY | O_APPEND, 0644);
394 if (um->log_fd < 0)
395 {
396 clib_warning ("couldn't open log '%s'\n", um->log_filename);
397 um->log_fd = 0;
398 }
399 else
400 {
401 u8 *lv = 0;
402 lv = format (0, "%U: ***** Start: PID %d *****\n",
403 format_timeval, 0 /* current bat-time */ ,
404 0 /* current bat-format */ ,
405 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400407 int rv __attribute__ ((unused)) =
408 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410 vec_free (lv);
411 }
412 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200413 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
414 {
415 if (setegid (gid) == -1)
416 return clib_error_return_unix (0, "setegid");
417 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 else
419 return clib_error_return (0, "unknown input `%U'",
420 format_unformat_error, input);
421 }
422
Dave Barach81481312017-05-16 09:08:14 -0400423 error = setup_signal_handlers (um);
424 if (error)
425 return error;
426
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
430 clib_error_register_handler (unix_error_handler, um);
431
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
433 /* stdin/stdout/stderr -> /dev/null */
434 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 clib_error_return (0, "daemon () fails");
436 }
437 um->unix_config_complete = 1;
438
Damjan Marion57d963f2017-07-20 19:17:06 +0200439 if (um->runtime_dir == 0)
440 um->runtime_dir = format (0, "%s%c", vlib_default_runtime_dir, 0);
441
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 return 0;
443}
444
445/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400446/*?
447 *
448 * @cfgcmd{interactive}
449 * Attach CLI to stdin/out and provide a debugging command line interface.
450 * Implies @c nodaemon.
451 *
452 * @cfgcmd{nodaemon}
453 * Do not fork or background the VPP process. Typically used when invoking
454 * VPP applications from a process monitor.
455 *
456 * @cfgcmd{exec, &lt;filename&gt;}
457 * @par <code>startup-config &lt;filename&gt;</code>
458 * Read startup operational configuration from @c filename.
459 * The contents of the file will be performed as though entered at the CLI.
460 * The two keywords are aliases for the same function; if both are specified,
461 * only the last will have an effect.
462 *
463 * @cfgcmd{log, &lt;filename&gt;}
464 * Logs the startup configuration and all subsequent CLI commands in
465 * @c filename.
466 * Very useful in situations where folks don't remember or can't be bothered
467 * to include CLI commands in bug reports.
468 *
469 * @cfgcmd{full-coredump}
470 * Ask the Linux kernel to dump all memory-mapped address regions, instead
471 * of just text+data+bss.
472 *
Damjan Marion57d963f2017-07-20 19:17:06 +0200473 * @cfgcmd{runtime-dir}
474 * Define directory where VPP is going to store all runtime files.
475 * Default is /run/vpp.
476 *
Chris Luke90f52bf2016-09-12 08:55:13 -0400477 * @cfgcmd{cli-listen, &lt;address:port&gt;}
478 * Bind the CLI to listen at the address and port given. @clocalhost
479 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
480 * is typical.
481 *
482 * @cfgcmd{cli-line-mode}
483 * Disable character-by-character I/O on stdin. Useful when combined with,
484 * for example, <tt>emacs M-x gud-gdb</tt>.
485 *
486 * @cfgcmd{cli-prompt, &lt;string&gt;}
487 * Configure the CLI prompt to be @c string.
488 *
489 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
490 * Limit commmand history to @c nn lines. A value of @c 0
491 * disables command history. Default value: @c 50
492 *
493 * @cfgcmd{cli-no-banner}
494 * Disable the login banner on stdin and Telnet connections.
495 *
496 * @cfgcmd{cli-no-pager}
497 * Disable the output pager.
498 *
499 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
500 * Limit pager buffer to @c nn lines of output.
501 * A value of @c 0 disables the pager. Default value: @c 100000
502?*/
Damjan Marion57d963f2017-07-20 19:17:06 +0200503VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504
505static clib_error_t *
506unix_exit (vlib_main_t * vm)
507{
508 /* Close syslog connection. */
509 closelog ();
510 return 0;
511}
512
513VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
514
515u8 **vlib_thread_stacks;
516
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517static uword
518thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400520 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 unformat_input_t input;
522 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400523
524 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 i = vlib_main (vm, &input);
526 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 return i;
529}
530
Damjan Marion586afd72017-04-05 19:18:20 +0200531u8 *
532vlib_thread_stack_init (uword thread_index)
533{
534 vec_validate (vlib_thread_stacks, thread_index);
535 vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned
536 (VLIB_THREAD_STACK_SIZE, VLIB_THREAD_STACK_SIZE);
537
538 /*
539 * Disallow writes to the bottom page of the stack, to
540 * catch stack overflows.
541 */
542 if (mprotect (vlib_thread_stacks[thread_index],
543 clib_mem_get_page_size (), PROT_READ) < 0)
544 clib_unix_warning ("thread stack");
545 return vlib_thread_stacks[thread_index];
546}
547
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548int
549vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400551 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400553 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 int i;
555
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 vm->name = argv[0];
558 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560
Damjan Marion3b46cba2017-01-23 21:13:45 +0100561 unformat_init_command_line (&input, (char **) vm->argv);
562 if ((e = vlib_plugin_config (vm, &input)))
563 {
564 clib_error_report (e);
565 return 1;
566 }
567 unformat_free (&input);
568
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 i = vlib_plugin_early_init (vm);
570 if (i)
571 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572
573 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500574 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400575 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
576 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 if (e != 0)
578 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 return 1;
581 }
582 unformat_free (&input);
583
Damjan Marion586afd72017-04-05 19:18:20 +0200584 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
Damjan Marionf55f9b82017-05-10 21:06:28 +0200586 __os_thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400587
588 i = clib_calljmp (thread0, (uword) vm,
589 (void *) (vlib_thread_stacks[0] +
590 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 return i;
592}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400593
594/*
595 * fd.io coding-style-patch-verification: ON
596 *
597 * Local Variables:
598 * eval: (c-set-style "gnu")
599 * End:
600 */