blob: 14f680e61fc6d55b83283f2627cebce9041d93b2 [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>
44
45#include <vlib/unix/cj.h>
46
47CJ_GLOBAL_LOG_PROTOTYPE;
48
Ed Warnickecb9cada2015-12-08 15:45:58 -070049/* Actually allocate a few extra slots of vector data to support
50 speculative vector enqueues which overflow vector data in next frame. */
51#define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
52
Damjan Marion6a7acc22016-12-19 16:28:36 +010053u32 wraps;
54
Ed Warnickecb9cada2015-12-08 15:45:58 -070055always_inline u32
56vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
57{
58 u32 n_bytes;
59
60 /* Make room for vlib_frame_t plus scalar arguments. */
61 n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
62
63 /* Make room for vector arguments.
64 Allocate a few extra slots of vector data to support
65 speculative vector enqueues which overflow vector data in next frame. */
66#define VLIB_FRAME_SIZE_EXTRA 4
67 n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
68
69 /* Magic number is first 32bit number after vector data.
70 Used to make sure that vector data is never overrun. */
71#define VLIB_FRAME_MAGIC (0xabadc0ed)
72 n_bytes += sizeof (u32);
73
74 /* Pad to cache line. */
75 n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
76
77 return n_bytes;
78}
79
80always_inline u32 *
81vlib_frame_find_magic (vlib_frame_t * f, vlib_node_t * node)
82{
Dave Barach9b8ffd92016-07-08 08:13:45 -040083 void *p = f;
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85 p += vlib_frame_vector_byte_offset (node->scalar_size);
86
87 p += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * node->vector_size;
88
89 return p;
90}
91
92static vlib_frame_size_t *
93get_frame_size_info (vlib_node_main_t * nm,
94 u32 n_scalar_bytes, u32 n_vector_bytes)
95{
96 uword key = (n_scalar_bytes << 16) | n_vector_bytes;
Dave Barach9b8ffd92016-07-08 08:13:45 -040097 uword *p, i;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 p = hash_get (nm->frame_size_hash, key);
100 if (p)
101 i = p[0];
102 else
103 {
104 i = vec_len (nm->frame_sizes);
105 vec_validate (nm->frame_sizes, i);
106 hash_set (nm->frame_size_hash, key, i);
107 }
108
109 return vec_elt_at_index (nm->frame_sizes, i);
110}
111
112static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400113vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
114 u32 frame_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400116 vlib_node_main_t *nm = &vm->node_main;
117 vlib_frame_size_t *fs;
118 vlib_node_t *to_node;
119 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 u32 fi, l, n, scalar_size, vector_size;
121
122 to_node = vlib_get_node (vm, to_node_index);
123
124 scalar_size = to_node->scalar_size;
125 vector_size = to_node->vector_size;
126
127 fs = get_frame_size_info (nm, scalar_size, vector_size);
128 n = vlib_frame_bytes (scalar_size, vector_size);
129 if ((l = vec_len (fs->free_frame_indices)) > 0)
130 {
131 /* Allocate from end of free list. */
132 fi = fs->free_frame_indices[l - 1];
133 f = vlib_get_frame_no_check (vm, fi);
134 _vec_len (fs->free_frame_indices) = l - 1;
135 }
136 else
137 {
Damjan Marion3f46baf2016-02-06 19:16:21 +0100138 f = clib_mem_alloc_aligned_no_fail (n, VLIB_FRAME_ALIGN);
Damjan Marion586afd72017-04-05 19:18:20 +0200139 f->thread_index = vm->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 fi = vlib_frame_index_no_check (vm, f);
141 }
142
143 /* Poison frame when debugging. */
144 if (CLIB_DEBUG > 0)
145 {
Damjan Marion586afd72017-04-05 19:18:20 +0200146 u32 save_thread_index = f->thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 memset (f, 0xfe, n);
149
Damjan Marion586afd72017-04-05 19:18:20 +0200150 f->thread_index = save_thread_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 }
152
153 /* Insert magic number. */
154 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400155 u32 *magic;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 magic = vlib_frame_find_magic (f, to_node);
158 *magic = VLIB_FRAME_MAGIC;
159 }
160
161 f->flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
162 f->n_vectors = 0;
163 f->scalar_size = scalar_size;
164 f->vector_size = vector_size;
165
166 fs->n_alloc_frames += 1;
167
168 return fi;
169}
170
171/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
172 Returns frame index. */
173static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400174vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
175 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
179 from_node = vlib_get_node (vm, from_node_runtime->node_index);
180 ASSERT (to_next_index < vec_len (from_node->next_nodes));
181
Dave Barach9b8ffd92016-07-08 08:13:45 -0400182 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 /* frame_flags */ 0);
184}
185
186vlib_frame_t *
187vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
188{
189 u32 fi = vlib_frame_alloc_to_node (vm, to_node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400190 /* frame_flags */
191 VLIB_FRAME_FREE_AFTER_DISPATCH);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 return vlib_get_frame (vm, fi);
193}
194
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195void
196vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400198 vlib_pending_frame_t *p;
199 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
201 if (f->n_vectors == 0)
202 return;
203
204 to_node = vlib_get_node (vm, to_node_index);
205
206 vec_add2 (vm->node_main.pending_frames, p, 1);
207
208 f->flags |= VLIB_FRAME_PENDING;
209 p->frame_index = vlib_frame_index (vm, f);
210 p->node_runtime_index = to_node->runtime_index;
211 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
212}
213
214/* Free given frame. */
215void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 vlib_node_main_t *nm = &vm->node_main;
219 vlib_node_t *node;
220 vlib_frame_size_t *fs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 u32 frame_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 ASSERT (f->flags & VLIB_FRAME_IS_ALLOCATED);
224
225 node = vlib_get_node (vm, r->node_index);
226 fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
227
228 frame_index = vlib_frame_index (vm, f);
229
230 ASSERT (f->flags & VLIB_FRAME_IS_ALLOCATED);
231
232 /* No next frames may point to freed frame. */
233 if (CLIB_DEBUG > 0)
234 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400235 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 vec_foreach (nf, vm->node_main.next_frames)
237 ASSERT (nf->frame_index != frame_index);
238 }
239
240 f->flags &= ~VLIB_FRAME_IS_ALLOCATED;
241
242 vec_add1 (fs->free_frame_indices, frame_index);
243 ASSERT (fs->n_alloc_frames > 0);
244 fs->n_alloc_frames -= 1;
245}
246
247static clib_error_t *
248show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400249 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 vlib_node_main_t *nm = &vm->node_main;
252 vlib_frame_size_t *fs;
253
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
255 vec_foreach (fs, nm->frame_sizes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 {
257 u32 n_alloc = fs->n_alloc_frames;
258 u32 n_free = vec_len (fs->free_frame_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260 if (n_alloc + n_free > 0)
261 vlib_cli_output (vm, "%=6d%=12d%=12d",
262 fs - nm->frame_sizes, n_alloc, n_free);
263 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
265 return 0;
266}
267
Dave Barach9b8ffd92016-07-08 08:13:45 -0400268/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
270 .path = "show vlib frame-allocation",
271 .short_help = "Show node dispatch frame statistics",
272 .function = show_frame_stats,
273};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
276/* Change ownership of enqueue rights to given next node. */
277static void
278vlib_next_frame_change_ownership (vlib_main_t * vm,
279 vlib_node_runtime_t * node_runtime,
280 u32 next_index)
281{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400282 vlib_node_main_t *nm = &vm->node_main;
283 vlib_next_frame_t *next_frame;
284 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 node = vec_elt (nm->nodes, node_runtime->node_index);
287
288 /* Only internal & input nodes are allowed to call other nodes. */
289 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
290 || node->type == VLIB_NODE_TYPE_INPUT
291 || node->type == VLIB_NODE_TYPE_PROCESS);
292
293 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
294
Dave Barach9b8ffd92016-07-08 08:13:45 -0400295 next_frame =
296 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
298
299 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
300 {
301 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400302 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 vlib_next_frame_t tmp;
304
305 owner_next_frame =
306 vlib_node_get_next_frame (vm,
307 next_node->owner_node_index,
308 next_node->owner_next_index);
309
310 /* Swap target next frame with owner's. */
311 tmp = owner_next_frame[0];
312 owner_next_frame[0] = next_frame[0];
313 next_frame[0] = tmp;
314
315 /*
316 * If next_frame is already pending, we have to track down
317 * all pending frames and fix their next_frame_index fields.
318 */
319 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320 {
321 vlib_pending_frame_t *p;
322 if (next_frame->frame_index != ~0)
323 {
324 vec_foreach (p, nm->pending_frames)
325 {
326 if (p->frame_index == next_frame->frame_index)
327 {
328 p->next_frame_index =
329 next_frame - vm->node_main.next_frames;
330 }
331 }
332 }
333 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 }
335 else
336 {
337 /* No previous owner. Take ownership. */
338 next_frame->flags |= VLIB_FRAME_OWNER;
339 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 /* Record new owner. */
342 next_node->owner_node_index = node->index;
343 next_node->owner_next_index = next_index;
344
345 /* Now we should be owner. */
346 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
349/* Make sure that magic number is still there.
350 Otherwise, it is likely that caller has overrun frame arguments. */
351always_inline void
352validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400353 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400355 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
356 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
358}
359
360vlib_frame_t *
361vlib_get_next_frame_internal (vlib_main_t * vm,
362 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400363 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400365 vlib_frame_t *f;
366 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 u32 n_used;
368
369 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
370
371 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 vlib_next_frame_change_ownership (vm, node, next_index);
374
375 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 {
378 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
379 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
380 }
381
382 f = vlib_get_frame (vm, nf->frame_index);
383
384 /* Has frame been removed from pending vector (e.g. finished dispatching)?
385 If so we can reuse frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400386 if ((nf->flags & VLIB_FRAME_PENDING) && !(f->flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387 {
388 nf->flags &= ~VLIB_FRAME_PENDING;
389 f->n_vectors = 0;
390 }
391
392 /* Allocate new frame if current one is already full. */
393 n_used = f->n_vectors;
394 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0))
395 {
396 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 two redundant frames from node -> next node. */
398 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400400 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 f_old->flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
402 }
403
404 /* Allocate new frame to replace full one. */
405 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
406 f = vlib_get_frame (vm, nf->frame_index);
407 n_used = f->n_vectors;
408 }
409
410 /* Should have free vectors in frame now. */
411 ASSERT (n_used < VLIB_FRAME_SIZE);
412
413 if (CLIB_DEBUG > 0)
414 {
415 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 }
418
419 return f;
420}
421
422static void
423vlib_put_next_frame_validate (vlib_main_t * vm,
424 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427 vlib_node_main_t *nm = &vm->node_main;
428 vlib_next_frame_t *nf;
429 vlib_frame_t *f;
430 vlib_node_runtime_t *next_rt;
431 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 u32 n_before, n_after;
433
434 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
435 f = vlib_get_frame (vm, nf->frame_index);
436
437 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
438 n_after = VLIB_FRAME_SIZE - n_vectors_left;
439 n_before = f->n_vectors;
440
441 ASSERT (n_after >= n_before);
442
443 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
444 nf->node_runtime_index);
445 next_node = vlib_get_node (vm, next_rt->node_index);
446 if (n_after > 0 && next_node->validate_frame)
447 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400448 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449 if (msg)
450 {
451 clib_warning ("%v", msg);
452 ASSERT (0);
453 }
454 vec_free (msg);
455 }
456}
457
458void
459vlib_put_next_frame (vlib_main_t * vm,
460 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400461 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400463 vlib_node_main_t *nm = &vm->node_main;
464 vlib_next_frame_t *nf;
465 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 u32 n_vectors_in_frame;
467
Damjan Marion878c6092017-01-04 13:19:27 +0100468 if (vm->buffer_main->extern_buffer_mgmt == 0 && CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
470
471 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
472 f = vlib_get_frame (vm, nf->frame_index);
473
474 /* Make sure that magic number is still there. Otherwise, caller
475 has overrun frame meta data. */
476 if (CLIB_DEBUG > 0)
477 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 validate_frame_magic (vm, f, node, next_index);
480 }
481
482 /* Convert # of vectors left -> number of vectors there. */
483 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
484 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
485
486 f->n_vectors = n_vectors_in_frame;
487
488 /* If vectors were added to frame, add to pending vector. */
489 if (PREDICT_TRUE (n_vectors_in_frame > 0))
490 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 r->cached_next_index = next_index;
495
496 if (!(f->flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497 {
498 __attribute__ ((unused)) vlib_node_t *node;
499 vlib_node_t *next_node;
500 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 node = vlib_get_node (vm, r->node_index);
503 next_node = vlib_get_next_node (vm, r->node_index, next_index);
504 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Dave Barach9b8ffd92016-07-08 08:13:45 -0400508 p->frame_index = nf->frame_index;
509 p->node_runtime_index = nf->node_runtime_index;
510 p->next_frame_index = nf - nm->next_frames;
511 nf->flags |= VLIB_FRAME_PENDING;
512 f->flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Dave Barach9b8ffd92016-07-08 08:13:45 -0400514 /*
515 * If we're going to dispatch this frame on another thread,
516 * force allocation of a new frame. Otherwise, we create
517 * a dangling frame reference. Each thread has its own copy of
518 * the next_frames vector.
519 */
Damjan Marion586afd72017-04-05 19:18:20 +0200520 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 {
522 nf->frame_index = ~0;
523 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
524 }
525 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526
527 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 nf->flags |=
529 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
530 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531
532 v0 = nf->vectors_since_last_overflow;
533 v1 = v0 + n_vectors_in_frame;
534 nf->vectors_since_last_overflow = v1;
535 if (PREDICT_FALSE (v1 < v0))
536 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
539 }
540 }
541}
542
543/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
544never_inline void
545vlib_node_runtime_sync_stats (vlib_main_t * vm,
546 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400547 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400549 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
551 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
552 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
553 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
554 n->stats_total.max_clock = r->max_clock;
555 n->stats_total.max_clock_n = r->max_clock_n;
556
557 r->calls_since_last_overflow = 0;
558 r->vectors_since_last_overflow = 0;
559 r->clocks_since_last_overflow = 0;
560}
561
Dave Barach9b8ffd92016-07-08 08:13:45 -0400562always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563vlib_process_sync_stats (vlib_main_t * vm,
564 vlib_process_t * p,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567 vlib_node_runtime_t *rt = &p->node_runtime;
568 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks);
570 n->stats_total.suspends += p->n_suspends;
571 p->n_suspends = 0;
572}
573
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574void
575vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400577 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578
579 if (n->type == VLIB_NODE_TYPE_PROCESS)
580 {
581 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582 if (vm != &vlib_global_main)
583 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584
Dave Barach9b8ffd92016-07-08 08:13:45 -0400585 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586 n->stats_total.suspends += p->n_suspends;
587 p->n_suspends = 0;
588 rt = &p->node_runtime;
589 }
590 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591 rt =
592 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
593 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
595 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0);
596
597 /* Sync up runtime next frame vector counters with main node structure. */
598 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400599 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 uword i;
601 for (i = 0; i < rt->n_next_nodes; i++)
602 {
603 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 vec_elt (n->n_vectors_by_next_node, i) +=
605 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 nf->vectors_since_last_overflow = 0;
607 }
608 }
609}
610
611always_inline u32
612vlib_node_runtime_update_stats (vlib_main_t * vm,
613 vlib_node_runtime_t * node,
614 uword n_calls,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400615 uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616{
617 u32 ca0, ca1, v0, v1, cl0, cl1, r;
618
619 cl0 = cl1 = node->clocks_since_last_overflow;
620 ca0 = ca1 = node->calls_since_last_overflow;
621 v0 = v1 = node->vectors_since_last_overflow;
622
623 ca1 = ca0 + n_calls;
624 v1 = v0 + n_vectors;
625 cl1 = cl0 + n_clocks;
626
627 node->calls_since_last_overflow = ca1;
628 node->clocks_since_last_overflow = cl1;
629 node->vectors_since_last_overflow = v1;
630 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 node->max_clock_n : n_vectors;
632 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
634 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
635
636 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0))
637 {
638 node->calls_since_last_overflow = ca0;
639 node->clocks_since_last_overflow = cl0;
640 node->vectors_since_last_overflow = v0;
641 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks);
642 }
643
644 return r;
645}
646
647always_inline void
648vlib_process_update_stats (vlib_main_t * vm,
649 vlib_process_t * p,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400650 uword n_calls, uword n_vectors, uword n_clocks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651{
652 vlib_node_runtime_update_stats (vm, &p->node_runtime,
653 n_calls, n_vectors, n_clocks);
654}
655
656static clib_error_t *
657vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400658 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659{
660 elog_reset_buffer (&vm->elog_main);
661 return 0;
662}
663
Dave Barach9b8ffd92016-07-08 08:13:45 -0400664/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400666 .path = "event-logger clear",
667 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 .function = vlib_cli_elog_clear,
669};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
672#ifdef CLIB_UNIX
673static clib_error_t *
674elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400677 elog_main_t *em = &vm->elog_main;
678 char *file, *chroot_file;
679 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680
Dave Barach9b8ffd92016-07-08 08:13:45 -0400681 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 {
683 vlib_cli_output (vm, "expected file name, got `%U'",
684 format_unformat_error, input);
685 return 0;
686 }
687
688 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 {
691 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
692 return 0;
693 }
694
695 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
696
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
699 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700 elog_n_events_in_buffer (em),
701 elog_buffer_capacity (em), chroot_file);
702
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400704 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 vec_free (chroot_file);
707 return error;
708}
709
Dave Barach81481312017-05-16 09:08:14 -0400710void
711elog_post_mortem_dump (void)
712{
713 vlib_main_t *vm = &vlib_global_main;
714 elog_main_t *em = &vm->elog_main;
715 u8 *filename;
716 clib_error_t *error;
717
718 if (!vm->elog_post_mortem_dump)
719 return;
720
721 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
722 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
723 if (error)
724 clib_error_report (error);
725 vec_free (filename);
726}
727
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400730 .path = "event-logger save",
731 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 .function = elog_save_buffer,
733};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735
Dave Barache5389bb2016-03-28 17:12:19 -0400736static clib_error_t *
737elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400739{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400740 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400741
742 em->n_total_events_disable_limit = em->n_total_events;
743
744 vlib_cli_output (vm, "Stopped the event logger...");
745 return 0;
746}
747
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400749VLIB_CLI_COMMAND (elog_stop_cli, static) = {
750 .path = "event-logger stop",
751 .short_help = "Stop the event-logger",
752 .function = elog_stop,
753};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400755
756static clib_error_t *
757elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400759{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400761
762 em->n_total_events_disable_limit = ~0;
763
764 vlib_cli_output (vm, "Restarted the event logger...");
765 return 0;
766}
767
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400769VLIB_CLI_COMMAND (elog_restart_cli, static) = {
770 .path = "event-logger restart",
771 .short_help = "Restart the event-logger",
772 .function = elog_restart,
773};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400774/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400775
776static clib_error_t *
777elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400779{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400780 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400781 u32 tmp;
782
783 /* Stop the parade */
784 elog_reset_buffer (&vm->elog_main);
785
786 if (unformat (input, "%d", &tmp))
787 {
788 elog_alloc (em, tmp);
789 em->n_total_events_disable_limit = ~0;
790 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400791 else
Dave Barache5389bb2016-03-28 17:12:19 -0400792 return clib_error_return (0, "Must specify how many events in the ring");
793
794 vlib_cli_output (vm, "Resized ring and 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_resize_cli, static) = {
800 .path = "event-logger resize",
801 .short_help = "event-logger resize <nnn>",
802 .function = elog_resize,
803};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400804/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400805
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806#endif /* CLIB_UNIX */
807
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808static void
809elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400811 elog_main_t *em = &vm->elog_main;
812 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813 f64 dt;
814
815 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400816 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 * vm->clib_time.seconds_per_clock;
818
819 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400820 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
821 em->event_ring_size,
822 em->n_total_events < em->n_total_events_disable_limit ?
823 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400825 {
826 vlib_cli_output (vm, "%18.9f: %U",
827 e->time + dt, format_elog_event, em, e);
828 n_events_to_show--;
829 if (n_events_to_show == 0)
830 break;
831 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400833
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834}
835
836static clib_error_t *
837elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839{
840 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400841 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
843 n_events_to_show = 250;
844 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
845 {
846 if (unformat (input, "%d", &n_events_to_show))
847 ;
848 else if (unformat (input, "all"))
849 n_events_to_show = ~0;
850 else
851 return unformat_parse_error (input);
852 }
853 elog_show_buffer_internal (vm, n_events_to_show);
854 return error;
855}
856
Dave Barach9b8ffd92016-07-08 08:13:45 -0400857/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858VLIB_CLI_COMMAND (elog_show_cli, static) = {
859 .path = "show event-logger",
860 .short_help = "Show event logger info",
861 .function = elog_show_buffer,
862};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
Dave Barach9b8ffd92016-07-08 08:13:45 -0400865void
866vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869}
870
Dave Barachfb6e59d2016-03-26 18:45:42 -0400871static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872vlib_elog_main_loop_event (vlib_main_t * vm,
873 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400874 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400876 vlib_main_t *evm = &vlib_global_main;
877 elog_main_t *em = &evm->elog_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878
Dave Barachfb6e59d2016-03-26 18:45:42 -0400879 if (VLIB_ELOG_MAIN_LOOP && n_vectors)
880 elog_track (em,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400881 /* event type */
882 vec_elt_at_index (is_return
883 ? evm->node_return_elog_event_types
884 : evm->node_call_elog_event_types,
885 node_index),
886 /* track */
Damjan Marion586afd72017-04-05 19:18:20 +0200887 (vm->thread_index ? &vlib_worker_threads[vm->thread_index].
Dave Barach9b8ffd92016-07-08 08:13:45 -0400888 elog_track : &em->default_track),
889 /* data to log */ n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890}
891
Dave Barach9b8ffd92016-07-08 08:13:45 -0400892void
893vlib_dump_context_trace (vlib_main_t * vm, u32 bi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400895 vlib_node_main_t *vnm = &vm->node_main;
896 vlib_buffer_t *b;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 u8 i, n;
898
899 if (VLIB_BUFFER_TRACE_TRAJECTORY)
900 {
901 b = vlib_get_buffer (vm, bi);
902 n = b->pre_data[0];
903
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 fformat (stderr, "Context trace for bi %d b 0x%llx, visited %d\n",
905 bi, b, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
907 if (n == 0 || n > 20)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 {
909 fformat (stderr, "n is unreasonable\n");
910 return;
911 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912
913
914 for (i = 0; i < n; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400915 {
916 u32 node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 node_index = b->pre_data[i + 1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919
Dave Barach9b8ffd92016-07-08 08:13:45 -0400920 if (node_index > vec_len (vnm->nodes))
921 {
922 fformat (stderr, "Skip bogus node index %d\n", node_index);
923 continue;
924 }
925
926 fformat (stderr, "%v (%d)\n", vnm->nodes[node_index]->name,
927 node_index);
928 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 }
930 else
931 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400932 fformat (stderr,
933 "in vlib/buffers.h, #define VLIB_BUFFER_TRACE_TRAJECTORY 1\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934 }
935}
936
937
Damjan Marion9a332e12017-03-28 15:11:20 +0200938static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939dispatch_node (vlib_main_t * vm,
940 vlib_node_runtime_t * node,
941 vlib_node_type_t type,
942 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944{
945 uword n, v;
946 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400947 vlib_node_main_t *nm = &vm->node_main;
948 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949
950 if (CLIB_DEBUG > 0)
951 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400952 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 ASSERT (n->type == type);
954 }
955
956 /* Only non-internal nodes may be disabled. */
957 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
958 {
959 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
960 return last_time_stamp;
961 }
962
963 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
964 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
965 {
966 u32 c = node->input_main_loops_per_call;
967 /* Only call node when count reaches zero. */
968 if (c)
969 {
970 node->input_main_loops_per_call = c - 1;
971 return last_time_stamp;
972 }
973 }
974
975 /* Speculatively prefetch next frames. */
976 if (node->n_next_nodes > 0)
977 {
978 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
979 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
980 }
981
982 vm->cpu_time_last_node_dispatch = last_time_stamp;
983
Damjan Marion586afd72017-04-05 19:18:20 +0200984 if (1 /* || vm->thread_index == node->thread_index */ )
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985 {
986 vlib_main_t *stat_vm;
987
988 stat_vm = /* vlib_mains ? vlib_mains[0] : */ vm;
989
990 vlib_elog_main_loop_event (vm, node->node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400991 last_time_stamp,
992 frame ? frame->n_vectors : 0,
993 /* is_after */ 0);
994
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995 /*
996 * Turn this on if you run into
997 * "bad monkey" contexts, and you want to know exactly
998 * which nodes they've visited... See ixge.c...
999 */
1000 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001001 {
1002 int i;
1003 int log_index;
1004 u32 *from;
1005 from = vlib_frame_vector_args (frame);
1006 for (i = 0; i < frame->n_vectors; i++)
1007 {
1008 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1009 ASSERT (b->pre_data[0] < 32);
1010 log_index = b->pre_data[0]++ + 1;
1011 b->pre_data[log_index] = node->node_index;
1012 }
1013 n = node->function (vm, node, frame);
1014 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001016 n = node->function (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017
1018 t = clib_cpu_time_now ();
1019
Dave Barach9b8ffd92016-07-08 08:13:45 -04001020 vlib_elog_main_loop_event (vm, node->node_index, t, n, /* is_after */
1021 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022
1023 vm->main_loop_vectors_processed += n;
1024 vm->main_loop_nodes_processed += n > 0;
1025
1026 v = vlib_node_runtime_update_stats (stat_vm, node,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001027 /* n_calls */ 1,
1028 /* n_vectors */ n,
1029 /* n_clocks */ t - last_time_stamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030
1031 /* When in interrupt mode and vector rate crosses threshold switch to
1032 polling mode. */
Damjan Marion878c6092017-01-04 13:19:27 +01001033 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1034 || (dispatch_state == VLIB_NODE_STATE_POLLING
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 && (node->flags
1036 & VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE)))
1037 {
Steven6aa75af2017-02-24 10:03:22 -08001038#ifdef DISPATCH_NODE_ELOG_REQUIRED
Dave Barach9b8ffd92016-07-08 08:13:45 -04001039 ELOG_TYPE_DECLARE (e) =
1040 {
1041 .function = (char *) __FUNCTION__,.format =
1042 "%s vector length %d, switching to %s",.format_args =
1043 "T4i4t4",.n_enum_strings = 2,.enum_strings =
1044 {
1045 "interrupt", "polling",},};
1046 struct
1047 {
1048 u32 node_name, vector_length, is_polling;
1049 } *ed;
Damjan Marion586afd72017-04-05 19:18:20 +02001050 vlib_worker_thread_t *w = vlib_worker_threads + vm->thread_index;
Steven6aa75af2017-02-24 10:03:22 -08001051#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001052
Steven7312cc72017-03-15 21:18:55 -07001053 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1054 && v >= nm->polling_threshold_vector_length) &&
1055 !(node->flags &
1056 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001057 {
1058 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1059 n->state = VLIB_NODE_STATE_POLLING;
1060 node->state = VLIB_NODE_STATE_POLLING;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001061 node->flags &=
1062 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1063 node->flags |=
1064 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1065 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1066 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067
Steven6aa75af2017-02-24 10:03:22 -08001068#ifdef DISPATCH_NODE_ELOG_REQUIRED
1069 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1070 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001071 ed->node_name = n->name_elog_string;
1072 ed->vector_length = v;
1073 ed->is_polling = 1;
Steven6aa75af2017-02-24 10:03:22 -08001074#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001075 }
1076 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1077 && v <= nm->interrupt_threshold_vector_length)
1078 {
1079 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1080 if (node->flags &
1081 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
1082 {
1083 /* Switch to interrupt mode after dispatch in polling one more time.
1084 This allows driver to re-enable interrupts. */
1085 n->state = VLIB_NODE_STATE_INTERRUPT;
1086 node->state = VLIB_NODE_STATE_INTERRUPT;
1087 node->flags &=
1088 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1089 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -=
1090 1;
1091 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] +=
1092 1;
1093
1094 }
1095 else
1096 {
1097 node->flags |=
1098 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
Steven6aa75af2017-02-24 10:03:22 -08001099#ifdef DISPATCH_NODE_ELOG_REQUIRED
1100 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1101 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001102 ed->node_name = n->name_elog_string;
1103 ed->vector_length = v;
1104 ed->is_polling = 0;
Steven6aa75af2017-02-24 10:03:22 -08001105#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001106 }
1107 }
1108 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109 }
1110
1111 return t;
1112}
1113
Damjan Marion9a332e12017-03-28 15:11:20 +02001114static u64
Dave Baracha6269992017-06-07 08:18:49 -04001115dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1116 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001118 vlib_node_main_t *nm = &vm->node_main;
1119 vlib_frame_t *f;
1120 vlib_next_frame_t *nf, nf_dummy;
1121 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122 u32 restore_frame_index;
Dave Baracha6269992017-06-07 08:18:49 -04001123 vlib_pending_frame_t *p;
1124
1125 /* See comment below about dangling references to nm->pending_frames */
1126 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127
1128 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1129 p->node_runtime_index);
1130
1131 f = vlib_get_frame (vm, p->frame_index);
1132 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1133 {
1134 /* No next frame: so use dummy on stack. */
1135 nf = &nf_dummy;
1136 nf->flags = f->flags & VLIB_NODE_FLAG_TRACE;
1137 nf->frame_index = ~p->frame_index;
1138 }
1139 else
1140 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1141
1142 ASSERT (f->flags & VLIB_FRAME_IS_ALLOCATED);
1143
1144 /* Force allocation of new frame while current frame is being
1145 dispatched. */
1146 restore_frame_index = ~0;
1147 if (nf->frame_index == p->frame_index)
1148 {
1149 nf->frame_index = ~0;
1150 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001151 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 restore_frame_index = p->frame_index;
1153 }
1154
1155 /* Frame must be pending. */
1156 ASSERT (f->flags & VLIB_FRAME_PENDING);
1157 ASSERT (f->n_vectors > 0);
1158
1159 /* Copy trace flag from next frame to node.
1160 Trace flag indicates that at least one vector in the dispatched
1161 frame is traced. */
1162 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1163 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1164 nf->flags &= ~VLIB_FRAME_TRACE;
1165
1166 last_time_stamp = dispatch_node (vm, n,
1167 VLIB_NODE_TYPE_INTERNAL,
1168 VLIB_NODE_STATE_POLLING,
1169 f, last_time_stamp);
1170
1171 f->flags &= ~VLIB_FRAME_PENDING;
1172
1173 /* Frame is ready to be used again, so restore it. */
1174 if (restore_frame_index != ~0)
1175 {
Dave Baracha6269992017-06-07 08:18:49 -04001176 /*
1177 * We musn't restore a frame that is flagged to be freed. This
1178 * shouldn't happen since frames to be freed post dispatch are
1179 * those used when the to-node frame becomes full i.e. they form a
1180 * sort of queue of frames to a single node. If we get here then
1181 * the to-node frame and the pending frame *were* the same, and so
1182 * we removed the to-node frame. Therefore this frame is no
1183 * longer part of the queue for that node and hence it cannot be
1184 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001185 */
1186 ASSERT (!(f->flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
1187
Dave Baracha6269992017-06-07 08:18:49 -04001188 /*
1189 * NB: dispatching node n can result in the creation and scheduling
1190 * of new frames, and hence in the reallocation of nm->pending_frames.
1191 * Recompute p, or no supper. This was broken for more than 10 years.
1192 */
1193 p = nm->pending_frames + pending_frame_index;
1194
1195 /*
1196 * p->next_frame_index can change during node dispatch if node
1197 * function decides to change graph hook up.
1198 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001199 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201
Neale Ranns88170612016-11-22 08:29:51 +00001202 if (~0 == nf->frame_index)
1203 {
1204 /* no new frame has been assigned to this node, use the saved one */
1205 nf->frame_index = restore_frame_index;
1206 f->n_vectors = 0;
1207 }
1208 else
1209 {
1210 /* The node has gained a frame, implying packets from the current frame
1211 were re-queued to this same node. we don't need the saved one
1212 anymore */
1213 vlib_frame_free (vm, n, f);
1214 }
1215 }
1216 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217 {
Neale Ranns88170612016-11-22 08:29:51 +00001218 if (f->flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
1219 {
1220 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1221 vlib_frame_free (vm, n, f);
1222 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001223 }
1224
1225 return last_time_stamp;
1226}
1227
1228always_inline uword
1229vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001230{
1231 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1232}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233
Dave Barach9b8ffd92016-07-08 08:13:45 -04001234typedef struct
1235{
1236 vlib_main_t *vm;
1237 vlib_process_t *process;
1238 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239} vlib_process_bootstrap_args_t;
1240
1241/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001242static uword
1243vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001245 vlib_process_bootstrap_args_t *a;
1246 vlib_main_t *vm;
1247 vlib_node_runtime_t *node;
1248 vlib_frame_t *f;
1249 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250 uword n;
1251
1252 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1253
1254 vm = a->vm;
1255 p = a->process;
1256 f = a->frame;
1257 node = &p->node_runtime;
1258
1259 n = node->function (vm, node, f);
1260
1261 ASSERT (vlib_process_stack_is_valid (p));
1262
1263 clib_longjmp (&p->return_longjmp, n);
1264
1265 return n;
1266}
1267
1268/* Called in main stack. */
1269static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001270vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271{
1272 vlib_process_bootstrap_args_t a;
1273 uword r;
1274
1275 a.vm = vm;
1276 a.process = p;
1277 a.frame = f;
1278
1279 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1280 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1281 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1282 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1283
1284 return r;
1285}
1286
1287static_always_inline uword
1288vlib_process_resume (vlib_process_t * p)
1289{
1290 uword r;
1291 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1292 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1293 | VLIB_PROCESS_RESUME_PENDING);
1294 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1295 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1296 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1297 return r;
1298}
1299
1300static u64
1301dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001302 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001304 vlib_node_main_t *nm = &vm->node_main;
1305 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1306 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307 u64 t;
1308 uword n_vectors, is_suspend;
1309
1310 if (node->state != VLIB_NODE_STATE_POLLING
1311 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1312 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1313 return last_time_stamp;
1314
1315 p->flags |= VLIB_PROCESS_IS_RUNNING;
1316
1317 t = last_time_stamp;
1318 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1319 f ? f->n_vectors : 0, /* is_after */ 0);
1320
1321 /* Save away current process for suspend. */
1322 nm->current_process_index = node->runtime_index;
1323
1324 n_vectors = vlib_process_startup (vm, p, f);
1325
1326 nm->current_process_index = ~0;
1327
1328 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1329 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1330 if (is_suspend)
1331 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001332 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001333
1334 n_vectors = 0;
1335 pool_get (nm->suspended_process_frames, pf);
1336 pf->node_runtime_index = node->runtime_index;
1337 pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1338 pf->next_frame_index = ~0;
1339
1340 p->n_suspends += 1;
1341 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1342
1343 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
1344 timing_wheel_insert (&nm->timing_wheel, p->resume_cpu_time,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001345 vlib_timing_wheel_data_set_suspended_process
1346 (node->runtime_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001347 }
1348 else
1349 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1350
1351 t = clib_cpu_time_now ();
1352
Dave Barach9b8ffd92016-07-08 08:13:45 -04001353 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1354 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355
1356 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001357 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 /* n_vectors */ n_vectors,
1359 /* n_clocks */ t - last_time_stamp);
1360
1361 return t;
1362}
1363
Dave Barach9b8ffd92016-07-08 08:13:45 -04001364void
1365vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001367 vlib_node_main_t *nm = &vm->node_main;
1368 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1370}
1371
1372static u64
1373dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001374 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001376 vlib_node_main_t *nm = &vm->node_main;
1377 vlib_node_runtime_t *node_runtime;
1378 vlib_node_t *node;
1379 vlib_frame_t *f;
1380 vlib_process_t *p;
1381 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001382 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001383
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 t = last_time_stamp;
1385
1386 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001387 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388 return last_time_stamp;
1389
1390 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1391 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1392
Dave Barach9b8ffd92016-07-08 08:13:45 -04001393 pf =
1394 pool_elt_at_index (nm->suspended_process_frames,
1395 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396
1397 node_runtime = &p->node_runtime;
1398 node = vlib_get_node (vm, node_runtime->node_index);
1399 f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1400
Dave Barach9b8ffd92016-07-08 08:13:45 -04001401 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1402 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001403
1404 /* Save away current process for suspend. */
1405 nm->current_process_index = node->runtime_index;
1406
1407 n_vectors = vlib_process_resume (p);
1408 t = clib_cpu_time_now ();
1409
1410 nm->current_process_index = ~0;
1411
1412 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1413 if (is_suspend)
1414 {
1415 /* Suspend it again. */
1416 n_vectors = 0;
1417 p->n_suspends += 1;
1418 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
1419 timing_wheel_insert (&nm->timing_wheel, p->resume_cpu_time,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001420 vlib_timing_wheel_data_set_suspended_process
1421 (node->runtime_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422 }
1423 else
1424 {
1425 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1426 p->suspended_process_frame_index = ~0;
1427 pool_put (nm->suspended_process_frames, pf);
1428 }
1429
1430 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001431 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1432 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433
1434 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001435 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436 /* n_vectors */ n_vectors,
1437 /* n_clocks */ t - last_time_stamp);
1438
1439 return t;
1440}
1441
Damjan Marione9d52d52017-03-09 15:42:26 +01001442static_always_inline void
1443vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001445 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001446 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001447 uword i;
1448 u64 cpu_time_now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001449 vlib_frame_queue_main_t *fqm;
Damjan Marion2c2b6402017-03-28 14:16:15 +02001450 u32 *last_node_runtime_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001451
1452 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001453 if (is_main)
1454 {
1455 vec_resize (nm->pending_frames, 32);
1456 _vec_len (nm->pending_frames) = 0;
1457 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001458
1459 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001460 if (is_main)
1461 {
1462 cpu_time_now = vm->clib_time.last_cpu_time;
1463 vm->cpu_time_main_loop_start = cpu_time_now;
1464 }
1465 else
1466 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467
1468 /* Arrange for first level of timing wheel to cover times we care
1469 most about. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001470 if (is_main)
1471 {
1472 nm->timing_wheel.min_sched_time = 10e-6;
1473 nm->timing_wheel.max_sched_time = 10e-3;
1474 timing_wheel_init (&nm->timing_wheel,
1475 cpu_time_now, vm->clib_time.clocks_per_second);
1476 vec_alloc (nm->data_from_advancing_timing_wheel, 32);
1477 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478
Damjan Marion2c2b6402017-03-28 14:16:15 +02001479 /* Pre-allocate interupt runtime indices and lock. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480 vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001481 vec_alloc (last_node_runtime_indices, 32);
1482 if (!is_main)
1483 clib_spinlock_init (&nm->pending_interrupt_lock);
1484
1485 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001486 if (!nm->polling_threshold_vector_length)
1487 nm->polling_threshold_vector_length = 10;
1488 if (!nm->interrupt_threshold_vector_length)
1489 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490
Ed Warnickecb9cada2015-12-08 15:45:58 -07001491 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001492 if (is_main)
1493 {
1494 uword i;
Stevenf3b53642017-05-01 14:03:02 -07001495 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001496 for (i = 0; i < vec_len (nm->processes); i++)
1497 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1498 cpu_time_now);
1499 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001500
1501 while (1)
1502 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001503 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
Damjan Marione9d52d52017-03-09 15:42:26 +01001505 if (!is_main)
1506 {
1507 vlib_worker_thread_barrier_check ();
1508 vec_foreach (fqm, tm->frame_queue_mains)
1509 vlib_frame_queue_dequeue (vm, fqm);
1510 }
1511
Ed Warnickecb9cada2015-12-08 15:45:58 -07001512 /* Process pre-input nodes. */
Damjan Marion20e272c2017-03-14 11:10:00 +01001513 if (is_main)
1514 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1515 cpu_time_now = dispatch_node (vm, n,
1516 VLIB_NODE_TYPE_PRE_INPUT,
1517 VLIB_NODE_STATE_POLLING,
1518 /* frame */ 0,
1519 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001520
1521 /* Next process input nodes. */
1522 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1523 cpu_time_now = dispatch_node (vm, n,
1524 VLIB_NODE_TYPE_INPUT,
1525 VLIB_NODE_STATE_POLLING,
1526 /* frame */ 0,
1527 cpu_time_now);
1528
Damjan Marione9d52d52017-03-09 15:42:26 +01001529 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001530 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531
1532 /* Next handle interrupts. */
1533 {
1534 uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1535 uword i;
1536 if (l > 0)
1537 {
Damjan Marion2c2b6402017-03-28 14:16:15 +02001538 u32 *tmp;
1539 if (!is_main)
1540 clib_spinlock_lock (&nm->pending_interrupt_lock);
1541 tmp = nm->pending_interrupt_node_runtime_indices;
1542 nm->pending_interrupt_node_runtime_indices =
1543 last_node_runtime_indices;
1544 last_node_runtime_indices = tmp;
1545 _vec_len (last_node_runtime_indices) = 0;
1546 if (!is_main)
1547 clib_spinlock_unlock (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001548 for (i = 0; i < l; i++)
1549 {
1550 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
Damjan Marion2c2b6402017-03-28 14:16:15 +02001551 last_node_runtime_indices[i]);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001552 cpu_time_now =
1553 dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1554 VLIB_NODE_STATE_INTERRUPT,
1555 /* frame */ 0,
1556 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001557 }
1558 }
1559 }
1560
Damjan Marione9d52d52017-03-09 15:42:26 +01001561 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001562 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001563 /* Check if process nodes have expired from timing wheel. */
1564 nm->data_from_advancing_timing_wheel
1565 = timing_wheel_advance (&nm->timing_wheel, cpu_time_now,
1566 nm->data_from_advancing_timing_wheel,
1567 &nm->cpu_time_next_process_ready);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001568
Damjan Marione9d52d52017-03-09 15:42:26 +01001569 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1570 if (PREDICT_FALSE
1571 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001572 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001573 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001574
Damjan Marione9d52d52017-03-09 15:42:26 +01001575 processes_timing_wheel_data:
1576 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1577 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001578 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001579 u32 d = nm->data_from_advancing_timing_wheel[i];
1580 u32 di = vlib_timing_wheel_data_get_index (d);
1581
1582 if (vlib_timing_wheel_data_is_timed_event (d))
1583 {
1584 vlib_signal_timed_event_data_t *te =
1585 pool_elt_at_index (nm->signal_timed_event_data_pool,
1586 di);
1587 vlib_node_t *n =
1588 vlib_get_node (vm, te->process_node_index);
1589 vlib_process_t *p =
1590 vec_elt (nm->processes, n->runtime_index);
1591 void *data;
1592 data =
1593 vlib_process_signal_event_helper (nm, n, p,
1594 te->event_type_index,
1595 te->n_data_elts,
1596 te->n_data_elt_bytes);
1597 if (te->n_data_bytes < sizeof (te->inline_event_data))
1598 clib_memcpy (data, te->inline_event_data,
1599 te->n_data_bytes);
1600 else
1601 {
1602 clib_memcpy (data, te->event_data_as_vector,
1603 te->n_data_bytes);
1604 vec_free (te->event_data_as_vector);
1605 }
1606 pool_put (nm->signal_timed_event_data_pool, te);
1607 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608 else
1609 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001610 cpu_time_now = clib_cpu_time_now ();
1611 cpu_time_now =
1612 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001613 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001614 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001615
Damjan Marione9d52d52017-03-09 15:42:26 +01001616 /* Reset vector. */
1617 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1618 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619 }
1620
1621 /* Input nodes may have added work to the pending vector.
1622 Process pending vector until there is nothing left.
1623 All pending vectors will be processed from input -> output. */
1624 for (i = 0; i < _vec_len (nm->pending_frames); i++)
Dave Baracha6269992017-06-07 08:18:49 -04001625 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001626 /* Reset pending vector for next iteration. */
1627 _vec_len (nm->pending_frames) = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001628
Ed Warnickecb9cada2015-12-08 15:45:58 -07001629 /* Pending internal nodes may resume processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001630 if (is_main && _vec_len (nm->data_from_advancing_timing_wheel) > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001631 goto processes_timing_wheel_data;
1632
1633 vlib_increment_main_loop_counter (vm);
1634
1635 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001636 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001637 cpu_time_now = clib_cpu_time_now ();
1638 }
1639}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001640
Damjan Marione9d52d52017-03-09 15:42:26 +01001641static void
1642vlib_main_loop (vlib_main_t * vm)
1643{
1644 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1645}
1646
1647void
1648vlib_worker_loop (vlib_main_t * vm)
1649{
1650 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1651}
1652
Ed Warnickecb9cada2015-12-08 15:45:58 -07001653vlib_main_t vlib_global_main;
1654
1655static clib_error_t *
1656vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1657{
1658 int turn_on_mem_trace = 0;
1659
1660 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1661 {
1662 if (unformat (input, "memory-trace"))
1663 turn_on_mem_trace = 1;
1664
1665 else if (unformat (input, "elog-events %d",
1666 &vm->elog_main.event_ring_size))
1667 ;
Dave Barach81481312017-05-16 09:08:14 -04001668 else if (unformat (input, "elog-post-mortem-dump"))
1669 vm->elog_post_mortem_dump = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001670 else
1671 return unformat_parse_error (input);
1672 }
1673
1674 unformat_free (input);
1675
1676 /* Enable memory trace as early as possible. */
1677 if (turn_on_mem_trace)
1678 clib_mem_trace (1);
1679
1680 return 0;
1681}
1682
1683VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1684
Dave Barach9b8ffd92016-07-08 08:13:45 -04001685static void
1686dummy_queue_signal_callback (vlib_main_t * vm)
1687{
1688}
Dave Barach16c75df2016-05-31 14:05:46 -04001689
Ed Warnickecb9cada2015-12-08 15:45:58 -07001690/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001691int
Eyal Barid334a6b2016-09-19 10:23:39 +03001692vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001693{
Eyal Barid334a6b2016-09-19 10:23:39 +03001694 clib_error_t *volatile error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001695
Dave Barach16c75df2016-05-31 14:05:46 -04001696 vm->queue_signal_callback = dummy_queue_signal_callback;
1697
Ed Warnickecb9cada2015-12-08 15:45:58 -07001698 clib_time_init (&vm->clib_time);
1699
1700 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001701 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001702 vm->elog_main.event_ring_size = 128 << 10;
1703 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
1704 elog_enable_disable (&vm->elog_main, 1);
1705
1706 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001707 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001708 vm->name = "VLIB";
1709
1710 vec_validate (vm->buffer_main, 0);
Damjan Marion878c6092017-01-04 13:19:27 +01001711 vlib_buffer_cb_init (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001712
1713 if ((error = vlib_thread_init (vm)))
1714 {
1715 clib_error_report (error);
1716 goto done;
1717 }
1718
1719 /* Register static nodes so that init functions may use them. */
1720 vlib_register_all_static_nodes (vm);
1721
1722 /* Set seed for random number generator.
1723 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001724 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001725 vm->random_seed = clib_cpu_time_now ();
1726 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1727
Ed Warnickecb9cada2015-12-08 15:45:58 -07001728 /* Initialize node graph. */
1729 if ((error = vlib_node_main_init (vm)))
1730 {
1731 /* Arrange for graph hook up error to not be fatal when debugging. */
1732 if (CLIB_DEBUG > 0)
1733 clib_error_report (error);
1734 else
1735 goto done;
1736 }
1737
Ole Troan964f93e2016-06-10 13:22:36 +02001738 /* See unix/main.c; most likely already set up */
1739 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001740 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02001741 if ((error = vlib_call_all_init_functions (vm)))
1742 goto done;
1743
Ed Warnickecb9cada2015-12-08 15:45:58 -07001744 /* Create default buffer free list. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001745 vlib_buffer_get_or_create_free_list (vm,
1746 VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747 "default");
1748
1749 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
1750 {
1751 case VLIB_MAIN_LOOP_EXIT_NONE:
1752 vm->main_loop_exit_set = 1;
1753 break;
1754
1755 case VLIB_MAIN_LOOP_EXIT_CLI:
1756 goto done;
1757
1758 default:
1759 error = vm->main_loop_error;
1760 goto done;
1761 }
1762
Dave Barach9b8ffd92016-07-08 08:13:45 -04001763 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001764 goto done;
1765
1766 /* Call all main loop enter functions. */
1767 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001768 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001769 sub_error = vlib_call_all_main_loop_enter_functions (vm);
1770 if (sub_error)
1771 clib_error_report (sub_error);
1772 }
1773
1774 vlib_main_loop (vm);
1775
Dave Barach9b8ffd92016-07-08 08:13:45 -04001776done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001777 /* Call all exit functions. */
1778 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001779 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001780 sub_error = vlib_call_all_main_loop_exit_functions (vm);
1781 if (sub_error)
1782 clib_error_report (sub_error);
1783 }
1784
1785 if (error)
1786 clib_error_report (error);
1787
1788 return 0;
1789}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001790
1791/*
1792 * fd.io coding-style-patch-verification: ON
1793 *
1794 * Local Variables:
1795 * eval: (c-set-style "gnu")
1796 * End:
1797 */