blob: 562778e0e5de47f265469f33df996d2546d42438 [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>
49
Chris Luke7afda3a2016-04-25 13:49:22 -040050/** Default CLI pager limit is not configured in startup.conf */
51#define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000
52
53/** Default CLI history depth if not configured in startup.conf */
54#define UNIX_CLI_DEFAULT_HISTORY 50
55
56
Ed Warnickecb9cada2015-12-08 15:45:58 -070057unix_main_t unix_main;
58
59static clib_error_t *
60unix_main_init (vlib_main_t * vm)
61{
Dave Barach9b8ffd92016-07-08 08:13:45 -040062 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 um->vlib_main = vm;
64 return vlib_call_init_function (vm, unix_input_init);
65}
66
67VLIB_INIT_FUNCTION (unix_main_init);
68
Dave Barach9b8ffd92016-07-08 08:13:45 -040069static void
70unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -070071{
72 uword fatal;
Dave Barach9b8ffd92016-07-08 08:13:45 -040073 u8 *msg = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
75 msg = format (msg, "received signal %U, PC %U",
Dave Barach9b8ffd92016-07-08 08:13:45 -040076 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
78 if (signum == SIGSEGV)
79 msg = format (msg, ", faulting address %p", si->si_addr);
80
81 switch (signum)
82 {
83 /* these (caught) signals cause the application to exit */
84 case SIGTERM:
Dave Barach9b8ffd92016-07-08 08:13:45 -040085 if (unix_main.vlib_main->main_loop_exit_set)
86 {
87 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Dave Barach9b8ffd92016-07-08 08:13:45 -040089 clib_longjmp (&unix_main.vlib_main->main_loop_exit,
90 VLIB_MAIN_LOOP_EXIT_CLI);
91 }
Dave Barachb2a6e252016-07-27 10:00:58 -040092 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 case SIGQUIT:
94 case SIGINT:
95 case SIGILL:
96 case SIGBUS:
97 case SIGSEGV:
98 case SIGHUP:
99 case SIGFPE:
100 fatal = 1;
101 break;
102
103 /* by default, print a message and continue */
104 default:
105 fatal = 0;
106 break;
107 }
108
109 /* Null terminate. */
110 vec_add1 (msg, 0);
111
112 if (fatal)
113 {
114 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
115 os_exit (1);
116 }
117 else
118 clib_warning ("%s", msg);
119
120 vec_free (msg);
121}
122
123static clib_error_t *
124setup_signal_handlers (unix_main_t * um)
125{
126 uword i;
127 struct sigaction sa;
128
129 for (i = 1; i < 32; i++)
130 {
131 memset (&sa, 0, sizeof (sa));
132 sa.sa_sigaction = (void *) unix_signal_handler;
133 sa.sa_flags = SA_SIGINFO;
134
135 switch (i)
136 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400137 /* these signals take the default action */
138 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 case SIGKILL:
140 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400141 case SIGUSR1:
142 case SIGUSR2:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 continue;
144
Dave Barach9b8ffd92016-07-08 08:13:45 -0400145 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 case SIGPIPE:
147 case SIGCHLD:
148 sa.sa_sigaction = (void *) SIG_IGN;
149 break;
150
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 default:
153 break;
154 }
155
156 if (sigaction (i, &sa, 0) < 0)
157 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
158 }
159
160 return 0;
161}
162
Dave Barach9b8ffd92016-07-08 08:13:45 -0400163static void
164unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 /* Echo to stderr when interactive. */
169 if (um->flags & UNIX_FLAG_INTERACTIVE)
170 {
171 CLIB_UNUSED (int r) = write (2, msg, msg_len);
172 }
173 else
174 {
175 char save = msg[msg_len - 1];
176
177 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
181
Dave Barach9b8ffd92016-07-08 08:13:45 -0400182 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 }
184}
185
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186void
187vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190
Dave Barach9b8ffd92016-07-08 08:13:45 -0400191 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
192 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 {
195 char save;
196 u8 *msg;
197 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 msg = error->what;
200 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Dave Barach9b8ffd92016-07-08 08:13:45 -0400202 /* Null Terminate. */
203 save = msg[msg_len - 1];
204 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
Dave Barach9b8ffd92016-07-08 08:13:45 -0400206 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208 msg[msg_len - 1] = save;
209 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210}
211
212static uword
213startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 unix_main_t *um = &unix_main;
217 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 uword l, n = 1;
219
220 vlib_process_suspend (vm, 2.0);
221
222 while (um->unix_config_complete == 0)
223 vlib_process_suspend (vm, 0.1);
224
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 if (um->startup_config_filename)
226 {
227 unformat_input_t sub_input;
228 int fd;
229 struct stat s;
230 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 fd = open (fn, O_RDONLY);
233 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400235 clib_warning ("failed to open `%s'", fn);
236 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238
Dave Barach9b8ffd92016-07-08 08:13:45 -0400239 if (fstat (fd, &s) < 0)
240 {
241 clib_warning ("failed to stat `%s'", fn);
242 bail:
243 close (fd);
244 return 0;
245 }
246
247 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
248 {
249 clib_warning ("not a regular file: `%s'", fn);
250 goto bail;
251 }
252
253 while (n > 0)
254 {
255 l = vec_len (buf);
256 vec_resize (buf, 4096);
257 n = read (fd, buf + l, 4096);
258 if (n > 0)
259 {
260 _vec_len (buf) = l + n;
261 if (n < 4096)
262 break;
263 }
264 else
265 break;
266 }
267 if (um->log_fd && vec_len (buf))
268 {
269 u8 *lv = 0;
270 lv = format (lv, "%U: ***** Startup Config *****\n%v",
271 format_timeval, 0 /* current bat-time */ ,
272 0 /* current bat-format */ ,
273 buf);
274 {
275 int rv __attribute__ ((unused)) =
276 write (um->log_fd, lv, vec_len (lv));
277 }
278 vec_reset_length (lv);
279 lv = format (lv, "%U: ***** End Startup Config *****\n",
280 format_timeval, 0 /* current bat-time */ ,
281 0 /* current bat-format */ );
282 {
283 int rv __attribute__ ((unused)) =
284 write (um->log_fd, lv, vec_len (lv));
285 }
286 vec_free (lv);
287 }
288
289 if (vec_len (buf))
290 {
291 unformat_init_vector (&sub_input, buf);
292 vlib_cli_input (vm, &sub_input, 0, 0);
293 /* frees buf for us */
294 unformat_free (&sub_input);
295 }
296 close (fd);
297 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 return 0;
299}
300
Dave Barach9b8ffd92016-07-08 08:13:45 -0400301/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302VLIB_REGISTER_NODE (startup_config_node,static) = {
303 .function = startup_config_process,
304 .type = VLIB_NODE_TYPE_PROCESS,
305 .name = "startup-config-process",
306};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400307/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
309static clib_error_t *
310unix_config (vlib_main_t * vm, unformat_input_t * input)
311{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400312 unix_main_t *um = &unix_main;
313 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Chris Luke7afda3a2016-04-25 13:49:22 -0400315 /* Defaults */
316 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
317 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
318
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
320 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322 if (unformat (input, "interactive"))
323 um->flags |= UNIX_FLAG_INTERACTIVE;
324 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325 um->flags |= UNIX_FLAG_NODAEMON;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 else if (unformat (input, "cli-prompt %s", &cli_prompt))
327 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 else
329 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 ;
331 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400333 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400335 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 um->cli_no_pager = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400337 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 &um->cli_pager_buffer_limit))
339 ;
340 else
341 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
342 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400344 {
345 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400348 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 {
350 if (write (fd, "0x6f\n", 5) != 5)
351 clib_unix_warning ("coredump filter write failed!");
352 close (fd);
353 }
354 else
355 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
356 }
357 else if (unformat (input, "startup-config %s",
358 &um->startup_config_filename))
359 ;
360 else if (unformat (input, "exec %s", &um->startup_config_filename))
361 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400363 {
364 um->log_fd = open ((char *) um->log_filename,
365 O_CREAT | O_WRONLY | O_APPEND, 0644);
366 if (um->log_fd < 0)
367 {
368 clib_warning ("couldn't open log '%s'\n", um->log_filename);
369 um->log_fd = 0;
370 }
371 else
372 {
373 u8 *lv = 0;
374 lv = format (0, "%U: ***** Start: PID %d *****\n",
375 format_timeval, 0 /* current bat-time */ ,
376 0 /* current bat-format */ ,
377 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379 int rv __attribute__ ((unused)) =
380 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382 vec_free (lv);
383 }
384 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 else
386 return clib_error_return (0, "unknown input `%U'",
387 format_unformat_error, input);
388 }
389
Dave Barach9b8ffd92016-07-08 08:13:45 -0400390 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 {
392 error = setup_signal_handlers (um);
393 if (error)
394 return error;
395
396 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
397 clib_error_register_handler (unix_error_handler, um);
398
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
400 /* stdin/stdout/stderr -> /dev/null */
401 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 clib_error_return (0, "daemon () fails");
403 }
404 um->unix_config_complete = 1;
405
406 return 0;
407}
408
409/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400410/*?
411 *
412 * @cfgcmd{interactive}
413 * Attach CLI to stdin/out and provide a debugging command line interface.
414 * Implies @c nodaemon.
415 *
416 * @cfgcmd{nodaemon}
417 * Do not fork or background the VPP process. Typically used when invoking
418 * VPP applications from a process monitor.
419 *
420 * @cfgcmd{exec, &lt;filename&gt;}
421 * @par <code>startup-config &lt;filename&gt;</code>
422 * Read startup operational configuration from @c filename.
423 * The contents of the file will be performed as though entered at the CLI.
424 * The two keywords are aliases for the same function; if both are specified,
425 * only the last will have an effect.
426 *
427 * @cfgcmd{log, &lt;filename&gt;}
428 * Logs the startup configuration and all subsequent CLI commands in
429 * @c filename.
430 * Very useful in situations where folks don't remember or can't be bothered
431 * to include CLI commands in bug reports.
432 *
433 * @cfgcmd{full-coredump}
434 * Ask the Linux kernel to dump all memory-mapped address regions, instead
435 * of just text+data+bss.
436 *
437 * @cfgcmd{cli-listen, &lt;address:port&gt;}
438 * Bind the CLI to listen at the address and port given. @clocalhost
439 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
440 * is typical.
441 *
442 * @cfgcmd{cli-line-mode}
443 * Disable character-by-character I/O on stdin. Useful when combined with,
444 * for example, <tt>emacs M-x gud-gdb</tt>.
445 *
446 * @cfgcmd{cli-prompt, &lt;string&gt;}
447 * Configure the CLI prompt to be @c string.
448 *
449 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
450 * Limit commmand history to @c nn lines. A value of @c 0
451 * disables command history. Default value: @c 50
452 *
453 * @cfgcmd{cli-no-banner}
454 * Disable the login banner on stdin and Telnet connections.
455 *
456 * @cfgcmd{cli-no-pager}
457 * Disable the output pager.
458 *
459 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
460 * Limit pager buffer to @c nn lines of output.
461 * A value of @c 0 disables the pager. Default value: @c 100000
462?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463VLIB_CONFIG_FUNCTION (unix_config, "unix");
464
465static clib_error_t *
466unix_exit (vlib_main_t * vm)
467{
468 /* Close syslog connection. */
469 closelog ();
470 return 0;
471}
472
473VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
474
475u8 **vlib_thread_stacks;
476
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477static uword
478thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 unformat_input_t input;
482 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483
484 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 i = vlib_main (vm, &input);
486 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
Dave Barach9b8ffd92016-07-08 08:13:45 -0400488 return i;
489}
490
491int
492vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400494 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400495 vlib_thread_main_t *tm = &vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 u8 *thread_stacks;
498 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 int i;
500
Dave Barach9b8ffd92016-07-08 08:13:45 -0400501 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 vm->name = argv[0];
503 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
506 i = vlib_plugin_early_init (vm);
507 if (i)
508 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400509
510 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500511 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400512 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
513 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 if (e != 0)
515 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400516 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517 return 1;
518 }
519 unformat_free (&input);
520
Dave Barach01e3caa2016-09-12 16:44:08 -0400521 /*
522 * allocate n x VLIB_THREAD_STACK_SIZE stacks, aligned to a
523 * VLIB_THREAD_STACK_SIZE boundary
524 * See also: os_get_cpu_number() in vlib/vlib/threads.c
525 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 thread_stacks = clib_mem_alloc_aligned
Dave Barachb2a6e252016-07-27 10:00:58 -0400527 ((uword) tm->n_thread_stacks * VLIB_THREAD_STACK_SIZE,
Dave Barach01e3caa2016-09-12 16:44:08 -0400528 VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 vec_validate (vlib_thread_stacks, tm->n_thread_stacks - 1);
531 for (i = 0; i < vec_len (vlib_thread_stacks); i++)
532 {
533 vlib_thread_stacks[i] = thread_stacks;
534
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 * Disallow writes to the bottom page of the stack, to
537 * catch stack overflows.
538 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400539 if (mprotect (thread_stacks, clib_mem_get_page_size (), PROT_READ) < 0)
540 clib_unix_warning ("thread stack");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
542 thread_stacks += VLIB_THREAD_STACK_SIZE;
543 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400544
545 i = clib_calljmp (thread0, (uword) vm,
546 (void *) (vlib_thread_stacks[0] +
547 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548 return i;
549}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550
551/*
552 * fd.io coding-style-patch-verification: ON
553 *
554 * Local Variables:
555 * eval: (c-set-style "gnu")
556 * End:
557 */