blob: c87400d440c3630173d1c0887ee08309a755fc65 [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 * node.c: VLIB processing nodes
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 <vlib/vlib.h>
41#include <vlib/threads.h>
42
43/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040044vlib_node_t *
45vlib_get_node_by_name (vlib_main_t * vm, u8 * name)
Ed Warnickecb9cada2015-12-08 15:45:58 -070046{
Dave Barach9b8ffd92016-07-08 08:13:45 -040047 vlib_node_main_t *nm = &vm->node_main;
48 uword *p;
49 u8 *key = name;
50 if (!clib_mem_is_heap_object (key))
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 key = format (0, "%s", key);
52 p = hash_get (nm->node_by_name, key);
53 if (key != name)
54 vec_free (key);
55 return p ? vec_elt (nm->nodes, p[0]) : 0;
56}
57
Dave Barach9b8ffd92016-07-08 08:13:45 -040058static void
59node_set_elog_name (vlib_main_t * vm, uword node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070060{
Dave Barach9b8ffd92016-07-08 08:13:45 -040061 vlib_node_t *n = vlib_get_node (vm, node_index);
62 elog_event_type_t *t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
64 t = vec_elt_at_index (vm->node_call_elog_event_types, node_index);
65 vec_free (t->format);
Dave Barachfb6e59d2016-03-26 18:45:42 -040066 t->format = (char *) format (0, "%v-call: %%d%c", n->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
68 t = vec_elt_at_index (vm->node_return_elog_event_types, node_index);
69 vec_free (t->format);
Dave Barachfb6e59d2016-03-26 18:45:42 -040070 t->format = (char *) format (0, "%v-return: %%d%c", n->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Dave Barach9b8ffd92016-07-08 08:13:45 -040072 n->name_elog_string = elog_string (&vm->elog_main, "%v%c", n->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073}
74
Igor Mikhailov (imichail)19e9d952017-07-03 17:01:50 -070075static void
76vlib_worker_thread_node_rename (u32 node_index)
77{
78 int i;
79 vlib_main_t *vm;
80 vlib_node_t *n;
81
82 if (vec_len (vlib_mains) == 1)
83 return;
84
85 vm = vlib_mains[0];
86 n = vlib_get_node (vm, node_index);
87
88 ASSERT (vlib_get_thread_index () == 0);
89 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
90
91 for (i = 1; i < vec_len (vlib_mains); i++)
92 {
93 vlib_main_t *vm_worker = vlib_mains[i];
94 vlib_node_t *n_worker = vlib_get_node (vm_worker, node_index);
95
96 n_worker->name = n->name;
97 n_worker->name_elog_string = n->name_elog_string;
98 }
99}
100
Dave Barach9b8ffd92016-07-08 08:13:45 -0400101void
102vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103{
104 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400105 vlib_node_main_t *nm = &vm->node_main;
106 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
108 va_start (va, fmt);
109 hash_unset (nm->node_by_name, n->name);
110 vec_free (n->name);
111 n->name = va_format (0, fmt, &va);
112 va_end (va);
113 hash_set (nm->node_by_name, n->name, n->index);
114
115 node_set_elog_name (vm, node_index);
Igor Mikhailov (imichail)19e9d952017-07-03 17:01:50 -0700116
117 /* Propagate the change to all worker threads */
118 vlib_worker_thread_node_rename (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119}
120
121static void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400122vlib_node_runtime_update (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400124 vlib_node_main_t *nm = &vm->node_main;
125 vlib_node_runtime_t *r, *s;
126 vlib_node_t *node, *next_node;
127 vlib_next_frame_t *nf;
128 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 i32 i, j, n_insert;
130
Damjan Marion586afd72017-04-05 19:18:20 +0200131 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Dave Barach9b8ffd92016-07-08 08:13:45 -0400133 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134
135 node = vec_elt (nm->nodes, node_index);
136 r = vlib_node_get_runtime (vm, node_index);
137
138 n_insert = vec_len (node->next_nodes) - r->n_next_nodes;
139 if (n_insert > 0)
140 {
141 i = r->next_frame_index + r->n_next_nodes;
142 vec_insert (nm->next_frames, n_insert, i);
143
144 /* Initialize newly inserted next frames. */
145 for (j = 0; j < n_insert; j++)
146 vlib_next_frame_init (nm->next_frames + i + j);
147
148 /* Relocate other next frames at higher indices. */
149 for (j = 0; j < vec_len (nm->nodes); j++)
150 {
151 s = vlib_node_get_runtime (vm, j);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400152 if (j != node_index && s->next_frame_index >= i)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 s->next_frame_index += n_insert;
154 }
155
156 /* Pending frames may need to be relocated also. */
157 vec_foreach (pf, nm->pending_frames)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 {
159 if (pf->next_frame_index != VLIB_PENDING_FRAME_NO_NEXT_FRAME
160 && pf->next_frame_index >= i)
161 pf->next_frame_index += n_insert;
162 }
163 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 pool_foreach (pf, nm->suspended_process_frames, ({
165 if (pf->next_frame_index != ~0 && pf->next_frame_index >= i)
166 pf->next_frame_index += n_insert;
167 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400168 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170 r->n_next_nodes = vec_len (node->next_nodes);
171 }
172
173 /* Set frame's node runtime index. */
174 next_node = vlib_get_node (vm, node->next_nodes[next_index]);
175 nf = nm->next_frames + r->next_frame_index + next_index;
176 nf->node_runtime_index = next_node->runtime_index;
177
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178 vlib_worker_thread_node_runtime_update ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181}
182
Neale Rannsbb620d72017-06-29 00:19:08 -0700183uword
184vlib_node_get_next (vlib_main_t * vm, uword node_index, uword next_node_index)
185{
186 vlib_node_main_t *nm = &vm->node_main;
187 vlib_node_t *node;
188 uword *p;
189
190 node = vec_elt (nm->nodes, node_index);
191
192 /* Runtime has to be initialized. */
193 ASSERT (nm->flags & VLIB_NODE_MAIN_RUNTIME_STARTED);
194
195 if ((p = hash_get (node->next_slot_by_node, next_node_index)))
196 {
197 return p[0];
198 }
199
200 return (~0);
201}
202
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203/* Add next node to given node in given slot. */
204uword
205vlib_node_add_next_with_slot (vlib_main_t * vm,
206 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400207 uword next_node_index, uword slot)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 vlib_node_main_t *nm = &vm->node_main;
210 vlib_node_t *node, *next;
211 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
213 node = vec_elt (nm->nodes, node_index);
214 next = vec_elt (nm->nodes, next_node_index);
215
Ole Troan964f93e2016-06-10 13:22:36 +0200216 /* Runtime has to be initialized. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400217 ASSERT (nm->flags & VLIB_NODE_MAIN_RUNTIME_STARTED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
219 if ((p = hash_get (node->next_slot_by_node, next_node_index)))
220 {
John Lo405e41b2016-04-23 15:14:12 -0400221 /* Next already exists: slot must match. */
222 if (slot != ~0)
223 ASSERT (slot == p[0]);
224 return p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 }
226
227 if (slot == ~0)
228 slot = vec_len (node->next_nodes);
229
230 vec_validate_init_empty (node->next_nodes, slot, ~0);
231 vec_validate (node->n_vectors_by_next_node, slot);
232
233 node->next_nodes[slot] = next_node_index;
John Lo405e41b2016-04-23 15:14:12 -0400234 hash_set (node->next_slot_by_node, next_node_index, slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
236 vlib_node_runtime_update (vm, node_index, slot);
237
238 next->prev_node_bitmap = clib_bitmap_ori (next->prev_node_bitmap,
239 node_index);
240
241 /* Siblings all get same node structure. */
242 {
243 uword sib_node_index, sib_slot;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400244 vlib_node_t *sib_node;
245 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 clib_bitmap_foreach (sib_node_index, node->sibling_bitmap, ({
247 sib_node = vec_elt (nm->nodes, sib_node_index);
248 if (sib_node != node)
249 {
250 sib_slot = vlib_node_add_next_with_slot (vm, sib_node_index, next_node_index, slot);
251 ASSERT (sib_slot == slot);
252 }
253 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400254 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 }
256
257 return slot;
258}
259
260/* Add named next node to given node in given slot. */
261uword
262vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 uword node, char *name, uword slot)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400265 vlib_node_main_t *nm;
266 vlib_node_t *n, *n_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
268 nm = &vm->node_main;
269 n = vlib_get_node (vm, node);
270
271 n_next = vlib_get_node_by_name (vm, (u8 *) name);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400272 if (!n_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273 {
274 if (nm->flags & VLIB_NODE_MAIN_RUNTIME_STARTED)
275 return ~0;
276
277 if (slot == ~0)
278 slot = clib_max (vec_len (n->next_node_names),
279 vec_len (n->next_nodes));
280 vec_validate (n->next_node_names, slot);
281 n->next_node_names[slot] = name;
282 return slot;
283 }
284
285 return vlib_node_add_next_with_slot (vm, node, n_next->index, slot);
286}
287
Dave Barach9b8ffd92016-07-08 08:13:45 -0400288static void
289node_elog_init (vlib_main_t * vm, uword ni)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290{
291 elog_event_type_t t;
292
Dave Barachb7b92992018-10-17 10:38:51 -0400293 clib_memset (&t, 0, sizeof (t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 /* 2 event types for this node: one when node function is called.
296 One when it returns. */
297 vec_validate (vm->node_call_elog_event_types, ni);
298 vm->node_call_elog_event_types[ni] = t;
299
300 vec_validate (vm->node_return_elog_event_types, ni);
301 vm->node_return_elog_event_types[ni] = t;
302
303 node_set_elog_name (vm, ni);
304}
305
306#ifdef CLIB_UNIX
Dave Barachbfdedbd2016-01-20 09:11:55 -0500307#define STACK_ALIGN (clib_mem_get_page_size())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308#else
309#define STACK_ALIGN CLIB_CACHE_LINE_BYTES
310#endif
311
Dave Barach9b8ffd92016-07-08 08:13:45 -0400312static void
313register_node (vlib_main_t * vm, vlib_node_registration_t * r)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315 vlib_node_main_t *nm = &vm->node_main;
316 vlib_node_t *n;
317 u32 page_size = clib_mem_get_page_size ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318 int i;
319
320 if (CLIB_DEBUG > 0)
321 {
322 /* Default (0) type should match INTERNAL. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323 vlib_node_t zero = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324 ASSERT (VLIB_NODE_TYPE_INTERNAL == zero.type);
325 }
326
Damjan Marion812b32d2018-05-28 21:26:47 +0200327 if (r->node_fn_registrations)
328 {
329 vlib_node_fn_registration_t *fnr = r->node_fn_registrations;
330 int priority = -1;
331
332 /* to avoid confusion, please remove ".function " statiement from
333 CLIB_NODE_REGISTRATION() if using function function candidates */
334 ASSERT (r->function == 0);
335
336 while (fnr)
337 {
338 if (fnr->priority > priority)
339 {
340 priority = fnr->priority;
341 r->function = fnr->function;
342 }
343 fnr = fnr->next_registration;
344 }
345 }
346
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 ASSERT (r->function != 0);
348
349 n = clib_mem_alloc_no_fail (sizeof (n[0]));
Dave Barachb7b92992018-10-17 10:38:51 -0400350 clib_memset (n, 0, sizeof (n[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 n->index = vec_len (nm->nodes);
Damjan Marion69abe442018-08-27 22:43:23 +0200352 n->node_fn_registrations = r->node_fn_registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
354 vec_add1 (nm->nodes, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400355
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 /* Name is always a vector so it can be formatted with %v. */
357 if (clib_mem_is_heap_object (vec_header (r->name, 0)))
358 n->name = vec_dup ((u8 *) r->name);
359 else
360 n->name = format (0, "%s", r->name);
361
Dave Barach9b8ffd92016-07-08 08:13:45 -0400362 if (!nm->node_by_name)
363 nm->node_by_name = hash_create_vec ( /* size */ 32,
364 sizeof (n->name[0]), sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
366 /* Node names must be unique. */
367 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368 vlib_node_t *o = vlib_get_node_by_name (vm, n->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 if (o)
370 clib_error ("more than one node named `%v'", n->name);
371 }
372
373 hash_set (nm->node_by_name, n->name, n->index);
374
375 r->index = n->index; /* save index in registration */
376 n->function = r->function;
377
378 /* Node index of next sibling will be filled in by vlib_node_main_init. */
379 n->sibling_of = r->sibling_of;
Ole Troan964f93e2016-06-10 13:22:36 +0200380 if (r->sibling_of && r->n_next_nodes > 0)
381 clib_error ("sibling node should not have any next nodes `%v'", n->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
383 if (r->type == VLIB_NODE_TYPE_INTERNAL)
384 ASSERT (r->vector_size > 0);
385
386#define _(f) n->f = r->f
387
Dave Barach9b8ffd92016-07-08 08:13:45 -0400388 _(type);
389 _(flags);
390 _(state);
391 _(scalar_size);
392 _(vector_size);
393 _(format_buffer);
394 _(unformat_buffer);
395 _(format_trace);
396 _(validate_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
398 /* Register error counters. */
399 vlib_register_errors (vm, n->index, r->n_errors, r->error_strings);
400 node_elog_init (vm, n->index);
401
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402 _(runtime_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 if (r->runtime_data_bytes > 0)
404 {
405 vec_resize (n->runtime_data, r->runtime_data_bytes);
406 if (r->runtime_data)
Damjan Marionf1213b82016-03-13 02:22:06 +0100407 clib_memcpy (n->runtime_data, r->runtime_data, r->runtime_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 }
409
410 vec_resize (n->next_node_names, r->n_next_nodes);
411 for (i = 0; i < r->n_next_nodes; i++)
412 n->next_node_names[i] = r->next_nodes[i];
413
414 vec_validate_init_empty (n->next_nodes, r->n_next_nodes - 1, ~0);
415 vec_validate (n->n_vectors_by_next_node, r->n_next_nodes - 1);
416
417 n->owner_node_index = n->owner_next_index = ~0;
418
419 /* Initialize node runtime. */
420 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400421 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 u32 i;
423
424 if (n->type == VLIB_NODE_TYPE_PROCESS)
425 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400426 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427 uword log2_n_stack_bytes;
428
429 log2_n_stack_bytes = clib_max (r->process_log2_n_stack_bytes, 15);
430
Dave Barachbfdedbd2016-01-20 09:11:55 -0500431#ifdef CLIB_UNIX
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432 /*
433 * Bump the stack size if running over a kernel with a large page size,
434 * and the stack isn't any too big to begin with. Otherwise, we'll
435 * trip over the stack guard page for sure.
436 */
437 if ((page_size > (4 << 10)) && log2_n_stack_bytes < 19)
438 {
439 if ((1 << log2_n_stack_bytes) <= page_size)
440 log2_n_stack_bytes = min_log2 (page_size) + 1;
441 else
442 log2_n_stack_bytes++;
443 }
Dave Barachbfdedbd2016-01-20 09:11:55 -0500444#endif
445
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 p = clib_mem_alloc_aligned_at_offset
447 (sizeof (p[0]) + (1 << log2_n_stack_bytes),
Dave Barach241e5222016-10-13 10:53:26 -0400448 STACK_ALIGN, STRUCT_OFFSET_OF (vlib_process_t, stack),
449 0 /* no, don't call os_out_of_memory */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400450 if (p == 0)
451 clib_panic ("failed to allocate process stack (%d bytes)",
452 1 << log2_n_stack_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
Dave Barachb7b92992018-10-17 10:38:51 -0400454 clib_memset (p, 0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 p->log2_n_stack_bytes = log2_n_stack_bytes;
456
457 /* Process node's runtime index is really index into process
458 pointer vector. */
459 n->runtime_index = vec_len (nm->processes);
460
461 vec_add1 (nm->processes, p);
462
463 /* Paint first stack word with magic number so we can at least
464 detect process stack overruns. */
465 p->stack[0] = VLIB_PROCESS_STACK_MAGIC;
466
467 /* Node runtime is stored inside of process. */
468 rt = &p->node_runtime;
469
470#ifdef CLIB_UNIX
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471 /*
472 * Disallow writes to the bottom page of the stack, to
473 * catch stack overflows.
474 */
475 if (mprotect (p->stack, page_size, PROT_READ) < 0)
476 clib_unix_warning ("process stack");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477#endif
478
479 }
480 else
481 {
482 vec_add2_aligned (nm->nodes_by_type[n->type], rt, 1,
483 /* align */ CLIB_CACHE_LINE_BYTES);
484 n->runtime_index = rt - nm->nodes_by_type[n->type];
485 }
486
487 if (n->type == VLIB_NODE_TYPE_INPUT)
488 nm->input_node_counts_by_state[n->state] += 1;
489
490 rt->function = n->function;
491 rt->flags = n->flags;
492 rt->state = n->state;
493 rt->node_index = n->index;
494
495 rt->n_next_nodes = r->n_next_nodes;
496 rt->next_frame_index = vec_len (nm->next_frames);
497
498 vec_resize (nm->next_frames, rt->n_next_nodes);
499 for (i = 0; i < rt->n_next_nodes; i++)
500 vlib_next_frame_init (nm->next_frames + rt->next_frame_index + i);
501
502 vec_resize (rt->errors, r->n_errors);
503 for (i = 0; i < vec_len (rt->errors); i++)
504 rt->errors[i] = vlib_error_set (n->index, i);
505
Christophe Fontaine33e81952016-12-19 14:41:52 +0100506 STATIC_ASSERT_SIZEOF (vlib_node_runtime_t, 128);
Damjan Marione9f929b2017-03-16 11:32:09 +0100507 ASSERT (vec_len (n->runtime_data) <= VLIB_NODE_RUNTIME_DATA_SIZE);
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100508
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 if (vec_len (n->runtime_data) > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 clib_memcpy (rt->runtime_data, n->runtime_data,
511 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
513 vec_free (n->runtime_data);
514 }
515}
516
517/* Register new packet processing node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400518u32
519vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520{
521 register_node (vm, r);
522 return r->index;
523}
524
Damjan Mariond4798a32016-09-06 22:26:03 +0200525static uword
526null_node_fn (vlib_main_t * vm,
527 vlib_node_runtime_t * node, vlib_frame_t * frame)
528{
529 u16 n_vectors = frame->n_vectors;
530
531 vlib_node_increment_counter (vm, node->node_index, 0, n_vectors);
532 vlib_buffer_free (vm, vlib_frame_args (frame), n_vectors);
533 vlib_frame_free (vm, node, frame);
534
535 return n_vectors;
536}
537
Dave Barach9b8ffd92016-07-08 08:13:45 -0400538void
539vlib_register_all_static_nodes (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400541 vlib_node_registration_t *r;
542
Damjan Mariond4798a32016-09-06 22:26:03 +0200543 static char *null_node_error_strings[] = {
544 "blackholed packets",
545 };
546
547 static vlib_node_registration_t null_node_reg = {
548 .function = null_node_fn,
549 .vector_size = sizeof (u32),
550 .name = "null-node",
551 .n_errors = 1,
552 .error_strings = null_node_error_strings,
553 };
554
555 /* make sure that node index 0 is not used by
556 real node */
557 register_node (vm, &null_node_reg);
558
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 r = vm->node_main.node_registrations;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560 while (r)
561 {
562 register_node (vm, r);
563 r = r->next_registration;
564 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565}
566
Dave Barach1ddbc012018-06-13 09:26:05 -0400567void
568vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
569 int barrier_sync, vlib_node_t **** node_dupsp,
570 vlib_main_t *** stat_vmsp)
Florin Corase86a8ed2018-01-05 03:20:25 -0800571{
572 vlib_node_main_t *nm = &vm->node_main;
573 vlib_node_t *n;
Dave Barach1ddbc012018-06-13 09:26:05 -0400574 vlib_node_t ***node_dups = *node_dupsp;
Florin Corase86a8ed2018-01-05 03:20:25 -0800575 vlib_node_t **nodes;
Dave Barach1ddbc012018-06-13 09:26:05 -0400576 vlib_main_t **stat_vms = *stat_vmsp;
Florin Corase86a8ed2018-01-05 03:20:25 -0800577 vlib_main_t *stat_vm;
578 uword i, j;
579 u32 threads_to_serialize;
580
Florin Corase86a8ed2018-01-05 03:20:25 -0800581 if (vec_len (stat_vms) == 0)
582 {
583 for (i = 0; i < vec_len (vlib_mains); i++)
584 {
585 stat_vm = vlib_mains[i];
586 if (stat_vm)
587 vec_add1 (stat_vms, stat_vm);
588 }
589 }
590
591 threads_to_serialize = clib_min (max_threads, vec_len (stat_vms));
592
Dave Barach1ddbc012018-06-13 09:26:05 -0400593 vec_validate (node_dups, threads_to_serialize - 1);
594
Florin Corase86a8ed2018-01-05 03:20:25 -0800595 /*
596 * Barrier sync across stats scraping.
597 * Otherwise, the counts will be grossly inaccurate.
598 */
Dave Barach1ddbc012018-06-13 09:26:05 -0400599 if (barrier_sync)
600 vlib_worker_thread_barrier_sync (vm);
Florin Corase86a8ed2018-01-05 03:20:25 -0800601
602 for (j = 0; j < threads_to_serialize; j++)
603 {
604 stat_vm = stat_vms[j];
605 nm = &stat_vm->node_main;
606
607 if (include_stats)
608 {
609 for (i = 0; i < vec_len (nm->nodes); i++)
610 {
611 n = nm->nodes[i];
612 vlib_node_sync_stats (stat_vm, n);
613 }
614 }
615
Dave Barach1ddbc012018-06-13 09:26:05 -0400616 nodes = node_dups[j];
617 vec_validate (nodes, vec_len (nm->nodes) - 1);
618 clib_memcpy (nodes, nm->nodes, vec_len (nm->nodes) * sizeof (nodes[0]));
619 node_dups[j] = nodes;
Florin Corase86a8ed2018-01-05 03:20:25 -0800620 }
Florin Corase86a8ed2018-01-05 03:20:25 -0800621
Dave Barach1ddbc012018-06-13 09:26:05 -0400622 if (barrier_sync)
623 vlib_worker_thread_barrier_release (vm);
624
625 *node_dupsp = node_dups;
626 *stat_vmsp = stat_vms;
Florin Corase86a8ed2018-01-05 03:20:25 -0800627}
628
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629clib_error_t *
630vlib_node_main_init (vlib_main_t * vm)
631{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400632 vlib_node_main_t *nm = &vm->node_main;
633 clib_error_t *error = 0;
634 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 uword ni;
636
Florin Coras93992a92017-05-24 18:03:56 -0700637 nm->frame_size_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 nm->flags |= VLIB_NODE_MAIN_RUNTIME_STARTED;
639
Ole Troan964f93e2016-06-10 13:22:36 +0200640 /* Generate sibling relationships */
641 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 vlib_node_t *n, *sib;
Ole Troan964f93e2016-06-10 13:22:36 +0200643 uword si;
644
645 for (ni = 0; ni < vec_len (nm->nodes); ni++)
646 {
647 n = vec_elt (nm->nodes, ni);
648
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649 if (!n->sibling_of)
Ole Troan964f93e2016-06-10 13:22:36 +0200650 continue;
651
652 sib = vlib_get_node_by_name (vm, (u8 *) n->sibling_of);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653 if (!sib)
Ed Warnicke853e7202016-08-12 11:42:26 -0700654 {
655 error = clib_error_create ("sibling `%s' not found for node `%v'",
656 n->sibling_of, n->name);
657 goto done;
658 }
Ole Troan964f93e2016-06-10 13:22:36 +0200659
Dave Barach9b8ffd92016-07-08 08:13:45 -0400660 /* *INDENT-OFF* */
Ole Troan964f93e2016-06-10 13:22:36 +0200661 clib_bitmap_foreach (si, sib->sibling_bitmap, ({
662 vlib_node_t * m = vec_elt (nm->nodes, si);
663
664 /* Connect all of sibling's siblings to us. */
665 m->sibling_bitmap = clib_bitmap_ori (m->sibling_bitmap, n->index);
666
667 /* Connect us to all of sibling's siblings. */
668 n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, si);
669 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670 /* *INDENT-ON* */
Ole Troan964f93e2016-06-10 13:22:36 +0200671
672 /* Connect sibling to us. */
673 sib->sibling_bitmap = clib_bitmap_ori (sib->sibling_bitmap, n->index);
674
675 /* Connect us to sibling. */
676 n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, sib->index);
677 }
678 }
679
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680 /* Resolve next names into next indices. */
681 for (ni = 0; ni < vec_len (nm->nodes); ni++)
682 {
683 uword i;
684
685 n = vec_elt (nm->nodes, ni);
686
687 for (i = 0; i < vec_len (n->next_node_names); i++)
688 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689 char *a = n->next_node_names[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691 if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 continue;
693
694 if (~0 == vlib_node_add_named_next_with_slot (vm, n->index, a, i))
695 {
696 error = clib_error_create
697 ("node `%v' refers to unknown node `%s'", n->name, a);
698 goto done;
699 }
700 }
701
702 vec_free (n->next_node_names);
703 }
704
705 /* Set previous node pointers. */
706 for (ni = 0; ni < vec_len (nm->nodes); ni++)
707 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400708 vlib_node_t *n_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 uword i;
710
711 n = vec_elt (nm->nodes, ni);
712
713 for (i = 0; i < vec_len (n->next_nodes); i++)
714 {
715 if (n->next_nodes[i] >= vec_len (nm->nodes))
716 continue;
717
718 n_next = vec_elt (nm->nodes, n->next_nodes[i]);
719 n_next->prev_node_bitmap =
720 clib_bitmap_ori (n_next->prev_node_bitmap, n->index);
721 }
722 }
723
724 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 vlib_next_frame_t *nf;
726 vlib_node_runtime_t *r;
727 vlib_node_t *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728 uword i;
729
730 vec_foreach (r, nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 {
732 if (r->n_next_nodes == 0)
733 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734
Dave Barach9b8ffd92016-07-08 08:13:45 -0400735 n = vlib_get_node (vm, r->node_index);
736 nf = vec_elt_at_index (nm->next_frames, r->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738 for (i = 0; i < vec_len (n->next_nodes); i++)
739 {
740 next = vlib_get_node (vm, n->next_nodes[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741
Dave Barach9b8ffd92016-07-08 08:13:45 -0400742 /* Validate node runtime indices are correctly initialized. */
743 ASSERT (nf[i].node_runtime_index == next->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 nf[i].flags = 0;
746 if (next->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH)
747 nf[i].flags |= VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
748 }
749 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750 }
751
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753 return error;
754}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400755
756/*
757 * fd.io coding-style-patch-verification: ON
758 *
759 * Local Variables:
760 * eval: (c-set-style "gnu")
761 * End:
762 */