FD.io VPP  v19.01.1-17-ge106252
Vector Packet Processing
main.c
Go to the documentation of this file.
1 /*
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 #include <sys/time.h>
50 #include <sys/resource.h>
51 #include <unistd.h>
52 
53 /** 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 char *vlib_default_runtime_dir __attribute__ ((weak));
60 char *vlib_default_runtime_dir = "vlib";
61 
64 
65 static clib_error_t *
67 {
68  unix_main_t *um = &unix_main;
69  um->vlib_main = vm;
71 }
72 
74 
75 static int
77 {
78  struct sigaction sa;
79 
80  sa.sa_handler = SIG_DFL;
81  sa.sa_flags = 0;
82  sigemptyset (&sa.sa_mask);
83  return sigaction (sig, &sa, 0);
84 }
85 
86 
87 /* allocate this buffer from mheap when setting up the signal handler.
88  dangerous to vec_resize it when crashing, mheap itself might have been
89  corruptted already */
90 static u8 *syslog_msg = 0;
91 
92 static void
93 unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
94 {
95  uword fatal = 0;
96 
97  syslog_msg = format (syslog_msg, "received signal %U, PC %U",
98  format_signal, signum, format_ucontext_pc, uc);
99 
100  if (signum == SIGSEGV)
101  syslog_msg = format (syslog_msg, ", faulting address %p", si->si_addr);
102 
103  switch (signum)
104  {
105  /* these (caught) signals cause the application to exit */
106  case SIGTERM:
107  /*
108  * Ignore SIGTERM if it's sent before we're ready.
109  */
110  if (unix_main.vlib_main && unix_main.vlib_main->main_loop_exit_set)
111  {
112  syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
113  unix_main.vlib_main->main_loop_exit_now = 1;
114  }
115  else
116  syslog (LOG_ERR | LOG_DAEMON, "IGNORE early SIGTERM...");
117  break;
118  /* fall through */
119  case SIGQUIT:
120  case SIGINT:
121  case SIGILL:
122  case SIGBUS:
123  case SIGSEGV:
124  case SIGHUP:
125  case SIGFPE:
126  case SIGABRT:
127  fatal = 1;
128  break;
129 
130  /* by default, print a message and continue */
131  default:
132  fatal = 0;
133  break;
134  }
135 
136  /* Null terminate. */
137  vec_add1 (syslog_msg, 0);
138 
139  if (fatal)
140  {
141  syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
142 
143  /* Address of callers: outer first, inner last. */
144  uword callers[15];
145  uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0);
146  int i;
147  for (i = 0; i < n_callers; i++)
148  {
149  vec_reset_length (syslog_msg);
150 
151  syslog_msg =
152  format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i],
153  format_clib_elf_symbol_with_address, callers[i], 0);
154 
155  syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
156  }
157 
158  /* have to remove SIGABRT to avoid recusive - os_exit calling abort() */
159  unsetup_signal_handlers (SIGABRT);
160 
161  os_exit (1);
162  }
163  else
164  clib_warning ("%s", syslog_msg);
165 
166 }
167 
168 static clib_error_t *
170 {
171  uword i;
172  struct sigaction sa;
173 
174  /* give a big enough buffer for msg, most likely it can avoid vec_resize */
175  vec_alloc (syslog_msg, 2048);
176 
177  for (i = 1; i < 32; i++)
178  {
179  clib_memset (&sa, 0, sizeof (sa));
180  sa.sa_sigaction = (void *) unix_signal_handler;
181  sa.sa_flags = SA_SIGINFO;
182 
183  switch (i)
184  {
185  /* these signals take the default action */
186  case SIGKILL:
187  case SIGSTOP:
188  case SIGUSR1:
189  case SIGUSR2:
190  continue;
191 
192  /* ignore SIGPIPE, SIGCHLD */
193  case SIGPIPE:
194  case SIGCHLD:
195  sa.sa_sigaction = (void *) SIG_IGN;
196  break;
197 
198  /* catch and handle all other signals */
199  default:
200  break;
201  }
202 
203  if (sigaction (i, &sa, 0) < 0)
204  return clib_error_return_unix (0, "sigaction %U", format_signal, i);
205  }
206 
207  return 0;
208 }
209 
210 static void
211 unix_error_handler (void *arg, u8 * msg, int msg_len)
212 {
213  unix_main_t *um = arg;
214 
215  /* Echo to stderr when interactive. */
216  if (um->flags & UNIX_FLAG_INTERACTIVE)
217  {
218  CLIB_UNUSED (int r) = write (2, msg, msg_len);
219  }
220  else
221  {
222  char save = msg[msg_len - 1];
223 
224  /* Null Terminate. */
225  msg[msg_len - 1] = 0;
226 
227  syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
228 
229  msg[msg_len - 1] = save;
230  }
231 }
232 
233 void
235 {
236  unix_main_t *um = &unix_main;
237 
238  if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
239  return;
240 
241  {
242  char save;
243  u8 *msg;
244  u32 msg_len;
245 
246  msg = error->what;
247  msg_len = vec_len (msg);
248 
249  /* Null Terminate. */
250  save = msg[msg_len - 1];
251  msg[msg_len - 1] = 0;
252 
253  syslog (LOG_ERR | LOG_DAEMON, "%s", msg);
254 
255  msg[msg_len - 1] = save;
256  }
257 }
258 
259 static uword
262 {
263  unix_main_t *um = &unix_main;
264  u8 *buf = 0;
265  uword l, n = 1;
266 
267  vlib_process_suspend (vm, 2.0);
268 
269  while (um->unix_config_complete == 0)
270  vlib_process_suspend (vm, 0.1);
271 
272  if (um->startup_config_filename)
273  {
274  unformat_input_t sub_input;
275  int fd;
276  struct stat s;
277  char *fn = (char *) um->startup_config_filename;
278 
279  fd = open (fn, O_RDONLY);
280  if (fd < 0)
281  {
282  clib_warning ("failed to open `%s'", fn);
283  return 0;
284  }
285 
286  if (fstat (fd, &s) < 0)
287  {
288  clib_warning ("failed to stat `%s'", fn);
289  bail:
290  close (fd);
291  return 0;
292  }
293 
294  if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
295  {
296  clib_warning ("not a regular file: `%s'", fn);
297  goto bail;
298  }
299 
300  while (n > 0)
301  {
302  l = vec_len (buf);
303  vec_resize (buf, 4096);
304  n = read (fd, buf + l, 4096);
305  if (n > 0)
306  {
307  _vec_len (buf) = l + n;
308  if (n < 4096)
309  break;
310  }
311  else
312  break;
313  }
314  if (um->log_fd && vec_len (buf))
315  {
316  u8 *lv = 0;
317  lv = format (lv, "%U: ***** Startup Config *****\n%v",
318  format_timeval, 0 /* current bat-time */ ,
319  0 /* current bat-format */ ,
320  buf);
321  {
322  int rv __attribute__ ((unused)) =
323  write (um->log_fd, lv, vec_len (lv));
324  }
325  vec_reset_length (lv);
326  lv = format (lv, "%U: ***** End Startup Config *****\n",
327  format_timeval, 0 /* current bat-time */ ,
328  0 /* current bat-format */ );
329  {
330  int rv __attribute__ ((unused)) =
331  write (um->log_fd, lv, vec_len (lv));
332  }
333  vec_free (lv);
334  }
335 
336  if (vec_len (buf))
337  {
338  unformat_init_vector (&sub_input, buf);
339  vlib_cli_input (vm, &sub_input, 0, 0);
340  /* frees buf for us */
341  unformat_free (&sub_input);
342  }
343  close (fd);
344  }
345  return 0;
346 }
347 
348 /* *INDENT-OFF* */
349 VLIB_REGISTER_NODE (startup_config_node,static) = {
350  .function = startup_config_process,
351  .type = VLIB_NODE_TYPE_PROCESS,
352  .name = "startup-config-process",
353 };
354 /* *INDENT-ON* */
355 
356 static clib_error_t *
358 {
359  unix_main_t *um = &unix_main;
360  clib_error_t *error = 0;
361  gid_t gid;
362  int pidfd = -1;
363 
364  /* Defaults */
367 
369  {
370  char *cli_prompt;
371  if (unformat (input, "interactive"))
373  else if (unformat (input, "nodaemon"))
374  um->flags |= UNIX_FLAG_NODAEMON;
375  else if (unformat (input, "cli-prompt %s", &cli_prompt))
376  vlib_unix_cli_set_prompt (cli_prompt);
377  else
378  if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
379  ;
380  else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
381  ;
382  else if (unformat (input, "cli-line-mode"))
383  um->cli_line_mode = 1;
384  else if (unformat (input, "cli-no-banner"))
385  um->cli_no_banner = 1;
386  else if (unformat (input, "cli-no-pager"))
387  um->cli_no_pager = 1;
388  else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
389  ;
390  else if (unformat (input, "cli-pager-buffer-limit %d",
392  ;
393  else
394  if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
395  ;
396  else if (unformat (input, "coredump-size"))
397  {
398  uword coredump_size = 0;
399  if (unformat (input, "unlimited"))
400  {
401  coredump_size = RLIM_INFINITY;
402  }
403  else
404  if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
405  {
406  return clib_error_return (0,
407  "invalid coredump-size parameter `%U'",
408  format_unformat_error, input);
409  }
410  const struct rlimit new_limit = { coredump_size, coredump_size };
411  if (0 != setrlimit (RLIMIT_CORE, &new_limit))
412  {
413  clib_unix_warning ("prlimit() failed");
414  }
415  }
416  else if (unformat (input, "full-coredump"))
417  {
418  int fd;
419 
420  fd = open ("/proc/self/coredump_filter", O_WRONLY);
421  if (fd >= 0)
422  {
423  if (write (fd, "0x6f\n", 5) != 5)
424  clib_unix_warning ("coredump filter write failed!");
425  close (fd);
426  }
427  else
428  clib_unix_warning ("couldn't open /proc/self/coredump_filter");
429  }
430  else if (unformat (input, "startup-config %s",
432  ;
433  else if (unformat (input, "exec %s", &um->startup_config_filename))
434  ;
435  else if (unformat (input, "log %s", &um->log_filename))
436  {
437  um->log_fd = open ((char *) um->log_filename,
438  O_CREAT | O_WRONLY | O_APPEND, 0644);
439  if (um->log_fd < 0)
440  {
441  clib_warning ("couldn't open log '%s'\n", um->log_filename);
442  um->log_fd = 0;
443  }
444  else
445  {
446  u8 *lv = 0;
447  lv = format (0, "%U: ***** Start: PID %d *****\n",
448  format_timeval, 0 /* current bat-time */ ,
449  0 /* current bat-format */ ,
450  getpid ());
451  {
452  int rv __attribute__ ((unused)) =
453  write (um->log_fd, lv, vec_len (lv));
454  }
455  vec_free (lv);
456  }
457  }
458  else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
459  {
460  if (setegid (gid) == -1)
461  return clib_error_return_unix (0, "setegid");
462  }
463  else if (unformat (input, "pidfile %s", &um->pidfile))
464  ;
465  else
466  return clib_error_return (0, "unknown input `%U'",
467  format_unformat_error, input);
468  }
469 
470  if (um->runtime_dir == 0)
471  {
472  uid_t uid = geteuid ();
473  if (uid == 00)
474  um->runtime_dir = format (0, "/run/%s%c",
475  vlib_default_runtime_dir, 0);
476  else
477  um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
478  vlib_default_runtime_dir, 0);
479  }
480 
481  error = setup_signal_handlers (um);
482  if (error)
483  return error;
484 
485  if (um->pidfile)
486  {
487  if ((error = vlib_unix_validate_runtime_file (um,
488  (char *) um->pidfile,
489  &um->pidfile)))
490  return error;
491 
492  if (((pidfd = open ((char *) um->pidfile,
493  O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
494  {
495  return clib_error_return_unix (0, "open");
496  }
497  }
498 
499  if (!(um->flags & UNIX_FLAG_INTERACTIVE))
500  {
501  openlog (vm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
503 
504  if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
505  /* stdin/stdout/stderr -> /dev/null */
506  0) < 0)
507  clib_error_return (0, "daemon () fails");
508  }
509 
510  if (pidfd >= 0)
511  {
512  u8 *lv = format (0, "%d", getpid ());
513  if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
514  {
515  vec_free (lv);
516  close (pidfd);
517  return clib_error_return_unix (0, "write");
518  }
519  vec_free (lv);
520  close (pidfd);
521  }
522 
523  um->unix_config_complete = 1;
524 
525  return 0;
526 }
527 
528 /* unix { ... } configuration. */
529 /*?
530  *
531  * @cfgcmd{interactive}
532  * Attach CLI to stdin/out and provide a debugging command line interface.
533  * Implies @c nodaemon.
534  *
535  * @cfgcmd{nodaemon}
536  * Do not fork or background the VPP process. Typically used when invoking
537  * VPP applications from a process monitor.
538  *
539  * @cfgcmd{exec, &lt;filename&gt;}
540  * @par <code>startup-config &lt;filename&gt;</code>
541  * Read startup operational configuration from @c filename.
542  * The contents of the file will be performed as though entered at the CLI.
543  * The two keywords are aliases for the same function; if both are specified,
544  * only the last will have an effect.
545  *
546  * @cfgcmd{log, &lt;filename&gt;}
547  * Logs the startup configuration and all subsequent CLI commands in
548  * @c filename.
549  * Very useful in situations where folks don't remember or can't be bothered
550  * to include CLI commands in bug reports.
551  *
552  * @cfgcmd{pidfile, &lt;filename&gt;}
553  * Writes the pid of the main thread in @c filename.
554  *
555  * @cfgcmd{full-coredump}
556  * Ask the Linux kernel to dump all memory-mapped address regions, instead
557  * of just text+data+bss.
558  *
559  * @cfgcmd{runtime-dir}
560  * Define directory where VPP is going to store all runtime files.
561  * Default is /run/vpp.
562  *
563  * @cfgcmd{cli-listen, &lt;address:port&gt;}
564  * Bind the CLI to listen at the address and port given. @clocalhost
565  * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
566  * is typical.
567  *
568  * @cfgcmd{cli-line-mode}
569  * Disable character-by-character I/O on stdin. Useful when combined with,
570  * for example, <tt>emacs M-x gud-gdb</tt>.
571  *
572  * @cfgcmd{cli-prompt, &lt;string&gt;}
573  * Configure the CLI prompt to be @c string.
574  *
575  * @cfgcmd{cli-history-limit, &lt;nn&gt;}
576  * Limit commmand history to @c nn lines. A value of @c 0
577  * disables command history. Default value: @c 50
578  *
579  * @cfgcmd{cli-no-banner}
580  * Disable the login banner on stdin and Telnet connections.
581  *
582  * @cfgcmd{cli-no-pager}
583  * Disable the output pager.
584  *
585  * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
586  * Limit pager buffer to @c nn lines of output.
587  * A value of @c 0 disables the pager. Default value: @c 100000
588 ?*/
590 
591 static clib_error_t *
593 {
594  /* Close syslog connection. */
595  closelog ();
596  return 0;
597 }
598 
600 
602 
603 static uword
605 {
606  vlib_main_t *vm = (vlib_main_t *) arg;
607  unformat_input_t input;
608  int i;
609 
610  unformat_init_command_line (&input, (char **) vm->argv);
611  i = vlib_main (vm, &input);
612  unformat_free (&input);
613 
614  return i;
615 }
616 
617 u8 *
619 {
620  vec_validate (vlib_thread_stacks, thread_index);
621  vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned
623 
624  /*
625  * Disallow writes to the bottom page of the stack, to
626  * catch stack overflows.
627  */
628  if (mprotect (vlib_thread_stacks[thread_index],
629  clib_mem_get_page_size (), PROT_READ) < 0)
630  clib_unix_warning ("thread stack");
631  return vlib_thread_stacks[thread_index];
632 }
633 
634 int
635 vlib_unix_main (int argc, char *argv[])
636 {
637  vlib_main_t *vm = &vlib_global_main; /* one and only time for this! */
638  unformat_input_t input;
639  clib_error_t *e;
640  int i;
641 
642  vm->argv = (u8 **) argv;
643  vm->name = argv[0];
644  vm->heap_base = clib_mem_get_heap ();
645  vm->heap_aligned_base = (void *)
646  (((uword) vm->heap_base) & ~(VLIB_FRAME_ALIGN - 1));
647  ASSERT (vm->heap_base);
648 
649  unformat_init_command_line (&input, (char **) vm->argv);
650  if ((e = vlib_plugin_config (vm, &input)))
651  {
652  clib_error_report (e);
653  return 1;
654  }
655  unformat_free (&input);
656 
657  i = vlib_plugin_early_init (vm);
658  if (i)
659  return i;
660 
661  unformat_init_command_line (&input, (char **) vm->argv);
662  if (vm->init_functions_called == 0)
663  vm->init_functions_called = hash_create (0, /* value bytes */ 0);
664  e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
665  if (e != 0)
666  {
667  clib_error_report (e);
668  return 1;
669  }
670  unformat_free (&input);
671 
672  /* always load symbols, for signal handler and mheap memory get/put backtrace */
673  clib_elf_main_init (vm->name);
674 
676 
677  __os_thread_index = 0;
678  vm->thread_index = 0;
679 
680  i = clib_calljmp (thread0, (uword) vm,
681  (void *) (vlib_thread_stacks[0] +
683  return i;
684 }
685 
686 /*
687  * fd.io coding-style-patch-verification: ON
688  *
689  * Local Variables:
690  * eval: (c-set-style "gnu")
691  * End:
692  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
int vlib_unix_main(int argc, char *argv[])
Definition: main.c:635
unix_main_t unix_main
Definition: main.c:62
vlib_main_t vlib_global_main
Definition: main.c:1857
#define CLIB_UNUSED(x)
Definition: clib.h:82
static clib_error_t * unix_input_init(vlib_main_t *vm)
Definition: input.c:406
void vlib_cli_input(vlib_main_t *vm, unformat_input_t *input, vlib_cli_output_function_t *function, uword function_arg)
Definition: cli.c:688
u32 flags
Definition: unix.h:58
volatile int unix_config_complete
Definition: unix.h:81
u32 poll_sleep_usec
Definition: unix.h:106
u32 cli_pager_buffer_limit
Definition: unix.h:97
void vlib_unix_cli_set_prompt(char *prompt)
Set the CLI prompt.
Definition: cli.c:3061
uword clib_backtrace(uword *callers, uword max_callers, uword n_frames_to_skip)
Definition: backtrace.c:226
u32 thread_index
Definition: main.h:179
u32 main_loop_exit_set
Definition: main.h:98
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:525
static clib_error_t * unix_main_init(vlib_main_t *vm)
Definition: main.c:66
clib_error_t * vlib_plugin_config(vlib_main_t *vm, unformat_input_t *input)
Definition: plugin.c:481
unformat_function_t unformat_unix_gid
Definition: format.h:316
int i
static clib_error_t * unix_exit(vlib_main_t *vm)
Definition: main.c:592
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
static void unix_signal_handler(int signum, siginfo_t *si, ucontext_t *uc)
Definition: main.c:93
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
void clib_error_register_handler(clib_error_handler_func_t func, void *arg)
Definition: error.c:75
clib_socket_t cli_listen_socket
Definition: unix.h:64
static void unix_error_handler(void *arg, u8 *msg, int msg_len)
Definition: main.c:211
#define vec_alloc(V, N)
Allocate space for N more elements (no header, unspecified alignment)
Definition: vec.h:280
#define UNIX_FLAG_NODAEMON
Definition: unix.h:61
unsigned char u8
Definition: types.h:56
int log_fd
Definition: unix.h:85
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
Definition: node_funcs.h:452
u8 * format_timeval(u8 *s, va_list *args)
Definition: unix-formats.c:771
static int unsetup_signal_handlers(int sig)
Definition: main.c:76
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
u8 * pidfile
Definition: unix.h:78
void * heap_aligned_base
Definition: main.h:117
#define clib_error_return(e, args...)
Definition: error.h:99
#define VLIB_FRAME_ALIGN
Definition: node.h:402
clib_file_main_t file_main
Definition: main.c:63
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:242
unsigned int u32
Definition: types.h:88
void os_exit(int code)
Definition: main.c:343
vlib_main_t * vlib_main
Definition: unix.h:56
#define vlib_call_init_function(vm, x)
Definition: init.h:260
int vlib_plugin_early_init(vlib_main_t *vm)
Definition: plugin.c:354
char * name
Definition: main.h:111
int cli_line_mode
Definition: unix.h:88
struct _unformat_input_t unformat_input_t
uword clib_mem_get_page_size(void)
Definition: mem.c:51
#define clib_error_return_unix(e, args...)
Definition: error.h:102
int cli_no_banner
Definition: unix.h:94
void unformat_init_command_line(unformat_input_t *input, char *argv[])
Definition: unformat.c:1007
u8 * startup_config_filename
Definition: unix.h:72
u8 ** vlib_thread_stacks
Definition: main.c:601
uword * init_functions_called
Definition: main.h:176
u32 cli_history_limit
Definition: unix.h:91
void unformat_init_vector(unformat_input_t *input, u8 *vector_string)
Definition: unformat.c:1031
u8 ** argv
Definition: main.h:193
#define VLIB_EARLY_CONFIG_FUNCTION(x, n,...)
Definition: init.h:216
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
vlib_main_t * vm
Definition: buffer.c:301
void vlib_unix_error_report(vlib_main_t *vm, clib_error_t *error)
Definition: main.c:234
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
void * heap_base
Definition: main.h:114
int cli_no_pager
Definition: unix.h:100
#define VLIB_MAIN_LOOP_EXIT_FUNCTION(x)
Definition: init.h:168
#define clib_warning(format, args...)
Definition: error.h:59
void clib_elf_main_init(char *exec_path)
Definition: elf_clib.c:257
#define ARRAY_LEN(x)
Definition: clib.h:62
#define UNIX_CLI_DEFAULT_PAGER_LIMIT
Default CLI pager limit is not configured in startup.conf.
Definition: main.c:54
static void * clib_mem_get_heap(void)
Definition: mem.h:255
#define hash_create(elts, value_bytes)
Definition: hash.h:696
#define ASSERT(truth)
static uword thread0(uword arg)
Definition: main.c:604
#define UNIX_FLAG_INTERACTIVE
Definition: unix.h:60
#define clib_error_report(e)
Definition: error.h:113
int vlib_main(vlib_main_t *volatile vm, unformat_input_t *input)
Definition: main.c:1908
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define UNIX_CLI_DEFAULT_HISTORY
Default CLI history depth if not configured in startup.conf.
Definition: main.c:57
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
u8 * format_signal(u8 *s, va_list *args)
Definition: unix-formats.c:858
clib_error_t * vlib_call_all_config_functions(vlib_main_t *vm, unformat_input_t *input, int is_early)
Definition: init.c:94
#define clib_unix_warning(format, args...)
Definition: error.h:68
#define VLIB_THREAD_STACK_SIZE
Definition: threads.h:66
format_function_t format_clib_elf_symbol_with_address
Definition: elf_clib.h:134
static clib_error_t * unix_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:357
unformat_function_t unformat_memory_size
Definition: format.h:295
clib_error_t * vlib_unix_validate_runtime_file(unix_main_t *um, const char *path, u8 **full_path)
Definition: util.c:138
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:140
uword clib_calljmp(uword(*func)(uword func_arg), uword func_arg, void *stack)
volatile u32 main_loop_exit_now
Definition: main.h:100
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
u8 * runtime_dir
Definition: unix.h:75
static uword startup_config_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: main.c:260
static clib_error_t * setup_signal_handlers(unix_main_t *um)
Definition: main.c:169
u8 * vlib_thread_stack_init(uword thread_index)
Definition: main.c:618
u8 * log_filename
Definition: unix.h:84
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
u8 * format_ucontext_pc(u8 *s, va_list *args)
Definition: unix-formats.c:909
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170