blob: a6ad4032daebf0fd7da56b657f55bdd6e2472bdc [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;
160
161 fs->n_alloc_frames += 1;
162
163 return fi;
164}
165
166/* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
167 Returns frame index. */
168static u32
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
170 u32 to_next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400172 vlib_node_t *from_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174 from_node = vlib_get_node (vm, from_node_runtime->node_index);
175 ASSERT (to_next_index < vec_len (from_node->next_nodes));
176
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 /* frame_flags */ 0);
179}
180
181vlib_frame_t *
182vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
183{
184 u32 fi = vlib_frame_alloc_to_node (vm, to_node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400185 /* frame_flags */
186 VLIB_FRAME_FREE_AFTER_DISPATCH);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 return vlib_get_frame (vm, fi);
188}
189
Dave Barach9b8ffd92016-07-08 08:13:45 -0400190void
191vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400193 vlib_pending_frame_t *p;
194 vlib_node_t *to_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196 if (f->n_vectors == 0)
197 return;
198
199 to_node = vlib_get_node (vm, to_node_index);
200
201 vec_add2 (vm->node_main.pending_frames, p, 1);
202
Damjan Marion633b6fd2018-09-14 14:38:53 +0200203 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 p->frame_index = vlib_frame_index (vm, f);
205 p->node_runtime_index = to_node->runtime_index;
206 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
207}
208
209/* Free given frame. */
210void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 vlib_node_main_t *nm = &vm->node_main;
214 vlib_node_t *node;
215 vlib_frame_size_t *fs;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 u32 frame_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400217
Damjan Marion633b6fd2018-09-14 14:38:53 +0200218 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219
220 node = vlib_get_node (vm, r->node_index);
221 fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
222
223 frame_index = vlib_frame_index (vm, f);
224
Damjan Marion633b6fd2018-09-14 14:38:53 +0200225 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
227 /* No next frames may point to freed frame. */
228 if (CLIB_DEBUG > 0)
229 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 vec_foreach (nf, vm->node_main.next_frames)
232 ASSERT (nf->frame_index != frame_index);
233 }
234
Damjan Marion633b6fd2018-09-14 14:38:53 +0200235 f->frame_flags &= ~VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
237 vec_add1 (fs->free_frame_indices, frame_index);
238 ASSERT (fs->n_alloc_frames > 0);
239 fs->n_alloc_frames -= 1;
240}
241
242static clib_error_t *
243show_frame_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400244 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 vlib_node_main_t *nm = &vm->node_main;
247 vlib_frame_size_t *fs;
248
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
250 vec_foreach (fs, nm->frame_sizes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400251 {
252 u32 n_alloc = fs->n_alloc_frames;
253 u32 n_free = vec_len (fs->free_frame_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255 if (n_alloc + n_free > 0)
256 vlib_cli_output (vm, "%=6d%=12d%=12d",
257 fs - nm->frame_sizes, n_alloc, n_free);
258 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
260 return 0;
261}
262
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
265 .path = "show vlib frame-allocation",
266 .short_help = "Show node dispatch frame statistics",
267 .function = show_frame_stats,
268};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400269/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271/* Change ownership of enqueue rights to given next node. */
272static void
273vlib_next_frame_change_ownership (vlib_main_t * vm,
274 vlib_node_runtime_t * node_runtime,
275 u32 next_index)
276{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 vlib_node_main_t *nm = &vm->node_main;
278 vlib_next_frame_t *next_frame;
279 vlib_node_t *node, *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
281 node = vec_elt (nm->nodes, node_runtime->node_index);
282
283 /* Only internal & input nodes are allowed to call other nodes. */
284 ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
285 || node->type == VLIB_NODE_TYPE_INPUT
286 || node->type == VLIB_NODE_TYPE_PROCESS);
287
288 ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
289
Dave Barach9b8ffd92016-07-08 08:13:45 -0400290 next_frame =
291 vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
293
294 if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
295 {
296 /* Get frame from previous owner. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 vlib_next_frame_t *owner_next_frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 vlib_next_frame_t tmp;
299
300 owner_next_frame =
301 vlib_node_get_next_frame (vm,
302 next_node->owner_node_index,
303 next_node->owner_next_index);
304
305 /* Swap target next frame with owner's. */
306 tmp = owner_next_frame[0];
307 owner_next_frame[0] = next_frame[0];
308 next_frame[0] = tmp;
309
310 /*
311 * If next_frame is already pending, we have to track down
312 * all pending frames and fix their next_frame_index fields.
313 */
314 if (next_frame->flags & VLIB_FRAME_PENDING)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315 {
316 vlib_pending_frame_t *p;
317 if (next_frame->frame_index != ~0)
318 {
319 vec_foreach (p, nm->pending_frames)
320 {
321 if (p->frame_index == next_frame->frame_index)
322 {
323 p->next_frame_index =
324 next_frame - vm->node_main.next_frames;
325 }
326 }
327 }
328 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 }
330 else
331 {
332 /* No previous owner. Take ownership. */
333 next_frame->flags |= VLIB_FRAME_OWNER;
334 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 /* Record new owner. */
337 next_node->owner_node_index = node->index;
338 next_node->owner_next_index = next_index;
339
340 /* Now we should be owner. */
341 ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
344/* Make sure that magic number is still there.
345 Otherwise, it is likely that caller has overrun frame arguments. */
346always_inline void
347validate_frame_magic (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400348 vlib_frame_t * f, vlib_node_t * n, uword next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400350 vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
351 u32 *magic = vlib_frame_find_magic (f, next_node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 ASSERT (VLIB_FRAME_MAGIC == magic[0]);
353}
354
355vlib_frame_t *
356vlib_get_next_frame_internal (vlib_main_t * vm,
357 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 u32 next_index, u32 allocate_new_next_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360 vlib_frame_t *f;
361 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 u32 n_used;
363
364 nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
365
366 /* Make sure this next frame owns right to enqueue to destination frame. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 vlib_next_frame_change_ownership (vm, node, next_index);
369
370 /* ??? Don't need valid flag: can use frame_index == ~0 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 {
373 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
374 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
375 }
376
377 f = vlib_get_frame (vm, nf->frame_index);
378
379 /* Has frame been removed from pending vector (e.g. finished dispatching)?
380 If so we can reuse frame. */
Damjan Marion633b6fd2018-09-14 14:38:53 +0200381 if ((nf->flags & VLIB_FRAME_PENDING)
382 && !(f->frame_flags & VLIB_FRAME_PENDING))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 {
384 nf->flags &= ~VLIB_FRAME_PENDING;
385 f->n_vectors = 0;
386 }
387
388 /* Allocate new frame if current one is already full. */
389 n_used = f->n_vectors;
390 if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0))
391 {
392 /* Old frame may need to be freed after dispatch, since we'll have
Dave Barach9b8ffd92016-07-08 08:13:45 -0400393 two redundant frames from node -> next node. */
394 if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400396 vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200397 f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 }
399
400 /* Allocate new frame to replace full one. */
401 nf->frame_index = vlib_frame_alloc (vm, node, next_index);
402 f = vlib_get_frame (vm, nf->frame_index);
403 n_used = f->n_vectors;
404 }
405
406 /* Should have free vectors in frame now. */
407 ASSERT (n_used < VLIB_FRAME_SIZE);
408
409 if (CLIB_DEBUG > 0)
410 {
411 validate_frame_magic (vm, f,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412 vlib_get_node (vm, node->node_index), next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 }
414
415 return f;
416}
417
418static void
419vlib_put_next_frame_validate (vlib_main_t * vm,
420 vlib_node_runtime_t * rt,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400421 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423 vlib_node_main_t *nm = &vm->node_main;
424 vlib_next_frame_t *nf;
425 vlib_frame_t *f;
426 vlib_node_runtime_t *next_rt;
427 vlib_node_t *next_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 u32 n_before, n_after;
429
430 nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
431 f = vlib_get_frame (vm, nf->frame_index);
432
433 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
434 n_after = VLIB_FRAME_SIZE - n_vectors_left;
435 n_before = f->n_vectors;
436
437 ASSERT (n_after >= n_before);
438
439 next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
440 nf->node_runtime_index);
441 next_node = vlib_get_node (vm, next_rt->node_index);
442 if (n_after > 0 && next_node->validate_frame)
443 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444 u8 *msg = next_node->validate_frame (vm, rt, f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 if (msg)
446 {
447 clib_warning ("%v", msg);
448 ASSERT (0);
449 }
450 vec_free (msg);
451 }
452}
453
454void
455vlib_put_next_frame (vlib_main_t * vm,
456 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400457 u32 next_index, u32 n_vectors_left)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400459 vlib_node_main_t *nm = &vm->node_main;
460 vlib_next_frame_t *nf;
461 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 u32 n_vectors_in_frame;
463
Damjan Mariond1274cb2018-03-13 21:32:17 +0100464 if (buffer_main.callbacks_registered == 0 && CLIB_DEBUG > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465 vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
466
467 nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
468 f = vlib_get_frame (vm, nf->frame_index);
469
470 /* Make sure that magic number is still there. Otherwise, caller
471 has overrun frame meta data. */
472 if (CLIB_DEBUG > 0)
473 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400474 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475 validate_frame_magic (vm, f, node, next_index);
476 }
477
478 /* Convert # of vectors left -> number of vectors there. */
479 ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
480 n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
481
482 f->n_vectors = n_vectors_in_frame;
483
484 /* If vectors were added to frame, add to pending vector. */
485 if (PREDICT_TRUE (n_vectors_in_frame > 0))
486 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487 vlib_pending_frame_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 u32 v0, v1;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 r->cached_next_index = next_index;
491
Damjan Marion633b6fd2018-09-14 14:38:53 +0200492 if (!(f->frame_flags & VLIB_FRAME_PENDING))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493 {
494 __attribute__ ((unused)) vlib_node_t *node;
495 vlib_node_t *next_node;
496 vlib_node_runtime_t *next_runtime;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
Dave Barach9b8ffd92016-07-08 08:13:45 -0400498 node = vlib_get_node (vm, r->node_index);
499 next_node = vlib_get_next_node (vm, r->node_index, next_index);
500 next_runtime = vlib_node_get_runtime (vm, next_node->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 vec_add2 (nm->pending_frames, p, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 p->frame_index = nf->frame_index;
505 p->node_runtime_index = nf->node_runtime_index;
506 p->next_frame_index = nf - nm->next_frames;
507 nf->flags |= VLIB_FRAME_PENDING;
Damjan Marion633b6fd2018-09-14 14:38:53 +0200508 f->frame_flags |= VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 /*
511 * If we're going to dispatch this frame on another thread,
512 * force allocation of a new frame. Otherwise, we create
513 * a dangling frame reference. Each thread has its own copy of
514 * the next_frames vector.
515 */
Damjan Marion586afd72017-04-05 19:18:20 +0200516 if (0 && r->thread_index != next_runtime->thread_index)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 {
518 nf->frame_index = ~0;
519 nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
520 }
521 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
523 /* Copy trace flag from next_frame and from runtime. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 nf->flags |=
525 (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
526 flags & VLIB_NODE_FLAG_TRACE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
528 v0 = nf->vectors_since_last_overflow;
529 v1 = v0 + n_vectors_in_frame;
530 nf->vectors_since_last_overflow = v1;
531 if (PREDICT_FALSE (v1 < v0))
532 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533 vlib_node_t *node = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 vec_elt (node->n_vectors_by_next_node, next_index) += v0;
535 }
536 }
537}
538
539/* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
540never_inline void
541vlib_node_runtime_sync_stats (vlib_main_t * vm,
542 vlib_node_runtime_t * r,
Dave Barach4d1a8662018-09-10 12:31:15 -0400543 uword n_calls, uword n_vectors, uword n_clocks,
544 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 vlib_node_t *n = vlib_get_node (vm, r->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
548 n->stats_total.calls += n_calls + r->calls_since_last_overflow;
549 n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
550 n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400551 n->stats_total.perf_counter_ticks += n_ticks +
552 r->perf_counter_ticks_since_last_overflow;
553 n->stats_total.perf_counter_vectors += n_vectors +
554 r->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 n->stats_total.max_clock = r->max_clock;
556 n->stats_total.max_clock_n = r->max_clock_n;
557
558 r->calls_since_last_overflow = 0;
559 r->vectors_since_last_overflow = 0;
560 r->clocks_since_last_overflow = 0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400561 r->perf_counter_ticks_since_last_overflow = 0ULL;
562 r->perf_counter_vectors_since_last_overflow = 0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563}
564
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565always_inline void __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566vlib_process_sync_stats (vlib_main_t * vm,
567 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400568 uword n_calls, uword n_vectors, uword n_clocks,
569 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400571 vlib_node_runtime_t *rt = &p->node_runtime;
572 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Dave Barach4d1a8662018-09-10 12:31:15 -0400573 vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
574 n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 n->stats_total.suspends += p->n_suspends;
576 p->n_suspends = 0;
577}
578
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579void
580vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584 if (n->type == VLIB_NODE_TYPE_PROCESS)
585 {
586 /* Nothing to do for PROCESS nodes except in main thread */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400587 if (vm != &vlib_global_main)
588 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
Dave Barach9b8ffd92016-07-08 08:13:45 -0400590 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 n->stats_total.suspends += p->n_suspends;
592 p->n_suspends = 0;
593 rt = &p->node_runtime;
594 }
595 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 rt =
597 vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
598 n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Dave Barach4d1a8662018-09-10 12:31:15 -0400600 vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
602 /* Sync up runtime next frame vector counters with main node structure. */
603 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 uword i;
606 for (i = 0; i < rt->n_next_nodes; i++)
607 {
608 nf = vlib_node_runtime_get_next_frame (vm, rt, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609 vec_elt (n->n_vectors_by_next_node, i) +=
610 nf->vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 nf->vectors_since_last_overflow = 0;
612 }
613 }
614}
615
616always_inline u32
617vlib_node_runtime_update_stats (vlib_main_t * vm,
618 vlib_node_runtime_t * node,
619 uword n_calls,
Dave Barach4d1a8662018-09-10 12:31:15 -0400620 uword n_vectors, uword n_clocks,
621 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622{
623 u32 ca0, ca1, v0, v1, cl0, cl1, r;
Dave Barach4d1a8662018-09-10 12:31:15 -0400624 u32 ptick0, ptick1, pvec0, pvec1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
626 cl0 = cl1 = node->clocks_since_last_overflow;
627 ca0 = ca1 = node->calls_since_last_overflow;
628 v0 = v1 = node->vectors_since_last_overflow;
Dave Barach4d1a8662018-09-10 12:31:15 -0400629 ptick0 = ptick1 = node->perf_counter_ticks_since_last_overflow;
630 pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631
632 ca1 = ca0 + n_calls;
633 v1 = v0 + n_vectors;
634 cl1 = cl0 + n_clocks;
Dave Barach4d1a8662018-09-10 12:31:15 -0400635 ptick1 = ptick0 + n_ticks;
636 pvec1 = pvec0 + n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637
638 node->calls_since_last_overflow = ca1;
639 node->clocks_since_last_overflow = cl1;
640 node->vectors_since_last_overflow = v1;
Dave Barach4d1a8662018-09-10 12:31:15 -0400641 node->perf_counter_ticks_since_last_overflow = ptick1;
642 node->perf_counter_vectors_since_last_overflow = pvec1;
643
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 node->max_clock_n = node->max_clock > n_clocks ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400645 node->max_clock_n : n_vectors;
646 node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648 r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
649
Dave Barach4d1a8662018-09-10 12:31:15 -0400650 if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick1 < ptick0)
651 || (pvec1 < pvec0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652 {
653 node->calls_since_last_overflow = ca0;
654 node->clocks_since_last_overflow = cl0;
655 node->vectors_since_last_overflow = v0;
Dave Barach4d1a8662018-09-10 12:31:15 -0400656 node->perf_counter_ticks_since_last_overflow = ptick0;
657 node->perf_counter_vectors_since_last_overflow = pvec0;
658
659 vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
660 n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 }
662
663 return r;
664}
665
Dave Barach4d1a8662018-09-10 12:31:15 -0400666static inline u64
667vlib_node_runtime_perf_counter (vlib_main_t * vm)
668{
669 if (PREDICT_FALSE (vm->vlib_node_runtime_perf_counter_cb != 0))
670 return ((*vm->vlib_node_runtime_perf_counter_cb) (vm));
671 return 0ULL;
672}
673
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674always_inline void
675vlib_process_update_stats (vlib_main_t * vm,
676 vlib_process_t * p,
Dave Barach4d1a8662018-09-10 12:31:15 -0400677 uword n_calls, uword n_vectors, uword n_clocks,
678 uword n_ticks)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679{
680 vlib_node_runtime_update_stats (vm, &p->node_runtime,
Dave Barach4d1a8662018-09-10 12:31:15 -0400681 n_calls, n_vectors, n_clocks, n_ticks);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682}
683
684static clib_error_t *
685vlib_cli_elog_clear (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400686 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687{
688 elog_reset_buffer (&vm->elog_main);
689 return 0;
690}
691
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693VLIB_CLI_COMMAND (elog_clear_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400694 .path = "event-logger clear",
695 .short_help = "Clear the event log",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 .function = vlib_cli_elog_clear,
697};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400698/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699
700#ifdef CLIB_UNIX
701static clib_error_t *
702elog_save_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 elog_main_t *em = &vm->elog_main;
706 char *file, *chroot_file;
707 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708
Dave Barach9b8ffd92016-07-08 08:13:45 -0400709 if (!unformat (input, "%s", &file))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 {
711 vlib_cli_output (vm, "expected file name, got `%U'",
712 format_unformat_error, input);
713 return 0;
714 }
715
716 /* It's fairly hard to get "../oopsie" through unformat; just in case */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400717 if (strstr (file, "..") || index (file, '/'))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718 {
719 vlib_cli_output (vm, "illegal characters in filename '%s'", file);
720 return 0;
721 }
722
723 chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
724
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 vec_free (file);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726
727 vlib_cli_output (vm, "Saving %wd of %wd events to %s",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 elog_n_events_in_buffer (em),
729 elog_buffer_capacity (em), chroot_file);
730
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 vlib_worker_thread_barrier_sync (vm);
Dave Barach903fd512017-04-01 11:07:40 -0400732 error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400733 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 vec_free (chroot_file);
735 return error;
736}
737
Dave Barach81481312017-05-16 09:08:14 -0400738void
739elog_post_mortem_dump (void)
740{
741 vlib_main_t *vm = &vlib_global_main;
742 elog_main_t *em = &vm->elog_main;
743 u8 *filename;
744 clib_error_t *error;
745
746 if (!vm->elog_post_mortem_dump)
747 return;
748
749 filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
750 error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
751 if (error)
752 clib_error_report (error);
753 vec_free (filename);
754}
755
Dave Barach9b8ffd92016-07-08 08:13:45 -0400756/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757VLIB_CLI_COMMAND (elog_save_cli, static) = {
Dave Barache5389bb2016-03-28 17:12:19 -0400758 .path = "event-logger save",
759 .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700760 .function = elog_save_buffer,
761};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400762/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763
Dave Barache5389bb2016-03-28 17:12:19 -0400764static clib_error_t *
765elog_stop (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400766 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400767{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400769
770 em->n_total_events_disable_limit = em->n_total_events;
771
772 vlib_cli_output (vm, "Stopped the event logger...");
773 return 0;
774}
775
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400777VLIB_CLI_COMMAND (elog_stop_cli, static) = {
778 .path = "event-logger stop",
779 .short_help = "Stop the event-logger",
780 .function = elog_stop,
781};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400783
784static clib_error_t *
785elog_restart (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400786 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400787{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400789
790 em->n_total_events_disable_limit = ~0;
791
792 vlib_cli_output (vm, "Restarted the event logger...");
793 return 0;
794}
795
Dave Barach9b8ffd92016-07-08 08:13:45 -0400796/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400797VLIB_CLI_COMMAND (elog_restart_cli, static) = {
798 .path = "event-logger restart",
799 .short_help = "Restart the event-logger",
800 .function = elog_restart,
801};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400803
804static clib_error_t *
805elog_resize (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barache5389bb2016-03-28 17:12:19 -0400807{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 elog_main_t *em = &vm->elog_main;
Dave Barache5389bb2016-03-28 17:12:19 -0400809 u32 tmp;
810
811 /* Stop the parade */
812 elog_reset_buffer (&vm->elog_main);
813
814 if (unformat (input, "%d", &tmp))
815 {
816 elog_alloc (em, tmp);
817 em->n_total_events_disable_limit = ~0;
818 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819 else
Dave Barache5389bb2016-03-28 17:12:19 -0400820 return clib_error_return (0, "Must specify how many events in the ring");
821
822 vlib_cli_output (vm, "Resized ring and restarted the event logger...");
823 return 0;
824}
825
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826/* *INDENT-OFF* */
Dave Barache5389bb2016-03-28 17:12:19 -0400827VLIB_CLI_COMMAND (elog_resize_cli, static) = {
828 .path = "event-logger resize",
829 .short_help = "event-logger resize <nnn>",
830 .function = elog_resize,
831};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832/* *INDENT-ON* */
Dave Barache5389bb2016-03-28 17:12:19 -0400833
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834#endif /* CLIB_UNIX */
835
Dave Barach9b8ffd92016-07-08 08:13:45 -0400836static void
837elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 elog_main_t *em = &vm->elog_main;
840 elog_event_t *e, *es;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 f64 dt;
842
843 /* Show events in VLIB time since log clock starts after VLIB clock. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400844 dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 * vm->clib_time.seconds_per_clock;
846
847 es = elog_peek_events (em);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400848 vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
849 em->event_ring_size,
850 em->n_total_events < em->n_total_events_disable_limit ?
851 "running" : "stopped");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852 vec_foreach (e, es)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400853 {
854 vlib_cli_output (vm, "%18.9f: %U",
855 e->time + dt, format_elog_event, em, e);
856 n_events_to_show--;
857 if (n_events_to_show == 0)
858 break;
859 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860 vec_free (es);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400861
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862}
863
864static clib_error_t *
865elog_show_buffer (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867{
868 u32 n_events_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870
871 n_events_to_show = 250;
872 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
873 {
874 if (unformat (input, "%d", &n_events_to_show))
875 ;
876 else if (unformat (input, "all"))
877 n_events_to_show = ~0;
878 else
879 return unformat_parse_error (input);
880 }
881 elog_show_buffer_internal (vm, n_events_to_show);
882 return error;
883}
884
Dave Barach9b8ffd92016-07-08 08:13:45 -0400885/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886VLIB_CLI_COMMAND (elog_show_cli, static) = {
887 .path = "show event-logger",
888 .short_help = "Show event logger info",
889 .function = elog_show_buffer,
890};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400891/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
Dave Barach9b8ffd92016-07-08 08:13:45 -0400893void
894vlib_gdb_show_event_log (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400896 elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897}
898
Dave Barachfb6e59d2016-03-26 18:45:42 -0400899static inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900vlib_elog_main_loop_event (vlib_main_t * vm,
901 u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400902 u64 time, u32 n_vectors, u32 is_return)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 vlib_main_t *evm = &vlib_global_main;
905 elog_main_t *em = &evm->elog_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
Dave Barachfb6e59d2016-03-26 18:45:42 -0400907 if (VLIB_ELOG_MAIN_LOOP && n_vectors)
908 elog_track (em,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400909 /* event type */
910 vec_elt_at_index (is_return
911 ? evm->node_return_elog_event_types
912 : evm->node_call_elog_event_types,
913 node_index),
914 /* track */
Damjan Marion586afd72017-04-05 19:18:20 +0200915 (vm->thread_index ? &vlib_worker_threads[vm->thread_index].
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 elog_track : &em->default_track),
917 /* data to log */ n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918}
919
Dave Barach7bee7732017-10-18 18:48:11 -0400920#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
921void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
922void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
923
Dave Barach9b8ffd92016-07-08 08:13:45 -0400924void
Dave Barach7bee7732017-10-18 18:48:11 -0400925vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926{
Dave Barach7bee7732017-10-18 18:48:11 -0400927 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 {
Dave Barach7bee7732017-10-18 18:48:11 -0400929 (*vlib_buffer_trace_trajectory_init_cb) (b);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930 }
931}
932
Dave Barach7bee7732017-10-18 18:48:11 -0400933#endif
934
935static inline void
936add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
937{
938#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
939 if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
940 {
941 (*vlib_buffer_trace_trajectory_cb) (b, node_index);
942 }
943#endif
944}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945
Damjan Marion9a332e12017-03-28 15:11:20 +0200946static_always_inline u64
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947dispatch_node (vlib_main_t * vm,
948 vlib_node_runtime_t * node,
949 vlib_node_type_t type,
950 vlib_node_state_t dispatch_state,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400951 vlib_frame_t * frame, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952{
953 uword n, v;
954 u64 t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400955 vlib_node_main_t *nm = &vm->node_main;
956 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957
958 if (CLIB_DEBUG > 0)
959 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400960 vlib_node_t *n = vlib_get_node (vm, node->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 ASSERT (n->type == type);
962 }
963
964 /* Only non-internal nodes may be disabled. */
965 if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
966 {
967 ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
968 return last_time_stamp;
969 }
970
971 if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
972 && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
973 {
974 u32 c = node->input_main_loops_per_call;
975 /* Only call node when count reaches zero. */
976 if (c)
977 {
978 node->input_main_loops_per_call = c - 1;
979 return last_time_stamp;
980 }
981 }
982
983 /* Speculatively prefetch next frames. */
984 if (node->n_next_nodes > 0)
985 {
986 nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
987 CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
988 }
989
990 vm->cpu_time_last_node_dispatch = last_time_stamp;
991
Damjan Marion586afd72017-04-05 19:18:20 +0200992 if (1 /* || vm->thread_index == node->thread_index */ )
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993 {
Dave Barach4d1a8662018-09-10 12:31:15 -0400994 u64 pmc_before, pmc_delta;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995
996 vlib_elog_main_loop_event (vm, node->node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400997 last_time_stamp,
998 frame ? frame->n_vectors : 0,
999 /* is_after */ 0);
1000
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001 /*
Dave Barach4d1a8662018-09-10 12:31:15 -04001002 * To validate accounting: pmc_before = last_time_stamp
1003 * perf ticks should equal clocks/pkt...
1004 */
1005 pmc_before = vlib_node_runtime_perf_counter (vm);
1006
1007 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001008 * Turn this on if you run into
1009 * "bad monkey" contexts, and you want to know exactly
1010 * which nodes they've visited... See ixge.c...
1011 */
1012 if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001013 {
1014 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001015 u32 *from;
1016 from = vlib_frame_vector_args (frame);
1017 for (i = 0; i < frame->n_vectors; i++)
1018 {
1019 vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
Dave Barach7bee7732017-10-18 18:48:11 -04001020 add_trajectory_trace (b, node->node_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001021 }
1022 n = node->function (vm, node, frame);
1023 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001025 n = node->function (vm, node, frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026
1027 t = clib_cpu_time_now ();
1028
Dave Barach4d1a8662018-09-10 12:31:15 -04001029 /*
1030 * To validate accounting: pmc_delta = t - pmc_before;
1031 * perf ticks should equal clocks/pkt...
1032 */
1033 pmc_delta = vlib_node_runtime_perf_counter (vm) - pmc_before;
1034
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 vlib_elog_main_loop_event (vm, node->node_index, t, n, /* is_after */
1036 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037
1038 vm->main_loop_vectors_processed += n;
1039 vm->main_loop_nodes_processed += n > 0;
1040
Dave Barach4d1a8662018-09-10 12:31:15 -04001041 v = vlib_node_runtime_update_stats (vm, node,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001042 /* n_calls */ 1,
1043 /* n_vectors */ n,
Dave Barach4d1a8662018-09-10 12:31:15 -04001044 /* n_clocks */ t - last_time_stamp,
1045 pmc_delta /* PMC ticks */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046
1047 /* When in interrupt mode and vector rate crosses threshold switch to
1048 polling mode. */
Damjan Marion878c6092017-01-04 13:19:27 +01001049 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1050 || (dispatch_state == VLIB_NODE_STATE_POLLING
Dave Barach9b8ffd92016-07-08 08:13:45 -04001051 && (node->flags
1052 & VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE)))
1053 {
Steven6aa75af2017-02-24 10:03:22 -08001054#ifdef DISPATCH_NODE_ELOG_REQUIRED
Dave Barach9b8ffd92016-07-08 08:13:45 -04001055 ELOG_TYPE_DECLARE (e) =
1056 {
1057 .function = (char *) __FUNCTION__,.format =
1058 "%s vector length %d, switching to %s",.format_args =
1059 "T4i4t4",.n_enum_strings = 2,.enum_strings =
1060 {
1061 "interrupt", "polling",},};
1062 struct
1063 {
1064 u32 node_name, vector_length, is_polling;
1065 } *ed;
Damjan Marion586afd72017-04-05 19:18:20 +02001066 vlib_worker_thread_t *w = vlib_worker_threads + vm->thread_index;
Steven6aa75af2017-02-24 10:03:22 -08001067#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068
Steven7312cc72017-03-15 21:18:55 -07001069 if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1070 && v >= nm->polling_threshold_vector_length) &&
1071 !(node->flags &
1072 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001073 {
1074 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1075 n->state = VLIB_NODE_STATE_POLLING;
1076 node->state = VLIB_NODE_STATE_POLLING;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001077 node->flags &=
1078 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1079 node->flags |=
1080 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1081 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1082 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083
Steven6aa75af2017-02-24 10:03:22 -08001084#ifdef DISPATCH_NODE_ELOG_REQUIRED
1085 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1086 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001087 ed->node_name = n->name_elog_string;
1088 ed->vector_length = v;
1089 ed->is_polling = 1;
Steven6aa75af2017-02-24 10:03:22 -08001090#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001091 }
1092 else if (dispatch_state == VLIB_NODE_STATE_POLLING
1093 && v <= nm->interrupt_threshold_vector_length)
1094 {
1095 vlib_node_t *n = vlib_get_node (vm, node->node_index);
1096 if (node->flags &
1097 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
1098 {
1099 /* Switch to interrupt mode after dispatch in polling one more time.
1100 This allows driver to re-enable interrupts. */
1101 n->state = VLIB_NODE_STATE_INTERRUPT;
1102 node->state = VLIB_NODE_STATE_INTERRUPT;
1103 node->flags &=
1104 ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1105 nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -=
1106 1;
1107 nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] +=
1108 1;
1109
1110 }
1111 else
1112 {
1113 node->flags |=
1114 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
Steven6aa75af2017-02-24 10:03:22 -08001115#ifdef DISPATCH_NODE_ELOG_REQUIRED
1116 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1117 w->elog_track);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001118 ed->node_name = n->name_elog_string;
1119 ed->vector_length = v;
1120 ed->is_polling = 0;
Steven6aa75af2017-02-24 10:03:22 -08001121#endif
Dave Barach9b8ffd92016-07-08 08:13:45 -04001122 }
1123 }
1124 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125 }
1126
1127 return t;
1128}
1129
Damjan Marion9a332e12017-03-28 15:11:20 +02001130static u64
Dave Baracha6269992017-06-07 08:18:49 -04001131dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1132 u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001134 vlib_node_main_t *nm = &vm->node_main;
1135 vlib_frame_t *f;
1136 vlib_next_frame_t *nf, nf_dummy;
1137 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138 u32 restore_frame_index;
Dave Baracha6269992017-06-07 08:18:49 -04001139 vlib_pending_frame_t *p;
1140
1141 /* See comment below about dangling references to nm->pending_frames */
1142 p = nm->pending_frames + pending_frame_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143
1144 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1145 p->node_runtime_index);
1146
1147 f = vlib_get_frame (vm, p->frame_index);
1148 if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1149 {
1150 /* No next frame: so use dummy on stack. */
1151 nf = &nf_dummy;
Damjan Marion633b6fd2018-09-14 14:38:53 +02001152 nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 nf->frame_index = ~p->frame_index;
1154 }
1155 else
1156 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1157
Damjan Marion633b6fd2018-09-14 14:38:53 +02001158 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159
1160 /* Force allocation of new frame while current frame is being
1161 dispatched. */
1162 restore_frame_index = ~0;
1163 if (nf->frame_index == p->frame_index)
1164 {
1165 nf->frame_index = ~0;
1166 nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001167 if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001168 restore_frame_index = p->frame_index;
1169 }
1170
1171 /* Frame must be pending. */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001172 ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001173 ASSERT (f->n_vectors > 0);
1174
1175 /* Copy trace flag from next frame to node.
1176 Trace flag indicates that at least one vector in the dispatched
1177 frame is traced. */
1178 n->flags &= ~VLIB_NODE_FLAG_TRACE;
1179 n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1180 nf->flags &= ~VLIB_FRAME_TRACE;
1181
1182 last_time_stamp = dispatch_node (vm, n,
1183 VLIB_NODE_TYPE_INTERNAL,
1184 VLIB_NODE_STATE_POLLING,
1185 f, last_time_stamp);
1186
Damjan Marion633b6fd2018-09-14 14:38:53 +02001187 f->frame_flags &= ~VLIB_FRAME_PENDING;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188
1189 /* Frame is ready to be used again, so restore it. */
1190 if (restore_frame_index != ~0)
1191 {
Dave Baracha6269992017-06-07 08:18:49 -04001192 /*
1193 * We musn't restore a frame that is flagged to be freed. This
1194 * shouldn't happen since frames to be freed post dispatch are
1195 * those used when the to-node frame becomes full i.e. they form a
1196 * sort of queue of frames to a single node. If we get here then
1197 * the to-node frame and the pending frame *were* the same, and so
1198 * we removed the to-node frame. Therefore this frame is no
1199 * longer part of the queue for that node and hence it cannot be
1200 * it's overspill.
Neale Ranns88170612016-11-22 08:29:51 +00001201 */
Damjan Marion633b6fd2018-09-14 14:38:53 +02001202 ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
Neale Ranns88170612016-11-22 08:29:51 +00001203
Dave Baracha6269992017-06-07 08:18:49 -04001204 /*
1205 * NB: dispatching node n can result in the creation and scheduling
1206 * of new frames, and hence in the reallocation of nm->pending_frames.
1207 * Recompute p, or no supper. This was broken for more than 10 years.
1208 */
1209 p = nm->pending_frames + pending_frame_index;
1210
1211 /*
1212 * p->next_frame_index can change during node dispatch if node
1213 * function decides to change graph hook up.
1214 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215 nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001216 nf->flags |= VLIB_FRAME_IS_ALLOCATED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217
Neale Ranns88170612016-11-22 08:29:51 +00001218 if (~0 == nf->frame_index)
1219 {
1220 /* no new frame has been assigned to this node, use the saved one */
1221 nf->frame_index = restore_frame_index;
1222 f->n_vectors = 0;
1223 }
1224 else
1225 {
1226 /* The node has gained a frame, implying packets from the current frame
1227 were re-queued to this same node. we don't need the saved one
1228 anymore */
1229 vlib_frame_free (vm, n, f);
1230 }
1231 }
1232 else
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 {
Damjan Marion633b6fd2018-09-14 14:38:53 +02001234 if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
Neale Ranns88170612016-11-22 08:29:51 +00001235 {
1236 ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1237 vlib_frame_free (vm, n, f);
1238 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239 }
1240
1241 return last_time_stamp;
1242}
1243
1244always_inline uword
1245vlib_process_stack_is_valid (vlib_process_t * p)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001246{
1247 return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1248}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249
Dave Barach9b8ffd92016-07-08 08:13:45 -04001250typedef struct
1251{
1252 vlib_main_t *vm;
1253 vlib_process_t *process;
1254 vlib_frame_t *frame;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001255} vlib_process_bootstrap_args_t;
1256
1257/* Called in process stack. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001258static uword
1259vlib_process_bootstrap (uword _a)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001261 vlib_process_bootstrap_args_t *a;
1262 vlib_main_t *vm;
1263 vlib_node_runtime_t *node;
1264 vlib_frame_t *f;
1265 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266 uword n;
1267
1268 a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1269
1270 vm = a->vm;
1271 p = a->process;
1272 f = a->frame;
1273 node = &p->node_runtime;
1274
1275 n = node->function (vm, node, f);
1276
1277 ASSERT (vlib_process_stack_is_valid (p));
1278
1279 clib_longjmp (&p->return_longjmp, n);
1280
1281 return n;
1282}
1283
1284/* Called in main stack. */
1285static_always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001286vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287{
1288 vlib_process_bootstrap_args_t a;
1289 uword r;
1290
1291 a.vm = vm;
1292 a.process = p;
1293 a.frame = f;
1294
1295 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1296 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1297 r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1298 (void *) p->stack + (1 << p->log2_n_stack_bytes));
1299
1300 return r;
1301}
1302
1303static_always_inline uword
1304vlib_process_resume (vlib_process_t * p)
1305{
1306 uword r;
1307 p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1308 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1309 | VLIB_PROCESS_RESUME_PENDING);
1310 r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1311 if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1312 clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1313 return r;
1314}
1315
1316static u64
1317dispatch_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001318 vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001320 vlib_node_main_t *nm = &vm->node_main;
1321 vlib_node_runtime_t *node_runtime = &p->node_runtime;
1322 vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
Florin Corasfd542f12018-05-16 19:28:24 -07001323 u32 old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001324 u64 t;
1325 uword n_vectors, is_suspend;
1326
1327 if (node->state != VLIB_NODE_STATE_POLLING
1328 || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1329 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1330 return last_time_stamp;
1331
1332 p->flags |= VLIB_PROCESS_IS_RUNNING;
1333
1334 t = last_time_stamp;
1335 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1336 f ? f->n_vectors : 0, /* is_after */ 0);
1337
1338 /* Save away current process for suspend. */
Florin Corasfd542f12018-05-16 19:28:24 -07001339 old_process_index = nm->current_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 nm->current_process_index = node->runtime_index;
1341
1342 n_vectors = vlib_process_startup (vm, p, f);
1343
Florin Corasfd542f12018-05-16 19:28:24 -07001344 nm->current_process_index = old_process_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001345
1346 ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1347 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1348 if (is_suspend)
1349 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001350 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001351
1352 n_vectors = 0;
1353 pool_get (nm->suspended_process_frames, pf);
1354 pf->node_runtime_index = node->runtime_index;
1355 pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1356 pf->next_frame_index = ~0;
1357
1358 p->n_suspends += 1;
1359 p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1360
1361 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001362 {
1363 TWT (tw_timer_wheel) * tw =
1364 (TWT (tw_timer_wheel) *) nm->timing_wheel;
1365 p->stop_timer_handle =
1366 TW (tw_timer_start) (tw,
1367 vlib_timing_wheel_data_set_suspended_process
1368 (node->runtime_index) /* [sic] pool idex */ ,
1369 0 /* timer_id */ ,
1370 p->resume_clock_interval);
1371 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372 }
1373 else
1374 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1375
1376 t = clib_cpu_time_now ();
1377
Dave Barach9b8ffd92016-07-08 08:13:45 -04001378 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1379 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380
1381 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001382 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001383 /* n_vectors */ n_vectors,
Dave Barach4d1a8662018-09-10 12:31:15 -04001384 /* n_clocks */ t - last_time_stamp,
1385 /* pmc_ticks */ 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386
1387 return t;
1388}
1389
Dave Barach9b8ffd92016-07-08 08:13:45 -04001390void
1391vlib_start_process (vlib_main_t * vm, uword process_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001393 vlib_node_main_t *nm = &vm->node_main;
1394 vlib_process_t *p = vec_elt (nm->processes, process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395 dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1396}
1397
1398static u64
1399dispatch_suspended_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001400 uword process_index, u64 last_time_stamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001402 vlib_node_main_t *nm = &vm->node_main;
1403 vlib_node_runtime_t *node_runtime;
1404 vlib_node_t *node;
1405 vlib_frame_t *f;
1406 vlib_process_t *p;
1407 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408 u64 t, n_vectors, is_suspend;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001409
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410 t = last_time_stamp;
1411
1412 p = vec_elt (nm->processes, process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001413 if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001414 return last_time_stamp;
1415
1416 ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1417 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1418
Dave Barach9b8ffd92016-07-08 08:13:45 -04001419 pf =
1420 pool_elt_at_index (nm->suspended_process_frames,
1421 p->suspended_process_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422
1423 node_runtime = &p->node_runtime;
1424 node = vlib_get_node (vm, node_runtime->node_index);
1425 f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1426
Dave Barach9b8ffd92016-07-08 08:13:45 -04001427 vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1428 f ? f->n_vectors : 0, /* is_after */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001429
1430 /* Save away current process for suspend. */
1431 nm->current_process_index = node->runtime_index;
1432
1433 n_vectors = vlib_process_resume (p);
1434 t = clib_cpu_time_now ();
1435
1436 nm->current_process_index = ~0;
1437
1438 is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1439 if (is_suspend)
1440 {
1441 /* Suspend it again. */
1442 n_vectors = 0;
1443 p->n_suspends += 1;
1444 if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
Dave Barach5c20a012017-06-13 08:48:31 -04001445 {
1446 p->stop_timer_handle =
1447 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1448 vlib_timing_wheel_data_set_suspended_process
1449 (node->runtime_index) /* [sic] pool idex */ ,
1450 0 /* timer_id */ ,
1451 p->resume_clock_interval);
1452 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001453 }
1454 else
1455 {
1456 p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1457 p->suspended_process_frame_index = ~0;
1458 pool_put (nm->suspended_process_frames, pf);
1459 }
1460
1461 t = clib_cpu_time_now ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001462 vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1463 /* is_after */ 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001464
1465 vlib_process_update_stats (vm, p,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001466 /* n_calls */ !is_suspend,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467 /* n_vectors */ n_vectors,
Dave Barach4d1a8662018-09-10 12:31:15 -04001468 /* n_clocks */ t - last_time_stamp,
1469 /* pmc_ticks */ 0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001470
1471 return t;
1472}
1473
Dave Barach2877eee2017-12-15 12:22:57 -05001474void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1475void
1476vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1477{
1478}
1479
1480
Damjan Marione9d52d52017-03-09 15:42:26 +01001481static_always_inline void
1482vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001483{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001484 vlib_node_main_t *nm = &vm->node_main;
Damjan Marione9d52d52017-03-09 15:42:26 +01001485 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001486 uword i;
1487 u64 cpu_time_now;
Damjan Marione9d52d52017-03-09 15:42:26 +01001488 vlib_frame_queue_main_t *fqm;
Damjan Marion2c2b6402017-03-28 14:16:15 +02001489 u32 *last_node_runtime_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490
1491 /* Initialize pending node vector. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001492 if (is_main)
1493 {
1494 vec_resize (nm->pending_frames, 32);
1495 _vec_len (nm->pending_frames) = 0;
1496 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001497
1498 /* Mark time of main loop start. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001499 if (is_main)
1500 {
1501 cpu_time_now = vm->clib_time.last_cpu_time;
1502 vm->cpu_time_main_loop_start = cpu_time_now;
1503 }
1504 else
1505 cpu_time_now = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001506
Damjan Marion2c2b6402017-03-28 14:16:15 +02001507 /* Pre-allocate interupt runtime indices and lock. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001508 vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
Damjan Marion2c2b6402017-03-28 14:16:15 +02001509 vec_alloc (last_node_runtime_indices, 32);
1510 if (!is_main)
1511 clib_spinlock_init (&nm->pending_interrupt_lock);
1512
1513 /* Pre-allocate expired nodes. */
Steven7312cc72017-03-15 21:18:55 -07001514 if (!nm->polling_threshold_vector_length)
1515 nm->polling_threshold_vector_length = 10;
1516 if (!nm->interrupt_threshold_vector_length)
1517 nm->interrupt_threshold_vector_length = 5;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001518
Dave Barach4d1a8662018-09-10 12:31:15 -04001519 /* Make sure the performance monitor counter is disabled */
1520 vm->perf_counter_id = ~0;
1521
Ed Warnickecb9cada2015-12-08 15:45:58 -07001522 /* Start all processes. */
Damjan Marione9d52d52017-03-09 15:42:26 +01001523 if (is_main)
1524 {
1525 uword i;
Stevenf3b53642017-05-01 14:03:02 -07001526 nm->current_process_index = ~0;
Damjan Marione9d52d52017-03-09 15:42:26 +01001527 for (i = 0; i < vec_len (nm->processes); i++)
1528 cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1529 cpu_time_now);
1530 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531
1532 while (1)
1533 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001534 vlib_node_runtime_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001535
Dave Barach2877eee2017-12-15 12:22:57 -05001536 if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
1537 vl_api_send_pending_rpc_requests (vm);
1538
Damjan Marione9d52d52017-03-09 15:42:26 +01001539 if (!is_main)
1540 {
1541 vlib_worker_thread_barrier_check ();
1542 vec_foreach (fqm, tm->frame_queue_mains)
1543 vlib_frame_queue_dequeue (vm, fqm);
Dave Barach4d1a8662018-09-10 12:31:15 -04001544 if (PREDICT_FALSE (vm->worker_thread_main_loop_callback != 0))
1545 ((void (*)(vlib_main_t *)) vm->worker_thread_main_loop_callback)
1546 (vm);
Damjan Marione9d52d52017-03-09 15:42:26 +01001547 }
1548
Ed Warnickecb9cada2015-12-08 15:45:58 -07001549 /* Process pre-input nodes. */
Damjan Marionceab7882018-01-19 20:56:12 +01001550 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1551 cpu_time_now = dispatch_node (vm, n,
1552 VLIB_NODE_TYPE_PRE_INPUT,
1553 VLIB_NODE_STATE_POLLING,
1554 /* frame */ 0,
1555 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001556
1557 /* Next process input nodes. */
1558 vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1559 cpu_time_now = dispatch_node (vm, n,
1560 VLIB_NODE_TYPE_INPUT,
1561 VLIB_NODE_STATE_POLLING,
1562 /* frame */ 0,
1563 cpu_time_now);
1564
Damjan Marione9d52d52017-03-09 15:42:26 +01001565 if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001566 vm->queue_signal_callback (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001567
1568 /* Next handle interrupts. */
1569 {
Dave Barachd47c5092018-01-19 13:09:20 -05001570 /* unlocked read, for performance */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001571 uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1572 uword i;
Dave Barachd47c5092018-01-19 13:09:20 -05001573 if (PREDICT_FALSE (l > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001574 {
Damjan Marion2c2b6402017-03-28 14:16:15 +02001575 u32 *tmp;
1576 if (!is_main)
Dave Barachd47c5092018-01-19 13:09:20 -05001577 {
1578 clib_spinlock_lock (&nm->pending_interrupt_lock);
1579 /* Re-read w/ lock held, in case another thread added an item */
1580 l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1581 }
1582
Damjan Marion2c2b6402017-03-28 14:16:15 +02001583 tmp = nm->pending_interrupt_node_runtime_indices;
1584 nm->pending_interrupt_node_runtime_indices =
1585 last_node_runtime_indices;
1586 last_node_runtime_indices = tmp;
1587 _vec_len (last_node_runtime_indices) = 0;
1588 if (!is_main)
1589 clib_spinlock_unlock (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001590 for (i = 0; i < l; i++)
1591 {
1592 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
Damjan Marion2c2b6402017-03-28 14:16:15 +02001593 last_node_runtime_indices[i]);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001594 cpu_time_now =
1595 dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1596 VLIB_NODE_STATE_INTERRUPT,
1597 /* frame */ 0,
1598 cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001599 }
1600 }
1601 }
Dave Barache3248982018-08-14 13:47:58 -04001602 /* Input nodes may have added work to the pending vector.
1603 Process pending vector until there is nothing left.
1604 All pending vectors will be processed from input -> output. */
1605 for (i = 0; i < _vec_len (nm->pending_frames); i++)
1606 cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1607 /* Reset pending vector for next iteration. */
1608 _vec_len (nm->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001609
Damjan Marione9d52d52017-03-09 15:42:26 +01001610 if (is_main)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001611 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001612 /* Check if process nodes have expired from timing wheel. */
Dave Barach5c20a012017-06-13 08:48:31 -04001613 ASSERT (nm->data_from_advancing_timing_wheel != 0);
1614
1615 nm->data_from_advancing_timing_wheel =
1616 TW (tw_timer_expire_timers_vec)
1617 ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1618 nm->data_from_advancing_timing_wheel);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001619
Damjan Marione9d52d52017-03-09 15:42:26 +01001620 ASSERT (nm->data_from_advancing_timing_wheel != 0);
Dave Barach5c20a012017-06-13 08:48:31 -04001621
Damjan Marione9d52d52017-03-09 15:42:26 +01001622 if (PREDICT_FALSE
1623 (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001624 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001625 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001626
Damjan Marione9d52d52017-03-09 15:42:26 +01001627 for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1628 i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001629 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001630 u32 d = nm->data_from_advancing_timing_wheel[i];
1631 u32 di = vlib_timing_wheel_data_get_index (d);
1632
1633 if (vlib_timing_wheel_data_is_timed_event (d))
1634 {
1635 vlib_signal_timed_event_data_t *te =
1636 pool_elt_at_index (nm->signal_timed_event_data_pool,
1637 di);
1638 vlib_node_t *n =
1639 vlib_get_node (vm, te->process_node_index);
1640 vlib_process_t *p =
1641 vec_elt (nm->processes, n->runtime_index);
1642 void *data;
1643 data =
1644 vlib_process_signal_event_helper (nm, n, p,
1645 te->event_type_index,
1646 te->n_data_elts,
1647 te->n_data_elt_bytes);
1648 if (te->n_data_bytes < sizeof (te->inline_event_data))
1649 clib_memcpy (data, te->inline_event_data,
1650 te->n_data_bytes);
1651 else
1652 {
1653 clib_memcpy (data, te->event_data_as_vector,
1654 te->n_data_bytes);
1655 vec_free (te->event_data_as_vector);
1656 }
1657 pool_put (nm->signal_timed_event_data_pool, te);
1658 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001659 else
1660 {
Damjan Marione9d52d52017-03-09 15:42:26 +01001661 cpu_time_now = clib_cpu_time_now ();
1662 cpu_time_now =
1663 dispatch_suspended_process (vm, di, cpu_time_now);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001664 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001665 }
Damjan Marione9d52d52017-03-09 15:42:26 +01001666 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1667 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001668 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001669 vlib_increment_main_loop_counter (vm);
1670
1671 /* Record time stamp in case there are no enabled nodes and above
Dave Barach9b8ffd92016-07-08 08:13:45 -04001672 calls do not update time stamp. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001673 cpu_time_now = clib_cpu_time_now ();
1674 }
1675}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001676
Damjan Marione9d52d52017-03-09 15:42:26 +01001677static void
1678vlib_main_loop (vlib_main_t * vm)
1679{
1680 vlib_main_or_worker_loop (vm, /* is_main */ 1);
1681}
1682
1683void
1684vlib_worker_loop (vlib_main_t * vm)
1685{
1686 vlib_main_or_worker_loop (vm, /* is_main */ 0);
1687}
1688
Ed Warnickecb9cada2015-12-08 15:45:58 -07001689vlib_main_t vlib_global_main;
1690
1691static clib_error_t *
1692vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1693{
1694 int turn_on_mem_trace = 0;
1695
1696 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1697 {
1698 if (unformat (input, "memory-trace"))
1699 turn_on_mem_trace = 1;
1700
1701 else if (unformat (input, "elog-events %d",
1702 &vm->elog_main.event_ring_size))
1703 ;
Dave Barach81481312017-05-16 09:08:14 -04001704 else if (unformat (input, "elog-post-mortem-dump"))
1705 vm->elog_post_mortem_dump = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001706 else
1707 return unformat_parse_error (input);
1708 }
1709
1710 unformat_free (input);
1711
1712 /* Enable memory trace as early as possible. */
1713 if (turn_on_mem_trace)
1714 clib_mem_trace (1);
1715
1716 return 0;
1717}
1718
1719VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1720
Dave Barach9b8ffd92016-07-08 08:13:45 -04001721static void
1722dummy_queue_signal_callback (vlib_main_t * vm)
1723{
1724}
Dave Barach16c75df2016-05-31 14:05:46 -04001725
Dave Barach1f806582018-06-14 09:18:21 -04001726#define foreach_weak_reference_stub \
1727_(vlib_map_stat_segment_init) \
1728_(vpe_api_init) \
1729_(vlibmemory_init) \
1730_(map_api_segment_init)
1731
1732#define _(name) \
1733clib_error_t *name (vlib_main_t *vm) __attribute__((weak)); \
1734clib_error_t *name (vlib_main_t *vm) { return 0; }
1735foreach_weak_reference_stub;
1736#undef _
1737
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738/* Main function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001739int
Eyal Barid334a6b2016-09-19 10:23:39 +03001740vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001741{
Eyal Barid334a6b2016-09-19 10:23:39 +03001742 clib_error_t *volatile error;
Dave Barach5c20a012017-06-13 08:48:31 -04001743 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001744
Dave Barach16c75df2016-05-31 14:05:46 -04001745 vm->queue_signal_callback = dummy_queue_signal_callback;
1746
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747 clib_time_init (&vm->clib_time);
1748
1749 /* Turn on event log. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001750 if (!vm->elog_main.event_ring_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001751 vm->elog_main.event_ring_size = 128 << 10;
1752 elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
1753 elog_enable_disable (&vm->elog_main, 1);
1754
1755 /* Default name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001756 if (!vm->name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001757 vm->name = "VLIB";
1758
Damjan Marion68b4da62018-09-30 18:26:20 +02001759 if ((error = vlib_physmem_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001760 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001761 clib_error_report (error);
1762 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001763 }
Damjan Marion49d66f12017-07-20 18:10:35 +02001764
1765 if ((error = vlib_buffer_main_init (vm)))
Damjan Marion04a7f052017-07-10 15:06:17 +02001766 {
Damjan Marion49d66f12017-07-20 18:10:35 +02001767 clib_error_report (error);
1768 goto done;
Damjan Marion04a7f052017-07-10 15:06:17 +02001769 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001770
1771 if ((error = vlib_thread_init (vm)))
1772 {
1773 clib_error_report (error);
1774 goto done;
1775 }
1776
Dave Barach1f806582018-06-14 09:18:21 -04001777 if ((error = vlib_map_stat_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001778 {
1779 clib_error_report (error);
1780 goto done;
1781 }
1782
Ed Warnickecb9cada2015-12-08 15:45:58 -07001783 /* Register static nodes so that init functions may use them. */
1784 vlib_register_all_static_nodes (vm);
1785
1786 /* Set seed for random number generator.
1787 Allow user to specify seed to make random sequence deterministic. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001788 if (!unformat (input, "seed %wd", &vm->random_seed))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001789 vm->random_seed = clib_cpu_time_now ();
1790 clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1791
Ed Warnickecb9cada2015-12-08 15:45:58 -07001792 /* Initialize node graph. */
1793 if ((error = vlib_node_main_init (vm)))
1794 {
1795 /* Arrange for graph hook up error to not be fatal when debugging. */
1796 if (CLIB_DEBUG > 0)
1797 clib_error_report (error);
1798 else
1799 goto done;
1800 }
1801
Dave Barach1f806582018-06-14 09:18:21 -04001802 /* Direct call / weak reference, for vlib standalone use-cases */
1803 if ((error = vpe_api_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001804 {
1805 clib_error_report (error);
1806 goto done;
1807 }
1808
Dave Barach1f806582018-06-14 09:18:21 -04001809 if ((error = vlibmemory_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001810 {
1811 clib_error_report (error);
1812 goto done;
1813 }
1814
Dave Barach1f806582018-06-14 09:18:21 -04001815 if ((error = map_api_segment_init (vm)))
Dave Barach048a4e52018-06-01 18:52:25 -04001816 {
1817 clib_error_report (error);
1818 goto done;
1819 }
1820
Ole Troan964f93e2016-06-10 13:22:36 +02001821 /* See unix/main.c; most likely already set up */
1822 if (vm->init_functions_called == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001823 vm->init_functions_called = hash_create (0, /* value bytes */ 0);
Ole Troan964f93e2016-06-10 13:22:36 +02001824 if ((error = vlib_call_all_init_functions (vm)))
1825 goto done;
1826
Ed Warnickecb9cada2015-12-08 15:45:58 -07001827 /* Create default buffer free list. */
Damjan Mariond1274cb2018-03-13 21:32:17 +01001828 vlib_buffer_create_free_list (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES,
1829 "default");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001830
Dave Barach5c20a012017-06-13 08:48:31 -04001831 nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
1832 CLIB_CACHE_LINE_BYTES);
1833
1834 vec_validate (nm->data_from_advancing_timing_wheel, 10);
1835 _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1836
1837 /* Create the process timing wheel */
1838 TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1839 0 /* no callback */ ,
1840 10e-6 /* timer period 10us */ ,
1841 ~0 /* max expirations per call */ );
1842
Dave Barach2877eee2017-12-15 12:22:57 -05001843 vec_validate (vm->pending_rpc_requests, 0);
1844 _vec_len (vm->pending_rpc_requests) = 0;
1845
Ed Warnickecb9cada2015-12-08 15:45:58 -07001846 switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
1847 {
1848 case VLIB_MAIN_LOOP_EXIT_NONE:
1849 vm->main_loop_exit_set = 1;
1850 break;
1851
1852 case VLIB_MAIN_LOOP_EXIT_CLI:
1853 goto done;
1854
1855 default:
1856 error = vm->main_loop_error;
1857 goto done;
1858 }
1859
Dave Barach9b8ffd92016-07-08 08:13:45 -04001860 if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001861 goto done;
1862
1863 /* Call all main loop enter functions. */
1864 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001865 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001866 sub_error = vlib_call_all_main_loop_enter_functions (vm);
1867 if (sub_error)
1868 clib_error_report (sub_error);
1869 }
1870
1871 vlib_main_loop (vm);
1872
Dave Barach9b8ffd92016-07-08 08:13:45 -04001873done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001874 /* Call all exit functions. */
1875 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001876 clib_error_t *sub_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001877 sub_error = vlib_call_all_main_loop_exit_functions (vm);
1878 if (sub_error)
1879 clib_error_report (sub_error);
1880 }
1881
1882 if (error)
1883 clib_error_report (error);
1884
1885 return 0;
1886}
Dave Barach9b8ffd92016-07-08 08:13:45 -04001887
1888/*
1889 * fd.io coding-style-patch-verification: ON
1890 *
1891 * Local Variables:
1892 * eval: (c-set-style "gnu")
1893 * End:
1894 */