FD.io VPP  v21.01.1
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 #define _GNU_SOURCE
17 #include <pthread.h>
18 #include <sched.h>
19 
20 #include <vppinfra/cpu.h>
21 #include <vlib/vlib.h>
22 #include <vlib/unix/unix.h>
23 #include <vlib/threads.h>
24 #include <vnet/plugin/plugin.h>
25 #include <vnet/ethernet/ethernet.h>
26 #include <vpp/app/version.h>
27 #include <vpp/vnet/config.h>
28 #include <vpp/api/vpe_msg_enum.h>
29 #include <limits.h>
30 
31 /*
32  * Load plugins from /usr/lib/vpp_plugins by default
33  */
34 char *vlib_plugin_path = NULL;
35 char *vlib_plugin_app_version = VPP_BUILD_VER;
36 char *vat_plugin_path = NULL;
37 
38 static void
40 {
41  extern char *vat_plugin_path;
42  char *p, path[PATH_MAX];
43  int rv;
44  u8 *s;
45 
46  /* find executable path */
47  if ((rv = readlink ("/proc/self/exe", path, PATH_MAX - 1)) == -1)
48  return;
49 
50  /* readlink doesn't provide null termination */
51  path[rv] = 0;
52 
53  /* strip filename */
54  if ((p = strrchr (path, '/')) == 0)
55  return;
56  *p = 0;
57 
58  /* strip bin/ */
59  if ((p = strrchr (path, '/')) == 0)
60  return;
61  *p = 0;
62 
63  s = format (0, "%s/lib/" CLIB_TARGET_TRIPLET "/vpp_plugins:"
64  "%s/lib/vpp_plugins", path, path);
65  vec_add1 (s, 0);
66  vlib_plugin_path = (char *) s;
67 
68  s = format (0, "%s/lib/" CLIB_TARGET_TRIPLET "/vpp_api_test_plugins:"
69  "%s/lib/vpp_api_test_plugins", path, path);
70  vec_add1 (s, 0);
71  vat_plugin_path = (char *) s;
72 }
73 
74 static void
76 {
77 #if VPP_API_TEST_BUILTIN > 0
78  void vat_plugin_hash_create (void);
79 #endif
80 
81  if (CLIB_DEBUG > 0)
82  vlib_unix_cli_set_prompt ("DBGvpp# ");
83  else
84  vlib_unix_cli_set_prompt ("vpp# ");
85 
86  /* Turn off network stack components which we don't want */
88 
89  /*
90  * Create the binary api plugin hashes before loading plugins
91  */
92 #if VPP_API_TEST_BUILTIN > 0
94 #endif
95 
96  if (!vlib_plugin_path)
98 }
99 
100 /*
101  * Default path for runtime data
102  */
104 
105 int
106 main (int argc, char *argv[])
107 {
108  int i;
111  uword main_heap_size = (1ULL << 30);
112  u8 *sizep;
113  u32 size;
114  clib_mem_page_sz_t main_heap_log2_page_sz = CLIB_MEM_PAGE_SZ_DEFAULT;
115  unformat_input_t input, sub_input;
116  u8 *s = 0, *v = 0;
117  int main_core = 1;
118  cpu_set_t cpuset;
119  void *main_heap;
120 
121 #if __x86_64__
122  CLIB_UNUSED (const char *msg)
123  = "ERROR: This binary requires CPU with %s extensions.\n";
124 #define _(a,b) \
125  if (!clib_cpu_supports_ ## a ()) \
126  { \
127  fprintf(stderr, msg, b); \
128  exit(1); \
129  }
130 
131 #if __AVX2__
132  _(avx2, "AVX2")
133 #endif
134 #if __AVX__
135  _(avx, "AVX")
136 #endif
137 #if __SSE4_2__
138  _(sse42, "SSE4.2")
139 #endif
140 #if __SSE4_1__
141  _(sse41, "SSE4.1")
142 #endif
143 #if __SSSE3__
144  _(ssse3, "SSSE3")
145 #endif
146 #if __SSE3__
147  _(sse3, "SSE3")
148 #endif
149 #undef _
150 #endif
151  /*
152  * Load startup config from file.
153  * usage: vpp -c /etc/vpp/startup.conf
154  */
155  if ((argc == 3) && !strncmp (argv[1], "-c", 2))
156  {
157  FILE *fp;
158  char inbuf[4096];
159  int argc_ = 1;
160  char **argv_ = NULL;
161  char *arg = NULL;
162  char *p;
163 
164  fp = fopen (argv[2], "r");
165  if (fp == NULL)
166  {
167  fprintf (stderr, "open configuration file '%s' failed\n", argv[2]);
168  return 1;
169  }
170  argv_ = calloc (1, sizeof (char *));
171  if (argv_ == NULL)
172  {
173  fclose (fp);
174  return 1;
175  }
176  arg = strndup (argv[0], 1024);
177  if (arg == NULL)
178  {
179  fclose (fp);
180  free (argv_);
181  return 1;
182  }
183  argv_[0] = arg;
184 
185  while (1)
186  {
187  if (fgets (inbuf, 4096, fp) == 0)
188  break;
189  p = strtok (inbuf, " \t\n");
190  while (p != NULL)
191  {
192  if (*p == '#')
193  break;
194  argc_++;
195  char **tmp = realloc (argv_, argc_ * sizeof (char *));
196  if (tmp == NULL)
197  return 1;
198  argv_ = tmp;
199  arg = strndup (p, 1024);
200  if (arg == NULL)
201  return 1;
202  argv_[argc_ - 1] = arg;
203  p = strtok (NULL, " \t\n");
204  }
205  }
206 
207  fclose (fp);
208 
209  char **tmp = realloc (argv_, (argc_ + 1) * sizeof (char *));
210  if (tmp == NULL)
211  return 1;
212  argv_ = tmp;
213  argv_[argc_] = NULL;
214 
215  argc = argc_;
216  argv = argv_;
217  }
218 
219  /*
220  * Look for and parse the "heapsize" config parameter.
221  * Manual since none of the clib infra has been bootstrapped yet.
222  *
223  * Format: heapsize <nn>[mM][gG]
224  */
225 
226  for (i = 1; i < (argc - 1); i++)
227  {
228  if (!strncmp (argv[i], "plugin_path", 11))
229  {
230  if (i < (argc - 1))
231  vlib_plugin_path = argv[++i];
232  }
233  if (!strncmp (argv[i], "test_plugin_path", 16))
234  {
235  if (i < (argc - 1))
236  vat_plugin_path = argv[++i];
237  }
238  else if (!strncmp (argv[i], "heapsize", 8))
239  {
240  sizep = (u8 *) argv[i + 1];
241  size = 0;
242  while (*sizep >= '0' && *sizep <= '9')
243  {
244  size *= 10;
245  size += *sizep++ - '0';
246  }
247  if (size == 0)
248  {
249  fprintf
250  (stderr,
251  "warning: heapsize parse error '%s', use default %lld\n",
252  argv[i], (long long int) main_heap_size);
253  goto defaulted;
254  }
255 
256  main_heap_size = size;
257 
258  if (*sizep == 'g' || *sizep == 'G')
259  main_heap_size <<= 30;
260  else if (*sizep == 'm' || *sizep == 'M')
261  main_heap_size <<= 20;
262  }
263  else if (!strncmp (argv[i], "main-core", 9))
264  {
265  if (i < (argc - 1))
266  {
267  errno = 0;
268  unsigned long x = strtol (argv[++i], 0, 0);
269  if (errno == 0)
270  main_core = x;
271  }
272  }
273  }
274 defaulted:
275 
276  /* temporary heap */
277  clib_mem_init (0, 1 << 20);
278  unformat_init_command_line (&input, (char **) argv);
279 
280  while (unformat_check_input (&input) != UNFORMAT_END_OF_INPUT)
281  {
282  if (unformat (&input, "memory %v", &v))
283  {
284  unformat_init_vector (&sub_input, v);
285  v = 0;
286  while (unformat_check_input (&sub_input) != UNFORMAT_END_OF_INPUT)
287  {
288  if (unformat (&sub_input, "main-heap-size %U",
289  unformat_memory_size, &main_heap_size))
290  ;
291  else if (unformat (&sub_input, "main-heap-page-size %U",
293  &main_heap_log2_page_sz))
294  ;
295  else
296  {
297  fformat (stderr, "unknown 'memory' config input '%U'\n",
298  format_unformat_error, &sub_input);
299  exit (1);
300  }
301 
302  }
303  unformat_free (&sub_input);
304  }
305  else if (!unformat (&input, "%s %v", &s, &v))
306  break;
307 
308  vec_reset_length (s);
309  vec_reset_length (v);
310  }
311  vec_free (s);
312  vec_free (v);
313 
314  unformat_free (&input);
315 
316  /* set process affinity for main thread */
317  CPU_ZERO (&cpuset);
318  CPU_SET (main_core, &cpuset);
319  pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
320 
321  /* Set up the plugin message ID allocator right now... */
323 
324  /* destroy temporary heap and create main one */
325  clib_mem_destroy ();
326 
327  if ((main_heap = clib_mem_init_with_page_size (main_heap_size,
328  main_heap_log2_page_sz)))
329  {
330  /* Figure out which numa runs the main thread */
331  __os_numa_index = clib_get_current_numa_node ();
332 
333  /* and use the main heap as that numa's numa heap */
334  clib_mem_set_per_numa_heap (main_heap);
335 
336  vm->init_functions_called = hash_create (0, /* value bytes */ 0);
337  vpe_main_init (vm);
338  return vlib_unix_main (argc, argv);
339  }
340  else
341  {
342  {
343  int rv __attribute__ ((unused)) =
344  write (2, "Main heap allocation failure!\r\n", 31);
345  }
346  return 1;
347  }
348 }
349 
350 static clib_error_t *
352 {
353  return 0;
354 }
355 
357 
358 static clib_error_t *
360 {
361  return 0;
362 }
363 
365 
366 static clib_error_t *
368 {
369  u8 *junk;
370 
372  {
373  if (unformat (input, "%s", &junk))
374  {
375  vec_free (junk);
376  return 0;
377  }
378  else
379  return clib_error_return (0, "unknown input '%U'",
380  format_unformat_error, input);
381  }
382  return 0;
383 }
384 
385 static clib_error_t *
387 {
388  return placeholder_path_config (vm, input);
389 }
390 
392 
393 static clib_error_t *
395 {
396  return placeholder_path_config (vm, input);
397 }
398 
399 VLIB_CONFIG_FUNCTION (test_plugin_path_config, "test_plugin_path");
400 
401 void vl_msg_api_post_mortem_dump (void);
402 void vlib_post_mortem_dump (void);
403 
404 void
405 os_panic (void)
406 {
409  abort ();
410 }
411 
412 void vhost_user_unmap_all (void) __attribute__ ((weak));
413 void
415 {
416 }
417 
418 void
419 os_exit (int code)
420 {
421  static int recursion_block;
422 
423  if (code)
424  {
425  if (recursion_block)
426  abort ();
427 
428  recursion_block = 1;
429 
433  abort ();
434  }
435  exit (code);
436 }
437 
438 #ifdef BARRIER_TRACING
439 void
440 vl_msg_api_barrier_trace_context (const char *context)
441 {
443 }
444 #endif
445 
446 void
448 {
450 }
451 
452 void
454 {
456 }
457 
458 /* This application needs 1 thread stack for the stats pthread */
459 u32
461 {
462  return 1;
463 }
464 
465 /*
466  * Depending on the configuration selected above,
467  * it may be necessary to generate stub graph nodes.
468  * It is never OK to ignore "node 'x' refers to unknown node 'y'
469  * messages!
470  */
471 
472 #include <vppinfra/bihash_8_8.h>
473 
474 static clib_error_t *
476  unformat_input_t * input, vlib_cli_command_t * cmd)
477 {
478  int i;
479  clib_bihash_8_8_t *h;
480  int verbose = 0;
481 
482  if (unformat (input, "verbose"))
483  verbose = 1;
484 
485  for (i = 0; i < vec_len (clib_all_bihashes); i++)
486  {
487  h = (clib_bihash_8_8_t *) clib_all_bihashes[i];
488  vlib_cli_output (vm, "\n%U", h->fmt_fn, h, verbose);
489  }
490 
491  return 0;
492 }
493 
494 /* *INDENT-OFF* */
495 VLIB_CLI_COMMAND (show_bihash_command, static) =
496 {
497  .path = "show bihash",
498  .short_help = "show bihash",
499  .function = show_bihash_command_fn,
500 };
501 /* *INDENT-ON* */
502 
503 #ifdef CLIB_SANITIZE_ADDR
504 /* default options for Address Sanitizer */
505 const char *
506 __asan_default_options (void)
507 {
508  return VPP_SANITIZE_ADDR_OPTIONS;
509 }
510 #endif /* CLIB_SANITIZE_ADDR */
511 
512 /*
513  * fd.io coding-style-patch-verification: ON
514  *
515  * Local Variables:
516  * eval: (c-set-style "gnu")
517  * End:
518  */
int vlib_unix_main(int argc, char *argv[])
Definition: main.c:693
u32 vlib_app_num_thread_stacks_needed(void)
Definition: main.c:460
vlib_main_t vlib_global_main
Definition: main.c:2041
static clib_error_t * srp_init(vlib_main_t *vm)
Definition: node.c:864
#define CLIB_UNUSED(x)
Definition: clib.h:87
void vlib_unix_cli_set_prompt(char *prompt)
Set the CLI prompt.
Definition: cli.c:3281
static u32 clib_get_current_numa_node()
Definition: cpu.h:195
void vl_msg_api_barrier_sync(void)
Definition: main.c:447
static clib_error_t * plugin_path_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:386
void * clib_mem_init(void *base, uword size)
Definition: mem_dlmalloc.c:266
static clib_error_t * heapsize_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:359
#define vlib_mark_init_function_complete(vm, x)
Definition: init.h:284
void vhost_user_unmap_all(void)
Definition: main.c:414
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
void vlib_post_mortem_dump(void)
Definition: main.c:737
vlib_main_t * vm
Definition: in2out_ed.c:1580
static clib_error_t * test_plugin_path_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:394
vl_api_fib_path_t path
Definition: mfib_types.api:44
#define vl_msg_api_barrier_trace_context(X)
Definition: api_common.h:191
char * vat_plugin_path
Definition: main.c:36
unsigned char u8
Definition: types.h:56
static clib_error_t * show_bihash_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: main.c:475
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
__clib_export void ** clib_all_bihashes
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:205
static void * clib_mem_set_per_numa_heap(void *new_heap)
Definition: mem.h:184
__clib_export word fformat(FILE *f, char *fmt,...)
Definition: format.c:462
char * vlib_default_runtime_dir
Definition: main.c:59
description fragment has unexpected format
Definition: map.api:433
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
void os_exit(int code)
Definition: main.c:419
void vl_msg_api_post_mortem_dump(void)
Definition: api_shared.c:955
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:34
static clib_error_t * placeholder_path_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:367
const char * barrier_context
Definition: threads.h:108
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
clib_mem_page_sz_t
Definition: mem.h:57
u32 size
Definition: vhost_user.h:106
vec_header_t h
Definition: buffer.c:322
void unformat_init_command_line(unformat_input_t *input, char *argv[])
Definition: unformat.c:1013
static clib_error_t * memory_config(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:351
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:182
uword * init_functions_called
Definition: main.h:247
void unformat_init_vector(unformat_input_t *input, u8 *vector_string)
Definition: unformat.c:1037
void * clib_mem_init_with_page_size(uword memory_size, clib_mem_page_sz_t log2_page_sz)
Definition: mem_dlmalloc.c:273
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
char * vlib_plugin_path
Definition: main.c:34
unformat_function_t unformat_log2_page_size
Definition: format.h:301
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
void free(void *p)
Definition: mem.c:42
#define hash_create(elts, value_bytes)
Definition: hash.h:696
void clib_mem_destroy(void)
Definition: mem_dlmalloc.c:287
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
void vat_plugin_hash_create(void)
Definition: api_main.c:87
void vl_msg_api_barrier_release(void)
Definition: main.c:453
static void vpe_main_init(vlib_main_t *vm)
Definition: main.c:75
void * realloc(void *p, size_t size)
Definition: mem.c:67
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
void * calloc(size_t nmemb, size_t size)
Definition: mem.c:54
unformat_function_t unformat_memory_size
Definition: format.h:295
static void vpp_find_plugin_path()
Definition: main.c:39
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1561
int main(int argc, char *argv[])
Definition: main.c:106
char * vlib_plugin_app_version
Definition: main.c:35
void os_panic(void)
Definition: main.c:405
void vl_msg_api_set_first_available_msg_id(u16 first_avail)
Definition: api_shared.c:1025
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170