blob: 23c4e076e1fa626792d0ab360e60e9a3f80ef940 [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 Marion633b6fd2018-09-14 14:38:53 +0200236 f->frame_flags &= ~VLIB_FRAME_IS_ALLOCATED;
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
390 /* Allocate new frame if current one is already full. */
391 n_used = f->n_vectors;
392 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0))
393 {
394 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400395 two redundant frames from node -> next node. */
396 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200399 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 }
401
402 /* Allocate new frame to replace full one. */
403 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
404 f = vlib_get_frame (vm, nf->frame_index);
405 n_used = f->n_vectors;
406 }
407
408 /* Should have free vectors in frame now. */
409 ASSERT (n_used < VLIB_FRAME_SIZE);
410
411 if (CLIB_DEBUG > 0)
412 {
413 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400414 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 }
416
417 return f;
418}
419
420static void
421vlib_put_next_frame_validate (vlib_main_t * vm,
422 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 vlib_node_main_t *nm = &vm->node_main;
426 vlib_next_frame_t *nf;
427 vlib_frame_t *f;
428 vlib_node_runtime_t *next_rt;
429 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 u32 n_before, n_after;
431
432 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
433 f = vlib_get_frame (vm, nf->frame_index);
434
435 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
436 n_after = VLIB_FRAME_SIZE - n_vectors_left;
437 n_before = f->n_vectors;
438
439 ASSERT (n_after >= n_before);
440
441 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
442 nf->node_runtime_index);
443 next_node = vlib_get_node (vm, next_rt->node_index);
444 if (n_after > 0 && next_node->validate_frame)
445 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447 if (msg)
448 {
449 clib_warning ("%v", msg);
450 ASSERT (0);
451 }
452 vec_free (msg);
453 }
454}
455
456void
457vlib_put_next_frame (vlib_main_t * vm,
458 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400459 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461 vlib_node_main_t *nm = &vm->node_main;
462 vlib_next_frame_t *nf;
463 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 u32 n_vectors_in_frame;
465
Damjan Mariond50e3472019-01-20 00:03:56 +0100466 if (vm->buffer_main->callbacks_registered == 0 && CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
468
469 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
470 f = vlib_get_frame (vm, nf->frame_index);
471
472 /* Make sure that magic number is still there. Otherwise, caller
473 has overrun frame meta data. */
474 if (CLIB_DEBUG > 0)
475 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400476 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 validate_frame_magic (vm, f, node, next_index);
478 }
479
480 /* Convert # of vectors left -> number of vectors there. */
481 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
482 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
483
484 f->n_vectors = n_vectors_in_frame;
485
486 /* If vectors were added to frame, add to pending vector. */
487 if (PREDICT_TRUE (n_vectors_in_frame > 0))
488 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 r->cached_next_index = next_index;
493
Damjan Marion633b6fd2018-09-14 14:38:53 +0200494 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400495 {
496 __attribute__ ((unused)) vlib_node_t *node;
497 vlib_node_t *next_node;
498 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 node = vlib_get_node (vm, r->node_index);
501 next_node = vlib_get_next_node (vm, r->node_index, next_index);
502 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 p->frame_index = nf->frame_index;
507 p->node_runtime_index = nf->node_runtime_index;
508 p->next_frame_index = nf - nm->next_frames;
509 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200510 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
Dave Barach9b8ffd92016-07-08 08:13:45 -0400512 /*
513 * If we're going to dispatch this frame on another thread,
514 * force allocation of a new frame. Otherwise, we create
515 * a dangling frame reference. Each thread has its own copy of
516 * the next_frames vector.
517 */
Damjan Marion586afd72017-04-05 19:18:20 +0200518 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400519 {
520 nf->frame_index = ~0;
521 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
522 }
523 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 nf->flags |=
527 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
528 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
530 v0 = nf->vectors_since_last_overflow;
531 v1 = v0 + n_vectors_in_frame;
532 nf->vectors_since_last_overflow = v1;
533 if (PREDICT_FALSE (v1 < v0))
534 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
537 }
538 }
539}
540
541/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
542never_inline void
543vlib_node_runtime_sync_stats (vlib_main_t * vm,
544 vlib_node_runtime_t * r,
Dave Barach4d1a8662018-09-10 12:31:15 -0400545 uword n_calls, uword n_vectors, uword n_clocks,
546 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
550 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
551 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
552 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400553 n->stats_total.perf_counter_ticks += n_ticks +
554 r->perf_counter_ticks_since_last_overflow;
555 n->stats_total.perf_counter_vectors += n_vectors +
556 r->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557 n->stats_total.max_clock = r->max_clock;
558 n->stats_total.max_clock_n = r->max_clock_n;
559
560 r->calls_since_last_overflow = 0;
561 r->vectors_since_last_overflow = 0;
562 r->clocks_since_last_overflow = 0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400563 r->perf_counter_ticks_since_last_overflow = 0ULL;
564 r->perf_counter_vectors_since_last_overflow = 0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565}
566
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568vlib_process_sync_stats (vlib_main_t * vm,
569 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400570 uword n_calls, uword n_vectors, uword n_clocks,
571 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 vlib_node_runtime_t *rt = &p->node_runtime;
574 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Dave Barach4d1a8662018-09-10 12:31:15 -0400575 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
576 n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 n->stats_total.suspends += p->n_suspends;
578 p->n_suspends = 0;
579}
580
Dave Barach9b8ffd92016-07-08 08:13:45 -0400581void
582vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
586 if (n->type == VLIB_NODE_TYPE_PROCESS)
587 {
588 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400589 if (vm != &vlib_global_main)
590 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591
Dave Barach9b8ffd92016-07-08 08:13:45 -0400592 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 n->stats_total.suspends += p->n_suspends;
594 p->n_suspends = 0;
595 rt = &p->node_runtime;
596 }
597 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598 rt =
599 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
600 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
Dave Barach4d1a8662018-09-10 12:31:15 -0400602 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 /* Sync up runtime next frame vector counters with main node structure. */
605 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 uword i;
608 for (i = 0; i < rt->n_next_nodes; i++)
609 {
610 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400611 vec_elt (n->n_vectors_by_next_node, i) +=
612 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 nf->vectors_since_last_overflow = 0;
614 }
615 }
616}
617
618always_inline u32
619vlib_node_runtime_update_stats (vlib_main_t * vm,
620 vlib_node_runtime_t * node,
621 uword n_calls,
Dave Barach4d1a8662018-09-10 12:31:15 -0400622 uword n_vectors, uword n_clocks,
623 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624{
625 u32 ca0, ca1, v0, v1, cl0, cl1, r;
Dave Barach4d1a8662018-09-10 12:31:15 -0400626 u32 ptick0, ptick1, pvec0, pvec1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
628 cl0 = cl1 = node->clocks_since_last_overflow;
629 ca0 = ca1 = node->calls_since_last_overflow;
630 v0 = v1 = node->vectors_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400631 ptick0 = ptick1 = node->perf_counter_ticks_since_last_overflow;
632 pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
634 ca1 = ca0 + n_calls;
635 v1 = v0 + n_vectors;
636 cl1 = cl0 + n_clocks;
Dave Barach4d1a8662018-09-10 12:31:15 -0400637 ptick1 = ptick0 + n_ticks;
638 pvec1 = pvec0 + n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
640 node->calls_since_last_overflow = ca1;
641 node->clocks_since_last_overflow = cl1;
642 node->vectors_since_last_overflow = v1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400643 node->perf_counter_ticks_since_last_overflow = ptick1;
644 node->perf_counter_vectors_since_last_overflow = pvec1;
645
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 node->max_clock_n : n_vectors;
648 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649
650 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
651
Dave Barach4d1a8662018-09-10 12:31:15 -0400652 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick1 < ptick0)
653 || (pvec1 < pvec0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 {
655 node->calls_since_last_overflow = ca0;
656 node->clocks_since_last_overflow = cl0;
657 node->vectors_since_last_overflow = v0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400658 node->perf_counter_ticks_since_last_overflow = ptick0;
659 node->perf_counter_vectors_since_last_overflow = pvec0;
660
661 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
662 n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 }
664
665 return r;
666}
667
Dave Barach4d1a8662018-09-10 12:31:15 -0400668static inline u64
669vlib_node_runtime_perf_counter (vlib_main_t * vm)
670{
671 if (PREDICT_FALSE (vm->vlib_node_runtime_perf_counter_cb != 0))
672 return ((*vm->vlib_node_runtime_perf_counter_cb) (vm));
673 return 0ULL;
674}
675
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676always_inline void
677vlib_process_update_stats (vlib_main_t * vm,
678 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400679 uword n_calls, uword n_vectors, uword n_clocks,
680 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681{
682 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Dave Barach4d1a8662018-09-10 12:31:15 -0400683 n_calls, n_vectors, n_clocks, n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684}
685
686static clib_error_t *
687vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400688 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689{
690 elog_reset_buffer (&vm->elog_main);
691 return 0;
692}
693
Dave Barach9b8ffd92016-07-08 08:13:45 -0400694/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400696 .path = "event-logger clear",
697 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 .function = vlib_cli_elog_clear,
699};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701
702#ifdef CLIB_UNIX
703static clib_error_t *
704elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 elog_main_t *em = &vm->elog_main;
708 char *file, *chroot_file;
709 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710
Dave Barach9b8ffd92016-07-08 08:13:45 -0400711 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712 {
713 vlib_cli_output (vm, "expected file name, got `%U'",
714 format_unformat_error, input);
715 return 0;
716 }
717
718 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720 {
721 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
722 return 0;
723 }
724
725 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
726
Dave Barach9b8ffd92016-07-08 08:13:45 -0400727 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
729 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400730 elog_n_events_in_buffer (em),
731 elog_buffer_capacity (em), chroot_file);
732
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400734 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400735 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736 vec_free (chroot_file);
737 return error;
738}
739
Dave Barach81481312017-05-16 09:08:14 -0400740void
741elog_post_mortem_dump (void)
742{
743 vlib_main_t *vm = &vlib_global_main;
744 elog_main_t *em = &vm->elog_main;
745 u8 *filename;
746 clib_error_t *error;
747
748 if (!vm->elog_post_mortem_dump)
749 return;
750
751 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
752 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
753 if (error)
754 clib_error_report (error);
755 vec_free (filename);
756}
757
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400760 .path = "event-logger save",
761 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762 .function = elog_save_buffer,
763};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400764/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765
Dave Barache5389bb2016-03-28 17:12:19 -0400766static clib_error_t *
767elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400769{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400770 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400771
772 em->n_total_events_disable_limit = em->n_total_events;
773
774 vlib_cli_output (vm, "Stopped the event logger...");
775 return 0;
776}
777
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400779VLIB_CLI_COMMAND (elog_stop_cli, static) = {
780 .path = "event-logger stop",
781 .short_help = "Stop the event-logger",
782 .function = elog_stop,
783};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400784/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400785
786static clib_error_t *
787elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400789{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400790 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400791
792 em->n_total_events_disable_limit = ~0;
793
794 vlib_cli_output (vm, "Restarted the event logger...");
795 return 0;
796}
797
Dave Barach9b8ffd92016-07-08 08:13:45 -0400798/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400799VLIB_CLI_COMMAND (elog_restart_cli, static) = {
800 .path = "event-logger restart",
801 .short_help = "Restart the event-logger",
802 .function = elog_restart,
803};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400804/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400805
806static clib_error_t *
807elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400809{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400810 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400811 u32 tmp;
812
813 /* Stop the parade */
814 elog_reset_buffer (&vm->elog_main);
815
816 if (unformat (input, "%d", &tmp))
817 {
818 elog_alloc (em, tmp);
819 em->n_total_events_disable_limit = ~0;
820 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400821 else
Dave Barache5389bb2016-03-28 17:12:19 -0400822 return clib_error_return (0, "Must specify how many events in the ring");
823
824 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
825 return 0;
826}
827
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400829VLIB_CLI_COMMAND (elog_resize_cli, static) = {
830 .path = "event-logger resize",
831 .short_help = "event-logger resize <nnn>",
832 .function = elog_resize,
833};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400835
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836#endif /* CLIB_UNIX */
837
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838static void
839elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400841 elog_main_t *em = &vm->elog_main;
842 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843 f64 dt;
844
845 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847 * vm->clib_time.seconds_per_clock;
848
849 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400850 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
851 em->event_ring_size,
852 em->n_total_events < em->n_total_events_disable_limit ?
853 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 {
856 vlib_cli_output (vm, "%18.9f: %U",
857 e->time + dt, format_elog_event, em, e);
858 n_events_to_show--;
859 if (n_events_to_show == 0)
860 break;
861 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864}
865
866static clib_error_t *
867elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869{
870 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400871 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872
873 n_events_to_show = 250;
874 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
875 {
876 if (unformat (input, "%d", &n_events_to_show))
877 ;
878 else if (unformat (input, "all"))
879 n_events_to_show = ~0;
880 else
881 return unformat_parse_error (input);
882 }
883 elog_show_buffer_internal (vm, n_events_to_show);
884 return error;
885}
886
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888VLIB_CLI_COMMAND (elog_show_cli, static) = {
889 .path = "show event-logger",
890 .short_help = "Show event logger info",
891 .function = elog_show_buffer,
892};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400893/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894
Dave Barach9b8ffd92016-07-08 08:13:45 -0400895void
896vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400898 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899}
900
Dave Barachfb6e59d2016-03-26 18:45:42 -0400901static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902vlib_elog_main_loop_event (vlib_main_t * vm,
903 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906 vlib_main_t *evm = &vlib_global_main;
907 elog_main_t *em = &evm->elog_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908
Dave Barachfb6e59d2016-03-26 18:45:42 -0400909 if (VLIB_ELOG_MAIN_LOOP && n_vectors)
910 elog_track (em,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400911 /* event type */
912 vec_elt_at_index (is_return
913 ? evm->node_return_elog_event_types
914 : evm->node_call_elog_event_types,
915 node_index),
916 /* track */
Damjan Marion586afd72017-04-05 19:18:20 +0200917 (vm->thread_index ? &vlib_worker_threads[vm->thread_index].
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 elog_track : &em->default_track),
919 /* data to log */ n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920}
921
Dave Barach7bee7732017-10-18 18:48:11 -0400922#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
923void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
924void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
925
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926void
Dave Barach7bee7732017-10-18 18:48:11 -0400927vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928{
Dave Barach7bee7732017-10-18 18:48:11 -0400929 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930 {
Dave Barach7bee7732017-10-18 18:48:11 -0400931 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932 }
933}
934
Dave Barach7bee7732017-10-18 18:48:11 -0400935#endif
936
937static inline void
938add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
939{
940#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
941 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
942 {
943 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
944 }
945#endif
946}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947
Dave Barach7fff3d22018-11-27 16:52:59 -0500948u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
949u8 *
950format_vnet_buffer_flags (u8 * s, va_list * args)
951{
952 s = format (s, "BUG STUB %s", __FUNCTION__);
953 return s;
954}
955
956u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
957u8 *
958format_vnet_buffer_opaque (u8 * s, va_list * args)
959{
960 s = format (s, "BUG STUB %s", __FUNCTION__);
961 return s;
962}
963
964u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
965 __attribute__ ((weak));
966u8 *
967format_vnet_buffer_opaque2 (u8 * s, va_list * args)
968{
969 s = format (s, "BUG STUB %s", __FUNCTION__);
970 return s;
971}
972
973static u8 *
974format_buffer_metadata (u8 * s, va_list * args)
975{
976 vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
977
978 s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
979 s = format (s, "current_data: %d, current_length: %d\n",
980 (i32) (b->current_data), (i32) (b->current_length));
981 s = format (s, "current_config_index: %d, flow_id: %x, next_buffer: %x\n",
982 b->current_config_index, b->flow_id, b->next_buffer);
983 s = format (s, "error: %d, n_add_refs: %d, buffer_pool_index: %d\n",
984 (u32) (b->error), (u32) (b->n_add_refs),
985 (u32) (b->buffer_pool_index));
986 s = format (s,
Damjan Marion9a8a12a2019-01-23 16:52:10 +0100987 "trace_index: %d, len_not_first_buf: %d\n",
988 b->trace_index, b->total_length_not_including_first_buffer);
Dave Barach7fff3d22018-11-27 16:52:59 -0500989 return s;
990}
991
992#define A(x) vec_add1(vm->pcap_buffer, (x))
993
Dave Barach3ae28732018-11-16 17:19:00 -0500994static void
995dispatch_pcap_trace (vlib_main_t * vm,
996 vlib_node_runtime_t * node, vlib_frame_t * frame)
997{
998 int i;
999 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
Dave Barach3ae28732018-11-16 17:19:00 -05001000 pcap_main_t *pm = &vm->dispatch_pcap_main;
Dave Barach1201a802018-11-20 12:08:39 -05001001 vlib_trace_main_t *tm = &vm->trace_main;
Dave Barach3ae28732018-11-16 17:19:00 -05001002 u32 capture_size;
1003 vlib_node_t *n;
1004 i32 n_left;
1005 f64 time_now = vlib_time_now (vm);
1006 u32 *from;
Dave Barach3ae28732018-11-16 17:19:00 -05001007 u8 *d;
Dave Barach7fff3d22018-11-27 16:52:59 -05001008 u8 string_count;
Dave Barach3ae28732018-11-16 17:19:00 -05001009
1010 /* Input nodes don't have frames yet */
1011 if (frame == 0 || frame->n_vectors == 0)
1012 return;
1013
1014 from = vlib_frame_vector_args (frame);
1015 vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1016 bufp = bufs;
1017
Dave Barach3ae28732018-11-16 17:19:00 -05001018 n = vlib_get_node (vm, node->node_index);
Dave Barach3ae28732018-11-16 17:19:00 -05001019
1020 for (i = 0; i < frame->n_vectors; i++)
1021 {
1022 if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1023 {
1024 b = bufp[i];
1025
Dave Barach7fff3d22018-11-27 16:52:59 -05001026 vec_reset_length (vm->pcap_buffer);
1027 string_count = 0;
Dave Barach1201a802018-11-20 12:08:39 -05001028
Dave Barach7fff3d22018-11-27 16:52:59 -05001029 /* Version, flags */
1030 A ((u8) VLIB_PCAP_MAJOR_VERSION);
1031 A ((u8) VLIB_PCAP_MINOR_VERSION);
1032 A (0 /* string_count */ );
1033 A (n->protocol_hint);
1034
1035 /* Buffer index (big endian) */
1036 A ((from[i] >> 24) & 0xff);
1037 A ((from[i] >> 16) & 0xff);
1038 A ((from[i] >> 8) & 0xff);
1039 A ((from[i] >> 0) & 0xff);
1040
1041 /* Node name, NULL-terminated ASCII */
1042 vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1043 string_count++;
1044
1045 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1046 format_buffer_metadata, b, 0);
1047 string_count++;
1048 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1049 format_vnet_buffer_opaque, b, 0);
1050 string_count++;
1051 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1052 format_vnet_buffer_opaque2, b, 0);
1053 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001054
1055 /* Is this packet traced? */
1056 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1057 {
1058 vlib_trace_header_t **h
1059 = pool_elt_at_index (tm->trace_buffer_pool, b->trace_index);
1060
Dave Barach7fff3d22018-11-27 16:52:59 -05001061 vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1062 format_vlib_trace, vm, h[0], 0);
1063 string_count++;
Dave Barach1201a802018-11-20 12:08:39 -05001064 }
1065
Dave Barach7fff3d22018-11-27 16:52:59 -05001066 /* Save the string count */
1067 vm->pcap_buffer[2] = string_count;
1068
1069 /* Figure out how many bytes in the pcap trace */
1070 capture_size = vec_len (vm->pcap_buffer) +
1071 +vlib_buffer_length_in_chain (vm, b);
Dave Barach3ae28732018-11-16 17:19:00 -05001072
1073 clib_spinlock_lock_if_init (&pm->lock);
Dave Barach1201a802018-11-20 12:08:39 -05001074 n_left = clib_min (capture_size, 16384);
Dave Barach3ae28732018-11-16 17:19:00 -05001075 d = pcap_add_packet (pm, time_now, n_left, capture_size);
1076
Dave Barach7fff3d22018-11-27 16:52:59 -05001077 /* Copy the header */
1078 clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1079 d += vec_len (vm->pcap_buffer);
Dave Barach1201a802018-11-20 12:08:39 -05001080
1081 n_left = clib_min
1082 (vlib_buffer_length_in_chain (vm, b),
Dave Barach7fff3d22018-11-27 16:52:59 -05001083 (16384 - vec_len (vm->pcap_buffer)));
Dave Barach3ae28732018-11-16 17:19:00 -05001084 /* Copy the packet data */
1085 while (1)
1086 {
1087 u32 copy_length = clib_min ((u32) n_left, b->current_length);
1088 clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1089 n_left -= b->current_length;
1090 if (n_left <= 0)
1091 break;
1092 d += b->current_length;
1093 ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1094 b = vlib_get_buffer (vm, b->next_buffer);
1095 }
1096 clib_spinlock_unlock_if_init (&pm->lock);
1097 }
1098 }
1099}
1100
Damjan Marion9a332e12017-03-28 15:11:20 +02001101static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102dispatch_node (vlib_main_t * vm,
1103 vlib_node_runtime_t * node,
1104 vlib_node_type_t type,
1105 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001106 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107{
1108 uword n, v;
1109 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001110 vlib_node_main_t *nm = &vm->node_main;
1111 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112
1113 if (CLIB_DEBUG > 0)
1114 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001115 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116 ASSERT (n->type == type);
1117 }
1118
1119 /* Only non-internal nodes may be disabled. */
1120 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1121 {
1122 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1123 return last_time_stamp;
1124 }
1125
1126 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1127 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1128 {
1129 u32 c = node->input_main_loops_per_call;
1130 /* Only call node when count reaches zero. */
1131 if (c)
1132 {
1133 node->input_main_loops_per_call = c - 1;
1134 return last_time_stamp;
1135 }
1136 }
1137
1138 /* Speculatively prefetch next frames. */
1139 if (node->n_next_nodes > 0)
1140 {
1141 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1142 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1143 }
1144
1145 vm->cpu_time_last_node_dispatch = last_time_stamp;
1146
Damjan Marion586afd72017-04-05 19:18:20 +02001147 if (1 /* || vm->thread_index == node->thread_index */ )
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148 {
Dave Barach4d1a8662018-09-10 12:31:15 -04001149 u64 pmc_before, pmc_delta;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001150
1151 vlib_elog_main_loop_event (vm, node->node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001152 last_time_stamp,
1153 frame ? frame->n_vectors : 0,
1154 /* is_after */ 0);
1155
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156 /*
Dave Barach4d1a8662018-09-10 12:31:15 -04001157 * To validate accounting: pmc_before = last_time_stamp
1158 * perf ticks should equal clocks/pkt...
1159 */
1160 pmc_before = vlib_node_runtime_perf_counter (vm);
1161
1162 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 * Turn this on if you run into
1164 * "bad monkey" contexts, and you want to know exactly
1165 * which nodes they've visited... See ixge.c...
1166 */
1167 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001168 {
1169 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001170 u32 *from;
1171 from = vlib_frame_vector_args (frame);
1172 for (i = 0; i < frame->n_vectors; i++)
1173 {
1174 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
Dave Barach7bee7732017-10-18 18:48:11 -04001175 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001176 }
Dave Barach3ae28732018-11-16 17:19:00 -05001177 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1178 dispatch_pcap_trace (vm, node, frame);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001179 n = node->function (vm, node, frame);
1180 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181 else
Dave Barach3ae28732018-11-16 17:19:00 -05001182 {
1183 if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1184 dispatch_pcap_trace (vm, node, frame);
1185 n = node->function (vm, node, frame);
1186 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187
1188 t = clib_cpu_time_now ();
1189
Dave Barach4d1a8662018-09-10 12:31:15 -04001190 /*
1191 * To validate accounting: pmc_delta = t - pmc_before;
1192 * perf ticks should equal clocks/pkt...
1193 */
1194 pmc_delta = vlib_node_runtime_perf_counter (vm) - pmc_before;
1195
Dave Barach9b8ffd92016-07-08 08:13:45 -04001196 vlib_elog_main_loop_event (vm, node->node_index, t, n, /* is_after */
1197 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198
1199 vm->main_loop_vectors_processed += n;
1200 vm->main_loop_nodes_processed += n > 0;
1201
Dave Barach4d1a8662018-09-10 12:31:15 -04001202 v = vlib_node_runtime_update_stats (vm, node,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001203 /* n_calls */ 1,
1204 /* n_vectors */ n,
Dave Barach4d1a8662018-09-10 12:31:15 -04001205 /* n_clocks */ t - last_time_stamp,
1206 pmc_delta /* PMC ticks */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207
1208 /* When in interrupt mode and vector rate crosses threshold switch to
1209 polling mode. */
Damjan Marion878c6092017-01-04 13:19:27 +01001210 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1211 || (dispatch_state == VLIB_NODE_STATE_POLLING
Dave Barach9b8ffd92016-07-08 08:13:45 -04001212 && (node->flags
1213 & VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE)))
1214 {
Steven6aa75af2017-02-24 10:03:22 -08001215#ifdef DISPATCH_NODE_ELOG_REQUIRED
Dave Barach9b8ffd92016-07-08 08:13:45 -04001216 ELOG_TYPE_DECLARE (e) =
1217 {
1218 .function = (char *) __FUNCTION__,.format =
1219 "%s vector length %d, switching to %s",.format_args =
1220 "T4i4t4",.n_enum_strings = 2,.enum_strings =
1221 {
1222 "interrupt", "polling",},};
1223 struct
1224 {
1225 u32 node_name, vector_length, is_polling;
1226 } *ed;
Damjan Marion586afd72017-04-05 19:18:20 +02001227 vlib_worker_thread_t *w = vlib_worker_threads + vm->thread_index;
Steven6aa75af2017-02-24 10:03:22 -08001228#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229
Steven7312cc72017-03-15 21:18:55 -07001230 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1231 && v >= nm->polling_threshold_vector_length) &&
1232 !(node->flags &
1233 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001234 {
1235 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1236 n->state = VLIB_NODE_STATE_POLLING;
1237 node->state = VLIB_NODE_STATE_POLLING;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001238 node->flags &=
1239 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1240 node->flags |=
1241 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1242 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1243 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244
Steven6aa75af2017-02-24 10:03:22 -08001245#ifdef DISPATCH_NODE_ELOG_REQUIRED
1246 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1247 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001248 ed->node_name = n->name_elog_string;
1249 ed->vector_length = v;
1250 ed->is_polling = 1;
Steven6aa75af2017-02-24 10:03:22 -08001251#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001252 }
1253 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1254 && v <= nm->interrupt_threshold_vector_length)
1255 {
1256 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1257 if (node->flags &
1258 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
1259 {
1260 /* Switch to interrupt mode after dispatch in polling one more time.
1261 This allows driver to re-enable interrupts. */
1262 n->state = VLIB_NODE_STATE_INTERRUPT;
1263 node->state = VLIB_NODE_STATE_INTERRUPT;
1264 node->flags &=
1265 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1266 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -=
1267 1;
1268 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] +=
1269 1;
1270
1271 }
1272 else
1273 {
1274 node->flags |=
1275 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
Steven6aa75af2017-02-24 10:03:22 -08001276#ifdef DISPATCH_NODE_ELOG_REQUIRED
1277 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1278 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001279 ed->node_name = n->name_elog_string;
1280 ed->vector_length = v;
1281 ed->is_polling = 0;
Steven6aa75af2017-02-24 10:03:22 -08001282#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001283 }
1284 }
1285 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286 }
1287
1288 return t;
1289}
1290
Damjan Marion9a332e12017-03-28 15:11:20 +02001291static u64
Dave Baracha6269992017-06-07 08:18:49 -04001292dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1293 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001295 vlib_node_main_t *nm = &vm->node_main;
1296 vlib_frame_t *f;
1297 vlib_next_frame_t *nf, nf_dummy;
1298 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299 u32 restore_frame_index;
Dave Baracha6269992017-06-07 08:18:49 -04001300 vlib_pending_frame_t *p;
1301
1302 /* See comment below about dangling references to nm->pending_frames */
1303 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001304
1305 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1306 p->node_runtime_index);
1307
1308 f = vlib_get_frame (vm, p->frame_index);
1309 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1310 {
1311 /* No next frame: so use dummy on stack. */
1312 nf = &nf_dummy;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001313 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314 nf->frame_index = ~p->frame_index;
1315 }
1316 else
1317 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1318
Damjan Marion633b6fd2018-09-14 14:38:53 +02001319 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320
1321 /* Force allocation of new frame while current frame is being
1322 dispatched. */
1323 restore_frame_index = ~0;
1324 if (nf->frame_index == p->frame_index)
1325 {
1326 nf->frame_index = ~0;
1327 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001329 restore_frame_index = p->frame_index;
1330 }
1331
1332 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001333 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334 ASSERT (f->n_vectors > 0);
1335
1336 /* Copy trace flag from next frame to node.
1337 Trace flag indicates that at least one vector in the dispatched
1338 frame is traced. */
1339 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1340 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1341 nf->flags &= ~VLIB_FRAME_TRACE;
1342
1343 last_time_stamp = dispatch_node (vm, n,
1344 VLIB_NODE_TYPE_INTERNAL,
1345 VLIB_NODE_STATE_POLLING,
1346 f, last_time_stamp);
1347
Damjan Marion633b6fd2018-09-14 14:38:53 +02001348 f->frame_flags &= ~VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001349
1350 /* Frame is ready to be used again, so restore it. */
1351 if (restore_frame_index != ~0)
1352 {
Dave Baracha6269992017-06-07 08:18:49 -04001353 /*
1354 * We musn't restore a frame that is flagged to be freed. This
1355 * shouldn't happen since frames to be freed post dispatch are
1356 * those used when the to-node frame becomes full i.e. they form a
1357 * sort of queue of frames to a single node. If we get here then
1358 * the to-node frame and the pending frame *were* the same, and so
1359 * we removed the to-node frame. Therefore this frame is no
1360 * longer part of the queue for that node and hence it cannot be
1361 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001362 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001363 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001364
Dave Baracha6269992017-06-07 08:18:49 -04001365 /*
1366 * NB: dispatching node n can result in the creation and scheduling
1367 * of new frames, and hence in the reallocation of nm->pending_frames.
1368 * Recompute p, or no supper. This was broken for more than 10 years.
1369 */
1370 p = nm->pending_frames + pending_frame_index;
1371
1372 /*
1373 * p->next_frame_index can change during node dispatch if node
1374 * function decides to change graph hook up.
1375 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001376 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001377 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378
Neale Ranns88170612016-11-22 08:29:51 +00001379 if (~0 == nf->frame_index)
1380 {
1381 /* no new frame has been assigned to this node, use the saved one */
1382 nf->frame_index = restore_frame_index;
1383 f->n_vectors = 0;
1384 }
1385 else
1386 {
1387 /* The node has gained a frame, implying packets from the current frame
1388 were re-queued to this same node. we don't need the saved one
1389 anymore */
1390 vlib_frame_free (vm, n, f);
1391 }
1392 }
1393 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001395 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001396 {
1397 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1398 vlib_frame_free (vm, n, f);
1399 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001400 }
1401
1402 return last_time_stamp;
1403}
1404
1405always_inline uword
1406vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001407{
1408 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1409}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411typedef struct
1412{
1413 vlib_main_t *vm;
1414 vlib_process_t *process;
1415 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416} vlib_process_bootstrap_args_t;
1417
1418/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001419static uword
1420vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001421{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001422 vlib_process_bootstrap_args_t *a;
1423 vlib_main_t *vm;
1424 vlib_node_runtime_t *node;
1425 vlib_frame_t *f;
1426 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001427 uword n;
1428
1429 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1430
1431 vm = a->vm;
1432 p = a->process;
1433 f = a->frame;
1434 node = &p->node_runtime;
1435
1436 n = node->function (vm, node, f);
1437
1438 ASSERT (vlib_process_stack_is_valid (p));
1439
1440 clib_longjmp (&p->return_longjmp, n);
1441
1442 return n;
1443}
1444
1445/* Called in main stack. */
1446static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001447vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001448{
1449 vlib_process_bootstrap_args_t a;
1450 uword r;
1451
1452 a.vm = vm;
1453 a.process = p;
1454 a.frame = f;
1455
1456 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1457 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1458 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1459 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1460
1461 return r;
1462}
1463
1464static_always_inline uword
1465vlib_process_resume (vlib_process_t * p)
1466{
1467 uword r;
1468 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1469 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1470 | VLIB_PROCESS_RESUME_PENDING);
1471 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1472 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1473 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1474 return r;
1475}
1476
1477static u64
1478dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001479 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001481 vlib_node_main_t *nm = &vm->node_main;
1482 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1483 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001484 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001485 u64 t;
1486 uword n_vectors, is_suspend;
1487
1488 if (node->state != VLIB_NODE_STATE_POLLING
1489 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1490 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1491 return last_time_stamp;
1492
1493 p->flags |= VLIB_PROCESS_IS_RUNNING;
1494
1495 t = last_time_stamp;
1496 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1497 f ? f->n_vectors : 0, /* is_after */ 0);
1498
1499 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001500 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001501 nm->current_process_index = node->runtime_index;
1502
1503 n_vectors = vlib_process_startup (vm, p, f);
1504
Florin Corasfd542f12018-05-16 19:28:24 -07001505 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001506
1507 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1508 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1509 if (is_suspend)
1510 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001511 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001512
1513 n_vectors = 0;
1514 pool_get (nm->suspended_process_frames, pf);
1515 pf->node_runtime_index = node->runtime_index;
1516 pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1517 pf->next_frame_index = ~0;
1518
1519 p->n_suspends += 1;
1520 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1521
1522 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001523 {
1524 TWT (tw_timer_wheel) * tw =
1525 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1526 p->stop_timer_handle =
1527 TW (tw_timer_start) (tw,
1528 vlib_timing_wheel_data_set_suspended_process
1529 (node->runtime_index) /* [sic] pool idex */ ,
1530 0 /* timer_id */ ,
1531 p->resume_clock_interval);
1532 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533 }
1534 else
1535 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1536
1537 t = clib_cpu_time_now ();
1538
Dave Barach9b8ffd92016-07-08 08:13:45 -04001539 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1540 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541
1542 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001543 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001544 /* n_vectors */ n_vectors,
Dave Barach4d1a8662018-09-10 12:31:15 -04001545 /* n_clocks */ t - last_time_stamp,
1546 /* pmc_ticks */ 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001547
1548 return t;
1549}
1550
Dave Barach9b8ffd92016-07-08 08:13:45 -04001551void
1552vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001553{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001554 vlib_node_main_t *nm = &vm->node_main;
1555 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001556 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1557}
1558
1559static u64
1560dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001561 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001562{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001563 vlib_node_main_t *nm = &vm->node_main;
1564 vlib_node_runtime_t *node_runtime;
1565 vlib_node_t *node;
1566 vlib_frame_t *f;
1567 vlib_process_t *p;
1568 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001569 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001570
Ed Warnickecb9cada2015-12-08 15:45:58 -07001571 t = last_time_stamp;
1572
1573 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001574 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001575 return last_time_stamp;
1576
1577 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1578 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1579
Florin Coras221d6f12018-11-07 20:46:38 -08001580 pf = pool_elt_at_index (nm->suspended_process_frames,
1581 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001582
1583 node_runtime = &p->node_runtime;
1584 node = vlib_get_node (vm, node_runtime->node_index);
1585 f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1586
Dave Barach9b8ffd92016-07-08 08:13:45 -04001587 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1588 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001589
1590 /* Save away current process for suspend. */
1591 nm->current_process_index = node->runtime_index;
1592
1593 n_vectors = vlib_process_resume (p);
1594 t = clib_cpu_time_now ();
1595
1596 nm->current_process_index = ~0;
1597
1598 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1599 if (is_suspend)
1600 {
1601 /* Suspend it again. */
1602 n_vectors = 0;
1603 p->n_suspends += 1;
1604 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001605 {
1606 p->stop_timer_handle =
1607 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1608 vlib_timing_wheel_data_set_suspended_process
1609 (node->runtime_index) /* [sic] pool idex */ ,
1610 0 /* timer_id */ ,
1611 p->resume_clock_interval);
1612 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001613 }
1614 else
1615 {
1616 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
Florin Coras221d6f12018-11-07 20:46:38 -08001617 pool_put_index (nm->suspended_process_frames,
1618 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619 p->suspended_process_frame_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001620 }
1621
1622 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001623 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1624 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625
1626 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001627 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001628 /* n_vectors */ n_vectors,
Dave Barach4d1a8662018-09-10 12:31:15 -04001629 /* n_clocks */ t - last_time_stamp,
1630 /* pmc_ticks */ 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631
1632 return t;
1633}
1634
Dave Barach2877eee2017-12-15 12:22:57 -05001635void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1636void
1637vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1638{
1639}
1640
1641
Damjan Marione9d52d52017-03-09 15:42:26 +01001642static_always_inline void
1643vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001645 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001646 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647 uword i;
1648 u64 cpu_time_now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001649 vlib_frame_queue_main_t *fqm;
Damjan Marion2c2b6402017-03-28 14:16:15 +02001650 u32 *last_node_runtime_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
1652 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001653 if (is_main)
1654 {
1655 vec_resize (nm->pending_frames, 32);
1656 _vec_len (nm->pending_frames) = 0;
1657 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001658
1659 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001660 if (is_main)
1661 {
1662 cpu_time_now = vm->clib_time.last_cpu_time;
1663 vm->cpu_time_main_loop_start = cpu_time_now;
1664 }
1665 else
1666 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001667
Damjan Marion2c2b6402017-03-28 14:16:15 +02001668 /* Pre-allocate interupt runtime indices and lock. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001669 vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001670 vec_alloc (last_node_runtime_indices, 32);
1671 if (!is_main)
1672 clib_spinlock_init (&nm->pending_interrupt_lock);
1673
1674 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001675 if (!nm->polling_threshold_vector_length)
1676 nm->polling_threshold_vector_length = 10;
1677 if (!nm->interrupt_threshold_vector_length)
1678 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001679
Dave Barach4d1a8662018-09-10 12:31:15 -04001680 /* Make sure the performance monitor counter is disabled */
1681 vm->perf_counter_id = ~0;
1682
Ed Warnickecb9cada2015-12-08 15:45:58 -07001683 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001684 if (is_main)
1685 {
1686 uword i;
Stevenf3b53642017-05-01 14:03:02 -07001687 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001688 for (i = 0; i < vec_len (nm->processes); i++)
1689 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1690 cpu_time_now);
1691 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001692
1693 while (1)
1694 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001695 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001696
Dave Barach2877eee2017-12-15 12:22:57 -05001697 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
Dave Barachf6c68d72018-11-01 08:12:52 -04001698 {
1699 if (!is_main)
1700 vl_api_send_pending_rpc_requests (vm);
1701 }
Dave Barach2877eee2017-12-15 12:22:57 -05001702
Damjan Marione9d52d52017-03-09 15:42:26 +01001703 if (!is_main)
1704 {
1705 vlib_worker_thread_barrier_check ();
1706 vec_foreach (fqm, tm->frame_queue_mains)
1707 vlib_frame_queue_dequeue (vm, fqm);
Dave Barach4d1a8662018-09-10 12:31:15 -04001708 if (PREDICT_FALSE (vm->worker_thread_main_loop_callback != 0))
1709 ((void (*)(vlib_main_t *)) vm->worker_thread_main_loop_callback)
1710 (vm);
Damjan Marione9d52d52017-03-09 15:42:26 +01001711 }
1712
Ed Warnickecb9cada2015-12-08 15:45:58 -07001713 /* Process pre-input nodes. */
Damjan Marionceab7882018-01-19 20:56:12 +01001714 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1715 cpu_time_now = dispatch_node (vm, n,
1716 VLIB_NODE_TYPE_PRE_INPUT,
1717 VLIB_NODE_STATE_POLLING,
1718 /* frame */ 0,
1719 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001720
1721 /* Next process input nodes. */
1722 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1723 cpu_time_now = dispatch_node (vm, n,
1724 VLIB_NODE_TYPE_INPUT,
1725 VLIB_NODE_STATE_POLLING,
1726 /* frame */ 0,
1727 cpu_time_now);
1728
Damjan Marione9d52d52017-03-09 15:42:26 +01001729 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001730 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731
1732 /* Next handle interrupts. */
1733 {
Dave Barachd47c5092018-01-19 13:09:20 -05001734 /* unlocked read, for performance */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001735 uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1736 uword i;
Dave Barachd47c5092018-01-19 13:09:20 -05001737 if (PREDICT_FALSE (l > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738 {
Damjan Marion2c2b6402017-03-28 14:16:15 +02001739 u32 *tmp;
1740 if (!is_main)
Dave Barachd47c5092018-01-19 13:09:20 -05001741 {
1742 clib_spinlock_lock (&nm->pending_interrupt_lock);
1743 /* Re-read w/ lock held, in case another thread added an item */
1744 l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1745 }
1746
Damjan Marion2c2b6402017-03-28 14:16:15 +02001747 tmp = nm->pending_interrupt_node_runtime_indices;
1748 nm->pending_interrupt_node_runtime_indices =
1749 last_node_runtime_indices;
1750 last_node_runtime_indices = tmp;
1751 _vec_len (last_node_runtime_indices) = 0;
1752 if (!is_main)
1753 clib_spinlock_unlock (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001754 for (i = 0; i < l; i++)
1755 {
1756 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
Damjan Marion2c2b6402017-03-28 14:16:15 +02001757 last_node_runtime_indices[i]);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001758 cpu_time_now =
1759 dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1760 VLIB_NODE_STATE_INTERRUPT,
1761 /* frame */ 0,
1762 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763 }
1764 }
1765 }
Dave Barache3248982018-08-14 13:47:58 -04001766 /* Input nodes may have added work to the pending vector.
1767 Process pending vector until there is nothing left.
1768 All pending vectors will be processed from input -> output. */
1769 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1770 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1771 /* Reset pending vector for next iteration. */
1772 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001773
Damjan Marione9d52d52017-03-09 15:42:26 +01001774 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001775 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001776 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001777 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1778
1779 nm->data_from_advancing_timing_wheel =
1780 TW (tw_timer_expire_timers_vec)
1781 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1782 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783
Damjan Marione9d52d52017-03-09 15:42:26 +01001784 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001785
Damjan Marione9d52d52017-03-09 15:42:26 +01001786 if (PREDICT_FALSE
1787 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001788 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001789 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001790
Damjan Marione9d52d52017-03-09 15:42:26 +01001791 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1792 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001793 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001794 u32 d = nm->data_from_advancing_timing_wheel[i];
1795 u32 di = vlib_timing_wheel_data_get_index (d);
1796
1797 if (vlib_timing_wheel_data_is_timed_event (d))
1798 {
1799 vlib_signal_timed_event_data_t *te =
1800 pool_elt_at_index (nm->signal_timed_event_data_pool,
1801 di);
1802 vlib_node_t *n =
1803 vlib_get_node (vm, te->process_node_index);
1804 vlib_process_t *p =
1805 vec_elt (nm->processes, n->runtime_index);
1806 void *data;
1807 data =
1808 vlib_process_signal_event_helper (nm, n, p,
1809 te->event_type_index,
1810 te->n_data_elts,
1811 te->n_data_elt_bytes);
1812 if (te->n_data_bytes < sizeof (te->inline_event_data))
Dave Barach178cf492018-11-13 16:34:13 -05001813 clib_memcpy_fast (data, te->inline_event_data,
1814 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001815 else
1816 {
Dave Barach178cf492018-11-13 16:34:13 -05001817 clib_memcpy_fast (data, te->event_data_as_vector,
1818 te->n_data_bytes);
Damjan Marione9d52d52017-03-09 15:42:26 +01001819 vec_free (te->event_data_as_vector);
1820 }
1821 pool_put (nm->signal_timed_event_data_pool, te);
1822 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001823 else
1824 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001825 cpu_time_now = clib_cpu_time_now ();
1826 cpu_time_now =
1827 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001828 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001829 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001830 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1831 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001832 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001833 vlib_increment_main_loop_counter (vm);
1834
1835 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001836 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001837 cpu_time_now = clib_cpu_time_now ();
1838 }
1839}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001840
Damjan Marione9d52d52017-03-09 15:42:26 +01001841static void
1842vlib_main_loop (vlib_main_t * vm)
1843{
1844 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1845}
1846
1847void
1848vlib_worker_loop (vlib_main_t * vm)
1849{
1850 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1851}
1852
Ed Warnickecb9cada2015-12-08 15:45:58 -07001853vlib_main_t vlib_global_main;
1854
1855static clib_error_t *
1856vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1857{
1858 int turn_on_mem_trace = 0;
1859
1860 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1861 {
1862 if (unformat (input, "memory-trace"))
1863 turn_on_mem_trace = 1;
1864
1865 else if (unformat (input, "elog-events %d",
1866 &vm->elog_main.event_ring_size))
1867 ;
Dave Barach81481312017-05-16 09:08:14 -04001868 else if (unformat (input, "elog-post-mortem-dump"))
1869 vm->elog_post_mortem_dump = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001870 else
1871 return unformat_parse_error (input);
1872 }
1873
1874 unformat_free (input);
1875
1876 /* Enable memory trace as early as possible. */
1877 if (turn_on_mem_trace)
1878 clib_mem_trace (1);
1879
1880 return 0;
1881}
1882
1883VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1884
Dave Barach9b8ffd92016-07-08 08:13:45 -04001885static void
1886dummy_queue_signal_callback (vlib_main_t * vm)
1887{
1888}
Dave Barach16c75df2016-05-31 14:05:46 -04001889
Dave Barach1f806582018-06-14 09:18:21 -04001890#define foreach_weak_reference_stub \
1891_(vlib_map_stat_segment_init) \
1892_(vpe_api_init) \
1893_(vlibmemory_init) \
1894_(map_api_segment_init)
1895
1896#define _(name) \
1897clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1898clib_error_t *name (vlib_main_t *vm) { return 0; }
1899foreach_weak_reference_stub;
1900#undef _
1901
Ed Warnickecb9cada2015-12-08 15:45:58 -07001902/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001903int
Eyal Barid334a6b2016-09-19 10:23:39 +03001904vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001905{
Eyal Barid334a6b2016-09-19 10:23:39 +03001906 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001907 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908
Dave Barach16c75df2016-05-31 14:05:46 -04001909 vm->queue_signal_callback = dummy_queue_signal_callback;
1910
Ed Warnickecb9cada2015-12-08 15:45:58 -07001911 clib_time_init (&vm->clib_time);
1912
1913 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001914 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001915 vm->elog_main.event_ring_size = 128 << 10;
1916 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
1917 elog_enable_disable (&vm->elog_main, 1);
1918
1919 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001920 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001921 vm->name = "VLIB";
1922
Damjan Marion68b4da62018-09-30 18:26:20 +02001923 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001924 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001925 clib_error_report (error);
1926 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001927 }
Damjan Marion49d66f12017-07-20 18:10:35 +02001928
1929 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001930 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001931 clib_error_report (error);
1932 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001933 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934
1935 if ((error = vlib_thread_init (vm)))
1936 {
1937 clib_error_report (error);
1938 goto done;
1939 }
1940
Dave Barach1f806582018-06-14 09:18:21 -04001941 if ((error = vlib_map_stat_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001942 {
1943 clib_error_report (error);
1944 goto done;
1945 }
1946
Ed Warnickecb9cada2015-12-08 15:45:58 -07001947 /* Register static nodes so that init functions may use them. */
1948 vlib_register_all_static_nodes (vm);
1949
1950 /* Set seed for random number generator.
1951 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001952 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953 vm->random_seed = clib_cpu_time_now ();
1954 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1955
Ed Warnickecb9cada2015-12-08 15:45:58 -07001956 /* Initialize node graph. */
1957 if ((error = vlib_node_main_init (vm)))
1958 {
1959 /* Arrange for graph hook up error to not be fatal when debugging. */
1960 if (CLIB_DEBUG > 0)
1961 clib_error_report (error);
1962 else
1963 goto done;
1964 }
1965
Dave Barach1f806582018-06-14 09:18:21 -04001966 /* Direct call / weak reference, for vlib standalone use-cases */
1967 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001968 {
1969 clib_error_report (error);
1970 goto done;
1971 }
1972
Dave Barach1f806582018-06-14 09:18:21 -04001973 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001974 {
1975 clib_error_report (error);
1976 goto done;
1977 }
1978
Dave Barach1f806582018-06-14 09:18:21 -04001979 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001980 {
1981 clib_error_report (error);
1982 goto done;
1983 }
1984
Ole Troan964f93e2016-06-10 13:22:36 +02001985 /* See unix/main.c; most likely already set up */
1986 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001987 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02001988 if ((error = vlib_call_all_init_functions (vm)))
1989 goto done;
1990
Ed Warnickecb9cada2015-12-08 15:45:58 -07001991 /* Create default buffer free list. */
Damjan Marion32353822019-01-20 02:24:53 +01001992 vlib_buffer_create_free_list (vm, VLIB_BUFFER_DATA_SIZE, "default");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001993
Dave Barach5c20a012017-06-13 08:48:31 -04001994 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
1995 CLIB_CACHE_LINE_BYTES);
1996
1997 vec_validate (nm->data_from_advancing_timing_wheel, 10);
1998 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1999
2000 /* Create the process timing wheel */
2001 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2002 0 /* no callback */ ,
2003 10e-6 /* timer period 10us */ ,
2004 ~0 /* max expirations per call */ );
2005
Dave Barach2877eee2017-12-15 12:22:57 -05002006 vec_validate (vm->pending_rpc_requests, 0);
2007 _vec_len (vm->pending_rpc_requests) = 0;
Dave Barachf6c68d72018-11-01 08:12:52 -04002008 vec_validate (vm->processing_rpc_requests, 0);
2009 _vec_len (vm->processing_rpc_requests) = 0;
Dave Barach2877eee2017-12-15 12:22:57 -05002010
Ed Warnickecb9cada2015-12-08 15:45:58 -07002011 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2012 {
2013 case VLIB_MAIN_LOOP_EXIT_NONE:
2014 vm->main_loop_exit_set = 1;
2015 break;
2016
2017 case VLIB_MAIN_LOOP_EXIT_CLI:
2018 goto done;
2019
2020 default:
2021 error = vm->main_loop_error;
2022 goto done;
2023 }
2024
Dave Barach9b8ffd92016-07-08 08:13:45 -04002025 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002026 goto done;
2027
2028 /* Call all main loop enter functions. */
2029 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002030 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002031 sub_error = vlib_call_all_main_loop_enter_functions (vm);
2032 if (sub_error)
2033 clib_error_report (sub_error);
2034 }
2035
2036 vlib_main_loop (vm);
2037
Dave Barach9b8ffd92016-07-08 08:13:45 -04002038done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002039 /* Call all exit functions. */
2040 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002041 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002042 sub_error = vlib_call_all_main_loop_exit_functions (vm);
2043 if (sub_error)
2044 clib_error_report (sub_error);
2045 }
2046
2047 if (error)
2048 clib_error_report (error);
2049
2050 return 0;
2051}
Dave Barach9b8ffd92016-07-08 08:13:45 -04002052
Dave Barach3ae28732018-11-16 17:19:00 -05002053static inline clib_error_t *
2054pcap_dispatch_trace_command_internal (vlib_main_t * vm,
2055 unformat_input_t * input,
2056 vlib_cli_command_t * cmd, int rx_tx)
2057{
2058#define PCAP_DEF_PKT_TO_CAPTURE (100)
2059
2060 unformat_input_t _line_input, *line_input = &_line_input;
2061 pcap_main_t *pm = &vm->dispatch_pcap_main;
2062 u8 *filename;
2063 u8 *chroot_filename = 0;
2064 u32 max = 0;
2065 int enabled = 0;
2066 int errorFlag = 0;
2067 clib_error_t *error = 0;
Dave Barach1201a802018-11-20 12:08:39 -05002068 u32 node_index, add;
2069 vlib_trace_main_t *tm;
2070 vlib_trace_node_t *tn;
Dave Barach3ae28732018-11-16 17:19:00 -05002071
2072 /* Get a line of input. */
2073 if (!unformat_user (input, unformat_line_input, line_input))
2074 return 0;
2075
2076 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2077 {
2078 if (unformat (line_input, "on"))
2079 {
2080 if (vm->dispatch_pcap_enable == 0)
2081 {
2082 enabled = 1;
2083 }
2084 else
2085 {
2086 vlib_cli_output (vm, "pcap dispatch capture already on...");
2087 errorFlag = 1;
2088 break;
2089 }
2090 }
2091 else if (unformat (line_input, "off"))
2092 {
2093 if (vm->dispatch_pcap_enable)
2094 {
2095 vlib_cli_output
2096 (vm, "captured %d pkts...", pm->n_packets_captured);
2097 if (pm->n_packets_captured)
2098 {
2099 pm->n_packets_to_capture = pm->n_packets_captured;
2100 error = pcap_write (pm);
2101 if (error)
2102 clib_error_report (error);
2103 else
2104 vlib_cli_output (vm, "saved to %s...", pm->file_name);
2105 }
2106 vm->dispatch_pcap_enable = 0;
2107 }
2108 else
2109 {
2110 vlib_cli_output (vm, "pcap tx capture already off...");
2111 errorFlag = 1;
2112 break;
2113 }
2114 }
2115 else if (unformat (line_input, "max %d", &max))
2116 {
2117 if (vm->dispatch_pcap_enable)
2118 {
2119 vlib_cli_output
2120 (vm,
2121 "can't change max value while pcap tx capture active...");
2122 errorFlag = 1;
2123 break;
2124 }
2125 pm->n_packets_to_capture = max;
2126 }
2127 else if (unformat (line_input, "file %s", &filename))
2128 {
2129 if (vm->dispatch_pcap_enable)
2130 {
2131 vlib_cli_output
2132 (vm, "can't change file while pcap tx capture active...");
2133 errorFlag = 1;
2134 break;
2135 }
2136
2137 /* Brain-police user path input */
2138 if (strstr ((char *) filename, "..")
2139 || index ((char *) filename, '/'))
2140 {
2141 vlib_cli_output (vm, "illegal characters in filename '%s'",
2142 filename);
2143 vlib_cli_output (vm, "Hint: .. and / are not allowed.");
2144 vec_free (filename);
2145 errorFlag = 1;
2146 break;
2147 }
2148
2149 chroot_filename = format (0, "/tmp/%s%c", filename, 0);
2150 vec_free (filename);
2151 }
2152 else if (unformat (line_input, "status"))
2153 {
2154 if (vm->dispatch_pcap_enable)
2155 {
2156 vlib_cli_output
2157 (vm, "pcap dispatch capture is on: %d of %d pkts...",
2158 pm->n_packets_captured, pm->n_packets_to_capture);
2159 vlib_cli_output (vm, "Capture to file %s", pm->file_name);
2160 }
2161 else
2162 {
2163 vlib_cli_output (vm, "pcap dispatch capture is off...");
2164 }
2165 break;
2166 }
Dave Barach1201a802018-11-20 12:08:39 -05002167 else if (unformat (line_input, "buffer-trace %U %d",
2168 unformat_vlib_node, vm, &node_index, &add))
2169 {
2170 if (vnet_trace_dummy == 0)
2171 vec_validate_aligned (vnet_trace_dummy, 2048,
2172 CLIB_CACHE_LINE_BYTES);
2173 vlib_cli_output (vm, "Buffer tracing of %d pkts from %U enabled...",
2174 add, format_vlib_node_name, vm, node_index);
2175
2176 /* *INDENT-OFF* */
2177 foreach_vlib_main ((
2178 {
2179 tm = &this_vlib_main->trace_main;
2180 tm->verbose = 0; /* not sure this ever did anything... */
2181 vec_validate (tm->nodes, node_index);
2182 tn = tm->nodes + node_index;
2183 tn->limit += add;
2184 tm->trace_enable = 1;
2185 }));
2186 /* *INDENT-ON* */
2187 }
Dave Barach3ae28732018-11-16 17:19:00 -05002188
2189 else
2190 {
2191 error = clib_error_return (0, "unknown input `%U'",
2192 format_unformat_error, line_input);
2193 errorFlag = 1;
2194 break;
2195 }
2196 }
2197 unformat_free (line_input);
2198
2199
2200 if (errorFlag == 0)
2201 {
2202 /* Since no error, save configured values. */
2203 if (chroot_filename)
2204 {
2205 if (pm->file_name)
2206 vec_free (pm->file_name);
2207 vec_add1 (chroot_filename, 0);
2208 pm->file_name = (char *) chroot_filename;
2209 }
2210
2211 if (max)
2212 pm->n_packets_to_capture = max;
2213
2214 if (enabled)
2215 {
2216 if (pm->file_name == 0)
2217 pm->file_name = (char *) format (0, "/tmp/dispatch.pcap%c", 0);
2218
2219 pm->n_packets_captured = 0;
Dave Barach7b01e9e2019-01-09 10:22:24 -05002220 pm->packet_type = PCAP_PACKET_TYPE_vpp;
Dave Barach3ae28732018-11-16 17:19:00 -05002221 if (pm->lock == 0)
2222 clib_spinlock_init (&(pm->lock));
2223 vm->dispatch_pcap_enable = 1;
2224 vlib_cli_output (vm, "pcap dispatch capture on...");
2225 }
2226 }
2227 else if (chroot_filename)
2228 vec_free (chroot_filename);
2229
2230 return error;
2231}
2232
2233static clib_error_t *
2234pcap_dispatch_trace_command_fn (vlib_main_t * vm,
2235 unformat_input_t * input,
2236 vlib_cli_command_t * cmd)
2237{
2238 return pcap_dispatch_trace_command_internal (vm, input, cmd, VLIB_RX);
2239}
2240
2241/*?
2242 * This command is used to start or stop pcap dispatch trace capture, or show
2243 * the capture status.
2244 *
2245 * This command has the following optional parameters:
2246 *
2247 * - <b>on|off</b> - Used to start or stop capture.
2248 *
2249 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2250 * of packets have been received, buffer is flushed to file. Once another
2251 * '<em>nn</em>' number of packets have been received, buffer is flushed
2252 * to file, overwriting previous write. If not entered, value defaults
2253 * to 100. Can only be updated if packet capture is off.
2254 *
2255 * - <b>file <name></b> - Used to specify the output filename. The file will
2256 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2257 * supported. Directory should not be entered. If file already exists, file
2258 * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2259 * will be used. Can only be updated if packet capture is off.
2260 *
2261 * - <b>status</b> - Displays the current status and configured attributes
2262 * associated with a packet capture. If packet capture is in progress,
2263 * '<em>status</em>' also will return the number of packets currently in
2264 * the local buffer. All additional attributes entered on command line
2265 * with '<em>status</em>' will be ignored and not applied.
2266 *
2267 * @cliexpar
2268 * Example of how to display the status of capture when off:
2269 * @cliexstart{pcap dispatch trace status}
2270 * max is 100, for any interface to file /tmp/vpe.pcap
2271 * pcap dispatch capture is off...
2272 * @cliexend
2273 * Example of how to start a dispatch trace capture:
2274 * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
Dave Barach1201a802018-11-20 12:08:39 -05002275 * pcap dispatch capture on...
2276 * @cliexend
2277 * Example of how to start a dispatch trace capture with buffer tracing
2278 * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2279 * pcap dispatch capture on...
Dave Barach3ae28732018-11-16 17:19:00 -05002280 * @cliexend
2281 * Example of how to display the status of a tx packet capture in progress:
2282 * @cliexstart{pcap tx trace status}
2283 * max is 35, dispatch trace to file /tmp/vppTest.pcap
2284 * pcap tx capture is on: 20 of 35 pkts...
2285 * @cliexend
2286 * Example of how to stop a tx packet capture:
2287 * @cliexstart{vppctl pcap dispatch trace off}
2288 * captured 21 pkts...
2289 * saved to /tmp/dispatchTrace.pcap...
2290 * @cliexend
2291?*/
2292/* *INDENT-OFF* */
2293VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2294 .path = "pcap dispatch trace",
2295 .short_help =
Dave Barach1201a802018-11-20 12:08:39 -05002296 "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2297 " [buffer-trace <input-node-name> <nn>]",
Dave Barach3ae28732018-11-16 17:19:00 -05002298 .function = pcap_dispatch_trace_command_fn,
2299};
2300/* *INDENT-ON* */
2301
Dave Barach9b8ffd92016-07-08 08:13:45 -04002302/*
2303 * fd.io coding-style-patch-verification: ON
2304 *
2305 * Local Variables:
2306 * eval: (c-set-style "gnu")
2307 * End:
2308 */