blob: 477211d65ce7a955fb05b078d39604957973fed2 [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.h: VLIB main data structure
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
40#ifndef included_vlib_main_h
41#define included_vlib_main_h
42
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000043#include <vppinfra/callback_data.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#include <vppinfra/elog.h>
45#include <vppinfra/format.h>
46#include <vppinfra/longjmp.h>
47#include <vppinfra/pool.h>
48#include <vppinfra/random_buffer.h>
49#include <vppinfra/time.h>
Dave Barach3ae28732018-11-16 17:19:00 -050050#include <vppinfra/pcap.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
52#include <pthread.h>
53
54
55/* By default turn off node/error event logging.
56 Override with -DVLIB_ELOG_MAIN_LOOP */
57#ifndef VLIB_ELOG_MAIN_LOOP
58#define VLIB_ELOG_MAIN_LOOP 0
59#endif
60
Dave Barach5ecd5a52019-02-25 15:27:28 -050061typedef struct
62{
Dave Barach33909772019-09-23 10:27:27 -040063 /* Trace RX pkts */
64 u8 pcap_rx_enable;
65 /* Trace TX pkts */
66 u8 pcap_tx_enable;
67 /* Trace drop pkts */
68 u8 pcap_drop_enable;
69 u8 pad1;
70 u32 max_bytes_per_pkt;
Dave Barach5ecd5a52019-02-25 15:27:28 -050071 u32 pcap_sw_if_index;
72 pcap_main_t pcap_main;
Dave Barach9137e542019-09-13 17:47:50 -040073 u32 filter_classify_table_index;
Dave Barach5ecd5a52019-02-25 15:27:28 -050074} vnet_pcap_t;
75
Dave Barach87d24db2019-12-04 17:19:12 -050076typedef struct
77{
78 u8 trace_filter_enable;
Jon Loeliger5c1e48c2020-10-15 14:41:36 -040079 u32 classify_table_index;
Dave Barach87d24db2019-12-04 17:19:12 -050080} vlib_trace_filter_t;
81
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000082typedef enum
83{
84 VLIB_NODE_RUNTIME_PERF_BEFORE,
85 VLIB_NODE_RUNTIME_PERF_AFTER,
86 VLIB_NODE_RUNTIME_PERF_RESET,
87} vlib_node_runtime_perf_call_type_t;
88
89typedef struct
90{
91 struct vlib_main_t *vm;
92 vlib_node_runtime_t *node;
93 vlib_frame_t *frame;
94 uword packets;
95 u64 cpu_time_now;
96 vlib_node_runtime_perf_call_type_t call_type;
97} vlib_node_runtime_perf_callback_args_t;
98
99struct vlib_node_runtime_perf_callback_data_t;
100
101typedef void (*vlib_node_runtime_perf_callback_fp_t)
102 (struct vlib_node_runtime_perf_callback_data_t * data,
103 vlib_node_runtime_perf_callback_args_t * args);
104
105typedef struct vlib_node_runtime_perf_callback_data_t
106{
107 vlib_node_runtime_perf_callback_fp_t fp;
108 union
109 {
110 void *v;
111 u64 u;
112 } u[3];
113} vlib_node_runtime_perf_callback_data_t;
114
115clib_callback_data_typedef (vlib_node_runtime_perf_callback_set_t,
116 vlib_node_runtime_perf_callback_data_t);
117
Dave Barach9b8ffd92016-07-08 08:13:45 -0400118typedef struct vlib_main_t
119{
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200120 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 /* Instruction level timing state. */
122 clib_time_t clib_time;
Dave Baracha4324a92019-02-19 17:05:30 -0500123 /* Offset from main thread time */
124 f64 time_offset;
125 f64 time_last_barrier_release;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
127 /* Time stamp of last node dispatch. */
128 u64 cpu_time_last_node_dispatch;
129
130 /* Time stamp when main loop was entered (time 0). */
131 u64 cpu_time_main_loop_start;
132
133 /* Incremented once for each main loop. */
Neale Ranns42845dd2020-05-26 13:12:17 +0000134 volatile u32 main_loop_count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
136 /* Count of vectors processed this main loop. */
137 u32 main_loop_vectors_processed;
138 u32 main_loop_nodes_processed;
139
Dave Baracha8df85c2019-10-01 13:34:23 -0400140 /* Internal node vectors, calls */
141 u64 internal_node_vectors;
142 u64 internal_node_calls;
143 u64 internal_node_vectors_last_clear;
144 u64 internal_node_calls_last_clear;
145
146 /* Instantaneous vector rate */
147 u32 internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
Dave Barach4d1a8662018-09-10 12:31:15 -0400149 /* Main loop hw / sw performance counters */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000150 vlib_node_runtime_perf_callback_set_t vlib_node_runtime_perf_callbacks;
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 /* Every so often we switch to the next counter. */
153#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE 7
154
155 /* Jump target to exit main loop with given code. */
156 u32 main_loop_exit_set;
Dave Barach903651c2017-10-13 19:16:56 -0400157 /* Set e.g. in the SIGTERM signal handler, checked in a safe place... */
158 volatile u32 main_loop_exit_now;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 clib_longjmp_t main_loop_exit;
160#define VLIB_MAIN_LOOP_EXIT_NONE 0
161#define VLIB_MAIN_LOOP_EXIT_PANIC 1
162 /* Exit via CLI. */
163#define VLIB_MAIN_LOOP_EXIT_CLI 2
164
165 /* Error marker to use when exiting main loop. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166 clib_error_t *main_loop_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 /* Name for e.g. syslog. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
Dave Barach6a5adc32018-07-04 10:56:23 -0400171 /* Start of the heap. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400172 void *heap_base;
Dave Barach6a5adc32018-07-04 10:56:23 -0400173
174 /* Truncated version, to create frame indices */
175 void *heap_aligned_base;
176
177 /* Size of the heap */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 uword heap_size;
179
Damjan Mariond50e3472019-01-20 00:03:56 +0100180 /* buffer main structure. */
181 vlib_buffer_main_t *buffer_main;
182
Damjan Marion68b4da62018-09-30 18:26:20 +0200183 /* physical memory main structure. */
184 vlib_physmem_main_t physmem_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
186 /* Node graph main structure. */
187 vlib_node_main_t node_main;
188
189 /* Command line interface. */
190 vlib_cli_main_t cli_main;
191
192 /* Packet trace buffer. */
193 vlib_trace_main_t trace_main;
194
Dave Barach3ae28732018-11-16 17:19:00 -0500195 /* Pcap dispatch trace main */
196 pcap_main_t dispatch_pcap_main;
197 uword dispatch_pcap_enable;
Dave Barach27d978c2020-11-03 09:59:06 -0500198 uword dispatch_pcap_postmortem;
Dave Barache5948fb2019-08-29 18:01:30 -0400199 u32 *dispatch_buffer_trace_nodes;
Dave Barach7fff3d22018-11-27 16:52:59 -0500200 u8 *pcap_buffer;
Dave Barach3ae28732018-11-16 17:19:00 -0500201
Dave Barach5ecd5a52019-02-25 15:27:28 -0500202 /* pcap rx / tx tracing */
Dave Barach33909772019-09-23 10:27:27 -0400203 vnet_pcap_t pcap;
Dave Barach5ecd5a52019-02-25 15:27:28 -0500204
Dave Barach87d24db2019-12-04 17:19:12 -0500205 /* Packet trace capture filter */
206 vlib_trace_filter_t trace_filter;
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 /* Error handling. */
209 vlib_error_main_t error_main;
210
211 /* Punt packets to underlying operating system for when fast switching
212 code does not know what to do. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 void (*os_punt_frame) (struct vlib_main_t * vm,
214 struct vlib_node_runtime_t * node,
215 vlib_frame_t * frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 /* Stream index to use for distribution when MC is enabled. */
218 u32 mc_stream_index;
219
Dave Barach9b8ffd92016-07-08 08:13:45 -0400220 vlib_one_time_waiting_process_t *procs_waiting_for_mc_stream_join;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
222 /* Event logger. */
223 elog_main_t elog_main;
Dave Barachbc867c32020-11-25 10:07:09 -0500224 u32 configured_elog_ring_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Dave Barachc3a06552018-10-01 09:25:32 -0400226 /* Event logger trace flags */
227 int elog_trace_api_messages;
228 int elog_trace_cli_commands;
Dave Barach900cbad2019-01-31 19:12:51 -0500229 int elog_trace_graph_dispatch;
230 int elog_trace_graph_circuit;
231 u32 elog_trace_graph_circuit_node_index;
Dave Barachc3a06552018-10-01 09:25:32 -0400232
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 /* Node call and return event types. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400234 elog_event_type_t *node_call_elog_event_types;
235 elog_event_type_t *node_return_elog_event_types;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
Dave Barach9b8ffd92016-07-08 08:13:45 -0400237 elog_event_type_t *error_elog_event_types;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238
239 /* Seed for random number generator. */
240 uword random_seed;
241
242 /* Buffer of random data for various uses. */
243 clib_random_buffer_t random_buffer;
244
245 /* Hash table to record which init functions have been called. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 uword *init_functions_called;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
Damjan Marion0a78fa12019-01-19 23:45:36 +0100248 /* thread, cpu and numa_node indices */
Damjan Marion586afd72017-04-05 19:18:20 +0200249 u32 thread_index;
Damjan Marionee721412019-01-27 17:54:11 +0100250 u32 cpu_id;
Damjan Marion0a78fa12019-01-19 23:45:36 +0100251 u32 numa_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 /* List of init functions to call, setup by constructors */
254 _vlib_init_function_list_elt_t *init_function_registrations;
Damjan Marione9f929b2017-03-16 11:32:09 +0100255 _vlib_init_function_list_elt_t *worker_init_function_registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 _vlib_init_function_list_elt_t *main_loop_enter_function_registrations;
257 _vlib_init_function_list_elt_t *main_loop_exit_function_registrations;
258 _vlib_init_function_list_elt_t *api_init_function_registrations;
259 vlib_config_function_runtime_t *config_function_registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Dave Barachdae88b92016-04-19 09:38:35 -0400261 /* control-plane API queue signal pending, length indication */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 volatile u32 queue_signal_pending;
Dave Barachdae88b92016-04-19 09:38:35 -0400263 volatile u32 api_queue_nonempty;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400264 void (*queue_signal_callback) (struct vlib_main_t *);
Dave Barachbfdedbd2016-01-20 09:11:55 -0500265 u8 **argv;
Damjan Marionce359db2017-03-16 16:15:38 +0100266
Dave Barach4d1a8662018-09-10 12:31:15 -0400267 /* Top of (worker) dispatch loop callback */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000268 void (**volatile worker_thread_main_loop_callbacks)
269 (struct vlib_main_t *, u64 t);
Dave Barach5f2cfb22019-05-20 10:28:57 -0400270 void (**volatile worker_thread_main_loop_callback_tmp)
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000271 (struct vlib_main_t *, u64 t);
Dave Barach5f2cfb22019-05-20 10:28:57 -0400272 clib_spinlock_t worker_thread_main_loop_callback_lock;
Dave Barach4d1a8662018-09-10 12:31:15 -0400273
Damjan Marionce359db2017-03-16 16:15:38 +0100274 /* debugging */
275 volatile int parked_at_barrier;
Dave Barach81481312017-05-16 09:08:14 -0400276
277 /* Attempt to do a post-mortem elog dump */
278 int elog_post_mortem_dump;
279
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100280 /*
281 * Need to call vlib_worker_thread_node_runtime_update before
282 * releasing worker thread barrier. Only valid in vlib_global_main.
283 */
284 int need_vlib_worker_thread_node_runtime_update;
285
Dave Barach000a0292020-02-17 17:07:12 -0500286 /* Dispatch loop time accounting */
287 u64 loops_this_reporting_interval;
288 f64 loop_interval_end;
289 f64 loop_interval_start;
290 f64 loops_per_second;
291 f64 seconds_per_loop;
292 f64 damping_constant;
293
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100294 /*
295 * Barrier epoch - Set to current time, each time barrier_sync or
296 * barrier_release is called with zero recursion.
297 */
298 f64 barrier_epoch;
299
300 /* Earliest barrier can be closed again */
301 f64 barrier_no_close_before;
302
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000303 /* Barrier counter callback */
304 void (**volatile barrier_perf_callbacks)
305 (struct vlib_main_t *, u64 t, int leave);
306 void (**volatile barrier_perf_callbacks_tmp)
307 (struct vlib_main_t *, u64 t, int leave);
308
Dave Barach80965f52019-03-11 09:57:38 -0400309 /* Need to check the frame queues */
310 volatile uword check_frame_queues;
311
Dave Barachf6c68d72018-11-01 08:12:52 -0400312 /* RPC requests, main thread only */
Dave Barach2877eee2017-12-15 12:22:57 -0500313 uword *pending_rpc_requests;
Dave Barachf6c68d72018-11-01 08:12:52 -0400314 uword *processing_rpc_requests;
315 clib_spinlock_t pending_rpc_lock;
Dave Barach2877eee2017-12-15 12:22:57 -0500316
Dave Barachc74b43c2020-04-09 17:24:07 -0400317 /* buffer fault injector */
318 u32 buffer_alloc_success_seed;
319 f64 buffer_alloc_success_rate;
320
Damjan Marioncea46522020-05-21 16:47:05 +0200321#ifdef CLIB_SANITIZE_ADDR
322 /* address sanitizer stack save */
323 void *asan_stack_save;
324#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325} vlib_main_t;
326
327/* Global main structure. */
Damjan Marion6a7acc22016-12-19 16:28:36 +0100328extern vlib_main_t vlib_global_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
Damjan Marione9d52d52017-03-09 15:42:26 +0100330void vlib_worker_loop (vlib_main_t * vm);
331
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332always_inline f64
333vlib_time_now (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334{
Dave Barach77d98382020-04-28 18:00:21 -0400335#if CLIB_DEBUG > 0
336 extern __thread uword __os_thread_index;
337#endif
338 /*
339 * Make sure folks don't pass &vlib_global_main from a worker thread.
340 */
341 ASSERT (vm->thread_index == __os_thread_index);
Dave Baracha4324a92019-02-19 17:05:30 -0500342 return clib_time_now (&vm->clib_time) + vm->time_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
345always_inline f64
346vlib_time_now_ticks (vlib_main_t * vm, u64 n)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347{
348 return clib_time_now_internal (&vm->clib_time, n);
349}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
351/* Busy wait for specified time. */
352always_inline void
353vlib_time_wait (vlib_main_t * vm, f64 wait)
354{
355 f64 t = vlib_time_now (vm);
356 f64 limit = t + wait;
357 while (t < limit)
358 t = vlib_time_now (vm);
359}
360
361/* Time a piece of code. */
362#define vlib_time_code(vm,body) \
363do { \
364 f64 _t[2]; \
365 _t[0] = vlib_time_now (vm); \
366 do { body; } while (0); \
367 _t[1] = vlib_time_now (vm); \
368 clib_warning ("%.7e", _t[1] - _t[0]); \
369} while (0)
370
371#define vlib_wait_with_timeout(vm,suspend_time,timeout_time,test) \
372({ \
373 uword __vlib_wait_with_timeout = 0; \
374 f64 __vlib_wait_time = 0; \
375 while (! (__vlib_wait_with_timeout = (test)) \
376 && __vlib_wait_time < (timeout_time)) \
377 { \
378 vlib_process_suspend (vm, suspend_time); \
379 __vlib_wait_time += suspend_time; \
380 } \
381 __vlib_wait_with_timeout; \
382})
383
384always_inline void
385vlib_panic_with_error (vlib_main_t * vm, clib_error_t * error)
386{
387 vm->main_loop_error = error;
388 clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_PANIC);
389}
390
391#define vlib_panic_with_msg(vm,args...) \
392 vlib_panic_with_error (vm, clib_error_return (0, args))
393
394always_inline void
395vlib_panic (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400396{
397 vlib_panic_with_error (vm, 0);
398}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401always_inline f64
Dave Baracha8df85c2019-10-01 13:34:23 -0400402vlib_internal_node_vector_rate (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403{
Dave Baracha8df85c2019-10-01 13:34:23 -0400404 u64 vectors;
405 u64 calls;
406
407 calls = vm->internal_node_calls - vm->internal_node_calls_last_clear;
408
409 if (PREDICT_FALSE (calls == 0))
410 return 0.0;
411
412 vectors = vm->internal_node_vectors - vm->internal_node_vectors_last_clear;
413
414 return (f64) vectors / (f64) calls;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415}
416
Dave Baracha8df85c2019-10-01 13:34:23 -0400417always_inline void
418vlib_clear_internal_node_vector_rate (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419{
Dave Baracha8df85c2019-10-01 13:34:23 -0400420 vm->internal_node_calls_last_clear = vm->internal_node_calls;
421 vm->internal_node_vectors_last_clear = vm->internal_node_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422}
423
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424always_inline void
425vlib_increment_main_loop_counter (vlib_main_t * vm)
426{
Dave Baracha8df85c2019-10-01 13:34:23 -0400427 vm->main_loop_count++;
428 vm->internal_node_last_vectors_per_main_loop = 0;
Dave Barach903651c2017-10-13 19:16:56 -0400429
430 if (PREDICT_FALSE (vm->main_loop_exit_now))
431 clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432}
433
Dave Baracha8df85c2019-10-01 13:34:23 -0400434always_inline u32
435vlib_last_vectors_per_main_loop (vlib_main_t * vm)
436{
437 return vm->internal_node_last_vectors_per_main_loop;
438}
439
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000440always_inline void
441vlib_node_runtime_perf_counter (vlib_main_t * vm, vlib_node_runtime_t * node,
442 vlib_frame_t * frame, uword n, u64 t,
443 vlib_node_runtime_perf_call_type_t call_type)
444{
445 vlib_node_runtime_perf_callback_data_t *v =
446 clib_callback_data_check_and_get (&vm->vlib_node_runtime_perf_callbacks);
447 if (vec_len (v))
448 {
449 vlib_node_runtime_perf_callback_args_t args = {
450 .vm = vm,
451 .node = node,
452 .frame = frame,
453 .packets = n,
454 .cpu_time_now = t,
455 .call_type = call_type,
456 };
457 clib_callback_data_call_vec (v, &args);
458 }
459}
460
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461always_inline void vlib_set_queue_signal_callback
462 (vlib_main_t * vm, void (*fp) (vlib_main_t *))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463{
464 vm->queue_signal_callback = fp;
465}
466
467/* Main routine. */
468int vlib_main (vlib_main_t * vm, unformat_input_t * input);
469
Damjan Marionf55f9b82017-05-10 21:06:28 +0200470/* Thread stacks, for os_get_thread_index */
Damjan Marion6a7acc22016-12-19 16:28:36 +0100471extern u8 **vlib_thread_stacks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472
473/* Number of thread stacks that the application needs */
474u32 vlib_app_num_thread_stacks_needed (void) __attribute__ ((weak));
475
Dave Barach6931f592016-05-13 12:55:01 -0400476extern void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
477
Dave Barach1201a802018-11-20 12:08:39 -0500478#define VLIB_PCAP_MAJOR_VERSION 1
479#define VLIB_PCAP_MINOR_VERSION 0
480
Dave Barache5948fb2019-08-29 18:01:30 -0400481typedef struct
482{
483 u8 *filename;
484 int enable;
485 int status;
Dave Barach27d978c2020-11-03 09:59:06 -0500486 int post_mortem;
Dave Barache5948fb2019-08-29 18:01:30 -0400487 u32 packets_to_capture;
488 u32 buffer_trace_node_index;
489 u32 buffer_traces_to_capture;
490} vlib_pcap_dispatch_trace_args_t;
491
492int vlib_pcap_dispatch_trace_configure (vlib_pcap_dispatch_trace_args_t *);
Dave Barachab1a50c2020-10-06 14:08:16 -0400493vlib_main_t *vlib_get_main_not_inline (void);
494elog_main_t *vlib_get_elog_main_not_inline ();
Dave Barache5948fb2019-08-29 18:01:30 -0400495
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496#endif /* included_vlib_main_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497
498/*
499 * fd.io coding-style-patch-verification: ON
500 *
501 * Local Variables:
502 * eval: (c-set-style "gnu")
503 * End:
504 */