25 #include <vpp/app/version.h> 40 char *p,
path[PATH_MAX];
45 if ((rv = readlink (
"/proc/self/exe", path, PATH_MAX - 1)) == -1)
52 if ((p = strrchr (path,
'/')) == 0)
57 if ((p = strrchr (path,
'/')) == 0)
61 s =
format (0,
"%s/lib/" CLIB_TARGET_TRIPLET
"/vpp_plugins:" 62 "%s/lib/vpp_plugins", path, path);
66 s =
format (0,
"%s/lib/" CLIB_TARGET_TRIPLET
"/vpp_api_test_plugins:" 67 "%s/lib/vpp_api_test_plugins", path, path);
69 vat_plugin_path = (
char *) s;
105 uword main_heap_size = (1ULL << 30);
113 =
"ERROR: This binary requires CPU with %s extensions.\n";
115 if (!clib_cpu_supports_ ## a ()) \ 117 fprintf(stderr, msg, b); \ 145 if ((argc == 3) && !strncmp (argv[1],
"-c", 2))
154 fp = fopen (argv[2],
"r");
157 fprintf (stderr,
"open configuration file '%s' failed\n", argv[2]);
160 argv_ = calloc (1,
sizeof (
char *));
166 arg = strndup (argv[0], 1024);
177 if (fgets (inbuf, 4096, fp) == 0)
179 p = strtok (inbuf,
" \t\n");
185 char **tmp = realloc (argv_, argc_ *
sizeof (
char *));
189 arg = strndup (p, 1024);
192 argv_[argc_ - 1] = arg;
193 p = strtok (
NULL,
" \t\n");
199 char **tmp = realloc (argv_, (argc_ + 1) *
sizeof (
char *));
216 for (i = 1; i < (argc - 1); i++)
218 if (!strncmp (argv[i],
"plugin_path", 11))
223 if (!strncmp (argv[i],
"test_plugin_path", 16))
228 else if (!strncmp (argv[i],
"heapsize", 8))
230 sizep = (
u8 *) argv[i + 1];
232 while (*sizep >=
'0' && *sizep <=
'9')
235 size += *sizep++ -
'0';
241 "warning: heapsize parse error '%s', use default %lld\n",
242 argv[i], (
long long int) main_heap_size);
246 main_heap_size =
size;
248 if (*sizep ==
'g' || *sizep ==
'G')
249 main_heap_size <<= 30;
250 else if (*sizep ==
'm' || *sizep ==
'M')
251 main_heap_size <<= 20;
253 else if (!strncmp (argv[i],
"main-core", 9))
258 unsigned long x = strtol (argv[++i], 0, 0);
269 CPU_SET (main_core, &cpuset);
270 pthread_setaffinity_np (pthread_self (),
sizeof (cpu_set_t), &cpuset);
285 int rv __attribute__ ((unused)) =
286 write (2,
"Main heap allocation failure!\r\n", 31);
367 static int recursion_block;
384 #ifdef BARRIER_TRACING 433 return strcmp ((
char *) n1->
name, (
char *) n2->
name);
441 clib_bihash_8_8_t *
h;
442 u64 total_actual_virt_size = 0;
443 u64 total_configured_virt_size = 0;
444 u64 actual_virt_size;
445 u64 configured_virt_size;
456 if (alloc_arena (h) || verbose)
460 configured_virt_size = h->memory_size;
461 actual_virt_size = alloc_arena (h) ? h->memory_size : 0ULL;
462 this->actual_virt_size = actual_virt_size;
463 this->configured_virt_size = configured_virt_size;
464 total_actual_virt_size += actual_virt_size;
465 total_configured_virt_size += configured_virt_size;
473 for (i = 0; i <
vec_len (names); i++)
477 names[i].actual_virt_size,
493 .path =
"show bihash",
494 .short_help =
"show bihash",
499 #ifdef CLIB_SANITIZE_ADDR 502 __asan_default_options (
void)
504 return "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1";
int vlib_unix_main(int argc, char *argv[])
u32 vlib_app_num_thread_stacks_needed(void)
vlib_main_t vlib_global_main
void vl_msg_api_barrier_sync(void)
static clib_error_t * plugin_path_config(vlib_main_t *vm, unformat_input_t *input)
void vlib_unix_cli_set_prompt(char *prompt)
Set the CLI prompt.
static clib_error_t * heapsize_config(vlib_main_t *vm, unformat_input_t *input)
#define vlib_mark_init_function_complete(vm, x)
void vhost_user_unmap_all(void)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
static clib_error_t * test_plugin_path_config(vlib_main_t *vm, unformat_input_t *input)
#define vl_msg_api_barrier_trace_context(X)
static clib_error_t * show_bihash_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define vlib_worker_thread_barrier_sync(X)
char * vlib_default_runtime_dir
#define clib_error_return(e, args...)
static clib_error_t * srp_init(vlib_main_t *vm)
void vl_msg_api_post_mortem_dump(void)
vlib_worker_thread_t * vlib_worker_threads
static int name_sort_cmp(void *a1, void *a2)
const char * barrier_context
#define VLIB_CONFIG_FUNCTION(x, n,...)
void elog_post_mortem_dump(void)
uword * init_functions_called
#define vec_free(V)
Free vector's memory (no header).
static clib_error_t * dummy_path_config(vlib_main_t *vm, unformat_input_t *input)
#define VLIB_CLI_COMMAND(x,...)
#define hash_create(elts, value_bytes)
void vat_plugin_hash_create(void)
void vl_msg_api_barrier_release(void)
static void vpe_main_init(vlib_main_t *vm)
static vlib_main_t * vlib_get_main(void)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
static void vpp_find_plugin_path()
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
int main(int argc, char *argv[])
void ** clib_all_bihashes
char * vlib_plugin_app_version
void * clib_mem_init_thread_safe(void *memory, uword memory_size)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
void vl_msg_api_set_first_available_msg_id(u16 first_avail)