FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
ip4_forward.h
Go to the documentation of this file.
1 /*
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  * ip/ip4_forward.h: IP v4 forwarding
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 #ifndef __included_ip4_forward_h__
41 #define __included_ip4_forward_h__
42 
43 #include <vnet/fib/ip4_fib.h>
45 
46 /**
47  * @file
48  * @brief IPv4 Forwarding.
49  *
50  * This file contains the source code for IPv4 forwarding.
51  */
52 
55  vlib_node_runtime_t * node,
56  vlib_frame_t * frame,
57  int lookup_for_responses_to_locally_received_packets)
58 {
59  ip4_main_t *im = &ip4_main;
61  u32 n_left_from, n_left_to_next, *from, *to_next;
62  ip_lookup_next_t next;
63  u32 thread_index = vlib_get_thread_index ();
64 
65  from = vlib_frame_vector_args (frame);
66  n_left_from = frame->n_vectors;
67  next = node->cached_next_index;
68 
69  while (n_left_from > 0)
70  {
71  vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
72 
73  while (n_left_from >= 8 && n_left_to_next >= 4)
74  {
75  vlib_buffer_t *p0, *p1, *p2, *p3;
76  ip4_header_t *ip0, *ip1, *ip2, *ip3;
77  ip_lookup_next_t next0, next1, next2, next3;
78  const load_balance_t *lb0, *lb1, *lb2, *lb3;
79  ip4_fib_mtrie_t *mtrie0, *mtrie1, *mtrie2, *mtrie3;
80  ip4_fib_mtrie_leaf_t leaf0, leaf1, leaf2, leaf3;
81  ip4_address_t *dst_addr0, *dst_addr1, *dst_addr2, *dst_addr3;
82  u32 pi0, fib_index0, lb_index0;
83  u32 pi1, fib_index1, lb_index1;
84  u32 pi2, fib_index2, lb_index2;
85  u32 pi3, fib_index3, lb_index3;
86  flow_hash_config_t flow_hash_config0, flow_hash_config1;
87  flow_hash_config_t flow_hash_config2, flow_hash_config3;
88  u32 hash_c0, hash_c1, hash_c2, hash_c3;
89  const dpo_id_t *dpo0, *dpo1, *dpo2, *dpo3;
90 
91  /* Prefetch next iteration. */
92  {
93  vlib_buffer_t *p4, *p5, *p6, *p7;
94 
95  p4 = vlib_get_buffer (vm, from[4]);
96  p5 = vlib_get_buffer (vm, from[5]);
97  p6 = vlib_get_buffer (vm, from[6]);
98  p7 = vlib_get_buffer (vm, from[7]);
99 
100  vlib_prefetch_buffer_header (p4, LOAD);
101  vlib_prefetch_buffer_header (p5, LOAD);
102  vlib_prefetch_buffer_header (p6, LOAD);
103  vlib_prefetch_buffer_header (p7, LOAD);
104 
105  CLIB_PREFETCH (p4->data, sizeof (ip0[0]), LOAD);
106  CLIB_PREFETCH (p5->data, sizeof (ip0[0]), LOAD);
107  CLIB_PREFETCH (p6->data, sizeof (ip0[0]), LOAD);
108  CLIB_PREFETCH (p7->data, sizeof (ip0[0]), LOAD);
109  }
110 
111  pi0 = to_next[0] = from[0];
112  pi1 = to_next[1] = from[1];
113  pi2 = to_next[2] = from[2];
114  pi3 = to_next[3] = from[3];
115 
116  from += 4;
117  to_next += 4;
118  n_left_to_next -= 4;
119  n_left_from -= 4;
120 
121  p0 = vlib_get_buffer (vm, pi0);
122  p1 = vlib_get_buffer (vm, pi1);
123  p2 = vlib_get_buffer (vm, pi2);
124  p3 = vlib_get_buffer (vm, pi3);
125 
126  ip0 = vlib_buffer_get_current (p0);
127  ip1 = vlib_buffer_get_current (p1);
128  ip2 = vlib_buffer_get_current (p2);
129  ip3 = vlib_buffer_get_current (p3);
130 
131  dst_addr0 = &ip0->dst_address;
132  dst_addr1 = &ip1->dst_address;
133  dst_addr2 = &ip2->dst_address;
134  dst_addr3 = &ip3->dst_address;
135 
136  fib_index0 =
138  vnet_buffer (p0)->sw_if_index[VLIB_RX]);
139  fib_index1 =
141  vnet_buffer (p1)->sw_if_index[VLIB_RX]);
142  fib_index2 =
144  vnet_buffer (p2)->sw_if_index[VLIB_RX]);
145  fib_index3 =
147  vnet_buffer (p3)->sw_if_index[VLIB_RX]);
148  fib_index0 =
149  (vnet_buffer (p0)->sw_if_index[VLIB_TX] ==
150  (u32) ~ 0) ? fib_index0 : vnet_buffer (p0)->sw_if_index[VLIB_TX];
151  fib_index1 =
152  (vnet_buffer (p1)->sw_if_index[VLIB_TX] ==
153  (u32) ~ 0) ? fib_index1 : vnet_buffer (p1)->sw_if_index[VLIB_TX];
154  fib_index2 =
155  (vnet_buffer (p2)->sw_if_index[VLIB_TX] ==
156  (u32) ~ 0) ? fib_index2 : vnet_buffer (p2)->sw_if_index[VLIB_TX];
157  fib_index3 =
158  (vnet_buffer (p3)->sw_if_index[VLIB_TX] ==
159  (u32) ~ 0) ? fib_index3 : vnet_buffer (p3)->sw_if_index[VLIB_TX];
160 
161 
162  if (!lookup_for_responses_to_locally_received_packets)
163  {
164  mtrie0 = &ip4_fib_get (fib_index0)->mtrie;
165  mtrie1 = &ip4_fib_get (fib_index1)->mtrie;
166  mtrie2 = &ip4_fib_get (fib_index2)->mtrie;
167  mtrie3 = &ip4_fib_get (fib_index3)->mtrie;
168 
169  leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, dst_addr0);
170  leaf1 = ip4_fib_mtrie_lookup_step_one (mtrie1, dst_addr1);
171  leaf2 = ip4_fib_mtrie_lookup_step_one (mtrie2, dst_addr2);
172  leaf3 = ip4_fib_mtrie_lookup_step_one (mtrie3, dst_addr3);
173  }
174 
175  if (!lookup_for_responses_to_locally_received_packets)
176  {
177  leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, dst_addr0, 2);
178  leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, dst_addr1, 2);
179  leaf2 = ip4_fib_mtrie_lookup_step (mtrie2, leaf2, dst_addr2, 2);
180  leaf3 = ip4_fib_mtrie_lookup_step (mtrie3, leaf3, dst_addr3, 2);
181  }
182 
183  if (!lookup_for_responses_to_locally_received_packets)
184  {
185  leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, dst_addr0, 3);
186  leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, dst_addr1, 3);
187  leaf2 = ip4_fib_mtrie_lookup_step (mtrie2, leaf2, dst_addr2, 3);
188  leaf3 = ip4_fib_mtrie_lookup_step (mtrie3, leaf3, dst_addr3, 3);
189  }
190 
191  if (lookup_for_responses_to_locally_received_packets)
192  {
193  lb_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_RX];
194  lb_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_RX];
195  lb_index2 = vnet_buffer (p2)->ip.adj_index[VLIB_RX];
196  lb_index3 = vnet_buffer (p3)->ip.adj_index[VLIB_RX];
197  }
198  else
199  {
200  lb_index0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
201  lb_index1 = ip4_fib_mtrie_leaf_get_adj_index (leaf1);
202  lb_index2 = ip4_fib_mtrie_leaf_get_adj_index (leaf2);
203  lb_index3 = ip4_fib_mtrie_leaf_get_adj_index (leaf3);
204  }
205 
206  ASSERT (lb_index0 && lb_index1 && lb_index2 && lb_index3);
207  lb0 = load_balance_get (lb_index0);
208  lb1 = load_balance_get (lb_index1);
209  lb2 = load_balance_get (lb_index2);
210  lb3 = load_balance_get (lb_index3);
211 
212  ASSERT (lb0->lb_n_buckets > 0);
213  ASSERT (is_pow2 (lb0->lb_n_buckets));
214  ASSERT (lb1->lb_n_buckets > 0);
215  ASSERT (is_pow2 (lb1->lb_n_buckets));
216  ASSERT (lb2->lb_n_buckets > 0);
217  ASSERT (is_pow2 (lb2->lb_n_buckets));
218  ASSERT (lb3->lb_n_buckets > 0);
219  ASSERT (is_pow2 (lb3->lb_n_buckets));
220 
221  /* Use flow hash to compute multipath adjacency. */
222  hash_c0 = vnet_buffer (p0)->ip.flow_hash = 0;
223  hash_c1 = vnet_buffer (p1)->ip.flow_hash = 0;
224  hash_c2 = vnet_buffer (p2)->ip.flow_hash = 0;
225  hash_c3 = vnet_buffer (p3)->ip.flow_hash = 0;
226  if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
227  {
228  flow_hash_config0 = lb0->lb_hash_config;
229  hash_c0 = vnet_buffer (p0)->ip.flow_hash =
230  ip4_compute_flow_hash (ip0, flow_hash_config0);
231  dpo0 =
233  (hash_c0 &
234  (lb0->lb_n_buckets_minus_1)));
235  }
236  else
237  {
238  dpo0 = load_balance_get_bucket_i (lb0, 0);
239  }
240  if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
241  {
242  flow_hash_config1 = lb1->lb_hash_config;
243  hash_c1 = vnet_buffer (p1)->ip.flow_hash =
244  ip4_compute_flow_hash (ip1, flow_hash_config1);
245  dpo1 =
247  (hash_c1 &
248  (lb1->lb_n_buckets_minus_1)));
249  }
250  else
251  {
252  dpo1 = load_balance_get_bucket_i (lb1, 0);
253  }
254  if (PREDICT_FALSE (lb2->lb_n_buckets > 1))
255  {
256  flow_hash_config2 = lb2->lb_hash_config;
257  hash_c2 = vnet_buffer (p2)->ip.flow_hash =
258  ip4_compute_flow_hash (ip2, flow_hash_config2);
259  dpo2 =
261  (hash_c2 &
262  (lb2->lb_n_buckets_minus_1)));
263  }
264  else
265  {
266  dpo2 = load_balance_get_bucket_i (lb2, 0);
267  }
268  if (PREDICT_FALSE (lb3->lb_n_buckets > 1))
269  {
270  flow_hash_config3 = lb3->lb_hash_config;
271  hash_c3 = vnet_buffer (p3)->ip.flow_hash =
272  ip4_compute_flow_hash (ip3, flow_hash_config3);
273  dpo3 =
275  (hash_c3 &
276  (lb3->lb_n_buckets_minus_1)));
277  }
278  else
279  {
280  dpo3 = load_balance_get_bucket_i (lb3, 0);
281  }
282 
283  next0 = dpo0->dpoi_next_node;
284  vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
285  next1 = dpo1->dpoi_next_node;
286  vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
287  next2 = dpo2->dpoi_next_node;
288  vnet_buffer (p2)->ip.adj_index[VLIB_TX] = dpo2->dpoi_index;
289  next3 = dpo3->dpoi_next_node;
290  vnet_buffer (p3)->ip.adj_index[VLIB_TX] = dpo3->dpoi_index;
291 
293  (cm, thread_index, lb_index0, 1,
294  vlib_buffer_length_in_chain (vm, p0));
296  (cm, thread_index, lb_index1, 1,
297  vlib_buffer_length_in_chain (vm, p1));
299  (cm, thread_index, lb_index2, 1,
300  vlib_buffer_length_in_chain (vm, p2));
302  (cm, thread_index, lb_index3, 1,
303  vlib_buffer_length_in_chain (vm, p3));
304 
305  vlib_validate_buffer_enqueue_x4 (vm, node, next,
306  to_next, n_left_to_next,
307  pi0, pi1, pi2, pi3,
308  next0, next1, next2, next3);
309  }
310 
311  while (n_left_from > 0 && n_left_to_next > 0)
312  {
313  vlib_buffer_t *p0;
314  ip4_header_t *ip0;
315  ip_lookup_next_t next0;
316  const load_balance_t *lb0;
317  ip4_fib_mtrie_t *mtrie0;
318  ip4_fib_mtrie_leaf_t leaf0;
319  ip4_address_t *dst_addr0;
320  u32 pi0, fib_index0, lbi0;
321  flow_hash_config_t flow_hash_config0;
322  const dpo_id_t *dpo0;
323  u32 hash_c0;
324 
325  pi0 = from[0];
326  to_next[0] = pi0;
327 
328  p0 = vlib_get_buffer (vm, pi0);
329 
330  ip0 = vlib_buffer_get_current (p0);
331 
332  dst_addr0 = &ip0->dst_address;
333 
334  fib_index0 =
336  vnet_buffer (p0)->sw_if_index[VLIB_RX]);
337  fib_index0 =
338  (vnet_buffer (p0)->sw_if_index[VLIB_TX] ==
339  (u32) ~ 0) ? fib_index0 : vnet_buffer (p0)->sw_if_index[VLIB_TX];
340 
341  if (!lookup_for_responses_to_locally_received_packets)
342  {
343  mtrie0 = &ip4_fib_get (fib_index0)->mtrie;
344 
345  leaf0 = ip4_fib_mtrie_lookup_step_one (mtrie0, dst_addr0);
346  }
347 
348  if (!lookup_for_responses_to_locally_received_packets)
349  leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, dst_addr0, 2);
350 
351  if (!lookup_for_responses_to_locally_received_packets)
352  leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, dst_addr0, 3);
353 
354  if (lookup_for_responses_to_locally_received_packets)
355  lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_RX];
356  else
357  {
358  /* Handle default route. */
359  lbi0 = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
360  }
361 
362  ASSERT (lbi0);
363  lb0 = load_balance_get (lbi0);
364 
365  ASSERT (lb0->lb_n_buckets > 0);
366  ASSERT (is_pow2 (lb0->lb_n_buckets));
367 
368  /* Use flow hash to compute multipath adjacency. */
369  hash_c0 = vnet_buffer (p0)->ip.flow_hash = 0;
370  if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
371  {
372  flow_hash_config0 = lb0->lb_hash_config;
373 
374  hash_c0 = vnet_buffer (p0)->ip.flow_hash =
375  ip4_compute_flow_hash (ip0, flow_hash_config0);
376  dpo0 =
378  (hash_c0 &
379  (lb0->lb_n_buckets_minus_1)));
380  }
381  else
382  {
383  dpo0 = load_balance_get_bucket_i (lb0, 0);
384  }
385 
386  next0 = dpo0->dpoi_next_node;
387  vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
388 
389  vlib_increment_combined_counter (cm, thread_index, lbi0, 1,
391  p0));
392 
393  from += 1;
394  to_next += 1;
395  n_left_to_next -= 1;
396  n_left_from -= 1;
397 
398  if (PREDICT_FALSE (next0 != next))
399  {
400  n_left_to_next += 1;
401  vlib_put_next_frame (vm, node, next, n_left_to_next);
402  next = next0;
403  vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
404  to_next[0] = pi0;
405  to_next += 1;
406  n_left_to_next -= 1;
407  }
408  }
409 
410  vlib_put_next_frame (vm, node, next, n_left_to_next);
411  }
412 
413  if (node->flags & VLIB_NODE_FLAG_TRACE)
414  ip4_forward_next_trace (vm, node, frame, VLIB_TX);
415 
416  return frame->n_vectors;
417 }
418 
419 #endif /* __included_ip4_forward_h__ */
420 
421 /*
422  * fd.io coding-style-patch-verification: ON
423  *
424  * Local Variables:
425  * eval: (c-set-style "gnu")
426  * End:
427  */
u16 lb_n_buckets
number of buckets in the load-balance.
Definition: load_balance.h:94
vlib_combined_counter_main_t lbm_to_counters
Definition: load_balance.h:46
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
Definition: counter.h:211
The mutiway-TRIE.
Definition: ip4_mtrie.h:129
static ip4_fib_mtrie_leaf_t ip4_fib_mtrie_lookup_step(const ip4_fib_mtrie_t *m, ip4_fib_mtrie_leaf_t current_leaf, const ip4_address_t *dst_address, u32 dst_address_byte_index)
Lookup step.
Definition: ip4_mtrie.h:202
static u32 ip4_compute_flow_hash(const ip4_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip4.h:287
flow_hash_config_t lb_hash_config
the hash config to use when selecting a bucket.
Definition: load_balance.h:134
static const dpo_id_t * load_balance_get_fwd_bucket(const load_balance_t *lb, u16 bucket)
#define vlib_validate_buffer_enqueue_x4(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, bi2, bi3, next0, next1, next2, next3)
Finish enqueueing four buffers forward in the graph.
Definition: buffer_node.h:138
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:111
static uword ip4_lookup_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int lookup_for_responses_to_locally_received_packets)
Definition: ip4_forward.h:54
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:107
ip_lookup_next_t
An adjacency is a representation of an attached L3 peer.
Definition: adj.h:50
#define always_inline
Definition: clib.h:92
u16 lb_n_buckets_minus_1
number of buckets in the load-balance - 1.
Definition: load_balance.h:99
ip4_address_t dst_address
Definition: ip4_packet.h:164
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:191
u32 ip4_fib_mtrie_leaf_t
Definition: ip4_mtrie.h:52
static u32 ip4_fib_mtrie_leaf_get_adj_index(ip4_fib_mtrie_leaf_t n)
From the stored slot value extract the LB index value.
Definition: ip4_mtrie.h:192
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:168
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:209
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:209
The FIB DPO provieds;.
Definition: load_balance.h:84
#define PREDICT_FALSE(x)
Definition: clib.h:105
load_balance_main_t load_balance_main
The one instance of load-balance main.
Definition: load_balance.c:56
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:364
ip4_fib_mtrie_t mtrie
Mtrie for fast lookups.
Definition: ip4_fib.h:45
u16 n_vectors
Definition: node.h:344
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:74
vlib_main_t * vm
Definition: buffer.c:294
static ip4_fib_t * ip4_fib_get(u32 index)
Get the FIB at the given index.
Definition: ip4_fib.h:117
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:454
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
static ip4_fib_mtrie_leaf_t ip4_fib_mtrie_lookup_step_one(const ip4_fib_mtrie_t *m, const ip4_address_t *dst_address)
Lookup step number 1.
Definition: ip4_mtrie.h:224
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:200
IPv4 main type.
Definition: ip4.h:95
u32 flow_hash_config_t
A flow hash configuration is a mask of the flow hash options.
Definition: lookup.h:82
static uword is_pow2(uword x)
Definition: clib.h:280
u64 uword
Definition: types.h:112
#define vec_elt(v, i)
Get vector value at index i.
Definition: defs.h:47
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:184
void ip4_forward_next_trace(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, vlib_rx_or_tx_t which_adj_index)
Definition: ip4_forward.c:953
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
A collection of combined counters.
Definition: counter.h:180
#define vnet_buffer(b)
Definition: buffer.h:372
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:818
u8 data[0]
Packet data.
Definition: buffer.h:179
u16 flags
Copy of main node flags.
Definition: node.h:450
u16 dpoi_next_node
The next VLIB node to follow.
Definition: dpo.h:180
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:259
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
Definition: defs.h:46