blob: 43400f8594c857c0acb49cf154a4728d18bfe6ab [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * main.c: main vector processing loop
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <math.h>
41#include <vppinfra/format.h>
42#include <vlib/vlib.h>
43#include <vlib/threads.h>
Dave Barach5c20a012017-06-13 08:48:31 -040044#include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Damjan Marion04a7f052017-07-10 15:06:17 +020046#include <vlib/unix/unix.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047#include <vlib/unix/cj.h>
48
49CJ_GLOBAL_LOG_PROTOTYPE;
50
Ed Warnickecb9cada2015-12-08 15:45:58 -070051/* Actually allocate a few extra slots of vector data to support
52 speculative vector enqueues which overflow vector data in next frame. */
53#define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
54
Damjan Marion6a7acc22016-12-19 16:28:36 +010055u32 wraps;
56
Ed Warnickecb9cada2015-12-08 15:45:58 -070057always_inline u32
58vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
59{
60 u32 n_bytes;
61
62 /* Make room for vlib_frame_t plus scalar arguments. */
63 n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
64
65 /* Make room for vector arguments.
66 Allocate a few extra slots of vector data to support
67 speculative vector enqueues which overflow vector data in next frame. */
68#define VLIB_FRAME_SIZE_EXTRA 4
69 n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
70
71 /* Magic number is first 32bit number after vector data.
72 Used to make sure that vector data is never overrun. */
73#define VLIB_FRAME_MAGIC (0xabadc0ed)
74 n_bytes += sizeof (u32);
75
76 /* Pad to cache line. */
77 n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
78
79 return n_bytes;
80}
81
82always_inline u32 *
83vlib_frame_find_magic (vlib_frame_t * f, vlib_node_t * node)
84{
Dave Barach9b8ffd92016-07-08 08:13:45 -040085 void *p = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87 p += vlib_frame_vector_byte_offset (node->scalar_size);
88
89 p += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * node->vector_size;
90
91 return p;
92}
93
Dave Barach593eedf2019-03-10 09:44:51 -040094static inline vlib_frame_size_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -070095get_frame_size_info (vlib_node_main_t * nm,
96 u32 n_scalar_bytes, u32 n_vector_bytes)
97{
Dave Barach593eedf2019-03-10 09:44:51 -040098#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 uword key = (n_scalar_bytes << 16) | n_vector_bytes;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400100 uword *p, i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 p = hash_get (nm->frame_size_hash, key);
103 if (p)
104 i = p[0];
105 else
106 {
107 i = vec_len (nm->frame_sizes);
108 vec_validate (nm->frame_sizes, i);
109 hash_set (nm->frame_size_hash, key, i);
110 }
111
112 return vec_elt_at_index (nm->frame_sizes, i);
Dave Barach593eedf2019-03-10 09:44:51 -0400113#else
114 ASSERT (vlib_frame_bytes (n_scalar_bytes, n_vector_bytes)
115 == (vlib_frame_bytes (0, 4)));
116 return vec_elt_at_index (nm->frame_sizes, 0);
117#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118}
119
120static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400121vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
122 u32 frame_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400124 vlib_node_main_t *nm = &vm->node_main;
125 vlib_frame_size_t *fs;
126 vlib_node_t *to_node;
127 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 u32 fi, l, n, scalar_size, vector_size;
129
130 to_node = vlib_get_node (vm, to_node_index);
131
132 scalar_size = to_node->scalar_size;
133 vector_size = to_node->vector_size;
134
135 fs = get_frame_size_info (nm, scalar_size, vector_size);
136 n = vlib_frame_bytes (scalar_size, vector_size);
137 if ((l = vec_len (fs->free_frame_indices)) > 0)
138 {
139 /* Allocate from end of free list. */
140 fi = fs->free_frame_indices[l - 1];
141 f = vlib_get_frame_no_check (vm, fi);
142 _vec_len (fs->free_frame_indices) = l - 1;
143 }
144 else
145 {
Damjan Marion3f46baf2016-02-06 19:16:21 +0100146 f = clib_mem_alloc_aligned_no_fail (n, VLIB_FRAME_ALIGN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147 fi = vlib_frame_index_no_check (vm, f);
148 }
149
150 /* Poison frame when debugging. */
151 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400152 clib_memset (f, 0xfe, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
154 /* Insert magic number. */
155 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 u32 *magic;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
158 magic = vlib_frame_find_magic (f, to_node);
159 *magic = VLIB_FRAME_MAGIC;
160 }
161
Damjan Marion633b6fd2018-09-14 14:38:53 +0200162 f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 f->n_vectors = 0;
164 f->scalar_size = scalar_size;
165 f->vector_size = vector_size;
Damjan Mariona3d59862018-11-10 10:23:00 +0100166 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 fs->n_alloc_frames += 1;
169
170 return fi;
171}
172
173/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
174 Returns frame index. */
175static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400176vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
177 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400179 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
181 from_node = vlib_get_node (vm, from_node_runtime->node_index);
182 ASSERT (to_next_index < vec_len (from_node->next_nodes));
183
Dave Barach9b8ffd92016-07-08 08:13:45 -0400184 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 /* frame_flags */ 0);
186}
187
188vlib_frame_t *
189vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
190{
191 u32 fi = vlib_frame_alloc_to_node (vm, to_node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192 /* frame_flags */
193 VLIB_FRAME_FREE_AFTER_DISPATCH);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 return vlib_get_frame (vm, fi);
195}
196
Dave Barach9b8ffd92016-07-08 08:13:45 -0400197void
198vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400200 vlib_pending_frame_t *p;
201 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
203 if (f->n_vectors == 0)
204 return;
205
206 to_node = vlib_get_node (vm, to_node_index);
207
208 vec_add2 (vm->node_main.pending_frames, p, 1);
209
Damjan Marion633b6fd2018-09-14 14:38:53 +0200210 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 p->frame_index = vlib_frame_index (vm, f);
212 p->node_runtime_index = to_node->runtime_index;
213 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
214}
215
216/* Free given frame. */
217void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400220 vlib_node_main_t *nm = &vm->node_main;
221 vlib_node_t *node;
222 vlib_frame_size_t *fs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 u32 frame_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400224
Damjan Marion633b6fd2018-09-14 14:38:53 +0200225 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
227 node = vlib_get_node (vm, r->node_index);
228 fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
229
230 frame_index = vlib_frame_index (vm, f);
231
Damjan Marion633b6fd2018-09-14 14:38:53 +0200232 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233
234 /* No next frames may point to freed frame. */
235 if (CLIB_DEBUG > 0)
236 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400237 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 vec_foreach (nf, vm->node_main.next_frames)
239 ASSERT (nf->frame_index != frame_index);
240 }
241
Damjan Marion296988d2019-02-21 20:24:54 +0100242 f->frame_flags &= ~(VLIB_FRAME_IS_ALLOCATED | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
244 vec_add1 (fs->free_frame_indices, frame_index);
245 ASSERT (fs->n_alloc_frames > 0);
246 fs->n_alloc_frames -= 1;
247}
248
249static clib_error_t *
250show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vlib_node_main_t *nm = &vm->node_main;
254 vlib_frame_size_t *fs;
255
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
257 vec_foreach (fs, nm->frame_sizes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400258 {
259 u32 n_alloc = fs->n_alloc_frames;
260 u32 n_free = vec_len (fs->free_frame_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
Dave Barach9b8ffd92016-07-08 08:13:45 -0400262 if (n_alloc + n_free > 0)
263 vlib_cli_output (vm, "%=6d%=12d%=12d",
264 fs - nm->frame_sizes, n_alloc, n_free);
265 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
267 return 0;
268}
269
Dave Barach9b8ffd92016-07-08 08:13:45 -0400270/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
272 .path = "show vlib frame-allocation",
273 .short_help = "Show node dispatch frame statistics",
274 .function = show_frame_stats,
275};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
278/* Change ownership of enqueue rights to given next node. */
279static void
280vlib_next_frame_change_ownership (vlib_main_t * vm,
281 vlib_node_runtime_t * node_runtime,
282 u32 next_index)
283{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400284 vlib_node_main_t *nm = &vm->node_main;
285 vlib_next_frame_t *next_frame;
286 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287
288 node = vec_elt (nm->nodes, node_runtime->node_index);
289
290 /* Only internal & input nodes are allowed to call other nodes. */
291 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
292 || node->type == VLIB_NODE_TYPE_INPUT
293 || node->type == VLIB_NODE_TYPE_PROCESS);
294
295 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
296
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 next_frame =
298 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
300
301 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
302 {
303 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400304 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 vlib_next_frame_t tmp;
306
307 owner_next_frame =
308 vlib_node_get_next_frame (vm,
309 next_node->owner_node_index,
310 next_node->owner_next_index);
311
312 /* Swap target next frame with owner's. */
313 tmp = owner_next_frame[0];
314 owner_next_frame[0] = next_frame[0];
315 next_frame[0] = tmp;
316
317 /*
318 * If next_frame is already pending, we have to track down
319 * all pending frames and fix their next_frame_index fields.
320 */
321 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322 {
323 vlib_pending_frame_t *p;
324 if (next_frame->frame_index != ~0)
325 {
326 vec_foreach (p, nm->pending_frames)
327 {
328 if (p->frame_index == next_frame->frame_index)
329 {
330 p->next_frame_index =
331 next_frame - vm->node_main.next_frames;
332 }
333 }
334 }
335 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 }
337 else
338 {
339 /* No previous owner. Take ownership. */
340 next_frame->flags |= VLIB_FRAME_OWNER;
341 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 /* Record new owner. */
344 next_node->owner_node_index = node->index;
345 next_node->owner_next_index = next_index;
346
347 /* Now we should be owner. */
348 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
351/* Make sure that magic number is still there.
352 Otherwise, it is likely that caller has overrun frame arguments. */
353always_inline void
354validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400355 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400357 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
358 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
360}
361
362vlib_frame_t *
363vlib_get_next_frame_internal (vlib_main_t * vm,
364 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400365 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 vlib_frame_t *f;
368 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 u32 n_used;
370
371 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
372
373 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400374 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 vlib_next_frame_change_ownership (vm, node, next_index);
376
377 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400378 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 {
380 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
381 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
382 }
383
384 f = vlib_get_frame (vm, nf->frame_index);
385
386 /* Has frame been removed from pending vector (e.g. finished dispatching)?
387 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200388 if ((nf->flags & VLIB_FRAME_PENDING)
389 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 {
391 nf->flags &= ~VLIB_FRAME_PENDING;
392 f->n_vectors = 0;
Damjan Marion9162c2d2018-11-20 09:55:10 +0100393 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 }
395
Damjan Marion296988d2019-02-21 20:24:54 +0100396 /* Allocate new frame if current one is marked as no-append or
397 it is already full. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 n_used = f->n_vectors;
Damjan Marion296988d2019-02-21 20:24:54 +0100399 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
400 (f->frame_flags & VLIB_FRAME_NO_APPEND))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 {
402 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 two redundant frames from node -> next node. */
404 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400406 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200407 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 }
409
410 /* Allocate new frame to replace full one. */
411 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
412 f = vlib_get_frame (vm, nf->frame_index);
413 n_used = f->n_vectors;
414 }
415
416 /* Should have free vectors in frame now. */
417 ASSERT (n_used < VLIB_FRAME_SIZE);
418
419 if (CLIB_DEBUG > 0)
420 {
421 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 }
424
425 return f;
426}
427
428static void
429vlib_put_next_frame_validate (vlib_main_t * vm,
430 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400431 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400433 vlib_node_main_t *nm = &vm->node_main;
434 vlib_next_frame_t *nf;
435 vlib_frame_t *f;
436 vlib_node_runtime_t *next_rt;
437 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 u32 n_before, n_after;
439
440 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
441 f = vlib_get_frame (vm, nf->frame_index);
442
443 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
444 n_after = VLIB_FRAME_SIZE - n_vectors_left;
445 n_before = f->n_vectors;
446
447 ASSERT (n_after >= n_before);
448
449 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
450 nf->node_runtime_index);
451 next_node = vlib_get_node (vm, next_rt->node_index);
452 if (n_after > 0 && next_node->validate_frame)
453 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 if (msg)
456 {
457 clib_warning ("%v", msg);
458 ASSERT (0);
459 }
460 vec_free (msg);
461 }
462}
463
464void
465vlib_put_next_frame (vlib_main_t * vm,
466 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400467 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400469 vlib_node_main_t *nm = &vm->node_main;
470 vlib_next_frame_t *nf;
471 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 u32 n_vectors_in_frame;
473
Damjan Marion910d3692019-01-21 11:48:34 +0100474 if (CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
476
477 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
478 f = vlib_get_frame (vm, nf->frame_index);
479
480 /* Make sure that magic number is still there. Otherwise, caller
481 has overrun frame meta data. */
482 if (CLIB_DEBUG > 0)
483 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 validate_frame_magic (vm, f, node, next_index);
486 }
487
488 /* Convert # of vectors left -> number of vectors there. */
489 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
490 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
491
492 f->n_vectors = n_vectors_in_frame;
493
494 /* If vectors were added to frame, add to pending vector. */
495 if (PREDICT_TRUE (n_vectors_in_frame > 0))
496 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400499
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500 r->cached_next_index = next_index;
501
Damjan Marion633b6fd2018-09-14 14:38:53 +0200502 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400503 {
504 __attribute__ ((unused)) vlib_node_t *node;
505 vlib_node_t *next_node;
506 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Dave Barach9b8ffd92016-07-08 08:13:45 -0400508 node = vlib_get_node (vm, r->node_index);
509 next_node = vlib_get_next_node (vm, r->node_index, next_index);
510 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
Dave Barach9b8ffd92016-07-08 08:13:45 -0400512 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514 p->frame_index = nf->frame_index;
515 p->node_runtime_index = nf->node_runtime_index;
516 p->next_frame_index = nf - nm->next_frames;
517 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200518 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
Dave Barach9b8ffd92016-07-08 08:13:45 -0400520 /*
521 * If we're going to dispatch this frame on another thread,
522 * force allocation of a new frame. Otherwise, we create
523 * a dangling frame reference. Each thread has its own copy of
524 * the next_frames vector.
525 */
Damjan Marion586afd72017-04-05 19:18:20 +0200526 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400527 {
528 nf->frame_index = ~0;
529 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
530 }
531 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532
533 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400534 nf->flags |=
535 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
536 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
538 v0 = nf->vectors_since_last_overflow;
539 v1 = v0 + n_vectors_in_frame;
540 nf->vectors_since_last_overflow = v1;
541 if (PREDICT_FALSE (v1 < v0))
542 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
545 }
546 }
547}
548
549/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
550never_inline void
551vlib_node_runtime_sync_stats (vlib_main_t * vm,
552 vlib_node_runtime_t * r,
Dave Barach4d1a8662018-09-10 12:31:15 -0400553 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500554 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
559 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
560 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500561 n->stats_total.perf_counter0_ticks += n_ticks0 +
562 r->perf_counter0_ticks_since_last_overflow;
563 n->stats_total.perf_counter1_ticks += n_ticks1 +
564 r->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400565 n->stats_total.perf_counter_vectors += n_vectors +
566 r->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 n->stats_total.max_clock = r->max_clock;
568 n->stats_total.max_clock_n = r->max_clock_n;
569
570 r->calls_since_last_overflow = 0;
571 r->vectors_since_last_overflow = 0;
572 r->clocks_since_last_overflow = 0;
Dave Barachec595ef2019-01-24 10:34:24 -0500573 r->perf_counter0_ticks_since_last_overflow = 0ULL;
574 r->perf_counter1_ticks_since_last_overflow = 0ULL;
Dave Barach4d1a8662018-09-10 12:31:15 -0400575 r->perf_counter_vectors_since_last_overflow = 0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576}
577
Dave Barach9b8ffd92016-07-08 08:13:45 -0400578always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579vlib_process_sync_stats (vlib_main_t * vm,
580 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400581 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500582 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584 vlib_node_runtime_t *rt = &p->node_runtime;
585 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Dave Barach4d1a8662018-09-10 12:31:15 -0400586 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500587 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 n->stats_total.suspends += p->n_suspends;
589 p->n_suspends = 0;
590}
591
Dave Barach9b8ffd92016-07-08 08:13:45 -0400592void
593vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400595 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
597 if (n->type == VLIB_NODE_TYPE_PROCESS)
598 {
599 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400600 if (vm != &vlib_global_main)
601 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Dave Barach9b8ffd92016-07-08 08:13:45 -0400603 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604 n->stats_total.suspends += p->n_suspends;
605 p->n_suspends = 0;
606 rt = &p->node_runtime;
607 }
608 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609 rt =
610 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
611 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Dave Barachec595ef2019-01-24 10:34:24 -0500613 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
615 /* Sync up runtime next frame vector counters with main node structure. */
616 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 uword i;
619 for (i = 0; i < rt->n_next_nodes; i++)
620 {
621 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400622 vec_elt (n->n_vectors_by_next_node, i) +=
623 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 nf->vectors_since_last_overflow = 0;
625 }
626 }
627}
628
629always_inline u32
630vlib_node_runtime_update_stats (vlib_main_t * vm,
631 vlib_node_runtime_t * node,
632 uword n_calls,
Dave Barach4d1a8662018-09-10 12:31:15 -0400633 uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500634 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635{
636 u32 ca0, ca1, v0, v1, cl0, cl1, r;
Dave Barachec595ef2019-01-24 10:34:24 -0500637 u32 ptick00, ptick01, ptick10, ptick11, pvec0, pvec1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638
639 cl0 = cl1 = node->clocks_since_last_overflow;
640 ca0 = ca1 = node->calls_since_last_overflow;
641 v0 = v1 = node->vectors_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500642 ptick00 = ptick01 = node->perf_counter0_ticks_since_last_overflow;
643 ptick10 = ptick11 = node->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400644 pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
646 ca1 = ca0 + n_calls;
647 v1 = v0 + n_vectors;
648 cl1 = cl0 + n_clocks;
Dave Barachec595ef2019-01-24 10:34:24 -0500649 ptick01 = ptick00 + n_ticks0;
650 ptick11 = ptick10 + n_ticks1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400651 pvec1 = pvec0 + n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652
653 node->calls_since_last_overflow = ca1;
654 node->clocks_since_last_overflow = cl1;
655 node->vectors_since_last_overflow = v1;
Dave Barachec595ef2019-01-24 10:34:24 -0500656 node->perf_counter0_ticks_since_last_overflow = ptick01;
657 node->perf_counter1_ticks_since_last_overflow = ptick11;
Dave Barach4d1a8662018-09-10 12:31:15 -0400658 node->perf_counter_vectors_since_last_overflow = pvec1;
659
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 node->max_clock_n : n_vectors;
662 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663
664 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
665
Dave Barachec595ef2019-01-24 10:34:24 -0500666 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick01 < ptick00)
667 || (ptick11 < ptick10) || (pvec1 < pvec0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 {
669 node->calls_since_last_overflow = ca0;
670 node->clocks_since_last_overflow = cl0;
671 node->vectors_since_last_overflow = v0;
Dave Barachec595ef2019-01-24 10:34:24 -0500672 node->perf_counter0_ticks_since_last_overflow = ptick00;
673 node->perf_counter1_ticks_since_last_overflow = ptick10;
Dave Barach4d1a8662018-09-10 12:31:15 -0400674 node->perf_counter_vectors_since_last_overflow = pvec0;
675
676 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500677 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 }
679
680 return r;
681}
682
Dave Barach17e5d802019-05-01 11:30:13 -0400683always_inline void
684vlib_node_runtime_perf_counter (vlib_main_t * vm, u64 * pmc0, u64 * pmc1,
685 vlib_node_runtime_t * node,
686 vlib_frame_t * frame, int before_or_after)
Dave Barach4d1a8662018-09-10 12:31:15 -0400687{
Dave Barachec595ef2019-01-24 10:34:24 -0500688 *pmc0 = 0;
689 *pmc1 = 0;
Dave Barach5f2cfb22019-05-20 10:28:57 -0400690 if (PREDICT_FALSE (vec_len (vm->vlib_node_runtime_perf_counter_cbs) != 0))
691 clib_call_callbacks (vm->vlib_node_runtime_perf_counter_cbs, vm, pmc0,
692 pmc1, node, frame, before_or_after);
Dave Barach4d1a8662018-09-10 12:31:15 -0400693}
694
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695always_inline void
696vlib_process_update_stats (vlib_main_t * vm,
697 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500698 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699{
700 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Dave Barachec595ef2019-01-24 10:34:24 -0500701 n_calls, n_vectors, n_clocks, 0ULL, 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702}
703
704static clib_error_t *
705vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400706 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707{
708 elog_reset_buffer (&vm->elog_main);
709 return 0;
710}
711
Dave Barach9b8ffd92016-07-08 08:13:45 -0400712/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400714 .path = "event-logger clear",
715 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 .function = vlib_cli_elog_clear,
717};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400718/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719
720#ifdef CLIB_UNIX
721static clib_error_t *
722elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400723 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 elog_main_t *em = &vm->elog_main;
726 char *file, *chroot_file;
727 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 {
731 vlib_cli_output (vm, "expected file name, got `%U'",
732 format_unformat_error, input);
733 return 0;
734 }
735
736 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400737 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738 {
739 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
740 return 0;
741 }
742
743 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
744
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746
747 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748 elog_n_events_in_buffer (em),
749 elog_buffer_capacity (em), chroot_file);
750
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400752 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400753 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 vec_free (chroot_file);
755 return error;
756}
757
Dave Barach81481312017-05-16 09:08:14 -0400758void
759elog_post_mortem_dump (void)
760{
761 vlib_main_t *vm = &vlib_global_main;
762 elog_main_t *em = &vm->elog_main;
763 u8 *filename;
764 clib_error_t *error;
765
766 if (!vm->elog_post_mortem_dump)
767 return;
768
769 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
770 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
771 if (error)
772 clib_error_report (error);
773 vec_free (filename);
774}
775
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400778 .path = "event-logger save",
779 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 .function = elog_save_buffer,
781};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
Dave Barache5389bb2016-03-28 17:12:19 -0400784static clib_error_t *
785elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400786 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400787{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400789
790 em->n_total_events_disable_limit = em->n_total_events;
791
792 vlib_cli_output (vm, "Stopped the event logger...");
793 return 0;
794}
795
Dave Barach9b8ffd92016-07-08 08:13:45 -0400796/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400797VLIB_CLI_COMMAND (elog_stop_cli, static) = {
798 .path = "event-logger stop",
799 .short_help = "Stop the event-logger",
800 .function = elog_stop,
801};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400803
804static clib_error_t *
805elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400807{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400809
810 em->n_total_events_disable_limit = ~0;
811
812 vlib_cli_output (vm, "Restarted the event logger...");
813 return 0;
814}
815
Dave Barach9b8ffd92016-07-08 08:13:45 -0400816/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400817VLIB_CLI_COMMAND (elog_restart_cli, static) = {
818 .path = "event-logger restart",
819 .short_help = "Restart the event-logger",
820 .function = elog_restart,
821};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400822/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400823
824static clib_error_t *
825elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400827{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400829 u32 tmp;
830
831 /* Stop the parade */
832 elog_reset_buffer (&vm->elog_main);
833
834 if (unformat (input, "%d", &tmp))
835 {
836 elog_alloc (em, tmp);
837 em->n_total_events_disable_limit = ~0;
838 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 else
Dave Barache5389bb2016-03-28 17:12:19 -0400840 return clib_error_return (0, "Must specify how many events in the ring");
841
842 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
843 return 0;
844}
845
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400847VLIB_CLI_COMMAND (elog_resize_cli, static) = {
848 .path = "event-logger resize",
849 .short_help = "event-logger resize <nnn>",
850 .function = elog_resize,
851};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400852/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400853
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854#endif /* CLIB_UNIX */
855
Dave Barach9b8ffd92016-07-08 08:13:45 -0400856static void
857elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400859 elog_main_t *em = &vm->elog_main;
860 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861 f64 dt;
862
863 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 * vm->clib_time.seconds_per_clock;
866
867 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
869 em->event_ring_size,
870 em->n_total_events < em->n_total_events_disable_limit ?
871 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400873 {
874 vlib_cli_output (vm, "%18.9f: %U",
875 e->time + dt, format_elog_event, em, e);
876 n_events_to_show--;
877 if (n_events_to_show == 0)
878 break;
879 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400881
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882}
883
884static clib_error_t *
885elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400886 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887{
888 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400889 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890
891 n_events_to_show = 250;
892 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
893 {
894 if (unformat (input, "%d", &n_events_to_show))
895 ;
896 else if (unformat (input, "all"))
897 n_events_to_show = ~0;
898 else
899 return unformat_parse_error (input);
900 }
901 elog_show_buffer_internal (vm, n_events_to_show);
902 return error;
903}
904
Dave Barach9b8ffd92016-07-08 08:13:45 -0400905/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906VLIB_CLI_COMMAND (elog_show_cli, static) = {
907 .path = "show event-logger",
908 .short_help = "Show event logger info",
909 .function = elog_show_buffer,
910};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400911/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912
Dave Barach9b8ffd92016-07-08 08:13:45 -0400913void
914vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917}
918
Dave Barachfb6e59d2016-03-26 18:45:42 -0400919static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920vlib_elog_main_loop_event (vlib_main_t * vm,
921 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400922 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400924 vlib_main_t *evm = &vlib_global_main;
925 elog_main_t *em = &evm->elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -0500926 int enabled = evm->elog_trace_graph_dispatch |
927 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Dave Barach900cbad2019-01-31 19:12:51 -0500929 if (PREDICT_FALSE (enabled && n_vectors))
930 {
931 if (PREDICT_FALSE (!elog_is_enabled (em)))
932 {
933 evm->elog_trace_graph_dispatch = 0;
934 evm->elog_trace_graph_circuit = 0;
935 return;
936 }
937 if (PREDICT_TRUE
938 (evm->elog_trace_graph_dispatch ||
939 (evm->elog_trace_graph_circuit &&
940 node_index == evm->elog_trace_graph_circuit_node_index)))
941 {
942 elog_track (em,
943 /* event type */
944 vec_elt_at_index (is_return
945 ? evm->node_return_elog_event_types
946 : evm->node_call_elog_event_types,
947 node_index),
948 /* track */
949 (vm->thread_index ?
950 &vlib_worker_threads[vm->thread_index].elog_track
951 : &em->default_track),
952 /* data to log */ n_vectors);
953 }
954 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955}
956
Dave Barach7bee7732017-10-18 18:48:11 -0400957#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
958void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
959void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
960
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961void
Dave Barach7bee7732017-10-18 18:48:11 -0400962vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963{
Dave Barach7bee7732017-10-18 18:48:11 -0400964 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 {
Dave Barach7bee7732017-10-18 18:48:11 -0400966 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967 }
968}
969
Dave Barach7bee7732017-10-18 18:48:11 -0400970#endif
971
972static inline void
973add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
974{
975#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
976 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
977 {
978 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
979 }
980#endif
981}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982
Dave Barach7fff3d22018-11-27 16:52:59 -0500983u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
984u8 *
985format_vnet_buffer_flags (u8 * s, va_list * args)
986{
987 s = format (s, "BUG STUB %s", __FUNCTION__);
988 return s;
989}
990
991u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
992u8 *
993format_vnet_buffer_opaque (u8 * s, va_list * args)
994{
995 s = format (s, "BUG STUB %s", __FUNCTION__);
996 return s;
997}
998
999u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1000 __attribute__ ((weak));
1001u8 *
1002format_vnet_buffer_opaque2 (u8 * s, va_list * args)
1003{
1004 s = format (s, "BUG STUB %s", __FUNCTION__);
1005 return s;
1006}
1007
1008static u8 *
1009format_buffer_metadata (u8 * s, va_list * args)
1010{
1011 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
1012
1013 s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
1014 s = format (s, "current_data: %d, current_length: %d\n",
1015 (i32) (b->current_data), (i32) (b->current_length));
1016 s = format (s, "current_config_index: %d, flow_id: %x, next_buffer: %x\n",
1017 b->current_config_index, b->flow_id, b->next_buffer);
Damjan Marion910d3692019-01-21 11:48:34 +01001018 s = format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1019 (u32) (b->error), (u32) (b->ref_count),
Dave Barach7fff3d22018-11-27 16:52:59 -05001020 (u32) (b->buffer_pool_index));
1021 s = format (s,
Damjan Marion9a8a12a2019-01-23 16:52:10 +01001022 "trace_index: %d, len_not_first_buf: %d\n",
1023 b->trace_index, b->total_length_not_including_first_buffer);
Dave Barach7fff3d22018-11-27 16:52:59 -05001024 return s;
1025}
1026
1027#define A(x) vec_add1(vm->pcap_buffer, (x))
1028
Dave Barach3ae28732018-11-16 17:19:00 -05001029static void
1030dispatch_pcap_trace (vlib_main_t * vm,
1031 vlib_node_runtime_t * node, vlib_frame_t * frame)
1032{
1033 int i;
1034 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
Dave Barach3ae28732018-11-16 17:19:00 -05001035 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05001036 vlib_trace_main_t *tm = &vm->trace_main;
Dave Barach3ae28732018-11-16 17:19:00 -05001037 u32 capture_size;
1038 vlib_node_t *n;
1039 i32 n_left;
1040 f64 time_now = vlib_time_now (vm);
1041 u32 *from;
Dave Barach3ae28732018-11-16 17:19:00 -05001042 u8 *d;
Dave Barach7fff3d22018-11-27 16:52:59 -05001043 u8 string_count;
Dave Barach3ae28732018-11-16 17:19:00 -05001044
1045 /* Input nodes don't have frames yet */
1046 if (frame == 0 || frame->n_vectors == 0)
1047 return;
1048
1049 from = vlib_frame_vector_args (frame);
1050 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1051 bufp = bufs;
1052
Dave Barach3ae28732018-11-16 17:19:00 -05001053 n = vlib_get_node (vm, node->node_index);
Dave Barach3ae28732018-11-16 17:19:00 -05001054
1055 for (i = 0; i < frame->n_vectors; i++)
1056 {
1057 if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1058 {
1059 b = bufp[i];
1060
Dave Barach7fff3d22018-11-27 16:52:59 -05001061 vec_reset_length (vm->pcap_buffer);
1062 string_count = 0;
Dave Barach1201a802018-11-20 12:08:39 -05001063
Dave Barach7fff3d22018-11-27 16:52:59 -05001064 /* Version, flags */
1065 A ((u8) VLIB_PCAP_MAJOR_VERSION);
1066 A ((u8) VLIB_PCAP_MINOR_VERSION);
1067 A (0 /* string_count */ );
1068 A (n->protocol_hint);
1069
1070 /* Buffer index (big endian) */
1071 A ((from[i] >> 24) & 0xff);
1072 A ((from[i] >> 16) & 0xff);
1073 A ((from[i] >> 8) & 0xff);
1074 A ((from[i] >> 0) & 0xff);
1075
1076 /* Node name, NULL-terminated ASCII */
1077 vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1078 string_count++;
1079
1080 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1081 format_buffer_metadata, b, 0);
1082 string_count++;
1083 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1084 format_vnet_buffer_opaque, b, 0);
1085 string_count++;
1086 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1087 format_vnet_buffer_opaque2, b, 0);
1088 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001089
1090 /* Is this packet traced? */
1091 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1092 {
1093 vlib_trace_header_t **h
1094 = pool_elt_at_index (tm->trace_buffer_pool, b->trace_index);
1095
Dave Barach7fff3d22018-11-27 16:52:59 -05001096 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1097 format_vlib_trace, vm, h[0], 0);
1098 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001099 }
1100
Dave Barach7fff3d22018-11-27 16:52:59 -05001101 /* Save the string count */
1102 vm->pcap_buffer[2] = string_count;
1103
1104 /* Figure out how many bytes in the pcap trace */
1105 capture_size = vec_len (vm->pcap_buffer) +
1106 +vlib_buffer_length_in_chain (vm, b);
Dave Barach3ae28732018-11-16 17:19:00 -05001107
1108 clib_spinlock_lock_if_init (&pm->lock);
Dave Barach1201a802018-11-20 12:08:39 -05001109 n_left = clib_min (capture_size, 16384);
Dave Barach3ae28732018-11-16 17:19:00 -05001110 d = pcap_add_packet (pm, time_now, n_left, capture_size);
1111
Dave Barach7fff3d22018-11-27 16:52:59 -05001112 /* Copy the header */
1113 clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1114 d += vec_len (vm->pcap_buffer);
Dave Barach1201a802018-11-20 12:08:39 -05001115
1116 n_left = clib_min
1117 (vlib_buffer_length_in_chain (vm, b),
Dave Barach7fff3d22018-11-27 16:52:59 -05001118 (16384 - vec_len (vm->pcap_buffer)));
Dave Barach3ae28732018-11-16 17:19:00 -05001119 /* Copy the packet data */
1120 while (1)
1121 {
1122 u32 copy_length = clib_min ((u32) n_left, b->current_length);
1123 clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1124 n_left -= b->current_length;
1125 if (n_left <= 0)
1126 break;
1127 d += b->current_length;
1128 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1129 b = vlib_get_buffer (vm, b->next_buffer);
1130 }
1131 clib_spinlock_unlock_if_init (&pm->lock);
1132 }
1133 }
1134}
1135
Damjan Marion9a332e12017-03-28 15:11:20 +02001136static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137dispatch_node (vlib_main_t * vm,
1138 vlib_node_runtime_t * node,
1139 vlib_node_type_t type,
1140 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001141 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142{
1143 uword n, v;
1144 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001145 vlib_node_main_t *nm = &vm->node_main;
1146 vlib_next_frame_t *nf;
Dave Barach900cbad2019-01-31 19:12:51 -05001147 u64 pmc_before[2], pmc_after[2], pmc_delta[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148
1149 if (CLIB_DEBUG > 0)
1150 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001151 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 ASSERT (n->type == type);
1153 }
1154
1155 /* Only non-internal nodes may be disabled. */
1156 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1157 {
1158 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1159 return last_time_stamp;
1160 }
1161
1162 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1163 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1164 {
1165 u32 c = node->input_main_loops_per_call;
1166 /* Only call node when count reaches zero. */
1167 if (c)
1168 {
1169 node->input_main_loops_per_call = c - 1;
1170 return last_time_stamp;
1171 }
1172 }
1173
1174 /* Speculatively prefetch next frames. */
1175 if (node->n_next_nodes > 0)
1176 {
1177 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1178 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1179 }
1180
1181 vm->cpu_time_last_node_dispatch = last_time_stamp;
1182
Dave Barach900cbad2019-01-31 19:12:51 -05001183 vlib_elog_main_loop_event (vm, node->node_index,
1184 last_time_stamp, frame ? frame->n_vectors : 0,
1185 /* is_after */ 0);
1186
Dave Barach17e5d802019-05-01 11:30:13 -04001187 vlib_node_runtime_perf_counter (vm, &pmc_before[0], &pmc_before[1],
1188 node, frame, 0 /* before */ );
Dave Barach900cbad2019-01-31 19:12:51 -05001189
1190 /*
1191 * Turn this on if you run into
1192 * "bad monkey" contexts, and you want to know exactly
1193 * which nodes they've visited... See ixge.c...
1194 */
1195 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196 {
Dave Barach900cbad2019-01-31 19:12:51 -05001197 int i;
1198 u32 *from;
1199 from = vlib_frame_vector_args (frame);
1200 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001201 {
Dave Barach900cbad2019-01-31 19:12:51 -05001202 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1203 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001204 }
Dave Barach900cbad2019-01-31 19:12:51 -05001205 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1206 dispatch_pcap_trace (vm, node, frame);
1207 n = node->function (vm, node, frame);
1208 }
1209 else
1210 {
1211 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1212 dispatch_pcap_trace (vm, node, frame);
1213 n = node->function (vm, node, frame);
1214 }
1215
1216 t = clib_cpu_time_now ();
1217
1218 /*
1219 * To validate accounting: pmc_delta = t - pmc_before;
1220 * perf ticks should equal clocks/pkt...
1221 */
Dave Barach17e5d802019-05-01 11:30:13 -04001222 vlib_node_runtime_perf_counter (vm, &pmc_after[0], &pmc_after[1], node,
1223 frame, 1 /* after */ );
Dave Barach900cbad2019-01-31 19:12:51 -05001224
1225 pmc_delta[0] = pmc_after[0] - pmc_before[0];
1226 pmc_delta[1] = pmc_after[1] - pmc_before[1];
1227
1228 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1229
1230 vm->main_loop_vectors_processed += n;
1231 vm->main_loop_nodes_processed += n > 0;
1232
1233 v = vlib_node_runtime_update_stats (vm, node,
1234 /* n_calls */ 1,
1235 /* n_vectors */ n,
1236 /* n_clocks */ t - last_time_stamp,
1237 pmc_delta[0] /* PMC0 */ ,
1238 pmc_delta[1] /* PMC1 */ );
1239
1240 /* When in interrupt mode and vector rate crosses threshold switch to
1241 polling mode. */
1242 if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1243 || (dispatch_state == VLIB_NODE_STATE_POLLING
1244 && (node->flags
1245 &
1246 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))))
1247 {
1248 /* *INDENT-OFF* */
1249 ELOG_TYPE_DECLARE (e) =
1250 {
1251 .function = (char *) __FUNCTION__,
1252 .format = "%s vector length %d, switching to %s",
1253 .format_args = "T4i4t4",
1254 .n_enum_strings = 2,
1255 .enum_strings = {
1256 "interrupt", "polling",
1257 },
1258 };
1259 /* *INDENT-ON* */
1260 struct
1261 {
1262 u32 node_name, vector_length, is_polling;
1263 } *ed;
1264
1265 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1266 && v >= nm->polling_threshold_vector_length) &&
1267 !(node->flags &
1268 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -05001269 {
Dave Barach900cbad2019-01-31 19:12:51 -05001270 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1271 n->state = VLIB_NODE_STATE_POLLING;
1272 node->state = VLIB_NODE_STATE_POLLING;
1273 node->flags &=
1274 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1275 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1276 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1277 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278
Dave Barach900cbad2019-01-31 19:12:51 -05001279 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001280 {
Dave Barach900cbad2019-01-31 19:12:51 -05001281 vlib_worker_thread_t *w = vlib_worker_threads
1282 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001283
Steven6aa75af2017-02-24 10:03:22 -08001284 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1285 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001286 ed->node_name = n->name_elog_string;
1287 ed->vector_length = v;
1288 ed->is_polling = 1;
1289 }
Dave Barach900cbad2019-01-31 19:12:51 -05001290 }
1291 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1292 && v <= nm->interrupt_threshold_vector_length)
1293 {
1294 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1295 if (node->flags &
1296 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001297 {
Dave Barach900cbad2019-01-31 19:12:51 -05001298 /* Switch to interrupt mode after dispatch in polling one more time.
1299 This allows driver to re-enable interrupts. */
1300 n->state = VLIB_NODE_STATE_INTERRUPT;
1301 node->state = VLIB_NODE_STATE_INTERRUPT;
1302 node->flags &=
1303 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1304 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1305 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001306
Dave Barach900cbad2019-01-31 19:12:51 -05001307 }
1308 else
1309 {
1310 vlib_worker_thread_t *w = vlib_worker_threads
1311 + vm->thread_index;
1312 node->flags |=
1313 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1314 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001315 {
Steven6aa75af2017-02-24 10:03:22 -08001316 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1317 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001318 ed->node_name = n->name_elog_string;
1319 ed->vector_length = v;
1320 ed->is_polling = 0;
1321 }
1322 }
1323 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001324 }
1325
1326 return t;
1327}
1328
Damjan Marion9a332e12017-03-28 15:11:20 +02001329static u64
Dave Baracha6269992017-06-07 08:18:49 -04001330dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1331 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001333 vlib_node_main_t *nm = &vm->node_main;
1334 vlib_frame_t *f;
1335 vlib_next_frame_t *nf, nf_dummy;
1336 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337 u32 restore_frame_index;
Dave Baracha6269992017-06-07 08:18:49 -04001338 vlib_pending_frame_t *p;
1339
1340 /* See comment below about dangling references to nm->pending_frames */
1341 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001342
1343 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1344 p->node_runtime_index);
1345
1346 f = vlib_get_frame (vm, p->frame_index);
1347 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1348 {
1349 /* No next frame: so use dummy on stack. */
1350 nf = &nf_dummy;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001351 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352 nf->frame_index = ~p->frame_index;
1353 }
1354 else
1355 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1356
Damjan Marion633b6fd2018-09-14 14:38:53 +02001357 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358
1359 /* Force allocation of new frame while current frame is being
1360 dispatched. */
1361 restore_frame_index = ~0;
1362 if (nf->frame_index == p->frame_index)
1363 {
1364 nf->frame_index = ~0;
1365 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001366 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 restore_frame_index = p->frame_index;
1368 }
1369
1370 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001371 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372 ASSERT (f->n_vectors > 0);
1373
1374 /* Copy trace flag from next frame to node.
1375 Trace flag indicates that at least one vector in the dispatched
1376 frame is traced. */
1377 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1378 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1379 nf->flags &= ~VLIB_FRAME_TRACE;
1380
1381 last_time_stamp = dispatch_node (vm, n,
1382 VLIB_NODE_TYPE_INTERNAL,
1383 VLIB_NODE_STATE_POLLING,
1384 f, last_time_stamp);
1385
Damjan Marion296988d2019-02-21 20:24:54 +01001386 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387
1388 /* Frame is ready to be used again, so restore it. */
1389 if (restore_frame_index != ~0)
1390 {
Dave Baracha6269992017-06-07 08:18:49 -04001391 /*
1392 * We musn't restore a frame that is flagged to be freed. This
1393 * shouldn't happen since frames to be freed post dispatch are
1394 * those used when the to-node frame becomes full i.e. they form a
1395 * sort of queue of frames to a single node. If we get here then
1396 * the to-node frame and the pending frame *were* the same, and so
1397 * we removed the to-node frame. Therefore this frame is no
1398 * longer part of the queue for that node and hence it cannot be
1399 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001400 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001401 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001402
Dave Baracha6269992017-06-07 08:18:49 -04001403 /*
1404 * NB: dispatching node n can result in the creation and scheduling
1405 * of new frames, and hence in the reallocation of nm->pending_frames.
1406 * Recompute p, or no supper. This was broken for more than 10 years.
1407 */
1408 p = nm->pending_frames + pending_frame_index;
1409
1410 /*
1411 * p->next_frame_index can change during node dispatch if node
1412 * function decides to change graph hook up.
1413 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001414 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001415 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416
Neale Ranns88170612016-11-22 08:29:51 +00001417 if (~0 == nf->frame_index)
1418 {
1419 /* no new frame has been assigned to this node, use the saved one */
1420 nf->frame_index = restore_frame_index;
1421 f->n_vectors = 0;
1422 }
1423 else
1424 {
1425 /* The node has gained a frame, implying packets from the current frame
1426 were re-queued to this same node. we don't need the saved one
1427 anymore */
1428 vlib_frame_free (vm, n, f);
1429 }
1430 }
1431 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001433 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001434 {
1435 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1436 vlib_frame_free (vm, n, f);
1437 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438 }
1439
1440 return last_time_stamp;
1441}
1442
1443always_inline uword
1444vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001445{
1446 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1447}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001448
Dave Barach9b8ffd92016-07-08 08:13:45 -04001449typedef struct
1450{
1451 vlib_main_t *vm;
1452 vlib_process_t *process;
1453 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454} vlib_process_bootstrap_args_t;
1455
1456/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001457static uword
1458vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001459{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001460 vlib_process_bootstrap_args_t *a;
1461 vlib_main_t *vm;
1462 vlib_node_runtime_t *node;
1463 vlib_frame_t *f;
1464 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465 uword n;
1466
1467 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1468
1469 vm = a->vm;
1470 p = a->process;
1471 f = a->frame;
1472 node = &p->node_runtime;
1473
1474 n = node->function (vm, node, f);
1475
1476 ASSERT (vlib_process_stack_is_valid (p));
1477
1478 clib_longjmp (&p->return_longjmp, n);
1479
1480 return n;
1481}
1482
1483/* Called in main stack. */
1484static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001485vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001486{
1487 vlib_process_bootstrap_args_t a;
1488 uword r;
1489
1490 a.vm = vm;
1491 a.process = p;
1492 a.frame = f;
1493
1494 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1495 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1496 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1497 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1498
1499 return r;
1500}
1501
1502static_always_inline uword
1503vlib_process_resume (vlib_process_t * p)
1504{
1505 uword r;
1506 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1507 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1508 | VLIB_PROCESS_RESUME_PENDING);
1509 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1510 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1511 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1512 return r;
1513}
1514
1515static u64
1516dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001517 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001518{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001519 vlib_node_main_t *nm = &vm->node_main;
1520 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1521 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001522 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523 u64 t;
1524 uword n_vectors, is_suspend;
1525
1526 if (node->state != VLIB_NODE_STATE_POLLING
1527 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1528 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1529 return last_time_stamp;
1530
1531 p->flags |= VLIB_PROCESS_IS_RUNNING;
1532
1533 t = last_time_stamp;
1534 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1535 f ? f->n_vectors : 0, /* is_after */ 0);
1536
1537 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001538 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001539 nm->current_process_index = node->runtime_index;
1540
1541 n_vectors = vlib_process_startup (vm, p, f);
1542
Florin Corasfd542f12018-05-16 19:28:24 -07001543 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001544
1545 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1546 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1547 if (is_suspend)
1548 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001549 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001550
1551 n_vectors = 0;
1552 pool_get (nm->suspended_process_frames, pf);
1553 pf->node_runtime_index = node->runtime_index;
1554 pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1555 pf->next_frame_index = ~0;
1556
1557 p->n_suspends += 1;
1558 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1559
1560 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001561 {
1562 TWT (tw_timer_wheel) * tw =
1563 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1564 p->stop_timer_handle =
1565 TW (tw_timer_start) (tw,
1566 vlib_timing_wheel_data_set_suspended_process
1567 (node->runtime_index) /* [sic] pool idex */ ,
1568 0 /* timer_id */ ,
1569 p->resume_clock_interval);
1570 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001571 }
1572 else
1573 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1574
1575 t = clib_cpu_time_now ();
1576
Dave Barach9b8ffd92016-07-08 08:13:45 -04001577 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1578 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001579
1580 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001581 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001583 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001584
1585 return t;
1586}
1587
Dave Barach9b8ffd92016-07-08 08:13:45 -04001588void
1589vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001590{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001591 vlib_node_main_t *nm = &vm->node_main;
1592 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001593 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1594}
1595
1596static u64
1597dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001598 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001599{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001600 vlib_node_main_t *nm = &vm->node_main;
1601 vlib_node_runtime_t *node_runtime;
1602 vlib_node_t *node;
1603 vlib_frame_t *f;
1604 vlib_process_t *p;
1605 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001606 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001607
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608 t = last_time_stamp;
1609
1610 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001611 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612 return last_time_stamp;
1613
1614 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1615 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1616
Florin Coras221d6f12018-11-07 20:46:38 -08001617 pf = pool_elt_at_index (nm->suspended_process_frames,
1618 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619
1620 node_runtime = &p->node_runtime;
1621 node = vlib_get_node (vm, node_runtime->node_index);
1622 f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1623
Dave Barach9b8ffd92016-07-08 08:13:45 -04001624 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1625 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001626
1627 /* Save away current process for suspend. */
1628 nm->current_process_index = node->runtime_index;
1629
1630 n_vectors = vlib_process_resume (p);
1631 t = clib_cpu_time_now ();
1632
1633 nm->current_process_index = ~0;
1634
1635 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1636 if (is_suspend)
1637 {
1638 /* Suspend it again. */
1639 n_vectors = 0;
1640 p->n_suspends += 1;
1641 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001642 {
1643 p->stop_timer_handle =
1644 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1645 vlib_timing_wheel_data_set_suspended_process
1646 (node->runtime_index) /* [sic] pool idex */ ,
1647 0 /* timer_id */ ,
1648 p->resume_clock_interval);
1649 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001650 }
1651 else
1652 {
1653 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001654 pool_put_index (nm->suspended_process_frames,
1655 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001656 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001657 }
1658
1659 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001660 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1661 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662
1663 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001664 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001665 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001666 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001667
1668 return t;
1669}
1670
Dave Barach2877eee2017-12-15 12:22:57 -05001671void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1672void
1673vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1674{
1675}
1676
1677
Damjan Marione9d52d52017-03-09 15:42:26 +01001678static_always_inline void
1679vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001680{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001681 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001682 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001683 uword i;
1684 u64 cpu_time_now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001685 vlib_frame_queue_main_t *fqm;
Damjan Marion2c2b6402017-03-28 14:16:15 +02001686 u32 *last_node_runtime_indices = 0;
Dave Barach80965f52019-03-11 09:57:38 -04001687 u32 frame_queue_check_counter = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001688
1689 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001690 if (is_main)
1691 {
1692 vec_resize (nm->pending_frames, 32);
1693 _vec_len (nm->pending_frames) = 0;
1694 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001695
1696 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001697 if (is_main)
1698 {
1699 cpu_time_now = vm->clib_time.last_cpu_time;
1700 vm->cpu_time_main_loop_start = cpu_time_now;
1701 }
1702 else
1703 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001704
Damjan Marion2c2b6402017-03-28 14:16:15 +02001705 /* Pre-allocate interupt runtime indices and lock. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001706 vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001707 vec_alloc (last_node_runtime_indices, 32);
1708 if (!is_main)
1709 clib_spinlock_init (&nm->pending_interrupt_lock);
1710
1711 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001712 if (!nm->polling_threshold_vector_length)
1713 nm->polling_threshold_vector_length = 10;
1714 if (!nm->interrupt_threshold_vector_length)
1715 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001716
Damjan Marion29c0b332019-01-28 13:41:27 +01001717 vm->cpu_id = clib_get_current_cpu_id ();
1718 vm->numa_node = clib_get_current_numa_node ();
1719
Ed Warnickecb9cada2015-12-08 15:45:58 -07001720 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001721 if (is_main)
1722 {
1723 uword i;
Dave Barachc602b382019-06-03 19:48:22 -04001724
1725 /*
1726 * Perform an initial barrier sync. Pays no attention to
1727 * the barrier sync hold-down timer scheme, which won't work
1728 * at this point in time.
1729 */
1730 vlib_worker_thread_initial_barrier_sync_and_release (vm);
1731
Stevenf3b53642017-05-01 14:03:02 -07001732 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001733 for (i = 0; i < vec_len (nm->processes); i++)
1734 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1735 cpu_time_now);
1736 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737
1738 while (1)
1739 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001740 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001741
Dave Barach2877eee2017-12-15 12:22:57 -05001742 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001743 {
1744 if (!is_main)
1745 vl_api_send_pending_rpc_requests (vm);
1746 }
Dave Barach2877eee2017-12-15 12:22:57 -05001747
Damjan Marione9d52d52017-03-09 15:42:26 +01001748 if (!is_main)
1749 {
1750 vlib_worker_thread_barrier_check ();
Dave Barach80965f52019-03-11 09:57:38 -04001751 if (PREDICT_FALSE (vm->check_frame_queues +
1752 frame_queue_check_counter))
1753 {
1754 u32 processed = 0;
1755
1756 if (vm->check_frame_queues)
1757 {
1758 frame_queue_check_counter = 100;
1759 vm->check_frame_queues = 0;
1760 }
1761
1762 vec_foreach (fqm, tm->frame_queue_mains)
1763 processed += vlib_frame_queue_dequeue (vm, fqm);
1764
1765 /* No handoff queue work found? */
1766 if (processed)
1767 frame_queue_check_counter = 100;
1768 else
1769 frame_queue_check_counter--;
1770 }
Dave Barach5f2cfb22019-05-20 10:28:57 -04001771 if (PREDICT_FALSE (vec_len (vm->worker_thread_main_loop_callbacks)))
1772 clib_call_callbacks (vm->worker_thread_main_loop_callbacks, vm);
Damjan Marione9d52d52017-03-09 15:42:26 +01001773 }
1774
Ed Warnickecb9cada2015-12-08 15:45:58 -07001775 /* Process pre-input nodes. */
Damjan Marionceab7882018-01-19 20:56:12 +01001776 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1777 cpu_time_now = dispatch_node (vm, n,
1778 VLIB_NODE_TYPE_PRE_INPUT,
1779 VLIB_NODE_STATE_POLLING,
1780 /* frame */ 0,
1781 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001782
1783 /* Next process input nodes. */
1784 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1785 cpu_time_now = dispatch_node (vm, n,
1786 VLIB_NODE_TYPE_INPUT,
1787 VLIB_NODE_STATE_POLLING,
1788 /* frame */ 0,
1789 cpu_time_now);
1790
Damjan Marione9d52d52017-03-09 15:42:26 +01001791 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001792 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001793
1794 /* Next handle interrupts. */
1795 {
Dave Barachd47c5092018-01-19 13:09:20 -05001796 /* unlocked read, for performance */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001797 uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1798 uword i;
Dave Barachd47c5092018-01-19 13:09:20 -05001799 if (PREDICT_FALSE (l > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001800 {
Damjan Marion2c2b6402017-03-28 14:16:15 +02001801 u32 *tmp;
1802 if (!is_main)
Dave Barachd47c5092018-01-19 13:09:20 -05001803 {
1804 clib_spinlock_lock (&nm->pending_interrupt_lock);
1805 /* Re-read w/ lock held, in case another thread added an item */
1806 l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1807 }
1808
Damjan Marion2c2b6402017-03-28 14:16:15 +02001809 tmp = nm->pending_interrupt_node_runtime_indices;
1810 nm->pending_interrupt_node_runtime_indices =
1811 last_node_runtime_indices;
1812 last_node_runtime_indices = tmp;
1813 _vec_len (last_node_runtime_indices) = 0;
1814 if (!is_main)
1815 clib_spinlock_unlock (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001816 for (i = 0; i < l; i++)
1817 {
1818 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
Damjan Marion2c2b6402017-03-28 14:16:15 +02001819 last_node_runtime_indices[i]);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001820 cpu_time_now =
1821 dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1822 VLIB_NODE_STATE_INTERRUPT,
1823 /* frame */ 0,
1824 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001825 }
1826 }
1827 }
Dave Barache3248982018-08-14 13:47:58 -04001828 /* Input nodes may have added work to the pending vector.
1829 Process pending vector until there is nothing left.
1830 All pending vectors will be processed from input -> output. */
1831 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1832 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1833 /* Reset pending vector for next iteration. */
1834 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001835
Damjan Marione9d52d52017-03-09 15:42:26 +01001836 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001837 {
Dave Barach900cbad2019-01-31 19:12:51 -05001838 /* *INDENT-OFF* */
1839 ELOG_TYPE_DECLARE (es) =
1840 {
1841 .format = "process tw start",
1842 .format_args = "",
1843 };
1844 ELOG_TYPE_DECLARE (ee) =
1845 {
1846 .format = "process tw end: %d",
1847 .format_args = "i4",
1848 };
1849 /* *INDENT-ON* */
1850
1851 struct
1852 {
1853 int nready_procs;
1854 } *ed;
1855
Damjan Marione9d52d52017-03-09 15:42:26 +01001856 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001857 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1858
Dave Barach900cbad2019-01-31 19:12:51 -05001859 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1860 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1861
Dave Barach5c20a012017-06-13 08:48:31 -04001862 nm->data_from_advancing_timing_wheel =
1863 TW (tw_timer_expire_timers_vec)
1864 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1865 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001866
Damjan Marione9d52d52017-03-09 15:42:26 +01001867 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001868
Dave Barach900cbad2019-01-31 19:12:51 -05001869 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1870 {
1871 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1872 ed->nready_procs =
1873 _vec_len (nm->data_from_advancing_timing_wheel);
1874 }
1875
Damjan Marione9d52d52017-03-09 15:42:26 +01001876 if (PREDICT_FALSE
1877 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001878 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001879 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001880
Damjan Marione9d52d52017-03-09 15:42:26 +01001881 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1882 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001883 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001884 u32 d = nm->data_from_advancing_timing_wheel[i];
1885 u32 di = vlib_timing_wheel_data_get_index (d);
1886
1887 if (vlib_timing_wheel_data_is_timed_event (d))
1888 {
1889 vlib_signal_timed_event_data_t *te =
1890 pool_elt_at_index (nm->signal_timed_event_data_pool,
1891 di);
1892 vlib_node_t *n =
1893 vlib_get_node (vm, te->process_node_index);
1894 vlib_process_t *p =
1895 vec_elt (nm->processes, n->runtime_index);
1896 void *data;
1897 data =
1898 vlib_process_signal_event_helper (nm, n, p,
1899 te->event_type_index,
1900 te->n_data_elts,
1901 te->n_data_elt_bytes);
1902 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001903 clib_memcpy_fast (data, te->inline_event_data,
1904 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001905 else
1906 {
Dave Barach178cf492018-11-13 16:34:13 -05001907 clib_memcpy_fast (data, te->event_data_as_vector,
1908 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001909 vec_free (te->event_data_as_vector);
1910 }
1911 pool_put (nm->signal_timed_event_data_pool, te);
1912 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913 else
1914 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001915 cpu_time_now = clib_cpu_time_now ();
1916 cpu_time_now =
1917 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001918 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001919 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001920 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1921 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001922 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001923 vlib_increment_main_loop_counter (vm);
1924
1925 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001926 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001927 cpu_time_now = clib_cpu_time_now ();
1928 }
1929}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001930
Damjan Marione9d52d52017-03-09 15:42:26 +01001931static void
1932vlib_main_loop (vlib_main_t * vm)
1933{
1934 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1935}
1936
1937void
1938vlib_worker_loop (vlib_main_t * vm)
1939{
1940 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1941}
1942
Ed Warnickecb9cada2015-12-08 15:45:58 -07001943vlib_main_t vlib_global_main;
1944
1945static clib_error_t *
1946vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1947{
1948 int turn_on_mem_trace = 0;
1949
1950 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1951 {
1952 if (unformat (input, "memory-trace"))
1953 turn_on_mem_trace = 1;
1954
1955 else if (unformat (input, "elog-events %d",
1956 &vm->elog_main.event_ring_size))
1957 ;
Dave Barach81481312017-05-16 09:08:14 -04001958 else if (unformat (input, "elog-post-mortem-dump"))
1959 vm->elog_post_mortem_dump = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001960 else
1961 return unformat_parse_error (input);
1962 }
1963
1964 unformat_free (input);
1965
1966 /* Enable memory trace as early as possible. */
1967 if (turn_on_mem_trace)
1968 clib_mem_trace (1);
1969
1970 return 0;
1971}
1972
1973VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1974
Dave Barach9b8ffd92016-07-08 08:13:45 -04001975static void
1976dummy_queue_signal_callback (vlib_main_t * vm)
1977{
1978}
Dave Barach16c75df2016-05-31 14:05:46 -04001979
Dave Barach1f806582018-06-14 09:18:21 -04001980#define foreach_weak_reference_stub \
1981_(vlib_map_stat_segment_init) \
1982_(vpe_api_init) \
1983_(vlibmemory_init) \
1984_(map_api_segment_init)
1985
1986#define _(name) \
1987clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1988clib_error_t *name (vlib_main_t *vm) { return 0; }
1989foreach_weak_reference_stub;
1990#undef _
1991
Ed Warnickecb9cada2015-12-08 15:45:58 -07001992/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001993int
Eyal Barid334a6b2016-09-19 10:23:39 +03001994vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001995{
Eyal Barid334a6b2016-09-19 10:23:39 +03001996 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001997 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998
Dave Barach16c75df2016-05-31 14:05:46 -04001999 vm->queue_signal_callback = dummy_queue_signal_callback;
2000
Ed Warnickecb9cada2015-12-08 15:45:58 -07002001 clib_time_init (&vm->clib_time);
2002
2003 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002004 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002005 vm->elog_main.event_ring_size = 128 << 10;
2006 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
2007 elog_enable_disable (&vm->elog_main, 1);
2008
2009 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002010 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002011 vm->name = "VLIB";
2012
Damjan Marion68b4da62018-09-30 18:26:20 +02002013 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002014 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002015 clib_error_report (error);
2016 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002017 }
Damjan Marion49d66f12017-07-20 18:10:35 +02002018
Filip Tehlard2bbdef2019-02-22 05:05:53 -08002019 if ((error = vlib_map_stat_segment_init (vm)))
2020 {
2021 clib_error_report (error);
2022 goto done;
2023 }
2024
Damjan Marion49d66f12017-07-20 18:10:35 +02002025 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02002026 {
Damjan Marion49d66f12017-07-20 18:10:35 +02002027 clib_error_report (error);
2028 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02002029 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002030
2031 if ((error = vlib_thread_init (vm)))
2032 {
2033 clib_error_report (error);
2034 goto done;
2035 }
2036
2037 /* Register static nodes so that init functions may use them. */
2038 vlib_register_all_static_nodes (vm);
2039
2040 /* Set seed for random number generator.
2041 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002042 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002043 vm->random_seed = clib_cpu_time_now ();
2044 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
2045
Ed Warnickecb9cada2015-12-08 15:45:58 -07002046 /* Initialize node graph. */
2047 if ((error = vlib_node_main_init (vm)))
2048 {
2049 /* Arrange for graph hook up error to not be fatal when debugging. */
2050 if (CLIB_DEBUG > 0)
2051 clib_error_report (error);
2052 else
2053 goto done;
2054 }
2055
Dave Barach1f806582018-06-14 09:18:21 -04002056 /* Direct call / weak reference, for vlib standalone use-cases */
2057 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002058 {
2059 clib_error_report (error);
2060 goto done;
2061 }
2062
Dave Barach1f806582018-06-14 09:18:21 -04002063 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002064 {
2065 clib_error_report (error);
2066 goto done;
2067 }
2068
Dave Barach1f806582018-06-14 09:18:21 -04002069 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002070 {
2071 clib_error_report (error);
2072 goto done;
2073 }
2074
Ole Troan964f93e2016-06-10 13:22:36 +02002075 /* See unix/main.c; most likely already set up */
2076 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002077 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02002078 if ((error = vlib_call_all_init_functions (vm)))
2079 goto done;
2080
Dave Barach5c20a012017-06-13 08:48:31 -04002081 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2082 CLIB_CACHE_LINE_BYTES);
2083
2084 vec_validate (nm->data_from_advancing_timing_wheel, 10);
2085 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2086
2087 /* Create the process timing wheel */
2088 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2089 0 /* no callback */ ,
2090 10e-6 /* timer period 10us */ ,
2091 ~0 /* max expirations per call */ );
2092
Dave Barach2877eee2017-12-15 12:22:57 -05002093 vec_validate (vm->pending_rpc_requests, 0);
2094 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04002095 vec_validate (vm->processing_rpc_requests, 0);
2096 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05002097
Dave Barachd1e17d02019-03-21 18:01:48 -04002098 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2099 goto done;
2100
Dave Barachc602b382019-06-03 19:48:22 -04002101 /* Sort per-thread init functions before we start threads */
2102 vlib_sort_init_exit_functions (&vm->worker_init_function_registrations);
2103
Dave Barachd1e17d02019-03-21 18:01:48 -04002104 /* Call all main loop enter functions. */
2105 {
2106 clib_error_t *sub_error;
2107 sub_error = vlib_call_all_main_loop_enter_functions (vm);
2108 if (sub_error)
2109 clib_error_report (sub_error);
2110 }
2111
Ed Warnickecb9cada2015-12-08 15:45:58 -07002112 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2113 {
2114 case VLIB_MAIN_LOOP_EXIT_NONE:
2115 vm->main_loop_exit_set = 1;
2116 break;
2117
2118 case VLIB_MAIN_LOOP_EXIT_CLI:
2119 goto done;
2120
2121 default:
2122 error = vm->main_loop_error;
2123 goto done;
2124 }
2125
Ed Warnickecb9cada2015-12-08 15:45:58 -07002126 vlib_main_loop (vm);
2127
Dave Barach9b8ffd92016-07-08 08:13:45 -04002128done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002129 /* Call all exit functions. */
2130 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002131 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002132 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2133 if (sub_error)
2134 clib_error_report (sub_error);
2135 }
2136
2137 if (error)
2138 clib_error_report (error);
2139
2140 return 0;
2141}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002142
Dave Barach3ae28732018-11-16 17:19:00 -05002143static inline clib_error_t *
2144pcap_dispatch_trace_command_internal (vlib_main_t * vm,
2145 unformat_input_t * input,
2146 vlib_cli_command_t * cmd, int rx_tx)
2147{
Dave Barach3ae28732018-11-16 17:19:00 -05002148 unformat_input_t _line_input, *line_input = &_line_input;
2149 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Baracha2aefef2019-02-27 12:36:28 -05002150 u8 *filename = 0;
2151 u32 max = 1000;
Dave Barach3ae28732018-11-16 17:19:00 -05002152 int enabled = 0;
Dave Baracha2aefef2019-02-27 12:36:28 -05002153 int is_error = 0;
Dave Barach3ae28732018-11-16 17:19:00 -05002154 clib_error_t *error = 0;
Dave Barach1201a802018-11-20 12:08:39 -05002155 u32 node_index, add;
2156 vlib_trace_main_t *tm;
2157 vlib_trace_node_t *tn;
Dave Barach3ae28732018-11-16 17:19:00 -05002158
2159 /* Get a line of input. */
2160 if (!unformat_user (input, unformat_line_input, line_input))
2161 return 0;
2162
2163 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2164 {
2165 if (unformat (line_input, "on"))
2166 {
2167 if (vm->dispatch_pcap_enable == 0)
2168 {
2169 enabled = 1;
2170 }
2171 else
2172 {
2173 vlib_cli_output (vm, "pcap dispatch capture already on...");
Dave Baracha2aefef2019-02-27 12:36:28 -05002174 is_error = 1;
Dave Barach3ae28732018-11-16 17:19:00 -05002175 break;
2176 }
2177 }
2178 else if (unformat (line_input, "off"))
2179 {
2180 if (vm->dispatch_pcap_enable)
2181 {
2182 vlib_cli_output
2183 (vm, "captured %d pkts...", pm->n_packets_captured);
2184 if (pm->n_packets_captured)
2185 {
2186 pm->n_packets_to_capture = pm->n_packets_captured;
2187 error = pcap_write (pm);
2188 if (error)
2189 clib_error_report (error);
2190 else
2191 vlib_cli_output (vm, "saved to %s...", pm->file_name);
2192 }
2193 vm->dispatch_pcap_enable = 0;
2194 }
2195 else
2196 {
2197 vlib_cli_output (vm, "pcap tx capture already off...");
Dave Baracha2aefef2019-02-27 12:36:28 -05002198 is_error = 1;
Dave Barach3ae28732018-11-16 17:19:00 -05002199 break;
2200 }
2201 }
2202 else if (unformat (line_input, "max %d", &max))
2203 {
2204 if (vm->dispatch_pcap_enable)
2205 {
2206 vlib_cli_output
2207 (vm,
2208 "can't change max value while pcap tx capture active...");
Dave Baracha2aefef2019-02-27 12:36:28 -05002209 is_error = 1;
Dave Barach3ae28732018-11-16 17:19:00 -05002210 break;
2211 }
2212 pm->n_packets_to_capture = max;
2213 }
Benoît Ganne362456a2019-01-21 17:41:25 +01002214 else
2215 if (unformat
2216 (line_input, "file %U", unformat_vlib_tmpfile, &filename))
Dave Barach3ae28732018-11-16 17:19:00 -05002217 {
2218 if (vm->dispatch_pcap_enable)
2219 {
2220 vlib_cli_output
2221 (vm, "can't change file while pcap tx capture active...");
Dave Baracha2aefef2019-02-27 12:36:28 -05002222 is_error = 1;
Dave Barach3ae28732018-11-16 17:19:00 -05002223 break;
2224 }
Dave Barach3ae28732018-11-16 17:19:00 -05002225 }
2226 else if (unformat (line_input, "status"))
2227 {
2228 if (vm->dispatch_pcap_enable)
2229 {
2230 vlib_cli_output
2231 (vm, "pcap dispatch capture is on: %d of %d pkts...",
2232 pm->n_packets_captured, pm->n_packets_to_capture);
2233 vlib_cli_output (vm, "Capture to file %s", pm->file_name);
2234 }
2235 else
2236 {
2237 vlib_cli_output (vm, "pcap dispatch capture is off...");
2238 }
2239 break;
2240 }
Dave Barach1201a802018-11-20 12:08:39 -05002241 else if (unformat (line_input, "buffer-trace %U %d",
2242 unformat_vlib_node, vm, &node_index, &add))
2243 {
2244 if (vnet_trace_dummy == 0)
2245 vec_validate_aligned (vnet_trace_dummy, 2048,
2246 CLIB_CACHE_LINE_BYTES);
2247 vlib_cli_output (vm, "Buffer tracing of %d pkts from %U enabled...",
2248 add, format_vlib_node_name, vm, node_index);
2249
2250 /* *INDENT-OFF* */
2251 foreach_vlib_main ((
2252 {
2253 tm = &this_vlib_main->trace_main;
2254 tm->verbose = 0; /* not sure this ever did anything... */
2255 vec_validate (tm->nodes, node_index);
2256 tn = tm->nodes + node_index;
2257 tn->limit += add;
2258 tm->trace_enable = 1;
2259 }));
2260 /* *INDENT-ON* */
2261 }
Dave Barach3ae28732018-11-16 17:19:00 -05002262
2263 else
2264 {
2265 error = clib_error_return (0, "unknown input `%U'",
2266 format_unformat_error, line_input);
Dave Baracha2aefef2019-02-27 12:36:28 -05002267 is_error = 1;
Dave Barach3ae28732018-11-16 17:19:00 -05002268 break;
2269 }
2270 }
2271 unformat_free (line_input);
2272
Dave Baracha2aefef2019-02-27 12:36:28 -05002273 if (is_error == 0)
Dave Barach3ae28732018-11-16 17:19:00 -05002274 {
Dave Baracha2aefef2019-02-27 12:36:28 -05002275 /* Clean up from previous run */
2276 vec_free (pm->file_name);
2277 vec_free (pm->pcap_data);
Dave Barach3ae28732018-11-16 17:19:00 -05002278
Dave Baracha2aefef2019-02-27 12:36:28 -05002279 memset (pm, 0, sizeof (*pm));
2280 pm->n_packets_to_capture = max;
Dave Barach3ae28732018-11-16 17:19:00 -05002281
2282 if (enabled)
2283 {
Dave Baracha2aefef2019-02-27 12:36:28 -05002284 if (filename == 0)
2285 filename = format (0, "/tmp/dispatch.pcap%c", 0);
Dave Barach3ae28732018-11-16 17:19:00 -05002286
Dave Baracha2aefef2019-02-27 12:36:28 -05002287 pm->file_name = (char *) filename;
Dave Barach3ae28732018-11-16 17:19:00 -05002288 pm->n_packets_captured = 0;
Dave Barach7b01e9e2019-01-09 10:22:24 -05002289 pm->packet_type = PCAP_PACKET_TYPE_vpp;
Dave Barach3ae28732018-11-16 17:19:00 -05002290 if (pm->lock == 0)
2291 clib_spinlock_init (&(pm->lock));
2292 vm->dispatch_pcap_enable = 1;
2293 vlib_cli_output (vm, "pcap dispatch capture on...");
2294 }
2295 }
Dave Barach3ae28732018-11-16 17:19:00 -05002296
2297 return error;
2298}
2299
2300static clib_error_t *
2301pcap_dispatch_trace_command_fn (vlib_main_t * vm,
2302 unformat_input_t * input,
2303 vlib_cli_command_t * cmd)
2304{
2305 return pcap_dispatch_trace_command_internal (vm, input, cmd, VLIB_RX);
2306}
2307
2308/*?
2309 * This command is used to start or stop pcap dispatch trace capture, or show
2310 * the capture status.
2311 *
2312 * This command has the following optional parameters:
2313 *
2314 * - <b>on|off</b> - Used to start or stop capture.
2315 *
2316 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2317 * of packets have been received, buffer is flushed to file. Once another
2318 * '<em>nn</em>' number of packets have been received, buffer is flushed
2319 * to file, overwriting previous write. If not entered, value defaults
2320 * to 100. Can only be updated if packet capture is off.
2321 *
2322 * - <b>file <name></b> - Used to specify the output filename. The file will
2323 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2324 * supported. Directory should not be entered. If file already exists, file
2325 * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2326 * will be used. Can only be updated if packet capture is off.
2327 *
2328 * - <b>status</b> - Displays the current status and configured attributes
2329 * associated with a packet capture. If packet capture is in progress,
2330 * '<em>status</em>' also will return the number of packets currently in
2331 * the local buffer. All additional attributes entered on command line
2332 * with '<em>status</em>' will be ignored and not applied.
2333 *
2334 * @cliexpar
2335 * Example of how to display the status of capture when off:
2336 * @cliexstart{pcap dispatch trace status}
2337 * max is 100, for any interface to file /tmp/vpe.pcap
2338 * pcap dispatch capture is off...
2339 * @cliexend
2340 * Example of how to start a dispatch trace capture:
2341 * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
Dave Barach1201a802018-11-20 12:08:39 -05002342 * pcap dispatch capture on...
2343 * @cliexend
2344 * Example of how to start a dispatch trace capture with buffer tracing
2345 * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2346 * pcap dispatch capture on...
Dave Barach3ae28732018-11-16 17:19:00 -05002347 * @cliexend
2348 * Example of how to display the status of a tx packet capture in progress:
2349 * @cliexstart{pcap tx trace status}
2350 * max is 35, dispatch trace to file /tmp/vppTest.pcap
2351 * pcap tx capture is on: 20 of 35 pkts...
2352 * @cliexend
2353 * Example of how to stop a tx packet capture:
2354 * @cliexstart{vppctl pcap dispatch trace off}
2355 * captured 21 pkts...
2356 * saved to /tmp/dispatchTrace.pcap...
2357 * @cliexend
2358?*/
2359/* *INDENT-OFF* */
2360VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2361 .path = "pcap dispatch trace",
2362 .short_help =
Dave Barach1201a802018-11-20 12:08:39 -05002363 "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2364 " [buffer-trace <input-node-name> <nn>]",
Dave Barach3ae28732018-11-16 17:19:00 -05002365 .function = pcap_dispatch_trace_command_fn,
2366};
2367/* *INDENT-ON* */
2368
Dave Barach9b8ffd92016-07-08 08:13:45 -04002369/*
2370 * fd.io coding-style-patch-verification: ON
2371 *
2372 * Local Variables:
2373 * eval: (c-set-style "gnu")
2374 * End:
2375 */