blob: ad1a7c3ccda1c51d10949b42906b05dc6da0fde7 [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
59
Ed Warnickecb9cada2015-12-08 15:45:58 -070060unix_main_t unix_main;
61
62static clib_error_t *
63unix_main_init (vlib_main_t * vm)
64{
Dave Barach9b8ffd92016-07-08 08:13:45 -040065 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 um->vlib_main = vm;
67 return vlib_call_init_function (vm, unix_input_init);
68}
69
70VLIB_INIT_FUNCTION (unix_main_init);
71
Dave Barach9b8ffd92016-07-08 08:13:45 -040072static void
73unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
Ed Warnickecb9cada2015-12-08 15:45:58 -070074{
75 uword fatal;
Dave Barach9b8ffd92016-07-08 08:13:45 -040076 u8 *msg = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
78 msg = format (msg, "received signal %U, PC %U",
Dave Barach9b8ffd92016-07-08 08:13:45 -040079 format_signal, signum, format_ucontext_pc, uc);
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
81 if (signum == SIGSEGV)
82 msg = format (msg, ", faulting address %p", si->si_addr);
83
84 switch (signum)
85 {
86 /* these (caught) signals cause the application to exit */
87 case SIGTERM:
Dave Barach9b8ffd92016-07-08 08:13:45 -040088 if (unix_main.vlib_main->main_loop_exit_set)
89 {
90 syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barach9b8ffd92016-07-08 08:13:45 -040092 clib_longjmp (&unix_main.vlib_main->main_loop_exit,
93 VLIB_MAIN_LOOP_EXIT_CLI);
94 }
Dave Barachb2a6e252016-07-27 10:00:58 -040095 /* fall through */
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 case SIGQUIT:
97 case SIGINT:
98 case SIGILL:
99 case SIGBUS:
100 case SIGSEGV:
101 case SIGHUP:
102 case SIGFPE:
103 fatal = 1;
104 break;
105
106 /* by default, print a message and continue */
107 default:
108 fatal = 0;
109 break;
110 }
111
112 /* Null terminate. */
113 vec_add1 (msg, 0);
114
115 if (fatal)
116 {
117 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
118 os_exit (1);
119 }
120 else
121 clib_warning ("%s", msg);
122
123 vec_free (msg);
124}
125
126static clib_error_t *
127setup_signal_handlers (unix_main_t * um)
128{
129 uword i;
130 struct sigaction sa;
131
132 for (i = 1; i < 32; i++)
133 {
134 memset (&sa, 0, sizeof (sa));
135 sa.sa_sigaction = (void *) unix_signal_handler;
136 sa.sa_flags = SA_SIGINFO;
137
138 switch (i)
139 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400140 /* these signals take the default action */
141 case SIGABRT:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 case SIGKILL:
143 case SIGSTOP:
Dave Barach9b8ffd92016-07-08 08:13:45 -0400144 case SIGUSR1:
145 case SIGUSR2:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 continue;
147
Dave Barach9b8ffd92016-07-08 08:13:45 -0400148 /* ignore SIGPIPE, SIGCHLD */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 case SIGPIPE:
150 case SIGCHLD:
151 sa.sa_sigaction = (void *) SIG_IGN;
152 break;
153
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 /* catch and handle all other signals */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 default:
156 break;
157 }
158
159 if (sigaction (i, &sa, 0) < 0)
160 return clib_error_return_unix (0, "sigaction %U", format_signal, i);
161 }
162
163 return 0;
164}
165
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166static void
167unix_error_handler (void *arg, u8 * msg, int msg_len)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169 unix_main_t *um = arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 /* Echo to stderr when interactive. */
172 if (um->flags & UNIX_FLAG_INTERACTIVE)
173 {
174 CLIB_UNUSED (int r) = write (2, msg, msg_len);
175 }
176 else
177 {
178 char save = msg[msg_len - 1];
179
180 /* Null Terminate. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400181 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
183 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
184
Dave Barach9b8ffd92016-07-08 08:13:45 -0400185 msg[msg_len - 1] = save;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186 }
187}
188
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189void
190vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
195 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Dave Barach9b8ffd92016-07-08 08:13:45 -0400197 {
198 char save;
199 u8 *msg;
200 u32 msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Dave Barach9b8ffd92016-07-08 08:13:45 -0400202 msg = error->what;
203 msg_len = vec_len (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Dave Barach9b8ffd92016-07-08 08:13:45 -0400205 /* Null Terminate. */
206 save = msg[msg_len - 1];
207 msg[msg_len - 1] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 msg[msg_len - 1] = save;
212 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213}
214
215static uword
216startup_config_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400217 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 unix_main_t *um = &unix_main;
220 u8 *buf = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 uword l, n = 1;
222
223 vlib_process_suspend (vm, 2.0);
224
225 while (um->unix_config_complete == 0)
226 vlib_process_suspend (vm, 0.1);
227
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228 if (um->startup_config_filename)
229 {
230 unformat_input_t sub_input;
231 int fd;
232 struct stat s;
233 char *fn = (char *) um->startup_config_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
Dave Barach9b8ffd92016-07-08 08:13:45 -0400235 fd = open (fn, O_RDONLY);
236 if (fd < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400238 clib_warning ("failed to open `%s'", fn);
239 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
Dave Barach9b8ffd92016-07-08 08:13:45 -0400242 if (fstat (fd, &s) < 0)
243 {
244 clib_warning ("failed to stat `%s'", fn);
245 bail:
246 close (fd);
247 return 0;
248 }
249
250 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
251 {
252 clib_warning ("not a regular file: `%s'", fn);
253 goto bail;
254 }
255
256 while (n > 0)
257 {
258 l = vec_len (buf);
259 vec_resize (buf, 4096);
260 n = read (fd, buf + l, 4096);
261 if (n > 0)
262 {
263 _vec_len (buf) = l + n;
264 if (n < 4096)
265 break;
266 }
267 else
268 break;
269 }
270 if (um->log_fd && vec_len (buf))
271 {
272 u8 *lv = 0;
273 lv = format (lv, "%U: ***** Startup Config *****\n%v",
274 format_timeval, 0 /* current bat-time */ ,
275 0 /* current bat-format */ ,
276 buf);
277 {
278 int rv __attribute__ ((unused)) =
279 write (um->log_fd, lv, vec_len (lv));
280 }
281 vec_reset_length (lv);
282 lv = format (lv, "%U: ***** End Startup Config *****\n",
283 format_timeval, 0 /* current bat-time */ ,
284 0 /* current bat-format */ );
285 {
286 int rv __attribute__ ((unused)) =
287 write (um->log_fd, lv, vec_len (lv));
288 }
289 vec_free (lv);
290 }
291
292 if (vec_len (buf))
293 {
294 unformat_init_vector (&sub_input, buf);
295 vlib_cli_input (vm, &sub_input, 0, 0);
296 /* frees buf for us */
297 unformat_free (&sub_input);
298 }
299 close (fd);
300 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 return 0;
302}
303
Dave Barach9b8ffd92016-07-08 08:13:45 -0400304/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305VLIB_REGISTER_NODE (startup_config_node,static) = {
306 .function = startup_config_process,
307 .type = VLIB_NODE_TYPE_PROCESS,
308 .name = "startup-config-process",
309};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400310/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
312static clib_error_t *
313unix_config (vlib_main_t * vm, unformat_input_t * input)
314{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315 unix_main_t *um = &unix_main;
316 clib_error_t *error = 0;
Damjan Mariona54230d2017-06-21 11:57:07 +0200317 gid_t gid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Chris Luke7afda3a2016-04-25 13:49:22 -0400319 /* Defaults */
320 um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
321 um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
324 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325 char *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 if (unformat (input, "interactive"))
327 um->flags |= UNIX_FLAG_INTERACTIVE;
328 else if (unformat (input, "nodaemon"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329 um->flags |= UNIX_FLAG_NODAEMON;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 else if (unformat (input, "cli-prompt %s", &cli_prompt))
331 vlib_unix_cli_set_prompt (cli_prompt);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 else
333 if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 ;
335 else if (unformat (input, "cli-line-mode"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 um->cli_line_mode = 1;
Chris Luke572d8122016-04-25 13:49:07 -0400337 else if (unformat (input, "cli-no-banner"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 um->cli_no_banner = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400339 else if (unformat (input, "cli-no-pager"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 um->cli_no_pager = 1;
Chris Luke7afda3a2016-04-25 13:49:22 -0400341 else if (unformat (input, "cli-pager-buffer-limit %d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 &um->cli_pager_buffer_limit))
343 ;
344 else
345 if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
346 ;
Klement Sekerac8c44eb2017-03-02 11:13:30 +0100347 else if (unformat (input, "coredump-size"))
348 {
349 uword coredump_size = 0;
350 if (unformat (input, "unlimited"))
351 {
352 coredump_size = RLIM_INFINITY;
353 }
354 else
355 if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
356 {
357 return clib_error_return (0,
358 "invalid coredump-size parameter `%U'",
359 format_unformat_error, input);
360 }
361 const struct rlimit new_limit = { coredump_size, coredump_size };
362 if (0 != setrlimit (RLIMIT_CORE, &new_limit))
363 {
364 clib_unix_warning ("prlimit() failed");
365 }
366 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 else if (unformat (input, "full-coredump"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368 {
369 int fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 fd = open ("/proc/self/coredump_filter", O_WRONLY);
Dave Barachb2a6e252016-07-27 10:00:58 -0400372 if (fd >= 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 {
374 if (write (fd, "0x6f\n", 5) != 5)
375 clib_unix_warning ("coredump filter write failed!");
376 close (fd);
377 }
378 else
379 clib_unix_warning ("couldn't open /proc/self/coredump_filter");
380 }
381 else if (unformat (input, "startup-config %s",
382 &um->startup_config_filename))
383 ;
384 else if (unformat (input, "exec %s", &um->startup_config_filename))
385 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386 else if (unformat (input, "log %s", &um->log_filename))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 {
388 um->log_fd = open ((char *) um->log_filename,
389 O_CREAT | O_WRONLY | O_APPEND, 0644);
390 if (um->log_fd < 0)
391 {
392 clib_warning ("couldn't open log '%s'\n", um->log_filename);
393 um->log_fd = 0;
394 }
395 else
396 {
397 u8 *lv = 0;
398 lv = format (0, "%U: ***** Start: PID %d *****\n",
399 format_timeval, 0 /* current bat-time */ ,
400 0 /* current bat-format */ ,
401 getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 int rv __attribute__ ((unused)) =
404 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400406 vec_free (lv);
407 }
408 }
Damjan Mariona54230d2017-06-21 11:57:07 +0200409 else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
410 {
411 if (setegid (gid) == -1)
412 return clib_error_return_unix (0, "setegid");
413 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414 else
415 return clib_error_return (0, "unknown input `%U'",
416 format_unformat_error, input);
417 }
418
Dave Barach81481312017-05-16 09:08:14 -0400419 error = setup_signal_handlers (um);
420 if (error)
421 return error;
422
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423 if (!(um->flags & UNIX_FLAG_INTERACTIVE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
426 clib_error_register_handler (unix_error_handler, um);
427
Dave Barach9b8ffd92016-07-08 08:13:45 -0400428 if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
429 /* stdin/stdout/stderr -> /dev/null */
430 0) < 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 clib_error_return (0, "daemon () fails");
432 }
433 um->unix_config_complete = 1;
434
435 return 0;
436}
437
438/* unix { ... } configuration. */
Chris Luke90f52bf2016-09-12 08:55:13 -0400439/*?
440 *
441 * @cfgcmd{interactive}
442 * Attach CLI to stdin/out and provide a debugging command line interface.
443 * Implies @c nodaemon.
444 *
445 * @cfgcmd{nodaemon}
446 * Do not fork or background the VPP process. Typically used when invoking
447 * VPP applications from a process monitor.
448 *
449 * @cfgcmd{exec, &lt;filename&gt;}
450 * @par <code>startup-config &lt;filename&gt;</code>
451 * Read startup operational configuration from @c filename.
452 * The contents of the file will be performed as though entered at the CLI.
453 * The two keywords are aliases for the same function; if both are specified,
454 * only the last will have an effect.
455 *
456 * @cfgcmd{log, &lt;filename&gt;}
457 * Logs the startup configuration and all subsequent CLI commands in
458 * @c filename.
459 * Very useful in situations where folks don't remember or can't be bothered
460 * to include CLI commands in bug reports.
461 *
462 * @cfgcmd{full-coredump}
463 * Ask the Linux kernel to dump all memory-mapped address regions, instead
464 * of just text+data+bss.
465 *
466 * @cfgcmd{cli-listen, &lt;address:port&gt;}
467 * Bind the CLI to listen at the address and port given. @clocalhost
468 * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
469 * is typical.
470 *
471 * @cfgcmd{cli-line-mode}
472 * Disable character-by-character I/O on stdin. Useful when combined with,
473 * for example, <tt>emacs M-x gud-gdb</tt>.
474 *
475 * @cfgcmd{cli-prompt, &lt;string&gt;}
476 * Configure the CLI prompt to be @c string.
477 *
478 * @cfgcmd{cli-history-limit, &lt;nn&gt;}
479 * Limit commmand history to @c nn lines. A value of @c 0
480 * disables command history. Default value: @c 50
481 *
482 * @cfgcmd{cli-no-banner}
483 * Disable the login banner on stdin and Telnet connections.
484 *
485 * @cfgcmd{cli-no-pager}
486 * Disable the output pager.
487 *
488 * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
489 * Limit pager buffer to @c nn lines of output.
490 * A value of @c 0 disables the pager. Default value: @c 100000
491?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492VLIB_CONFIG_FUNCTION (unix_config, "unix");
493
494static clib_error_t *
495unix_exit (vlib_main_t * vm)
496{
497 /* Close syslog connection. */
498 closelog ();
499 return 0;
500}
501
502VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
503
504u8 **vlib_thread_stacks;
505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506static uword
507thread0 (uword arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400509 vlib_main_t *vm = (vlib_main_t *) arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 unformat_input_t input;
511 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400512
513 unformat_init_command_line (&input, (char **) vm->argv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 i = vlib_main (vm, &input);
515 unformat_free (&input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 return i;
518}
519
Damjan Marion586afd72017-04-05 19:18:20 +0200520u8 *
521vlib_thread_stack_init (uword thread_index)
522{
523 vec_validate (vlib_thread_stacks, thread_index);
524 vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned
525 (VLIB_THREAD_STACK_SIZE, VLIB_THREAD_STACK_SIZE);
526
527 /*
528 * Disallow writes to the bottom page of the stack, to
529 * catch stack overflows.
530 */
531 if (mprotect (vlib_thread_stacks[thread_index],
532 clib_mem_get_page_size (), PROT_READ) < 0)
533 clib_unix_warning ("thread stack");
534 return vlib_thread_stacks[thread_index];
535}
536
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537int
538vlib_unix_main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400540 vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541 unformat_input_t input;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542 clib_error_t *e;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 int i;
544
Dave Barach9b8ffd92016-07-08 08:13:45 -0400545 vm->argv = (u8 **) argv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 vm->name = argv[0];
547 vm->heap_base = clib_mem_get_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 ASSERT (vm->heap_base);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
Damjan Marion3b46cba2017-01-23 21:13:45 +0100550 unformat_init_command_line (&input, (char **) vm->argv);
551 if ((e = vlib_plugin_config (vm, &input)))
552 {
553 clib_error_report (e);
554 return 1;
555 }
556 unformat_free (&input);
557
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 i = vlib_plugin_early_init (vm);
559 if (i)
560 return i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400561
562 unformat_init_command_line (&input, (char **) vm->argv);
Dave Barach1f49ed62016-02-24 11:29:06 -0500563 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400564 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
565 e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 if (e != 0)
567 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400568 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 return 1;
570 }
571 unformat_free (&input);
572
Damjan Marion586afd72017-04-05 19:18:20 +0200573 vlib_thread_stack_init (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Damjan Marionf55f9b82017-05-10 21:06:28 +0200575 __os_thread_index = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400576
577 i = clib_calljmp (thread0, (uword) vm,
578 (void *) (vlib_thread_stacks[0] +
579 VLIB_THREAD_STACK_SIZE));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 return i;
581}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582
583/*
584 * fd.io coding-style-patch-verification: ON
585 *
586 * Local Variables:
587 * eval: (c-set-style "gnu")
588 * End:
589 */