blob: eecad2747ba7bdbf75ac1487eb00efc5c4d042ed [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
Dave Barach9b8ffd92016-07-08 08:13:45 -040075void
76vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...)
Ed Warnickecb9cada2015-12-08 15:45:58 -070077{
78 va_list va;
Dave Barach9b8ffd92016-07-08 08:13:45 -040079 vlib_node_main_t *nm = &vm->node_main;
80 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 va_start (va, fmt);
83 hash_unset (nm->node_by_name, n->name);
84 vec_free (n->name);
85 n->name = va_format (0, fmt, &va);
86 va_end (va);
87 hash_set (nm->node_by_name, n->name, n->index);
88
89 node_set_elog_name (vm, node_index);
90}
91
92static void
Dave Barach9b8ffd92016-07-08 08:13:45 -040093vlib_node_runtime_update (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070094{
Dave Barach9b8ffd92016-07-08 08:13:45 -040095 vlib_node_main_t *nm = &vm->node_main;
96 vlib_node_runtime_t *r, *s;
97 vlib_node_t *node, *next_node;
98 vlib_next_frame_t *nf;
99 vlib_pending_frame_t *pf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 i32 i, j, n_insert;
101
Damjan Marion586afd72017-04-05 19:18:20 +0200102 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
Dave Barach9b8ffd92016-07-08 08:13:45 -0400104 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 node = vec_elt (nm->nodes, node_index);
107 r = vlib_node_get_runtime (vm, node_index);
108
109 n_insert = vec_len (node->next_nodes) - r->n_next_nodes;
110 if (n_insert > 0)
111 {
112 i = r->next_frame_index + r->n_next_nodes;
113 vec_insert (nm->next_frames, n_insert, i);
114
115 /* Initialize newly inserted next frames. */
116 for (j = 0; j < n_insert; j++)
117 vlib_next_frame_init (nm->next_frames + i + j);
118
119 /* Relocate other next frames at higher indices. */
120 for (j = 0; j < vec_len (nm->nodes); j++)
121 {
122 s = vlib_node_get_runtime (vm, j);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400123 if (j != node_index && s->next_frame_index >= i)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 s->next_frame_index += n_insert;
125 }
126
127 /* Pending frames may need to be relocated also. */
128 vec_foreach (pf, nm->pending_frames)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400129 {
130 if (pf->next_frame_index != VLIB_PENDING_FRAME_NO_NEXT_FRAME
131 && pf->next_frame_index >= i)
132 pf->next_frame_index += n_insert;
133 }
134 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 pool_foreach (pf, nm->suspended_process_frames, ({
136 if (pf->next_frame_index != ~0 && pf->next_frame_index >= i)
137 pf->next_frame_index += n_insert;
138 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400139 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
141 r->n_next_nodes = vec_len (node->next_nodes);
142 }
143
144 /* Set frame's node runtime index. */
145 next_node = vlib_get_node (vm, node->next_nodes[next_index]);
146 nf = nm->next_frames + r->next_frame_index + next_index;
147 nf->node_runtime_index = next_node->runtime_index;
148
Dave Barach9b8ffd92016-07-08 08:13:45 -0400149 vlib_worker_thread_node_runtime_update ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152}
153
154/* Add next node to given node in given slot. */
155uword
156vlib_node_add_next_with_slot (vlib_main_t * vm,
157 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 uword next_node_index, uword slot)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400160 vlib_node_main_t *nm = &vm->node_main;
161 vlib_node_t *node, *next;
162 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
164 node = vec_elt (nm->nodes, node_index);
165 next = vec_elt (nm->nodes, next_node_index);
166
Ole Troan964f93e2016-06-10 13:22:36 +0200167 /* Runtime has to be initialized. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400168 ASSERT (nm->flags & VLIB_NODE_MAIN_RUNTIME_STARTED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
170 if ((p = hash_get (node->next_slot_by_node, next_node_index)))
171 {
John Lo405e41b2016-04-23 15:14:12 -0400172 /* Next already exists: slot must match. */
173 if (slot != ~0)
174 ASSERT (slot == p[0]);
175 return p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 }
177
178 if (slot == ~0)
179 slot = vec_len (node->next_nodes);
180
181 vec_validate_init_empty (node->next_nodes, slot, ~0);
182 vec_validate (node->n_vectors_by_next_node, slot);
183
184 node->next_nodes[slot] = next_node_index;
John Lo405e41b2016-04-23 15:14:12 -0400185 hash_set (node->next_slot_by_node, next_node_index, slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
187 vlib_node_runtime_update (vm, node_index, slot);
188
189 next->prev_node_bitmap = clib_bitmap_ori (next->prev_node_bitmap,
190 node_index);
191
192 /* Siblings all get same node structure. */
193 {
194 uword sib_node_index, sib_slot;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195 vlib_node_t *sib_node;
196 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 clib_bitmap_foreach (sib_node_index, node->sibling_bitmap, ({
198 sib_node = vec_elt (nm->nodes, sib_node_index);
199 if (sib_node != node)
200 {
201 sib_slot = vlib_node_add_next_with_slot (vm, sib_node_index, next_node_index, slot);
202 ASSERT (sib_slot == slot);
203 }
204 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400205 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 }
207
208 return slot;
209}
210
211/* Add named next node to given node in given slot. */
212uword
213vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 uword node, char *name, uword slot)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 vlib_node_main_t *nm;
217 vlib_node_t *n, *n_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
219 nm = &vm->node_main;
220 n = vlib_get_node (vm, node);
221
222 n_next = vlib_get_node_by_name (vm, (u8 *) name);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400223 if (!n_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 {
225 if (nm->flags & VLIB_NODE_MAIN_RUNTIME_STARTED)
226 return ~0;
227
228 if (slot == ~0)
229 slot = clib_max (vec_len (n->next_node_names),
230 vec_len (n->next_nodes));
231 vec_validate (n->next_node_names, slot);
232 n->next_node_names[slot] = name;
233 return slot;
234 }
235
236 return vlib_node_add_next_with_slot (vm, node, n_next->index, slot);
237}
238
Dave Barach9b8ffd92016-07-08 08:13:45 -0400239static void
240node_elog_init (vlib_main_t * vm, uword ni)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241{
242 elog_event_type_t t;
243
244 memset (&t, 0, sizeof (t));
245
246 /* 2 event types for this node: one when node function is called.
247 One when it returns. */
248 vec_validate (vm->node_call_elog_event_types, ni);
249 vm->node_call_elog_event_types[ni] = t;
250
251 vec_validate (vm->node_return_elog_event_types, ni);
252 vm->node_return_elog_event_types[ni] = t;
253
254 node_set_elog_name (vm, ni);
255}
256
257#ifdef CLIB_UNIX
Dave Barachbfdedbd2016-01-20 09:11:55 -0500258#define STACK_ALIGN (clib_mem_get_page_size())
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259#else
260#define STACK_ALIGN CLIB_CACHE_LINE_BYTES
261#endif
262
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263static void
264register_node (vlib_main_t * vm, vlib_node_registration_t * r)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400266 vlib_node_main_t *nm = &vm->node_main;
267 vlib_node_t *n;
268 u32 page_size = clib_mem_get_page_size ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 int i;
270
271 if (CLIB_DEBUG > 0)
272 {
273 /* Default (0) type should match INTERNAL. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274 vlib_node_t zero = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 ASSERT (VLIB_NODE_TYPE_INTERNAL == zero.type);
276 }
277
278 ASSERT (r->function != 0);
279
280 n = clib_mem_alloc_no_fail (sizeof (n[0]));
281 memset (n, 0, sizeof (n[0]));
282 n->index = vec_len (nm->nodes);
283
284 vec_add1 (nm->nodes, n);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 /* Name is always a vector so it can be formatted with %v. */
287 if (clib_mem_is_heap_object (vec_header (r->name, 0)))
288 n->name = vec_dup ((u8 *) r->name);
289 else
290 n->name = format (0, "%s", r->name);
291
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292 if (!nm->node_by_name)
293 nm->node_by_name = hash_create_vec ( /* size */ 32,
294 sizeof (n->name[0]), sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
296 /* Node names must be unique. */
297 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 vlib_node_t *o = vlib_get_node_by_name (vm, n->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 if (o)
300 clib_error ("more than one node named `%v'", n->name);
301 }
302
303 hash_set (nm->node_by_name, n->name, n->index);
304
305 r->index = n->index; /* save index in registration */
306 n->function = r->function;
307
308 /* Node index of next sibling will be filled in by vlib_node_main_init. */
309 n->sibling_of = r->sibling_of;
Ole Troan964f93e2016-06-10 13:22:36 +0200310 if (r->sibling_of && r->n_next_nodes > 0)
311 clib_error ("sibling node should not have any next nodes `%v'", n->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
313 if (r->type == VLIB_NODE_TYPE_INTERNAL)
314 ASSERT (r->vector_size > 0);
315
316#define _(f) n->f = r->f
317
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318 _(type);
319 _(flags);
320 _(state);
321 _(scalar_size);
322 _(vector_size);
323 _(format_buffer);
324 _(unformat_buffer);
325 _(format_trace);
326 _(validate_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
328 /* Register error counters. */
329 vlib_register_errors (vm, n->index, r->n_errors, r->error_strings);
330 node_elog_init (vm, n->index);
331
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 _(runtime_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 if (r->runtime_data_bytes > 0)
334 {
335 vec_resize (n->runtime_data, r->runtime_data_bytes);
336 if (r->runtime_data)
Damjan Marionf1213b82016-03-13 02:22:06 +0100337 clib_memcpy (n->runtime_data, r->runtime_data, r->runtime_data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 }
339
340 vec_resize (n->next_node_names, r->n_next_nodes);
341 for (i = 0; i < r->n_next_nodes; i++)
342 n->next_node_names[i] = r->next_nodes[i];
343
344 vec_validate_init_empty (n->next_nodes, r->n_next_nodes - 1, ~0);
345 vec_validate (n->n_vectors_by_next_node, r->n_next_nodes - 1);
346
347 n->owner_node_index = n->owner_next_index = ~0;
348
349 /* Initialize node runtime. */
350 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400351 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 u32 i;
353
354 if (n->type == VLIB_NODE_TYPE_PROCESS)
355 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400356 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357 uword log2_n_stack_bytes;
358
359 log2_n_stack_bytes = clib_max (r->process_log2_n_stack_bytes, 15);
360
Dave Barachbfdedbd2016-01-20 09:11:55 -0500361#ifdef CLIB_UNIX
Dave Barach9b8ffd92016-07-08 08:13:45 -0400362 /*
363 * Bump the stack size if running over a kernel with a large page size,
364 * and the stack isn't any too big to begin with. Otherwise, we'll
365 * trip over the stack guard page for sure.
366 */
367 if ((page_size > (4 << 10)) && log2_n_stack_bytes < 19)
368 {
369 if ((1 << log2_n_stack_bytes) <= page_size)
370 log2_n_stack_bytes = min_log2 (page_size) + 1;
371 else
372 log2_n_stack_bytes++;
373 }
Dave Barachbfdedbd2016-01-20 09:11:55 -0500374#endif
375
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 p = clib_mem_alloc_aligned_at_offset
377 (sizeof (p[0]) + (1 << log2_n_stack_bytes),
Dave Barach241e5222016-10-13 10:53:26 -0400378 STACK_ALIGN, STRUCT_OFFSET_OF (vlib_process_t, stack),
379 0 /* no, don't call os_out_of_memory */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380 if (p == 0)
381 clib_panic ("failed to allocate process stack (%d bytes)",
382 1 << log2_n_stack_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
384 memset (p, 0, sizeof (p[0]));
385 p->log2_n_stack_bytes = log2_n_stack_bytes;
386
387 /* Process node's runtime index is really index into process
388 pointer vector. */
389 n->runtime_index = vec_len (nm->processes);
390
391 vec_add1 (nm->processes, p);
392
393 /* Paint first stack word with magic number so we can at least
394 detect process stack overruns. */
395 p->stack[0] = VLIB_PROCESS_STACK_MAGIC;
396
397 /* Node runtime is stored inside of process. */
398 rt = &p->node_runtime;
399
400#ifdef CLIB_UNIX
Dave Barach9b8ffd92016-07-08 08:13:45 -0400401 /*
402 * Disallow writes to the bottom page of the stack, to
403 * catch stack overflows.
404 */
405 if (mprotect (p->stack, page_size, PROT_READ) < 0)
406 clib_unix_warning ("process stack");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407#endif
408
409 }
410 else
411 {
412 vec_add2_aligned (nm->nodes_by_type[n->type], rt, 1,
413 /* align */ CLIB_CACHE_LINE_BYTES);
414 n->runtime_index = rt - nm->nodes_by_type[n->type];
415 }
416
417 if (n->type == VLIB_NODE_TYPE_INPUT)
418 nm->input_node_counts_by_state[n->state] += 1;
419
420 rt->function = n->function;
421 rt->flags = n->flags;
422 rt->state = n->state;
423 rt->node_index = n->index;
424
425 rt->n_next_nodes = r->n_next_nodes;
426 rt->next_frame_index = vec_len (nm->next_frames);
427
428 vec_resize (nm->next_frames, rt->n_next_nodes);
429 for (i = 0; i < rt->n_next_nodes; i++)
430 vlib_next_frame_init (nm->next_frames + rt->next_frame_index + i);
431
432 vec_resize (rt->errors, r->n_errors);
433 for (i = 0; i < vec_len (rt->errors); i++)
434 rt->errors[i] = vlib_error_set (n->index, i);
435
Christophe Fontaine33e81952016-12-19 14:41:52 +0100436 STATIC_ASSERT_SIZEOF (vlib_node_runtime_t, 128);
Damjan Marione9f929b2017-03-16 11:32:09 +0100437 ASSERT (vec_len (n->runtime_data) <= VLIB_NODE_RUNTIME_DATA_SIZE);
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100438
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439 if (vec_len (n->runtime_data) > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 clib_memcpy (rt->runtime_data, n->runtime_data,
441 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
443 vec_free (n->runtime_data);
444 }
445}
446
447/* Register new packet processing node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400448u32
449vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450{
451 register_node (vm, r);
452 return r->index;
453}
454
Damjan Mariond4798a32016-09-06 22:26:03 +0200455static uword
456null_node_fn (vlib_main_t * vm,
457 vlib_node_runtime_t * node, vlib_frame_t * frame)
458{
459 u16 n_vectors = frame->n_vectors;
460
461 vlib_node_increment_counter (vm, node->node_index, 0, n_vectors);
462 vlib_buffer_free (vm, vlib_frame_args (frame), n_vectors);
463 vlib_frame_free (vm, node, frame);
464
465 return n_vectors;
466}
467
Dave Barach9b8ffd92016-07-08 08:13:45 -0400468void
469vlib_register_all_static_nodes (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471 vlib_node_registration_t *r;
472
Damjan Mariond4798a32016-09-06 22:26:03 +0200473 static char *null_node_error_strings[] = {
474 "blackholed packets",
475 };
476
477 static vlib_node_registration_t null_node_reg = {
478 .function = null_node_fn,
479 .vector_size = sizeof (u32),
480 .name = "null-node",
481 .n_errors = 1,
482 .error_strings = null_node_error_strings,
483 };
484
485 /* make sure that node index 0 is not used by
486 real node */
487 register_node (vm, &null_node_reg);
488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 r = vm->node_main.node_registrations;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490 while (r)
491 {
492 register_node (vm, r);
493 r = r->next_registration;
494 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495}
496
497clib_error_t *
498vlib_node_main_init (vlib_main_t * vm)
499{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 vlib_node_main_t *nm = &vm->node_main;
501 clib_error_t *error = 0;
502 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 uword ni;
504
Florin Coras93992a92017-05-24 18:03:56 -0700505 nm->frame_size_hash = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 nm->flags |= VLIB_NODE_MAIN_RUNTIME_STARTED;
507
Ole Troan964f93e2016-06-10 13:22:36 +0200508 /* Generate sibling relationships */
509 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 vlib_node_t *n, *sib;
Ole Troan964f93e2016-06-10 13:22:36 +0200511 uword si;
512
513 for (ni = 0; ni < vec_len (nm->nodes); ni++)
514 {
515 n = vec_elt (nm->nodes, ni);
516
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 if (!n->sibling_of)
Ole Troan964f93e2016-06-10 13:22:36 +0200518 continue;
519
520 sib = vlib_get_node_by_name (vm, (u8 *) n->sibling_of);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 if (!sib)
Ed Warnicke853e7202016-08-12 11:42:26 -0700522 {
523 error = clib_error_create ("sibling `%s' not found for node `%v'",
524 n->sibling_of, n->name);
525 goto done;
526 }
Ole Troan964f93e2016-06-10 13:22:36 +0200527
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 /* *INDENT-OFF* */
Ole Troan964f93e2016-06-10 13:22:36 +0200529 clib_bitmap_foreach (si, sib->sibling_bitmap, ({
530 vlib_node_t * m = vec_elt (nm->nodes, si);
531
532 /* Connect all of sibling's siblings to us. */
533 m->sibling_bitmap = clib_bitmap_ori (m->sibling_bitmap, n->index);
534
535 /* Connect us to all of sibling's siblings. */
536 n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, si);
537 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400538 /* *INDENT-ON* */
Ole Troan964f93e2016-06-10 13:22:36 +0200539
540 /* Connect sibling to us. */
541 sib->sibling_bitmap = clib_bitmap_ori (sib->sibling_bitmap, n->index);
542
543 /* Connect us to sibling. */
544 n->sibling_bitmap = clib_bitmap_ori (n->sibling_bitmap, sib->index);
545 }
546 }
547
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548 /* Resolve next names into next indices. */
549 for (ni = 0; ni < vec_len (nm->nodes); ni++)
550 {
551 uword i;
552
553 n = vec_elt (nm->nodes, ni);
554
555 for (i = 0; i < vec_len (n->next_node_names); i++)
556 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400557 char *a = n->next_node_names[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559 if (!a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 continue;
561
562 if (~0 == vlib_node_add_named_next_with_slot (vm, n->index, a, i))
563 {
564 error = clib_error_create
565 ("node `%v' refers to unknown node `%s'", n->name, a);
566 goto done;
567 }
568 }
569
570 vec_free (n->next_node_names);
571 }
572
573 /* Set previous node pointers. */
574 for (ni = 0; ni < vec_len (nm->nodes); ni++)
575 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400576 vlib_node_t *n_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 uword i;
578
579 n = vec_elt (nm->nodes, ni);
580
581 for (i = 0; i < vec_len (n->next_nodes); i++)
582 {
583 if (n->next_nodes[i] >= vec_len (nm->nodes))
584 continue;
585
586 n_next = vec_elt (nm->nodes, n->next_nodes[i]);
587 n_next->prev_node_bitmap =
588 clib_bitmap_ori (n_next->prev_node_bitmap, n->index);
589 }
590 }
591
592 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400593 vlib_next_frame_t *nf;
594 vlib_node_runtime_t *r;
595 vlib_node_t *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596 uword i;
597
598 vec_foreach (r, nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400599 {
600 if (r->n_next_nodes == 0)
601 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Dave Barach9b8ffd92016-07-08 08:13:45 -0400603 n = vlib_get_node (vm, r->node_index);
604 nf = vec_elt_at_index (nm->next_frames, r->next_frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606 for (i = 0; i < vec_len (n->next_nodes); i++)
607 {
608 next = vlib_get_node (vm, n->next_nodes[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609
Dave Barach9b8ffd92016-07-08 08:13:45 -0400610 /* Validate node runtime indices are correctly initialized. */
611 ASSERT (nf[i].node_runtime_index == next->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 nf[i].flags = 0;
614 if (next->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH)
615 nf[i].flags |= VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
616 }
617 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 }
619
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 return error;
622}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400623
624/*
625 * fd.io coding-style-patch-verification: ON
626 *
627 * Local Variables:
628 * eval: (c-set-style "gnu")
629 * End:
630 */