blob: 27cbcb0df1890a8ca1b9c8a3c8017b2b17188036 [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.c: main vector processing loop
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#include <math.h>
41#include <vppinfra/format.h>
42#include <vlib/vlib.h>
43#include <vlib/threads.h>
Dave Barach5c20a012017-06-13 08:48:31 -040044#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Damjan Marion04a7f052017-07-10 15:06:17 +020046#include <vlib/unix/unix.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
Ed Warnickecb9cada2015-12-08 15:45:58 -070048/* Actually allocate a few extra slots of vector data to support
49 speculative vector enqueues which overflow vector data in next frame. */
50#define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
51
52always_inline u32
53vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
54{
55 u32 n_bytes;
56
57 /* Make room for vlib_frame_t plus scalar arguments. */
58 n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
59
60 /* Make room for vector arguments.
61 Allocate a few extra slots of vector data to support
62 speculative vector enqueues which overflow vector data in next frame. */
63#define VLIB_FRAME_SIZE_EXTRA 4
64 n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
65
66 /* Magic number is first 32bit number after vector data.
67 Used to make sure that vector data is never overrun. */
68#define VLIB_FRAME_MAGIC (0xabadc0ed)
69 n_bytes += sizeof (u32);
70
71 /* Pad to cache line. */
72 n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
73
74 return n_bytes;
75}
76
77always_inline u32 *
78vlib_frame_find_magic (vlib_frame_t * f, vlib_node_t * node)
79{
Dave Barach9b8ffd92016-07-08 08:13:45 -040080 void *p = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 p += vlib_frame_vector_byte_offset (node->scalar_size);
83
84 p += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * node->vector_size;
85
86 return p;
87}
88
Dave Barach593eedf2019-03-10 09:44:51 -040089static inline vlib_frame_size_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -070090get_frame_size_info (vlib_node_main_t * nm,
91 u32 n_scalar_bytes, u32 n_vector_bytes)
92{
Dave Barach593eedf2019-03-10 09:44:51 -040093#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 uword key = (n_scalar_bytes << 16) | n_vector_bytes;
Dave Barach9b8ffd92016-07-08 08:13:45 -040095 uword *p, i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 p = hash_get (nm->frame_size_hash, key);
98 if (p)
99 i = p[0];
100 else
101 {
102 i = vec_len (nm->frame_sizes);
103 vec_validate (nm->frame_sizes, i);
104 hash_set (nm->frame_size_hash, key, i);
105 }
106
107 return vec_elt_at_index (nm->frame_sizes, i);
Dave Barach593eedf2019-03-10 09:44:51 -0400108#else
109 ASSERT (vlib_frame_bytes (n_scalar_bytes, n_vector_bytes)
110 == (vlib_frame_bytes (0, 4)));
111 return vec_elt_at_index (nm->frame_sizes, 0);
112#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113}
114
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200115static vlib_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400116vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
117 u32 frame_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400119 vlib_node_main_t *nm = &vm->node_main;
120 vlib_frame_size_t *fs;
121 vlib_node_t *to_node;
122 vlib_frame_t *f;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200123 u32 l, n, scalar_size, vector_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
125 to_node = vlib_get_node (vm, to_node_index);
126
127 scalar_size = to_node->scalar_size;
128 vector_size = to_node->vector_size;
129
130 fs = get_frame_size_info (nm, scalar_size, vector_size);
131 n = vlib_frame_bytes (scalar_size, vector_size);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200132 if ((l = vec_len (fs->free_frames)) > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 {
134 /* Allocate from end of free list. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200135 f = fs->free_frames[l - 1];
136 _vec_len (fs->free_frames) = l - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 }
138 else
139 {
Damjan Marion3f46baf2016-02-06 19:16:21 +0100140 f = clib_mem_alloc_aligned_no_fail (n, VLIB_FRAME_ALIGN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 }
142
143 /* Poison frame when debugging. */
144 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400145 clib_memset (f, 0xfe, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147 /* Insert magic number. */
148 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400149 u32 *magic;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 magic = vlib_frame_find_magic (f, to_node);
152 *magic = VLIB_FRAME_MAGIC;
153 }
154
Damjan Marion633b6fd2018-09-14 14:38:53 +0200155 f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 f->n_vectors = 0;
157 f->scalar_size = scalar_size;
158 f->vector_size = vector_size;
Damjan Mariona3d59862018-11-10 10:23:00 +0100159 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
161 fs->n_alloc_frames += 1;
162
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200163 return f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164}
165
166/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
167 Returns frame index. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200168static vlib_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
170 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400172 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174 from_node = vlib_get_node (vm, from_node_runtime->node_index);
175 ASSERT (to_next_index < vec_len (from_node->next_nodes));
176
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 /* frame_flags */ 0);
179}
180
181vlib_frame_t *
182vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
183{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200184 vlib_frame_t *f = vlib_frame_alloc_to_node (vm, to_node_index,
185 /* frame_flags */
186 VLIB_FRAME_FREE_AFTER_DISPATCH);
187 return vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188}
189
Dave Barachc74b43c2020-04-09 17:24:07 -0400190static inline void
191vlib_validate_frame_indices (vlib_frame_t * f)
192{
193 if (CLIB_DEBUG > 0)
194 {
195 int i;
196 u32 *from = vlib_frame_vector_args (f);
197
198 /* Check for bad buffer index values */
199 for (i = 0; i < f->n_vectors; i++)
200 {
201 if (from[i] == 0)
202 {
203 clib_warning ("BUG: buffer index 0 at index %d", i);
204 ASSERT (0);
205 }
206 else if (from[i] == 0xfefefefe)
207 {
208 clib_warning ("BUG: frame poison pattern at index %d", i);
209 ASSERT (0);
210 }
211 }
212 }
213}
214
Dave Barach9b8ffd92016-07-08 08:13:45 -0400215void
216vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 vlib_pending_frame_t *p;
219 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 if (f->n_vectors == 0)
222 return;
223
Dave Barachc74b43c2020-04-09 17:24:07 -0400224 vlib_validate_frame_indices (f);
225
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 to_node = vlib_get_node (vm, to_node_index);
227
228 vec_add2 (vm->node_main.pending_frames, p, 1);
229
Damjan Marion633b6fd2018-09-14 14:38:53 +0200230 f->frame_flags |= VLIB_FRAME_PENDING;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200231 p->frame = vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 p->node_runtime_index = to_node->runtime_index;
233 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
234}
235
236/* Free given frame. */
237void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400238vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400240 vlib_node_main_t *nm = &vm->node_main;
241 vlib_node_t *node;
242 vlib_frame_size_t *fs;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400243
Damjan Marion633b6fd2018-09-14 14:38:53 +0200244 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
246 node = vlib_get_node (vm, r->node_index);
247 fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
248
Damjan Marion633b6fd2018-09-14 14:38:53 +0200249 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 /* No next frames may point to freed frame. */
252 if (CLIB_DEBUG > 0)
253 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400254 vlib_next_frame_t *nf;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200255 vec_foreach (nf, vm->node_main.next_frames) ASSERT (nf->frame != f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 }
257
Damjan Marion296988d2019-02-21 20:24:54 +0100258 f->frame_flags &= ~(VLIB_FRAME_IS_ALLOCATED | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200260 vec_add1 (fs->free_frames, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 ASSERT (fs->n_alloc_frames > 0);
262 fs->n_alloc_frames -= 1;
263}
264
265static clib_error_t *
266show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400269 vlib_node_main_t *nm = &vm->node_main;
270 vlib_frame_size_t *fs;
271
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
273 vec_foreach (fs, nm->frame_sizes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274 {
275 u32 n_alloc = fs->n_alloc_frames;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200276 u32 n_free = vec_len (fs->free_frames);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
Dave Barach9b8ffd92016-07-08 08:13:45 -0400278 if (n_alloc + n_free > 0)
279 vlib_cli_output (vm, "%=6d%=12d%=12d",
280 fs - nm->frame_sizes, n_alloc, n_free);
281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
283 return 0;
284}
285
Dave Barach9b8ffd92016-07-08 08:13:45 -0400286/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
288 .path = "show vlib frame-allocation",
289 .short_help = "Show node dispatch frame statistics",
290 .function = show_frame_stats,
291};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
294/* Change ownership of enqueue rights to given next node. */
295static void
296vlib_next_frame_change_ownership (vlib_main_t * vm,
297 vlib_node_runtime_t * node_runtime,
298 u32 next_index)
299{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400300 vlib_node_main_t *nm = &vm->node_main;
301 vlib_next_frame_t *next_frame;
302 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 node = vec_elt (nm->nodes, node_runtime->node_index);
305
306 /* Only internal & input nodes are allowed to call other nodes. */
307 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
308 || node->type == VLIB_NODE_TYPE_INPUT
309 || node->type == VLIB_NODE_TYPE_PROCESS);
310
311 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
312
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313 next_frame =
314 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
316
317 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
318 {
319 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 vlib_next_frame_t tmp;
322
323 owner_next_frame =
324 vlib_node_get_next_frame (vm,
325 next_node->owner_node_index,
326 next_node->owner_next_index);
327
328 /* Swap target next frame with owner's. */
329 tmp = owner_next_frame[0];
330 owner_next_frame[0] = next_frame[0];
331 next_frame[0] = tmp;
332
333 /*
334 * If next_frame is already pending, we have to track down
335 * all pending frames and fix their next_frame_index fields.
336 */
337 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 {
339 vlib_pending_frame_t *p;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200340 if (next_frame->frame != NULL)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400341 {
342 vec_foreach (p, nm->pending_frames)
343 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200344 if (p->frame == next_frame->frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400345 {
346 p->next_frame_index =
347 next_frame - vm->node_main.next_frames;
348 }
349 }
350 }
351 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 }
353 else
354 {
355 /* No previous owner. Take ownership. */
356 next_frame->flags |= VLIB_FRAME_OWNER;
357 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 /* Record new owner. */
360 next_node->owner_node_index = node->index;
361 next_node->owner_next_index = next_index;
362
363 /* Now we should be owner. */
364 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400365}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
367/* Make sure that magic number is still there.
368 Otherwise, it is likely that caller has overrun frame arguments. */
369always_inline void
370validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
374 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
376}
377
378vlib_frame_t *
379vlib_get_next_frame_internal (vlib_main_t * vm,
380 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400383 vlib_frame_t *f;
384 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 u32 n_used;
386
387 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
388
389 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400390 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 vlib_next_frame_change_ownership (vm, node, next_index);
392
393 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200396 nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
398 }
399
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200400 f = nf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401
402 /* Has frame been removed from pending vector (e.g. finished dispatching)?
403 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200404 if ((nf->flags & VLIB_FRAME_PENDING)
405 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 {
407 nf->flags &= ~VLIB_FRAME_PENDING;
408 f->n_vectors = 0;
Damjan Marion9162c2d2018-11-20 09:55:10 +0100409 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 }
411
Damjan Marion296988d2019-02-21 20:24:54 +0100412 /* Allocate new frame if current one is marked as no-append or
413 it is already full. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414 n_used = f->n_vectors;
Damjan Marion296988d2019-02-21 20:24:54 +0100415 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
416 (f->frame_flags & VLIB_FRAME_NO_APPEND))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 {
418 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400419 two redundant frames from node -> next node. */
420 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200422 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200423 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 }
425
426 /* Allocate new frame to replace full one. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200427 f = nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 n_used = f->n_vectors;
429 }
430
431 /* Should have free vectors in frame now. */
432 ASSERT (n_used < VLIB_FRAME_SIZE);
433
434 if (CLIB_DEBUG > 0)
435 {
436 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 }
439
440 return f;
441}
442
443static void
444vlib_put_next_frame_validate (vlib_main_t * vm,
445 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400448 vlib_node_main_t *nm = &vm->node_main;
449 vlib_next_frame_t *nf;
450 vlib_frame_t *f;
451 vlib_node_runtime_t *next_rt;
452 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 u32 n_before, n_after;
454
455 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200456 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
458 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
Dave Barachc74b43c2020-04-09 17:24:07 -0400459
460 vlib_validate_frame_indices (f);
461
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 n_after = VLIB_FRAME_SIZE - n_vectors_left;
463 n_before = f->n_vectors;
464
465 ASSERT (n_after >= n_before);
466
467 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
468 nf->node_runtime_index);
469 next_node = vlib_get_node (vm, next_rt->node_index);
470 if (n_after > 0 && next_node->validate_frame)
471 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 if (msg)
474 {
475 clib_warning ("%v", msg);
476 ASSERT (0);
477 }
478 vec_free (msg);
479 }
480}
481
482void
483vlib_put_next_frame (vlib_main_t * vm,
484 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400485 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487 vlib_node_main_t *nm = &vm->node_main;
488 vlib_next_frame_t *nf;
489 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 u32 n_vectors_in_frame;
491
Damjan Marion910d3692019-01-21 11:48:34 +0100492 if (CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
494
495 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200496 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
498 /* Make sure that magic number is still there. Otherwise, caller
499 has overrun frame meta data. */
500 if (CLIB_DEBUG > 0)
501 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 validate_frame_magic (vm, f, node, next_index);
504 }
505
506 /* Convert # of vectors left -> number of vectors there. */
507 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
508 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
509
510 f->n_vectors = n_vectors_in_frame;
511
512 /* If vectors were added to frame, add to pending vector. */
513 if (PREDICT_TRUE (n_vectors_in_frame > 0))
514 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400515 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 r->cached_next_index = next_index;
519
Damjan Marion633b6fd2018-09-14 14:38:53 +0200520 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 {
522 __attribute__ ((unused)) vlib_node_t *node;
523 vlib_node_t *next_node;
524 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 node = vlib_get_node (vm, r->node_index);
527 next_node = vlib_get_next_node (vm, r->node_index, next_index);
528 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200532 p->frame = nf->frame;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533 p->node_runtime_index = nf->node_runtime_index;
534 p->next_frame_index = nf - nm->next_frames;
535 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200536 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
Dave Barach9b8ffd92016-07-08 08:13:45 -0400538 /*
539 * If we're going to dispatch this frame on another thread,
540 * force allocation of a new frame. Otherwise, we create
541 * a dangling frame reference. Each thread has its own copy of
542 * the next_frames vector.
543 */
Damjan Marion586afd72017-04-05 19:18:20 +0200544 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400545 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200546 nf->frame = NULL;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400547 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
548 }
549 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
551 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400552 nf->flags |=
553 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
554 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
556 v0 = nf->vectors_since_last_overflow;
557 v1 = v0 + n_vectors_in_frame;
558 nf->vectors_since_last_overflow = v1;
559 if (PREDICT_FALSE (v1 < v0))
560 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400561 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
563 }
564 }
565}
566
567/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
568never_inline void
569vlib_node_runtime_sync_stats (vlib_main_t * vm,
570 vlib_node_runtime_t * r,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000571 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
575 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
576 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
577 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
578 n->stats_total.max_clock = r->max_clock;
579 n->stats_total.max_clock_n = r->max_clock_n;
580
581 r->calls_since_last_overflow = 0;
582 r->vectors_since_last_overflow = 0;
583 r->clocks_since_last_overflow = 0;
584}
585
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587vlib_process_sync_stats (vlib_main_t * vm,
588 vlib_process_t * p,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000589 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591 vlib_node_runtime_t *rt = &p->node_runtime;
592 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000593 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 n->stats_total.suspends += p->n_suspends;
595 p->n_suspends = 0;
596}
597
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598void
599vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400601 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
603 if (n->type == VLIB_NODE_TYPE_PROCESS)
604 {
605 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606 if (vm != &vlib_global_main)
607 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 n->stats_total.suspends += p->n_suspends;
611 p->n_suspends = 0;
612 rt = &p->node_runtime;
613 }
614 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400615 rt =
616 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
617 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000619 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620
621 /* Sync up runtime next frame vector counters with main node structure. */
622 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400623 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 uword i;
625 for (i = 0; i < rt->n_next_nodes; i++)
626 {
627 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628 vec_elt (n->n_vectors_by_next_node, i) +=
629 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 nf->vectors_since_last_overflow = 0;
631 }
632 }
633}
634
635always_inline u32
636vlib_node_runtime_update_stats (vlib_main_t * vm,
637 vlib_node_runtime_t * node,
638 uword n_calls,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000639 uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640{
641 u32 ca0, ca1, v0, v1, cl0, cl1, r;
642
643 cl0 = cl1 = node->clocks_since_last_overflow;
644 ca0 = ca1 = node->calls_since_last_overflow;
645 v0 = v1 = node->vectors_since_last_overflow;
646
647 ca1 = ca0 + n_calls;
648 v1 = v0 + n_vectors;
649 cl1 = cl0 + n_clocks;
650
651 node->calls_since_last_overflow = ca1;
652 node->clocks_since_last_overflow = cl1;
653 node->vectors_since_last_overflow = v1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400654
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656 node->max_clock_n : n_vectors;
657 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658
659 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
660
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000661 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662 {
663 node->calls_since_last_overflow = ca0;
664 node->clocks_since_last_overflow = cl0;
665 node->vectors_since_last_overflow = v0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400666
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000667 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 }
669
670 return r;
671}
672
Dave Barach17e5d802019-05-01 11:30:13 -0400673always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674vlib_process_update_stats (vlib_main_t * vm,
675 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500676 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677{
678 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000679 n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680}
681
682static clib_error_t *
683vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685{
686 elog_reset_buffer (&vm->elog_main);
687 return 0;
688}
689
Dave Barach9b8ffd92016-07-08 08:13:45 -0400690/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400692 .path = "event-logger clear",
693 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 .function = vlib_cli_elog_clear,
695};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400696/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697
698#ifdef CLIB_UNIX
699static clib_error_t *
700elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400701 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703 elog_main_t *em = &vm->elog_main;
704 char *file, *chroot_file;
705 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 {
709 vlib_cli_output (vm, "expected file name, got `%U'",
710 format_unformat_error, input);
711 return 0;
712 }
713
714 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400715 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 {
717 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
718 return 0;
719 }
720
721 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
722
Dave Barach9b8ffd92016-07-08 08:13:45 -0400723 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724
725 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400726 elog_n_events_in_buffer (em),
727 elog_buffer_capacity (em), chroot_file);
728
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400730 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 vec_free (chroot_file);
733 return error;
734}
735
Dave Barach81481312017-05-16 09:08:14 -0400736void
Dave Barach27d978c2020-11-03 09:59:06 -0500737vlib_post_mortem_dump (void)
Dave Barach81481312017-05-16 09:08:14 -0400738{
739 vlib_main_t *vm = &vlib_global_main;
740 elog_main_t *em = &vm->elog_main;
Dave Barach27d978c2020-11-03 09:59:06 -0500741
Dave Barach81481312017-05-16 09:08:14 -0400742 u8 *filename;
743 clib_error_t *error;
744
Dave Barach27d978c2020-11-03 09:59:06 -0500745 if ((vm->elog_post_mortem_dump + vm->dispatch_pcap_postmortem) == 0)
Dave Barach81481312017-05-16 09:08:14 -0400746 return;
747
Dave Barach27d978c2020-11-03 09:59:06 -0500748 if (vm->dispatch_pcap_postmortem)
749 {
750 clib_error_t *error;
751 pcap_main_t *pm = &vm->dispatch_pcap_main;
752
753 pm->n_packets_to_capture = pm->n_packets_captured;
754 pm->file_name = (char *) format (0, "/tmp/dispatch_post_mortem.%d%c",
755 getpid (), 0);
756 error = pcap_write (pm);
757 pcap_close (pm);
758 if (error)
759 clib_error_report (error);
760 /*
761 * We're in the middle of crashing. Don't try to free the filename.
762 */
763 }
764
765 if (vm->elog_post_mortem_dump)
766 {
767 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
768 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
769 if (error)
770 clib_error_report (error);
771 /*
772 * We're in the middle of crashing. Don't try to free the filename.
773 */
774 }
Dave Barach81481312017-05-16 09:08:14 -0400775}
776
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400779 .path = "event-logger save",
780 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781 .function = elog_save_buffer,
782};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400783/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
Dave Barache5389bb2016-03-28 17:12:19 -0400785static clib_error_t *
786elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400787 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400788{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400789 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400790
791 em->n_total_events_disable_limit = em->n_total_events;
792
793 vlib_cli_output (vm, "Stopped the event logger...");
794 return 0;
795}
796
Dave Barach9b8ffd92016-07-08 08:13:45 -0400797/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400798VLIB_CLI_COMMAND (elog_stop_cli, static) = {
799 .path = "event-logger stop",
800 .short_help = "Stop the event-logger",
801 .function = elog_stop,
802};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400803/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400804
805static clib_error_t *
806elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400807 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400808{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400810
811 em->n_total_events_disable_limit = ~0;
812
813 vlib_cli_output (vm, "Restarted the event logger...");
814 return 0;
815}
816
Dave Barach9b8ffd92016-07-08 08:13:45 -0400817/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400818VLIB_CLI_COMMAND (elog_restart_cli, static) = {
819 .path = "event-logger restart",
820 .short_help = "Restart the event-logger",
821 .function = elog_restart,
822};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400823/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400824
825static clib_error_t *
Dave Barachbc867c32020-11-25 10:07:09 -0500826elog_resize_command_fn (vlib_main_t * vm,
827 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400828{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400829 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400830 u32 tmp;
831
832 /* Stop the parade */
833 elog_reset_buffer (&vm->elog_main);
834
835 if (unformat (input, "%d", &tmp))
836 {
837 elog_alloc (em, tmp);
838 em->n_total_events_disable_limit = ~0;
839 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400840 else
Dave Barache5389bb2016-03-28 17:12:19 -0400841 return clib_error_return (0, "Must specify how many events in the ring");
842
843 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
844 return 0;
845}
846
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400848VLIB_CLI_COMMAND (elog_resize_cli, static) = {
849 .path = "event-logger resize",
850 .short_help = "event-logger resize <nnn>",
Dave Barachbc867c32020-11-25 10:07:09 -0500851 .function = elog_resize_command_fn,
Dave Barache5389bb2016-03-28 17:12:19 -0400852};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400853/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400854
Ed Warnickecb9cada2015-12-08 15:45:58 -0700855#endif /* CLIB_UNIX */
856
Dave Barach9b8ffd92016-07-08 08:13:45 -0400857static void
858elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400860 elog_main_t *em = &vm->elog_main;
861 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 f64 dt;
863
864 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400865 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700866 * vm->clib_time.seconds_per_clock;
867
868 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
870 em->event_ring_size,
871 em->n_total_events < em->n_total_events_disable_limit ?
872 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400874 {
875 vlib_cli_output (vm, "%18.9f: %U",
876 e->time + dt, format_elog_event, em, e);
877 n_events_to_show--;
878 if (n_events_to_show == 0)
879 break;
880 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400882
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883}
884
885static clib_error_t *
886elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888{
889 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400890 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891
892 n_events_to_show = 250;
893 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
894 {
895 if (unformat (input, "%d", &n_events_to_show))
896 ;
897 else if (unformat (input, "all"))
898 n_events_to_show = ~0;
899 else
900 return unformat_parse_error (input);
901 }
902 elog_show_buffer_internal (vm, n_events_to_show);
903 return error;
904}
905
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907VLIB_CLI_COMMAND (elog_show_cli, static) = {
908 .path = "show event-logger",
909 .short_help = "Show event logger info",
910 .function = elog_show_buffer,
911};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400912/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914void
915vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400917 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918}
919
Dave Barachfb6e59d2016-03-26 18:45:42 -0400920static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921vlib_elog_main_loop_event (vlib_main_t * vm,
922 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400923 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 vlib_main_t *evm = &vlib_global_main;
926 elog_main_t *em = &evm->elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -0500927 int enabled = evm->elog_trace_graph_dispatch |
928 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929
Dave Barach900cbad2019-01-31 19:12:51 -0500930 if (PREDICT_FALSE (enabled && n_vectors))
931 {
932 if (PREDICT_FALSE (!elog_is_enabled (em)))
933 {
934 evm->elog_trace_graph_dispatch = 0;
935 evm->elog_trace_graph_circuit = 0;
936 return;
937 }
938 if (PREDICT_TRUE
939 (evm->elog_trace_graph_dispatch ||
940 (evm->elog_trace_graph_circuit &&
941 node_index == evm->elog_trace_graph_circuit_node_index)))
942 {
943 elog_track (em,
944 /* event type */
945 vec_elt_at_index (is_return
946 ? evm->node_return_elog_event_types
947 : evm->node_call_elog_event_types,
948 node_index),
949 /* track */
950 (vm->thread_index ?
951 &vlib_worker_threads[vm->thread_index].elog_track
952 : &em->default_track),
953 /* data to log */ n_vectors);
954 }
955 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956}
957
Dave Barach7bee7732017-10-18 18:48:11 -0400958#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
959void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
960void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
961
Dave Barach9b8ffd92016-07-08 08:13:45 -0400962void
Dave Barach7bee7732017-10-18 18:48:11 -0400963vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964{
Dave Barach7bee7732017-10-18 18:48:11 -0400965 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966 {
Dave Barach7bee7732017-10-18 18:48:11 -0400967 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 }
969}
970
Dave Barach7bee7732017-10-18 18:48:11 -0400971#endif
972
973static inline void
974add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
975{
976#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
977 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
978 {
979 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
980 }
981#endif
982}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983
Dave Barach7fff3d22018-11-27 16:52:59 -0500984u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
985u8 *
986format_vnet_buffer_flags (u8 * s, va_list * args)
987{
988 s = format (s, "BUG STUB %s", __FUNCTION__);
989 return s;
990}
991
992u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
993u8 *
994format_vnet_buffer_opaque (u8 * s, va_list * args)
995{
996 s = format (s, "BUG STUB %s", __FUNCTION__);
997 return s;
998}
999
1000u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1001 __attribute__ ((weak));
1002u8 *
1003format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1004{
1005 s = format (s, "BUG STUB %s", __FUNCTION__);
1006 return s;
1007}
1008
1009static u8 *
1010format_buffer_metadata (u8 * s, va_list * args)
1011{
1012 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
1013
1014 s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
1015 s = format (s, "current_data: %d, current_length: %d\n",
1016 (i32) (b->current_data), (i32) (b->current_length));
Dave Barachd7b30662019-10-24 18:10:10 -04001017 s = format
1018 (s,
1019 "current_config_index/punt_reason: %d, flow_id: %x, next_buffer: %x\n",
1020 b->current_config_index, b->flow_id, b->next_buffer);
1021 s =
1022 format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1023 (u32) (b->error), (u32) (b->ref_count),
1024 (u32) (b->buffer_pool_index));
1025 s =
1026 format (s, "trace_handle: 0x%x, len_not_first_buf: %d\n", b->trace_handle,
1027 b->total_length_not_including_first_buffer);
Dave Barach7fff3d22018-11-27 16:52:59 -05001028 return s;
1029}
1030
1031#define A(x) vec_add1(vm->pcap_buffer, (x))
1032
Dave Barach3ae28732018-11-16 17:19:00 -05001033static void
1034dispatch_pcap_trace (vlib_main_t * vm,
1035 vlib_node_runtime_t * node, vlib_frame_t * frame)
1036{
1037 int i;
1038 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
Dave Barach349cd1a2019-10-18 14:44:05 -04001039 pcap_main_t *pm = &vlib_global_main.dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05001040 vlib_trace_main_t *tm = &vm->trace_main;
Dave Barach3ae28732018-11-16 17:19:00 -05001041 u32 capture_size;
1042 vlib_node_t *n;
1043 i32 n_left;
1044 f64 time_now = vlib_time_now (vm);
1045 u32 *from;
Dave Barach3ae28732018-11-16 17:19:00 -05001046 u8 *d;
Dave Barach7fff3d22018-11-27 16:52:59 -05001047 u8 string_count;
Dave Barach3ae28732018-11-16 17:19:00 -05001048
1049 /* Input nodes don't have frames yet */
1050 if (frame == 0 || frame->n_vectors == 0)
1051 return;
1052
1053 from = vlib_frame_vector_args (frame);
1054 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1055 bufp = bufs;
1056
Dave Barach3ae28732018-11-16 17:19:00 -05001057 n = vlib_get_node (vm, node->node_index);
Dave Barach3ae28732018-11-16 17:19:00 -05001058
1059 for (i = 0; i < frame->n_vectors; i++)
1060 {
1061 if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1062 {
1063 b = bufp[i];
1064
Dave Barach7fff3d22018-11-27 16:52:59 -05001065 vec_reset_length (vm->pcap_buffer);
1066 string_count = 0;
Dave Barach1201a802018-11-20 12:08:39 -05001067
Dave Barach7fff3d22018-11-27 16:52:59 -05001068 /* Version, flags */
1069 A ((u8) VLIB_PCAP_MAJOR_VERSION);
1070 A ((u8) VLIB_PCAP_MINOR_VERSION);
1071 A (0 /* string_count */ );
1072 A (n->protocol_hint);
1073
1074 /* Buffer index (big endian) */
1075 A ((from[i] >> 24) & 0xff);
1076 A ((from[i] >> 16) & 0xff);
1077 A ((from[i] >> 8) & 0xff);
1078 A ((from[i] >> 0) & 0xff);
1079
1080 /* Node name, NULL-terminated ASCII */
1081 vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1082 string_count++;
1083
1084 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1085 format_buffer_metadata, b, 0);
1086 string_count++;
1087 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1088 format_vnet_buffer_opaque, b, 0);
1089 string_count++;
1090 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1091 format_vnet_buffer_opaque2, b, 0);
1092 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001093
1094 /* Is this packet traced? */
1095 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1096 {
1097 vlib_trace_header_t **h
Dave Baracha638c182019-06-21 18:24:07 -04001098 = pool_elt_at_index (tm->trace_buffer_pool,
1099 vlib_buffer_get_trace_index (b));
Dave Barach1201a802018-11-20 12:08:39 -05001100
Dave Barach7fff3d22018-11-27 16:52:59 -05001101 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1102 format_vlib_trace, vm, h[0], 0);
1103 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001104 }
1105
Dave Barach7fff3d22018-11-27 16:52:59 -05001106 /* Save the string count */
1107 vm->pcap_buffer[2] = string_count;
1108
1109 /* Figure out how many bytes in the pcap trace */
1110 capture_size = vec_len (vm->pcap_buffer) +
1111 +vlib_buffer_length_in_chain (vm, b);
Dave Barach3ae28732018-11-16 17:19:00 -05001112
1113 clib_spinlock_lock_if_init (&pm->lock);
Dave Barach1201a802018-11-20 12:08:39 -05001114 n_left = clib_min (capture_size, 16384);
Dave Barach3ae28732018-11-16 17:19:00 -05001115 d = pcap_add_packet (pm, time_now, n_left, capture_size);
1116
Dave Barach7fff3d22018-11-27 16:52:59 -05001117 /* Copy the header */
1118 clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1119 d += vec_len (vm->pcap_buffer);
Dave Barach1201a802018-11-20 12:08:39 -05001120
1121 n_left = clib_min
1122 (vlib_buffer_length_in_chain (vm, b),
Dave Barach7fff3d22018-11-27 16:52:59 -05001123 (16384 - vec_len (vm->pcap_buffer)));
Dave Barach3ae28732018-11-16 17:19:00 -05001124 /* Copy the packet data */
1125 while (1)
1126 {
1127 u32 copy_length = clib_min ((u32) n_left, b->current_length);
1128 clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1129 n_left -= b->current_length;
1130 if (n_left <= 0)
1131 break;
1132 d += b->current_length;
1133 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1134 b = vlib_get_buffer (vm, b->next_buffer);
1135 }
1136 clib_spinlock_unlock_if_init (&pm->lock);
1137 }
1138 }
1139}
1140
Damjan Marion9a332e12017-03-28 15:11:20 +02001141static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142dispatch_node (vlib_main_t * vm,
1143 vlib_node_runtime_t * node,
1144 vlib_node_type_t type,
1145 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001146 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147{
1148 uword n, v;
1149 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001150 vlib_node_main_t *nm = &vm->node_main;
1151 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152
1153 if (CLIB_DEBUG > 0)
1154 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001155 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156 ASSERT (n->type == type);
1157 }
1158
1159 /* Only non-internal nodes may be disabled. */
1160 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1161 {
1162 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1163 return last_time_stamp;
1164 }
1165
1166 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1167 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1168 {
1169 u32 c = node->input_main_loops_per_call;
1170 /* Only call node when count reaches zero. */
1171 if (c)
1172 {
1173 node->input_main_loops_per_call = c - 1;
1174 return last_time_stamp;
1175 }
1176 }
1177
1178 /* Speculatively prefetch next frames. */
1179 if (node->n_next_nodes > 0)
1180 {
1181 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1182 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1183 }
1184
1185 vm->cpu_time_last_node_dispatch = last_time_stamp;
1186
Dave Barach900cbad2019-01-31 19:12:51 -05001187 vlib_elog_main_loop_event (vm, node->node_index,
1188 last_time_stamp, frame ? frame->n_vectors : 0,
1189 /* is_after */ 0);
1190
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001191 vlib_node_runtime_perf_counter (vm, node, frame, 0, last_time_stamp,
1192 VLIB_NODE_RUNTIME_PERF_BEFORE);
Dave Barach900cbad2019-01-31 19:12:51 -05001193
1194 /*
1195 * Turn this on if you run into
1196 * "bad monkey" contexts, and you want to know exactly
1197 * which nodes they've visited... See ixge.c...
1198 */
1199 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200 {
Dave Barach900cbad2019-01-31 19:12:51 -05001201 int i;
1202 u32 *from;
1203 from = vlib_frame_vector_args (frame);
1204 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001205 {
Dave Barach900cbad2019-01-31 19:12:51 -05001206 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1207 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001208 }
Dave Barach900cbad2019-01-31 19:12:51 -05001209 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1210 dispatch_pcap_trace (vm, node, frame);
1211 n = node->function (vm, node, frame);
1212 }
1213 else
1214 {
1215 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1216 dispatch_pcap_trace (vm, node, frame);
1217 n = node->function (vm, node, frame);
1218 }
1219
1220 t = clib_cpu_time_now ();
1221
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001222 vlib_node_runtime_perf_counter (vm, node, frame, n, t,
1223 VLIB_NODE_RUNTIME_PERF_AFTER);
Dave Barach900cbad2019-01-31 19:12:51 -05001224
1225 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1226
1227 vm->main_loop_vectors_processed += n;
1228 vm->main_loop_nodes_processed += n > 0;
1229
1230 v = vlib_node_runtime_update_stats (vm, node,
1231 /* n_calls */ 1,
1232 /* n_vectors */ n,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001233 /* n_clocks */ t - last_time_stamp);
Dave Barach900cbad2019-01-31 19:12:51 -05001234
1235 /* When in interrupt mode and vector rate crosses threshold switch to
1236 polling mode. */
1237 if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1238 || (dispatch_state == VLIB_NODE_STATE_POLLING
1239 && (node->flags
1240 &
1241 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))))
1242 {
1243 /* *INDENT-OFF* */
1244 ELOG_TYPE_DECLARE (e) =
1245 {
1246 .function = (char *) __FUNCTION__,
1247 .format = "%s vector length %d, switching to %s",
1248 .format_args = "T4i4t4",
1249 .n_enum_strings = 2,
1250 .enum_strings = {
1251 "interrupt", "polling",
1252 },
1253 };
1254 /* *INDENT-ON* */
1255 struct
1256 {
1257 u32 node_name, vector_length, is_polling;
1258 } *ed;
1259
1260 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1261 && v >= nm->polling_threshold_vector_length) &&
1262 !(node->flags &
1263 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -05001264 {
Dave Barach900cbad2019-01-31 19:12:51 -05001265 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1266 n->state = VLIB_NODE_STATE_POLLING;
1267 node->state = VLIB_NODE_STATE_POLLING;
1268 node->flags &=
1269 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1270 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1271 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1272 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001273
Dave Barach900cbad2019-01-31 19:12:51 -05001274 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001275 {
Dave Barach900cbad2019-01-31 19:12:51 -05001276 vlib_worker_thread_t *w = vlib_worker_threads
1277 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278
Steven6aa75af2017-02-24 10:03:22 -08001279 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1280 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001281 ed->node_name = n->name_elog_string;
1282 ed->vector_length = v;
1283 ed->is_polling = 1;
1284 }
Dave Barach900cbad2019-01-31 19:12:51 -05001285 }
1286 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1287 && v <= nm->interrupt_threshold_vector_length)
1288 {
1289 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1290 if (node->flags &
1291 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001292 {
Dave Barach900cbad2019-01-31 19:12:51 -05001293 /* Switch to interrupt mode after dispatch in polling one more time.
1294 This allows driver to re-enable interrupts. */
1295 n->state = VLIB_NODE_STATE_INTERRUPT;
1296 node->state = VLIB_NODE_STATE_INTERRUPT;
1297 node->flags &=
1298 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1299 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1300 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001301
Dave Barach900cbad2019-01-31 19:12:51 -05001302 }
1303 else
1304 {
1305 vlib_worker_thread_t *w = vlib_worker_threads
1306 + vm->thread_index;
1307 node->flags |=
1308 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1309 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001310 {
Steven6aa75af2017-02-24 10:03:22 -08001311 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1312 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001313 ed->node_name = n->name_elog_string;
1314 ed->vector_length = v;
1315 ed->is_polling = 0;
1316 }
1317 }
1318 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319 }
1320
1321 return t;
1322}
1323
Damjan Marion9a332e12017-03-28 15:11:20 +02001324static u64
Dave Baracha6269992017-06-07 08:18:49 -04001325dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1326 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328 vlib_node_main_t *nm = &vm->node_main;
1329 vlib_frame_t *f;
Dave Barach11fb09e2020-08-06 12:10:09 -04001330 vlib_next_frame_t *nf, nf_placeholder;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001331 vlib_node_runtime_t *n;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001332 vlib_frame_t *restore_frame;
Dave Baracha6269992017-06-07 08:18:49 -04001333 vlib_pending_frame_t *p;
1334
1335 /* See comment below about dangling references to nm->pending_frames */
1336 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337
1338 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1339 p->node_runtime_index);
1340
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001341 f = vlib_get_frame (vm, p->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1343 {
Dave Barach11fb09e2020-08-06 12:10:09 -04001344 /* No next frame: so use placeholder on stack. */
1345 nf = &nf_placeholder;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001346 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001347 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 }
1349 else
1350 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1351
Damjan Marion633b6fd2018-09-14 14:38:53 +02001352 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353
1354 /* Force allocation of new frame while current frame is being
1355 dispatched. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001356 restore_frame = NULL;
1357 if (nf->frame == p->frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001359 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001361 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001362 restore_frame = p->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001363 }
1364
1365 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001366 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 ASSERT (f->n_vectors > 0);
1368
1369 /* Copy trace flag from next frame to node.
1370 Trace flag indicates that at least one vector in the dispatched
1371 frame is traced. */
1372 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1373 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1374 nf->flags &= ~VLIB_FRAME_TRACE;
1375
1376 last_time_stamp = dispatch_node (vm, n,
1377 VLIB_NODE_TYPE_INTERNAL,
1378 VLIB_NODE_STATE_POLLING,
1379 f, last_time_stamp);
Dave Baracha8df85c2019-10-01 13:34:23 -04001380 /* Internal node vector-rate accounting, for summary stats */
1381 vm->internal_node_vectors += f->n_vectors;
1382 vm->internal_node_calls++;
1383 vm->internal_node_last_vectors_per_main_loop =
1384 (f->n_vectors > vm->internal_node_last_vectors_per_main_loop) ?
1385 f->n_vectors : vm->internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386
Damjan Marion296988d2019-02-21 20:24:54 +01001387 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388
1389 /* Frame is ready to be used again, so restore it. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001390 if (restore_frame != NULL)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 {
Dave Baracha6269992017-06-07 08:18:49 -04001392 /*
1393 * We musn't restore a frame that is flagged to be freed. This
1394 * shouldn't happen since frames to be freed post dispatch are
1395 * those used when the to-node frame becomes full i.e. they form a
1396 * sort of queue of frames to a single node. If we get here then
1397 * the to-node frame and the pending frame *were* the same, and so
1398 * we removed the to-node frame. Therefore this frame is no
1399 * longer part of the queue for that node and hence it cannot be
1400 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001401 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001402 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001403
Dave Baracha6269992017-06-07 08:18:49 -04001404 /*
1405 * NB: dispatching node n can result in the creation and scheduling
1406 * of new frames, and hence in the reallocation of nm->pending_frames.
1407 * Recompute p, or no supper. This was broken for more than 10 years.
1408 */
1409 p = nm->pending_frames + pending_frame_index;
1410
1411 /*
1412 * p->next_frame_index can change during node dispatch if node
1413 * function decides to change graph hook up.
1414 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001415 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001417
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001418 if (NULL == nf->frame)
Neale Ranns88170612016-11-22 08:29:51 +00001419 {
1420 /* no new frame has been assigned to this node, use the saved one */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001421 nf->frame = restore_frame;
Neale Ranns88170612016-11-22 08:29:51 +00001422 f->n_vectors = 0;
1423 }
1424 else
1425 {
1426 /* The node has gained a frame, implying packets from the current frame
1427 were re-queued to this same node. we don't need the saved one
1428 anymore */
1429 vlib_frame_free (vm, n, f);
1430 }
1431 }
1432 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001434 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001435 {
1436 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1437 vlib_frame_free (vm, n, f);
1438 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 }
1440
1441 return last_time_stamp;
1442}
1443
1444always_inline uword
1445vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001446{
1447 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1448}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449
Dave Barach9b8ffd92016-07-08 08:13:45 -04001450typedef struct
1451{
1452 vlib_main_t *vm;
1453 vlib_process_t *process;
1454 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001455} vlib_process_bootstrap_args_t;
1456
1457/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001458static uword
1459vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001460{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001461 vlib_process_bootstrap_args_t *a;
1462 vlib_main_t *vm;
1463 vlib_node_runtime_t *node;
1464 vlib_frame_t *f;
1465 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001466 uword n;
1467
1468 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1469
1470 vm = a->vm;
1471 p = a->process;
Damjan Marioncea46522020-05-21 16:47:05 +02001472 vlib_process_finish_switch_stack (vm);
1473
Ed Warnickecb9cada2015-12-08 15:45:58 -07001474 f = a->frame;
1475 node = &p->node_runtime;
1476
1477 n = node->function (vm, node, f);
1478
1479 ASSERT (vlib_process_stack_is_valid (p));
1480
Damjan Marioncea46522020-05-21 16:47:05 +02001481 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482 clib_longjmp (&p->return_longjmp, n);
1483
1484 return n;
1485}
1486
1487/* Called in main stack. */
1488static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001489vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490{
1491 vlib_process_bootstrap_args_t a;
1492 uword r;
1493
1494 a.vm = vm;
1495 a.process = p;
1496 a.frame = f;
1497
1498 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1499 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001500 {
1501 vlib_process_start_switch_stack (vm, p);
1502 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1503 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1504 }
1505 else
1506 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001507
1508 return r;
1509}
1510
1511static_always_inline uword
Damjan Marioncea46522020-05-21 16:47:05 +02001512vlib_process_resume (vlib_main_t * vm, vlib_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001513{
1514 uword r;
1515 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1516 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1517 | VLIB_PROCESS_RESUME_PENDING);
1518 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1519 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001520 {
1521 vlib_process_start_switch_stack (vm, p);
1522 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1523 }
1524 else
1525 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001526 return r;
1527}
1528
1529static u64
1530dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001531 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001532{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001533 vlib_node_main_t *nm = &vm->node_main;
1534 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1535 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001536 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537 u64 t;
1538 uword n_vectors, is_suspend;
1539
1540 if (node->state != VLIB_NODE_STATE_POLLING
1541 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1542 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1543 return last_time_stamp;
1544
1545 p->flags |= VLIB_PROCESS_IS_RUNNING;
1546
1547 t = last_time_stamp;
1548 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1549 f ? f->n_vectors : 0, /* is_after */ 0);
1550
1551 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001552 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001553 nm->current_process_index = node->runtime_index;
1554
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001555 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1556 VLIB_NODE_RUNTIME_PERF_BEFORE);
1557
Ed Warnickecb9cada2015-12-08 15:45:58 -07001558 n_vectors = vlib_process_startup (vm, p, f);
1559
Florin Corasfd542f12018-05-16 19:28:24 -07001560 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001561
1562 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1563 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1564 if (is_suspend)
1565 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001566 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001567
1568 n_vectors = 0;
1569 pool_get (nm->suspended_process_frames, pf);
1570 pf->node_runtime_index = node->runtime_index;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001571 pf->frame = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001572 pf->next_frame_index = ~0;
1573
1574 p->n_suspends += 1;
1575 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1576
1577 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001578 {
1579 TWT (tw_timer_wheel) * tw =
1580 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1581 p->stop_timer_handle =
1582 TW (tw_timer_start) (tw,
1583 vlib_timing_wheel_data_set_suspended_process
1584 (node->runtime_index) /* [sic] pool idex */ ,
1585 0 /* timer_id */ ,
1586 p->resume_clock_interval);
1587 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588 }
1589 else
1590 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1591
1592 t = clib_cpu_time_now ();
1593
Dave Barach9b8ffd92016-07-08 08:13:45 -04001594 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1595 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001596
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001597 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1598 VLIB_NODE_RUNTIME_PERF_AFTER);
1599
Ed Warnickecb9cada2015-12-08 15:45:58 -07001600 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001601 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001602 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001603 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001604
1605 return t;
1606}
1607
Dave Barach9b8ffd92016-07-08 08:13:45 -04001608void
1609vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001611 vlib_node_main_t *nm = &vm->node_main;
1612 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001613 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1614}
1615
1616static u64
1617dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001618 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001620 vlib_node_main_t *nm = &vm->node_main;
1621 vlib_node_runtime_t *node_runtime;
1622 vlib_node_t *node;
1623 vlib_frame_t *f;
1624 vlib_process_t *p;
1625 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001626 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001627
Ed Warnickecb9cada2015-12-08 15:45:58 -07001628 t = last_time_stamp;
1629
1630 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001631 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001632 return last_time_stamp;
1633
1634 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1635 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1636
Florin Coras221d6f12018-11-07 20:46:38 -08001637 pf = pool_elt_at_index (nm->suspended_process_frames,
1638 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639
1640 node_runtime = &p->node_runtime;
1641 node = vlib_get_node (vm, node_runtime->node_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001642 f = pf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001643
Dave Barach9b8ffd92016-07-08 08:13:45 -04001644 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1645 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001646
1647 /* Save away current process for suspend. */
1648 nm->current_process_index = node->runtime_index;
1649
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001650 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1651 VLIB_NODE_RUNTIME_PERF_BEFORE);
1652
Damjan Marioncea46522020-05-21 16:47:05 +02001653 n_vectors = vlib_process_resume (vm, p);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001654 t = clib_cpu_time_now ();
1655
1656 nm->current_process_index = ~0;
1657
1658 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1659 if (is_suspend)
1660 {
1661 /* Suspend it again. */
1662 n_vectors = 0;
1663 p->n_suspends += 1;
1664 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001665 {
1666 p->stop_timer_handle =
1667 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1668 vlib_timing_wheel_data_set_suspended_process
1669 (node->runtime_index) /* [sic] pool idex */ ,
1670 0 /* timer_id */ ,
1671 p->resume_clock_interval);
1672 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001673 }
1674 else
1675 {
1676 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001677 pool_put_index (nm->suspended_process_frames,
1678 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001679 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001680 }
1681
1682 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001683 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1684 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001685
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001686 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1687 VLIB_NODE_RUNTIME_PERF_AFTER);
1688
Ed Warnickecb9cada2015-12-08 15:45:58 -07001689 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001690 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001691 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001692 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693
1694 return t;
1695}
1696
Dave Barach2877eee2017-12-15 12:22:57 -05001697void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1698void
1699vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1700{
1701}
1702
Damjan Marion1033b492020-06-03 12:20:41 +02001703static_always_inline u64
1704dispatch_pending_interrupts (vlib_main_t * vm, vlib_node_main_t * nm,
Damjan Marion0b316302020-09-09 18:55:16 +02001705 u64 cpu_time_now,
1706 vlib_node_interrupt_t * interrupts)
Damjan Marion1033b492020-06-03 12:20:41 +02001707{
1708 vlib_node_runtime_t *n;
1709
Damjan Marion0b316302020-09-09 18:55:16 +02001710 for (int i = 0; i < _vec_len (interrupts); i++)
Damjan Marion1033b492020-06-03 12:20:41 +02001711 {
1712 vlib_node_interrupt_t *in;
Damjan Marion0b316302020-09-09 18:55:16 +02001713 in = vec_elt_at_index (interrupts, i);
Damjan Marion1033b492020-06-03 12:20:41 +02001714 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1715 in->node_runtime_index);
1716 n->interrupt_data = in->data;
1717 cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1718 VLIB_NODE_STATE_INTERRUPT, /* frame */ 0,
1719 cpu_time_now);
1720 }
Damjan Marion1033b492020-06-03 12:20:41 +02001721 return cpu_time_now;
1722}
Dave Barach2877eee2017-12-15 12:22:57 -05001723
Dave Barach27d978c2020-11-03 09:59:06 -05001724static inline void
1725pcap_postmortem_reset (vlib_main_t * vm)
1726{
1727 pcap_main_t *pm = &vm->dispatch_pcap_main;
1728
1729 /* Reset the trace buffer and capture count */
1730 clib_spinlock_lock_if_init (&pm->lock);
1731 vec_reset_length (pm->pcap_data);
1732 pm->n_packets_captured = 0;
1733 clib_spinlock_unlock_if_init (&pm->lock);
1734}
1735
1736
Damjan Marione9d52d52017-03-09 15:42:26 +01001737static_always_inline void
1738vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001739{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001740 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001741 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001742 uword i;
1743 u64 cpu_time_now;
Dave Barach000a0292020-02-17 17:07:12 -05001744 f64 now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001745 vlib_frame_queue_main_t *fqm;
Dave Barach80965f52019-03-11 09:57:38 -04001746 u32 frame_queue_check_counter = 0;
Damjan Marion0b316302020-09-09 18:55:16 +02001747 vlib_node_interrupt_t *empty_int_list = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001748
1749 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001750 if (is_main)
1751 {
1752 vec_resize (nm->pending_frames, 32);
1753 _vec_len (nm->pending_frames) = 0;
1754 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001755
1756 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001757 if (is_main)
1758 {
1759 cpu_time_now = vm->clib_time.last_cpu_time;
1760 vm->cpu_time_main_loop_start = cpu_time_now;
1761 }
1762 else
1763 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001764
Damjan Marion2c2b6402017-03-28 14:16:15 +02001765 /* Pre-allocate interupt runtime indices and lock. */
Damjan Marion1033b492020-06-03 12:20:41 +02001766 vec_alloc (nm->pending_local_interrupts, 32);
1767 vec_alloc (nm->pending_remote_interrupts, 32);
Damjan Marion0b316302020-09-09 18:55:16 +02001768 vec_alloc (empty_int_list, 32);
Benoît Ganned25147d2020-06-30 18:17:06 +02001769 vec_alloc_aligned (nm->pending_remote_interrupts_notify, 1,
1770 CLIB_CACHE_LINE_BYTES);
Damjan Marion1033b492020-06-03 12:20:41 +02001771 clib_spinlock_init (&nm->pending_interrupt_lock);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001772
1773 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001774 if (!nm->polling_threshold_vector_length)
1775 nm->polling_threshold_vector_length = 10;
1776 if (!nm->interrupt_threshold_vector_length)
1777 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001778
Damjan Marion29c0b332019-01-28 13:41:27 +01001779 vm->cpu_id = clib_get_current_cpu_id ();
1780 vm->numa_node = clib_get_current_numa_node ();
Florin Coras4c959952020-02-09 18:09:31 +00001781 os_set_numa_index (vm->numa_node);
Damjan Marion29c0b332019-01-28 13:41:27 +01001782
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001784 if (is_main)
1785 {
1786 uword i;
Dave Barachc602b382019-06-03 19:48:22 -04001787
1788 /*
1789 * Perform an initial barrier sync. Pays no attention to
1790 * the barrier sync hold-down timer scheme, which won't work
1791 * at this point in time.
1792 */
1793 vlib_worker_thread_initial_barrier_sync_and_release (vm);
1794
Stevenf3b53642017-05-01 14:03:02 -07001795 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001796 for (i = 0; i < vec_len (nm->processes); i++)
1797 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1798 cpu_time_now);
1799 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001800
1801 while (1)
1802 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001803 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001804
Dave Barach2877eee2017-12-15 12:22:57 -05001805 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001806 {
1807 if (!is_main)
1808 vl_api_send_pending_rpc_requests (vm);
1809 }
Dave Barach2877eee2017-12-15 12:22:57 -05001810
Damjan Marione9d52d52017-03-09 15:42:26 +01001811 if (!is_main)
Damjan Marionf6e6c782020-09-17 09:54:07 +02001812 vlib_worker_thread_barrier_check ();
1813
1814 if (PREDICT_FALSE (vm->check_frame_queues + frame_queue_check_counter))
Damjan Marione9d52d52017-03-09 15:42:26 +01001815 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001816 u32 processed = 0;
1817
1818 if (vm->check_frame_queues)
Dave Barach80965f52019-03-11 09:57:38 -04001819 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001820 frame_queue_check_counter = 100;
1821 vm->check_frame_queues = 0;
Dave Barach80965f52019-03-11 09:57:38 -04001822 }
Damjan Marionf6e6c782020-09-17 09:54:07 +02001823
1824 vec_foreach (fqm, tm->frame_queue_mains)
1825 processed += vlib_frame_queue_dequeue (vm, fqm);
1826
1827 /* No handoff queue work found? */
1828 if (processed)
1829 frame_queue_check_counter = 100;
1830 else
1831 frame_queue_check_counter--;
Damjan Marione9d52d52017-03-09 15:42:26 +01001832 }
1833
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001834 if (PREDICT_FALSE (vec_len (vm->worker_thread_main_loop_callbacks)))
1835 clib_call_callbacks (vm->worker_thread_main_loop_callbacks, vm,
1836 cpu_time_now);
1837
Dave Barach27d978c2020-11-03 09:59:06 -05001838 /*
1839 * When trying to understand aggravating, hard-to-reproduce
1840 * bugs: reset / restart the pcap dispatch trace once per
1841 * main thread dispatch cycle. All threads share the same
1842 * (spinlock-protected) dispatch trace buffer. It might take
1843 * a few tries to capture a good post-mortem trace of
1844 * a multi-thread issue. Best we can do without a big refactor job.
1845 */
1846 if (is_main && PREDICT_FALSE (vm->dispatch_pcap_postmortem != 0))
1847 pcap_postmortem_reset (vm);
1848
Ed Warnickecb9cada2015-12-08 15:45:58 -07001849 /* Process pre-input nodes. */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001850 cpu_time_now = clib_cpu_time_now ();
Damjan Marionceab7882018-01-19 20:56:12 +01001851 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1852 cpu_time_now = dispatch_node (vm, n,
1853 VLIB_NODE_TYPE_PRE_INPUT,
1854 VLIB_NODE_STATE_POLLING,
1855 /* frame */ 0,
1856 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001857
1858 /* Next process input nodes. */
1859 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1860 cpu_time_now = dispatch_node (vm, n,
1861 VLIB_NODE_TYPE_INPUT,
1862 VLIB_NODE_STATE_POLLING,
1863 /* frame */ 0,
1864 cpu_time_now);
1865
Damjan Marione9d52d52017-03-09 15:42:26 +01001866 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001867 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001868
Damjan Marion1033b492020-06-03 12:20:41 +02001869 /* handle local interruots */
1870 if (_vec_len (nm->pending_local_interrupts))
Damjan Marion0b316302020-09-09 18:55:16 +02001871 {
1872 vlib_node_interrupt_t *interrupts = nm->pending_local_interrupts;
1873 nm->pending_local_interrupts = empty_int_list;
1874 cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now,
1875 interrupts);
1876 empty_int_list = interrupts;
1877 vec_reset_length (empty_int_list);
1878 }
Dave Barachd47c5092018-01-19 13:09:20 -05001879
Damjan Marion1033b492020-06-03 12:20:41 +02001880 /* handle remote interruots */
Benoît Ganned25147d2020-06-30 18:17:06 +02001881 if (PREDICT_FALSE (_vec_len (nm->pending_remote_interrupts)))
Damjan Marion1033b492020-06-03 12:20:41 +02001882 {
Damjan Marion0b316302020-09-09 18:55:16 +02001883 vlib_node_interrupt_t *interrupts;
Damjan Marion1033b492020-06-03 12:20:41 +02001884
1885 /* at this point it is known that
1886 * vec_len (nm->pending_local_interrupts) is zero so we quickly swap
1887 * local and remote vector under the spinlock */
1888 clib_spinlock_lock (&nm->pending_interrupt_lock);
Damjan Marion0b316302020-09-09 18:55:16 +02001889 interrupts = nm->pending_remote_interrupts;
1890 nm->pending_remote_interrupts = empty_int_list;
Benoît Ganned25147d2020-06-30 18:17:06 +02001891 *nm->pending_remote_interrupts_notify = 0;
Damjan Marion1033b492020-06-03 12:20:41 +02001892 clib_spinlock_unlock (&nm->pending_interrupt_lock);
1893
Damjan Marion0b316302020-09-09 18:55:16 +02001894 cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now,
1895 interrupts);
1896 empty_int_list = interrupts;
1897 vec_reset_length (empty_int_list);
Damjan Marion1033b492020-06-03 12:20:41 +02001898 }
1899
Dave Barache3248982018-08-14 13:47:58 -04001900 /* Input nodes may have added work to the pending vector.
1901 Process pending vector until there is nothing left.
1902 All pending vectors will be processed from input -> output. */
1903 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1904 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1905 /* Reset pending vector for next iteration. */
1906 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001907
Damjan Marione9d52d52017-03-09 15:42:26 +01001908 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001909 {
Dave Barach900cbad2019-01-31 19:12:51 -05001910 /* *INDENT-OFF* */
1911 ELOG_TYPE_DECLARE (es) =
1912 {
1913 .format = "process tw start",
1914 .format_args = "",
1915 };
1916 ELOG_TYPE_DECLARE (ee) =
1917 {
1918 .format = "process tw end: %d",
1919 .format_args = "i4",
1920 };
1921 /* *INDENT-ON* */
1922
1923 struct
1924 {
1925 int nready_procs;
1926 } *ed;
1927
Damjan Marione9d52d52017-03-09 15:42:26 +01001928 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001929 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1930
Dave Barach900cbad2019-01-31 19:12:51 -05001931 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1932 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1933
Dave Barach5c20a012017-06-13 08:48:31 -04001934 nm->data_from_advancing_timing_wheel =
1935 TW (tw_timer_expire_timers_vec)
1936 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1937 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001938
Damjan Marione9d52d52017-03-09 15:42:26 +01001939 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001940
Dave Barach900cbad2019-01-31 19:12:51 -05001941 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1942 {
1943 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1944 ed->nready_procs =
1945 _vec_len (nm->data_from_advancing_timing_wheel);
1946 }
1947
Damjan Marione9d52d52017-03-09 15:42:26 +01001948 if (PREDICT_FALSE
1949 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001950 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001951 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952
Damjan Marione9d52d52017-03-09 15:42:26 +01001953 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1954 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001955 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001956 u32 d = nm->data_from_advancing_timing_wheel[i];
1957 u32 di = vlib_timing_wheel_data_get_index (d);
1958
1959 if (vlib_timing_wheel_data_is_timed_event (d))
1960 {
1961 vlib_signal_timed_event_data_t *te =
1962 pool_elt_at_index (nm->signal_timed_event_data_pool,
1963 di);
1964 vlib_node_t *n =
1965 vlib_get_node (vm, te->process_node_index);
1966 vlib_process_t *p =
1967 vec_elt (nm->processes, n->runtime_index);
1968 void *data;
1969 data =
1970 vlib_process_signal_event_helper (nm, n, p,
1971 te->event_type_index,
1972 te->n_data_elts,
1973 te->n_data_elt_bytes);
1974 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001975 clib_memcpy_fast (data, te->inline_event_data,
1976 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001977 else
1978 {
Dave Barach178cf492018-11-13 16:34:13 -05001979 clib_memcpy_fast (data, te->event_data_as_vector,
1980 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001981 vec_free (te->event_data_as_vector);
1982 }
1983 pool_put (nm->signal_timed_event_data_pool, te);
1984 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001985 else
1986 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001987 cpu_time_now = clib_cpu_time_now ();
1988 cpu_time_now =
1989 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001990 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001991 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001992 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1993 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001994 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001995 vlib_increment_main_loop_counter (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001996 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001997 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998 cpu_time_now = clib_cpu_time_now ();
Dave Barach000a0292020-02-17 17:07:12 -05001999 vm->loops_this_reporting_interval++;
2000 now = clib_time_now_internal (&vm->clib_time, cpu_time_now);
2001 /* Time to update loops_per_second? */
2002 if (PREDICT_FALSE (now >= vm->loop_interval_end))
2003 {
2004 /* Next sample ends in 20ms */
2005 if (vm->loop_interval_start)
2006 {
2007 f64 this_loops_per_second;
2008
2009 this_loops_per_second =
2010 ((f64) vm->loops_this_reporting_interval) / (now -
2011 vm->loop_interval_start);
2012
2013 vm->loops_per_second =
2014 vm->loops_per_second * vm->damping_constant +
2015 (1.0 - vm->damping_constant) * this_loops_per_second;
2016 if (vm->loops_per_second != 0.0)
2017 vm->seconds_per_loop = 1.0 / vm->loops_per_second;
2018 else
2019 vm->seconds_per_loop = 0.0;
2020 }
2021 /* New interval starts now, and ends in 20ms */
2022 vm->loop_interval_start = now;
2023 vm->loop_interval_end = now + 2e-4;
2024 vm->loops_this_reporting_interval = 0;
2025 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002026 }
2027}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002028
Damjan Marione9d52d52017-03-09 15:42:26 +01002029static void
2030vlib_main_loop (vlib_main_t * vm)
2031{
2032 vlib_main_or_worker_loop (vm, /* is_main */ 1);
2033}
2034
2035void
2036vlib_worker_loop (vlib_main_t * vm)
2037{
2038 vlib_main_or_worker_loop (vm, /* is_main */ 0);
2039}
2040
Ed Warnickecb9cada2015-12-08 15:45:58 -07002041vlib_main_t vlib_global_main;
2042
2043static clib_error_t *
2044vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
2045{
2046 int turn_on_mem_trace = 0;
2047
2048 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2049 {
2050 if (unformat (input, "memory-trace"))
2051 turn_on_mem_trace = 1;
2052
2053 else if (unformat (input, "elog-events %d",
Dave Barachbc867c32020-11-25 10:07:09 -05002054 &vm->configured_elog_ring_size))
2055 vm->configured_elog_ring_size =
2056 1 << max_log2 (vm->configured_elog_ring_size);
Dave Barach81481312017-05-16 09:08:14 -04002057 else if (unformat (input, "elog-post-mortem-dump"))
2058 vm->elog_post_mortem_dump = 1;
Dave Barachc74b43c2020-04-09 17:24:07 -04002059 else if (unformat (input, "buffer-alloc-success-rate %f",
2060 &vm->buffer_alloc_success_rate))
2061 {
2062 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2063 return clib_error_return
2064 (0, "Buffer fault injection not configured");
2065 }
2066 else if (unformat (input, "buffer-alloc-success-seed %u",
2067 &vm->buffer_alloc_success_seed))
2068 {
2069 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2070 return clib_error_return
2071 (0, "Buffer fault injection not configured");
2072 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002073 else
2074 return unformat_parse_error (input);
2075 }
2076
2077 unformat_free (input);
2078
2079 /* Enable memory trace as early as possible. */
2080 if (turn_on_mem_trace)
2081 clib_mem_trace (1);
2082
2083 return 0;
2084}
2085
2086VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
2087
Dave Barach9b8ffd92016-07-08 08:13:45 -04002088static void
Dave Barach11fb09e2020-08-06 12:10:09 -04002089placeholder_queue_signal_callback (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002090{
2091}
Dave Barach16c75df2016-05-31 14:05:46 -04002092
Dave Barach1f806582018-06-14 09:18:21 -04002093#define foreach_weak_reference_stub \
2094_(vlib_map_stat_segment_init) \
2095_(vpe_api_init) \
2096_(vlibmemory_init) \
2097_(map_api_segment_init)
2098
2099#define _(name) \
2100clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
2101clib_error_t *name (vlib_main_t *vm) { return 0; }
2102foreach_weak_reference_stub;
2103#undef _
2104
Dave Barachb09f4d02019-07-15 16:00:03 -04002105void vl_api_set_elog_main (elog_main_t * m) __attribute__ ((weak));
2106void
2107vl_api_set_elog_main (elog_main_t * m)
2108{
2109 clib_warning ("STUB");
2110}
2111
2112int vl_api_set_elog_trace_api_messages (int enable) __attribute__ ((weak));
2113int
2114vl_api_set_elog_trace_api_messages (int enable)
2115{
2116 clib_warning ("STUB");
2117 return 0;
2118}
2119
2120int vl_api_get_elog_trace_api_messages (void) __attribute__ ((weak));
2121int
2122vl_api_get_elog_trace_api_messages (void)
2123{
2124 clib_warning ("STUB");
2125 return 0;
2126}
2127
Ed Warnickecb9cada2015-12-08 15:45:58 -07002128/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002129int
Eyal Barid334a6b2016-09-19 10:23:39 +03002130vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002131{
Eyal Barid334a6b2016-09-19 10:23:39 +03002132 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04002133 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002134
Dave Barach11fb09e2020-08-06 12:10:09 -04002135 vm->queue_signal_callback = placeholder_queue_signal_callback;
Dave Barach16c75df2016-05-31 14:05:46 -04002136
Dave Barachbc867c32020-11-25 10:07:09 -05002137 /* Reconfigure event log which is enabled very early */
2138 if (vm->configured_elog_ring_size &&
2139 vm->configured_elog_ring_size != vm->elog_main.event_ring_size)
2140 elog_resize (&vm->elog_main, vm->configured_elog_ring_size);
Dave Barachb09f4d02019-07-15 16:00:03 -04002141 vl_api_set_elog_main (&vm->elog_main);
2142 (void) vl_api_set_elog_trace_api_messages (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002143
2144 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002145 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002146 vm->name = "VLIB";
2147
Damjan Marion68b4da62018-09-30 18:26:20 +02002148 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002149 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002150 clib_error_report (error);
2151 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002152 }
Damjan Marion49d66f12017-07-20 18:10:35 +02002153
Filip Tehlard2bbdef2019-02-22 05:05:53 -08002154 if ((error = vlib_map_stat_segment_init (vm)))
2155 {
2156 clib_error_report (error);
2157 goto done;
2158 }
2159
Damjan Marion49d66f12017-07-20 18:10:35 +02002160 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002161 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002162 clib_error_report (error);
2163 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002164 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002165
2166 if ((error = vlib_thread_init (vm)))
2167 {
2168 clib_error_report (error);
2169 goto done;
2170 }
2171
2172 /* Register static nodes so that init functions may use them. */
2173 vlib_register_all_static_nodes (vm);
2174
2175 /* Set seed for random number generator.
2176 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002177 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002178 vm->random_seed = clib_cpu_time_now ();
2179 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
2180
Ed Warnickecb9cada2015-12-08 15:45:58 -07002181 /* Initialize node graph. */
2182 if ((error = vlib_node_main_init (vm)))
2183 {
2184 /* Arrange for graph hook up error to not be fatal when debugging. */
2185 if (CLIB_DEBUG > 0)
2186 clib_error_report (error);
2187 else
2188 goto done;
2189 }
2190
Dave Barach1f806582018-06-14 09:18:21 -04002191 /* Direct call / weak reference, for vlib standalone use-cases */
2192 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002193 {
2194 clib_error_report (error);
2195 goto done;
2196 }
2197
Dave Barach1f806582018-06-14 09:18:21 -04002198 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002199 {
2200 clib_error_report (error);
2201 goto done;
2202 }
2203
Dave Barach1f806582018-06-14 09:18:21 -04002204 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002205 {
2206 clib_error_report (error);
2207 goto done;
2208 }
2209
Ole Troan964f93e2016-06-10 13:22:36 +02002210 /* See unix/main.c; most likely already set up */
2211 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002212 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02002213 if ((error = vlib_call_all_init_functions (vm)))
2214 goto done;
2215
Dave Barach5c20a012017-06-13 08:48:31 -04002216 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2217 CLIB_CACHE_LINE_BYTES);
2218
2219 vec_validate (nm->data_from_advancing_timing_wheel, 10);
2220 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2221
2222 /* Create the process timing wheel */
2223 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2224 0 /* no callback */ ,
2225 10e-6 /* timer period 10us */ ,
2226 ~0 /* max expirations per call */ );
2227
Dave Barach2877eee2017-12-15 12:22:57 -05002228 vec_validate (vm->pending_rpc_requests, 0);
2229 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04002230 vec_validate (vm->processing_rpc_requests, 0);
2231 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05002232
Dave Barachc74b43c2020-04-09 17:24:07 -04002233 /* Default params for the buffer allocator fault injector, if configured */
2234 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR > 0)
2235 {
2236 vm->buffer_alloc_success_seed = 0xdeaddabe;
2237 vm->buffer_alloc_success_rate = 0.80;
2238 }
2239
Dave Barachd1e17d02019-03-21 18:01:48 -04002240 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2241 goto done;
2242
Dave Barach000a0292020-02-17 17:07:12 -05002243 /*
2244 * Use exponential smoothing, with a half-life of 1 second
2245 * reported_rate(t) = reported_rate(t-1) * K + rate(t)*(1-K)
2246 *
2247 * Sample every 20ms, aka 50 samples per second
2248 * K = exp (-1.0/20.0);
2249 * K = 0.95
2250 */
2251 vm->damping_constant = exp (-1.0 / 20.0);
2252
Dave Barachc602b382019-06-03 19:48:22 -04002253 /* Sort per-thread init functions before we start threads */
2254 vlib_sort_init_exit_functions (&vm->worker_init_function_registrations);
2255
Dave Barachd1e17d02019-03-21 18:01:48 -04002256 /* Call all main loop enter functions. */
2257 {
2258 clib_error_t *sub_error;
2259 sub_error = vlib_call_all_main_loop_enter_functions (vm);
2260 if (sub_error)
2261 clib_error_report (sub_error);
2262 }
2263
Ed Warnickecb9cada2015-12-08 15:45:58 -07002264 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2265 {
2266 case VLIB_MAIN_LOOP_EXIT_NONE:
2267 vm->main_loop_exit_set = 1;
2268 break;
2269
2270 case VLIB_MAIN_LOOP_EXIT_CLI:
2271 goto done;
2272
2273 default:
2274 error = vm->main_loop_error;
2275 goto done;
2276 }
2277
Ed Warnickecb9cada2015-12-08 15:45:58 -07002278 vlib_main_loop (vm);
2279
Dave Barach9b8ffd92016-07-08 08:13:45 -04002280done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002281 /* Call all exit functions. */
2282 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002283 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002284 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2285 if (sub_error)
2286 clib_error_report (sub_error);
2287 }
2288
2289 if (error)
2290 clib_error_report (error);
2291
2292 return 0;
2293}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002294
Dave Barache5948fb2019-08-29 18:01:30 -04002295int
2296vlib_pcap_dispatch_trace_configure (vlib_pcap_dispatch_trace_args_t * a)
Dave Barach3ae28732018-11-16 17:19:00 -05002297{
Dave Barache5948fb2019-08-29 18:01:30 -04002298 vlib_main_t *vm = vlib_get_main ();
Dave Barach3ae28732018-11-16 17:19:00 -05002299 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05002300 vlib_trace_main_t *tm;
2301 vlib_trace_node_t *tn;
Dave Barach3ae28732018-11-16 17:19:00 -05002302
Dave Barache5948fb2019-08-29 18:01:30 -04002303 if (a->status)
2304 {
2305 if (vm->dispatch_pcap_enable)
2306 {
2307 int i;
2308 vlib_cli_output
2309 (vm, "pcap dispatch capture enabled: %d of %d pkts...",
2310 pm->n_packets_captured, pm->n_packets_to_capture);
2311 vlib_cli_output (vm, "capture to file %s", pm->file_name);
2312
2313 for (i = 0; i < vec_len (vm->dispatch_buffer_trace_nodes); i++)
2314 {
2315 vlib_cli_output (vm,
2316 "Buffer trace of %d pkts from %U enabled...",
2317 a->buffer_traces_to_capture,
2318 format_vlib_node_name, vm,
2319 vm->dispatch_buffer_trace_nodes[i]);
2320 }
2321 }
2322 else
2323 vlib_cli_output (vm, "pcap dispatch capture disabled");
2324 return 0;
2325 }
2326
2327 /* Consistency checks */
2328
2329 /* Enable w/ capture already enabled not allowed */
2330 if (vm->dispatch_pcap_enable && a->enable)
2331 return -7; /* VNET_API_ERROR_INVALID_VALUE */
2332
2333 /* Disable capture with capture already disabled, not interesting */
2334 if (vm->dispatch_pcap_enable == 0 && a->enable == 0)
2335 return -81; /* VNET_API_ERROR_VALUE_EXIST */
2336
2337 /* Change number of packets to capture while capturing */
Dave Barachb97641c2019-09-09 16:38:17 -04002338 if (vm->dispatch_pcap_enable && a->enable
Dave Barache5948fb2019-08-29 18:01:30 -04002339 && (pm->n_packets_to_capture != a->packets_to_capture))
2340 return -8; /* VNET_API_ERROR_INVALID_VALUE_2 */
2341
2342 /* Independent of enable/disable, to allow buffer trace multi nodes */
2343 if (a->buffer_trace_node_index != ~0)
2344 {
2345 /* *INDENT-OFF* */
2346 foreach_vlib_main ((
2347 {
2348 tm = &this_vlib_main->trace_main;
2349 tm->verbose = 0; /* not sure this ever did anything... */
2350 vec_validate (tm->nodes, a->buffer_trace_node_index);
2351 tn = tm->nodes + a->buffer_trace_node_index;
2352 tn->limit += a->buffer_traces_to_capture;
Dave Barach27d978c2020-11-03 09:59:06 -05002353 if (a->post_mortem)
2354 {
2355 tm->filter_flag = FILTER_FLAG_POST_MORTEM;
2356 tm->filter_count = ~0;
2357 }
Dave Barache5948fb2019-08-29 18:01:30 -04002358 tm->trace_enable = 1;
2359 }));
2360 /* *INDENT-ON* */
2361 vec_add1 (vm->dispatch_buffer_trace_nodes, a->buffer_trace_node_index);
2362 }
2363
2364 if (a->enable)
2365 {
2366 /* Clean up from previous run, if any */
2367 vec_free (pm->file_name);
2368 vec_free (pm->pcap_data);
2369 memset (pm, 0, sizeof (*pm));
2370
Dave Barach11fb09e2020-08-06 12:10:09 -04002371 vec_validate_aligned (vnet_trace_placeholder, 2048,
2372 CLIB_CACHE_LINE_BYTES);
Dave Barache5948fb2019-08-29 18:01:30 -04002373 if (pm->lock == 0)
2374 clib_spinlock_init (&(pm->lock));
2375
2376 if (a->filename == 0)
2377 a->filename = format (0, "/tmp/dispatch.pcap%c", 0);
2378
2379 pm->file_name = (char *) a->filename;
2380 pm->n_packets_captured = 0;
2381 pm->packet_type = PCAP_PACKET_TYPE_vpp;
Dave Barache5948fb2019-08-29 18:01:30 -04002382 pm->n_packets_to_capture = a->packets_to_capture;
Dave Barach27d978c2020-11-03 09:59:06 -05002383 vm->dispatch_pcap_postmortem = a->post_mortem;
Dave Barach349cd1a2019-10-18 14:44:05 -04002384 /* *INDENT-OFF* */
Dave Barach27d978c2020-11-03 09:59:06 -05002385 foreach_vlib_main (({ this_vlib_main->dispatch_pcap_enable = 1;}));
Dave Barach349cd1a2019-10-18 14:44:05 -04002386 /* *INDENT-ON* */
Dave Barache5948fb2019-08-29 18:01:30 -04002387 }
2388 else
2389 {
Dave Barach349cd1a2019-10-18 14:44:05 -04002390 /* *INDENT-OFF* */
Dave Barach27d978c2020-11-03 09:59:06 -05002391 foreach_vlib_main ((
2392 {
2393 this_vlib_main->dispatch_pcap_enable = 0;
2394 this_vlib_main->dispatch_pcap_postmortem = 0;
2395 tm = &this_vlib_main->trace_main;
2396 tm->filter_flag = 0;
2397 tm->filter_count = 0;
2398 tm->trace_enable = 0;
2399 }));
Dave Barach349cd1a2019-10-18 14:44:05 -04002400 /* *INDENT-ON* */
Dave Barache5948fb2019-08-29 18:01:30 -04002401 vec_reset_length (vm->dispatch_buffer_trace_nodes);
2402 if (pm->n_packets_captured)
2403 {
2404 clib_error_t *error;
2405 pm->n_packets_to_capture = pm->n_packets_captured;
2406 vlib_cli_output (vm, "Write %d packets to %s, and stop capture...",
2407 pm->n_packets_captured, pm->file_name);
2408 error = pcap_write (pm);
Andrew Yourtchenko4da15062019-09-11 14:14:43 +00002409 if (pm->flags & PCAP_MAIN_INIT_DONE)
Dave Barache5948fb2019-08-29 18:01:30 -04002410 pcap_close (pm);
2411 /* Report I/O errors... */
2412 if (error)
2413 {
2414 clib_error_report (error);
2415 return -11; /* VNET_API_ERROR_SYSCALL_ERROR_1 */
2416 }
2417 return 0;
2418 }
2419 else
2420 return -6; /* VNET_API_ERROR_NO_SUCH_ENTRY */
2421 }
2422
2423 return 0;
2424}
2425
2426static clib_error_t *
2427dispatch_trace_command_fn (vlib_main_t * vm,
2428 unformat_input_t * input, vlib_cli_command_t * cmd)
2429{
2430 unformat_input_t _line_input, *line_input = &_line_input;
2431 vlib_pcap_dispatch_trace_args_t _a, *a = &_a;
2432 u8 *filename = 0;
2433 u32 max = 1000;
2434 int rv;
2435 int enable = 0;
2436 int status = 0;
Dave Barach27d978c2020-11-03 09:59:06 -05002437 int post_mortem = 0;
Dave Barache5948fb2019-08-29 18:01:30 -04002438 u32 node_index = ~0, buffer_traces_to_capture = 100;
2439
Dave Barach3ae28732018-11-16 17:19:00 -05002440 /* Get a line of input. */
2441 if (!unformat_user (input, unformat_line_input, line_input))
2442 return 0;
2443
2444 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2445 {
Dave Barache5948fb2019-08-29 18:01:30 -04002446 if (unformat (line_input, "on %=", &enable, 1))
2447 ;
2448 else if (unformat (line_input, "enable %=", &enable, 1))
2449 ;
2450 else if (unformat (line_input, "off %=", &enable, 0))
2451 ;
2452 else if (unformat (line_input, "disable %=", &enable, 0))
2453 ;
Dave Barach3ae28732018-11-16 17:19:00 -05002454 else if (unformat (line_input, "max %d", &max))
Dave Barache5948fb2019-08-29 18:01:30 -04002455 ;
2456 else if (unformat (line_input, "packets-to-capture %d", &max))
2457 ;
2458 else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
2459 &filename))
2460 ;
2461 else if (unformat (line_input, "status %=", &status, 1))
2462 ;
Dave Barach1201a802018-11-20 12:08:39 -05002463 else if (unformat (line_input, "buffer-trace %U %d",
Dave Barache5948fb2019-08-29 18:01:30 -04002464 unformat_vlib_node, vm, &node_index,
2465 &buffer_traces_to_capture))
2466 ;
Dave Barach27d978c2020-11-03 09:59:06 -05002467 else if (unformat (line_input, "post-mortem %=", &post_mortem, 1))
2468 ;
Dave Barach3ae28732018-11-16 17:19:00 -05002469 else
2470 {
Dave Barache5948fb2019-08-29 18:01:30 -04002471 return clib_error_return (0, "unknown input `%U'",
2472 format_unformat_error, line_input);
Dave Barach3ae28732018-11-16 17:19:00 -05002473 }
2474 }
Dave Barache5948fb2019-08-29 18:01:30 -04002475
Dave Barach3ae28732018-11-16 17:19:00 -05002476 unformat_free (line_input);
2477
Dave Barache5948fb2019-08-29 18:01:30 -04002478 /* no need for memset (a, 0, sizeof (*a)), set all fields here. */
2479 a->filename = filename;
2480 a->enable = enable;
2481 a->status = status;
2482 a->packets_to_capture = max;
2483 a->buffer_trace_node_index = node_index;
2484 a->buffer_traces_to_capture = buffer_traces_to_capture;
Dave Barach27d978c2020-11-03 09:59:06 -05002485 a->post_mortem = post_mortem;
Dave Barache5948fb2019-08-29 18:01:30 -04002486
2487 rv = vlib_pcap_dispatch_trace_configure (a);
2488
2489 switch (rv)
Dave Barach3ae28732018-11-16 17:19:00 -05002490 {
Dave Barache5948fb2019-08-29 18:01:30 -04002491 case 0:
2492 break;
Dave Barach3ae28732018-11-16 17:19:00 -05002493
Dave Barache5948fb2019-08-29 18:01:30 -04002494 case -7:
2495 return clib_error_return (0, "dispatch trace already enabled...");
Dave Barach3ae28732018-11-16 17:19:00 -05002496
Dave Barache5948fb2019-08-29 18:01:30 -04002497 case -81:
2498 return clib_error_return (0, "dispatch trace already disabled...");
Dave Barach3ae28732018-11-16 17:19:00 -05002499
Dave Barache5948fb2019-08-29 18:01:30 -04002500 case -8:
2501 return clib_error_return
2502 (0, "can't change number of records to capture while tracing...");
2503
2504 case -11:
2505 return clib_error_return (0, "I/O writing trace capture...");
2506
2507 case -6:
2508 return clib_error_return (0, "No packets captured...");
2509
2510 default:
2511 vlib_cli_output (vm, "WARNING: trace configure returned %d", rv);
2512 break;
Dave Barach3ae28732018-11-16 17:19:00 -05002513 }
Dave Barache5948fb2019-08-29 18:01:30 -04002514 return 0;
Dave Barach3ae28732018-11-16 17:19:00 -05002515}
2516
2517/*?
2518 * This command is used to start or stop pcap dispatch trace capture, or show
2519 * the capture status.
2520 *
2521 * This command has the following optional parameters:
2522 *
2523 * - <b>on|off</b> - Used to start or stop capture.
2524 *
2525 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2526 * of packets have been received, buffer is flushed to file. Once another
2527 * '<em>nn</em>' number of packets have been received, buffer is flushed
2528 * to file, overwriting previous write. If not entered, value defaults
2529 * to 100. Can only be updated if packet capture is off.
2530 *
2531 * - <b>file <name></b> - Used to specify the output filename. The file will
2532 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2533 * supported. Directory should not be entered. If file already exists, file
2534 * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2535 * will be used. Can only be updated if packet capture is off.
2536 *
2537 * - <b>status</b> - Displays the current status and configured attributes
2538 * associated with a packet capture. If packet capture is in progress,
2539 * '<em>status</em>' also will return the number of packets currently in
2540 * the local buffer. All additional attributes entered on command line
2541 * with '<em>status</em>' will be ignored and not applied.
2542 *
2543 * @cliexpar
2544 * Example of how to display the status of capture when off:
2545 * @cliexstart{pcap dispatch trace status}
2546 * max is 100, for any interface to file /tmp/vpe.pcap
2547 * pcap dispatch capture is off...
2548 * @cliexend
2549 * Example of how to start a dispatch trace capture:
2550 * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
Dave Barach1201a802018-11-20 12:08:39 -05002551 * pcap dispatch capture on...
2552 * @cliexend
2553 * Example of how to start a dispatch trace capture with buffer tracing
2554 * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2555 * pcap dispatch capture on...
Dave Barach3ae28732018-11-16 17:19:00 -05002556 * @cliexend
2557 * Example of how to display the status of a tx packet capture in progress:
2558 * @cliexstart{pcap tx trace status}
2559 * max is 35, dispatch trace to file /tmp/vppTest.pcap
2560 * pcap tx capture is on: 20 of 35 pkts...
2561 * @cliexend
2562 * Example of how to stop a tx packet capture:
2563 * @cliexstart{vppctl pcap dispatch trace off}
2564 * captured 21 pkts...
2565 * saved to /tmp/dispatchTrace.pcap...
Dave Barach27d978c2020-11-03 09:59:06 -05002566 * Example of how to start a post-mortem dispatch trace:
2567 * pcap dispatch trace on max 20000 buffer-trace
2568 * dpdk-input 3000000000 post-mortem
Dave Barach3ae28732018-11-16 17:19:00 -05002569 * @cliexend
2570?*/
2571/* *INDENT-OFF* */
2572VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2573 .path = "pcap dispatch trace",
2574 .short_help =
Dave Barach1201a802018-11-20 12:08:39 -05002575 "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
Dave Barach27d978c2020-11-03 09:59:06 -05002576 " [buffer-trace <input-node-name> <nn>][post-mortem]",
Dave Barache5948fb2019-08-29 18:01:30 -04002577 .function = dispatch_trace_command_fn,
Dave Barach3ae28732018-11-16 17:19:00 -05002578};
2579/* *INDENT-ON* */
2580
Dave Barachab1a50c2020-10-06 14:08:16 -04002581vlib_main_t *
2582vlib_get_main_not_inline (void)
2583{
2584 return vlib_get_main ();
2585}
2586
2587elog_main_t *
2588vlib_get_elog_main_not_inline ()
2589{
2590 return &vlib_global_main.elog_main;
2591}
2592
Dave Barach9b8ffd92016-07-08 08:13:45 -04002593/*
2594 * fd.io coding-style-patch-verification: ON
2595 *
2596 * Local Variables:
2597 * eval: (c-set-style "gnu")
2598 * End:
2599 */