blob: 6d241bd18bb965766a8b6e3ebd9ad599c6f67a85 [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];
84 _vec_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;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
110 fs->n_alloc_frames += 1;
111
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200112 return f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113}
114
115/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
116 Returns frame index. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200117static vlib_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400118vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
119 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400121 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
123 from_node = vlib_get_node (vm, from_node_runtime->node_index);
124 ASSERT (to_next_index < vec_len (from_node->next_nodes));
125
Dave Barach9b8ffd92016-07-08 08:13:45 -0400126 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 /* frame_flags */ 0);
128}
129
130vlib_frame_t *
131vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
132{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200133 vlib_frame_t *f = vlib_frame_alloc_to_node (vm, to_node_index,
134 /* frame_flags */
135 VLIB_FRAME_FREE_AFTER_DISPATCH);
136 return vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137}
138
Dave Barachc74b43c2020-04-09 17:24:07 -0400139static inline void
140vlib_validate_frame_indices (vlib_frame_t * f)
141{
142 if (CLIB_DEBUG > 0)
143 {
144 int i;
145 u32 *from = vlib_frame_vector_args (f);
146
147 /* Check for bad buffer index values */
148 for (i = 0; i < f->n_vectors; i++)
149 {
150 if (from[i] == 0)
151 {
152 clib_warning ("BUG: buffer index 0 at index %d", i);
153 ASSERT (0);
154 }
155 else if (from[i] == 0xfefefefe)
156 {
157 clib_warning ("BUG: frame poison pattern at index %d", i);
158 ASSERT (0);
159 }
160 }
161 }
162}
163
Dave Barach9b8ffd92016-07-08 08:13:45 -0400164void
165vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400167 vlib_pending_frame_t *p;
168 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170 if (f->n_vectors == 0)
171 return;
172
Dave Baracha8f4ebd2021-02-08 07:56:22 -0500173 ASSERT (vm == vlib_get_main ());
174
Dave Barachc74b43c2020-04-09 17:24:07 -0400175 vlib_validate_frame_indices (f);
176
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 to_node = vlib_get_node (vm, to_node_index);
178
179 vec_add2 (vm->node_main.pending_frames, p, 1);
180
Damjan Marion633b6fd2018-09-14 14:38:53 +0200181 f->frame_flags |= VLIB_FRAME_PENDING;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200182 p->frame = vlib_get_frame (vm, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 p->node_runtime_index = to_node->runtime_index;
184 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
185}
186
187/* Free given frame. */
188void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400191 vlib_node_main_t *nm = &vm->node_main;
192 vlib_node_t *node;
193 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
198 node = vlib_get_node (vm, r->node_index);
Damjan Marionb32bd702021-12-23 17:05:02 +0100199 fs = vec_elt_at_index (nm->frame_sizes, node->frame_size_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Damjan Marion633b6fd2018-09-14 14:38:53 +0200201 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
203 /* No next frames may point to freed frame. */
204 if (CLIB_DEBUG > 0)
205 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400206 vlib_next_frame_t *nf;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200207 vec_foreach (nf, vm->node_main.next_frames) ASSERT (nf->frame != f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 }
209
Damjan Marion296988d2019-02-21 20:24:54 +0100210 f->frame_flags &= ~(VLIB_FRAME_IS_ALLOCATED | VLIB_FRAME_NO_APPEND);
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
Dave Barach9b8ffd92016-07-08 08:13:45 -0400243/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
245 .path = "show vlib frame-allocation",
246 .short_help = "Show node dispatch frame statistics",
247 .function = show_frame_stats,
248};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400249/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251/* Change ownership of enqueue rights to given next node. */
252static void
253vlib_next_frame_change_ownership (vlib_main_t * vm,
254 vlib_node_runtime_t * node_runtime,
255 u32 next_index)
256{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400257 vlib_node_main_t *nm = &vm->node_main;
258 vlib_next_frame_t *next_frame;
259 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
261 node = vec_elt (nm->nodes, node_runtime->node_index);
262
263 /* Only internal & input nodes are allowed to call other nodes. */
264 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
265 || node->type == VLIB_NODE_TYPE_INPUT
266 || node->type == VLIB_NODE_TYPE_PROCESS);
267
268 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
269
Dave Barach9b8ffd92016-07-08 08:13:45 -0400270 next_frame =
271 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
273
274 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
275 {
276 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 vlib_next_frame_t tmp;
279
280 owner_next_frame =
281 vlib_node_get_next_frame (vm,
282 next_node->owner_node_index,
283 next_node->owner_next_index);
284
285 /* Swap target next frame with owner's. */
286 tmp = owner_next_frame[0];
287 owner_next_frame[0] = next_frame[0];
288 next_frame[0] = tmp;
289
290 /*
291 * If next_frame is already pending, we have to track down
292 * all pending frames and fix their next_frame_index fields.
293 */
294 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400295 {
296 vlib_pending_frame_t *p;
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200297 if (next_frame->frame != NULL)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 {
299 vec_foreach (p, nm->pending_frames)
300 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200301 if (p->frame == next_frame->frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400302 {
303 p->next_frame_index =
304 next_frame - vm->node_main.next_frames;
305 }
306 }
307 }
308 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309 }
310 else
311 {
312 /* No previous owner. Take ownership. */
313 next_frame->flags |= VLIB_FRAME_OWNER;
314 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 /* Record new owner. */
317 next_node->owner_node_index = node->index;
318 next_node->owner_next_index = next_index;
319
320 /* Now we should be owner. */
321 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
324/* Make sure that magic number is still there.
325 Otherwise, it is likely that caller has overrun frame arguments. */
326always_inline void
327validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400330 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
331 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
333}
334
335vlib_frame_t *
336vlib_get_next_frame_internal (vlib_main_t * vm,
337 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 vlib_frame_t *f;
341 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 u32 n_used;
343
344 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
345
346 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348 vlib_next_frame_change_ownership (vm, node, next_index);
349
350 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400351 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200353 nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
355 }
356
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200357 f = nf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
359 /* Has frame been removed from pending vector (e.g. finished dispatching)?
360 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200361 if ((nf->flags & VLIB_FRAME_PENDING)
362 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 {
364 nf->flags &= ~VLIB_FRAME_PENDING;
365 f->n_vectors = 0;
Damjan Marion9162c2d2018-11-20 09:55:10 +0100366 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 }
368
Damjan Marion296988d2019-02-21 20:24:54 +0100369 /* Allocate new frame if current one is marked as no-append or
370 it is already full. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 n_used = f->n_vectors;
Damjan Marion296988d2019-02-21 20:24:54 +0100372 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
373 (f->frame_flags & VLIB_FRAME_NO_APPEND))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374 {
375 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 two redundant frames from node -> next node. */
377 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200379 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200380 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 }
382
383 /* Allocate new frame to replace full one. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200384 f = nf->frame = vlib_frame_alloc (vm, node, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385 n_used = f->n_vectors;
386 }
387
388 /* Should have free vectors in frame now. */
389 ASSERT (n_used < VLIB_FRAME_SIZE);
390
391 if (CLIB_DEBUG > 0)
392 {
393 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 }
396
397 return f;
398}
399
400static void
401vlib_put_next_frame_validate (vlib_main_t * vm,
402 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405 vlib_node_main_t *nm = &vm->node_main;
406 vlib_next_frame_t *nf;
407 vlib_frame_t *f;
408 vlib_node_runtime_t *next_rt;
409 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 u32 n_before, n_after;
411
412 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200413 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
415 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
Dave Barachc74b43c2020-04-09 17:24:07 -0400416
417 vlib_validate_frame_indices (f);
418
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419 n_after = VLIB_FRAME_SIZE - n_vectors_left;
420 n_before = f->n_vectors;
421
422 ASSERT (n_after >= n_before);
423
424 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
425 nf->node_runtime_index);
426 next_node = vlib_get_node (vm, next_rt->node_index);
427 if (n_after > 0 && next_node->validate_frame)
428 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400429 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 if (msg)
431 {
432 clib_warning ("%v", msg);
433 ASSERT (0);
434 }
435 vec_free (msg);
436 }
437}
438
439void
440vlib_put_next_frame (vlib_main_t * vm,
441 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444 vlib_node_main_t *nm = &vm->node_main;
445 vlib_next_frame_t *nf;
446 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 u32 n_vectors_in_frame;
448
Damjan Marion910d3692019-01-21 11:48:34 +0100449 if (CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
451
452 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200453 f = vlib_get_frame (vm, nf->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454
455 /* Make sure that magic number is still there. Otherwise, caller
456 has overrun frame meta data. */
457 if (CLIB_DEBUG > 0)
458 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400459 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460 validate_frame_magic (vm, f, node, next_index);
461 }
462
463 /* Convert # of vectors left -> number of vectors there. */
464 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
465 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
466
467 f->n_vectors = n_vectors_in_frame;
468
469 /* If vectors were added to frame, add to pending vector. */
470 if (PREDICT_TRUE (n_vectors_in_frame > 0))
471 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400474
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 r->cached_next_index = next_index;
476
Damjan Marion633b6fd2018-09-14 14:38:53 +0200477 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478 {
479 __attribute__ ((unused)) vlib_node_t *node;
480 vlib_node_t *next_node;
481 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483 node = vlib_get_node (vm, r->node_index);
484 next_node = vlib_get_next_node (vm, r->node_index, next_index);
485 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200489 p->frame = nf->frame;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490 p->node_runtime_index = nf->node_runtime_index;
491 p->next_frame_index = nf - nm->next_frames;
492 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200493 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
Dave Barach9b8ffd92016-07-08 08:13:45 -0400495 /*
496 * If we're going to dispatch this frame on another thread,
497 * force allocation of a new frame. Otherwise, we create
498 * a dangling frame reference. Each thread has its own copy of
499 * the next_frames vector.
500 */
Damjan Marion586afd72017-04-05 19:18:20 +0200501 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200503 nf->frame = NULL;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
505 }
506 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
508 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400509 nf->flags |=
510 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
511 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
513 v0 = nf->vectors_since_last_overflow;
514 v1 = v0 + n_vectors_in_frame;
515 nf->vectors_since_last_overflow = v1;
516 if (PREDICT_FALSE (v1 < v0))
517 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400518 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
520 }
521 }
522}
523
524/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800525void
526vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r,
527 uword n_calls, uword n_vectors,
528 uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
531 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
532 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
533 n->stats_total.max_clock = r->max_clock;
534 n->stats_total.max_clock_n = r->max_clock_n;
535
536 r->calls_since_last_overflow = 0;
537 r->vectors_since_last_overflow = 0;
538 r->clocks_since_last_overflow = 0;
539}
540
Arthur de Kerhor156158f2021-02-18 03:09:42 -0800541void
542vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r,
543 uword n_calls, uword n_vectors, uword n_clocks)
544{
545 vlib_node_t *n = vlib_get_node (vm, r->node_index);
546 vlib_node_runtime_sync_stats_node (n, r, n_calls, n_vectors, n_clocks);
547}
548
Dave Barach9b8ffd92016-07-08 08:13:45 -0400549always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550vlib_process_sync_stats (vlib_main_t * vm,
551 vlib_process_t * p,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000552 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400554 vlib_node_runtime_t *rt = &p->node_runtime;
555 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000556 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 n->stats_total.suspends += p->n_suspends;
558 p->n_suspends = 0;
559}
560
Dave Barach9b8ffd92016-07-08 08:13:45 -0400561void
562vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400564 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565
566 if (n->type == VLIB_NODE_TYPE_PROCESS)
567 {
568 /* Nothing to do for PROCESS nodes except in main thread */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100569 if (vm != vlib_get_first_main ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400570 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 n->stats_total.suspends += p->n_suspends;
574 p->n_suspends = 0;
575 rt = &p->node_runtime;
576 }
577 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400578 rt =
579 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
580 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000582 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584 /* Sync up runtime next frame vector counters with main node structure. */
585 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 uword i;
588 for (i = 0; i < rt->n_next_nodes; i++)
589 {
590 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591 vec_elt (n->n_vectors_by_next_node, i) +=
592 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 nf->vectors_since_last_overflow = 0;
594 }
595 }
596}
597
598always_inline u32
599vlib_node_runtime_update_stats (vlib_main_t * vm,
600 vlib_node_runtime_t * node,
601 uword n_calls,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000602 uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603{
604 u32 ca0, ca1, v0, v1, cl0, cl1, r;
605
606 cl0 = cl1 = node->clocks_since_last_overflow;
607 ca0 = ca1 = node->calls_since_last_overflow;
608 v0 = v1 = node->vectors_since_last_overflow;
609
610 ca1 = ca0 + n_calls;
611 v1 = v0 + n_vectors;
612 cl1 = cl0 + n_clocks;
613
614 node->calls_since_last_overflow = ca1;
615 node->clocks_since_last_overflow = cl1;
616 node->vectors_since_last_overflow = v1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400617
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400619 node->max_clock_n : n_vectors;
620 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
622 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
623
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000624 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 {
626 node->calls_since_last_overflow = ca0;
627 node->clocks_since_last_overflow = cl0;
628 node->vectors_since_last_overflow = v0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400629
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000630 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 }
632
633 return r;
634}
635
Dave Barach17e5d802019-05-01 11:30:13 -0400636always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637vlib_process_update_stats (vlib_main_t * vm,
638 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500639 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640{
641 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000642 n_calls, n_vectors, n_clocks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643}
644
645static clib_error_t *
646vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100649 elog_reset_buffer (&vlib_global_main.elog_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 return 0;
651}
652
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400655 .path = "event-logger clear",
656 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 .function = vlib_cli_elog_clear,
658};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400659/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660
661#ifdef CLIB_UNIX
662static clib_error_t *
663elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400664 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100666 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400667 char *file, *chroot_file;
668 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671 {
672 vlib_cli_output (vm, "expected file name, got `%U'",
673 format_unformat_error, input);
674 return 0;
675 }
676
677 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 {
680 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
681 return 0;
682 }
683
684 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
685
Dave Barach9b8ffd92016-07-08 08:13:45 -0400686 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687
688 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689 elog_n_events_in_buffer (em),
690 elog_buffer_capacity (em), chroot_file);
691
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400693 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400694 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 vec_free (chroot_file);
696 return error;
697}
698
Dave Barach81481312017-05-16 09:08:14 -0400699void
Dave Barach27d978c2020-11-03 09:59:06 -0500700vlib_post_mortem_dump (void)
Dave Barach81481312017-05-16 09:08:14 -0400701{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100702 vlib_global_main_t *vgm = vlib_get_global_main ();
Dave Barach27d978c2020-11-03 09:59:06 -0500703
Damjan Marionfd8deb42021-03-06 12:26:28 +0100704 for (int i = 0; i < vec_len (vgm->post_mortem_callbacks); i++)
705 (vgm->post_mortem_callbacks[i]) ();
Dave Barach81481312017-05-16 09:08:14 -0400706}
707
Dave Barach9b8ffd92016-07-08 08:13:45 -0400708/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400710 .path = "event-logger save",
711 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712 .function = elog_save_buffer,
713};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715
Dave Barache5389bb2016-03-28 17:12:19 -0400716static clib_error_t *
717elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400718 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400719{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100720 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400721
722 em->n_total_events_disable_limit = em->n_total_events;
723
724 vlib_cli_output (vm, "Stopped the event logger...");
725 return 0;
726}
727
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400729VLIB_CLI_COMMAND (elog_stop_cli, static) = {
730 .path = "event-logger stop",
731 .short_help = "Stop the event-logger",
732 .function = elog_stop,
733};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400735
736static clib_error_t *
737elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400739{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100740 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400741
742 em->n_total_events_disable_limit = ~0;
743
744 vlib_cli_output (vm, "Restarted the event logger...");
745 return 0;
746}
747
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400749VLIB_CLI_COMMAND (elog_restart_cli, static) = {
750 .path = "event-logger restart",
751 .short_help = "Restart the event-logger",
752 .function = elog_restart,
753};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400755
756static clib_error_t *
Dave Barachbc867c32020-11-25 10:07:09 -0500757elog_resize_command_fn (vlib_main_t * vm,
758 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400759{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100760 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400761 u32 tmp;
762
763 /* Stop the parade */
Damjan Marionf553a2c2021-03-26 13:45:37 +0100764 elog_reset_buffer (em);
Dave Barache5389bb2016-03-28 17:12:19 -0400765
766 if (unformat (input, "%d", &tmp))
767 {
768 elog_alloc (em, tmp);
769 em->n_total_events_disable_limit = ~0;
770 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400771 else
Dave Barache5389bb2016-03-28 17:12:19 -0400772 return clib_error_return (0, "Must specify how many events in the ring");
773
774 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
775 return 0;
776}
777
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400779VLIB_CLI_COMMAND (elog_resize_cli, static) = {
780 .path = "event-logger resize",
781 .short_help = "event-logger resize <nnn>",
Dave Barachbc867c32020-11-25 10:07:09 -0500782 .function = elog_resize_command_fn,
Dave Barache5389bb2016-03-28 17:12:19 -0400783};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400784/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400785
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786#endif /* CLIB_UNIX */
787
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788static void
789elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790{
Damjan Marionf553a2c2021-03-26 13:45:37 +0100791 elog_main_t *em = &vlib_global_main.elog_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400792 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 f64 dt;
794
795 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400796 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 * vm->clib_time.seconds_per_clock;
798
799 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400800 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
801 em->event_ring_size,
802 em->n_total_events < em->n_total_events_disable_limit ?
803 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805 {
806 vlib_cli_output (vm, "%18.9f: %U",
807 e->time + dt, format_elog_event, em, e);
808 n_events_to_show--;
809 if (n_events_to_show == 0)
810 break;
811 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700812 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400813
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814}
815
816static clib_error_t *
817elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819{
820 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400821 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
823 n_events_to_show = 250;
824 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
825 {
826 if (unformat (input, "%d", &n_events_to_show))
827 ;
828 else if (unformat (input, "all"))
829 n_events_to_show = ~0;
830 else
831 return unformat_parse_error (input);
832 }
833 elog_show_buffer_internal (vm, n_events_to_show);
834 return error;
835}
836
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838VLIB_CLI_COMMAND (elog_show_cli, static) = {
839 .path = "show event-logger",
840 .short_help = "Show event logger info",
841 .function = elog_show_buffer,
842};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400843/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844
Dave Barach9b8ffd92016-07-08 08:13:45 -0400845void
846vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400848 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849}
850
Dave Barachfb6e59d2016-03-26 18:45:42 -0400851static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852vlib_elog_main_loop_event (vlib_main_t * vm,
853 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400854 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700855{
Damjan Marionfd8deb42021-03-06 12:26:28 +0100856 vlib_main_t *evm = vlib_get_first_main ();
Damjan Marionf553a2c2021-03-26 13:45:37 +0100857 elog_main_t *em = vlib_get_elog_main ();
Dave Barach900cbad2019-01-31 19:12:51 -0500858 int enabled = evm->elog_trace_graph_dispatch |
859 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860
Dave Barach900cbad2019-01-31 19:12:51 -0500861 if (PREDICT_FALSE (enabled && n_vectors))
862 {
863 if (PREDICT_FALSE (!elog_is_enabled (em)))
864 {
865 evm->elog_trace_graph_dispatch = 0;
866 evm->elog_trace_graph_circuit = 0;
867 return;
868 }
869 if (PREDICT_TRUE
870 (evm->elog_trace_graph_dispatch ||
871 (evm->elog_trace_graph_circuit &&
872 node_index == evm->elog_trace_graph_circuit_node_index)))
873 {
874 elog_track (em,
875 /* event type */
876 vec_elt_at_index (is_return
877 ? evm->node_return_elog_event_types
878 : evm->node_call_elog_event_types,
879 node_index),
880 /* track */
881 (vm->thread_index ?
882 &vlib_worker_threads[vm->thread_index].elog_track
883 : &em->default_track),
884 /* data to log */ n_vectors);
885 }
886 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887}
888
Dave Barach7bee7732017-10-18 18:48:11 -0400889static inline void
890add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
891{
892#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100893 if (PREDICT_FALSE (b->trajectory_nb >= VLIB_BUFFER_TRACE_TRAJECTORY_MAX))
894 return;
895 b->trajectory_trace[b->trajectory_nb] = node_index;
896 b->trajectory_nb++;
Dave Barach7bee7732017-10-18 18:48:11 -0400897#endif
898}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899
Damjan Marion9a332e12017-03-28 15:11:20 +0200900static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901dispatch_node (vlib_main_t * vm,
902 vlib_node_runtime_t * node,
903 vlib_node_type_t type,
904 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400905 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906{
907 uword n, v;
908 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400909 vlib_node_main_t *nm = &vm->node_main;
910 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
912 if (CLIB_DEBUG > 0)
913 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915 ASSERT (n->type == type);
916 }
917
918 /* Only non-internal nodes may be disabled. */
919 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
920 {
921 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
922 return last_time_stamp;
923 }
924
925 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
926 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
927 {
928 u32 c = node->input_main_loops_per_call;
929 /* Only call node when count reaches zero. */
930 if (c)
931 {
932 node->input_main_loops_per_call = c - 1;
933 return last_time_stamp;
934 }
935 }
936
937 /* Speculatively prefetch next frames. */
938 if (node->n_next_nodes > 0)
939 {
940 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
941 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
942 }
943
944 vm->cpu_time_last_node_dispatch = last_time_stamp;
945
Dave Barach900cbad2019-01-31 19:12:51 -0500946 vlib_elog_main_loop_event (vm, node->node_index,
947 last_time_stamp, frame ? frame->n_vectors : 0,
948 /* is_after */ 0);
949
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000950 vlib_node_runtime_perf_counter (vm, node, frame, 0, last_time_stamp,
951 VLIB_NODE_RUNTIME_PERF_BEFORE);
Dave Barach900cbad2019-01-31 19:12:51 -0500952
953 /*
954 * Turn this on if you run into
955 * "bad monkey" contexts, and you want to know exactly
956 * which nodes they've visited... See ixge.c...
957 */
958 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 {
Dave Barach900cbad2019-01-31 19:12:51 -0500960 int i;
961 u32 *from;
962 from = vlib_frame_vector_args (frame);
963 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400964 {
Dave Barach900cbad2019-01-31 19:12:51 -0500965 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
966 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400967 }
Damjan Marion8b60fb02020-11-27 20:15:17 +0100968 if (PREDICT_TRUE (vm->dispatch_wrapper_fn == 0))
969 n = node->function (vm, node, frame);
970 else
971 n = vm->dispatch_wrapper_fn (vm, node, frame);
Dave Barach900cbad2019-01-31 19:12:51 -0500972 }
973 else
974 {
Damjan Marion8b60fb02020-11-27 20:15:17 +0100975 if (PREDICT_TRUE (vm->dispatch_wrapper_fn == 0))
976 n = node->function (vm, node, frame);
977 else
978 n = vm->dispatch_wrapper_fn (vm, node, frame);
Dave Barach900cbad2019-01-31 19:12:51 -0500979 }
980
981 t = clib_cpu_time_now ();
982
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000983 vlib_node_runtime_perf_counter (vm, node, frame, n, t,
984 VLIB_NODE_RUNTIME_PERF_AFTER);
Dave Barach900cbad2019-01-31 19:12:51 -0500985
986 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
987
988 vm->main_loop_vectors_processed += n;
989 vm->main_loop_nodes_processed += n > 0;
990
991 v = vlib_node_runtime_update_stats (vm, node,
992 /* n_calls */ 1,
993 /* n_vectors */ n,
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000994 /* n_clocks */ t - last_time_stamp);
Dave Barach900cbad2019-01-31 19:12:51 -0500995
Florin Coras982e44f2021-03-19 13:12:41 -0700996 /* When in adaptive mode and vector rate crosses threshold switch to
997 polling mode and vice versa. */
998 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_ADAPTIVE_MODE))
Dave Barach900cbad2019-01-31 19:12:51 -0500999 {
1000 /* *INDENT-OFF* */
1001 ELOG_TYPE_DECLARE (e) =
1002 {
1003 .function = (char *) __FUNCTION__,
1004 .format = "%s vector length %d, switching to %s",
1005 .format_args = "T4i4t4",
1006 .n_enum_strings = 2,
1007 .enum_strings = {
1008 "interrupt", "polling",
1009 },
1010 };
1011 /* *INDENT-ON* */
1012 struct
1013 {
1014 u32 node_name, vector_length, is_polling;
1015 } *ed;
1016
1017 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1018 && v >= nm->polling_threshold_vector_length) &&
1019 !(node->flags &
1020 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -05001021 {
Dave Barach900cbad2019-01-31 19:12:51 -05001022 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1023 n->state = VLIB_NODE_STATE_POLLING;
1024 node->state = VLIB_NODE_STATE_POLLING;
1025 node->flags &=
1026 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1027 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1028 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1029 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030
Damjan Marionfd8deb42021-03-06 12:26:28 +01001031 if (PREDICT_FALSE (
1032 vlib_get_first_main ()->elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 {
Dave Barach900cbad2019-01-31 19:12:51 -05001034 vlib_worker_thread_t *w = vlib_worker_threads
1035 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036
Steven6aa75af2017-02-24 10:03:22 -08001037 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1038 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001039 ed->node_name = n->name_elog_string;
1040 ed->vector_length = v;
1041 ed->is_polling = 1;
1042 }
Dave Barach900cbad2019-01-31 19:12:51 -05001043 }
1044 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1045 && v <= nm->interrupt_threshold_vector_length)
1046 {
1047 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1048 if (node->flags &
1049 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001050 {
Dave Barach900cbad2019-01-31 19:12:51 -05001051 /* Switch to interrupt mode after dispatch in polling one more time.
1052 This allows driver to re-enable interrupts. */
1053 n->state = VLIB_NODE_STATE_INTERRUPT;
1054 node->state = VLIB_NODE_STATE_INTERRUPT;
1055 node->flags &=
1056 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1057 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1058 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001059
Dave Barach900cbad2019-01-31 19:12:51 -05001060 }
1061 else
1062 {
1063 vlib_worker_thread_t *w = vlib_worker_threads
1064 + vm->thread_index;
1065 node->flags |=
1066 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001067 if (PREDICT_FALSE (
1068 vlib_get_first_main ()->elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001069 {
Steven6aa75af2017-02-24 10:03:22 -08001070 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1071 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001072 ed->node_name = n->name_elog_string;
1073 ed->vector_length = v;
1074 ed->is_polling = 0;
1075 }
1076 }
1077 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 }
1079
1080 return t;
1081}
1082
Damjan Marion9a332e12017-03-28 15:11:20 +02001083static u64
Dave Baracha6269992017-06-07 08:18:49 -04001084dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1085 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001087 vlib_node_main_t *nm = &vm->node_main;
1088 vlib_frame_t *f;
Dave Barach11fb09e2020-08-06 12:10:09 -04001089 vlib_next_frame_t *nf, nf_placeholder;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001090 vlib_node_runtime_t *n;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001091 vlib_frame_t *restore_frame;
Dave Baracha6269992017-06-07 08:18:49 -04001092 vlib_pending_frame_t *p;
1093
1094 /* See comment below about dangling references to nm->pending_frames */
1095 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096
1097 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1098 p->node_runtime_index);
1099
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001100 f = vlib_get_frame (vm, p->frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1102 {
Dave Barach11fb09e2020-08-06 12:10:09 -04001103 /* No next frame: so use placeholder on stack. */
1104 nf = &nf_placeholder;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001105 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001106 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107 }
1108 else
1109 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1110
Damjan Marion633b6fd2018-09-14 14:38:53 +02001111 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112
1113 /* Force allocation of new frame while current frame is being
1114 dispatched. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001115 restore_frame = NULL;
1116 if (nf->frame == p->frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117 {
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001118 nf->frame = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001120 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001121 restore_frame = p->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122 }
1123
1124 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001125 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 ASSERT (f->n_vectors > 0);
1127
1128 /* Copy trace flag from next frame to node.
1129 Trace flag indicates that at least one vector in the dispatched
1130 frame is traced. */
1131 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1132 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1133 nf->flags &= ~VLIB_FRAME_TRACE;
1134
1135 last_time_stamp = dispatch_node (vm, n,
1136 VLIB_NODE_TYPE_INTERNAL,
1137 VLIB_NODE_STATE_POLLING,
1138 f, last_time_stamp);
Dave Baracha8df85c2019-10-01 13:34:23 -04001139 /* Internal node vector-rate accounting, for summary stats */
1140 vm->internal_node_vectors += f->n_vectors;
1141 vm->internal_node_calls++;
1142 vm->internal_node_last_vectors_per_main_loop =
1143 (f->n_vectors > vm->internal_node_last_vectors_per_main_loop) ?
1144 f->n_vectors : vm->internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145
Damjan Marion296988d2019-02-21 20:24:54 +01001146 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147
1148 /* Frame is ready to be used again, so restore it. */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001149 if (restore_frame != NULL)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150 {
Dave Baracha6269992017-06-07 08:18:49 -04001151 /*
1152 * We musn't restore a frame that is flagged to be freed. This
1153 * shouldn't happen since frames to be freed post dispatch are
1154 * those used when the to-node frame becomes full i.e. they form a
1155 * sort of queue of frames to a single node. If we get here then
1156 * the to-node frame and the pending frame *were* the same, and so
1157 * we removed the to-node frame. Therefore this frame is no
1158 * longer part of the queue for that node and hence it cannot be
1159 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001160 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001161 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001162
Dave Baracha6269992017-06-07 08:18:49 -04001163 /*
1164 * NB: dispatching node n can result in the creation and scheduling
1165 * of new frames, and hence in the reallocation of nm->pending_frames.
1166 * Recompute p, or no supper. This was broken for more than 10 years.
1167 */
1168 p = nm->pending_frames + pending_frame_index;
1169
1170 /*
1171 * p->next_frame_index can change during node dispatch if node
1172 * function decides to change graph hook up.
1173 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001176
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001177 if (NULL == nf->frame)
Neale Ranns88170612016-11-22 08:29:51 +00001178 {
1179 /* no new frame has been assigned to this node, use the saved one */
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001180 nf->frame = restore_frame;
Neale Ranns88170612016-11-22 08:29:51 +00001181 f->n_vectors = 0;
1182 }
1183 else
1184 {
1185 /* The node has gained a frame, implying packets from the current frame
1186 were re-queued to this same node. we don't need the saved one
1187 anymore */
1188 vlib_frame_free (vm, n, f);
1189 }
1190 }
1191 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001193 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001194 {
1195 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1196 vlib_frame_free (vm, n, f);
1197 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 }
1199
1200 return last_time_stamp;
1201}
1202
1203always_inline uword
1204vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001205{
1206 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1207}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001208
Dave Barach9b8ffd92016-07-08 08:13:45 -04001209typedef struct
1210{
1211 vlib_main_t *vm;
1212 vlib_process_t *process;
1213 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214} vlib_process_bootstrap_args_t;
1215
1216/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001217static uword
1218vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001220 vlib_process_bootstrap_args_t *a;
1221 vlib_main_t *vm;
1222 vlib_node_runtime_t *node;
1223 vlib_frame_t *f;
1224 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 uword n;
1226
1227 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1228
1229 vm = a->vm;
1230 p = a->process;
Damjan Marioncea46522020-05-21 16:47:05 +02001231 vlib_process_finish_switch_stack (vm);
1232
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 f = a->frame;
1234 node = &p->node_runtime;
1235
1236 n = node->function (vm, node, f);
1237
1238 ASSERT (vlib_process_stack_is_valid (p));
1239
Damjan Marioncea46522020-05-21 16:47:05 +02001240 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241 clib_longjmp (&p->return_longjmp, n);
1242
1243 return n;
1244}
1245
1246/* Called in main stack. */
1247static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001248vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249{
1250 vlib_process_bootstrap_args_t a;
1251 uword r;
1252
1253 a.vm = vm;
1254 a.process = p;
1255 a.frame = f;
1256
1257 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1258 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001259 {
1260 vlib_process_start_switch_stack (vm, p);
1261 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1262 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1263 }
1264 else
1265 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266
1267 return r;
1268}
1269
1270static_always_inline uword
Damjan Marioncea46522020-05-21 16:47:05 +02001271vlib_process_resume (vlib_main_t * vm, vlib_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272{
1273 uword r;
1274 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1275 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1276 | VLIB_PROCESS_RESUME_PENDING);
1277 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1278 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
Damjan Marioncea46522020-05-21 16:47:05 +02001279 {
1280 vlib_process_start_switch_stack (vm, p);
1281 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1282 }
1283 else
1284 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285 return r;
1286}
1287
1288static u64
1289dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001290 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001292 vlib_node_main_t *nm = &vm->node_main;
1293 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1294 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001295 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001296 u64 t;
1297 uword n_vectors, is_suspend;
1298
1299 if (node->state != VLIB_NODE_STATE_POLLING
1300 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1301 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1302 return last_time_stamp;
1303
1304 p->flags |= VLIB_PROCESS_IS_RUNNING;
1305
1306 t = last_time_stamp;
1307 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1308 f ? f->n_vectors : 0, /* is_after */ 0);
1309
1310 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001311 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312 nm->current_process_index = node->runtime_index;
1313
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001314 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1315 VLIB_NODE_RUNTIME_PERF_BEFORE);
1316
Ed Warnickecb9cada2015-12-08 15:45:58 -07001317 n_vectors = vlib_process_startup (vm, p, f);
1318
Florin Corasfd542f12018-05-16 19:28:24 -07001319 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320
1321 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1322 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1323 if (is_suspend)
1324 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001325 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326
1327 n_vectors = 0;
1328 pool_get (nm->suspended_process_frames, pf);
1329 pf->node_runtime_index = node->runtime_index;
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001330 pf->frame = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331 pf->next_frame_index = ~0;
1332
1333 p->n_suspends += 1;
1334 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1335
1336 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001337 {
1338 TWT (tw_timer_wheel) * tw =
1339 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1340 p->stop_timer_handle =
1341 TW (tw_timer_start) (tw,
1342 vlib_timing_wheel_data_set_suspended_process
1343 (node->runtime_index) /* [sic] pool idex */ ,
1344 0 /* timer_id */ ,
1345 p->resume_clock_interval);
1346 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347 }
1348 else
1349 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1350
1351 t = clib_cpu_time_now ();
1352
Dave Barach9b8ffd92016-07-08 08:13:45 -04001353 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1354 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001356 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1357 VLIB_NODE_RUNTIME_PERF_AFTER);
1358
Ed Warnickecb9cada2015-12-08 15:45:58 -07001359 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001360 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001362 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001363
1364 return t;
1365}
1366
Dave Barach9b8ffd92016-07-08 08:13:45 -04001367void
1368vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001370 vlib_node_main_t *nm = &vm->node_main;
1371 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1373}
1374
1375static u64
1376dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001377 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001379 vlib_node_main_t *nm = &vm->node_main;
1380 vlib_node_runtime_t *node_runtime;
1381 vlib_node_t *node;
1382 vlib_frame_t *f;
1383 vlib_process_t *p;
1384 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001386
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387 t = last_time_stamp;
1388
1389 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001390 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 return last_time_stamp;
1392
1393 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1394 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1395
Florin Coras221d6f12018-11-07 20:46:38 -08001396 pf = pool_elt_at_index (nm->suspended_process_frames,
1397 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001398
1399 node_runtime = &p->node_runtime;
1400 node = vlib_get_node (vm, node_runtime->node_index);
Andreas Schultz58b2eb12019-07-15 15:40:56 +02001401 f = pf->frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001402
Dave Barach9b8ffd92016-07-08 08:13:45 -04001403 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1404 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001405
1406 /* Save away current process for suspend. */
1407 nm->current_process_index = node->runtime_index;
1408
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001409 vlib_node_runtime_perf_counter (vm, node_runtime, f, 0, last_time_stamp,
1410 VLIB_NODE_RUNTIME_PERF_BEFORE);
1411
Damjan Marioncea46522020-05-21 16:47:05 +02001412 n_vectors = vlib_process_resume (vm, p);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001413 t = clib_cpu_time_now ();
1414
1415 nm->current_process_index = ~0;
1416
1417 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1418 if (is_suspend)
1419 {
1420 /* Suspend it again. */
1421 n_vectors = 0;
1422 p->n_suspends += 1;
1423 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001424 {
1425 p->stop_timer_handle =
1426 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1427 vlib_timing_wheel_data_set_suspended_process
1428 (node->runtime_index) /* [sic] pool idex */ ,
1429 0 /* timer_id */ ,
1430 p->resume_clock_interval);
1431 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432 }
1433 else
1434 {
1435 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001436 pool_put_index (nm->suspended_process_frames,
1437 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 }
1440
1441 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001442 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1443 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001445 vlib_node_runtime_perf_counter (vm, node_runtime, f, n_vectors, t,
1446 VLIB_NODE_RUNTIME_PERF_AFTER);
1447
Ed Warnickecb9cada2015-12-08 15:45:58 -07001448 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001449 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001450 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001451 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001452
1453 return t;
1454}
1455
Dave Barach2877eee2017-12-15 12:22:57 -05001456void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1457void
1458vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1459{
1460}
1461
Damjan Marione9d52d52017-03-09 15:42:26 +01001462static_always_inline void
1463vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001464{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001465 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001466 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467 uword i;
1468 u64 cpu_time_now;
Dave Barach000a0292020-02-17 17:07:12 -05001469 f64 now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001470 vlib_frame_queue_main_t *fqm;
Dave Barach80965f52019-03-11 09:57:38 -04001471 u32 frame_queue_check_counter = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001472
1473 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001474 if (is_main)
1475 {
1476 vec_resize (nm->pending_frames, 32);
1477 _vec_len (nm->pending_frames) = 0;
1478 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001479
1480 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001481 if (is_main)
1482 {
1483 cpu_time_now = vm->clib_time.last_cpu_time;
1484 vm->cpu_time_main_loop_start = cpu_time_now;
1485 }
1486 else
1487 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001488
Damjan Marion2c2b6402017-03-28 14:16:15 +02001489 /* Pre-allocate interupt runtime indices and lock. */
Damjan Marion94100532020-11-06 23:25:57 +01001490 vec_alloc_aligned (nm->pending_interrupts, 1, CLIB_CACHE_LINE_BYTES);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001491
1492 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001493 if (!nm->polling_threshold_vector_length)
1494 nm->polling_threshold_vector_length = 10;
1495 if (!nm->interrupt_threshold_vector_length)
1496 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001497
Damjan Marion29c0b332019-01-28 13:41:27 +01001498 vm->cpu_id = clib_get_current_cpu_id ();
1499 vm->numa_node = clib_get_current_numa_node ();
Florin Coras4c959952020-02-09 18:09:31 +00001500 os_set_numa_index (vm->numa_node);
Damjan Marion29c0b332019-01-28 13:41:27 +01001501
Ed Warnickecb9cada2015-12-08 15:45:58 -07001502 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001503 if (is_main)
1504 {
1505 uword i;
Dave Barachc602b382019-06-03 19:48:22 -04001506
1507 /*
1508 * Perform an initial barrier sync. Pays no attention to
1509 * the barrier sync hold-down timer scheme, which won't work
1510 * at this point in time.
1511 */
1512 vlib_worker_thread_initial_barrier_sync_and_release (vm);
1513
Stevenf3b53642017-05-01 14:03:02 -07001514 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001515 for (i = 0; i < vec_len (nm->processes); i++)
1516 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1517 cpu_time_now);
1518 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001519
1520 while (1)
1521 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001522 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523
Dave Barach2877eee2017-12-15 12:22:57 -05001524 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001525 {
1526 if (!is_main)
1527 vl_api_send_pending_rpc_requests (vm);
1528 }
Dave Barach2877eee2017-12-15 12:22:57 -05001529
Damjan Marione9d52d52017-03-09 15:42:26 +01001530 if (!is_main)
Damjan Marionf6e6c782020-09-17 09:54:07 +02001531 vlib_worker_thread_barrier_check ();
1532
1533 if (PREDICT_FALSE (vm->check_frame_queues + frame_queue_check_counter))
Damjan Marione9d52d52017-03-09 15:42:26 +01001534 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001535 u32 processed = 0;
Damjan Marioneee099e2021-05-01 14:56:13 +02001536 vlib_frame_queue_dequeue_fn_t *fn =
1537 vlib_buffer_func_main.frame_queue_dequeue_fn;
Damjan Marionf6e6c782020-09-17 09:54:07 +02001538
1539 if (vm->check_frame_queues)
Dave Barach80965f52019-03-11 09:57:38 -04001540 {
Damjan Marionf6e6c782020-09-17 09:54:07 +02001541 frame_queue_check_counter = 100;
1542 vm->check_frame_queues = 0;
Dave Barach80965f52019-03-11 09:57:38 -04001543 }
Damjan Marionf6e6c782020-09-17 09:54:07 +02001544
1545 vec_foreach (fqm, tm->frame_queue_mains)
Damjan Marioneee099e2021-05-01 14:56:13 +02001546 processed += (fn) (vm, fqm);
Damjan Marionf6e6c782020-09-17 09:54:07 +02001547
1548 /* No handoff queue work found? */
1549 if (processed)
1550 frame_queue_check_counter = 100;
1551 else
1552 frame_queue_check_counter--;
Damjan Marione9d52d52017-03-09 15:42:26 +01001553 }
1554
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001555 if (PREDICT_FALSE (vec_len (vm->worker_thread_main_loop_callbacks)))
1556 clib_call_callbacks (vm->worker_thread_main_loop_callbacks, vm,
1557 cpu_time_now);
1558
Ed Warnickecb9cada2015-12-08 15:45:58 -07001559 /* Process pre-input nodes. */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001560 cpu_time_now = clib_cpu_time_now ();
Damjan Marionceab7882018-01-19 20:56:12 +01001561 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1562 cpu_time_now = dispatch_node (vm, n,
1563 VLIB_NODE_TYPE_PRE_INPUT,
1564 VLIB_NODE_STATE_POLLING,
1565 /* frame */ 0,
1566 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001567
1568 /* Next process input nodes. */
1569 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1570 cpu_time_now = dispatch_node (vm, n,
1571 VLIB_NODE_TYPE_INPUT,
1572 VLIB_NODE_STATE_POLLING,
1573 /* frame */ 0,
1574 cpu_time_now);
1575
Damjan Marione9d52d52017-03-09 15:42:26 +01001576 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001577 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001578
Damjan Marion94100532020-11-06 23:25:57 +01001579 if (__atomic_load_n (nm->pending_interrupts, __ATOMIC_ACQUIRE))
Damjan Marion0b316302020-09-09 18:55:16 +02001580 {
Damjan Marion94100532020-11-06 23:25:57 +01001581 int int_num = -1;
1582 *nm->pending_interrupts = 0;
Dave Barachd47c5092018-01-19 13:09:20 -05001583
Damjan Marion94100532020-11-06 23:25:57 +01001584 while ((int_num =
1585 clib_interrupt_get_next (nm->interrupts, int_num)) != -1)
1586 {
1587 vlib_node_runtime_t *n;
1588 clib_interrupt_clear (nm->interrupts, int_num);
1589 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1590 int_num);
1591 cpu_time_now = dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1592 VLIB_NODE_STATE_INTERRUPT,
1593 /* frame */ 0, cpu_time_now);
1594 }
Damjan Marion1033b492020-06-03 12:20:41 +02001595 }
1596
Dave Barache3248982018-08-14 13:47:58 -04001597 /* Input nodes may have added work to the pending vector.
1598 Process pending vector until there is nothing left.
1599 All pending vectors will be processed from input -> output. */
1600 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1601 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1602 /* Reset pending vector for next iteration. */
1603 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001604
Damjan Marione9d52d52017-03-09 15:42:26 +01001605 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001606 {
Dave Barach900cbad2019-01-31 19:12:51 -05001607 /* *INDENT-OFF* */
1608 ELOG_TYPE_DECLARE (es) =
1609 {
1610 .format = "process tw start",
1611 .format_args = "",
1612 };
1613 ELOG_TYPE_DECLARE (ee) =
1614 {
1615 .format = "process tw end: %d",
1616 .format_args = "i4",
1617 };
1618 /* *INDENT-ON* */
1619
1620 struct
1621 {
1622 int nready_procs;
1623 } *ed;
1624
Damjan Marione9d52d52017-03-09 15:42:26 +01001625 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001626 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1627
Dave Barach900cbad2019-01-31 19:12:51 -05001628 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1629 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1630
Dave Barach5c20a012017-06-13 08:48:31 -04001631 nm->data_from_advancing_timing_wheel =
1632 TW (tw_timer_expire_timers_vec)
1633 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1634 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001635
Damjan Marione9d52d52017-03-09 15:42:26 +01001636 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001637
Dave Barach900cbad2019-01-31 19:12:51 -05001638 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1639 {
1640 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1641 ed->nready_procs =
1642 _vec_len (nm->data_from_advancing_timing_wheel);
1643 }
1644
Damjan Marione9d52d52017-03-09 15:42:26 +01001645 if (PREDICT_FALSE
1646 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001648 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001649
Damjan Marione9d52d52017-03-09 15:42:26 +01001650 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1651 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001652 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001653 u32 d = nm->data_from_advancing_timing_wheel[i];
1654 u32 di = vlib_timing_wheel_data_get_index (d);
1655
1656 if (vlib_timing_wheel_data_is_timed_event (d))
1657 {
1658 vlib_signal_timed_event_data_t *te =
1659 pool_elt_at_index (nm->signal_timed_event_data_pool,
1660 di);
1661 vlib_node_t *n =
1662 vlib_get_node (vm, te->process_node_index);
1663 vlib_process_t *p =
1664 vec_elt (nm->processes, n->runtime_index);
1665 void *data;
1666 data =
1667 vlib_process_signal_event_helper (nm, n, p,
1668 te->event_type_index,
1669 te->n_data_elts,
1670 te->n_data_elt_bytes);
1671 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001672 clib_memcpy_fast (data, te->inline_event_data,
1673 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001674 else
1675 {
Dave Barach178cf492018-11-13 16:34:13 -05001676 clib_memcpy_fast (data, te->event_data_as_vector,
1677 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001678 vec_free (te->event_data_as_vector);
1679 }
1680 pool_put (nm->signal_timed_event_data_pool, te);
1681 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001682 else
1683 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001684 cpu_time_now = clib_cpu_time_now ();
1685 cpu_time_now =
1686 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001687 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001688 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001689 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1690 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001691 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001692 vlib_increment_main_loop_counter (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001694 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001695 cpu_time_now = clib_cpu_time_now ();
Dave Barach000a0292020-02-17 17:07:12 -05001696 vm->loops_this_reporting_interval++;
1697 now = clib_time_now_internal (&vm->clib_time, cpu_time_now);
1698 /* Time to update loops_per_second? */
1699 if (PREDICT_FALSE (now >= vm->loop_interval_end))
1700 {
1701 /* Next sample ends in 20ms */
1702 if (vm->loop_interval_start)
1703 {
1704 f64 this_loops_per_second;
1705
1706 this_loops_per_second =
1707 ((f64) vm->loops_this_reporting_interval) / (now -
1708 vm->loop_interval_start);
1709
1710 vm->loops_per_second =
1711 vm->loops_per_second * vm->damping_constant +
1712 (1.0 - vm->damping_constant) * this_loops_per_second;
1713 if (vm->loops_per_second != 0.0)
1714 vm->seconds_per_loop = 1.0 / vm->loops_per_second;
1715 else
1716 vm->seconds_per_loop = 0.0;
1717 }
1718 /* New interval starts now, and ends in 20ms */
1719 vm->loop_interval_start = now;
1720 vm->loop_interval_end = now + 2e-4;
1721 vm->loops_this_reporting_interval = 0;
1722 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001723 }
1724}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001725
Damjan Marione9d52d52017-03-09 15:42:26 +01001726static void
1727vlib_main_loop (vlib_main_t * vm)
1728{
1729 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1730}
1731
1732void
1733vlib_worker_loop (vlib_main_t * vm)
1734{
1735 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1736}
1737
Damjan Marionfd8deb42021-03-06 12:26:28 +01001738vlib_global_main_t vlib_global_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001739
Damjan Marion25ab6c52021-03-05 14:41:25 +01001740void
1741vlib_add_del_post_mortem_callback (void *cb, int is_add)
1742{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001743 vlib_global_main_t *vgm = vlib_get_global_main ();
Damjan Marion25ab6c52021-03-05 14:41:25 +01001744 int i;
1745
1746 if (is_add == 0)
1747 {
Damjan Marionfd8deb42021-03-06 12:26:28 +01001748 for (i = vec_len (vgm->post_mortem_callbacks) - 1; i >= 0; i--)
1749 if (vgm->post_mortem_callbacks[i] == cb)
1750 vec_del1 (vgm->post_mortem_callbacks, i);
Damjan Marion25ab6c52021-03-05 14:41:25 +01001751 return;
1752 }
1753
Damjan Marionfd8deb42021-03-06 12:26:28 +01001754 for (i = 0; i < vec_len (vgm->post_mortem_callbacks); i++)
1755 if (vgm->post_mortem_callbacks[i] == cb)
Damjan Marion25ab6c52021-03-05 14:41:25 +01001756 return;
Damjan Marionfd8deb42021-03-06 12:26:28 +01001757 vec_add1 (vgm->post_mortem_callbacks, cb);
Damjan Marion25ab6c52021-03-05 14:41:25 +01001758}
1759
1760static void
1761elog_post_mortem_dump (void)
1762{
Damjan Marionf553a2c2021-03-26 13:45:37 +01001763 elog_main_t *em = vlib_get_elog_main ();
Damjan Marion25ab6c52021-03-05 14:41:25 +01001764
1765 u8 *filename;
1766 clib_error_t *error;
1767
1768 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
1769 error = elog_write_file (em, (char *) filename, 1 /* flush ring */);
1770 if (error)
1771 clib_error_report (error);
1772 /*
1773 * We're in the middle of crashing. Don't try to free the filename.
1774 */
1775}
1776
Ed Warnickecb9cada2015-12-08 15:45:58 -07001777static clib_error_t *
1778vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1779{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001780 vlib_global_main_t *vgm = vlib_get_global_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001781 int turn_on_mem_trace = 0;
1782
1783 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1784 {
1785 if (unformat (input, "memory-trace"))
1786 turn_on_mem_trace = 1;
1787
1788 else if (unformat (input, "elog-events %d",
Damjan Marionfd8deb42021-03-06 12:26:28 +01001789 &vgm->configured_elog_ring_size))
1790 vgm->configured_elog_ring_size =
1791 1 << max_log2 (vgm->configured_elog_ring_size);
Dave Barach81481312017-05-16 09:08:14 -04001792 else if (unformat (input, "elog-post-mortem-dump"))
Damjan Marion25ab6c52021-03-05 14:41:25 +01001793 vlib_add_del_post_mortem_callback (elog_post_mortem_dump,
1794 /* is_add */ 1);
Dave Barachc74b43c2020-04-09 17:24:07 -04001795 else if (unformat (input, "buffer-alloc-success-rate %f",
1796 &vm->buffer_alloc_success_rate))
1797 {
1798 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
1799 return clib_error_return
1800 (0, "Buffer fault injection not configured");
1801 }
1802 else if (unformat (input, "buffer-alloc-success-seed %u",
1803 &vm->buffer_alloc_success_seed))
1804 {
1805 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR == 0)
1806 return clib_error_return
1807 (0, "Buffer fault injection not configured");
1808 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001809 else
1810 return unformat_parse_error (input);
1811 }
1812
1813 unformat_free (input);
1814
1815 /* Enable memory trace as early as possible. */
1816 if (turn_on_mem_trace)
1817 clib_mem_trace (1);
1818
1819 return 0;
1820}
1821
1822VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1823
Dave Barach9b8ffd92016-07-08 08:13:45 -04001824static void
Dave Barach11fb09e2020-08-06 12:10:09 -04001825placeholder_queue_signal_callback (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001826{
1827}
Dave Barach16c75df2016-05-31 14:05:46 -04001828
Dave Barach1f806582018-06-14 09:18:21 -04001829#define foreach_weak_reference_stub \
Dave Barach1f806582018-06-14 09:18:21 -04001830_(vpe_api_init) \
1831_(vlibmemory_init) \
1832_(map_api_segment_init)
1833
1834#define _(name) \
1835clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1836clib_error_t *name (vlib_main_t *vm) { return 0; }
1837foreach_weak_reference_stub;
1838#undef _
1839
Dave Barachb09f4d02019-07-15 16:00:03 -04001840void vl_api_set_elog_main (elog_main_t * m) __attribute__ ((weak));
1841void
1842vl_api_set_elog_main (elog_main_t * m)
1843{
1844 clib_warning ("STUB");
1845}
1846
1847int vl_api_set_elog_trace_api_messages (int enable) __attribute__ ((weak));
1848int
1849vl_api_set_elog_trace_api_messages (int enable)
1850{
1851 clib_warning ("STUB");
1852 return 0;
1853}
1854
1855int vl_api_get_elog_trace_api_messages (void) __attribute__ ((weak));
1856int
1857vl_api_get_elog_trace_api_messages (void)
1858{
1859 clib_warning ("STUB");
1860 return 0;
1861}
1862
Ed Warnickecb9cada2015-12-08 15:45:58 -07001863/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001864int
Eyal Barid334a6b2016-09-19 10:23:39 +03001865vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001866{
Damjan Marionfd8deb42021-03-06 12:26:28 +01001867 vlib_global_main_t *vgm = vlib_get_global_main ();
Eyal Barid334a6b2016-09-19 10:23:39 +03001868 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001869 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001870
Dave Barach11fb09e2020-08-06 12:10:09 -04001871 vm->queue_signal_callback = placeholder_queue_signal_callback;
Dave Barach16c75df2016-05-31 14:05:46 -04001872
Dave Barachbc867c32020-11-25 10:07:09 -05001873 /* Reconfigure event log which is enabled very early */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001874 if (vgm->configured_elog_ring_size &&
1875 vgm->configured_elog_ring_size != vgm->elog_main.event_ring_size)
1876 elog_resize (&vgm->elog_main, vgm->configured_elog_ring_size);
Damjan Marionf553a2c2021-03-26 13:45:37 +01001877 vl_api_set_elog_main (vlib_get_elog_main ());
Dave Barachb09f4d02019-07-15 16:00:03 -04001878 (void) vl_api_set_elog_trace_api_messages (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001879
1880 /* Default name. */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001881 if (!vgm->name)
1882 vgm->name = "VLIB";
Ed Warnickecb9cada2015-12-08 15:45:58 -07001883
Damjan Marion68b4da62018-09-30 18:26:20 +02001884 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001885 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001886 clib_error_report (error);
1887 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001888 }
Damjan Marion49d66f12017-07-20 18:10:35 +02001889
Damjan Marion8973b072022-03-01 15:51:18 +01001890 if ((error = vlib_stats_init (vm)))
Filip Tehlard2bbdef2019-02-22 05:05:53 -08001891 {
1892 clib_error_report (error);
1893 goto done;
1894 }
1895
Damjan Marion49d66f12017-07-20 18:10:35 +02001896 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001897 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001898 clib_error_report (error);
1899 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001900 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001901
1902 if ((error = vlib_thread_init (vm)))
1903 {
1904 clib_error_report (error);
1905 goto done;
1906 }
1907
Damjan Mariona31698b2021-03-10 14:35:28 +01001908 /* Register node ifunction variants */
1909 vlib_register_all_node_march_variants (vm);
1910
Ed Warnickecb9cada2015-12-08 15:45:58 -07001911 /* Register static nodes so that init functions may use them. */
1912 vlib_register_all_static_nodes (vm);
1913
1914 /* Set seed for random number generator.
1915 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001916 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001917 vm->random_seed = clib_cpu_time_now ();
1918 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1919
Ed Warnickecb9cada2015-12-08 15:45:58 -07001920 /* Initialize node graph. */
1921 if ((error = vlib_node_main_init (vm)))
1922 {
1923 /* Arrange for graph hook up error to not be fatal when debugging. */
1924 if (CLIB_DEBUG > 0)
1925 clib_error_report (error);
1926 else
1927 goto done;
1928 }
1929
Dave Barach1f806582018-06-14 09:18:21 -04001930 /* Direct call / weak reference, for vlib standalone use-cases */
1931 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001932 {
1933 clib_error_report (error);
1934 goto done;
1935 }
1936
Dave Barach1f806582018-06-14 09:18:21 -04001937 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001938 {
1939 clib_error_report (error);
1940 goto done;
1941 }
1942
Dave Barach1f806582018-06-14 09:18:21 -04001943 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001944 {
1945 clib_error_report (error);
1946 goto done;
1947 }
1948
Ole Troan964f93e2016-06-10 13:22:36 +02001949 /* See unix/main.c; most likely already set up */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001950 if (vgm->init_functions_called == 0)
1951 vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02001952 if ((error = vlib_call_all_init_functions (vm)))
1953 goto done;
1954
Dave Barach5c20a012017-06-13 08:48:31 -04001955 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
1956 CLIB_CACHE_LINE_BYTES);
1957
1958 vec_validate (nm->data_from_advancing_timing_wheel, 10);
1959 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1960
1961 /* Create the process timing wheel */
1962 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1963 0 /* no callback */ ,
1964 10e-6 /* timer period 10us */ ,
1965 ~0 /* max expirations per call */ );
1966
Dave Barach2877eee2017-12-15 12:22:57 -05001967 vec_validate (vm->pending_rpc_requests, 0);
1968 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04001969 vec_validate (vm->processing_rpc_requests, 0);
1970 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05001971
Dave Barachc74b43c2020-04-09 17:24:07 -04001972 /* Default params for the buffer allocator fault injector, if configured */
1973 if (VLIB_BUFFER_ALLOC_FAULT_INJECTOR > 0)
1974 {
1975 vm->buffer_alloc_success_seed = 0xdeaddabe;
1976 vm->buffer_alloc_success_rate = 0.80;
1977 }
1978
Dave Barachd1e17d02019-03-21 18:01:48 -04001979 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
1980 goto done;
1981
Dave Barach000a0292020-02-17 17:07:12 -05001982 /*
1983 * Use exponential smoothing, with a half-life of 1 second
1984 * reported_rate(t) = reported_rate(t-1) * K + rate(t)*(1-K)
1985 *
1986 * Sample every 20ms, aka 50 samples per second
1987 * K = exp (-1.0/20.0);
1988 * K = 0.95
1989 */
1990 vm->damping_constant = exp (-1.0 / 20.0);
1991
Dave Barachc602b382019-06-03 19:48:22 -04001992 /* Sort per-thread init functions before we start threads */
Damjan Marionfd8deb42021-03-06 12:26:28 +01001993 vlib_sort_init_exit_functions (&vgm->worker_init_function_registrations);
Dave Barachc602b382019-06-03 19:48:22 -04001994
Dave Barachd1e17d02019-03-21 18:01:48 -04001995 /* Call all main loop enter functions. */
1996 {
1997 clib_error_t *sub_error;
1998 sub_error = vlib_call_all_main_loop_enter_functions (vm);
1999 if (sub_error)
2000 clib_error_report (sub_error);
2001 }
2002
Ed Warnickecb9cada2015-12-08 15:45:58 -07002003 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2004 {
2005 case VLIB_MAIN_LOOP_EXIT_NONE:
2006 vm->main_loop_exit_set = 1;
2007 break;
2008
2009 case VLIB_MAIN_LOOP_EXIT_CLI:
2010 goto done;
2011
2012 default:
2013 error = vm->main_loop_error;
2014 goto done;
2015 }
2016
Ed Warnickecb9cada2015-12-08 15:45:58 -07002017 vlib_main_loop (vm);
2018
Dave Barach9b8ffd92016-07-08 08:13:45 -04002019done:
Kommula Shiva Shankarced43e22021-01-28 13:05:59 +05302020 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002021 /* Call all exit functions. */
2022 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002023 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002024 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2025 if (sub_error)
2026 clib_error_report (sub_error);
2027 }
Kommula Shiva Shankarced43e22021-01-28 13:05:59 +05302028 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002029
2030 if (error)
2031 clib_error_report (error);
2032
Pierre Pfisterc26cc722021-09-10 16:38:03 +02002033 return vm->main_loop_exit_status;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002034}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002035
Dave Barachab1a50c2020-10-06 14:08:16 -04002036vlib_main_t *
2037vlib_get_main_not_inline (void)
2038{
2039 return vlib_get_main ();
2040}
2041
2042elog_main_t *
2043vlib_get_elog_main_not_inline ()
2044{
2045 return &vlib_global_main.elog_main;
2046}
2047
Pierre Pfisterc26cc722021-09-10 16:38:03 +02002048void
2049vlib_exit_with_status (vlib_main_t *vm, int status)
2050{
2051 vm->main_loop_exit_status = status;
2052 __atomic_store_n (&vm->main_loop_exit_now, 1, __ATOMIC_RELEASE);
2053}
2054
Dave Barach9b8ffd92016-07-08 08:13:45 -04002055/*
2056 * fd.io coding-style-patch-verification: ON
2057 *
2058 * Local Variables:
2059 * eval: (c-set-style "gnu")
2060 * End:
2061 */