blob: 552e693aaf683aae9979cd7b2e243045e352c4e5 [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
94static vlib_frame_size_t *
95get_frame_size_info (vlib_node_main_t * nm,
96 u32 n_scalar_bytes, u32 n_vector_bytes)
97{
98 uword key = (n_scalar_bytes << 16) | n_vector_bytes;
Dave Barach9b8ffd92016-07-08 08:13:45 -040099 uword *p, i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101 p = hash_get (nm->frame_size_hash, key);
102 if (p)
103 i = p[0];
104 else
105 {
106 i = vec_len (nm->frame_sizes);
107 vec_validate (nm->frame_sizes, i);
108 hash_set (nm->frame_size_hash, key, i);
109 }
110
111 return vec_elt_at_index (nm->frame_sizes, i);
112}
113
114static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400115vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
116 u32 frame_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400118 vlib_node_main_t *nm = &vm->node_main;
119 vlib_frame_size_t *fs;
120 vlib_node_t *to_node;
121 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 u32 fi, l, n, scalar_size, vector_size;
123
124 to_node = vlib_get_node (vm, to_node_index);
125
126 scalar_size = to_node->scalar_size;
127 vector_size = to_node->vector_size;
128
129 fs = get_frame_size_info (nm, scalar_size, vector_size);
130 n = vlib_frame_bytes (scalar_size, vector_size);
131 if ((l = vec_len (fs->free_frame_indices)) > 0)
132 {
133 /* Allocate from end of free list. */
134 fi = fs->free_frame_indices[l - 1];
135 f = vlib_get_frame_no_check (vm, fi);
136 _vec_len (fs->free_frame_indices) = l - 1;
137 }
138 else
139 {
Damjan Marion3f46baf2016-02-06 19:16:21 +0100140 f = clib_mem_alloc_aligned_no_fail (n, VLIB_FRAME_ALIGN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 fi = vlib_frame_index_no_check (vm, f);
142 }
143
144 /* Poison frame when debugging. */
145 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400146 clib_memset (f, 0xfe, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 /* Insert magic number. */
149 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400150 u32 *magic;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 magic = vlib_frame_find_magic (f, to_node);
153 *magic = VLIB_FRAME_MAGIC;
154 }
155
Damjan Marion633b6fd2018-09-14 14:38:53 +0200156 f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157 f->n_vectors = 0;
158 f->scalar_size = scalar_size;
159 f->vector_size = vector_size;
Damjan Mariona3d59862018-11-10 10:23:00 +0100160 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
162 fs->n_alloc_frames += 1;
163
164 return fi;
165}
166
167/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
168 Returns frame index. */
169static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400170vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
171 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400173 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
175 from_node = vlib_get_node (vm, from_node_runtime->node_index);
176 ASSERT (to_next_index < vec_len (from_node->next_nodes));
177
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 /* frame_flags */ 0);
180}
181
182vlib_frame_t *
183vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
184{
185 u32 fi = vlib_frame_alloc_to_node (vm, to_node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186 /* frame_flags */
187 VLIB_FRAME_FREE_AFTER_DISPATCH);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 return vlib_get_frame (vm, fi);
189}
190
Dave Barach9b8ffd92016-07-08 08:13:45 -0400191void
192vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 vlib_pending_frame_t *p;
195 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
197 if (f->n_vectors == 0)
198 return;
199
200 to_node = vlib_get_node (vm, to_node_index);
201
202 vec_add2 (vm->node_main.pending_frames, p, 1);
203
Damjan Marion633b6fd2018-09-14 14:38:53 +0200204 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 p->frame_index = vlib_frame_index (vm, f);
206 p->node_runtime_index = to_node->runtime_index;
207 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
208}
209
210/* Free given frame. */
211void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 vlib_node_main_t *nm = &vm->node_main;
215 vlib_node_t *node;
216 vlib_frame_size_t *fs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 u32 frame_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218
Damjan Marion633b6fd2018-09-14 14:38:53 +0200219 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 node = vlib_get_node (vm, r->node_index);
222 fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
223
224 frame_index = vlib_frame_index (vm, f);
225
Damjan Marion633b6fd2018-09-14 14:38:53 +0200226 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
228 /* No next frames may point to freed frame. */
229 if (CLIB_DEBUG > 0)
230 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 vec_foreach (nf, vm->node_main.next_frames)
233 ASSERT (nf->frame_index != frame_index);
234 }
235
Damjan Marion296988d2019-02-21 20:24:54 +0100236 f->frame_flags &= ~(VLIB_FRAME_IS_ALLOCATED | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
238 vec_add1 (fs->free_frame_indices, frame_index);
239 ASSERT (fs->n_alloc_frames > 0);
240 fs->n_alloc_frames -= 1;
241}
242
243static clib_error_t *
244show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400245 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400247 vlib_node_main_t *nm = &vm->node_main;
248 vlib_frame_size_t *fs;
249
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
251 vec_foreach (fs, nm->frame_sizes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 {
253 u32 n_alloc = fs->n_alloc_frames;
254 u32 n_free = vec_len (fs->free_frame_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 if (n_alloc + n_free > 0)
257 vlib_cli_output (vm, "%=6d%=12d%=12d",
258 fs - nm->frame_sizes, n_alloc, n_free);
259 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
261 return 0;
262}
263
Dave Barach9b8ffd92016-07-08 08:13:45 -0400264/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
266 .path = "show vlib frame-allocation",
267 .short_help = "Show node dispatch frame statistics",
268 .function = show_frame_stats,
269};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400270/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
272/* Change ownership of enqueue rights to given next node. */
273static void
274vlib_next_frame_change_ownership (vlib_main_t * vm,
275 vlib_node_runtime_t * node_runtime,
276 u32 next_index)
277{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400278 vlib_node_main_t *nm = &vm->node_main;
279 vlib_next_frame_t *next_frame;
280 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
282 node = vec_elt (nm->nodes, node_runtime->node_index);
283
284 /* Only internal & input nodes are allowed to call other nodes. */
285 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
286 || node->type == VLIB_NODE_TYPE_INPUT
287 || node->type == VLIB_NODE_TYPE_PROCESS);
288
289 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
290
Dave Barach9b8ffd92016-07-08 08:13:45 -0400291 next_frame =
292 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
294
295 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
296 {
297 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 vlib_next_frame_t tmp;
300
301 owner_next_frame =
302 vlib_node_get_next_frame (vm,
303 next_node->owner_node_index,
304 next_node->owner_next_index);
305
306 /* Swap target next frame with owner's. */
307 tmp = owner_next_frame[0];
308 owner_next_frame[0] = next_frame[0];
309 next_frame[0] = tmp;
310
311 /*
312 * If next_frame is already pending, we have to track down
313 * all pending frames and fix their next_frame_index fields.
314 */
315 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400316 {
317 vlib_pending_frame_t *p;
318 if (next_frame->frame_index != ~0)
319 {
320 vec_foreach (p, nm->pending_frames)
321 {
322 if (p->frame_index == next_frame->frame_index)
323 {
324 p->next_frame_index =
325 next_frame - vm->node_main.next_frames;
326 }
327 }
328 }
329 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 }
331 else
332 {
333 /* No previous owner. Take ownership. */
334 next_frame->flags |= VLIB_FRAME_OWNER;
335 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 /* Record new owner. */
338 next_node->owner_node_index = node->index;
339 next_node->owner_next_index = next_index;
340
341 /* Now we should be owner. */
342 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
345/* Make sure that magic number is still there.
346 Otherwise, it is likely that caller has overrun frame arguments. */
347always_inline void
348validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400351 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
352 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
354}
355
356vlib_frame_t *
357vlib_get_next_frame_internal (vlib_main_t * vm,
358 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400359 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 vlib_frame_t *f;
362 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 u32 n_used;
364
365 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
366
367 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 vlib_next_frame_change_ownership (vm, node, next_index);
370
371 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 {
374 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
375 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
376 }
377
378 f = vlib_get_frame (vm, nf->frame_index);
379
380 /* Has frame been removed from pending vector (e.g. finished dispatching)?
381 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200382 if ((nf->flags & VLIB_FRAME_PENDING)
383 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 {
385 nf->flags &= ~VLIB_FRAME_PENDING;
386 f->n_vectors = 0;
Damjan Marion9162c2d2018-11-20 09:55:10 +0100387 f->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 }
389
Damjan Marion296988d2019-02-21 20:24:54 +0100390 /* Allocate new frame if current one is marked as no-append or
391 it is already full. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 n_used = f->n_vectors;
Damjan Marion296988d2019-02-21 20:24:54 +0100393 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0) ||
394 (f->frame_flags & VLIB_FRAME_NO_APPEND))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
396 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 two redundant frames from node -> next node. */
398 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400400 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200401 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 }
403
404 /* Allocate new frame to replace full one. */
405 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
406 f = vlib_get_frame (vm, nf->frame_index);
407 n_used = f->n_vectors;
408 }
409
410 /* Should have free vectors in frame now. */
411 ASSERT (n_used < VLIB_FRAME_SIZE);
412
413 if (CLIB_DEBUG > 0)
414 {
415 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 }
418
419 return f;
420}
421
422static void
423vlib_put_next_frame_validate (vlib_main_t * vm,
424 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427 vlib_node_main_t *nm = &vm->node_main;
428 vlib_next_frame_t *nf;
429 vlib_frame_t *f;
430 vlib_node_runtime_t *next_rt;
431 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 u32 n_before, n_after;
433
434 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
435 f = vlib_get_frame (vm, nf->frame_index);
436
437 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
438 n_after = VLIB_FRAME_SIZE - n_vectors_left;
439 n_before = f->n_vectors;
440
441 ASSERT (n_after >= n_before);
442
443 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
444 nf->node_runtime_index);
445 next_node = vlib_get_node (vm, next_rt->node_index);
446 if (n_after > 0 && next_node->validate_frame)
447 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400448 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449 if (msg)
450 {
451 clib_warning ("%v", msg);
452 ASSERT (0);
453 }
454 vec_free (msg);
455 }
456}
457
458void
459vlib_put_next_frame (vlib_main_t * vm,
460 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400463 vlib_node_main_t *nm = &vm->node_main;
464 vlib_next_frame_t *nf;
465 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 u32 n_vectors_in_frame;
467
Damjan Marion910d3692019-01-21 11:48:34 +0100468 if (CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
470
471 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
472 f = vlib_get_frame (vm, nf->frame_index);
473
474 /* Make sure that magic number is still there. Otherwise, caller
475 has overrun frame meta data. */
476 if (CLIB_DEBUG > 0)
477 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 validate_frame_magic (vm, f, node, next_index);
480 }
481
482 /* Convert # of vectors left -> number of vectors there. */
483 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
484 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
485
486 f->n_vectors = n_vectors_in_frame;
487
488 /* If vectors were added to frame, add to pending vector. */
489 if (PREDICT_TRUE (n_vectors_in_frame > 0))
490 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 r->cached_next_index = next_index;
495
Damjan Marion633b6fd2018-09-14 14:38:53 +0200496 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 {
498 __attribute__ ((unused)) vlib_node_t *node;
499 vlib_node_t *next_node;
500 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 node = vlib_get_node (vm, r->node_index);
503 next_node = vlib_get_next_node (vm, r->node_index, next_index);
504 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Dave Barach9b8ffd92016-07-08 08:13:45 -0400508 p->frame_index = nf->frame_index;
509 p->node_runtime_index = nf->node_runtime_index;
510 p->next_frame_index = nf - nm->next_frames;
511 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200512 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514 /*
515 * If we're going to dispatch this frame on another thread,
516 * force allocation of a new frame. Otherwise, we create
517 * a dangling frame reference. Each thread has its own copy of
518 * the next_frames vector.
519 */
Damjan Marion586afd72017-04-05 19:18:20 +0200520 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 {
522 nf->frame_index = ~0;
523 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
524 }
525 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526
527 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 nf->flags |=
529 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
530 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
532 v0 = nf->vectors_since_last_overflow;
533 v1 = v0 + n_vectors_in_frame;
534 nf->vectors_since_last_overflow = v1;
535 if (PREDICT_FALSE (v1 < v0))
536 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
539 }
540 }
541}
542
543/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
544never_inline void
545vlib_node_runtime_sync_stats (vlib_main_t * vm,
546 vlib_node_runtime_t * r,
Dave Barach4d1a8662018-09-10 12:31:15 -0400547 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500548 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551
552 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
553 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
554 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500555 n->stats_total.perf_counter0_ticks += n_ticks0 +
556 r->perf_counter0_ticks_since_last_overflow;
557 n->stats_total.perf_counter1_ticks += n_ticks1 +
558 r->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400559 n->stats_total.perf_counter_vectors += n_vectors +
560 r->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 n->stats_total.max_clock = r->max_clock;
562 n->stats_total.max_clock_n = r->max_clock_n;
563
564 r->calls_since_last_overflow = 0;
565 r->vectors_since_last_overflow = 0;
566 r->clocks_since_last_overflow = 0;
Dave Barachec595ef2019-01-24 10:34:24 -0500567 r->perf_counter0_ticks_since_last_overflow = 0ULL;
568 r->perf_counter1_ticks_since_last_overflow = 0ULL;
Dave Barach4d1a8662018-09-10 12:31:15 -0400569 r->perf_counter_vectors_since_last_overflow = 0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570}
571
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573vlib_process_sync_stats (vlib_main_t * vm,
574 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400575 uword n_calls, uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500576 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400578 vlib_node_runtime_t *rt = &p->node_runtime;
579 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Dave Barach4d1a8662018-09-10 12:31:15 -0400580 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500581 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582 n->stats_total.suspends += p->n_suspends;
583 p->n_suspends = 0;
584}
585
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586void
587vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400589 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590
591 if (n->type == VLIB_NODE_TYPE_PROCESS)
592 {
593 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400594 if (vm != &vlib_global_main)
595 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
Dave Barach9b8ffd92016-07-08 08:13:45 -0400597 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598 n->stats_total.suspends += p->n_suspends;
599 p->n_suspends = 0;
600 rt = &p->node_runtime;
601 }
602 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400603 rt =
604 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
605 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
Dave Barachec595ef2019-01-24 10:34:24 -0500607 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
609 /* Sync up runtime next frame vector counters with main node structure. */
610 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400611 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 uword i;
613 for (i = 0; i < rt->n_next_nodes; i++)
614 {
615 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400616 vec_elt (n->n_vectors_by_next_node, i) +=
617 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 nf->vectors_since_last_overflow = 0;
619 }
620 }
621}
622
623always_inline u32
624vlib_node_runtime_update_stats (vlib_main_t * vm,
625 vlib_node_runtime_t * node,
626 uword n_calls,
Dave Barach4d1a8662018-09-10 12:31:15 -0400627 uword n_vectors, uword n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500628 uword n_ticks0, uword n_ticks1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629{
630 u32 ca0, ca1, v0, v1, cl0, cl1, r;
Dave Barachec595ef2019-01-24 10:34:24 -0500631 u32 ptick00, ptick01, ptick10, ptick11, pvec0, pvec1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632
633 cl0 = cl1 = node->clocks_since_last_overflow;
634 ca0 = ca1 = node->calls_since_last_overflow;
635 v0 = v1 = node->vectors_since_last_overflow;
Dave Barachec595ef2019-01-24 10:34:24 -0500636 ptick00 = ptick01 = node->perf_counter0_ticks_since_last_overflow;
637 ptick10 = ptick11 = node->perf_counter1_ticks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400638 pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
640 ca1 = ca0 + n_calls;
641 v1 = v0 + n_vectors;
642 cl1 = cl0 + n_clocks;
Dave Barachec595ef2019-01-24 10:34:24 -0500643 ptick01 = ptick00 + n_ticks0;
644 ptick11 = ptick10 + n_ticks1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400645 pvec1 = pvec0 + n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646
647 node->calls_since_last_overflow = ca1;
648 node->clocks_since_last_overflow = cl1;
649 node->vectors_since_last_overflow = v1;
Dave Barachec595ef2019-01-24 10:34:24 -0500650 node->perf_counter0_ticks_since_last_overflow = ptick01;
651 node->perf_counter1_ticks_since_last_overflow = ptick11;
Dave Barach4d1a8662018-09-10 12:31:15 -0400652 node->perf_counter_vectors_since_last_overflow = pvec1;
653
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400655 node->max_clock_n : n_vectors;
656 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657
658 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
659
Dave Barachec595ef2019-01-24 10:34:24 -0500660 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick01 < ptick00)
661 || (ptick11 < ptick10) || (pvec1 < pvec0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662 {
663 node->calls_since_last_overflow = ca0;
664 node->clocks_since_last_overflow = cl0;
665 node->vectors_since_last_overflow = v0;
Dave Barachec595ef2019-01-24 10:34:24 -0500666 node->perf_counter0_ticks_since_last_overflow = ptick00;
667 node->perf_counter1_ticks_since_last_overflow = ptick10;
Dave Barach4d1a8662018-09-10 12:31:15 -0400668 node->perf_counter_vectors_since_last_overflow = pvec0;
669
670 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
Dave Barachec595ef2019-01-24 10:34:24 -0500671 n_ticks0, n_ticks1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 }
673
674 return r;
675}
676
Dave Barachec595ef2019-01-24 10:34:24 -0500677static inline void
678vlib_node_runtime_perf_counter (vlib_main_t * vm, u64 * pmc0, u64 * pmc1)
Dave Barach4d1a8662018-09-10 12:31:15 -0400679{
Dave Barachec595ef2019-01-24 10:34:24 -0500680 *pmc0 = 0;
681 *pmc1 = 0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400682 if (PREDICT_FALSE (vm->vlib_node_runtime_perf_counter_cb != 0))
Dave Barachec595ef2019-01-24 10:34:24 -0500683 (*vm->vlib_node_runtime_perf_counter_cb) (vm, pmc0, pmc1);
Dave Barach4d1a8662018-09-10 12:31:15 -0400684}
685
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686always_inline void
687vlib_process_update_stats (vlib_main_t * vm,
688 vlib_process_t * p,
Dave Barachec595ef2019-01-24 10:34:24 -0500689 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690{
691 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Dave Barachec595ef2019-01-24 10:34:24 -0500692 n_calls, n_vectors, n_clocks, 0ULL, 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693}
694
695static clib_error_t *
696vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698{
699 elog_reset_buffer (&vm->elog_main);
700 return 0;
701}
702
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400705 .path = "event-logger clear",
706 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 .function = vlib_cli_elog_clear,
708};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400709/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710
711#ifdef CLIB_UNIX
712static clib_error_t *
713elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400716 elog_main_t *em = &vm->elog_main;
717 char *file, *chroot_file;
718 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719
Dave Barach9b8ffd92016-07-08 08:13:45 -0400720 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721 {
722 vlib_cli_output (vm, "expected file name, got `%U'",
723 format_unformat_error, input);
724 return 0;
725 }
726
727 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729 {
730 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
731 return 0;
732 }
733
734 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
735
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
738 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400739 elog_n_events_in_buffer (em),
740 elog_buffer_capacity (em), chroot_file);
741
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400743 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400744 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745 vec_free (chroot_file);
746 return error;
747}
748
Dave Barach81481312017-05-16 09:08:14 -0400749void
750elog_post_mortem_dump (void)
751{
752 vlib_main_t *vm = &vlib_global_main;
753 elog_main_t *em = &vm->elog_main;
754 u8 *filename;
755 clib_error_t *error;
756
757 if (!vm->elog_post_mortem_dump)
758 return;
759
760 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
761 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
762 if (error)
763 clib_error_report (error);
764 vec_free (filename);
765}
766
Dave Barach9b8ffd92016-07-08 08:13:45 -0400767/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400769 .path = "event-logger save",
770 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771 .function = elog_save_buffer,
772};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400773/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774
Dave Barache5389bb2016-03-28 17:12:19 -0400775static clib_error_t *
776elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400778{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400779 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400780
781 em->n_total_events_disable_limit = em->n_total_events;
782
783 vlib_cli_output (vm, "Stopped the event logger...");
784 return 0;
785}
786
Dave Barach9b8ffd92016-07-08 08:13:45 -0400787/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400788VLIB_CLI_COMMAND (elog_stop_cli, static) = {
789 .path = "event-logger stop",
790 .short_help = "Stop the event-logger",
791 .function = elog_stop,
792};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400793/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400794
795static clib_error_t *
796elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400797 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400798{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400800
801 em->n_total_events_disable_limit = ~0;
802
803 vlib_cli_output (vm, "Restarted the event logger...");
804 return 0;
805}
806
Dave Barach9b8ffd92016-07-08 08:13:45 -0400807/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400808VLIB_CLI_COMMAND (elog_restart_cli, static) = {
809 .path = "event-logger restart",
810 .short_help = "Restart the event-logger",
811 .function = elog_restart,
812};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400813/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400814
815static clib_error_t *
816elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400817 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400818{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400820 u32 tmp;
821
822 /* Stop the parade */
823 elog_reset_buffer (&vm->elog_main);
824
825 if (unformat (input, "%d", &tmp))
826 {
827 elog_alloc (em, tmp);
828 em->n_total_events_disable_limit = ~0;
829 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400830 else
Dave Barache5389bb2016-03-28 17:12:19 -0400831 return clib_error_return (0, "Must specify how many events in the ring");
832
833 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
834 return 0;
835}
836
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400838VLIB_CLI_COMMAND (elog_resize_cli, static) = {
839 .path = "event-logger resize",
840 .short_help = "event-logger resize <nnn>",
841 .function = elog_resize,
842};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400843/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400844
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845#endif /* CLIB_UNIX */
846
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847static void
848elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400850 elog_main_t *em = &vm->elog_main;
851 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852 f64 dt;
853
854 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 * vm->clib_time.seconds_per_clock;
857
858 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400859 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
860 em->event_ring_size,
861 em->n_total_events < em->n_total_events_disable_limit ?
862 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 {
865 vlib_cli_output (vm, "%18.9f: %U",
866 e->time + dt, format_elog_event, em, e);
867 n_events_to_show--;
868 if (n_events_to_show == 0)
869 break;
870 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400872
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873}
874
875static clib_error_t *
876elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400877 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878{
879 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400880 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881
882 n_events_to_show = 250;
883 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
884 {
885 if (unformat (input, "%d", &n_events_to_show))
886 ;
887 else if (unformat (input, "all"))
888 n_events_to_show = ~0;
889 else
890 return unformat_parse_error (input);
891 }
892 elog_show_buffer_internal (vm, n_events_to_show);
893 return error;
894}
895
Dave Barach9b8ffd92016-07-08 08:13:45 -0400896/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897VLIB_CLI_COMMAND (elog_show_cli, static) = {
898 .path = "show event-logger",
899 .short_help = "Show event logger info",
900 .function = elog_show_buffer,
901};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400902/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904void
905vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400907 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908}
909
Dave Barachfb6e59d2016-03-26 18:45:42 -0400910static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911vlib_elog_main_loop_event (vlib_main_t * vm,
912 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400913 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400915 vlib_main_t *evm = &vlib_global_main;
916 elog_main_t *em = &evm->elog_main;
Dave Barach900cbad2019-01-31 19:12:51 -0500917 int enabled = evm->elog_trace_graph_dispatch |
918 evm->elog_trace_graph_circuit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919
Dave Barach900cbad2019-01-31 19:12:51 -0500920 if (PREDICT_FALSE (enabled && n_vectors))
921 {
922 if (PREDICT_FALSE (!elog_is_enabled (em)))
923 {
924 evm->elog_trace_graph_dispatch = 0;
925 evm->elog_trace_graph_circuit = 0;
926 return;
927 }
928 if (PREDICT_TRUE
929 (evm->elog_trace_graph_dispatch ||
930 (evm->elog_trace_graph_circuit &&
931 node_index == evm->elog_trace_graph_circuit_node_index)))
932 {
933 elog_track (em,
934 /* event type */
935 vec_elt_at_index (is_return
936 ? evm->node_return_elog_event_types
937 : evm->node_call_elog_event_types,
938 node_index),
939 /* track */
940 (vm->thread_index ?
941 &vlib_worker_threads[vm->thread_index].elog_track
942 : &em->default_track),
943 /* data to log */ n_vectors);
944 }
945 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946}
947
Dave Barach7bee7732017-10-18 18:48:11 -0400948#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
949void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
950void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
951
Dave Barach9b8ffd92016-07-08 08:13:45 -0400952void
Dave Barach7bee7732017-10-18 18:48:11 -0400953vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954{
Dave Barach7bee7732017-10-18 18:48:11 -0400955 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 {
Dave Barach7bee7732017-10-18 18:48:11 -0400957 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958 }
959}
960
Dave Barach7bee7732017-10-18 18:48:11 -0400961#endif
962
963static inline void
964add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
965{
966#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
967 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
968 {
969 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
970 }
971#endif
972}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973
Dave Barach7fff3d22018-11-27 16:52:59 -0500974u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
975u8 *
976format_vnet_buffer_flags (u8 * s, va_list * args)
977{
978 s = format (s, "BUG STUB %s", __FUNCTION__);
979 return s;
980}
981
982u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
983u8 *
984format_vnet_buffer_opaque (u8 * s, va_list * args)
985{
986 s = format (s, "BUG STUB %s", __FUNCTION__);
987 return s;
988}
989
990u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
991 __attribute__ ((weak));
992u8 *
993format_vnet_buffer_opaque2 (u8 * s, va_list * args)
994{
995 s = format (s, "BUG STUB %s", __FUNCTION__);
996 return s;
997}
998
999static u8 *
1000format_buffer_metadata (u8 * s, va_list * args)
1001{
1002 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
1003
1004 s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
1005 s = format (s, "current_data: %d, current_length: %d\n",
1006 (i32) (b->current_data), (i32) (b->current_length));
1007 s = format (s, "current_config_index: %d, flow_id: %x, next_buffer: %x\n",
1008 b->current_config_index, b->flow_id, b->next_buffer);
Damjan Marion910d3692019-01-21 11:48:34 +01001009 s = format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
1010 (u32) (b->error), (u32) (b->ref_count),
Dave Barach7fff3d22018-11-27 16:52:59 -05001011 (u32) (b->buffer_pool_index));
1012 s = format (s,
Damjan Marion9a8a12a2019-01-23 16:52:10 +01001013 "trace_index: %d, len_not_first_buf: %d\n",
1014 b->trace_index, b->total_length_not_including_first_buffer);
Dave Barach7fff3d22018-11-27 16:52:59 -05001015 return s;
1016}
1017
1018#define A(x) vec_add1(vm->pcap_buffer, (x))
1019
Dave Barach3ae28732018-11-16 17:19:00 -05001020static void
1021dispatch_pcap_trace (vlib_main_t * vm,
1022 vlib_node_runtime_t * node, vlib_frame_t * frame)
1023{
1024 int i;
1025 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
Dave Barach3ae28732018-11-16 17:19:00 -05001026 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05001027 vlib_trace_main_t *tm = &vm->trace_main;
Dave Barach3ae28732018-11-16 17:19:00 -05001028 u32 capture_size;
1029 vlib_node_t *n;
1030 i32 n_left;
1031 f64 time_now = vlib_time_now (vm);
1032 u32 *from;
Dave Barach3ae28732018-11-16 17:19:00 -05001033 u8 *d;
Dave Barach7fff3d22018-11-27 16:52:59 -05001034 u8 string_count;
Dave Barach3ae28732018-11-16 17:19:00 -05001035
1036 /* Input nodes don't have frames yet */
1037 if (frame == 0 || frame->n_vectors == 0)
1038 return;
1039
1040 from = vlib_frame_vector_args (frame);
1041 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1042 bufp = bufs;
1043
Dave Barach3ae28732018-11-16 17:19:00 -05001044 n = vlib_get_node (vm, node->node_index);
Dave Barach3ae28732018-11-16 17:19:00 -05001045
1046 for (i = 0; i < frame->n_vectors; i++)
1047 {
1048 if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1049 {
1050 b = bufp[i];
1051
Dave Barach7fff3d22018-11-27 16:52:59 -05001052 vec_reset_length (vm->pcap_buffer);
1053 string_count = 0;
Dave Barach1201a802018-11-20 12:08:39 -05001054
Dave Barach7fff3d22018-11-27 16:52:59 -05001055 /* Version, flags */
1056 A ((u8) VLIB_PCAP_MAJOR_VERSION);
1057 A ((u8) VLIB_PCAP_MINOR_VERSION);
1058 A (0 /* string_count */ );
1059 A (n->protocol_hint);
1060
1061 /* Buffer index (big endian) */
1062 A ((from[i] >> 24) & 0xff);
1063 A ((from[i] >> 16) & 0xff);
1064 A ((from[i] >> 8) & 0xff);
1065 A ((from[i] >> 0) & 0xff);
1066
1067 /* Node name, NULL-terminated ASCII */
1068 vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1069 string_count++;
1070
1071 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1072 format_buffer_metadata, b, 0);
1073 string_count++;
1074 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1075 format_vnet_buffer_opaque, b, 0);
1076 string_count++;
1077 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1078 format_vnet_buffer_opaque2, b, 0);
1079 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001080
1081 /* Is this packet traced? */
1082 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1083 {
1084 vlib_trace_header_t **h
1085 = pool_elt_at_index (tm->trace_buffer_pool, b->trace_index);
1086
Dave Barach7fff3d22018-11-27 16:52:59 -05001087 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1088 format_vlib_trace, vm, h[0], 0);
1089 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001090 }
1091
Dave Barach7fff3d22018-11-27 16:52:59 -05001092 /* Save the string count */
1093 vm->pcap_buffer[2] = string_count;
1094
1095 /* Figure out how many bytes in the pcap trace */
1096 capture_size = vec_len (vm->pcap_buffer) +
1097 +vlib_buffer_length_in_chain (vm, b);
Dave Barach3ae28732018-11-16 17:19:00 -05001098
1099 clib_spinlock_lock_if_init (&pm->lock);
Dave Barach1201a802018-11-20 12:08:39 -05001100 n_left = clib_min (capture_size, 16384);
Dave Barach3ae28732018-11-16 17:19:00 -05001101 d = pcap_add_packet (pm, time_now, n_left, capture_size);
1102
Dave Barach7fff3d22018-11-27 16:52:59 -05001103 /* Copy the header */
1104 clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1105 d += vec_len (vm->pcap_buffer);
Dave Barach1201a802018-11-20 12:08:39 -05001106
1107 n_left = clib_min
1108 (vlib_buffer_length_in_chain (vm, b),
Dave Barach7fff3d22018-11-27 16:52:59 -05001109 (16384 - vec_len (vm->pcap_buffer)));
Dave Barach3ae28732018-11-16 17:19:00 -05001110 /* Copy the packet data */
1111 while (1)
1112 {
1113 u32 copy_length = clib_min ((u32) n_left, b->current_length);
1114 clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1115 n_left -= b->current_length;
1116 if (n_left <= 0)
1117 break;
1118 d += b->current_length;
1119 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1120 b = vlib_get_buffer (vm, b->next_buffer);
1121 }
1122 clib_spinlock_unlock_if_init (&pm->lock);
1123 }
1124 }
1125}
1126
Damjan Marion9a332e12017-03-28 15:11:20 +02001127static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128dispatch_node (vlib_main_t * vm,
1129 vlib_node_runtime_t * node,
1130 vlib_node_type_t type,
1131 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001132 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133{
1134 uword n, v;
1135 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001136 vlib_node_main_t *nm = &vm->node_main;
1137 vlib_next_frame_t *nf;
Dave Barach900cbad2019-01-31 19:12:51 -05001138 u64 pmc_before[2], pmc_after[2], pmc_delta[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139
1140 if (CLIB_DEBUG > 0)
1141 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001142 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 ASSERT (n->type == type);
1144 }
1145
1146 /* Only non-internal nodes may be disabled. */
1147 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1148 {
1149 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1150 return last_time_stamp;
1151 }
1152
1153 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1154 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1155 {
1156 u32 c = node->input_main_loops_per_call;
1157 /* Only call node when count reaches zero. */
1158 if (c)
1159 {
1160 node->input_main_loops_per_call = c - 1;
1161 return last_time_stamp;
1162 }
1163 }
1164
1165 /* Speculatively prefetch next frames. */
1166 if (node->n_next_nodes > 0)
1167 {
1168 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1169 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1170 }
1171
1172 vm->cpu_time_last_node_dispatch = last_time_stamp;
1173
Dave Barach900cbad2019-01-31 19:12:51 -05001174 vlib_elog_main_loop_event (vm, node->node_index,
1175 last_time_stamp, frame ? frame->n_vectors : 0,
1176 /* is_after */ 0);
1177
1178 vlib_node_runtime_perf_counter (vm, &pmc_before[0], &pmc_before[1]);
1179
1180 /*
1181 * Turn this on if you run into
1182 * "bad monkey" contexts, and you want to know exactly
1183 * which nodes they've visited... See ixge.c...
1184 */
1185 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186 {
Dave Barach900cbad2019-01-31 19:12:51 -05001187 int i;
1188 u32 *from;
1189 from = vlib_frame_vector_args (frame);
1190 for (i = 0; i < frame->n_vectors; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 {
Dave Barach900cbad2019-01-31 19:12:51 -05001192 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1193 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001194 }
Dave Barach900cbad2019-01-31 19:12:51 -05001195 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1196 dispatch_pcap_trace (vm, node, frame);
1197 n = node->function (vm, node, frame);
1198 }
1199 else
1200 {
1201 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1202 dispatch_pcap_trace (vm, node, frame);
1203 n = node->function (vm, node, frame);
1204 }
1205
1206 t = clib_cpu_time_now ();
1207
1208 /*
1209 * To validate accounting: pmc_delta = t - pmc_before;
1210 * perf ticks should equal clocks/pkt...
1211 */
1212 vlib_node_runtime_perf_counter (vm, &pmc_after[0], &pmc_after[1]);
1213
1214 pmc_delta[0] = pmc_after[0] - pmc_before[0];
1215 pmc_delta[1] = pmc_after[1] - pmc_before[1];
1216
1217 vlib_elog_main_loop_event (vm, node->node_index, t, n, 1 /* is_after */ );
1218
1219 vm->main_loop_vectors_processed += n;
1220 vm->main_loop_nodes_processed += n > 0;
1221
1222 v = vlib_node_runtime_update_stats (vm, node,
1223 /* n_calls */ 1,
1224 /* n_vectors */ n,
1225 /* n_clocks */ t - last_time_stamp,
1226 pmc_delta[0] /* PMC0 */ ,
1227 pmc_delta[1] /* PMC1 */ );
1228
1229 /* When in interrupt mode and vector rate crosses threshold switch to
1230 polling mode. */
1231 if (PREDICT_FALSE ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1232 || (dispatch_state == VLIB_NODE_STATE_POLLING
1233 && (node->flags
1234 &
1235 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))))
1236 {
1237 /* *INDENT-OFF* */
1238 ELOG_TYPE_DECLARE (e) =
1239 {
1240 .function = (char *) __FUNCTION__,
1241 .format = "%s vector length %d, switching to %s",
1242 .format_args = "T4i4t4",
1243 .n_enum_strings = 2,
1244 .enum_strings = {
1245 "interrupt", "polling",
1246 },
1247 };
1248 /* *INDENT-ON* */
1249 struct
1250 {
1251 u32 node_name, vector_length, is_polling;
1252 } *ed;
1253
1254 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1255 && v >= nm->polling_threshold_vector_length) &&
1256 !(node->flags &
1257 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach3ae28732018-11-16 17:19:00 -05001258 {
Dave Barach900cbad2019-01-31 19:12:51 -05001259 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1260 n->state = VLIB_NODE_STATE_POLLING;
1261 node->state = VLIB_NODE_STATE_POLLING;
1262 node->flags &=
1263 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1264 node->flags |= VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1265 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1266 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267
Dave Barach900cbad2019-01-31 19:12:51 -05001268 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001269 {
Dave Barach900cbad2019-01-31 19:12:51 -05001270 vlib_worker_thread_t *w = vlib_worker_threads
1271 + vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272
Steven6aa75af2017-02-24 10:03:22 -08001273 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1274 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001275 ed->node_name = n->name_elog_string;
1276 ed->vector_length = v;
1277 ed->is_polling = 1;
1278 }
Dave Barach900cbad2019-01-31 19:12:51 -05001279 }
1280 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1281 && v <= nm->interrupt_threshold_vector_length)
1282 {
1283 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1284 if (node->flags &
1285 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001286 {
Dave Barach900cbad2019-01-31 19:12:51 -05001287 /* Switch to interrupt mode after dispatch in polling one more time.
1288 This allows driver to re-enable interrupts. */
1289 n->state = VLIB_NODE_STATE_INTERRUPT;
1290 node->state = VLIB_NODE_STATE_INTERRUPT;
1291 node->flags &=
1292 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1293 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -= 1;
1294 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] += 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001295
Dave Barach900cbad2019-01-31 19:12:51 -05001296 }
1297 else
1298 {
1299 vlib_worker_thread_t *w = vlib_worker_threads
1300 + vm->thread_index;
1301 node->flags |=
1302 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1303 if (PREDICT_FALSE (vlib_global_main.elog_trace_graph_dispatch))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001304 {
Steven6aa75af2017-02-24 10:03:22 -08001305 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1306 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001307 ed->node_name = n->name_elog_string;
1308 ed->vector_length = v;
1309 ed->is_polling = 0;
1310 }
1311 }
1312 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001313 }
1314
1315 return t;
1316}
1317
Damjan Marion9a332e12017-03-28 15:11:20 +02001318static u64
Dave Baracha6269992017-06-07 08:18:49 -04001319dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1320 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001322 vlib_node_main_t *nm = &vm->node_main;
1323 vlib_frame_t *f;
1324 vlib_next_frame_t *nf, nf_dummy;
1325 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326 u32 restore_frame_index;
Dave Baracha6269992017-06-07 08:18:49 -04001327 vlib_pending_frame_t *p;
1328
1329 /* See comment below about dangling references to nm->pending_frames */
1330 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331
1332 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1333 p->node_runtime_index);
1334
1335 f = vlib_get_frame (vm, p->frame_index);
1336 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1337 {
1338 /* No next frame: so use dummy on stack. */
1339 nf = &nf_dummy;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001340 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341 nf->frame_index = ~p->frame_index;
1342 }
1343 else
1344 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1345
Damjan Marion633b6fd2018-09-14 14:38:53 +02001346 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347
1348 /* Force allocation of new frame while current frame is being
1349 dispatched. */
1350 restore_frame_index = ~0;
1351 if (nf->frame_index == p->frame_index)
1352 {
1353 nf->frame_index = ~0;
1354 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001355 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356 restore_frame_index = p->frame_index;
1357 }
1358
1359 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001360 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 ASSERT (f->n_vectors > 0);
1362
1363 /* Copy trace flag from next frame to node.
1364 Trace flag indicates that at least one vector in the dispatched
1365 frame is traced. */
1366 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1367 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1368 nf->flags &= ~VLIB_FRAME_TRACE;
1369
1370 last_time_stamp = dispatch_node (vm, n,
1371 VLIB_NODE_TYPE_INTERNAL,
1372 VLIB_NODE_STATE_POLLING,
1373 f, last_time_stamp);
1374
Damjan Marion296988d2019-02-21 20:24:54 +01001375 f->frame_flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_NO_APPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001376
1377 /* Frame is ready to be used again, so restore it. */
1378 if (restore_frame_index != ~0)
1379 {
Dave Baracha6269992017-06-07 08:18:49 -04001380 /*
1381 * We musn't restore a frame that is flagged to be freed. This
1382 * shouldn't happen since frames to be freed post dispatch are
1383 * those used when the to-node frame becomes full i.e. they form a
1384 * sort of queue of frames to a single node. If we get here then
1385 * the to-node frame and the pending frame *were* the same, and so
1386 * we removed the to-node frame. Therefore this frame is no
1387 * longer part of the queue for that node and hence it cannot be
1388 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001389 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001390 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001391
Dave Baracha6269992017-06-07 08:18:49 -04001392 /*
1393 * NB: dispatching node n can result in the creation and scheduling
1394 * of new frames, and hence in the reallocation of nm->pending_frames.
1395 * Recompute p, or no supper. This was broken for more than 10 years.
1396 */
1397 p = nm->pending_frames + pending_frame_index;
1398
1399 /*
1400 * p->next_frame_index can change during node dispatch if node
1401 * function decides to change graph hook up.
1402 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001403 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001404 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001405
Neale Ranns88170612016-11-22 08:29:51 +00001406 if (~0 == nf->frame_index)
1407 {
1408 /* no new frame has been assigned to this node, use the saved one */
1409 nf->frame_index = restore_frame_index;
1410 f->n_vectors = 0;
1411 }
1412 else
1413 {
1414 /* The node has gained a frame, implying packets from the current frame
1415 were re-queued to this same node. we don't need the saved one
1416 anymore */
1417 vlib_frame_free (vm, n, f);
1418 }
1419 }
1420 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001421 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001422 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001423 {
1424 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1425 vlib_frame_free (vm, n, f);
1426 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001427 }
1428
1429 return last_time_stamp;
1430}
1431
1432always_inline uword
1433vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001434{
1435 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1436}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437
Dave Barach9b8ffd92016-07-08 08:13:45 -04001438typedef struct
1439{
1440 vlib_main_t *vm;
1441 vlib_process_t *process;
1442 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443} vlib_process_bootstrap_args_t;
1444
1445/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001446static uword
1447vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001448{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001449 vlib_process_bootstrap_args_t *a;
1450 vlib_main_t *vm;
1451 vlib_node_runtime_t *node;
1452 vlib_frame_t *f;
1453 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454 uword n;
1455
1456 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1457
1458 vm = a->vm;
1459 p = a->process;
1460 f = a->frame;
1461 node = &p->node_runtime;
1462
1463 n = node->function (vm, node, f);
1464
1465 ASSERT (vlib_process_stack_is_valid (p));
1466
1467 clib_longjmp (&p->return_longjmp, n);
1468
1469 return n;
1470}
1471
1472/* Called in main stack. */
1473static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001474vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475{
1476 vlib_process_bootstrap_args_t a;
1477 uword r;
1478
1479 a.vm = vm;
1480 a.process = p;
1481 a.frame = f;
1482
1483 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1484 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1485 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1486 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1487
1488 return r;
1489}
1490
1491static_always_inline uword
1492vlib_process_resume (vlib_process_t * p)
1493{
1494 uword r;
1495 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1496 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1497 | VLIB_PROCESS_RESUME_PENDING);
1498 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1499 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1500 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1501 return r;
1502}
1503
1504static u64
1505dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001506 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001507{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001508 vlib_node_main_t *nm = &vm->node_main;
1509 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1510 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001511 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001512 u64 t;
1513 uword n_vectors, is_suspend;
1514
1515 if (node->state != VLIB_NODE_STATE_POLLING
1516 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1517 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1518 return last_time_stamp;
1519
1520 p->flags |= VLIB_PROCESS_IS_RUNNING;
1521
1522 t = last_time_stamp;
1523 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1524 f ? f->n_vectors : 0, /* is_after */ 0);
1525
1526 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001527 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001528 nm->current_process_index = node->runtime_index;
1529
1530 n_vectors = vlib_process_startup (vm, p, f);
1531
Florin Corasfd542f12018-05-16 19:28:24 -07001532 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533
1534 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1535 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1536 if (is_suspend)
1537 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001538 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001539
1540 n_vectors = 0;
1541 pool_get (nm->suspended_process_frames, pf);
1542 pf->node_runtime_index = node->runtime_index;
1543 pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1544 pf->next_frame_index = ~0;
1545
1546 p->n_suspends += 1;
1547 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1548
1549 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001550 {
1551 TWT (tw_timer_wheel) * tw =
1552 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1553 p->stop_timer_handle =
1554 TW (tw_timer_start) (tw,
1555 vlib_timing_wheel_data_set_suspended_process
1556 (node->runtime_index) /* [sic] pool idex */ ,
1557 0 /* timer_id */ ,
1558 p->resume_clock_interval);
1559 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001560 }
1561 else
1562 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1563
1564 t = clib_cpu_time_now ();
1565
Dave Barach9b8ffd92016-07-08 08:13:45 -04001566 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1567 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001568
1569 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001570 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001571 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001572 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001573
1574 return t;
1575}
1576
Dave Barach9b8ffd92016-07-08 08:13:45 -04001577void
1578vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001579{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001580 vlib_node_main_t *nm = &vm->node_main;
1581 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1583}
1584
1585static u64
1586dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001587 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001589 vlib_node_main_t *nm = &vm->node_main;
1590 vlib_node_runtime_t *node_runtime;
1591 vlib_node_t *node;
1592 vlib_frame_t *f;
1593 vlib_process_t *p;
1594 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001595 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001596
Ed Warnickecb9cada2015-12-08 15:45:58 -07001597 t = last_time_stamp;
1598
1599 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001600 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001601 return last_time_stamp;
1602
1603 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1604 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1605
Florin Coras221d6f12018-11-07 20:46:38 -08001606 pf = pool_elt_at_index (nm->suspended_process_frames,
1607 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608
1609 node_runtime = &p->node_runtime;
1610 node = vlib_get_node (vm, node_runtime->node_index);
1611 f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1612
Dave Barach9b8ffd92016-07-08 08:13:45 -04001613 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1614 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001615
1616 /* Save away current process for suspend. */
1617 nm->current_process_index = node->runtime_index;
1618
1619 n_vectors = vlib_process_resume (p);
1620 t = clib_cpu_time_now ();
1621
1622 nm->current_process_index = ~0;
1623
1624 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1625 if (is_suspend)
1626 {
1627 /* Suspend it again. */
1628 n_vectors = 0;
1629 p->n_suspends += 1;
1630 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001631 {
1632 p->stop_timer_handle =
1633 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1634 vlib_timing_wheel_data_set_suspended_process
1635 (node->runtime_index) /* [sic] pool idex */ ,
1636 0 /* timer_id */ ,
1637 p->resume_clock_interval);
1638 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001639 }
1640 else
1641 {
1642 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001643 pool_put_index (nm->suspended_process_frames,
1644 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001645 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001646 }
1647
1648 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001649 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1650 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
1652 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001653 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001654 /* n_vectors */ n_vectors,
Dave Barachec595ef2019-01-24 10:34:24 -05001655 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001656
1657 return t;
1658}
1659
Dave Barach2877eee2017-12-15 12:22:57 -05001660void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1661void
1662vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1663{
1664}
1665
1666
Damjan Marione9d52d52017-03-09 15:42:26 +01001667static_always_inline void
1668vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001669{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001670 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001671 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001672 uword i;
1673 u64 cpu_time_now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001674 vlib_frame_queue_main_t *fqm;
Damjan Marion2c2b6402017-03-28 14:16:15 +02001675 u32 *last_node_runtime_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001676
1677 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001678 if (is_main)
1679 {
1680 vec_resize (nm->pending_frames, 32);
1681 _vec_len (nm->pending_frames) = 0;
1682 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001683
1684 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001685 if (is_main)
1686 {
1687 cpu_time_now = vm->clib_time.last_cpu_time;
1688 vm->cpu_time_main_loop_start = cpu_time_now;
1689 }
1690 else
1691 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001692
Damjan Marion2c2b6402017-03-28 14:16:15 +02001693 /* Pre-allocate interupt runtime indices and lock. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001694 vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001695 vec_alloc (last_node_runtime_indices, 32);
1696 if (!is_main)
1697 clib_spinlock_init (&nm->pending_interrupt_lock);
1698
1699 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001700 if (!nm->polling_threshold_vector_length)
1701 nm->polling_threshold_vector_length = 10;
1702 if (!nm->interrupt_threshold_vector_length)
1703 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001704
Damjan Marion29c0b332019-01-28 13:41:27 +01001705 vm->cpu_id = clib_get_current_cpu_id ();
1706 vm->numa_node = clib_get_current_numa_node ();
1707
Ed Warnickecb9cada2015-12-08 15:45:58 -07001708 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001709 if (is_main)
1710 {
1711 uword i;
Stevenf3b53642017-05-01 14:03:02 -07001712 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001713 for (i = 0; i < vec_len (nm->processes); i++)
1714 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1715 cpu_time_now);
1716 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001717
1718 while (1)
1719 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001720 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001721
Dave Barach2877eee2017-12-15 12:22:57 -05001722 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001723 {
1724 if (!is_main)
1725 vl_api_send_pending_rpc_requests (vm);
1726 }
Dave Barach2877eee2017-12-15 12:22:57 -05001727
Damjan Marione9d52d52017-03-09 15:42:26 +01001728 if (!is_main)
1729 {
1730 vlib_worker_thread_barrier_check ();
1731 vec_foreach (fqm, tm->frame_queue_mains)
1732 vlib_frame_queue_dequeue (vm, fqm);
Dave Barach4d1a8662018-09-10 12:31:15 -04001733 if (PREDICT_FALSE (vm->worker_thread_main_loop_callback != 0))
1734 ((void (*)(vlib_main_t *)) vm->worker_thread_main_loop_callback)
1735 (vm);
Damjan Marione9d52d52017-03-09 15:42:26 +01001736 }
1737
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738 /* Process pre-input nodes. */
Damjan Marionceab7882018-01-19 20:56:12 +01001739 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1740 cpu_time_now = dispatch_node (vm, n,
1741 VLIB_NODE_TYPE_PRE_INPUT,
1742 VLIB_NODE_STATE_POLLING,
1743 /* frame */ 0,
1744 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001745
1746 /* Next process input nodes. */
1747 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1748 cpu_time_now = dispatch_node (vm, n,
1749 VLIB_NODE_TYPE_INPUT,
1750 VLIB_NODE_STATE_POLLING,
1751 /* frame */ 0,
1752 cpu_time_now);
1753
Damjan Marione9d52d52017-03-09 15:42:26 +01001754 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001755 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001756
1757 /* Next handle interrupts. */
1758 {
Dave Barachd47c5092018-01-19 13:09:20 -05001759 /* unlocked read, for performance */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001760 uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1761 uword i;
Dave Barachd47c5092018-01-19 13:09:20 -05001762 if (PREDICT_FALSE (l > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763 {
Damjan Marion2c2b6402017-03-28 14:16:15 +02001764 u32 *tmp;
1765 if (!is_main)
Dave Barachd47c5092018-01-19 13:09:20 -05001766 {
1767 clib_spinlock_lock (&nm->pending_interrupt_lock);
1768 /* Re-read w/ lock held, in case another thread added an item */
1769 l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1770 }
1771
Damjan Marion2c2b6402017-03-28 14:16:15 +02001772 tmp = nm->pending_interrupt_node_runtime_indices;
1773 nm->pending_interrupt_node_runtime_indices =
1774 last_node_runtime_indices;
1775 last_node_runtime_indices = tmp;
1776 _vec_len (last_node_runtime_indices) = 0;
1777 if (!is_main)
1778 clib_spinlock_unlock (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001779 for (i = 0; i < l; i++)
1780 {
1781 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
Damjan Marion2c2b6402017-03-28 14:16:15 +02001782 last_node_runtime_indices[i]);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001783 cpu_time_now =
1784 dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1785 VLIB_NODE_STATE_INTERRUPT,
1786 /* frame */ 0,
1787 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001788 }
1789 }
1790 }
Dave Barache3248982018-08-14 13:47:58 -04001791 /* Input nodes may have added work to the pending vector.
1792 Process pending vector until there is nothing left.
1793 All pending vectors will be processed from input -> output. */
1794 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1795 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1796 /* Reset pending vector for next iteration. */
1797 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001798
Damjan Marione9d52d52017-03-09 15:42:26 +01001799 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001800 {
Dave Barach900cbad2019-01-31 19:12:51 -05001801 /* *INDENT-OFF* */
1802 ELOG_TYPE_DECLARE (es) =
1803 {
1804 .format = "process tw start",
1805 .format_args = "",
1806 };
1807 ELOG_TYPE_DECLARE (ee) =
1808 {
1809 .format = "process tw end: %d",
1810 .format_args = "i4",
1811 };
1812 /* *INDENT-ON* */
1813
1814 struct
1815 {
1816 int nready_procs;
1817 } *ed;
1818
Damjan Marione9d52d52017-03-09 15:42:26 +01001819 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001820 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1821
Dave Barach900cbad2019-01-31 19:12:51 -05001822 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1823 ed = ELOG_DATA (&vlib_global_main.elog_main, es);
1824
Dave Barach5c20a012017-06-13 08:48:31 -04001825 nm->data_from_advancing_timing_wheel =
1826 TW (tw_timer_expire_timers_vec)
1827 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1828 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001829
Damjan Marione9d52d52017-03-09 15:42:26 +01001830 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001831
Dave Barach900cbad2019-01-31 19:12:51 -05001832 if (PREDICT_FALSE (vm->elog_trace_graph_dispatch))
1833 {
1834 ed = ELOG_DATA (&vlib_global_main.elog_main, ee);
1835 ed->nready_procs =
1836 _vec_len (nm->data_from_advancing_timing_wheel);
1837 }
1838
Damjan Marione9d52d52017-03-09 15:42:26 +01001839 if (PREDICT_FALSE
1840 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001841 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001842 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001843
Damjan Marione9d52d52017-03-09 15:42:26 +01001844 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1845 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001846 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001847 u32 d = nm->data_from_advancing_timing_wheel[i];
1848 u32 di = vlib_timing_wheel_data_get_index (d);
1849
1850 if (vlib_timing_wheel_data_is_timed_event (d))
1851 {
1852 vlib_signal_timed_event_data_t *te =
1853 pool_elt_at_index (nm->signal_timed_event_data_pool,
1854 di);
1855 vlib_node_t *n =
1856 vlib_get_node (vm, te->process_node_index);
1857 vlib_process_t *p =
1858 vec_elt (nm->processes, n->runtime_index);
1859 void *data;
1860 data =
1861 vlib_process_signal_event_helper (nm, n, p,
1862 te->event_type_index,
1863 te->n_data_elts,
1864 te->n_data_elt_bytes);
1865 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001866 clib_memcpy_fast (data, te->inline_event_data,
1867 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001868 else
1869 {
Dave Barach178cf492018-11-13 16:34:13 -05001870 clib_memcpy_fast (data, te->event_data_as_vector,
1871 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001872 vec_free (te->event_data_as_vector);
1873 }
1874 pool_put (nm->signal_timed_event_data_pool, te);
1875 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001876 else
1877 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001878 cpu_time_now = clib_cpu_time_now ();
1879 cpu_time_now =
1880 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001881 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001882 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001883 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1884 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001885 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001886 vlib_increment_main_loop_counter (vm);
1887
1888 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001889 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001890 cpu_time_now = clib_cpu_time_now ();
1891 }
1892}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001893
Damjan Marione9d52d52017-03-09 15:42:26 +01001894static void
1895vlib_main_loop (vlib_main_t * vm)
1896{
1897 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1898}
1899
1900void
1901vlib_worker_loop (vlib_main_t * vm)
1902{
1903 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1904}
1905
Ed Warnickecb9cada2015-12-08 15:45:58 -07001906vlib_main_t vlib_global_main;
1907
1908static clib_error_t *
1909vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1910{
1911 int turn_on_mem_trace = 0;
1912
1913 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1914 {
1915 if (unformat (input, "memory-trace"))
1916 turn_on_mem_trace = 1;
1917
1918 else if (unformat (input, "elog-events %d",
1919 &vm->elog_main.event_ring_size))
1920 ;
Dave Barach81481312017-05-16 09:08:14 -04001921 else if (unformat (input, "elog-post-mortem-dump"))
1922 vm->elog_post_mortem_dump = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001923 else
1924 return unformat_parse_error (input);
1925 }
1926
1927 unformat_free (input);
1928
1929 /* Enable memory trace as early as possible. */
1930 if (turn_on_mem_trace)
1931 clib_mem_trace (1);
1932
1933 return 0;
1934}
1935
1936VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1937
Dave Barach9b8ffd92016-07-08 08:13:45 -04001938static void
1939dummy_queue_signal_callback (vlib_main_t * vm)
1940{
1941}
Dave Barach16c75df2016-05-31 14:05:46 -04001942
Dave Barach1f806582018-06-14 09:18:21 -04001943#define foreach_weak_reference_stub \
1944_(vlib_map_stat_segment_init) \
1945_(vpe_api_init) \
1946_(vlibmemory_init) \
1947_(map_api_segment_init)
1948
1949#define _(name) \
1950clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1951clib_error_t *name (vlib_main_t *vm) { return 0; }
1952foreach_weak_reference_stub;
1953#undef _
1954
Ed Warnickecb9cada2015-12-08 15:45:58 -07001955/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001956int
Eyal Barid334a6b2016-09-19 10:23:39 +03001957vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001958{
Eyal Barid334a6b2016-09-19 10:23:39 +03001959 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001960 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001961
Dave Barach16c75df2016-05-31 14:05:46 -04001962 vm->queue_signal_callback = dummy_queue_signal_callback;
1963
Ed Warnickecb9cada2015-12-08 15:45:58 -07001964 clib_time_init (&vm->clib_time);
1965
1966 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001967 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001968 vm->elog_main.event_ring_size = 128 << 10;
1969 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
1970 elog_enable_disable (&vm->elog_main, 1);
1971
1972 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001973 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001974 vm->name = "VLIB";
1975
Damjan Marion68b4da62018-09-30 18:26:20 +02001976 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001977 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001978 clib_error_report (error);
1979 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001980 }
Damjan Marion49d66f12017-07-20 18:10:35 +02001981
Filip Tehlard2bbdef2019-02-22 05:05:53 -08001982 if ((error = vlib_map_stat_segment_init (vm)))
1983 {
1984 clib_error_report (error);
1985 goto done;
1986 }
1987
Damjan Marion49d66f12017-07-20 18:10:35 +02001988 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001989 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001990 clib_error_report (error);
1991 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001992 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001993
1994 if ((error = vlib_thread_init (vm)))
1995 {
1996 clib_error_report (error);
1997 goto done;
1998 }
1999
2000 /* Register static nodes so that init functions may use them. */
2001 vlib_register_all_static_nodes (vm);
2002
2003 /* Set seed for random number generator.
2004 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002005 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002006 vm->random_seed = clib_cpu_time_now ();
2007 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
2008
Ed Warnickecb9cada2015-12-08 15:45:58 -07002009 /* Initialize node graph. */
2010 if ((error = vlib_node_main_init (vm)))
2011 {
2012 /* Arrange for graph hook up error to not be fatal when debugging. */
2013 if (CLIB_DEBUG > 0)
2014 clib_error_report (error);
2015 else
2016 goto done;
2017 }
2018
Dave Barach1f806582018-06-14 09:18:21 -04002019 /* Direct call / weak reference, for vlib standalone use-cases */
2020 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002021 {
2022 clib_error_report (error);
2023 goto done;
2024 }
2025
Dave Barach1f806582018-06-14 09:18:21 -04002026 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002027 {
2028 clib_error_report (error);
2029 goto done;
2030 }
2031
Dave Barach1f806582018-06-14 09:18:21 -04002032 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04002033 {
2034 clib_error_report (error);
2035 goto done;
2036 }
2037
Ole Troan964f93e2016-06-10 13:22:36 +02002038 /* See unix/main.c; most likely already set up */
2039 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002040 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02002041 if ((error = vlib_call_all_init_functions (vm)))
2042 goto done;
2043
Dave Barach5c20a012017-06-13 08:48:31 -04002044 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
2045 CLIB_CACHE_LINE_BYTES);
2046
2047 vec_validate (nm->data_from_advancing_timing_wheel, 10);
2048 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2049
2050 /* Create the process timing wheel */
2051 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2052 0 /* no callback */ ,
2053 10e-6 /* timer period 10us */ ,
2054 ~0 /* max expirations per call */ );
2055
Dave Barach2877eee2017-12-15 12:22:57 -05002056 vec_validate (vm->pending_rpc_requests, 0);
2057 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04002058 vec_validate (vm->processing_rpc_requests, 0);
2059 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05002060
Ed Warnickecb9cada2015-12-08 15:45:58 -07002061 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2062 {
2063 case VLIB_MAIN_LOOP_EXIT_NONE:
2064 vm->main_loop_exit_set = 1;
2065 break;
2066
2067 case VLIB_MAIN_LOOP_EXIT_CLI:
2068 goto done;
2069
2070 default:
2071 error = vm->main_loop_error;
2072 goto done;
2073 }
2074
Dave Barach9b8ffd92016-07-08 08:13:45 -04002075 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002076 goto done;
2077
2078 /* Call all main loop enter functions. */
2079 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002080 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002081 sub_error = vlib_call_all_main_loop_enter_functions (vm);
2082 if (sub_error)
2083 clib_error_report (sub_error);
2084 }
2085
2086 vlib_main_loop (vm);
2087
Dave Barach9b8ffd92016-07-08 08:13:45 -04002088done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002089 /* Call all exit functions. */
2090 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002091 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002092 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2093 if (sub_error)
2094 clib_error_report (sub_error);
2095 }
2096
2097 if (error)
2098 clib_error_report (error);
2099
2100 return 0;
2101}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002102
Dave Barach3ae28732018-11-16 17:19:00 -05002103static inline clib_error_t *
2104pcap_dispatch_trace_command_internal (vlib_main_t * vm,
2105 unformat_input_t * input,
2106 vlib_cli_command_t * cmd, int rx_tx)
2107{
2108#define PCAP_DEF_PKT_TO_CAPTURE (100)
2109
2110 unformat_input_t _line_input, *line_input = &_line_input;
2111 pcap_main_t *pm = &vm->dispatch_pcap_main;
2112 u8 *filename;
2113 u8 *chroot_filename = 0;
2114 u32 max = 0;
2115 int enabled = 0;
2116 int errorFlag = 0;
2117 clib_error_t *error = 0;
Dave Barach1201a802018-11-20 12:08:39 -05002118 u32 node_index, add;
2119 vlib_trace_main_t *tm;
2120 vlib_trace_node_t *tn;
Dave Barach3ae28732018-11-16 17:19:00 -05002121
2122 /* Get a line of input. */
2123 if (!unformat_user (input, unformat_line_input, line_input))
2124 return 0;
2125
2126 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2127 {
2128 if (unformat (line_input, "on"))
2129 {
2130 if (vm->dispatch_pcap_enable == 0)
2131 {
2132 enabled = 1;
2133 }
2134 else
2135 {
2136 vlib_cli_output (vm, "pcap dispatch capture already on...");
2137 errorFlag = 1;
2138 break;
2139 }
2140 }
2141 else if (unformat (line_input, "off"))
2142 {
2143 if (vm->dispatch_pcap_enable)
2144 {
2145 vlib_cli_output
2146 (vm, "captured %d pkts...", pm->n_packets_captured);
2147 if (pm->n_packets_captured)
2148 {
2149 pm->n_packets_to_capture = pm->n_packets_captured;
2150 error = pcap_write (pm);
2151 if (error)
2152 clib_error_report (error);
2153 else
2154 vlib_cli_output (vm, "saved to %s...", pm->file_name);
2155 }
2156 vm->dispatch_pcap_enable = 0;
2157 }
2158 else
2159 {
2160 vlib_cli_output (vm, "pcap tx capture already off...");
2161 errorFlag = 1;
2162 break;
2163 }
2164 }
2165 else if (unformat (line_input, "max %d", &max))
2166 {
2167 if (vm->dispatch_pcap_enable)
2168 {
2169 vlib_cli_output
2170 (vm,
2171 "can't change max value while pcap tx capture active...");
2172 errorFlag = 1;
2173 break;
2174 }
2175 pm->n_packets_to_capture = max;
2176 }
BenoƮt Ganne362456a2019-01-21 17:41:25 +01002177 else
2178 if (unformat
2179 (line_input, "file %U", unformat_vlib_tmpfile, &filename))
Dave Barach3ae28732018-11-16 17:19:00 -05002180 {
2181 if (vm->dispatch_pcap_enable)
2182 {
2183 vlib_cli_output
2184 (vm, "can't change file while pcap tx capture active...");
2185 errorFlag = 1;
2186 break;
2187 }
Dave Barach3ae28732018-11-16 17:19:00 -05002188 }
2189 else if (unformat (line_input, "status"))
2190 {
2191 if (vm->dispatch_pcap_enable)
2192 {
2193 vlib_cli_output
2194 (vm, "pcap dispatch capture is on: %d of %d pkts...",
2195 pm->n_packets_captured, pm->n_packets_to_capture);
2196 vlib_cli_output (vm, "Capture to file %s", pm->file_name);
2197 }
2198 else
2199 {
2200 vlib_cli_output (vm, "pcap dispatch capture is off...");
2201 }
2202 break;
2203 }
Dave Barach1201a802018-11-20 12:08:39 -05002204 else if (unformat (line_input, "buffer-trace %U %d",
2205 unformat_vlib_node, vm, &node_index, &add))
2206 {
2207 if (vnet_trace_dummy == 0)
2208 vec_validate_aligned (vnet_trace_dummy, 2048,
2209 CLIB_CACHE_LINE_BYTES);
2210 vlib_cli_output (vm, "Buffer tracing of %d pkts from %U enabled...",
2211 add, format_vlib_node_name, vm, node_index);
2212
2213 /* *INDENT-OFF* */
2214 foreach_vlib_main ((
2215 {
2216 tm = &this_vlib_main->trace_main;
2217 tm->verbose = 0; /* not sure this ever did anything... */
2218 vec_validate (tm->nodes, node_index);
2219 tn = tm->nodes + node_index;
2220 tn->limit += add;
2221 tm->trace_enable = 1;
2222 }));
2223 /* *INDENT-ON* */
2224 }
Dave Barach3ae28732018-11-16 17:19:00 -05002225
2226 else
2227 {
2228 error = clib_error_return (0, "unknown input `%U'",
2229 format_unformat_error, line_input);
2230 errorFlag = 1;
2231 break;
2232 }
2233 }
2234 unformat_free (line_input);
2235
2236
2237 if (errorFlag == 0)
2238 {
2239 /* Since no error, save configured values. */
2240 if (chroot_filename)
2241 {
2242 if (pm->file_name)
2243 vec_free (pm->file_name);
2244 vec_add1 (chroot_filename, 0);
2245 pm->file_name = (char *) chroot_filename;
2246 }
2247
2248 if (max)
2249 pm->n_packets_to_capture = max;
2250
2251 if (enabled)
2252 {
2253 if (pm->file_name == 0)
2254 pm->file_name = (char *) format (0, "/tmp/dispatch.pcap%c", 0);
2255
2256 pm->n_packets_captured = 0;
Dave Barach7b01e9e2019-01-09 10:22:24 -05002257 pm->packet_type = PCAP_PACKET_TYPE_vpp;
Dave Barach3ae28732018-11-16 17:19:00 -05002258 if (pm->lock == 0)
2259 clib_spinlock_init (&(pm->lock));
2260 vm->dispatch_pcap_enable = 1;
2261 vlib_cli_output (vm, "pcap dispatch capture on...");
2262 }
2263 }
2264 else if (chroot_filename)
2265 vec_free (chroot_filename);
2266
2267 return error;
2268}
2269
2270static clib_error_t *
2271pcap_dispatch_trace_command_fn (vlib_main_t * vm,
2272 unformat_input_t * input,
2273 vlib_cli_command_t * cmd)
2274{
2275 return pcap_dispatch_trace_command_internal (vm, input, cmd, VLIB_RX);
2276}
2277
2278/*?
2279 * This command is used to start or stop pcap dispatch trace capture, or show
2280 * the capture status.
2281 *
2282 * This command has the following optional parameters:
2283 *
2284 * - <b>on|off</b> - Used to start or stop capture.
2285 *
2286 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2287 * of packets have been received, buffer is flushed to file. Once another
2288 * '<em>nn</em>' number of packets have been received, buffer is flushed
2289 * to file, overwriting previous write. If not entered, value defaults
2290 * to 100. Can only be updated if packet capture is off.
2291 *
2292 * - <b>file <name></b> - Used to specify the output filename. The file will
2293 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2294 * supported. Directory should not be entered. If file already exists, file
2295 * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2296 * will be used. Can only be updated if packet capture is off.
2297 *
2298 * - <b>status</b> - Displays the current status and configured attributes
2299 * associated with a packet capture. If packet capture is in progress,
2300 * '<em>status</em>' also will return the number of packets currently in
2301 * the local buffer. All additional attributes entered on command line
2302 * with '<em>status</em>' will be ignored and not applied.
2303 *
2304 * @cliexpar
2305 * Example of how to display the status of capture when off:
2306 * @cliexstart{pcap dispatch trace status}
2307 * max is 100, for any interface to file /tmp/vpe.pcap
2308 * pcap dispatch capture is off...
2309 * @cliexend
2310 * Example of how to start a dispatch trace capture:
2311 * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
Dave Barach1201a802018-11-20 12:08:39 -05002312 * pcap dispatch capture on...
2313 * @cliexend
2314 * Example of how to start a dispatch trace capture with buffer tracing
2315 * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2316 * pcap dispatch capture on...
Dave Barach3ae28732018-11-16 17:19:00 -05002317 * @cliexend
2318 * Example of how to display the status of a tx packet capture in progress:
2319 * @cliexstart{pcap tx trace status}
2320 * max is 35, dispatch trace to file /tmp/vppTest.pcap
2321 * pcap tx capture is on: 20 of 35 pkts...
2322 * @cliexend
2323 * Example of how to stop a tx packet capture:
2324 * @cliexstart{vppctl pcap dispatch trace off}
2325 * captured 21 pkts...
2326 * saved to /tmp/dispatchTrace.pcap...
2327 * @cliexend
2328?*/
2329/* *INDENT-OFF* */
2330VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2331 .path = "pcap dispatch trace",
2332 .short_help =
Dave Barach1201a802018-11-20 12:08:39 -05002333 "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2334 " [buffer-trace <input-node-name> <nn>]",
Dave Barach3ae28732018-11-16 17:19:00 -05002335 .function = pcap_dispatch_trace_command_fn,
2336};
2337/* *INDENT-ON* */
2338
Dave Barach9b8ffd92016-07-08 08:13:45 -04002339/*
2340 * fd.io coding-style-patch-verification: ON
2341 *
2342 * Local Variables:
2343 * eval: (c-set-style "gnu")
2344 * End:
2345 */