FD.io VPP  v21.06
Vector Packet Processing
node.c
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 #include <vnet/vnet.h>
16 #include <vppinfra/vec.h>
17 #include <vppinfra/error.h>
18 #include <vppinfra/format.h>
19 #include <vppinfra/xxhash.h>
20 
21 #include <vnet/ethernet/ethernet.h>
22 #include <dpdk/buffer.h>
23 #include <dpdk/device/dpdk.h>
25 #include <vnet/mpls/packet.h>
26 #include <vnet/handoff.h>
27 #include <vnet/devices/devices.h>
29 #include <vnet/feature/feature.h>
30 
31 #include <dpdk/device/dpdk_priv.h>
32 
33 static char *dpdk_error_strings[] = {
34 #define _(n,s) s,
36 #undef _
37 };
38 
39 /* make sure all flags we need are stored in lower 8 bits */
40 STATIC_ASSERT ((PKT_RX_IP_CKSUM_BAD | PKT_RX_FDIR) <
41  256, "dpdk flags not un lower byte, fix needed");
42 
45  struct rte_mbuf *mb, vlib_buffer_t * bt)
46 {
47  u8 nb_seg = 1;
48  struct rte_mbuf *mb_seg = 0;
49  vlib_buffer_t *b_seg, *b_chain = 0;
50  mb_seg = mb->next;
51  b_chain = b;
52 
53  if (mb->nb_segs < 2)
54  return 0;
55 
56  b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
58 
59  while (nb_seg < mb->nb_segs)
60  {
61  ASSERT (mb_seg != 0);
62 
63  b_seg = vlib_buffer_from_rte_mbuf (mb_seg);
64  vlib_buffer_copy_template (b_seg, bt);
65 
66  /*
67  * The driver (e.g. virtio) may not put the packet data at the start
68  * of the segment, so don't assume b_seg->current_data == 0 is correct.
69  */
70  b_seg->current_data =
71  (mb_seg->buf_addr + mb_seg->data_off) - (void *) b_seg->data;
72 
73  b_seg->current_length = mb_seg->data_len;
74  b->total_length_not_including_first_buffer += mb_seg->data_len;
75 
76  b_chain->flags |= VLIB_BUFFER_NEXT_PRESENT;
77  b_chain->next_buffer = vlib_get_buffer_index (vm, b_seg);
78 
79  b_chain = b_seg;
80  mb_seg = mb_seg->next;
81  nb_seg++;
82  }
84 }
85 
87 dpdk_prefetch_mbuf_x4 (struct rte_mbuf *mb[])
88 {
89  CLIB_PREFETCH (mb[0], CLIB_CACHE_LINE_BYTES, LOAD);
90  CLIB_PREFETCH (mb[1], CLIB_CACHE_LINE_BYTES, LOAD);
91  CLIB_PREFETCH (mb[2], CLIB_CACHE_LINE_BYTES, LOAD);
92  CLIB_PREFETCH (mb[3], CLIB_CACHE_LINE_BYTES, LOAD);
93 }
94 
96 dpdk_prefetch_buffer_x4 (struct rte_mbuf *mb[])
97 {
99  b = vlib_buffer_from_rte_mbuf (mb[0]);
101  b = vlib_buffer_from_rte_mbuf (mb[1]);
103  b = vlib_buffer_from_rte_mbuf (mb[2]);
105  b = vlib_buffer_from_rte_mbuf (mb[3]);
107 }
108 
109 /** \brief Main DPDK input node
110  @node dpdk-input
111 
112  This is the main DPDK input node: across each assigned interface,
113  call rte_eth_rx_burst(...) or similar to obtain a vector of
114  packets to process. Derive @c vlib_buffer_t metadata from
115  <code>struct rte_mbuf</code> metadata,
116  Depending on the resulting metadata: adjust <code>b->current_data,
117  b->current_length </code> and dispatch directly to
118  ip4-input-no-checksum, or ip6-input. Trace the packet if required.
119 
120  @param vm vlib_main_t corresponding to the current thread
121  @param node vlib_node_runtime_t
122  @param f vlib_frame_t input-node, not used.
123 
124  @par Graph mechanics: buffer metadata, next index usage
125 
126  @em Uses:
127  - <code>struct rte_mbuf mb->ol_flags</code>
128  - PKT_RX_IP_CKSUM_BAD
129 
130  @em Sets:
131  - <code>b->error</code> if the packet is to be dropped immediately
132  - <code>b->current_data, b->current_length</code>
133  - adjusted as needed to skip the L2 header in direct-dispatch cases
134  - <code>vnet_buffer(b)->sw_if_index[VLIB_RX]</code>
135  - rx interface sw_if_index
136  - <code>vnet_buffer(b)->sw_if_index[VLIB_TX] = ~0</code>
137  - required by ipX-lookup
138  - <code>b->flags</code>
139  - to indicate multi-segment pkts (VLIB_BUFFER_NEXT_PRESENT), etc.
140 
141  <em>Next Nodes:</em>
142  - Static arcs to: error-drop, ethernet-input,
143  ip4-input-no-checksum, ip6-input, mpls-input
144  - per-interface redirection, controlled by
145  <code>xd->per_interface_next_index</code>
146 */
147 
149 dpdk_ol_flags_extract (struct rte_mbuf **mb, u16 * flags, int count)
150 {
151  u16 rv = 0;
152  int i;
153  for (i = 0; i < count; i++)
154  {
155  /* all flags we are interested in are in lower 8 bits but
156  that might change */
157  flags[i] = (u16) mb[i]->ol_flags;
158  rv |= flags[i];
159  }
160  return rv;
161 }
162 
165  uword n_rx_packets, int maybe_multiseg,
166  u16 * or_flagsp)
167 {
168  u32 n_left = n_rx_packets;
169  vlib_buffer_t *b[4];
170  struct rte_mbuf **mb = ptd->mbufs;
171  uword n_bytes = 0;
172  u16 *flags, or_flags = 0;
173  vlib_buffer_t bt;
174 
175  mb = ptd->mbufs;
176  flags = ptd->flags;
177 
178  /* copy template into local variable - will save per packet load */
180  while (n_left >= 8)
181  {
182  dpdk_prefetch_buffer_x4 (mb + 4);
183 
184  b[0] = vlib_buffer_from_rte_mbuf (mb[0]);
185  b[1] = vlib_buffer_from_rte_mbuf (mb[1]);
186  b[2] = vlib_buffer_from_rte_mbuf (mb[2]);
187  b[3] = vlib_buffer_from_rte_mbuf (mb[3]);
188 
189  vlib_buffer_copy_template (b[0], &bt);
190  vlib_buffer_copy_template (b[1], &bt);
191  vlib_buffer_copy_template (b[2], &bt);
192  vlib_buffer_copy_template (b[3], &bt);
193 
194  dpdk_prefetch_mbuf_x4 (mb + 4);
195 
196  or_flags |= dpdk_ol_flags_extract (mb, flags, 4);
197  flags += 4;
198 
199  b[0]->current_data = mb[0]->data_off - RTE_PKTMBUF_HEADROOM;
200  n_bytes += b[0]->current_length = mb[0]->data_len;
201 
202  b[1]->current_data = mb[1]->data_off - RTE_PKTMBUF_HEADROOM;
203  n_bytes += b[1]->current_length = mb[1]->data_len;
204 
205  b[2]->current_data = mb[2]->data_off - RTE_PKTMBUF_HEADROOM;
206  n_bytes += b[2]->current_length = mb[2]->data_len;
207 
208  b[3]->current_data = mb[3]->data_off - RTE_PKTMBUF_HEADROOM;
209  n_bytes += b[3]->current_length = mb[3]->data_len;
210 
211  if (maybe_multiseg)
212  {
213  n_bytes += dpdk_process_subseq_segs (vm, b[0], mb[0], &bt);
214  n_bytes += dpdk_process_subseq_segs (vm, b[1], mb[1], &bt);
215  n_bytes += dpdk_process_subseq_segs (vm, b[2], mb[2], &bt);
216  n_bytes += dpdk_process_subseq_segs (vm, b[3], mb[3], &bt);
217  }
218 
219  /* next */
220  mb += 4;
221  n_left -= 4;
222  }
223 
224  while (n_left)
225  {
226  b[0] = vlib_buffer_from_rte_mbuf (mb[0]);
227  vlib_buffer_copy_template (b[0], &bt);
228  or_flags |= dpdk_ol_flags_extract (mb, flags, 1);
229  flags += 1;
230 
231  b[0]->current_data = mb[0]->data_off - RTE_PKTMBUF_HEADROOM;
232  n_bytes += b[0]->current_length = mb[0]->data_len;
233 
234  if (maybe_multiseg)
235  n_bytes += dpdk_process_subseq_segs (vm, b[0], mb[0], &bt);
236 
237  /* next */
238  mb += 1;
239  n_left -= 1;
240  }
241 
242  *or_flagsp = or_flags;
243  return n_bytes;
244 }
245 
248  uword n_rx_packets)
249 {
250  uword n;
252  vlib_buffer_t *b0;
253 
254  /* TODO prefetch and quad-loop */
255  for (n = 0; n < n_rx_packets; n++)
256  {
257  if ((ptd->flags[n] & PKT_RX_FDIR_ID) == 0)
258  continue;
259 
261  ptd->mbufs[n]->hash.fdir.hi);
262 
263  if (fle->next_index != (u16) ~ 0)
264  ptd->next[n] = fle->next_index;
265 
266  if (fle->flow_id != ~0)
267  {
268  b0 = vlib_buffer_from_rte_mbuf (ptd->mbufs[n]);
269  b0->flow_id = fle->flow_id;
270  }
271 
272  if (fle->buffer_advance != ~0)
273  {
274  b0 = vlib_buffer_from_rte_mbuf (ptd->mbufs[n]);
276  }
277  }
278 }
279 
283 {
284  uword n_rx_packets = 0, n_rx_bytes;
285  dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, queue_id);
286  u32 n_left, n_trace;
287  u32 *buffers;
289  struct rte_mbuf **mb;
290  vlib_buffer_t *b0;
291  u16 *next;
292  u16 or_flags;
293  u32 n;
294  int single_next = 0;
295 
297  thread_index);
298  vlib_buffer_t *bt = &ptd->buffer_template;
299 
300  if ((xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) == 0)
301  return 0;
302 
303  /* get up to DPDK_RX_BURST_SZ buffers from PMD */
304  while (n_rx_packets < DPDK_RX_BURST_SZ)
305  {
306  n = rte_eth_rx_burst (xd->port_id, queue_id,
307  ptd->mbufs + n_rx_packets,
308  DPDK_RX_BURST_SZ - n_rx_packets);
309  n_rx_packets += n;
310 
311  if (n < 32)
312  break;
313  }
314 
315  if (n_rx_packets == 0)
316  return 0;
317 
318  /* Update buffer template */
319  vnet_buffer (bt)->sw_if_index[VLIB_RX] = xd->sw_if_index;
320  bt->error = node->errors[DPDK_ERROR_NONE];
321  /* as DPDK is allocating empty buffers from mempool provided before interface
322  start for each queue, it is safe to store this in the template */
324  bt->ref_count = 1;
325  vnet_buffer (bt)->feature_arc_index = 0;
326  bt->current_config_index = 0;
327 
328  /* receive burst of packets from DPDK PMD */
329  if (PREDICT_FALSE (xd->per_interface_next_index != ~0))
330  next_index = xd->per_interface_next_index;
331 
332  /* as all packets belong to the same interface feature arc lookup
333  can be don once and result stored in the buffer template */
335  vnet_feature_start_device_input_x1 (xd->sw_if_index, &next_index, bt);
336 
337  if (xd->flags & DPDK_DEVICE_FLAG_MAYBE_MULTISEG)
338  n_rx_bytes = dpdk_process_rx_burst (vm, ptd, n_rx_packets, 1, &or_flags);
339  else
340  n_rx_bytes = dpdk_process_rx_burst (vm, ptd, n_rx_packets, 0, &or_flags);
341 
342  if (PREDICT_FALSE (or_flags & PKT_RX_FDIR))
343  {
344  /* some packets will need to go to different next nodes */
345  for (n = 0; n < n_rx_packets; n++)
346  ptd->next[n] = next_index;
347 
348  /* flow offload - process if rx flow offload enabled and at least one
349  packet is marked */
350  if (PREDICT_FALSE ((xd->flags & DPDK_DEVICE_FLAG_RX_FLOW_OFFLOAD) &&
351  (or_flags & PKT_RX_FDIR)))
352  dpdk_process_flow_offload (xd, ptd, n_rx_packets);
353 
354  /* enqueue buffers to the next node */
355  vlib_get_buffer_indices_with_offset (vm, (void **) ptd->mbufs,
356  ptd->buffers, n_rx_packets,
357  sizeof (struct rte_mbuf));
358 
359  vlib_buffer_enqueue_to_next (vm, node, ptd->buffers, ptd->next,
360  n_rx_packets);
361  }
362  else
363  {
364  u32 *to_next, n_left_to_next;
365 
366  vlib_get_new_next_frame (vm, node, next_index, to_next, n_left_to_next);
367  vlib_get_buffer_indices_with_offset (vm, (void **) ptd->mbufs, to_next,
368  n_rx_packets,
369  sizeof (struct rte_mbuf));
370 
372  {
373  vlib_next_frame_t *nf;
374  vlib_frame_t *f;
376  nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
377  f = vlib_get_frame (vm, nf->frame);
379 
380  ef = vlib_frame_scalar_args (f);
381  ef->sw_if_index = xd->sw_if_index;
382  ef->hw_if_index = xd->hw_if_index;
383 
384  /* if PMD supports ip4 checksum check and there are no packets
385  marked as ip4 checksum bad we can notify ethernet input so it
386  can send pacets to ip4-input-no-checksum node */
387  if (xd->flags & DPDK_DEVICE_FLAG_RX_IP4_CKSUM &&
388  (or_flags & PKT_RX_IP_CKSUM_BAD) == 0)
391  }
392  n_left_to_next -= n_rx_packets;
393  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
394  single_next = 1;
395  }
396 
397  /* packet trace if enabled */
398  if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node))))
399  {
400  if (single_next)
401  vlib_get_buffer_indices_with_offset (vm, (void **) ptd->mbufs,
402  ptd->buffers, n_rx_packets,
403  sizeof (struct rte_mbuf));
404 
405  n_left = n_rx_packets;
406  buffers = ptd->buffers;
407  mb = ptd->mbufs;
408  next = ptd->next;
409 
410  while (n_trace && n_left)
411  {
412  b0 = vlib_get_buffer (vm, buffers[0]);
413  if (single_next == 0)
414  next_index = next[0];
415 
416  if (PREDICT_TRUE
418  (vm, node, next_index, b0, /* follow_chain */ 0)))
419  {
420 
421  dpdk_rx_trace_t *t0 =
422  vlib_add_trace (vm, node, b0, sizeof t0[0]);
423  t0->queue_index = queue_id;
424  t0->device_index = xd->device_index;
425  t0->buffer_index = vlib_get_buffer_index (vm, b0);
426 
427  clib_memcpy_fast (&t0->mb, mb[0], sizeof t0->mb);
428  clib_memcpy_fast (&t0->buffer, b0,
429  sizeof b0[0] - sizeof b0->pre_data);
431  sizeof t0->buffer.pre_data);
432  clib_memcpy_fast (&t0->data, mb[0]->buf_addr + mb[0]->data_off,
433  sizeof t0->data);
434  n_trace--;
435  }
436 
437  n_left--;
438  buffers++;
439  mb++;
440  next++;
441  }
442  vlib_set_trace_count (vm, node, n_trace);
443  }
444 
446  (vnet_get_main ()->interface_main.combined_sw_if_counters
447  + VNET_INTERFACE_COUNTER_RX, thread_index, xd->sw_if_index,
448  n_rx_packets, n_rx_bytes);
449 
450  vnet_device_increment_rx_packets (thread_index, n_rx_packets);
451 
452  return n_rx_packets;
453 }
454 
456  vlib_frame_t * f)
457 {
458  dpdk_main_t *dm = &dpdk_main;
459  dpdk_device_t *xd;
460  uword n_rx_packets = 0;
463 
464  /*
465  * Poll all devices on this cpu for input/interrupts.
466  */
467 
469 
470  for (int i = 0; i < vec_len (pv); i++)
471  {
472  xd = vec_elt_at_index (dm->devices, pv[i].dev_instance);
473  n_rx_packets +=
474  dpdk_device_input (vm, dm, xd, node, thread_index, pv[i].queue_id);
475  }
476  return n_rx_packets;
477 }
478 
479 /* *INDENT-OFF* */
481  .type = VLIB_NODE_TYPE_INPUT,
482  .name = "dpdk-input",
483  .sibling_of = "device-input",
485 
486  /* Will be enabled if/when hardware is detected. */
487  .state = VLIB_NODE_STATE_DISABLED,
488 
489  .format_buffer = format_ethernet_header_with_length,
490  .format_trace = format_dpdk_rx_trace,
491 
492  .n_errors = DPDK_N_ERROR,
493  .error_strings = dpdk_error_strings,
494 };
495 /* *INDENT-ON* */
496 
497 /*
498  * fd.io coding-style-patch-verification: ON
499  *
500  * Local Variables:
501  * eval: (c-set-style "gnu")
502  * End:
503  */
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:133
static void vnet_device_increment_rx_packets(u32 thread_index, u64 count)
Definition: devices.h:86
static_always_inline void dpdk_process_flow_offload(dpdk_device_t *xd, dpdk_per_thread_data_t *ptd, uword n_rx_packets)
Definition: node.c:247
static_always_inline void dpdk_prefetch_mbuf_x4(struct rte_mbuf *mb[])
Definition: node.c:87
#define vlib_buffer_from_rte_mbuf(x)
Definition: buffer.h:20
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
Definition: trace_funcs.h:212
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
dpdk_main_t dpdk_main
Definition: init.c:48
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:480
u32 n_bytes
u32 thread_index
#define PREDICT_TRUE(x)
Definition: clib.h:125
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
u32 sw_if_index
Definition: dpdk.h:192
static_always_inline void dpdk_prefetch_buffer_x4(struct rte_mbuf *mb[])
Definition: node.c:96
#define foreach_dpdk_error
Definition: dpdk.h:417
vlib_increment_combined_counter(ccm, ti, sw_if_index, n_buffers, n_bytes)
u8 buffer_pool_index
Definition: dpdk.h:169
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:296
static_always_inline vnet_hw_if_rxq_poll_vector_t * vnet_hw_if_get_rxq_poll_vector(vlib_main_t *vm, vlib_node_runtime_t *node)
u16 flags
Definition: dpdk.h:199
u32 thread_index
Definition: main.h:213
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:273
u32 per_interface_next_index
Definition: dpdk.h:195
#define VLIB_NODE_FN(node)
Definition: node.h:202
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:461
unsigned char u8
Definition: types.h:56
vlib_buffer_t ** b
static_always_inline uword dpdk_process_rx_burst(vlib_main_t *vm, dpdk_per_thread_data_t *ptd, uword n_rx_packets, int maybe_multiseg, u16 *or_flagsp)
Definition: node.c:164
u8 buffer_pool_index
index of buffer pool this buffer belongs.
Definition: buffer.h:142
unsigned int u32
Definition: types.h:88
vlib_frame_t * f
if(node->flags &VLIB_NODE_FLAG_TRACE) vnet_interface_output_trace(vm
#define static_always_inline
Definition: clib.h:112
dpdk_portid_t port_id
Definition: dpdk.h:202
#define ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX
Definition: ethernet.h:52
static_always_inline int vnet_device_input_have_features(u32 sw_if_index)
Definition: feature.h:336
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define vlib_get_new_next_frame(vm, node, next_index, vectors, n_vectors_left)
Definition: node_funcs.h:400
vnet_main_t * vnet_get_main(void)
static char * dpdk_error_strings[]
Definition: node.c:33
vlib_buffer_enqueue_to_next(vm, node, from,(u16 *) nexts, frame->n_vectors)
i16 buffer_advance
Definition: dpdk.h:163
int __clib_unused rv
Definition: application.c:491
static vlib_next_frame_t * vlib_node_runtime_get_next_frame(vlib_main_t *vm, vlib_node_runtime_t *n, u32 next_index)
Definition: node_funcs.h:321
u32 device_index
Definition: dpdk.h:189
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:324
#define DPDK_RX_BURST_SZ
Definition: dpdk.h:340
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
u16 * next
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
static_always_inline u16 dpdk_ol_flags_extract(struct rte_mbuf **mb, u16 *flags, int count)
Main DPDK input node.
Definition: node.c:149
dpdk_per_thread_data_t * per_thread_data
Definition: dpdk.h:358
static_always_inline void vlib_buffer_copy_template(vlib_buffer_t *b, vlib_buffer_t *bt)
Definition: buffer_funcs.h:171
static __clib_warn_unused_result int vlib_trace_buffer(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, vlib_buffer_t *b, int follow_chain)
Definition: trace_funcs.h:153
unsigned short u16
Definition: types.h:57
#define ETH_INPUT_FRAME_F_IP4_CKSUM_OK
Definition: ethernet.h:55
vlib_buffer_t buffer_template
Definition: dpdk.h:350
STATIC_ASSERT(STRUCT_OFFSET_OF(vnet_buffer_opaque_t, l2_hdr_offset)==STRUCT_OFFSET_OF(vnet_buffer_opaque_t, l3_hdr_offset) - 2, "l3_hdr_offset must follow l2_hdr_offset")
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
static_always_inline void vlib_get_buffer_indices_with_offset(vlib_main_t *vm, void **b, u32 *bi, uword count, i32 offset)
Translate array of buffer pointers into buffer indices with offset.
Definition: buffer_funcs.h:343
u32 n_left
u32 hw_if_index
Definition: dpdk.h:191
u8 * format_ethernet_header_with_length(u8 *s, va_list *args)
Definition: format.c:97
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u16 flags[DPDK_RX_BURST_SZ]
Definition: dpdk.h:349
dpdk_device_t * devices
Definition: dpdk.h:357
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
dpdk_flow_lookup_entry_t * flow_lookup_entries
Definition: dpdk.h:223
u32 flow_id
Generic flow identifier.
Definition: buffer.h:136
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
u8 data[]
Packet data.
Definition: buffer.h:204
static void * vlib_frame_scalar_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:315
u32 current_config_index
Used by feature subgraph arcs to visit enabled feature nodes.
Definition: buffer.h:156
u32 buffers[DPDK_RX_BURST_SZ]
Definition: dpdk.h:346
static_always_inline u32 dpdk_device_input(vlib_main_t *vm, dpdk_main_t *dm, dpdk_device_t *xd, vlib_node_runtime_t *node, u32 thread_index, u16 queue_id)
Definition: node.c:281
u16 device_index
Definition: dpdk.h:403
#define ASSERT(truth)
u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]
Space for inserting data before buffer start.
Definition: buffer.h:201
u16 next[DPDK_RX_BURST_SZ]
Definition: dpdk.h:347
vlib_frame_t * frame
Definition: node.h:397
u16 flags
Definition: node.h:379
vlib_put_next_frame(vm, node, next_index, 0)
vlib_buffer_t buffer
Definition: dpdk.h:407
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:276
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
nat44_ei_hairpin_src_next_t next_index
u32 buffer_index
Definition: dpdk.h:402
format_function_t format_dpdk_rx_trace
Definition: dpdk.h:476
Definition: dpdk.h:159
struct rte_mbuf * mbufs[DPDK_RX_BURST_SZ]
Definition: dpdk.h:345
u8 data[256]
Definition: dpdk.h:406
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:149
VLIB buffer representation.
Definition: buffer.h:111
u64 uword
Definition: types.h:112
u16 next_index
Definition: dpdk.h:162
#define vnet_buffer(b)
Definition: buffer.h:437
static_always_inline void vnet_feature_start_device_input_x1(u32 sw_if_index, u32 *next0, vlib_buffer_t *b0)
Definition: feature.h:343
u8 count
Definition: dhcp.api:208
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:628
dpdk_rx_queue_t * rx_queues
Definition: dpdk.h:185
static void vlib_frame_no_append(vlib_frame_t *f)
Definition: node_funcs.h:281
struct rte_mbuf mb
Definition: dpdk.h:405
static void vlib_set_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 count)
Definition: trace_funcs.h:226
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:176
static_always_inline uword dpdk_process_subseq_segs(vlib_main_t *vm, vlib_buffer_t *b, struct rte_mbuf *mb, vlib_buffer_t *bt)
Definition: node.c:44
volatile u8 ref_count
Reference count for this buffer.
Definition: buffer.h:139
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:111
u32 flow_id
Definition: dpdk.h:161
Definition: defs.h:46
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
u16 queue_index
Definition: dpdk.h:404