21 #include <vpp/app/version.h> 56 main (
int argc,
char *argv[])
61 uword main_heap_size = (1ULL << 30);
67 =
"ERROR: This binary requires CPU with %s extensions.\n";
69 if (!clib_cpu_supports_ ## a ()) \ 71 fprintf(stderr, msg, b); \ 99 if ((argc == 3) && !strncmp (argv[1],
"-c", 2))
108 fp = fopen (argv[2],
"r");
111 fprintf (stderr,
"open configuration file '%s' failed\n", argv[2]);
114 argv_ = calloc (1,
sizeof (
char *));
117 arg = strndup (argv[0], 1024);
124 if (fgets (inbuf, 4096, fp) == 0)
126 p = strtok (inbuf,
" \t\n");
132 char **tmp = realloc (argv_, argc_ *
sizeof (
char *));
136 arg = strndup (p, 1024);
139 argv_[argc_ - 1] = arg;
140 p = strtok (
NULL,
" \t\n");
146 char **tmp = realloc (argv_, (argc_ + 1) *
sizeof (
char *));
163 for (i = 1; i < (argc - 1); i++)
165 if (!strncmp (argv[i],
"plugin_path", 11))
170 else if (!strncmp (argv[i],
"heapsize", 8))
172 sizep = (
u8 *) argv[i + 1];
174 while (*sizep >=
'0' && *sizep <=
'9')
177 size += *sizep++ -
'0';
183 "warning: heapsize parse error '%s', use default %lld\n",
184 argv[i], (
long long int) main_heap_size);
188 main_heap_size =
size;
190 if (*sizep ==
'g' || *sizep ==
'G')
191 main_heap_size <<= 30;
192 else if (*sizep ==
'm' || *sizep ==
'M')
193 main_heap_size <<= 20;
212 int rv __attribute__ ((unused)) =
213 write (2,
"Main heap allocation failure!\r\n", 31);
280 static int recursion_block;
297 #ifdef BARRIER_TRACING 337 u64 *p = (
u64 *) 0xdefec8ed;
341 .format =
"deliberate crash: touching %x",.format_args =
"i4",};
353 .path =
"test crash",
354 .short_help =
"crash the bus!",
int vlib_unix_main(int argc, char *argv[])
u32 vlib_app_num_thread_stacks_needed(void)
vlib_main_t vlib_global_main
sll srl srl sll sra u16x4 i
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 vlib_worker_thread_barrier_sync(X)
char * vlib_default_runtime_dir
#define vl_msg_api_barrier_trace_context(X)
#define clib_error_return(e, args...)
static clib_error_t * srp_init(vlib_main_t *vm)
void vl_msg_api_post_mortem_dump(void)
void vl_msg_api_set_first_available_msg_id(u16 first_avail)
vlib_worker_thread_t * vlib_worker_threads
#define VLIB_CONFIG_FUNCTION(x, n,...)
void elog_post_mortem_dump(void)
static void elog(elog_main_t *em, elog_event_type_t *type, u32 data)
Log a single-datum event.
uword * init_functions_called
void * clib_mem_init(void *heap, uword size)
#define vec_free(V)
Free vector's memory (no header).
static clib_error_t * test_crash_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define ELOG_TYPE_DECLARE(f)
#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)
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
int main(int argc, char *argv[])
char * vlib_plugin_app_version