blob: 2e100b24df7aca76f77b809f49f52e1d88bb8ae9 [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,
Dave Barach4d1a8662018-09-10 12:31:15 -0400571 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500572 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
576 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
577 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
578 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500579 n->stats_total.perf_counter0_ticks += n_ticks0 +
580 r->perf_counter0_ticks_since_last_overflow;
581 n->stats_total.perf_counter1_ticks += n_ticks1 +
582 r->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400583 n->stats_total.perf_counter_vectors += n_vectors +
584 r->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585 n->stats_total.max_clock = r->max_clock;
586 n->stats_total.max_clock_n = r->max_clock_n;
587
588 r->calls_since_last_overflow = 0;
589 r->vectors_since_last_overflow = 0;
590 r->clocks_since_last_overflow = 0;
Dave Barachec595ef2019-01-24 10:34:24 -0500591 r->perf_counter0_ticks_since_last_overflow = 0ULL;
592 r->perf_counter1_ticks_since_last_overflow = 0ULL;
Dave Barach4d1a8662018-09-10 12:31:15 -0400593 r->perf_counter_vectors_since_last_overflow = 0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594}
595
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597vlib_process_sync_stats (vlib_main_t * vm,
598 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400599 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500600 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400602 vlib_node_runtime_t *rt = &p->node_runtime;
603 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Dave Barach4d1a8662018-09-10 12:31:15 -0400604 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500605 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 n->stats_total.suspends += p->n_suspends;
607 p->n_suspends = 0;
608}
609
Dave Barach9b8ffd92016-07-08 08:13:45 -0400610void
611vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
615 if (n->type == VLIB_NODE_TYPE_PROCESS)
616 {
617 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618 if (vm != &vlib_global_main)
619 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620
Dave Barach9b8ffd92016-07-08 08:13:45 -0400621 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 n->stats_total.suspends += p->n_suspends;
623 p->n_suspends = 0;
624 rt = &p->node_runtime;
625 }
626 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400627 rt =
628 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
629 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
Dave Barachec595ef2019-01-24 10:34:24 -0500631 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632
633 /* Sync up runtime next frame vector counters with main node structure. */
634 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400635 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 uword i;
637 for (i = 0; i < rt->n_next_nodes; i++)
638 {
639 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640 vec_elt (n->n_vectors_by_next_node, i) +=
641 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 nf->vectors_since_last_overflow = 0;
643 }
644 }
645}
646
647always_inline u32
648vlib_node_runtime_update_stats (vlib_main_t * vm,
649 vlib_node_runtime_t * node,
650 uword n_calls,
Dave Barach4d1a8662018-09-10 12:31:15 -0400651 uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500652 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653{
654 u32 ca0, ca1, v0, v1, cl0, cl1, r;
Dave Barachec595ef2019-01-24 10:34:24 -0500655 u32 ptick00, ptick01, ptick10, ptick11, pvec0, pvec1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
657 cl0 = cl1 = node->clocks_since_last_overflow;
658 ca0 = ca1 = node->calls_since_last_overflow;
659 v0 = v1 = node->vectors_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500660 ptick00 = ptick01 = node->perf_counter0_ticks_since_last_overflow;
661 ptick10 = ptick11 = node->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400662 pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663
664 ca1 = ca0 + n_calls;
665 v1 = v0 + n_vectors;
666 cl1 = cl0 + n_clocks;
Dave Barachec595ef2019-01-24 10:34:24 -0500667 ptick01 = ptick00 + n_ticks0;
668 ptick11 = ptick10 + n_ticks1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400669 pvec1 = pvec0 + n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670
671 node->calls_since_last_overflow = ca1;
672 node->clocks_since_last_overflow = cl1;
673 node->vectors_since_last_overflow = v1;
Dave Barachec595ef2019-01-24 10:34:24 -0500674 node->perf_counter0_ticks_since_last_overflow = ptick01;
675 node->perf_counter1_ticks_since_last_overflow = ptick11;
Dave Barach4d1a8662018-09-10 12:31:15 -0400676 node->perf_counter_vectors_since_last_overflow = pvec1;
677
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400679 node->max_clock_n : n_vectors;
680 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681
682 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
683
Dave Barachec595ef2019-01-24 10:34:24 -0500684 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick01 < ptick00)
685 || (ptick11 < ptick10) || (pvec1 < pvec0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 {
687 node->calls_since_last_overflow = ca0;
688 node->clocks_since_last_overflow = cl0;
689 node->vectors_since_last_overflow = v0;
Dave Barachec595ef2019-01-24 10:34:24 -0500690 node->perf_counter0_ticks_since_last_overflow = ptick00;
691 node->perf_counter1_ticks_since_last_overflow = ptick10;
Dave Barach4d1a8662018-09-10 12:31:15 -0400692 node->perf_counter_vectors_since_last_overflow = pvec0;
693
694 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500695 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 }
697
698 return r;
699}
700
Dave Barach17e5d802019-05-01 11:30:13 -0400701always_inline void
702vlib_node_runtime_perf_counter (vlib_main_t * vm, u64 * pmc0, u64 * pmc1,
703 vlib_node_runtime_t * node,
704 vlib_frame_t * frame, int before_or_after)
Dave Barach4d1a8662018-09-10 12:31:15 -0400705{
Dave Barachec595ef2019-01-24 10:34:24 -0500706 *pmc0 = 0;
707 *pmc1 = 0;
Dave Barach5f2cfb22019-05-20 10:28:57 -0400708 if (PREDICT_FALSE (vec_len (vm->vlib_node_runtime_perf_counter_cbs) != 0))
709 clib_call_callbacks (vm->vlib_node_runtime_perf_counter_cbs, vm, pmc0,
710 pmc1, node, frame, before_or_after);
Dave Barach4d1a8662018-09-10 12:31:15 -0400711}
712
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713always_inline void
714vlib_process_update_stats (vlib_main_t * vm,
715 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500716 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717{
718 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Dave Barachec595ef2019-01-24 10:34:24 -0500719 n_calls, n_vectors, n_clocks, 0ULL, 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720}
721
722static clib_error_t *
723vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400724 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725{
726 elog_reset_buffer (&vm->elog_main);
727 return 0;
728}
729
Dave Barach9b8ffd92016-07-08 08:13:45 -0400730/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400732 .path = "event-logger clear",
733 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 .function = vlib_cli_elog_clear,
735};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
738#ifdef CLIB_UNIX
739static clib_error_t *
740elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400743 elog_main_t *em = &vm->elog_main;
744 char *file, *chroot_file;
745 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 {
749 vlib_cli_output (vm, "expected file name, got `%U'",
750 format_unformat_error, input);
751 return 0;
752 }
753
754 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400755 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756 {
757 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
758 return 0;
759 }
760
761 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
762
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764
765 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400766 elog_n_events_in_buffer (em),
767 elog_buffer_capacity (em), chroot_file);
768
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400770 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400771 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772 vec_free (chroot_file);
773 return error;
774}
775
Dave Barach81481312017-05-16 09:08:14 -0400776void
777elog_post_mortem_dump (void)
778{
779 vlib_main_t *vm = &vlib_global_main;
780 elog_main_t *em = &vm->elog_main;
781 u8 *filename;
782 clib_error_t *error;
783
784 if (!vm->elog_post_mortem_dump)
785 return;
786
787 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
788 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
789 if (error)
790 clib_error_report (error);
791 vec_free (filename);
792}
793
Dave Barach9b8ffd92016-07-08 08:13:45 -0400794/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400796 .path = "event-logger save",
797 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798 .function = elog_save_buffer,
799};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400800/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
Dave Barache5389bb2016-03-28 17:12:19 -0400802static clib_error_t *
803elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400804 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400805{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400807
808 em->n_total_events_disable_limit = em->n_total_events;
809
810 vlib_cli_output (vm, "Stopped the event logger...");
811 return 0;
812}
813
Dave Barach9b8ffd92016-07-08 08:13:45 -0400814/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400815VLIB_CLI_COMMAND (elog_stop_cli, static) = {
816 .path = "event-logger stop",
817 .short_help = "Stop the event-logger",
818 .function = elog_stop,
819};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400820/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400821
822static clib_error_t *
823elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400825{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400827
828 em->n_total_events_disable_limit = ~0;
829
830 vlib_cli_output (vm, "Restarted the event logger...");
831 return 0;
832}
833
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400835VLIB_CLI_COMMAND (elog_restart_cli, static) = {
836 .path = "event-logger restart",
837 .short_help = "Restart the event-logger",
838 .function = elog_restart,
839};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400840/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400841
842static clib_error_t *
843elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400844 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400845{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400847 u32 tmp;
848
849 /* Stop the parade */
850 elog_reset_buffer (&vm->elog_main);
851
852 if (unformat (input, "%d", &tmp))
853 {
854 elog_alloc (em, tmp);
855 em->n_total_events_disable_limit = ~0;
856 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400857 else
Dave Barache5389bb2016-03-28 17:12:19 -0400858 return clib_error_return (0, "Must specify how many events in the ring");
859
860 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
861 return 0;
862}
863
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400865VLIB_CLI_COMMAND (elog_resize_cli, static) = {
866 .path = "event-logger resize",
867 .short_help = "event-logger resize <nnn>",
868 .function = elog_resize,
869};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400870/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400871
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872#endif /* CLIB_UNIX */
873
Dave Barach9b8ffd92016-07-08 08:13:45 -0400874static void
875elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400877 elog_main_t *em = &vm->elog_main;
878 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879 f64 dt;
880
881 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400882 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883 * vm->clib_time.seconds_per_clock;
884
885 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400886 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
887 em->event_ring_size,
888 em->n_total_events < em->n_total_events_disable_limit ?
889 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400891 {
892 vlib_cli_output (vm, "%18.9f: %U",
893 e->time + dt, format_elog_event, em, e);
894 n_events_to_show--;
895 if (n_events_to_show == 0)
896 break;
897 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400899
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900}
901
902static clib_error_t *
903elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905{
906 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400907 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908
909 n_events_to_show = 250;
910 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
911 {
912 if (unformat (input, "%d", &n_events_to_show))
913 ;
914 else if (unformat (input, "all"))
915 n_events_to_show = ~0;
916 else
917 return unformat_parse_error (input);
918 }
919 elog_show_buffer_internal (vm, n_events_to_show);
920 return error;
921}
922
Dave Barach9b8ffd92016-07-08 08:13:45 -0400923/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924VLIB_CLI_COMMAND (elog_show_cli, static) = {
925 .path = "show event-logger",
926 .short_help = "Show event logger info",
927 .function = elog_show_buffer,
928};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930
Dave Barach9b8ffd92016-07-08 08:13:45 -0400931void
932vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400934 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935}
936
Dave Barachfb6e59d2016-03-26 18:45:42 -0400937static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938vlib_elog_main_loop_event (vlib_main_t * vm,
939 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400940 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400942 vlib_main_t *evm = &vlib_global_main;
943 elog_main_t *em = &evm->elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -0500944 int enabled = evm->elog_trace_graph_dispatch |
945 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
Dave Barach900cbad2019-01-31 19:12:51 -0500947 if (PREDICT_FALSE (enabled && n_vectors))
948 {
949 if (PREDICT_FALSE (!elog_is_enabled (em)))
950 {
951 evm->elog_trace_graph_dispatch = 0;
952 evm->elog_trace_graph_circuit = 0;
953 return;
954 }
955 if (PREDICT_TRUE
956 (evm->elog_trace_graph_dispatch ||
957 (evm->elog_trace_graph_circuit &&
958 node_index == evm->elog_trace_graph_circuit_node_index)))
959 {
960 elog_track (em,
961 /* event type */
962 vec_elt_at_index (is_return
963 ? evm->node_return_elog_event_types
964 : evm->node_call_elog_event_types,
965 node_index),
966 /* track */
967 (vm->thread_index ?
968 &vlib_worker_threads[vm->thread_index].elog_track
969 : &em->default_track),
970 /* data to log */ n_vectors);
971 }
972 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973}
974
Dave Barach7bee7732017-10-18 18:48:11 -0400975#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
976void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
977void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
978
Dave Barach9b8ffd92016-07-08 08:13:45 -0400979void
Dave Barach7bee7732017-10-18 18:48:11 -0400980vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981{
Dave Barach7bee7732017-10-18 18:48:11 -0400982 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983 {
Dave Barach7bee7732017-10-18 18:48:11 -0400984 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985 }
986}
987
Dave Barach7bee7732017-10-18 18:48:11 -0400988#endif
989
990static inline void
991add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
992{
993#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
994 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
995 {
996 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
997 }
998#endif
999}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000
Dave Barach7fff3d22018-11-27 16:52:59 -05001001u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
1002u8 *
1003format_vnet_buffer_flags (u8 * s, va_list * args)
1004{
1005 s = format (s, "BUG STUB %s", __FUNCTION__);
1006 return s;
1007}
1008
1009u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
1010u8 *
1011format_vnet_buffer_opaque (u8 * s, va_list * args)
1012{
1013 s = format (s, "BUG STUB %s", __FUNCTION__);
1014 return s;
1015}
1016
1017u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1018 __attribute__ ((weak));
1019u8 *
1020format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1021{
1022 s = format (s, "BUG STUB %s", __FUNCTION__);
1023 return s;
1024}
1025
1026static u8 *
1027format_buffer_metadata (u8 * s, va_list * args)
1028{
1029 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
1030
1031 s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
1032 s = format (s, "current_data: %d, current_length: %d\n",
1033 (i32) (b->current_data), (i32) (b->current_length));
Dave Barachd7b30662019-10-24 18:10:10 -04001034 s = format
1035 (s,
1036 "current_config_index/punt_reason: %d, flow_id: %x, next_buffer: %x\n",
1037 b->current_config_index, b->flow_id, b->next_buffer);
1038 s =
1039 format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1040 (u32) (b->error), (u32) (b->ref_count),
1041 (u32) (b->buffer_pool_index));
1042 s =
1043 format (s, "trace_handle: 0x%x, len_not_first_buf: %d\n", b->trace_handle,
1044 b->total_length_not_including_first_buffer);
Dave Barach7fff3d22018-11-27 16:52:59 -05001045 return s;
1046}
1047
1048#define A(x) vec_add1(vm->pcap_buffer, (x))
1049
Dave Barach3ae28732018-11-16 17:19:00 -05001050static void
1051dispatch_pcap_trace (vlib_main_t * vm,
1052 vlib_node_runtime_t * node, vlib_frame_t * frame)
1053{
1054 int i;
1055 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
Dave Barach349cd1a2019-10-18 14:44:05 -04001056 pcap_main_t *pm = &vlib_global_main.dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05001057 vlib_trace_main_t *tm = &vm->trace_main;
Dave Barach3ae28732018-11-16 17:19:00 -05001058 u32 capture_size;
1059 vlib_node_t *n;
1060 i32 n_left;
1061 f64 time_now = vlib_time_now (vm);
1062 u32 *from;
Dave Barach3ae28732018-11-16 17:19:00 -05001063 u8 *d;
Dave Barach7fff3d22018-11-27 16:52:59 -05001064 u8 string_count;
Dave Barach3ae28732018-11-16 17:19:00 -05001065
1066 /* Input nodes don't have frames yet */
1067 if (frame == 0 || frame->n_vectors == 0)
1068 return;
1069
1070 from = vlib_frame_vector_args (frame);
1071 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1072 bufp = bufs;
1073
Dave Barach3ae28732018-11-16 17:19:00 -05001074 n = vlib_get_node (vm, node->node_index);
Dave Barach3ae28732018-11-16 17:19:00 -05001075
1076 for (i = 0; i < frame->n_vectors; i++)
1077 {
1078 if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1079 {
1080 b = bufp[i];
1081
Dave Barach7fff3d22018-11-27 16:52:59 -05001082 vec_reset_length (vm->pcap_buffer);
1083 string_count = 0;
Dave Barach1201a802018-11-20 12:08:39 -05001084
Dave Barach7fff3d22018-11-27 16:52:59 -05001085 /* Version, flags */
1086 A ((u8) VLIB_PCAP_MAJOR_VERSION);
1087 A ((u8) VLIB_PCAP_MINOR_VERSION);
1088 A (0 /* string_count */ );
1089 A (n->protocol_hint);
1090
1091 /* Buffer index (big endian) */
1092 A ((from[i] >> 24) & 0xff);
1093 A ((from[i] >> 16) & 0xff);
1094 A ((from[i] >> 8) & 0xff);
1095 A ((from[i] >> 0) & 0xff);
1096
1097 /* Node name, NULL-terminated ASCII */
1098 vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1099 string_count++;
1100
1101 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1102 format_buffer_metadata, b, 0);
1103 string_count++;
1104 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1105 format_vnet_buffer_opaque, b, 0);
1106 string_count++;
1107 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1108 format_vnet_buffer_opaque2, b, 0);
1109 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001110
1111 /* Is this packet traced? */
1112 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1113 {
1114 vlib_trace_header_t **h
Dave Baracha638c182019-06-21 18:24:07 -04001115 = pool_elt_at_index (tm->trace_buffer_pool,
1116 vlib_buffer_get_trace_index (b));
Dave Barach1201a802018-11-20 12:08:39 -05001117
Dave Barach7fff3d22018-11-27 16:52:59 -05001118 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1119 format_vlib_trace, vm, h[0], 0);
1120 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001121 }
1122
Dave Barach7fff3d22018-11-27 16:52:59 -05001123 /* Save the string count */
1124 vm->pcap_buffer[2] = string_count;
1125
1126 /* Figure out how many bytes in the pcap trace */
1127 capture_size = vec_len (vm->pcap_buffer) +
1128 +vlib_buffer_length_in_chain (vm, b);
Dave Barach3ae28732018-11-16 17:19:00 -05001129
1130 clib_spinlock_lock_if_init (&pm->lock);
Dave Barach1201a802018-11-20 12:08:39 -05001131 n_left = clib_min (capture_size, 16384);
Dave Barach3ae28732018-11-16 17:19:00 -05001132 d = pcap_add_packet (pm, time_now, n_left, capture_size);
1133
Dave Barach7fff3d22018-11-27 16:52:59 -05001134 /* Copy the header */
1135 clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1136 d += vec_len (vm->pcap_buffer);
Dave Barach1201a802018-11-20 12:08:39 -05001137
1138 n_left = clib_min
1139 (vlib_buffer_length_in_chain (vm, b),
Dave Barach7fff3d22018-11-27 16:52:59 -05001140 (16384 - vec_len (vm->pcap_buffer)));
Dave Barach3ae28732018-11-16 17:19:00 -05001141 /* Copy the packet data */
1142 while (1)
1143 {
1144 u32 copy_length = clib_min ((u32) n_left, b->current_length);
1145 clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1146 n_left -= b->current_length;
1147 if (n_left <= 0)
1148 break;
1149 d += b->current_length;
1150 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1151 b = vlib_get_buffer (vm, b->next_buffer);
1152 }
1153 clib_spinlock_unlock_if_init (&pm->lock);
1154 }
1155 }
1156}
1157
Damjan Marion9a332e12017-03-28 15:11:20 +02001158static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159dispatch_node (vlib_main_t * vm,
1160 vlib_node_runtime_t * node,
1161 vlib_node_type_t type,
1162 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001163 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164{
1165 uword n, v;
1166 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001167 vlib_node_main_t *nm = &vm->node_main;
1168 vlib_next_frame_t *nf;
Dave Barach900cbad2019-01-31 19:12:51 -05001169 u64 pmc_before[2], pmc_after[2], pmc_delta[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170
1171 if (CLIB_DEBUG > 0)
1172 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001173 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 ASSERT (n->type == type);
1175 }
1176
1177 /* Only non-internal nodes may be disabled. */
1178 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1179 {
1180 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1181 return last_time_stamp;
1182 }
1183
1184 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1185 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1186 {
1187 u32 c = node->input_main_loops_per_call;
1188 /* Only call node when count reaches zero. */
1189 if (c)
1190 {
1191 node->input_main_loops_per_call = c - 1;
1192 return last_time_stamp;
1193 }
1194 }
1195
1196 /* Speculatively prefetch next frames. */
1197 if (node->n_next_nodes > 0)
1198 {
1199 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1200 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1201 }
1202
1203 vm->cpu_time_last_node_dispatch = last_time_stamp;
1204
Dave Barach900cbad2019-01-31 19:12:51 -05001205 vlib_elog_main_loop_event (vm, node->node_index,
1206 last_time_stamp, frame ? frame->n_vectors : 0,
1207 /* is_after */ 0);
1208
Dave Barach17e5d802019-05-01 11:30:13 -04001209 vlib_node_runtime_perf_counter (vm, &pmc_before[0], &pmc_before[1],
1210 node, frame, 0 /* before */ );
Dave Barach900cbad2019-01-31 19:12:51 -05001211
1212 /*
1213 * Turn this on if you run into
1214 * "bad monkey" contexts, and you want to know exactly
1215 * which nodes they've visited... See ixge.c...
1216 */
1217 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218 {
Dave Barach900cbad2019-01-31 19:12:51 -05001219 int i;
1220 u32 *from;
1221 from = vlib_frame_vector_args (frame);
1222 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223 {
Dave Barach900cbad2019-01-31 19:12:51 -05001224 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1225 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001226 }
Dave Barach900cbad2019-01-31 19:12:51 -05001227 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1228 dispatch_pcap_trace (vm, node, frame);
1229 n = node->function (vm, node, frame);
1230 }
1231 else
1232 {
1233 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1234 dispatch_pcap_trace (vm, node, frame);
1235 n = node->function (vm, node, frame);
1236 }
1237
1238 t = clib_cpu_time_now ();
1239
1240 /*
1241 * To validate accounting: pmc_delta = t - pmc_before;
1242 * perf ticks should equal clocks/pkt...
1243 */
Dave Barach17e5d802019-05-01 11:30:13 -04001244 vlib_node_runtime_perf_counter (vm, &pmc_after[0], &pmc_after[1], node,
1245 frame, 1 /* after */ );
Dave Barach900cbad2019-01-31 19:12:51 -05001246
1247 pmc_delta[0] = pmc_after[0] - pmc_before[0];
1248 pmc_delta[1] = pmc_after[1] - pmc_before[1];
1249
1250 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1251
1252 vm->main_loop_vectors_processed += n;
1253 vm->main_loop_nodes_processed += n > 0;
1254
1255 v = vlib_node_runtime_update_stats (vm, node,
1256 /* n_calls */ 1,
1257 /* n_vectors */ n,
1258 /* n_clocks */ t - last_time_stamp,
1259 pmc_delta[0] /* PMC0 */ ,
1260 pmc_delta[1] /* PMC1 */ );
1261
1262 /* When in interrupt mode and vector rate crosses threshold switch to
1263 polling mode. */
1264 if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1265 || (dispatch_state == VLIB_NODE_STATE_POLLING
1266 && (node->flags
1267 &
1268 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))))
1269 {
1270 /* *INDENT-OFF* */
1271 ELOG_TYPE_DECLARE (e) =
1272 {
1273 .function = (char *) __FUNCTION__,
1274 .format = "%s vector length %d, switching to %s",
1275 .format_args = "T4i4t4",
1276 .n_enum_strings = 2,
1277 .enum_strings = {
1278 "interrupt", "polling",
1279 },
1280 };
1281 /* *INDENT-ON* */
1282 struct
1283 {
1284 u32 node_name, vector_length, is_polling;
1285 } *ed;
1286
1287 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1288 && v >= nm->polling_threshold_vector_length) &&
1289 !(node->flags &
1290 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -05001291 {
Dave Barach900cbad2019-01-31 19:12:51 -05001292 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1293 n->state = VLIB_NODE_STATE_POLLING;
1294 node->state = VLIB_NODE_STATE_POLLING;
1295 node->flags &=
1296 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1297 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1298 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1299 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300
Dave Barach900cbad2019-01-31 19:12:51 -05001301 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001302 {
Dave Barach900cbad2019-01-31 19:12:51 -05001303 vlib_worker_thread_t *w = vlib_worker_threads
1304 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305
Steven6aa75af2017-02-24 10:03:22 -08001306 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1307 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001308 ed->node_name = n->name_elog_string;
1309 ed->vector_length = v;
1310 ed->is_polling = 1;
1311 }
Dave Barach900cbad2019-01-31 19:12:51 -05001312 }
1313 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1314 && v <= nm->interrupt_threshold_vector_length)
1315 {
1316 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1317 if (node->flags &
1318 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001319 {
Dave Barach900cbad2019-01-31 19:12:51 -05001320 /* Switch to interrupt mode after dispatch in polling one more time.
1321 This allows driver to re-enable interrupts. */
1322 n->state = VLIB_NODE_STATE_INTERRUPT;
1323 node->state = VLIB_NODE_STATE_INTERRUPT;
1324 node->flags &=
1325 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1326 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1327 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328
Dave Barach900cbad2019-01-31 19:12:51 -05001329 }
1330 else
1331 {
1332 vlib_worker_thread_t *w = vlib_worker_threads
1333 + vm->thread_index;
1334 node->flags |=
1335 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1336 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001337 {
Steven6aa75af2017-02-24 10:03:22 -08001338 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1339 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001340 ed->node_name = n->name_elog_string;
1341 ed->vector_length = v;
1342 ed->is_polling = 0;
1343 }
1344 }
1345 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001346 }
1347
1348 return t;
1349}
1350
Damjan Marion9a332e12017-03-28 15:11:20 +02001351static u64
Dave Baracha6269992017-06-07 08:18:49 -04001352dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1353 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001355 vlib_node_main_t *nm = &vm->node_main;
1356 vlib_frame_t *f;
1357 vlib_next_frame_t *nf, nf_dummy;
1358 vlib_node_runtime_t *n;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001359 vlib_frame_t *restore_frame;
Dave Baracha6269992017-06-07 08:18:49 -04001360 vlib_pending_frame_t *p;
1361
1362 /* See comment below about dangling references to nm->pending_frames */
1363 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001364
1365 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1366 p->node_runtime_index);
1367
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001368 f = vlib_get_frame (vm, p->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1370 {
1371 /* No next frame: so use dummy on stack. */
1372 nf = &nf_dummy;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001373 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001374 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375 }
1376 else
1377 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1378
Damjan Marion633b6fd2018-09-14 14:38:53 +02001379 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380
1381 /* Force allocation of new frame while current frame is being
1382 dispatched. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001383 restore_frame = NULL;
1384 if (nf->frame == p->frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001386 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001388 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001389 restore_frame = p->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 }
1391
1392 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001393 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394 ASSERT (f->n_vectors > 0);
1395
1396 /* Copy trace flag from next frame to node.
1397 Trace flag indicates that at least one vector in the dispatched
1398 frame is traced. */
1399 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1400 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1401 nf->flags &= ~VLIB_FRAME_TRACE;
1402
1403 last_time_stamp = dispatch_node (vm, n,
1404 VLIB_NODE_TYPE_INTERNAL,
1405 VLIB_NODE_STATE_POLLING,
1406 f, last_time_stamp);
Dave Baracha8df85c2019-10-01 13:34:23 -04001407 /* Internal node vector-rate accounting, for summary stats */
1408 vm->internal_node_vectors += f->n_vectors;
1409 vm->internal_node_calls++;
1410 vm->internal_node_last_vectors_per_main_loop =
1411 (f->n_vectors > vm->internal_node_last_vectors_per_main_loop) ?
1412 f->n_vectors : vm->internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001413
Damjan Marion296988d2019-02-21 20:24:54 +01001414 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001415
1416 /* Frame is ready to be used again, so restore it. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001417 if (restore_frame != NULL)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418 {
Dave Baracha6269992017-06-07 08:18:49 -04001419 /*
1420 * We musn't restore a frame that is flagged to be freed. This
1421 * shouldn't happen since frames to be freed post dispatch are
1422 * those used when the to-node frame becomes full i.e. they form a
1423 * sort of queue of frames to a single node. If we get here then
1424 * the to-node frame and the pending frame *were* the same, and so
1425 * we removed the to-node frame. Therefore this frame is no
1426 * longer part of the queue for that node and hence it cannot be
1427 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001428 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001429 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001430
Dave Baracha6269992017-06-07 08:18:49 -04001431 /*
1432 * NB: dispatching node n can result in the creation and scheduling
1433 * of new frames, and hence in the reallocation of nm->pending_frames.
1434 * Recompute p, or no supper. This was broken for more than 10 years.
1435 */
1436 p = nm->pending_frames + pending_frame_index;
1437
1438 /*
1439 * p->next_frame_index can change during node dispatch if node
1440 * function decides to change graph hook up.
1441 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001442 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001445 if (NULL == nf->frame)
Neale Ranns88170612016-11-22 08:29:51 +00001446 {
1447 /* no new frame has been assigned to this node, use the saved one */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001448 nf->frame = restore_frame;
Neale Ranns88170612016-11-22 08:29:51 +00001449 f->n_vectors = 0;
1450 }
1451 else
1452 {
1453 /* The node has gained a frame, implying packets from the current frame
1454 were re-queued to this same node. we don't need the saved one
1455 anymore */
1456 vlib_frame_free (vm, n, f);
1457 }
1458 }
1459 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001460 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001461 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001462 {
1463 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1464 vlib_frame_free (vm, n, f);
1465 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001466 }
1467
1468 return last_time_stamp;
1469}
1470
1471always_inline uword
1472vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001473{
1474 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1475}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476
Dave Barach9b8ffd92016-07-08 08:13:45 -04001477typedef struct
1478{
1479 vlib_main_t *vm;
1480 vlib_process_t *process;
1481 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482} vlib_process_bootstrap_args_t;
1483
1484/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001485static uword
1486vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001488 vlib_process_bootstrap_args_t *a;
1489 vlib_main_t *vm;
1490 vlib_node_runtime_t *node;
1491 vlib_frame_t *f;
1492 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001493 uword n;
1494
1495 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1496
1497 vm = a->vm;
1498 p = a->process;
1499 f = a->frame;
1500 node = &p->node_runtime;
1501
1502 n = node->function (vm, node, f);
1503
1504 ASSERT (vlib_process_stack_is_valid (p));
1505
1506 clib_longjmp (&p->return_longjmp, n);
1507
1508 return n;
1509}
1510
1511/* Called in main stack. */
1512static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001513vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001514{
1515 vlib_process_bootstrap_args_t a;
1516 uword r;
1517
1518 a.vm = vm;
1519 a.process = p;
1520 a.frame = f;
1521
1522 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1523 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1524 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1525 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1526
1527 return r;
1528}
1529
1530static_always_inline uword
1531vlib_process_resume (vlib_process_t * p)
1532{
1533 uword r;
1534 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1535 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1536 | VLIB_PROCESS_RESUME_PENDING);
1537 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1538 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1539 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1540 return r;
1541}
1542
1543static u64
1544dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001545 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001546{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001547 vlib_node_main_t *nm = &vm->node_main;
1548 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1549 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001550 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001551 u64 t;
1552 uword n_vectors, is_suspend;
1553
1554 if (node->state != VLIB_NODE_STATE_POLLING
1555 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1556 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1557 return last_time_stamp;
1558
1559 p->flags |= VLIB_PROCESS_IS_RUNNING;
1560
1561 t = last_time_stamp;
1562 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1563 f ? f->n_vectors : 0, /* is_after */ 0);
1564
1565 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001566 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001567 nm->current_process_index = node->runtime_index;
1568
1569 n_vectors = vlib_process_startup (vm, p, f);
1570
Florin Corasfd542f12018-05-16 19:28:24 -07001571 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001572
1573 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1574 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1575 if (is_suspend)
1576 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001577 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001578
1579 n_vectors = 0;
1580 pool_get (nm->suspended_process_frames, pf);
1581 pf->node_runtime_index = node->runtime_index;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001582 pf->frame = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583 pf->next_frame_index = ~0;
1584
1585 p->n_suspends += 1;
1586 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1587
1588 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001589 {
1590 TWT (tw_timer_wheel) * tw =
1591 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1592 p->stop_timer_handle =
1593 TW (tw_timer_start) (tw,
1594 vlib_timing_wheel_data_set_suspended_process
1595 (node->runtime_index) /* [sic] pool idex */ ,
1596 0 /* timer_id */ ,
1597 p->resume_clock_interval);
1598 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001599 }
1600 else
1601 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1602
1603 t = clib_cpu_time_now ();
1604
Dave Barach9b8ffd92016-07-08 08:13:45 -04001605 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1606 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001607
1608 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001609 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001611 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612
1613 return t;
1614}
1615
Dave Barach9b8ffd92016-07-08 08:13:45 -04001616void
1617vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001619 vlib_node_main_t *nm = &vm->node_main;
1620 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001621 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1622}
1623
1624static u64
1625dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001626 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001627{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001628 vlib_node_main_t *nm = &vm->node_main;
1629 vlib_node_runtime_t *node_runtime;
1630 vlib_node_t *node;
1631 vlib_frame_t *f;
1632 vlib_process_t *p;
1633 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001634 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001635
Ed Warnickecb9cada2015-12-08 15:45:58 -07001636 t = last_time_stamp;
1637
1638 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001639 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001640 return last_time_stamp;
1641
1642 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1643 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1644
Florin Coras221d6f12018-11-07 20:46:38 -08001645 pf = pool_elt_at_index (nm->suspended_process_frames,
1646 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647
1648 node_runtime = &p->node_runtime;
1649 node = vlib_get_node (vm, node_runtime->node_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001650 f = pf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
Dave Barach9b8ffd92016-07-08 08:13:45 -04001652 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1653 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001654
1655 /* Save away current process for suspend. */
1656 nm->current_process_index = node->runtime_index;
1657
1658 n_vectors = vlib_process_resume (p);
1659 t = clib_cpu_time_now ();
1660
1661 nm->current_process_index = ~0;
1662
1663 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1664 if (is_suspend)
1665 {
1666 /* Suspend it again. */
1667 n_vectors = 0;
1668 p->n_suspends += 1;
1669 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001670 {
1671 p->stop_timer_handle =
1672 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1673 vlib_timing_wheel_data_set_suspended_process
1674 (node->runtime_index) /* [sic] pool idex */ ,
1675 0 /* timer_id */ ,
1676 p->resume_clock_interval);
1677 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001678 }
1679 else
1680 {
1681 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001682 pool_put_index (nm->suspended_process_frames,
1683 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001684 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001685 }
1686
1687 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001688 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1689 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001690
1691 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001692 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001694 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001695
1696 return t;
1697}
1698
Dave Barach2877eee2017-12-15 12:22:57 -05001699void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1700void
1701vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1702{
1703}
1704
Damjan Marion1033b492020-06-03 12:20:41 +02001705static_always_inline u64
1706dispatch_pending_interrupts (vlib_main_t * vm, vlib_node_main_t * nm,
1707 u64 cpu_time_now)
1708{
1709 vlib_node_runtime_t *n;
1710
1711 for (int i = 0; i < _vec_len (nm->pending_local_interrupts); i++)
1712 {
1713 vlib_node_interrupt_t *in;
1714 in = vec_elt_at_index (nm->pending_local_interrupts, i);
1715 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1716 in->node_runtime_index);
1717 n->interrupt_data = in->data;
1718 cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1719 VLIB_NODE_STATE_INTERRUPT, /* frame */ 0,
1720 cpu_time_now);
1721 }
1722 vec_reset_length (nm->pending_local_interrupts);
1723 return cpu_time_now;
1724}
Dave Barach2877eee2017-12-15 12:22:57 -05001725
Damjan Marione9d52d52017-03-09 15:42:26 +01001726static_always_inline void
1727vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001728{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001729 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001730 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731 uword i;
1732 u64 cpu_time_now;
Dave Barach000a0292020-02-17 17:07:12 -05001733 f64 now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001734 vlib_frame_queue_main_t *fqm;
Dave Barach80965f52019-03-11 09:57:38 -04001735 u32 frame_queue_check_counter = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001736
1737 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001738 if (is_main)
1739 {
1740 vec_resize (nm->pending_frames, 32);
1741 _vec_len (nm->pending_frames) = 0;
1742 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001743
1744 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001745 if (is_main)
1746 {
1747 cpu_time_now = vm->clib_time.last_cpu_time;
1748 vm->cpu_time_main_loop_start = cpu_time_now;
1749 }
1750 else
1751 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001752
Damjan Marion2c2b6402017-03-28 14:16:15 +02001753 /* Pre-allocate interupt runtime indices and lock. */
Damjan Marion1033b492020-06-03 12:20:41 +02001754 vec_alloc (nm->pending_local_interrupts, 32);
1755 vec_alloc (nm->pending_remote_interrupts, 32);
1756 clib_spinlock_init (&nm->pending_interrupt_lock);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001757
1758 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001759 if (!nm->polling_threshold_vector_length)
1760 nm->polling_threshold_vector_length = 10;
1761 if (!nm->interrupt_threshold_vector_length)
1762 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763
Damjan Marion29c0b332019-01-28 13:41:27 +01001764 vm->cpu_id = clib_get_current_cpu_id ();
1765 vm->numa_node = clib_get_current_numa_node ();
Florin Coras4c959952020-02-09 18:09:31 +00001766 os_set_numa_index (vm->numa_node);
Damjan Marion29c0b332019-01-28 13:41:27 +01001767
Ed Warnickecb9cada2015-12-08 15:45:58 -07001768 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001769 if (is_main)
1770 {
1771 uword i;
Dave Barachc602b382019-06-03 19:48:22 -04001772
1773 /*
1774 * Perform an initial barrier sync. Pays no attention to
1775 * the barrier sync hold-down timer scheme, which won't work
1776 * at this point in time.
1777 */
1778 vlib_worker_thread_initial_barrier_sync_and_release (vm);
1779
Stevenf3b53642017-05-01 14:03:02 -07001780 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001781 for (i = 0; i < vec_len (nm->processes); i++)
1782 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1783 cpu_time_now);
1784 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001785
1786 while (1)
1787 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001788 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001789
Dave Barach2877eee2017-12-15 12:22:57 -05001790 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001791 {
1792 if (!is_main)
1793 vl_api_send_pending_rpc_requests (vm);
1794 }
Dave Barach2877eee2017-12-15 12:22:57 -05001795
Damjan Marione9d52d52017-03-09 15:42:26 +01001796 if (!is_main)
1797 {
1798 vlib_worker_thread_barrier_check ();
Dave Barach80965f52019-03-11 09:57:38 -04001799 if (PREDICT_FALSE (vm->check_frame_queues +
1800 frame_queue_check_counter))
1801 {
1802 u32 processed = 0;
1803
1804 if (vm->check_frame_queues)
1805 {
1806 frame_queue_check_counter = 100;
1807 vm->check_frame_queues = 0;
1808 }
1809
1810 vec_foreach (fqm, tm->frame_queue_mains)
1811 processed += vlib_frame_queue_dequeue (vm, fqm);
1812
1813 /* No handoff queue work found? */
1814 if (processed)
1815 frame_queue_check_counter = 100;
1816 else
1817 frame_queue_check_counter--;
1818 }
Dave Barach5f2cfb22019-05-20 10:28:57 -04001819 if (PREDICT_FALSE (vec_len (vm->worker_thread_main_loop_callbacks)))
1820 clib_call_callbacks (vm->worker_thread_main_loop_callbacks, vm);
Damjan Marione9d52d52017-03-09 15:42:26 +01001821 }
1822
Ed Warnickecb9cada2015-12-08 15:45:58 -07001823 /* Process pre-input nodes. */
Damjan Marionceab7882018-01-19 20:56:12 +01001824 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1825 cpu_time_now = dispatch_node (vm, n,
1826 VLIB_NODE_TYPE_PRE_INPUT,
1827 VLIB_NODE_STATE_POLLING,
1828 /* frame */ 0,
1829 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001830
1831 /* Next process input nodes. */
1832 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1833 cpu_time_now = dispatch_node (vm, n,
1834 VLIB_NODE_TYPE_INPUT,
1835 VLIB_NODE_STATE_POLLING,
1836 /* frame */ 0,
1837 cpu_time_now);
1838
Damjan Marione9d52d52017-03-09 15:42:26 +01001839 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001840 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001841
Damjan Marion1033b492020-06-03 12:20:41 +02001842 /* handle local interruots */
1843 if (_vec_len (nm->pending_local_interrupts))
1844 cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now);
Dave Barachd47c5092018-01-19 13:09:20 -05001845
Damjan Marion1033b492020-06-03 12:20:41 +02001846 /* handle remote interruots */
1847 if (_vec_len (nm->pending_remote_interrupts))
1848 {
1849 vlib_node_interrupt_t *in;
1850
1851 /* at this point it is known that
1852 * vec_len (nm->pending_local_interrupts) is zero so we quickly swap
1853 * local and remote vector under the spinlock */
1854 clib_spinlock_lock (&nm->pending_interrupt_lock);
1855 in = nm->pending_local_interrupts;
1856 nm->pending_local_interrupts = nm->pending_remote_interrupts;
1857 nm->pending_remote_interrupts = in;
1858 clib_spinlock_unlock (&nm->pending_interrupt_lock);
1859
1860 cpu_time_now = dispatch_pending_interrupts (vm, nm, cpu_time_now);
1861 }
1862
Dave Barache3248982018-08-14 13:47:58 -04001863 /* Input nodes may have added work to the pending vector.
1864 Process pending vector until there is nothing left.
1865 All pending vectors will be processed from input -> output. */
1866 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1867 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1868 /* Reset pending vector for next iteration. */
1869 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001870
Damjan Marione9d52d52017-03-09 15:42:26 +01001871 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001872 {
Dave Barach900cbad2019-01-31 19:12:51 -05001873 /* *INDENT-OFF* */
1874 ELOG_TYPE_DECLARE (es) =
1875 {
1876 .format = "process tw start",
1877 .format_args = "",
1878 };
1879 ELOG_TYPE_DECLARE (ee) =
1880 {
1881 .format = "process tw end: %d",
1882 .format_args = "i4",
1883 };
1884 /* *INDENT-ON* */
1885
1886 struct
1887 {
1888 int nready_procs;
1889 } *ed;
1890
Damjan Marione9d52d52017-03-09 15:42:26 +01001891 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001892 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1893
Dave Barach900cbad2019-01-31 19:12:51 -05001894 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1895 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1896
Dave Barach5c20a012017-06-13 08:48:31 -04001897 nm->data_from_advancing_timing_wheel =
1898 TW (tw_timer_expire_timers_vec)
1899 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1900 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001901
Damjan Marione9d52d52017-03-09 15:42:26 +01001902 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001903
Dave Barach900cbad2019-01-31 19:12:51 -05001904 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1905 {
1906 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1907 ed->nready_procs =
1908 _vec_len (nm->data_from_advancing_timing_wheel);
1909 }
1910
Damjan Marione9d52d52017-03-09 15:42:26 +01001911 if (PREDICT_FALSE
1912 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001914 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001915
Damjan Marione9d52d52017-03-09 15:42:26 +01001916 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1917 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001918 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001919 u32 d = nm->data_from_advancing_timing_wheel[i];
1920 u32 di = vlib_timing_wheel_data_get_index (d);
1921
1922 if (vlib_timing_wheel_data_is_timed_event (d))
1923 {
1924 vlib_signal_timed_event_data_t *te =
1925 pool_elt_at_index (nm->signal_timed_event_data_pool,
1926 di);
1927 vlib_node_t *n =
1928 vlib_get_node (vm, te->process_node_index);
1929 vlib_process_t *p =
1930 vec_elt (nm->processes, n->runtime_index);
1931 void *data;
1932 data =
1933 vlib_process_signal_event_helper (nm, n, p,
1934 te->event_type_index,
1935 te->n_data_elts,
1936 te->n_data_elt_bytes);
1937 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001938 clib_memcpy_fast (data, te->inline_event_data,
1939 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001940 else
1941 {
Dave Barach178cf492018-11-13 16:34:13 -05001942 clib_memcpy_fast (data, te->event_data_as_vector,
1943 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001944 vec_free (te->event_data_as_vector);
1945 }
1946 pool_put (nm->signal_timed_event_data_pool, te);
1947 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001948 else
1949 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001950 cpu_time_now = clib_cpu_time_now ();
1951 cpu_time_now =
1952 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001954 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001955 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1956 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001957 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001958 vlib_increment_main_loop_counter (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001960 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001961 cpu_time_now = clib_cpu_time_now ();
Dave Barach000a0292020-02-17 17:07:12 -05001962 vm->loops_this_reporting_interval++;
1963 now = clib_time_now_internal (&vm->clib_time, cpu_time_now);
1964 /* Time to update loops_per_second? */
1965 if (PREDICT_FALSE (now >= vm->loop_interval_end))
1966 {
1967 /* Next sample ends in 20ms */
1968 if (vm->loop_interval_start)
1969 {
1970 f64 this_loops_per_second;
1971
1972 this_loops_per_second =
1973 ((f64) vm->loops_this_reporting_interval) / (now -
1974 vm->loop_interval_start);
1975
1976 vm->loops_per_second =
1977 vm->loops_per_second * vm->damping_constant +
1978 (1.0 - vm->damping_constant) * this_loops_per_second;
1979 if (vm->loops_per_second != 0.0)
1980 vm->seconds_per_loop = 1.0 / vm->loops_per_second;
1981 else
1982 vm->seconds_per_loop = 0.0;
1983 }
1984 /* New interval starts now, and ends in 20ms */
1985 vm->loop_interval_start = now;
1986 vm->loop_interval_end = now + 2e-4;
1987 vm->loops_this_reporting_interval = 0;
1988 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001989 }
1990}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001991
Damjan Marione9d52d52017-03-09 15:42:26 +01001992static void
1993vlib_main_loop (vlib_main_t * vm)
1994{
1995 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1996}
1997
1998void
1999vlib_worker_loop (vlib_main_t * vm)
2000{
2001 vlib_main_or_worker_loop (vm, /* is_main */ 0);
2002}
2003
Ed Warnickecb9cada2015-12-08 15:45:58 -07002004vlib_main_t vlib_global_main;
2005
2006static clib_error_t *
2007vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
2008{
2009 int turn_on_mem_trace = 0;
2010
2011 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2012 {
2013 if (unformat (input, "memory-trace"))
2014 turn_on_mem_trace = 1;
2015
2016 else if (unformat (input, "elog-events %d",
2017 &vm->elog_main.event_ring_size))
2018 ;
Dave Barach81481312017-05-16 09:08:14 -04002019 else if (unformat (input, "elog-post-mortem-dump"))
2020 vm->elog_post_mortem_dump = 1;
Dave Barachc74b43c2020-04-09 17:24:07 -04002021 else if (unformat (input, "buffer-alloc-success-rate %f",
2022 &vm->buffer_alloc_success_rate))
2023 {
2024 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2025 return clib_error_return
2026 (0, "Buffer fault injection not configured");
2027 }
2028 else if (unformat (input, "buffer-alloc-success-seed %u",
2029 &vm->buffer_alloc_success_seed))
2030 {
2031 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
2032 return clib_error_return
2033 (0, "Buffer fault injection not configured");
2034 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002035 else
2036 return unformat_parse_error (input);
2037 }
2038
2039 unformat_free (input);
2040
2041 /* Enable memory trace as early as possible. */
2042 if (turn_on_mem_trace)
2043 clib_mem_trace (1);
2044
2045 return 0;
2046}
2047
2048VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
2049
Dave Barach9b8ffd92016-07-08 08:13:45 -04002050static void
2051dummy_queue_signal_callback (vlib_main_t * vm)
2052{
2053}
Dave Barach16c75df2016-05-31 14:05:46 -04002054
Dave Barach1f806582018-06-14 09:18:21 -04002055#define foreach_weak_reference_stub \
2056_(vlib_map_stat_segment_init) \
2057_(vpe_api_init) \
2058_(vlibmemory_init) \
2059_(map_api_segment_init)
2060
2061#define _(name) \
2062clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
2063clib_error_t *name (vlib_main_t *vm) { return 0; }
2064foreach_weak_reference_stub;
2065#undef _
2066
Dave Barachb09f4d02019-07-15 16:00:03 -04002067void vl_api_set_elog_main (elog_main_t * m) __attribute__ ((weak));
2068void
2069vl_api_set_elog_main (elog_main_t * m)
2070{
2071 clib_warning ("STUB");
2072}
2073
2074int vl_api_set_elog_trace_api_messages (int enable) __attribute__ ((weak));
2075int
2076vl_api_set_elog_trace_api_messages (int enable)
2077{
2078 clib_warning ("STUB");
2079 return 0;
2080}
2081
2082int vl_api_get_elog_trace_api_messages (void) __attribute__ ((weak));
2083int
2084vl_api_get_elog_trace_api_messages (void)
2085{
2086 clib_warning ("STUB");
2087 return 0;
2088}
2089
Ed Warnickecb9cada2015-12-08 15:45:58 -07002090/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002091int
Eyal Barid334a6b2016-09-19 10:23:39 +03002092vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002093{
Eyal Barid334a6b2016-09-19 10:23:39 +03002094 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04002095 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002096
Dave Barach16c75df2016-05-31 14:05:46 -04002097 vm->queue_signal_callback = dummy_queue_signal_callback;
2098
Ed Warnickecb9cada2015-12-08 15:45:58 -07002099 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002100 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002101 vm->elog_main.event_ring_size = 128 << 10;
2102 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
2103 elog_enable_disable (&vm->elog_main, 1);
Dave Barachb09f4d02019-07-15 16:00:03 -04002104 vl_api_set_elog_main (&vm->elog_main);
2105 (void) vl_api_set_elog_trace_api_messages (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002106
2107 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002108 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109 vm->name = "VLIB";
2110
Damjan Marion68b4da62018-09-30 18:26:20 +02002111 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002112 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002113 clib_error_report (error);
2114 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002115 }
Damjan Marion49d66f12017-07-20 18:10:35 +02002116
Filip Tehlard2bbdef2019-02-22 05:05:53 -08002117 if ((error = vlib_map_stat_segment_init (vm)))
2118 {
2119 clib_error_report (error);
2120 goto done;
2121 }
2122
Damjan Marion49d66f12017-07-20 18:10:35 +02002123 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002124 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002125 clib_error_report (error);
2126 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002127 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002128
2129 if ((error = vlib_thread_init (vm)))
2130 {
2131 clib_error_report (error);
2132 goto done;
2133 }
2134
2135 /* Register static nodes so that init functions may use them. */
2136 vlib_register_all_static_nodes (vm);
2137
2138 /* Set seed for random number generator.
2139 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002140 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002141 vm->random_seed = clib_cpu_time_now ();
2142 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
2143
Ed Warnickecb9cada2015-12-08 15:45:58 -07002144 /* Initialize node graph. */
2145 if ((error = vlib_node_main_init (vm)))
2146 {
2147 /* Arrange for graph hook up error to not be fatal when debugging. */
2148 if (CLIB_DEBUG > 0)
2149 clib_error_report (error);
2150 else
2151 goto done;
2152 }
2153
Dave Barach1f806582018-06-14 09:18:21 -04002154 /* Direct call / weak reference, for vlib standalone use-cases */
2155 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002156 {
2157 clib_error_report (error);
2158 goto done;
2159 }
2160
Dave Barach1f806582018-06-14 09:18:21 -04002161 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002162 {
2163 clib_error_report (error);
2164 goto done;
2165 }
2166
Dave Barach1f806582018-06-14 09:18:21 -04002167 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002168 {
2169 clib_error_report (error);
2170 goto done;
2171 }
2172
Ole Troan964f93e2016-06-10 13:22:36 +02002173 /* See unix/main.c; most likely already set up */
2174 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002175 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02002176 if ((error = vlib_call_all_init_functions (vm)))
2177 goto done;
2178
Dave Barach5c20a012017-06-13 08:48:31 -04002179 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2180 CLIB_CACHE_LINE_BYTES);
2181
2182 vec_validate (nm->data_from_advancing_timing_wheel, 10);
2183 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2184
2185 /* Create the process timing wheel */
2186 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2187 0 /* no callback */ ,
2188 10e-6 /* timer period 10us */ ,
2189 ~0 /* max expirations per call */ );
2190
Dave Barach2877eee2017-12-15 12:22:57 -05002191 vec_validate (vm->pending_rpc_requests, 0);
2192 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04002193 vec_validate (vm->processing_rpc_requests, 0);
2194 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05002195
Dave Barachc74b43c2020-04-09 17:24:07 -04002196 /* Default params for the buffer allocator fault injector, if configured */
2197 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR > 0)
2198 {
2199 vm->buffer_alloc_success_seed = 0xdeaddabe;
2200 vm->buffer_alloc_success_rate = 0.80;
2201 }
2202
Dave Barachd1e17d02019-03-21 18:01:48 -04002203 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2204 goto done;
2205
Dave Barach000a0292020-02-17 17:07:12 -05002206 /*
2207 * Use exponential smoothing, with a half-life of 1 second
2208 * reported_rate(t) = reported_rate(t-1) * K + rate(t)*(1-K)
2209 *
2210 * Sample every 20ms, aka 50 samples per second
2211 * K = exp (-1.0/20.0);
2212 * K = 0.95
2213 */
2214 vm->damping_constant = exp (-1.0 / 20.0);
2215
Dave Barachc602b382019-06-03 19:48:22 -04002216 /* Sort per-thread init functions before we start threads */
2217 vlib_sort_init_exit_functions (&vm->worker_init_function_registrations);
2218
Dave Barachd1e17d02019-03-21 18:01:48 -04002219 /* Call all main loop enter functions. */
2220 {
2221 clib_error_t *sub_error;
2222 sub_error = vlib_call_all_main_loop_enter_functions (vm);
2223 if (sub_error)
2224 clib_error_report (sub_error);
2225 }
2226
Ed Warnickecb9cada2015-12-08 15:45:58 -07002227 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2228 {
2229 case VLIB_MAIN_LOOP_EXIT_NONE:
2230 vm->main_loop_exit_set = 1;
2231 break;
2232
2233 case VLIB_MAIN_LOOP_EXIT_CLI:
2234 goto done;
2235
2236 default:
2237 error = vm->main_loop_error;
2238 goto done;
2239 }
2240
Ed Warnickecb9cada2015-12-08 15:45:58 -07002241 vlib_main_loop (vm);
2242
Dave Barach9b8ffd92016-07-08 08:13:45 -04002243done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002244 /* Call all exit functions. */
2245 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002246 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002247 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2248 if (sub_error)
2249 clib_error_report (sub_error);
2250 }
2251
2252 if (error)
2253 clib_error_report (error);
2254
2255 return 0;
2256}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002257
Dave Barache5948fb2019-08-29 18:01:30 -04002258int
2259vlib_pcap_dispatch_trace_configure (vlib_pcap_dispatch_trace_args_t * a)
Dave Barach3ae28732018-11-16 17:19:00 -05002260{
Dave Barache5948fb2019-08-29 18:01:30 -04002261 vlib_main_t *vm = vlib_get_main ();
Dave Barach3ae28732018-11-16 17:19:00 -05002262 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05002263 vlib_trace_main_t *tm;
2264 vlib_trace_node_t *tn;
Dave Barach3ae28732018-11-16 17:19:00 -05002265
Dave Barache5948fb2019-08-29 18:01:30 -04002266 if (a->status)
2267 {
2268 if (vm->dispatch_pcap_enable)
2269 {
2270 int i;
2271 vlib_cli_output
2272 (vm, "pcap dispatch capture enabled: %d of %d pkts...",
2273 pm->n_packets_captured, pm->n_packets_to_capture);
2274 vlib_cli_output (vm, "capture to file %s", pm->file_name);
2275
2276 for (i = 0; i < vec_len (vm->dispatch_buffer_trace_nodes); i++)
2277 {
2278 vlib_cli_output (vm,
2279 "Buffer trace of %d pkts from %U enabled...",
2280 a->buffer_traces_to_capture,
2281 format_vlib_node_name, vm,
2282 vm->dispatch_buffer_trace_nodes[i]);
2283 }
2284 }
2285 else
2286 vlib_cli_output (vm, "pcap dispatch capture disabled");
2287 return 0;
2288 }
2289
2290 /* Consistency checks */
2291
2292 /* Enable w/ capture already enabled not allowed */
2293 if (vm->dispatch_pcap_enable && a->enable)
2294 return -7; /* VNET_API_ERROR_INVALID_VALUE */
2295
2296 /* Disable capture with capture already disabled, not interesting */
2297 if (vm->dispatch_pcap_enable == 0 && a->enable == 0)
2298 return -81; /* VNET_API_ERROR_VALUE_EXIST */
2299
2300 /* Change number of packets to capture while capturing */
Dave Barachb97641c2019-09-09 16:38:17 -04002301 if (vm->dispatch_pcap_enable && a->enable
Dave Barache5948fb2019-08-29 18:01:30 -04002302 && (pm->n_packets_to_capture != a->packets_to_capture))
2303 return -8; /* VNET_API_ERROR_INVALID_VALUE_2 */
2304
2305 /* Independent of enable/disable, to allow buffer trace multi nodes */
2306 if (a->buffer_trace_node_index != ~0)
2307 {
2308 /* *INDENT-OFF* */
2309 foreach_vlib_main ((
2310 {
2311 tm = &this_vlib_main->trace_main;
2312 tm->verbose = 0; /* not sure this ever did anything... */
2313 vec_validate (tm->nodes, a->buffer_trace_node_index);
2314 tn = tm->nodes + a->buffer_trace_node_index;
2315 tn->limit += a->buffer_traces_to_capture;
2316 tm->trace_enable = 1;
2317 }));
2318 /* *INDENT-ON* */
2319 vec_add1 (vm->dispatch_buffer_trace_nodes, a->buffer_trace_node_index);
2320 }
2321
2322 if (a->enable)
2323 {
2324 /* Clean up from previous run, if any */
2325 vec_free (pm->file_name);
2326 vec_free (pm->pcap_data);
2327 memset (pm, 0, sizeof (*pm));
2328
2329 vec_validate_aligned (vnet_trace_dummy, 2048, CLIB_CACHE_LINE_BYTES);
2330 if (pm->lock == 0)
2331 clib_spinlock_init (&(pm->lock));
2332
2333 if (a->filename == 0)
2334 a->filename = format (0, "/tmp/dispatch.pcap%c", 0);
2335
2336 pm->file_name = (char *) a->filename;
2337 pm->n_packets_captured = 0;
2338 pm->packet_type = PCAP_PACKET_TYPE_vpp;
Dave Barache5948fb2019-08-29 18:01:30 -04002339 pm->n_packets_to_capture = a->packets_to_capture;
Dave Barach349cd1a2019-10-18 14:44:05 -04002340 /* *INDENT-OFF* */
2341 foreach_vlib_main (({this_vlib_main->dispatch_pcap_enable = 1;}));
2342 /* *INDENT-ON* */
Dave Barache5948fb2019-08-29 18:01:30 -04002343 }
2344 else
2345 {
Dave Barach349cd1a2019-10-18 14:44:05 -04002346 /* *INDENT-OFF* */
2347 foreach_vlib_main (({this_vlib_main->dispatch_pcap_enable = 0;}));
2348 /* *INDENT-ON* */
Dave Barache5948fb2019-08-29 18:01:30 -04002349 vec_reset_length (vm->dispatch_buffer_trace_nodes);
2350 if (pm->n_packets_captured)
2351 {
2352 clib_error_t *error;
2353 pm->n_packets_to_capture = pm->n_packets_captured;
2354 vlib_cli_output (vm, "Write %d packets to %s, and stop capture...",
2355 pm->n_packets_captured, pm->file_name);
2356 error = pcap_write (pm);
Andrew Yourtchenko4da15062019-09-11 14:14:43 +00002357 if (pm->flags & PCAP_MAIN_INIT_DONE)
Dave Barache5948fb2019-08-29 18:01:30 -04002358 pcap_close (pm);
2359 /* Report I/O errors... */
2360 if (error)
2361 {
2362 clib_error_report (error);
2363 return -11; /* VNET_API_ERROR_SYSCALL_ERROR_1 */
2364 }
2365 return 0;
2366 }
2367 else
2368 return -6; /* VNET_API_ERROR_NO_SUCH_ENTRY */
2369 }
2370
2371 return 0;
2372}
2373
2374static clib_error_t *
2375dispatch_trace_command_fn (vlib_main_t * vm,
2376 unformat_input_t * input, vlib_cli_command_t * cmd)
2377{
2378 unformat_input_t _line_input, *line_input = &_line_input;
2379 vlib_pcap_dispatch_trace_args_t _a, *a = &_a;
2380 u8 *filename = 0;
2381 u32 max = 1000;
2382 int rv;
2383 int enable = 0;
2384 int status = 0;
2385 u32 node_index = ~0, buffer_traces_to_capture = 100;
2386
Dave Barach3ae28732018-11-16 17:19:00 -05002387 /* Get a line of input. */
2388 if (!unformat_user (input, unformat_line_input, line_input))
2389 return 0;
2390
2391 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2392 {
Dave Barache5948fb2019-08-29 18:01:30 -04002393 if (unformat (line_input, "on %=", &enable, 1))
2394 ;
2395 else if (unformat (line_input, "enable %=", &enable, 1))
2396 ;
2397 else if (unformat (line_input, "off %=", &enable, 0))
2398 ;
2399 else if (unformat (line_input, "disable %=", &enable, 0))
2400 ;
Dave Barach3ae28732018-11-16 17:19:00 -05002401 else if (unformat (line_input, "max %d", &max))
Dave Barache5948fb2019-08-29 18:01:30 -04002402 ;
2403 else if (unformat (line_input, "packets-to-capture %d", &max))
2404 ;
2405 else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
2406 &filename))
2407 ;
2408 else if (unformat (line_input, "status %=", &status, 1))
2409 ;
Dave Barach1201a802018-11-20 12:08:39 -05002410 else if (unformat (line_input, "buffer-trace %U %d",
Dave Barache5948fb2019-08-29 18:01:30 -04002411 unformat_vlib_node, vm, &node_index,
2412 &buffer_traces_to_capture))
2413 ;
Dave Barach3ae28732018-11-16 17:19:00 -05002414 else
2415 {
Dave Barache5948fb2019-08-29 18:01:30 -04002416 return clib_error_return (0, "unknown input `%U'",
2417 format_unformat_error, line_input);
Dave Barach3ae28732018-11-16 17:19:00 -05002418 }
2419 }
Dave Barache5948fb2019-08-29 18:01:30 -04002420
Dave Barach3ae28732018-11-16 17:19:00 -05002421 unformat_free (line_input);
2422
Dave Barache5948fb2019-08-29 18:01:30 -04002423 /* no need for memset (a, 0, sizeof (*a)), set all fields here. */
2424 a->filename = filename;
2425 a->enable = enable;
2426 a->status = status;
2427 a->packets_to_capture = max;
2428 a->buffer_trace_node_index = node_index;
2429 a->buffer_traces_to_capture = buffer_traces_to_capture;
2430
2431 rv = vlib_pcap_dispatch_trace_configure (a);
2432
2433 switch (rv)
Dave Barach3ae28732018-11-16 17:19:00 -05002434 {
Dave Barache5948fb2019-08-29 18:01:30 -04002435 case 0:
2436 break;
Dave Barach3ae28732018-11-16 17:19:00 -05002437
Dave Barache5948fb2019-08-29 18:01:30 -04002438 case -7:
2439 return clib_error_return (0, "dispatch trace already enabled...");
Dave Barach3ae28732018-11-16 17:19:00 -05002440
Dave Barache5948fb2019-08-29 18:01:30 -04002441 case -81:
2442 return clib_error_return (0, "dispatch trace already disabled...");
Dave Barach3ae28732018-11-16 17:19:00 -05002443
Dave Barache5948fb2019-08-29 18:01:30 -04002444 case -8:
2445 return clib_error_return
2446 (0, "can't change number of records to capture while tracing...");
2447
2448 case -11:
2449 return clib_error_return (0, "I/O writing trace capture...");
2450
2451 case -6:
2452 return clib_error_return (0, "No packets captured...");
2453
2454 default:
2455 vlib_cli_output (vm, "WARNING: trace configure returned %d", rv);
2456 break;
Dave Barach3ae28732018-11-16 17:19:00 -05002457 }
Dave Barache5948fb2019-08-29 18:01:30 -04002458 return 0;
Dave Barach3ae28732018-11-16 17:19:00 -05002459}
2460
2461/*?
2462 * This command is used to start or stop pcap dispatch trace capture, or show
2463 * the capture status.
2464 *
2465 * This command has the following optional parameters:
2466 *
2467 * - <b>on|off</b> - Used to start or stop capture.
2468 *
2469 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2470 * of packets have been received, buffer is flushed to file. Once another
2471 * '<em>nn</em>' number of packets have been received, buffer is flushed
2472 * to file, overwriting previous write. If not entered, value defaults
2473 * to 100. Can only be updated if packet capture is off.
2474 *
2475 * - <b>file <name></b> - Used to specify the output filename. The file will
2476 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2477 * supported. Directory should not be entered. If file already exists, file
2478 * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2479 * will be used. Can only be updated if packet capture is off.
2480 *
2481 * - <b>status</b> - Displays the current status and configured attributes
2482 * associated with a packet capture. If packet capture is in progress,
2483 * '<em>status</em>' also will return the number of packets currently in
2484 * the local buffer. All additional attributes entered on command line
2485 * with '<em>status</em>' will be ignored and not applied.
2486 *
2487 * @cliexpar
2488 * Example of how to display the status of capture when off:
2489 * @cliexstart{pcap dispatch trace status}
2490 * max is 100, for any interface to file /tmp/vpe.pcap
2491 * pcap dispatch capture is off...
2492 * @cliexend
2493 * Example of how to start a dispatch trace capture:
2494 * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
Dave Barach1201a802018-11-20 12:08:39 -05002495 * pcap dispatch capture on...
2496 * @cliexend
2497 * Example of how to start a dispatch trace capture with buffer tracing
2498 * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2499 * pcap dispatch capture on...
Dave Barach3ae28732018-11-16 17:19:00 -05002500 * @cliexend
2501 * Example of how to display the status of a tx packet capture in progress:
2502 * @cliexstart{pcap tx trace status}
2503 * max is 35, dispatch trace to file /tmp/vppTest.pcap
2504 * pcap tx capture is on: 20 of 35 pkts...
2505 * @cliexend
2506 * Example of how to stop a tx packet capture:
2507 * @cliexstart{vppctl pcap dispatch trace off}
2508 * captured 21 pkts...
2509 * saved to /tmp/dispatchTrace.pcap...
2510 * @cliexend
2511?*/
2512/* *INDENT-OFF* */
2513VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2514 .path = "pcap dispatch trace",
2515 .short_help =
Dave Barach1201a802018-11-20 12:08:39 -05002516 "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2517 " [buffer-trace <input-node-name> <nn>]",
Dave Barache5948fb2019-08-29 18:01:30 -04002518 .function = dispatch_trace_command_fn,
Dave Barach3ae28732018-11-16 17:19:00 -05002519};
2520/* *INDENT-ON* */
2521
Dave Barach9b8ffd92016-07-08 08:13:45 -04002522/*
2523 * fd.io coding-style-patch-verification: ON
2524 *
2525 * Local Variables:
2526 * eval: (c-set-style "gnu")
2527 * End:
2528 */