FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
node.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2016 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #include <stdint.h>
19 #include <net/if.h>
20 #include <sys/ioctl.h>
21 
22 #include <vlib/vlib.h>
23 #include <vlib/unix/unix.h>
24 #include <vnet/ethernet/ethernet.h>
25 #include <vnet/devices/devices.h>
26 #include <vnet/feature/feature.h>
27 
28 #include <vnet/devices/netmap/net_netmap.h>
29 #include <vnet/devices/netmap/netmap.h>
30 
31 #define foreach_netmap_input_error
32 
33 typedef enum
34 {
35 #define _(f,s) NETMAP_INPUT_ERROR_##f,
37 #undef _
40 
41 static char *netmap_input_error_strings[] = {
42 #define _(n,s) s,
44 #undef _
45 };
46 
47 typedef struct
48 {
51  struct netmap_slot slot;
53 
54 static u8 *
55 format_netmap_input_trace (u8 * s, va_list * args)
56 {
57  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
58  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
59  netmap_input_trace_t *t = va_arg (*args, netmap_input_trace_t *);
60  u32 indent = format_get_indent (s);
61 
62  s = format (s, "netmap: hw_if_index %d next-index %d",
63  t->hw_if_index, t->next_index);
64  s = format (s, "\n%Uslot: flags 0x%x len %u buf_idx %u",
65  format_white_space, indent + 2,
66  t->slot.flags, t->slot.len, t->slot.buf_idx);
67  return s;
68 }
69 
70 always_inline void
71 buffer_add_to_chain (vlib_main_t * vm, u32 bi, u32 first_bi, u32 prev_bi)
72 {
74  vlib_buffer_t *first_b = vlib_get_buffer (vm, first_bi);
75  vlib_buffer_t *prev_b = vlib_get_buffer (vm, prev_bi);
76 
77  /* update first buffer */
79 
80  /* update previous buffer */
81  prev_b->next_buffer = bi;
82  prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
83 
84  /* update current buffer */
85  b->next_buffer = 0;
86 }
87 
91 {
93  uword n_trace = vlib_get_trace_count (vm, node);
95  u32 n_rx_packets = 0;
96  u32 n_rx_bytes = 0;
97  u32 *to_next = 0;
98  u32 n_free_bufs;
99  struct netmap_ring *ring;
100  int cur_ring;
102  u32 n_buffer_bytes = vlib_buffer_get_default_data_size (vm);
103 
104  if (nif->per_interface_next_index != ~0)
106 
107  n_free_bufs = vec_len (nm->rx_buffers[thread_index]);
108  if (PREDICT_FALSE (n_free_bufs < VLIB_FRAME_SIZE))
109  {
110  vec_validate (nm->rx_buffers[thread_index],
111  VLIB_FRAME_SIZE + n_free_bufs - 1);
112  n_free_bufs +=
113  vlib_buffer_alloc (vm, &nm->rx_buffers[thread_index][n_free_bufs],
115  _vec_len (nm->rx_buffers[thread_index]) = n_free_bufs;
116  }
117 
118  cur_ring = nif->first_rx_ring;
119  while (cur_ring <= nif->last_rx_ring && n_free_bufs)
120  {
121  int r = 0;
122  u32 cur_slot_index;
123  ring = NETMAP_RXRING (nif->nifp, cur_ring);
124  r = nm_ring_space (ring);
125 
126  if (!r)
127  {
128  cur_ring++;
129  continue;
130  }
131 
132  if (r > n_free_bufs)
133  r = n_free_bufs;
134 
135  cur_slot_index = ring->cur;
136  while (r)
137  {
138  u32 n_left_to_next;
139  u32 next0 = next_index;
140  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
141 
142  while (r && n_left_to_next)
143  {
144  vlib_buffer_t *first_b0 = 0;
145  u32 offset = 0;
146  u32 bi0 = 0, first_bi0 = 0, prev_bi0;
147  u32 next_slot_index = (cur_slot_index + 1) % ring->num_slots;
148  u32 next2_slot_index = (cur_slot_index + 2) % ring->num_slots;
149  struct netmap_slot *slot = &ring->slot[cur_slot_index];
150  u32 data_len = slot->len;
151 
152  /* prefetch 2 slots in advance */
153  CLIB_PREFETCH (&ring->slot[next2_slot_index],
154  CLIB_CACHE_LINE_BYTES, LOAD);
155  /* prefetch start of next packet */
156  CLIB_PREFETCH (NETMAP_BUF
157  (ring, ring->slot[next_slot_index].buf_idx),
158  CLIB_CACHE_LINE_BYTES, LOAD);
159 
160  while (data_len && n_free_bufs)
161  {
162  vlib_buffer_t *b0;
163  /* grab free buffer */
164  u32 last_empty_buffer =
165  vec_len (nm->rx_buffers[thread_index]) - 1;
166  prev_bi0 = bi0;
167  bi0 = nm->rx_buffers[thread_index][last_empty_buffer];
168  b0 = vlib_get_buffer (vm, bi0);
169  _vec_len (nm->rx_buffers[thread_index]) = last_empty_buffer;
170  n_free_bufs--;
171 
172  /* copy data */
173  u32 bytes_to_copy =
174  data_len > n_buffer_bytes ? n_buffer_bytes : data_len;
175  b0->current_data = 0;
177  (u8 *) NETMAP_BUF (ring, slot->buf_idx) +
178  offset, bytes_to_copy);
179 
180  /* fill buffer header */
181  b0->current_length = bytes_to_copy;
182 
183  if (offset == 0)
184  {
186  b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
187  vnet_buffer (b0)->sw_if_index[VLIB_RX] =
188  nif->sw_if_index;
189  vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
190  first_bi0 = bi0;
191  first_b0 = vlib_get_buffer (vm, first_bi0);
192  }
193  else
194  buffer_add_to_chain (vm, bi0, first_bi0, prev_bi0);
195 
196  offset += bytes_to_copy;
197  data_len -= bytes_to_copy;
198  }
199 
200  /* trace */
201  if (PREDICT_FALSE (n_trace > 0))
202  {
203  if (PREDICT_TRUE (first_b0 != 0))
204  {
206  vlib_trace_buffer (vm, node, next0, first_b0,
207  /* follow_chain */ 0);
208  vlib_set_trace_count (vm, node, --n_trace);
209  tr = vlib_add_trace (vm, node, first_b0, sizeof (*tr));
210  tr->next_index = next0;
211  tr->hw_if_index = nif->hw_if_index;
212  memcpy (&tr->slot, slot, sizeof (struct netmap_slot));
213  }
214  }
215 
216  /* redirect if feature path enabled */
218  first_b0);
219 
220  /* enque and take next packet */
222  n_left_to_next, first_bi0,
223  next0);
224 
225  /* next packet */
226  n_rx_packets++;
227  n_rx_bytes += slot->len;
228  to_next[0] = first_bi0;
229  to_next += 1;
230  n_left_to_next--;
231  cur_slot_index = next_slot_index;
232 
233  r--;
234  }
235  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
236  }
237  ring->head = ring->cur = cur_slot_index;
238  cur_ring++;
239  }
240 
241  if (n_rx_packets)
242  ioctl (nif->fd, NIOCRXSYNC, NULL);
243 
245  (vnet_get_main ()->interface_main.combined_sw_if_counters
247  vlib_get_thread_index (), nif->hw_if_index, n_rx_packets, n_rx_bytes);
248 
250 
251  return n_rx_packets;
252 }
253 
257 {
258  int i;
259  u32 n_rx_packets = 0;
262  netmap_if_t *nmi;
263 
264  for (i = 0; i < vec_len (nm->interfaces); i++)
265  {
266  nmi = vec_elt_at_index (nm->interfaces, i);
267  if (nmi->is_admin_up &&
268  (i % nm->input_cpu_count) ==
269  (thread_index - nm->input_cpu_first_index))
270  n_rx_packets += netmap_device_input_fn (vm, node, frame, nmi);
271  }
272 
273  return n_rx_packets;
274 }
275 
276 /* *INDENT-OFF* */
278  .name = "netmap-input",
279  .sibling_of = "device-input",
281  .format_trace = format_netmap_input_trace,
282  .type = VLIB_NODE_TYPE_INPUT,
283  /* default state is INTERRUPT mode, switch to POLLING if worker threads are enabled */
284  .state = VLIB_NODE_STATE_INTERRUPT,
285  .n_errors = NETMAP_INPUT_N_ERROR,
286  .error_strings = netmap_input_error_strings,
287 };
288 /* *INDENT-ON* */
289 
290 
291 /*
292  * fd.io coding-style-patch-verification: ON
293  *
294  * Local Variables:
295  * eval: (c-set-style "gnu")
296  * End:
297  */
vlib.h
netmap_if_t::sw_if_index
u32 sw_if_index
Definition: netmap.h:52
vlib_buffer_t::next_buffer
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:149
netmap_ring
Definition: net_netmap.h:259
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:492
netmap_main
netmap_main_t netmap_main
Definition: netmap.c:30
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
netmap_if_t::hw_if_index
u32 hw_if_index
Definition: netmap.h:51
netmap_input_error_strings
static char * netmap_input_error_strings[]
Definition: node.c:41
next_index
nat44_ei_hairpin_src_next_t next_index
Definition: nat44_ei_hairpinning.c:412
vlib_get_buffer
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
nat44_ei_main_s::interfaces
nat44_ei_interface_t * interfaces
Definition: nat44_ei.h:339
VLIB_FRAME_SIZE
#define VLIB_FRAME_SIZE
Definition: node.h:368
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
VLIB_NODE_TYPE_INPUT
@ VLIB_NODE_TYPE_INPUT
Definition: node.h:76
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
netmap_if_t::nifp
struct netmap_if * nifp
Definition: netmap.h:62
VLIB_RX
@ VLIB_RX
Definition: defs.h:46
vlib_get_trace_count
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
Definition: trace_funcs.h:212
VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT
@ VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT
Definition: devices.h:28
netmap_if_t::first_rx_ring
u16 first_rx_ring
Definition: netmap.h:65
r
vnet_hw_if_output_node_runtime_t * r
Definition: interface_output.c:1071
vlib_frame_t
Definition: node.h:372
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
ethernet.h
netmap_ring::head
uint32_t head
Definition: net_netmap.h:271
CLIB_PREFETCH
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
vlib_buffer_t::current_data
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
netmap_input_trace_t::slot
struct netmap_slot slot
Definition: node.c:51
slot
u8 slot
Definition: pci_types.api:22
VLIB_NODE_FN
#define VLIB_NODE_FN(node)
Definition: node.h:202
feature.h
vlib_buffer_alloc
static __clib_warn_unused_result u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
Definition: buffer_funcs.h:708
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:437
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition: vec_bootstrap.h:203
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
netmap_slot
Definition: net_netmap.h:145
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_get_thread_index
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:208
netmap_slot::len
uint16_t len
Definition: net_netmap.h:147
netmap_slot::buf_idx
uint32_t buf_idx
Definition: net_netmap.h:146
uword
u64 uword
Definition: types.h:112
NIOCRXSYNC
#define NIOCRXSYNC
Definition: net_netmap.h:597
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:213
netmap_input_trace_t
Definition: node.c:47
netmap_input_node
vlib_node_registration_t netmap_input_node
(constructor) VLIB_REGISTER_NODE (netmap_input_node)
Definition: node.c:277
i
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
VLIB_NODE_FLAG_TRACE_SUPPORTED
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:295
buffer_add_to_chain
static void buffer_add_to_chain(vlib_main_t *vm, u32 bi, u32 first_bi, u32 prev_bi)
Definition: node.c:71
netmap_if_t::fd
int fd
Definition: netmap.h:61
vec_validate
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment)
Definition: vec.h:523
NETMAP_INPUT_N_ERROR
@ NETMAP_INPUT_N_ERROR
Definition: node.c:38
VNET_INTERFACE_COUNTER_RX
@ VNET_INTERFACE_COUNTER_RX
Definition: interface.h:914
netmap_main_t
Definition: netmap.h:77
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
vlib_set_trace_count
static void vlib_set_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 count)
Definition: trace_funcs.h:226
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
netmap_if_t::is_admin_up
u8 is_admin_up
Definition: netmap.h:56
netmap_input_error_t
netmap_input_error_t
Definition: node.c:33
netmap_input_trace_t::next_index
u32 next_index
Definition: node.c:49
vlib_validate_buffer_enqueue_x1
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:224
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
clib_bihash_value
template key/value backing page structure
Definition: bihash_doc.h:44
format
description fragment has unexpected format
Definition: map.api:433
format_get_indent
static u32 format_get_indent(u8 *s)
Definition: format.h:72
data_len
u8 data_len
Definition: ikev2_types.api:24
vlib_put_next_frame
vlib_put_next_frame(vm, node, next_index, 0)
netmap_if_t::per_interface_next_index
u32 per_interface_next_index
Definition: netmap.h:55
vlib_buffer_get_default_data_size
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
Definition: buffer_funcs.h:122
u32
unsigned int u32
Definition: types.h:88
foreach_netmap_input_error
#define foreach_netmap_input_error
Definition: node.c:31
netmap_ring::num_slots
const uint32_t num_slots
Definition: net_netmap.h:266
nm
nat44_ei_main_t * nm
Definition: nat44_ei_hairpinning.c:413
netmap_if_t
Definition: netmap.h:45
vlib_main_t
Definition: main.h:102
vlib_node_t
Definition: node.h:247
vlib_add_trace
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
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
netmap_ring::cur
uint32_t cur
Definition: net_netmap.h:272
u8
unsigned char u8
Definition: types.h:56
unix.h
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
vnet_feature_start_device_input_x1
static_always_inline void vnet_feature_start_device_input_x1(u32 sw_if_index, u32 *next0, vlib_buffer_t *b0)
Definition: feature.h:343
format_netmap_input_trace
static u8 * format_netmap_input_trace(u8 *s, va_list *args)
Definition: node.c:55
netmap_ring::slot
struct netmap_slot slot[0]
Definition: net_netmap.h:287
netmap_device_input_fn
static uword netmap_device_input_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, netmap_if_t *nif)
Definition: node.c:89
devices.h
vnet_device_increment_rx_packets
static void vnet_device_increment_rx_packets(u32 thread_index, u64 count)
Definition: devices.h:86
vlib_node_runtime_t
Definition: node.h:454
netmap_slot::flags
uint16_t flags
Definition: net_netmap.h:148
vlib_trace_buffer
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
PREDICT_TRUE
#define PREDICT_TRUE(x)
Definition: clib.h:125
vlib_buffer_t::total_length_not_including_first_buffer
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:176
vlib_get_next_frame
#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:395
VLIB_TX
@ VLIB_TX
Definition: defs.h:47
netmap_input_trace_t::hw_if_index
u32 hw_if_index
Definition: node.c:50
vlib_increment_combined_counter
vlib_increment_combined_counter(ccm, ti, sw_if_index, n_buffers, n_bytes)
format_white_space
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:129
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169