blob: 8f87df997e57e4b06ca25d316859b77352c87272 [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>
Damjan Marion8973b072022-03-01 15:51:18 +010044#include <vlib/stats/stats.h>
Dave Barach5c20a012017-06-13 08:48:31 -040045#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
Damjan Marion04a7f052017-07-10 15:06:17 +020047#include <vlib/unix/unix.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
Ed Warnickecb9cada2015-12-08 15:45:58 -070049#define VLIB_FRAME_MAGIC (0xabadc0ed)
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
51always_inline u32 *
52vlib_frame_find_magic (vlib_frame_t * f, vlib_node_t * node)
53{
Damjan Marionb32bd702021-12-23 17:05:02 +010054 return (void *) f + node->magic_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055}
56
Andreas Schultz58b2eb12019-07-15 15:40:56 +020057static vlib_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -040058vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
59 u32 frame_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -070060{
Dave Barach9b8ffd92016-07-08 08:13:45 -040061 vlib_node_main_t *nm = &vm->node_main;
62 vlib_frame_size_t *fs;
63 vlib_node_t *to_node;
64 vlib_frame_t *f;
Damjan Marionb32bd702021-12-23 17:05:02 +010065 u32 l, n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
Dave Baracha8f4ebd2021-02-08 07:56:22 -050067 ASSERT (vm == vlib_get_main ());
68
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 to_node = vlib_get_node (vm, to_node_index);
70
Damjan Marionb32bd702021-12-23 17:05:02 +010071 vec_validate (nm->frame_sizes, to_node->frame_size_index);
72 fs = vec_elt_at_index (nm->frame_sizes, to_node->frame_size_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
Damjan Marionb32bd702021-12-23 17:05:02 +010074 if (fs->frame_size == 0)
75 fs->frame_size = to_node->frame_size;
76 else
77 ASSERT (fs->frame_size == to_node->frame_size);
78
79 n = fs->frame_size;
Andreas Schultz58b2eb12019-07-15 15:40:56 +020080 if ((l = vec_len (fs->free_frames)) > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 {
82 /* Allocate from end of free list. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +020083 f = fs->free_frames[l - 1];
Damjan Marion8bea5892022-04-04 22:40:45 +020084 vec_set_len (fs->free_frames, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 }
86 else
87 {
Damjan Marionb32bd702021-12-23 17:05:02 +010088 f = clib_mem_alloc_aligned_no_fail (n, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 }
90
91 /* Poison frame when debugging. */
92 if (CLIB_DEBUG > 0)
Damjan Marionb32bd702021-12-23 17:05:02 +010093 clib_memset_u8 (f, 0xfe, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
95 /* Insert magic number. */
96 {
Dave Barach9b8ffd92016-07-08 08:13:45 -040097 u32 *magic;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 magic = vlib_frame_find_magic (f, to_node);
100 *magic = VLIB_FRAME_MAGIC;
101 }
102
Damjan Marion633b6fd2018-09-14 14:38:53 +0200103 f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104 f->n_vectors = 0;
Damjan Marionb32bd702021-12-23 17:05:02 +0100105 f->scalar_offset = to_node->scalar_offset;
106 f->vector_offset = to_node->vector_offset;
107 f->aux_offset = to_node->aux_offset;
Damjan Mariona3d59862018-11-10 10:23:00 +0100108 f->flags = 0;
Dmitry Valter9f5b3692022-09-05 15:30:18 +0000109 f->frame_size_index = to_node->frame_size_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 fs->n_alloc_frames += 1;
112
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200113 return f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114}
115
116/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
117 Returns frame index. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200118static vlib_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400119vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
120 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400122 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
124 from_node = vlib_get_node (vm, from_node_runtime->node_index);
125 ASSERT (to_next_index < vec_len (from_node->next_nodes));
126
Dave Barach9b8ffd92016-07-08 08:13:45 -0400127 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 /* frame_flags */ 0);
129}
130
131vlib_frame_t *
132vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
133{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200134 vlib_frame_t *f = vlib_frame_alloc_to_node (vm, to_node_index,
135 /* frame_flags */
136 VLIB_FRAME_FREE_AFTER_DISPATCH);
137 return vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138}
139
Dave Barachc74b43c2020-04-09 17:24:07 -0400140static inline void
141vlib_validate_frame_indices (vlib_frame_t * f)
142{
143 if (CLIB_DEBUG > 0)
144 {
145 int i;
146 u32 *from = vlib_frame_vector_args (f);
147
148 /* Check for bad buffer index values */
149 for (i = 0; i < f->n_vectors; i++)
150 {
151 if (from[i] == 0)
152 {
153 clib_warning ("BUG: buffer index 0 at index %d", i);
154 ASSERT (0);
155 }
156 else if (from[i] == 0xfefefefe)
157 {
158 clib_warning ("BUG: frame poison pattern at index %d", i);
159 ASSERT (0);
160 }
161 }
162 }
163}
164
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165void
166vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400168 vlib_pending_frame_t *p;
169 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 if (f->n_vectors == 0)
172 return;
173
Dave Baracha8f4ebd2021-02-08 07:56:22 -0500174 ASSERT (vm == vlib_get_main ());
175
Dave Barachc74b43c2020-04-09 17:24:07 -0400176 vlib_validate_frame_indices (f);
177
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 to_node = vlib_get_node (vm, to_node_index);
179
180 vec_add2 (vm->node_main.pending_frames, p, 1);
181
Damjan Marion633b6fd2018-09-14 14:38:53 +0200182 f->frame_flags |= VLIB_FRAME_PENDING;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200183 p->frame = vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 p->node_runtime_index = to_node->runtime_index;
185 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
186}
187
188/* Free given frame. */
189void
Dmitry Valter9f5b3692022-09-05 15:30:18 +0000190vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192 vlib_node_main_t *nm = &vm->node_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193 vlib_frame_size_t *fs;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194
Dave Baracha8f4ebd2021-02-08 07:56:22 -0500195 ASSERT (vm == vlib_get_main ());
Damjan Marion633b6fd2018-09-14 14:38:53 +0200196 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Dmitry Valter9f5b3692022-09-05 15:30:18 +0000198 fs = vec_elt_at_index (nm->frame_sizes, f->frame_size_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Damjan Marion633b6fd2018-09-14 14:38:53 +0200200 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
202 /* No next frames may point to freed frame. */
203 if (CLIB_DEBUG > 0)
204 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400205 vlib_next_frame_t *nf;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200206 vec_foreach (nf, vm->node_main.next_frames) ASSERT (nf->frame != f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 }
208
Damjan Marion296988d2019-02-21 20:24:54 +0100209 f->frame_flags &= ~(VLIB_FRAME_IS_ALLOCATED | VLIB_FRAME_NO_APPEND);
Stanislav Zaikin3791a032022-03-31 14:16:28 +0200210 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200212 vec_add1 (fs->free_frames, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 ASSERT (fs->n_alloc_frames > 0);
214 fs->n_alloc_frames -= 1;
215}
216
217static clib_error_t *
218show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400221 vlib_frame_size_t *fs;
222
Damjan Marionb32bd702021-12-23 17:05:02 +0100223 vlib_cli_output (vm, "%=8s%=6s%=12s%=12s", "Thread", "Size", "# Alloc",
224 "# Free");
225 foreach_vlib_main ()
226 {
227 vlib_node_main_t *nm = &this_vlib_main->node_main;
228 vec_foreach (fs, nm->frame_sizes)
229 {
230 u32 n_alloc = fs->n_alloc_frames;
231 u32 n_free = vec_len (fs->free_frames);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
Damjan Marionb32bd702021-12-23 17:05:02 +0100233 if (n_alloc + n_free > 0)
234 vlib_cli_output (vm, "%=8d%=6d%=12d%=12d",
235 this_vlib_main->thread_index, fs->frame_size,
236 n_alloc, n_free);
237 }
238 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
240 return 0;
241}
242
243VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
244 .path = "show vlib frame-allocation",
245 .short_help = "Show node dispatch frame statistics",
246 .function = show_frame_stats,
247};
248
249/* Change ownership of enqueue rights to given next node. */
250static void
251vlib_next_frame_change_ownership (vlib_main_t * vm,
252 vlib_node_runtime_t * node_runtime,
253 u32 next_index)
254{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255 vlib_node_main_t *nm = &vm->node_main;
256 vlib_next_frame_t *next_frame;
257 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
259 node = vec_elt (nm->nodes, node_runtime->node_index);
260
261 /* Only internal & input nodes are allowed to call other nodes. */
262 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
263 || node->type == VLIB_NODE_TYPE_INPUT
264 || node->type == VLIB_NODE_TYPE_PROCESS);
265
266 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
267
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268 next_frame =
269 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
271
272 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
273 {
274 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 vlib_next_frame_t tmp;
277
278 owner_next_frame =
279 vlib_node_get_next_frame (vm,
280 next_node->owner_node_index,
281 next_node->owner_next_index);
282
283 /* Swap target next frame with owner's. */
284 tmp = owner_next_frame[0];
285 owner_next_frame[0] = next_frame[0];
286 next_frame[0] = tmp;
287
288 /*
289 * If next_frame is already pending, we have to track down
290 * all pending frames and fix their next_frame_index fields.
291 */
292 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 {
294 vlib_pending_frame_t *p;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200295 if (next_frame->frame != NULL)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400296 {
297 vec_foreach (p, nm->pending_frames)
298 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200299 if (p->frame == next_frame->frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400300 {
301 p->next_frame_index =
302 next_frame - vm->node_main.next_frames;
303 }
304 }
305 }
306 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 }
308 else
309 {
310 /* No previous owner. Take ownership. */
311 next_frame->flags |= VLIB_FRAME_OWNER;
312 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 /* Record new owner. */
315 next_node->owner_node_index = node->index;
316 next_node->owner_next_index = next_index;
317
318 /* Now we should be owner. */
319 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
322/* Make sure that magic number is still there.
323 Otherwise, it is likely that caller has overrun frame arguments. */
324always_inline void
325validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
329 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
331}
332
333vlib_frame_t *
334vlib_get_next_frame_internal (vlib_main_t * vm,
335 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 vlib_frame_t *f;
339 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 u32 n_used;
341
342 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
343
344 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400345 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 vlib_next_frame_change_ownership (vm, node, next_index);
347
348 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200351 nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
353 }
354
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200355 f = nf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356
357 /* Has frame been removed from pending vector (e.g. finished dispatching)?
358 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200359 if ((nf->flags & VLIB_FRAME_PENDING)
360 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 {
362 nf->flags &= ~VLIB_FRAME_PENDING;
363 f->n_vectors = 0;
Damjan Marion9162c2d2018-11-20 09:55:10 +0100364 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 }
366
Damjan Marion296988d2019-02-21 20:24:54 +0100367 /* Allocate new frame if current one is marked as no-append or
368 it is already full. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 n_used = f->n_vectors;
Damjan Marion296988d2019-02-21 20:24:54 +0100370 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
371 (f->frame_flags & VLIB_FRAME_NO_APPEND))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 {
373 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400374 two redundant frames from node -> next node. */
375 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200377 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200378 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 }
380
381 /* Allocate new frame to replace full one. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200382 f = nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 n_used = f->n_vectors;
384 }
385
386 /* Should have free vectors in frame now. */
387 ASSERT (n_used < VLIB_FRAME_SIZE);
388
389 if (CLIB_DEBUG > 0)
390 {
391 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400392 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 }
394
395 return f;
396}
397
398static void
399vlib_put_next_frame_validate (vlib_main_t * vm,
400 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400401 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 vlib_node_main_t *nm = &vm->node_main;
404 vlib_next_frame_t *nf;
405 vlib_frame_t *f;
406 vlib_node_runtime_t *next_rt;
407 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 u32 n_before, n_after;
409
410 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200411 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
413 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
Dave Barachc74b43c2020-04-09 17:24:07 -0400414
415 vlib_validate_frame_indices (f);
416
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 n_after = VLIB_FRAME_SIZE - n_vectors_left;
418 n_before = f->n_vectors;
419
420 ASSERT (n_after >= n_before);
421
422 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
423 nf->node_runtime_index);
424 next_node = vlib_get_node (vm, next_rt->node_index);
425 if (n_after > 0 && next_node->validate_frame)
426 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 if (msg)
429 {
430 clib_warning ("%v", msg);
431 ASSERT (0);
432 }
433 vec_free (msg);
434 }
435}
436
437void
438vlib_put_next_frame (vlib_main_t * vm,
439 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 vlib_node_main_t *nm = &vm->node_main;
443 vlib_next_frame_t *nf;
444 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 u32 n_vectors_in_frame;
446
Damjan Marion910d3692019-01-21 11:48:34 +0100447 if (CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
449
450 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200451 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
453 /* Make sure that magic number is still there. Otherwise, caller
454 has overrun frame meta data. */
455 if (CLIB_DEBUG > 0)
456 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400457 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 validate_frame_magic (vm, f, node, next_index);
459 }
460
461 /* Convert # of vectors left -> number of vectors there. */
462 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
463 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
464
465 f->n_vectors = n_vectors_in_frame;
466
467 /* If vectors were added to frame, add to pending vector. */
468 if (PREDICT_TRUE (n_vectors_in_frame > 0))
469 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 r->cached_next_index = next_index;
474
Damjan Marion633b6fd2018-09-14 14:38:53 +0200475 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400476 {
477 __attribute__ ((unused)) vlib_node_t *node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
Dave Barach9b8ffd92016-07-08 08:13:45 -0400479 node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
Dave Barach9b8ffd92016-07-08 08:13:45 -0400481 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200483 p->frame = nf->frame;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484 p->node_runtime_index = nf->node_runtime_index;
485 p->next_frame_index = nf - nm->next_frames;
486 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200487 f->frame_flags |= VLIB_FRAME_PENDING;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400488 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489
490 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491 nf->flags |=
492 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
493 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
495 v0 = nf->vectors_since_last_overflow;
496 v1 = v0 + n_vectors_in_frame;
497 nf->vectors_since_last_overflow = v1;
498 if (PREDICT_FALSE (v1 < v0))
499 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
502 }
503 }
504}
505
506/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800507void
508vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
509 uword n_calls, uword n_vectors,
510 uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
513 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
514 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
515 n->stats_total.max_clock = r->max_clock;
516 n->stats_total.max_clock_n = r->max_clock_n;
517
518 r->calls_since_last_overflow = 0;
519 r->vectors_since_last_overflow = 0;
520 r->clocks_since_last_overflow = 0;
521}
522
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800523void
524vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
525 uword n_calls, uword n_vectors, uword n_clocks)
526{
527 vlib_node_t *n = vlib_get_node (vm, r->node_index);
528 vlib_node_runtime_sync_stats_node (n, r, n_calls, n_vectors, n_clocks);
529}
530
Dave Barach9b8ffd92016-07-08 08:13:45 -0400531always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532vlib_process_sync_stats (vlib_main_t * vm,
533 vlib_process_t * p,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000534 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536 vlib_node_runtime_t *rt = &p->node_runtime;
537 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000538 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 n->stats_total.suspends += p->n_suspends;
540 p->n_suspends = 0;
541}
542
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543void
544vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
548 if (n->type == VLIB_NODE_TYPE_PROCESS)
549 {
550 /* Nothing to do for PROCESS nodes except in main thread */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100551 if (vm != vlib_get_first_main ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400552 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553
Dave Barach9b8ffd92016-07-08 08:13:45 -0400554 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 n->stats_total.suspends += p->n_suspends;
556 p->n_suspends = 0;
557 rt = &p->node_runtime;
558 }
559 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560 rt =
561 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
562 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000564 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565
566 /* Sync up runtime next frame vector counters with main node structure. */
567 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400568 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 uword i;
570 for (i = 0; i < rt->n_next_nodes; i++)
571 {
572 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 vec_elt (n->n_vectors_by_next_node, i) +=
574 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 nf->vectors_since_last_overflow = 0;
576 }
577 }
578}
579
580always_inline u32
581vlib_node_runtime_update_stats (vlib_main_t * vm,
582 vlib_node_runtime_t * node,
583 uword n_calls,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000584 uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585{
586 u32 ca0, ca1, v0, v1, cl0, cl1, r;
587
588 cl0 = cl1 = node->clocks_since_last_overflow;
589 ca0 = ca1 = node->calls_since_last_overflow;
590 v0 = v1 = node->vectors_since_last_overflow;
591
592 ca1 = ca0 + n_calls;
593 v1 = v0 + n_vectors;
594 cl1 = cl0 + n_clocks;
595
596 node->calls_since_last_overflow = ca1;
597 node->clocks_since_last_overflow = cl1;
598 node->vectors_since_last_overflow = v1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400599
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400601 node->max_clock_n : n_vectors;
602 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
605
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000606 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 {
608 node->calls_since_last_overflow = ca0;
609 node->clocks_since_last_overflow = cl0;
610 node->vectors_since_last_overflow = v0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400611
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000612 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 }
614
615 return r;
616}
617
Dave Barach17e5d802019-05-01 11:30:13 -0400618always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619vlib_process_update_stats (vlib_main_t * vm,
620 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500621 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622{
623 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000624 n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625}
626
627static clib_error_t *
628vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400629 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100631 elog_reset_buffer (&vlib_global_main.elog_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 return 0;
633}
634
635VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400636 .path = "event-logger clear",
637 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 .function = vlib_cli_elog_clear,
639};
640
641#ifdef CLIB_UNIX
642static clib_error_t *
643elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400644 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100646 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 char *file, *chroot_file;
648 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649
Dave Barach9b8ffd92016-07-08 08:13:45 -0400650 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 {
652 vlib_cli_output (vm, "expected file name, got `%U'",
653 format_unformat_error, input);
654 return 0;
655 }
656
657 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Matus Fabian7f163b62024-07-22 09:56:01 +0200658 if (strstr (file, "..") || strchr (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 {
660 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
661 return 0;
662 }
663
664 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
665
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
668 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669 elog_n_events_in_buffer (em),
670 elog_buffer_capacity (em), chroot_file);
671
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400673 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 vec_free (chroot_file);
676 return error;
677}
678
Dave Barach81481312017-05-16 09:08:14 -0400679void
Dave Barach27d978c2020-11-03 09:59:06 -0500680vlib_post_mortem_dump (void)
Dave Barach81481312017-05-16 09:08:14 -0400681{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100682 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach27d978c2020-11-03 09:59:06 -0500683
Damjan Marionfd8deb42021-03-06 12:26:28 +0100684 for (int i = 0; i < vec_len (vgm->post_mortem_callbacks); i++)
685 (vgm->post_mortem_callbacks[i]) ();
Dave Barach81481312017-05-16 09:08:14 -0400686}
687
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400689 .path = "event-logger save",
690 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 .function = elog_save_buffer,
692};
693
Dave Barache5389bb2016-03-28 17:12:19 -0400694static clib_error_t *
695elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400696 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400697{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100698 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400699
700 em->n_total_events_disable_limit = em->n_total_events;
701
702 vlib_cli_output (vm, "Stopped the event logger...");
703 return 0;
704}
705
706VLIB_CLI_COMMAND (elog_stop_cli, static) = {
707 .path = "event-logger stop",
708 .short_help = "Stop the event-logger",
709 .function = elog_stop,
710};
711
712static clib_error_t *
713elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400715{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100716 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400717
718 em->n_total_events_disable_limit = ~0;
719
720 vlib_cli_output (vm, "Restarted the event logger...");
721 return 0;
722}
723
724VLIB_CLI_COMMAND (elog_restart_cli, static) = {
725 .path = "event-logger restart",
726 .short_help = "Restart the event-logger",
727 .function = elog_restart,
728};
729
730static clib_error_t *
Dave Barachbc867c32020-11-25 10:07:09 -0500731elog_resize_command_fn (vlib_main_t * vm,
732 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400733{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100734 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400735 u32 tmp;
736
737 /* Stop the parade */
Damjan Marionf553a2c2021-03-26 13:45:37 +0100738 elog_reset_buffer (em);
Dave Barache5389bb2016-03-28 17:12:19 -0400739
740 if (unformat (input, "%d", &tmp))
741 {
742 elog_alloc (em, tmp);
743 em->n_total_events_disable_limit = ~0;
744 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 else
Dave Barache5389bb2016-03-28 17:12:19 -0400746 return clib_error_return (0, "Must specify how many events in the ring");
747
748 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
749 return 0;
750}
751
752VLIB_CLI_COMMAND (elog_resize_cli, static) = {
753 .path = "event-logger resize",
754 .short_help = "event-logger resize <nnn>",
Dave Barachbc867c32020-11-25 10:07:09 -0500755 .function = elog_resize_command_fn,
Dave Barache5389bb2016-03-28 17:12:19 -0400756};
757
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758#endif /* CLIB_UNIX */
759
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760static void
761elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100763 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400764 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765 f64 dt;
766
767 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 * vm->clib_time.seconds_per_clock;
770
771 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
773 em->event_ring_size,
774 em->n_total_events < em->n_total_events_disable_limit ?
775 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 {
778 vlib_cli_output (vm, "%18.9f: %U",
779 e->time + dt, format_elog_event, em, e);
780 n_events_to_show--;
781 if (n_events_to_show == 0)
782 break;
783 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400785
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786}
787
788static clib_error_t *
789elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400790 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791{
792 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400793 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794
795 n_events_to_show = 250;
796 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
797 {
798 if (unformat (input, "%d", &n_events_to_show))
799 ;
800 else if (unformat (input, "all"))
801 n_events_to_show = ~0;
802 else
803 return unformat_parse_error (input);
804 }
805 elog_show_buffer_internal (vm, n_events_to_show);
806 return error;
807}
808
809VLIB_CLI_COMMAND (elog_show_cli, static) = {
810 .path = "show event-logger",
811 .short_help = "Show event logger info",
812 .function = elog_show_buffer,
813};
814
Dave Barach9b8ffd92016-07-08 08:13:45 -0400815void
816vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819}
820
Dave Barachfb6e59d2016-03-26 18:45:42 -0400821static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822vlib_elog_main_loop_event (vlib_main_t * vm,
823 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100826 vlib_main_t *evm = vlib_get_first_main ();
Damjan Marionf553a2c2021-03-26 13:45:37 +0100827 elog_main_t *em = vlib_get_elog_main ();
Dave Barach900cbad2019-01-31 19:12:51 -0500828 int enabled = evm->elog_trace_graph_dispatch |
829 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830
Dave Barach900cbad2019-01-31 19:12:51 -0500831 if (PREDICT_FALSE (enabled && n_vectors))
832 {
833 if (PREDICT_FALSE (!elog_is_enabled (em)))
834 {
835 evm->elog_trace_graph_dispatch = 0;
836 evm->elog_trace_graph_circuit = 0;
837 return;
838 }
839 if (PREDICT_TRUE
840 (evm->elog_trace_graph_dispatch ||
841 (evm->elog_trace_graph_circuit &&
842 node_index == evm->elog_trace_graph_circuit_node_index)))
843 {
844 elog_track (em,
845 /* event type */
846 vec_elt_at_index (is_return
847 ? evm->node_return_elog_event_types
848 : evm->node_call_elog_event_types,
849 node_index),
850 /* track */
851 (vm->thread_index ?
852 &vlib_worker_threads[vm->thread_index].elog_track
853 : &em->default_track),
854 /* data to log */ n_vectors);
855 }
856 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857}
858
Dave Barach7bee7732017-10-18 18:48:11 -0400859static inline void
860add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
861{
862#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100863 if (PREDICT_FALSE (b->trajectory_nb >= VLIB_BUFFER_TRACE_TRAJECTORY_MAX))
864 return;
865 b->trajectory_trace[b->trajectory_nb] = node_index;
866 b->trajectory_nb++;
Dave Barach7bee7732017-10-18 18:48:11 -0400867#endif
868}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869
Damjan Marion9a332e12017-03-28 15:11:20 +0200870static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871dispatch_node (vlib_main_t * vm,
872 vlib_node_runtime_t * node,
873 vlib_node_type_t type,
874 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400875 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876{
877 uword n, v;
878 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400879 vlib_node_main_t *nm = &vm->node_main;
880 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881
882 if (CLIB_DEBUG > 0)
883 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400884 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885 ASSERT (n->type == type);
886 }
887
888 /* Only non-internal nodes may be disabled. */
889 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
890 {
891 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
892 return last_time_stamp;
893 }
894
895 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
896 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
897 {
898 u32 c = node->input_main_loops_per_call;
899 /* Only call node when count reaches zero. */
900 if (c)
901 {
902 node->input_main_loops_per_call = c - 1;
903 return last_time_stamp;
904 }
905 }
906
907 /* Speculatively prefetch next frames. */
908 if (node->n_next_nodes > 0)
909 {
910 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
911 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
912 }
913
914 vm->cpu_time_last_node_dispatch = last_time_stamp;
915
Dave Barach900cbad2019-01-31 19:12:51 -0500916 vlib_elog_main_loop_event (vm, node->node_index,
917 last_time_stamp, frame ? frame->n_vectors : 0,
918 /* is_after */ 0);
919
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000920 vlib_node_runtime_perf_counter (vm, node, frame, 0, last_time_stamp,
921 VLIB_NODE_RUNTIME_PERF_BEFORE);
Dave Barach900cbad2019-01-31 19:12:51 -0500922
923 /*
924 * Turn this on if you run into
925 * "bad monkey" contexts, and you want to know exactly
926 * which nodes they've visited... See ixge.c...
927 */
928 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 {
Dave Barach900cbad2019-01-31 19:12:51 -0500930 int i;
931 u32 *from;
932 from = vlib_frame_vector_args (frame);
933 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400934 {
Dave Barach900cbad2019-01-31 19:12:51 -0500935 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
936 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937 }
Damjan Marion8b60fb02020-11-27 20:15:17 +0100938 if (PREDICT_TRUE (vm->dispatch_wrapper_fn == 0))
939 n = node->function (vm, node, frame);
940 else
941 n = vm->dispatch_wrapper_fn (vm, node, frame);
Dave Barach900cbad2019-01-31 19:12:51 -0500942 }
943 else
944 {
Damjan Marion8b60fb02020-11-27 20:15:17 +0100945 if (PREDICT_TRUE (vm->dispatch_wrapper_fn == 0))
946 n = node->function (vm, node, frame);
947 else
948 n = vm->dispatch_wrapper_fn (vm, node, frame);
Dave Barach900cbad2019-01-31 19:12:51 -0500949 }
950
951 t = clib_cpu_time_now ();
952
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000953 vlib_node_runtime_perf_counter (vm, node, frame, n, t,
954 VLIB_NODE_RUNTIME_PERF_AFTER);
Dave Barach900cbad2019-01-31 19:12:51 -0500955
956 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
957
958 vm->main_loop_vectors_processed += n;
959 vm->main_loop_nodes_processed += n > 0;
960
961 v = vlib_node_runtime_update_stats (vm, node,
962 /* n_calls */ 1,
963 /* n_vectors */ n,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000964 /* n_clocks */ t - last_time_stamp);
Dave Barach900cbad2019-01-31 19:12:51 -0500965
Florin Coras982e44f2021-03-19 13:12:41 -0700966 /* When in adaptive mode and vector rate crosses threshold switch to
967 polling mode and vice versa. */
968 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_ADAPTIVE_MODE))
Dave Barach900cbad2019-01-31 19:12:51 -0500969 {
Dave Barach900cbad2019-01-31 19:12:51 -0500970 ELOG_TYPE_DECLARE (e) =
971 {
972 .function = (char *) __FUNCTION__,
973 .format = "%s vector length %d, switching to %s",
974 .format_args = "T4i4t4",
975 .n_enum_strings = 2,
976 .enum_strings = {
977 "interrupt", "polling",
978 },
979 };
Dave Barach900cbad2019-01-31 19:12:51 -0500980 struct
981 {
982 u32 node_name, vector_length, is_polling;
983 } *ed;
984
985 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
986 && v >= nm->polling_threshold_vector_length) &&
987 !(node->flags &
988 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -0500989 {
Dave Barach900cbad2019-01-31 19:12:51 -0500990 vlib_node_t *n = vlib_get_node (vm, node->node_index);
991 n->state = VLIB_NODE_STATE_POLLING;
992 node->state = VLIB_NODE_STATE_POLLING;
993 node->flags &=
994 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
995 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
996 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
997 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998
Damjan Marionfd8deb42021-03-06 12:26:28 +0100999 if (PREDICT_FALSE (
1000 vlib_get_first_main ()->elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001001 {
Dave Barach900cbad2019-01-31 19:12:51 -05001002 vlib_worker_thread_t *w = vlib_worker_threads
1003 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001004
Steven6aa75af2017-02-24 10:03:22 -08001005 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1006 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001007 ed->node_name = n->name_elog_string;
1008 ed->vector_length = v;
1009 ed->is_polling = 1;
1010 }
Dave Barach900cbad2019-01-31 19:12:51 -05001011 }
1012 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1013 && v <= nm->interrupt_threshold_vector_length)
1014 {
1015 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1016 if (node->flags &
1017 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001018 {
Dave Barach900cbad2019-01-31 19:12:51 -05001019 /* Switch to interrupt mode after dispatch in polling one more time.
1020 This allows driver to re-enable interrupts. */
1021 n->state = VLIB_NODE_STATE_INTERRUPT;
1022 node->state = VLIB_NODE_STATE_INTERRUPT;
1023 node->flags &=
1024 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1025 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1026 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001027
Dave Barach900cbad2019-01-31 19:12:51 -05001028 }
1029 else
1030 {
1031 vlib_worker_thread_t *w = vlib_worker_threads
1032 + vm->thread_index;
1033 node->flags |=
1034 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001035 if (PREDICT_FALSE (
1036 vlib_get_first_main ()->elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001037 {
Steven6aa75af2017-02-24 10:03:22 -08001038 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1039 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001040 ed->node_name = n->name_elog_string;
1041 ed->vector_length = v;
1042 ed->is_polling = 0;
1043 }
1044 }
1045 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046 }
1047
1048 return t;
1049}
1050
Damjan Marion9a332e12017-03-28 15:11:20 +02001051static u64
Dave Baracha6269992017-06-07 08:18:49 -04001052dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1053 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001055 vlib_node_main_t *nm = &vm->node_main;
1056 vlib_frame_t *f;
Dave Barach11fb09e2020-08-06 12:10:09 -04001057 vlib_next_frame_t *nf, nf_placeholder;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001058 vlib_node_runtime_t *n;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001059 vlib_frame_t *restore_frame;
Dave Baracha6269992017-06-07 08:18:49 -04001060 vlib_pending_frame_t *p;
1061
1062 /* See comment below about dangling references to nm->pending_frames */
1063 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064
1065 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1066 p->node_runtime_index);
1067
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001068 f = vlib_get_frame (vm, p->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1070 {
Dave Barach11fb09e2020-08-06 12:10:09 -04001071 /* No next frame: so use placeholder on stack. */
1072 nf = &nf_placeholder;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001073 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001074 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075 }
1076 else
1077 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1078
Damjan Marion633b6fd2018-09-14 14:38:53 +02001079 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080
1081 /* Force allocation of new frame while current frame is being
1082 dispatched. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001083 restore_frame = NULL;
1084 if (nf->frame == p->frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001086 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001088 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001089 restore_frame = p->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 }
1091
1092 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001093 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 ASSERT (f->n_vectors > 0);
1095
1096 /* Copy trace flag from next frame to node.
1097 Trace flag indicates that at least one vector in the dispatched
1098 frame is traced. */
1099 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1100 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1101 nf->flags &= ~VLIB_FRAME_TRACE;
1102
1103 last_time_stamp = dispatch_node (vm, n,
1104 VLIB_NODE_TYPE_INTERNAL,
1105 VLIB_NODE_STATE_POLLING,
1106 f, last_time_stamp);
Dave Baracha8df85c2019-10-01 13:34:23 -04001107 /* Internal node vector-rate accounting, for summary stats */
1108 vm->internal_node_vectors += f->n_vectors;
1109 vm->internal_node_calls++;
1110 vm->internal_node_last_vectors_per_main_loop =
1111 (f->n_vectors > vm->internal_node_last_vectors_per_main_loop) ?
1112 f->n_vectors : vm->internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113
Damjan Marion296988d2019-02-21 20:24:54 +01001114 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115
1116 /* Frame is ready to be used again, so restore it. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001117 if (restore_frame != NULL)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 {
Dave Baracha6269992017-06-07 08:18:49 -04001119 /*
1120 * We musn't restore a frame that is flagged to be freed. This
1121 * shouldn't happen since frames to be freed post dispatch are
1122 * those used when the to-node frame becomes full i.e. they form a
1123 * sort of queue of frames to a single node. If we get here then
1124 * the to-node frame and the pending frame *were* the same, and so
1125 * we removed the to-node frame. Therefore this frame is no
1126 * longer part of the queue for that node and hence it cannot be
1127 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001128 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001129 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001130
Dave Baracha6269992017-06-07 08:18:49 -04001131 /*
1132 * NB: dispatching node n can result in the creation and scheduling
1133 * of new frames, and hence in the reallocation of nm->pending_frames.
1134 * Recompute p, or no supper. This was broken for more than 10 years.
1135 */
1136 p = nm->pending_frames + pending_frame_index;
1137
1138 /*
1139 * p->next_frame_index can change during node dispatch if node
1140 * function decides to change graph hook up.
1141 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001145 if (NULL == nf->frame)
Neale Ranns88170612016-11-22 08:29:51 +00001146 {
1147 /* no new frame has been assigned to this node, use the saved one */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001148 nf->frame = restore_frame;
Neale Ranns88170612016-11-22 08:29:51 +00001149 f->n_vectors = 0;
Stanislav Zaikin3791a032022-03-31 14:16:28 +02001150 f->flags = 0;
Neale Ranns88170612016-11-22 08:29:51 +00001151 }
1152 else
1153 {
1154 /* The node has gained a frame, implying packets from the current frame
1155 were re-queued to this same node. we don't need the saved one
1156 anymore */
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001157 vlib_frame_free (vm, f);
Neale Ranns88170612016-11-22 08:29:51 +00001158 }
1159 }
1160 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001162 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001163 {
1164 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
Dmitry Valter9f5b3692022-09-05 15:30:18 +00001165 vlib_frame_free (vm, f);
Neale Ranns88170612016-11-22 08:29:51 +00001166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 }
1168
1169 return last_time_stamp;
1170}
1171
1172always_inline uword
1173vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001174{
1175 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1176}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178typedef struct
1179{
1180 vlib_main_t *vm;
1181 vlib_process_t *process;
1182 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183} vlib_process_bootstrap_args_t;
1184
1185/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001186static uword
1187vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001189 vlib_process_bootstrap_args_t *a;
1190 vlib_main_t *vm;
1191 vlib_node_runtime_t *node;
1192 vlib_frame_t *f;
1193 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194 uword n;
1195
1196 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1197
1198 vm = a->vm;
1199 p = a->process;
Damjan Marioncea46522020-05-21 16:47:05 +02001200 vlib_process_finish_switch_stack (vm);
1201
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202 f = a->frame;
1203 node = &p->node_runtime;
1204
1205 n = node->function (vm, node, f);
1206
1207 ASSERT (vlib_process_stack_is_valid (p));
1208
Damjan Marioncea46522020-05-21 16:47:05 +02001209 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210 clib_longjmp (&p->return_longjmp, n);
1211
1212 return n;
1213}
1214
1215/* Called in main stack. */
1216static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001217vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218{
1219 vlib_process_bootstrap_args_t a;
1220 uword r;
1221
1222 a.vm = vm;
1223 a.process = p;
1224 a.frame = f;
1225
1226 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1227 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001228 {
1229 vlib_process_start_switch_stack (vm, p);
1230 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1231 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1232 }
1233 else
1234 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235
1236 return r;
1237}
1238
1239static_always_inline uword
Damjan Marioncea46522020-05-21 16:47:05 +02001240vlib_process_resume (vlib_main_t * vm, vlib_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241{
1242 uword r;
1243 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1244 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1245 | VLIB_PROCESS_RESUME_PENDING);
1246 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1247 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001248 {
1249 vlib_process_start_switch_stack (vm, p);
1250 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1251 }
1252 else
1253 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254 return r;
1255}
1256
1257static u64
1258dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001259 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001261 vlib_node_main_t *nm = &vm->node_main;
1262 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1263 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001264 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265 u64 t;
1266 uword n_vectors, is_suspend;
1267
1268 if (node->state != VLIB_NODE_STATE_POLLING
1269 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1270 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1271 return last_time_stamp;
1272
1273 p->flags |= VLIB_PROCESS_IS_RUNNING;
1274
1275 t = last_time_stamp;
1276 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1277 f ? f->n_vectors : 0, /* is_after */ 0);
1278
1279 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001280 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281 nm->current_process_index = node->runtime_index;
1282
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001283 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1284 VLIB_NODE_RUNTIME_PERF_BEFORE);
1285
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286 n_vectors = vlib_process_startup (vm, p, f);
1287
Florin Corasfd542f12018-05-16 19:28:24 -07001288 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289
1290 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1291 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1292 if (is_suspend)
1293 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001294 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295
1296 n_vectors = 0;
1297 pool_get (nm->suspended_process_frames, pf);
1298 pf->node_runtime_index = node->runtime_index;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001299 pf->frame = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300 pf->next_frame_index = ~0;
1301
1302 p->n_suspends += 1;
1303 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1304
1305 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001306 {
1307 TWT (tw_timer_wheel) * tw =
1308 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1309 p->stop_timer_handle =
1310 TW (tw_timer_start) (tw,
1311 vlib_timing_wheel_data_set_suspended_process
1312 (node->runtime_index) /* [sic] pool idex */ ,
1313 0 /* timer_id */ ,
1314 p->resume_clock_interval);
1315 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316 }
1317 else
1318 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1319
1320 t = clib_cpu_time_now ();
1321
Dave Barach9b8ffd92016-07-08 08:13:45 -04001322 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1323 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001324
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001325 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1326 VLIB_NODE_RUNTIME_PERF_AFTER);
1327
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001329 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001330 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001331 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332
1333 return t;
1334}
1335
Dave Barach9b8ffd92016-07-08 08:13:45 -04001336void
1337vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001339 vlib_node_main_t *nm = &vm->node_main;
1340 vlib_process_t *p = vec_elt (nm->processes, process_index);
Vladislav Grishenko3026ffa2021-07-14 18:16:02 +05001341 u64 cpu_time_now = clib_cpu_time_now ();
1342 dispatch_process (vm, p, /* frame */ 0, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001343}
1344
1345static u64
1346dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001347 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001349 vlib_node_main_t *nm = &vm->node_main;
1350 vlib_node_runtime_t *node_runtime;
1351 vlib_node_t *node;
1352 vlib_frame_t *f;
1353 vlib_process_t *p;
1354 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001356
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 t = last_time_stamp;
1358
1359 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001360 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 return last_time_stamp;
1362
1363 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1364 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1365
Florin Coras221d6f12018-11-07 20:46:38 -08001366 pf = pool_elt_at_index (nm->suspended_process_frames,
1367 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001368
1369 node_runtime = &p->node_runtime;
1370 node = vlib_get_node (vm, node_runtime->node_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001371 f = pf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372
Dave Barach9b8ffd92016-07-08 08:13:45 -04001373 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1374 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375
1376 /* Save away current process for suspend. */
1377 nm->current_process_index = node->runtime_index;
1378
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001379 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1380 VLIB_NODE_RUNTIME_PERF_BEFORE);
1381
Damjan Marioncea46522020-05-21 16:47:05 +02001382 n_vectors = vlib_process_resume (vm, p);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001383 t = clib_cpu_time_now ();
1384
1385 nm->current_process_index = ~0;
1386
1387 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1388 if (is_suspend)
1389 {
1390 /* Suspend it again. */
1391 n_vectors = 0;
1392 p->n_suspends += 1;
1393 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001394 {
1395 p->stop_timer_handle =
1396 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1397 vlib_timing_wheel_data_set_suspended_process
1398 (node->runtime_index) /* [sic] pool idex */ ,
1399 0 /* timer_id */ ,
1400 p->resume_clock_interval);
1401 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001402 }
1403 else
1404 {
1405 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001406 pool_put_index (nm->suspended_process_frames,
1407 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001409 }
1410
1411 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001412 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1413 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001414
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001415 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1416 VLIB_NODE_RUNTIME_PERF_AFTER);
1417
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001419 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001420 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001421 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422
1423 return t;
1424}
1425
Damjan Marione9d52d52017-03-09 15:42:26 +01001426static_always_inline void
1427vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001429 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001430 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001431 uword i;
1432 u64 cpu_time_now;
Dave Barach000a0292020-02-17 17:07:12 -05001433 f64 now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001434 vlib_frame_queue_main_t *fqm;
Dave Barach80965f52019-03-11 09:57:38 -04001435 u32 frame_queue_check_counter = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436
1437 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001438 if (is_main)
1439 {
1440 vec_resize (nm->pending_frames, 32);
Damjan Marion8bea5892022-04-04 22:40:45 +02001441 vec_set_len (nm->pending_frames, 0);
Damjan Marione9d52d52017-03-09 15:42:26 +01001442 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443
1444 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001445 if (is_main)
1446 {
1447 cpu_time_now = vm->clib_time.last_cpu_time;
1448 vm->cpu_time_main_loop_start = cpu_time_now;
1449 }
1450 else
1451 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001452
Damjan Marion2c2b6402017-03-28 14:16:15 +02001453 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001454 if (!nm->polling_threshold_vector_length)
1455 nm->polling_threshold_vector_length = 10;
1456 if (!nm->interrupt_threshold_vector_length)
1457 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001458
Damjan Marion29c0b332019-01-28 13:41:27 +01001459 vm->cpu_id = clib_get_current_cpu_id ();
1460 vm->numa_node = clib_get_current_numa_node ();
Florin Coras4c959952020-02-09 18:09:31 +00001461 os_set_numa_index (vm->numa_node);
Damjan Marion29c0b332019-01-28 13:41:27 +01001462
Ed Warnickecb9cada2015-12-08 15:45:58 -07001463 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001464 if (is_main)
1465 {
1466 uword i;
Dave Barachc602b382019-06-03 19:48:22 -04001467
1468 /*
1469 * Perform an initial barrier sync. Pays no attention to
1470 * the barrier sync hold-down timer scheme, which won't work
1471 * at this point in time.
1472 */
1473 vlib_worker_thread_initial_barrier_sync_and_release (vm);
1474
Stevenf3b53642017-05-01 14:03:02 -07001475 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001476 for (i = 0; i < vec_len (nm->processes); i++)
1477 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1478 cpu_time_now);
1479 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480
1481 while (1)
1482 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001483 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001484
Dave Barach2877eee2017-12-15 12:22:57 -05001485 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001486 {
1487 if (!is_main)
Florin Coras4cadd3b2024-02-01 20:46:15 -08001488 vlib_worker_flush_pending_rpc_requests (vm);
Dave Barachf6c68d72018-11-01 08:12:52 -04001489 }
Dave Barach2877eee2017-12-15 12:22:57 -05001490
Damjan Marione9d52d52017-03-09 15:42:26 +01001491 if (!is_main)
Damjan Marionf6e6c782020-09-17 09:54:07 +02001492 vlib_worker_thread_barrier_check ();
1493
1494 if (PREDICT_FALSE (vm->check_frame_queues + frame_queue_check_counter))
Damjan Marione9d52d52017-03-09 15:42:26 +01001495 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001496 u32 processed = 0;
Mohammed Hawarie7149262022-05-18 10:08:47 +02001497 vlib_frame_queue_dequeue_fn_t *fn;
Damjan Marionf6e6c782020-09-17 09:54:07 +02001498
1499 if (vm->check_frame_queues)
Dave Barach80965f52019-03-11 09:57:38 -04001500 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001501 frame_queue_check_counter = 100;
1502 vm->check_frame_queues = 0;
Dave Barach80965f52019-03-11 09:57:38 -04001503 }
Damjan Marionf6e6c782020-09-17 09:54:07 +02001504
1505 vec_foreach (fqm, tm->frame_queue_mains)
Mohammed Hawarie7149262022-05-18 10:08:47 +02001506 {
1507 fn = fqm->frame_queue_dequeue_fn;
1508 processed += (fn) (vm, fqm);
1509 }
Damjan Marionf6e6c782020-09-17 09:54:07 +02001510
1511 /* No handoff queue work found? */
1512 if (processed)
1513 frame_queue_check_counter = 100;
1514 else
1515 frame_queue_check_counter--;
Damjan Marione9d52d52017-03-09 15:42:26 +01001516 }
1517
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001518 if (PREDICT_FALSE (vec_len (vm->worker_thread_main_loop_callbacks)))
1519 clib_call_callbacks (vm->worker_thread_main_loop_callbacks, vm,
1520 cpu_time_now);
1521
Ed Warnickecb9cada2015-12-08 15:45:58 -07001522 /* Process pre-input nodes. */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001523 cpu_time_now = clib_cpu_time_now ();
Damjan Marionceab7882018-01-19 20:56:12 +01001524 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1525 cpu_time_now = dispatch_node (vm, n,
1526 VLIB_NODE_TYPE_PRE_INPUT,
1527 VLIB_NODE_STATE_POLLING,
1528 /* frame */ 0,
1529 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001530
Damjan Marion7f75e802023-11-03 21:57:42 +00001531 if (clib_interrupt_is_any_pending (nm->pre_input_node_interrupts))
Damjan Marioncc8249c2023-07-23 14:24:22 +02001532 {
1533 int int_num = -1;
Damjan Marioncc8249c2023-07-23 14:24:22 +02001534
Damjan Marion7f75e802023-11-03 21:57:42 +00001535 while ((int_num = clib_interrupt_get_next_and_clear (
Damjan Marioncc8249c2023-07-23 14:24:22 +02001536 nm->pre_input_node_interrupts, int_num)) != -1)
1537 {
1538 vlib_node_runtime_t *n;
Damjan Marioncc8249c2023-07-23 14:24:22 +02001539 n = vec_elt_at_index (
1540 nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT], int_num);
1541 cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_PRE_INPUT,
1542 VLIB_NODE_STATE_INTERRUPT,
1543 /* frame */ 0, cpu_time_now);
1544 }
1545 }
1546
Ed Warnickecb9cada2015-12-08 15:45:58 -07001547 /* Next process input nodes. */
1548 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1549 cpu_time_now = dispatch_node (vm, n,
1550 VLIB_NODE_TYPE_INPUT,
1551 VLIB_NODE_STATE_POLLING,
1552 /* frame */ 0,
1553 cpu_time_now);
1554
Damjan Marione9d52d52017-03-09 15:42:26 +01001555 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001556 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001557
Damjan Marion7f75e802023-11-03 21:57:42 +00001558 if (clib_interrupt_is_any_pending (nm->input_node_interrupts))
Damjan Marion0b316302020-09-09 18:55:16 +02001559 {
Damjan Marion94100532020-11-06 23:25:57 +01001560 int int_num = -1;
Dave Barachd47c5092018-01-19 13:09:20 -05001561
Damjan Marion7f75e802023-11-03 21:57:42 +00001562 while ((int_num = clib_interrupt_get_next_and_clear (
1563 nm->input_node_interrupts, int_num)) != -1)
Damjan Marion94100532020-11-06 23:25:57 +01001564 {
1565 vlib_node_runtime_t *n;
Damjan Marion94100532020-11-06 23:25:57 +01001566 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1567 int_num);
1568 cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1569 VLIB_NODE_STATE_INTERRUPT,
1570 /* frame */ 0, cpu_time_now);
1571 }
Damjan Marion1033b492020-06-03 12:20:41 +02001572 }
1573
Dave Barache3248982018-08-14 13:47:58 -04001574 /* Input nodes may have added work to the pending vector.
1575 Process pending vector until there is nothing left.
1576 All pending vectors will be processed from input -> output. */
1577 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1578 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1579 /* Reset pending vector for next iteration. */
Damjan Marion8bea5892022-04-04 22:40:45 +02001580 vec_set_len (nm->pending_frames, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001581
Damjan Marione9d52d52017-03-09 15:42:26 +01001582 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583 {
Dave Barach900cbad2019-01-31 19:12:51 -05001584 ELOG_TYPE_DECLARE (es) =
1585 {
1586 .format = "process tw start",
1587 .format_args = "",
1588 };
1589 ELOG_TYPE_DECLARE (ee) =
1590 {
1591 .format = "process tw end: %d",
1592 .format_args = "i4",
1593 };
Dave Barach900cbad2019-01-31 19:12:51 -05001594
1595 struct
1596 {
1597 int nready_procs;
1598 } *ed;
1599
Damjan Marione9d52d52017-03-09 15:42:26 +01001600 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001601 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1602
Dave Barach900cbad2019-01-31 19:12:51 -05001603 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1604 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1605
Matthew Smith9aa4ac52023-04-04 19:27:55 +00001606 TW (tw_timer_expire_timers)
1607 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608
Damjan Marione9d52d52017-03-09 15:42:26 +01001609 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001610
Dave Barach900cbad2019-01-31 19:12:51 -05001611 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1612 {
1613 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1614 ed->nready_procs =
1615 _vec_len (nm->data_from_advancing_timing_wheel);
1616 }
1617
Damjan Marione9d52d52017-03-09 15:42:26 +01001618 if (PREDICT_FALSE
1619 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001620 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001621 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001622
Damjan Marione9d52d52017-03-09 15:42:26 +01001623 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1624 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001626 u32 d = nm->data_from_advancing_timing_wheel[i];
1627 u32 di = vlib_timing_wheel_data_get_index (d);
1628
1629 if (vlib_timing_wheel_data_is_timed_event (d))
1630 {
1631 vlib_signal_timed_event_data_t *te =
1632 pool_elt_at_index (nm->signal_timed_event_data_pool,
1633 di);
1634 vlib_node_t *n =
1635 vlib_get_node (vm, te->process_node_index);
1636 vlib_process_t *p =
1637 vec_elt (nm->processes, n->runtime_index);
jinshb7756b22023-03-07 14:32:06 +08001638 p->stop_timer_handle = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001639 void *data;
1640 data =
1641 vlib_process_signal_event_helper (nm, n, p,
1642 te->event_type_index,
1643 te->n_data_elts,
1644 te->n_data_elt_bytes);
1645 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001646 clib_memcpy_fast (data, te->inline_event_data,
1647 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001648 else
1649 {
Dave Barach178cf492018-11-13 16:34:13 -05001650 clib_memcpy_fast (data, te->event_data_as_vector,
1651 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001652 vec_free (te->event_data_as_vector);
1653 }
1654 pool_put (nm->signal_timed_event_data_pool, te);
1655 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001656 else
1657 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001658 cpu_time_now = clib_cpu_time_now ();
1659 cpu_time_now =
1660 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001661 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662 }
Damjan Marion8bea5892022-04-04 22:40:45 +02001663 vec_set_len (nm->data_from_advancing_timing_wheel, 0);
Damjan Marione9d52d52017-03-09 15:42:26 +01001664 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001665 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001666 vlib_increment_main_loop_counter (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001667 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001668 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001669 cpu_time_now = clib_cpu_time_now ();
Dave Barach000a0292020-02-17 17:07:12 -05001670 vm->loops_this_reporting_interval++;
1671 now = clib_time_now_internal (&vm->clib_time, cpu_time_now);
1672 /* Time to update loops_per_second? */
1673 if (PREDICT_FALSE (now >= vm->loop_interval_end))
1674 {
1675 /* Next sample ends in 20ms */
1676 if (vm->loop_interval_start)
1677 {
1678 f64 this_loops_per_second;
1679
1680 this_loops_per_second =
1681 ((f64) vm->loops_this_reporting_interval) / (now -
1682 vm->loop_interval_start);
1683
1684 vm->loops_per_second =
1685 vm->loops_per_second * vm->damping_constant +
1686 (1.0 - vm->damping_constant) * this_loops_per_second;
1687 if (vm->loops_per_second != 0.0)
1688 vm->seconds_per_loop = 1.0 / vm->loops_per_second;
1689 else
1690 vm->seconds_per_loop = 0.0;
1691 }
1692 /* New interval starts now, and ends in 20ms */
1693 vm->loop_interval_start = now;
1694 vm->loop_interval_end = now + 2e-4;
1695 vm->loops_this_reporting_interval = 0;
1696 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001697 }
1698}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001699
Damjan Marione9d52d52017-03-09 15:42:26 +01001700static void
1701vlib_main_loop (vlib_main_t * vm)
1702{
1703 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1704}
1705
1706void
1707vlib_worker_loop (vlib_main_t * vm)
1708{
1709 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1710}
1711
Damjan Marionfd8deb42021-03-06 12:26:28 +01001712vlib_global_main_t vlib_global_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713
Damjan Marion25ab6c52021-03-05 14:41:25 +01001714void
1715vlib_add_del_post_mortem_callback (void *cb, int is_add)
1716{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001717 vlib_global_main_t *vgm = vlib_get_global_main ();
Damjan Marion25ab6c52021-03-05 14:41:25 +01001718 int i;
1719
1720 if (is_add == 0)
1721 {
Damjan Marionfd8deb42021-03-06 12:26:28 +01001722 for (i = vec_len (vgm->post_mortem_callbacks) - 1; i >= 0; i--)
1723 if (vgm->post_mortem_callbacks[i] == cb)
1724 vec_del1 (vgm->post_mortem_callbacks, i);
Damjan Marion25ab6c52021-03-05 14:41:25 +01001725 return;
1726 }
1727
Damjan Marionfd8deb42021-03-06 12:26:28 +01001728 for (i = 0; i < vec_len (vgm->post_mortem_callbacks); i++)
1729 if (vgm->post_mortem_callbacks[i] == cb)
Damjan Marion25ab6c52021-03-05 14:41:25 +01001730 return;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001731 vec_add1 (vgm->post_mortem_callbacks, cb);
Damjan Marion25ab6c52021-03-05 14:41:25 +01001732}
1733
1734static void
1735elog_post_mortem_dump (void)
1736{
Damjan Marionf553a2c2021-03-26 13:45:37 +01001737 elog_main_t *em = vlib_get_elog_main ();
Damjan Marion25ab6c52021-03-05 14:41:25 +01001738
1739 u8 *filename;
1740 clib_error_t *error;
1741
1742 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
1743 error = elog_write_file (em, (char *) filename, 1 /* flush ring */);
1744 if (error)
1745 clib_error_report (error);
1746 /*
1747 * We're in the middle of crashing. Don't try to free the filename.
1748 */
1749}
1750
Ed Warnickecb9cada2015-12-08 15:45:58 -07001751static clib_error_t *
1752vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1753{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001754 vlib_global_main_t *vgm = vlib_get_global_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001755 int turn_on_mem_trace = 0;
1756
1757 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1758 {
1759 if (unformat (input, "memory-trace"))
1760 turn_on_mem_trace = 1;
1761
1762 else if (unformat (input, "elog-events %d",
Damjan Marionfd8deb42021-03-06 12:26:28 +01001763 &vgm->configured_elog_ring_size))
1764 vgm->configured_elog_ring_size =
1765 1 << max_log2 (vgm->configured_elog_ring_size);
Dave Barach81481312017-05-16 09:08:14 -04001766 else if (unformat (input, "elog-post-mortem-dump"))
Damjan Marion25ab6c52021-03-05 14:41:25 +01001767 vlib_add_del_post_mortem_callback (elog_post_mortem_dump,
1768 /* is_add */ 1);
Dave Barachc74b43c2020-04-09 17:24:07 -04001769 else if (unformat (input, "buffer-alloc-success-rate %f",
1770 &vm->buffer_alloc_success_rate))
1771 {
1772 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
1773 return clib_error_return
1774 (0, "Buffer fault injection not configured");
1775 }
1776 else if (unformat (input, "buffer-alloc-success-seed %u",
1777 &vm->buffer_alloc_success_seed))
1778 {
1779 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
1780 return clib_error_return
1781 (0, "Buffer fault injection not configured");
1782 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783 else
1784 return unformat_parse_error (input);
1785 }
1786
1787 unformat_free (input);
1788
1789 /* Enable memory trace as early as possible. */
1790 if (turn_on_mem_trace)
1791 clib_mem_trace (1);
1792
1793 return 0;
1794}
1795
1796VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1797
Dave Barach9b8ffd92016-07-08 08:13:45 -04001798static void
Dave Barach11fb09e2020-08-06 12:10:09 -04001799placeholder_queue_signal_callback (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001800{
1801}
Dave Barach16c75df2016-05-31 14:05:46 -04001802
Dave Barach1f806582018-06-14 09:18:21 -04001803#define foreach_weak_reference_stub \
Dave Barach1f806582018-06-14 09:18:21 -04001804_(vpe_api_init) \
1805_(vlibmemory_init) \
1806_(map_api_segment_init)
1807
1808#define _(name) \
1809clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1810clib_error_t *name (vlib_main_t *vm) { return 0; }
1811foreach_weak_reference_stub;
1812#undef _
1813
Dave Barachb09f4d02019-07-15 16:00:03 -04001814void vl_api_set_elog_main (elog_main_t * m) __attribute__ ((weak));
1815void
1816vl_api_set_elog_main (elog_main_t * m)
1817{
1818 clib_warning ("STUB");
1819}
1820
1821int vl_api_set_elog_trace_api_messages (int enable) __attribute__ ((weak));
1822int
1823vl_api_set_elog_trace_api_messages (int enable)
1824{
1825 clib_warning ("STUB");
1826 return 0;
1827}
1828
1829int vl_api_get_elog_trace_api_messages (void) __attribute__ ((weak));
1830int
1831vl_api_get_elog_trace_api_messages (void)
1832{
1833 clib_warning ("STUB");
1834 return 0;
1835}
1836
Matthew Smith9aa4ac52023-04-04 19:27:55 +00001837static void
1838process_expired_timer_cb (u32 *expired_timer_handles)
1839{
1840 vlib_main_t *vm = vlib_get_main ();
1841 vlib_node_main_t *nm = &vm->node_main;
1842 u32 *handle;
1843
1844 vec_foreach (handle, expired_timer_handles)
1845 {
1846 u32 pi = vlib_timing_wheel_data_get_index (*handle);
1847 vlib_process_t *p = vec_elt (nm->processes, pi);
1848
1849 p->stop_timer_handle = ~0;
1850 }
1851 vec_append (nm->data_from_advancing_timing_wheel, expired_timer_handles);
1852}
1853
Ed Warnickecb9cada2015-12-08 15:45:58 -07001854/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001855int
Eyal Barid334a6b2016-09-19 10:23:39 +03001856vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001857{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001858 vlib_global_main_t *vgm = vlib_get_global_main ();
Eyal Barid334a6b2016-09-19 10:23:39 +03001859 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001860 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001861
Dave Barach11fb09e2020-08-06 12:10:09 -04001862 vm->queue_signal_callback = placeholder_queue_signal_callback;
Dave Barach16c75df2016-05-31 14:05:46 -04001863
Dave Barachbc867c32020-11-25 10:07:09 -05001864 /* Reconfigure event log which is enabled very early */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001865 if (vgm->configured_elog_ring_size &&
1866 vgm->configured_elog_ring_size != vgm->elog_main.event_ring_size)
1867 elog_resize (&vgm->elog_main, vgm->configured_elog_ring_size);
Damjan Marionf553a2c2021-03-26 13:45:37 +01001868 vl_api_set_elog_main (vlib_get_elog_main ());
Dave Barachb09f4d02019-07-15 16:00:03 -04001869 (void) vl_api_set_elog_trace_api_messages (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001870
1871 /* Default name. */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001872 if (!vgm->name)
1873 vgm->name = "VLIB";
Ed Warnickecb9cada2015-12-08 15:45:58 -07001874
Damjan Marion68b4da62018-09-30 18:26:20 +02001875 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001876 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001877 clib_error_report (error);
1878 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001879 }
Damjan Marion49d66f12017-07-20 18:10:35 +02001880
Damjan Marion62d656a2022-03-09 16:10:54 +01001881 if ((error = vlib_log_init (vm)))
1882 {
1883 clib_error_report (error);
1884 goto done;
1885 }
1886
Damjan Marion8973b072022-03-01 15:51:18 +01001887 if ((error = vlib_stats_init (vm)))
Filip Tehlard2bbdef2019-02-22 05:05:53 -08001888 {
1889 clib_error_report (error);
1890 goto done;
1891 }
1892
Damjan Marion49d66f12017-07-20 18:10:35 +02001893 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001894 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001895 clib_error_report (error);
1896 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001897 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001898
1899 if ((error = vlib_thread_init (vm)))
1900 {
1901 clib_error_report (error);
1902 goto done;
1903 }
1904
Damjan Mariona31698b2021-03-10 14:35:28 +01001905 /* Register node ifunction variants */
1906 vlib_register_all_node_march_variants (vm);
1907
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908 /* Register static nodes so that init functions may use them. */
1909 vlib_register_all_static_nodes (vm);
1910
1911 /* Set seed for random number generator.
1912 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001913 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001914 vm->random_seed = clib_cpu_time_now ();
1915 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1916
Ed Warnickecb9cada2015-12-08 15:45:58 -07001917 /* Initialize node graph. */
1918 if ((error = vlib_node_main_init (vm)))
1919 {
1920 /* Arrange for graph hook up error to not be fatal when debugging. */
1921 if (CLIB_DEBUG > 0)
1922 clib_error_report (error);
1923 else
1924 goto done;
1925 }
1926
Dave Barach1f806582018-06-14 09:18:21 -04001927 /* Direct call / weak reference, for vlib standalone use-cases */
1928 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001929 {
1930 clib_error_report (error);
1931 goto done;
1932 }
1933
Dave Barach1f806582018-06-14 09:18:21 -04001934 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001935 {
1936 clib_error_report (error);
1937 goto done;
1938 }
1939
Dave Barach1f806582018-06-14 09:18:21 -04001940 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001941 {
1942 clib_error_report (error);
1943 goto done;
1944 }
1945
Ole Troan964f93e2016-06-10 13:22:36 +02001946 /* See unix/main.c; most likely already set up */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001947 if (vgm->init_functions_called == 0)
1948 vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02001949 if ((error = vlib_call_all_init_functions (vm)))
1950 goto done;
1951
Dave Barach5c20a012017-06-13 08:48:31 -04001952 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
1953 CLIB_CACHE_LINE_BYTES);
1954
1955 vec_validate (nm->data_from_advancing_timing_wheel, 10);
Damjan Marion8bea5892022-04-04 22:40:45 +02001956 vec_set_len (nm->data_from_advancing_timing_wheel, 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001957
1958 /* Create the process timing wheel */
Matthew Smith9aa4ac52023-04-04 19:27:55 +00001959 TW (tw_timer_wheel_init)
1960 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1961 process_expired_timer_cb /* callback */, 10e-6 /* timer period 10us */,
1962 ~0 /* max expirations per call */);
Dave Barach5c20a012017-06-13 08:48:31 -04001963
Dave Barach2877eee2017-12-15 12:22:57 -05001964 vec_validate (vm->pending_rpc_requests, 0);
Damjan Marion8bea5892022-04-04 22:40:45 +02001965 vec_set_len (vm->pending_rpc_requests, 0);
Dave Barachf6c68d72018-11-01 08:12:52 -04001966 vec_validate (vm->processing_rpc_requests, 0);
Damjan Marion8bea5892022-04-04 22:40:45 +02001967 vec_set_len (vm->processing_rpc_requests, 0);
Dave Barach2877eee2017-12-15 12:22:57 -05001968
Dave Barachc74b43c2020-04-09 17:24:07 -04001969 /* Default params for the buffer allocator fault injector, if configured */
1970 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR > 0)
1971 {
1972 vm->buffer_alloc_success_seed = 0xdeaddabe;
1973 vm->buffer_alloc_success_rate = 0.80;
1974 }
1975
Dave Barachd1e17d02019-03-21 18:01:48 -04001976 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
1977 goto done;
1978
Dave Barach000a0292020-02-17 17:07:12 -05001979 /*
1980 * Use exponential smoothing, with a half-life of 1 second
1981 * reported_rate(t) = reported_rate(t-1) * K + rate(t)*(1-K)
1982 *
1983 * Sample every 20ms, aka 50 samples per second
1984 * K = exp (-1.0/20.0);
1985 * K = 0.95
1986 */
1987 vm->damping_constant = exp (-1.0 / 20.0);
1988
Dave Barachc602b382019-06-03 19:48:22 -04001989 /* Sort per-thread init functions before we start threads */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001990 vlib_sort_init_exit_functions (&vgm->worker_init_function_registrations);
Dave Barachc602b382019-06-03 19:48:22 -04001991
Dave Barachd1e17d02019-03-21 18:01:48 -04001992 /* Call all main loop enter functions. */
1993 {
1994 clib_error_t *sub_error;
1995 sub_error = vlib_call_all_main_loop_enter_functions (vm);
1996 if (sub_error)
1997 clib_error_report (sub_error);
1998 }
1999
Ed Warnickecb9cada2015-12-08 15:45:58 -07002000 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2001 {
2002 case VLIB_MAIN_LOOP_EXIT_NONE:
2003 vm->main_loop_exit_set = 1;
2004 break;
2005
2006 case VLIB_MAIN_LOOP_EXIT_CLI:
2007 goto done;
2008
2009 default:
2010 error = vm->main_loop_error;
2011 goto done;
2012 }
2013
Ed Warnickecb9cada2015-12-08 15:45:58 -07002014 vlib_main_loop (vm);
2015
Dave Barach9b8ffd92016-07-08 08:13:45 -04002016done:
Vladislav Grishenkod1dc1062021-12-30 19:08:42 +05002017 /* Stop worker threads, barrier will not be released */
Kommula Shiva Shankarced43e22021-01-28 13:05:59 +05302018 vlib_worker_thread_barrier_sync (vm);
Vladislav Grishenkod1dc1062021-12-30 19:08:42 +05002019
Ed Warnickecb9cada2015-12-08 15:45:58 -07002020 /* Call all exit functions. */
2021 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002022 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002023 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2024 if (sub_error)
2025 clib_error_report (sub_error);
2026 }
2027
2028 if (error)
2029 clib_error_report (error);
2030
Pierre Pfisterc26cc722021-09-10 16:38:03 +02002031 return vm->main_loop_exit_status;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002032}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002033
Dave Barachab1a50c2020-10-06 14:08:16 -04002034vlib_main_t *
2035vlib_get_main_not_inline (void)
2036{
2037 return vlib_get_main ();
2038}
2039
2040elog_main_t *
2041vlib_get_elog_main_not_inline ()
2042{
2043 return &vlib_global_main.elog_main;
2044}
2045
Pierre Pfisterc26cc722021-09-10 16:38:03 +02002046void
2047vlib_exit_with_status (vlib_main_t *vm, int status)
2048{
2049 vm->main_loop_exit_status = status;
2050 __atomic_store_n (&vm->main_loop_exit_now, 1, __ATOMIC_RELEASE);
2051}
2052
Dave Barach9b8ffd92016-07-08 08:13:45 -04002053/*
2054 * fd.io coding-style-patch-verification: ON
2055 *
2056 * Local Variables:
2057 * eval: (c-set-style "gnu")
2058 * End:
2059 */