blob: 6b96cc0db47bfc91426efafda3a93706ea19cc02 [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Chris Luke7afda3a2016-04-25 13:49:22 -040052/** Default CLI pager limit is not configured in startup.conf */
53#define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000
54
55/** Default CLI history depth if not configured in startup.conf */
56#define UNIX_CLI_DEFAULT_HISTORY 50
57
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059unix_main_t unix_main;
60
61static clib_error_t *
62unix_main_init (vlib_main_t * vm)
63{
Dave Barach9b8ffd92016-07-08 08:13:45 -040064 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 um->vlib_main = vm;
66 return vlib_call_init_function (vm, unix_input_init);
67}
68
69VLIB_INIT_FUNCTION (unix_main_init);
70
Dave Barach9b8ffd92016-07-08 08:13:45 -040071static void
72unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -070073{
74 uword fatal;
Dave Barach9b8ffd92016-07-08 08:13:45 -040075 u8 *msg = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
77 msg = format (msg, "received signal %U, PC %U",
Dave Barach9b8ffd92016-07-08 08:13:45 -040078 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
80 if (signum == SIGSEGV)
81 msg = format (msg, ", faulting address %p", si->si_addr);
82
83 switch (signum)
84 {
85 /* these (caught) signals cause the application to exit */
86 case SIGTERM:
Dave Barach9b8ffd92016-07-08 08:13:45 -040087 if (unix_main.vlib_main->main_loop_exit_set)
88 {
89 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Dave Barach9b8ffd92016-07-08 08:13:45 -040091 clib_longjmp (&unix_main.vlib_main->main_loop_exit,
92 VLIB_MAIN_LOOP_EXIT_CLI);
93 }
Dave Barachb2a6e252016-07-27 10:00:58 -040094 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -070095 case SIGQUIT:
96 case SIGINT:
97 case SIGILL:
98 case SIGBUS:
99 case SIGSEGV:
100 case SIGHUP:
101 case SIGFPE:
102 fatal = 1;
103 break;
104
105 /* by default, print a message and continue */
106 default:
107 fatal = 0;
108 break;
109 }
110
111 /* Null terminate. */
112 vec_add1 (msg, 0);
113
114 if (fatal)
115 {
116 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
117 os_exit (1);
118 }
119 else
120 clib_warning ("%s", msg);
121
122 vec_free (msg);
123}
124
125static clib_error_t *
126setup_signal_handlers (unix_main_t * um)
127{
128 uword i;
129 struct sigaction sa;
130
131 for (i = 1; i < 32; i++)
132 {
133 memset (&sa, 0, sizeof (sa));
134 sa.sa_sigaction = (void *) unix_signal_handler;
135 sa.sa_flags = SA_SIGINFO;
136
137 switch (i)
138 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400139 /* these signals take the default action */
140 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 case SIGKILL:
142 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400143 case SIGUSR1:
144 case SIGUSR2:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 continue;
146
Dave Barach9b8ffd92016-07-08 08:13:45 -0400147 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 case SIGPIPE:
149 case SIGCHLD:
150 sa.sa_sigaction = (void *) SIG_IGN;
151 break;
152
Dave Barach9b8ffd92016-07-08 08:13:45 -0400153 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 default:
155 break;
156 }
157
158 if (sigaction (i, &sa, 0) < 0)
159 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
160 }
161
162 return 0;
163}
164
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165static void
166unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400168 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170 /* Echo to stderr when interactive. */
171 if (um->flags & UNIX_FLAG_INTERACTIVE)
172 {
173 CLIB_UNUSED (int r) = write (2, msg, msg_len);
174 }
175 else
176 {
177 char save = msg[msg_len - 1];
178
179 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
182 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
183
Dave Barach9b8ffd92016-07-08 08:13:45 -0400184 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 }
186}
187
Dave Barach9b8ffd92016-07-08 08:13:45 -0400188void
189vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400191 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
194 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Dave Barach9b8ffd92016-07-08 08:13:45 -0400196 {
197 char save;
198 u8 *msg;
199 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Dave Barach9b8ffd92016-07-08 08:13:45 -0400201 msg = error->what;
202 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
Dave Barach9b8ffd92016-07-08 08:13:45 -0400204 /* Null Terminate. */
205 save = msg[msg_len - 1];
206 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Dave Barach9b8ffd92016-07-08 08:13:45 -0400210 msg[msg_len - 1] = save;
211 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212}
213
214static uword
215startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 unix_main_t *um = &unix_main;
219 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 uword l, n = 1;
221
222 vlib_process_suspend (vm, 2.0);
223
224 while (um->unix_config_complete == 0)
225 vlib_process_suspend (vm, 0.1);
226
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227 if (um->startup_config_filename)
228 {
229 unformat_input_t sub_input;
230 int fd;
231 struct stat s;
232 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233
Dave Barach9b8ffd92016-07-08 08:13:45 -0400234 fd = open (fn, O_RDONLY);
235 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400237 clib_warning ("failed to open `%s'", fn);
238 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
Dave Barach9b8ffd92016-07-08 08:13:45 -0400241 if (fstat (fd, &s) < 0)
242 {
243 clib_warning ("failed to stat `%s'", fn);
244 bail:
245 close (fd);
246 return 0;
247 }
248
249 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
250 {
251 clib_warning ("not a regular file: `%s'", fn);
252 goto bail;
253 }
254
255 while (n > 0)
256 {
257 l = vec_len (buf);
258 vec_resize (buf, 4096);
259 n = read (fd, buf + l, 4096);
260 if (n > 0)
261 {
262 _vec_len (buf) = l + n;
263 if (n < 4096)
264 break;
265 }
266 else
267 break;
268 }
269 if (um->log_fd && vec_len (buf))
270 {
271 u8 *lv = 0;
272 lv = format (lv, "%U: ***** Startup Config *****\n%v",
273 format_timeval, 0 /* current bat-time */ ,
274 0 /* current bat-format */ ,
275 buf);
276 {
277 int rv __attribute__ ((unused)) =
278 write (um->log_fd, lv, vec_len (lv));
279 }
280 vec_reset_length (lv);
281 lv = format (lv, "%U: ***** End Startup Config *****\n",
282 format_timeval, 0 /* current bat-time */ ,
283 0 /* current bat-format */ );
284 {
285 int rv __attribute__ ((unused)) =
286 write (um->log_fd, lv, vec_len (lv));
287 }
288 vec_free (lv);
289 }
290
291 if (vec_len (buf))
292 {
293 unformat_init_vector (&sub_input, buf);
294 vlib_cli_input (vm, &sub_input, 0, 0);
295 /* frees buf for us */
296 unformat_free (&sub_input);
297 }
298 close (fd);
299 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300 return 0;
301}
302
Dave Barach9b8ffd92016-07-08 08:13:45 -0400303/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304VLIB_REGISTER_NODE (startup_config_node,static) = {
305 .function = startup_config_process,
306 .type = VLIB_NODE_TYPE_PROCESS,
307 .name = "startup-config-process",
308};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400309/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
311static clib_error_t *
312unix_config (vlib_main_t * vm, unformat_input_t * input)
313{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400314 unix_main_t *um = &unix_main;
315 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Chris Luke7afda3a2016-04-25 13:49:22 -0400317 /* Defaults */
318 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
319 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
320
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
322 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324 if (unformat (input, "interactive"))
325 um->flags |= UNIX_FLAG_INTERACTIVE;
326 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327 um->flags |= UNIX_FLAG_NODAEMON;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 else if (unformat (input, "cli-prompt %s", &cli_prompt))
329 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400330 else
331 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 ;
333 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400335 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400337 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 um->cli_no_pager = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400339 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 &um->cli_pager_buffer_limit))
341 ;
342 else
343 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
344 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100345 else if (unformat (input, "coredump-size"))
346 {
347 uword coredump_size = 0;
348 if (unformat (input, "unlimited"))
349 {
350 coredump_size = RLIM_INFINITY;
351 }
352 else
353 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
354 {
355 return clib_error_return (0,
356 "invalid coredump-size parameter `%U'",
357 format_unformat_error, input);
358 }
359 const struct rlimit new_limit = { coredump_size, coredump_size };
360 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
361 {
362 clib_unix_warning ("prlimit() failed");
363 }
364 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400366 {
367 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400370 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 {
372 if (write (fd, "0x6f\n", 5) != 5)
373 clib_unix_warning ("coredump filter write failed!");
374 close (fd);
375 }
376 else
377 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
378 }
379 else if (unformat (input, "startup-config %s",
380 &um->startup_config_filename))
381 ;
382 else if (unformat (input, "exec %s", &um->startup_config_filename))
383 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400385 {
386 um->log_fd = open ((char *) um->log_filename,
387 O_CREAT | O_WRONLY | O_APPEND, 0644);
388 if (um->log_fd < 0)
389 {
390 clib_warning ("couldn't open log '%s'\n", um->log_filename);
391 um->log_fd = 0;
392 }
393 else
394 {
395 u8 *lv = 0;
396 lv = format (0, "%U: ***** Start: PID %d *****\n",
397 format_timeval, 0 /* current bat-time */ ,
398 0 /* current bat-format */ ,
399 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400401 int rv __attribute__ ((unused)) =
402 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400404 vec_free (lv);
405 }
406 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 else
408 return clib_error_return (0, "unknown input `%U'",
409 format_unformat_error, input);
410 }
411
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 {
414 error = setup_signal_handlers (um);
415 if (error)
416 return error;
417
418 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
419 clib_error_register_handler (unix_error_handler, um);
420
Dave Barach9b8ffd92016-07-08 08:13:45 -0400421 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
422 /* stdin/stdout/stderr -> /dev/null */
423 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 clib_error_return (0, "daemon () fails");
425 }
426 um->unix_config_complete = 1;
427
428 return 0;
429}
430
431/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400432/*?
433 *
434 * @cfgcmd{interactive}
435 * Attach CLI to stdin/out and provide a debugging command line interface.
436 * Implies @c nodaemon.
437 *
438 * @cfgcmd{nodaemon}
439 * Do not fork or background the VPP process. Typically used when invoking
440 * VPP applications from a process monitor.
441 *
442 * @cfgcmd{exec, &lt;filename&gt;}
443 * @par <code>startup-config &lt;filename&gt;</code>
444 * Read startup operational configuration from @c filename.
445 * The contents of the file will be performed as though entered at the CLI.
446 * The two keywords are aliases for the same function; if both are specified,
447 * only the last will have an effect.
448 *
449 * @cfgcmd{log, &lt;filename&gt;}
450 * Logs the startup configuration and all subsequent CLI commands in
451 * @c filename.
452 * Very useful in situations where folks don't remember or can't be bothered
453 * to include CLI commands in bug reports.
454 *
455 * @cfgcmd{full-coredump}
456 * Ask the Linux kernel to dump all memory-mapped address regions, instead
457 * of just text+data+bss.
458 *
459 * @cfgcmd{cli-listen, &lt;address:port&gt;}
460 * Bind the CLI to listen at the address and port given. @clocalhost
461 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
462 * is typical.
463 *
464 * @cfgcmd{cli-line-mode}
465 * Disable character-by-character I/O on stdin. Useful when combined with,
466 * for example, <tt>emacs M-x gud-gdb</tt>.
467 *
468 * @cfgcmd{cli-prompt, &lt;string&gt;}
469 * Configure the CLI prompt to be @c string.
470 *
471 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
472 * Limit commmand history to @c nn lines. A value of @c 0
473 * disables command history. Default value: @c 50
474 *
475 * @cfgcmd{cli-no-banner}
476 * Disable the login banner on stdin and Telnet connections.
477 *
478 * @cfgcmd{cli-no-pager}
479 * Disable the output pager.
480 *
481 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
482 * Limit pager buffer to @c nn lines of output.
483 * A value of @c 0 disables the pager. Default value: @c 100000
484?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485VLIB_CONFIG_FUNCTION (unix_config, "unix");
486
487static clib_error_t *
488unix_exit (vlib_main_t * vm)
489{
490 /* Close syslog connection. */
491 closelog ();
492 return 0;
493}
494
495VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
496
497u8 **vlib_thread_stacks;
498
Dave Barach9b8ffd92016-07-08 08:13:45 -0400499static uword
500thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 unformat_input_t input;
504 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400505
506 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507 i = vlib_main (vm, &input);
508 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 return i;
511}
512
513int
514vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400516 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 vlib_thread_main_t *tm = &vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400519 u8 *thread_stacks;
520 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 int i;
522
Dave Barach9b8ffd92016-07-08 08:13:45 -0400523 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524 vm->name = argv[0];
525 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
Damjan Marion3b46cba2017-01-23 21:13:45 +0100528 unformat_init_command_line (&input, (char **) vm->argv);
529 if ((e = vlib_plugin_config (vm, &input)))
530 {
531 clib_error_report (e);
532 return 1;
533 }
534 unformat_free (&input);
535
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 i = vlib_plugin_early_init (vm);
537 if (i)
538 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400539
540 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500541 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
543 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 if (e != 0)
545 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 return 1;
548 }
549 unformat_free (&input);
550
Dave Barach01e3caa2016-09-12 16:44:08 -0400551 /*
552 * allocate n x VLIB_THREAD_STACK_SIZE stacks, aligned to a
553 * VLIB_THREAD_STACK_SIZE boundary
554 * See also: os_get_cpu_number() in vlib/vlib/threads.c
555 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 thread_stacks = clib_mem_alloc_aligned
Dave Barachb2a6e252016-07-27 10:00:58 -0400557 ((uword) tm->n_thread_stacks * VLIB_THREAD_STACK_SIZE,
Dave Barach01e3caa2016-09-12 16:44:08 -0400558 VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 vec_validate (vlib_thread_stacks, tm->n_thread_stacks - 1);
561 for (i = 0; i < vec_len (vlib_thread_stacks); i++)
562 {
563 vlib_thread_stacks[i] = thread_stacks;
564
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 * Disallow writes to the bottom page of the stack, to
567 * catch stack overflows.
568 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400569 if (mprotect (thread_stacks, clib_mem_get_page_size (), PROT_READ) < 0)
570 clib_unix_warning ("thread stack");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
572 thread_stacks += VLIB_THREAD_STACK_SIZE;
573 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574
575 i = clib_calljmp (thread0, (uword) vm,
576 (void *) (vlib_thread_stacks[0] +
577 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578 return i;
579}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400580
581/*
582 * fd.io coding-style-patch-verification: ON
583 *
584 * Local Variables:
585 * eval: (c-set-style "gnu")
586 * End:
587 */