rdma: add support for input feature arcs
[vpp.git] / src / plugins / rdma / input.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 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 <vlib/vlib.h>
19 #include <vlib/unix/unix.h>
20 #include <vlib/pci/pci.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/devices/devices.h>
23
24 #include <rdma/rdma.h>
25
26 #define foreach_rdma_input_error \
27   _(BUFFER_ALLOC, "buffer alloc error")
28
29 typedef enum
30 {
31 #define _(f,s) RDMA_INPUT_ERROR_##f,
32   foreach_rdma_input_error
33 #undef _
34     RDMA_INPUT_N_ERROR,
35 } rdma_input_error_t;
36
37 static __clib_unused char *rdma_input_error_strings[] = {
38 #define _(n,s) s,
39   foreach_rdma_input_error
40 #undef _
41 };
42
43 static_always_inline void
44 rdma_device_input_refill (vlib_main_t * vm, rdma_device_t * rd,
45                           rdma_rxq_t * rxq)
46 {
47   u32 n_alloc, n;
48   u32 buffers[VLIB_FRAME_SIZE], *bi = buffers;
49   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
50   struct ibv_recv_wr wr[VLIB_FRAME_SIZE], *w = wr;
51   struct ibv_sge sge[VLIB_FRAME_SIZE], *s = sge;
52
53   if (PREDICT_FALSE (rxq->n_enq >= rxq->size))
54     return;
55
56   n_alloc = clib_min (VLIB_FRAME_SIZE, rxq->size - rxq->n_enq);
57   n_alloc = n = vlib_buffer_alloc (vm, buffers, n_alloc);
58   vlib_get_buffers (vm, buffers, bufs, n_alloc);
59
60   while (n >= 4)
61     {
62       if (PREDICT_TRUE (n >= 8))
63         {
64           CLIB_PREFETCH (&s[4 + 0], 4 * sizeof (s[0]), STORE);
65           CLIB_PREFETCH (&w[4 + 0], 4 * sizeof (w[0]), STORE);
66         }
67
68       s[0].addr = vlib_buffer_get_va (b[0]);
69       s[0].length = vlib_buffer_get_default_data_size (vm);
70       s[0].lkey = rd->mr->lkey;
71
72       s[1].addr = vlib_buffer_get_va (b[1]);
73       s[1].length = vlib_buffer_get_default_data_size (vm);
74       s[1].lkey = rd->mr->lkey;
75
76       s[2].addr = vlib_buffer_get_va (b[2]);
77       s[2].length = vlib_buffer_get_default_data_size (vm);
78       s[2].lkey = rd->mr->lkey;
79
80       s[3].addr = vlib_buffer_get_va (b[3]);
81       s[3].length = vlib_buffer_get_default_data_size (vm);
82       s[3].lkey = rd->mr->lkey;
83
84       w[0].wr_id = bi[0];
85       w[0].next = &w[0] + 1;
86       w[0].sg_list = &s[0];
87       w[0].num_sge = 1;
88
89       w[1].wr_id = bi[1];
90       w[1].next = &w[1] + 1;
91       w[1].sg_list = &s[1];
92       w[1].num_sge = 1;
93
94       w[2].wr_id = bi[2];
95       w[2].next = &w[2] + 1;
96       w[2].sg_list = &s[2];
97       w[2].num_sge = 1;
98
99       w[3].wr_id = bi[3];
100       w[3].next = &w[3] + 1;
101       w[3].sg_list = &s[3];
102       w[3].num_sge = 1;
103
104       s += 4;
105       bi += 4;
106       w += 4;
107       b += 4;
108       n -= 4;
109     }
110
111   while (n >= 1)
112     {
113       s[0].addr = vlib_buffer_get_va (b[0]);
114       s[0].length = vlib_buffer_get_default_data_size (vm);
115       s[0].lkey = rd->mr->lkey;
116
117       w[0].wr_id = bi[0];
118       w[0].next = &w[0] + 1;
119       w[0].sg_list = &s[0];
120       w[0].num_sge = 1;
121
122       s += 1;
123       bi += 1;
124       w += 1;
125       b += 1;
126       n -= 1;
127     }
128
129   w[-1].next = 0;               /* fix next pointer in WR linked-list last item */
130
131   n = n_alloc;
132   if (ibv_post_wq_recv (rxq->wq, wr, &w) != 0)
133     {
134       n = w - wr;
135       vlib_buffer_free (vm, buffers + n, n_alloc - n);
136     }
137
138   rxq->n_enq += n;
139 }
140
141 static_always_inline void
142 rdma_device_input_trace (vlib_main_t * vm, vlib_node_runtime_t * node,
143                          const rdma_device_t * rd, u32 n_left, const u32 * bi,
144                          u32 next_index)
145 {
146   u32 n_trace, i;
147
148   if (PREDICT_TRUE (0 == (n_trace = vlib_get_trace_count (vm, node))))
149     return;
150
151   i = 0;
152   while (n_trace && n_left)
153     {
154       vlib_buffer_t *b;
155       rdma_input_trace_t *tr;
156       b = vlib_get_buffer (vm, bi[0]);
157       vlib_trace_buffer (vm, node, next_index, b,
158                          /* follow_chain */ 0);
159       tr = vlib_add_trace (vm, node, b, sizeof (*tr));
160       tr->next_index = next_index;
161       tr->hw_if_index = rd->hw_if_index;
162
163       /* next */
164       n_trace--;
165       n_left--;
166       bi++;
167       i++;
168     }
169   vlib_set_trace_count (vm, node, n_trace);
170 }
171
172 static_always_inline void
173 rdma_device_input_ethernet (vlib_main_t * vm, vlib_node_runtime_t * node,
174                             const rdma_device_t * rd, u32 next_index)
175 {
176   vlib_next_frame_t *nf;
177   vlib_frame_t *f;
178   ethernet_input_frame_t *ef;
179
180   if (PREDICT_FALSE (VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT != next_index))
181     return;
182
183   nf =
184     vlib_node_runtime_get_next_frame (vm, node,
185                                       VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT);
186   f = vlib_get_frame (vm, nf->frame);
187   f->flags = ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX;
188   /* FIXME: f->flags |= ETH_INPUT_FRAME_F_IP4_CKSUM_OK; */
189
190   ef = vlib_frame_scalar_args (f);
191   ef->sw_if_index = rd->sw_if_index;
192   ef->hw_if_index = rd->hw_if_index;
193 }
194
195 static_always_inline u32
196 rdma_device_input_load_wc (u32 n_left_from, struct ibv_wc * wc, u32 * to_next,
197                            u32 * bufsz)
198 {
199   u32 n_rx_bytes[4] = { 0 };
200
201   while (n_left_from >= 4)
202     {
203       if (PREDICT_TRUE (n_left_from >= 8))
204         {
205           CLIB_PREFETCH (&wc[4 + 0], CLIB_CACHE_LINE_BYTES, LOAD);
206           CLIB_PREFETCH (&wc[4 + 1], CLIB_CACHE_LINE_BYTES, LOAD);
207           CLIB_PREFETCH (&wc[4 + 2], CLIB_CACHE_LINE_BYTES, LOAD);
208           CLIB_PREFETCH (&wc[4 + 3], CLIB_CACHE_LINE_BYTES, LOAD);
209           CLIB_PREFETCH (&bufsz[4 + 0], 4 * sizeof (bufsz[0]), STORE);
210           CLIB_PREFETCH (&to_next[4 + 0], 4 * sizeof (to_next[0]), STORE);
211         }
212
213       to_next[0] = wc[0].wr_id;
214       to_next[1] = wc[1].wr_id;
215       to_next[2] = wc[2].wr_id;
216       to_next[3] = wc[3].wr_id;
217
218       bufsz[0] = wc[0].byte_len;
219       bufsz[1] = wc[1].byte_len;
220       bufsz[2] = wc[2].byte_len;
221       bufsz[3] = wc[3].byte_len;
222
223       n_rx_bytes[0] += wc[0].byte_len;
224       n_rx_bytes[1] += wc[1].byte_len;
225       n_rx_bytes[2] += wc[2].byte_len;
226       n_rx_bytes[3] += wc[3].byte_len;
227
228       wc += 4;
229       to_next += 4;
230       bufsz += 4;
231       n_left_from -= 4;
232     }
233
234   while (n_left_from >= 1)
235     {
236       to_next[0] = wc[0].wr_id;
237       bufsz[0] = wc[0].byte_len;
238       n_rx_bytes[0] += wc[0].byte_len;
239
240       wc += 1;
241       to_next += 1;
242       bufsz += 1;
243       n_left_from -= 1;
244     }
245
246   return n_rx_bytes[0] + n_rx_bytes[1] + n_rx_bytes[2] + n_rx_bytes[3];
247 }
248
249 static_always_inline void
250 rdma_device_input_bufs_init (u32 n_left_from, vlib_buffer_t ** bufs,
251                              u32 * bufsz, u32 sw_if_index, vlib_buffer_t * bt)
252 {
253   vnet_buffer (bt)->sw_if_index[VLIB_RX] = sw_if_index;
254   vnet_buffer (bt)->sw_if_index[VLIB_TX] = ~0;
255   bt->buffer_pool_index = bufs[0]->buffer_pool_index;
256   bt->ref_count = 1;
257
258   while (n_left_from >= 4)
259     {
260       if (PREDICT_TRUE (n_left_from >= 8))
261         {
262           vlib_prefetch_buffer_header (bufs[4 + 0], STORE);
263           vlib_prefetch_buffer_header (bufs[4 + 1], STORE);
264           vlib_prefetch_buffer_header (bufs[4 + 2], STORE);
265           vlib_prefetch_buffer_header (bufs[4 + 3], STORE);
266           CLIB_PREFETCH (&bufsz[4 + 0], 4 * sizeof (bufsz[0]), LOAD);
267         }
268
269       vlib_buffer_copy_template (bufs[0], bt);
270       vlib_buffer_copy_template (bufs[1], bt);
271       vlib_buffer_copy_template (bufs[2], bt);
272       vlib_buffer_copy_template (bufs[3], bt);
273
274       bufs[0]->current_length = bufsz[0];
275       bufs[1]->current_length = bufsz[1];
276       bufs[2]->current_length = bufsz[2];
277       bufs[3]->current_length = bufsz[3];
278
279       bufs += 4;
280       bufsz += 4;
281       n_left_from -= 4;
282     }
283
284   while (n_left_from >= 1)
285     {
286       vlib_buffer_copy_template (bufs[0], bt);
287       bufs[0]->current_length = bufsz[0];
288
289       bufs += 1;
290       bufsz += 1;
291       n_left_from -= 1;
292     }
293 }
294
295 static_always_inline uword
296 rdma_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
297                           vlib_frame_t * frame, rdma_device_t * rd, u16 qid)
298 {
299   vnet_main_t *vnm = vnet_get_main ();
300   rdma_rxq_t *rxq = vec_elt_at_index (rd->rxqs, qid);
301   struct ibv_wc wc[VLIB_FRAME_SIZE];
302   u32 bufsz[VLIB_FRAME_SIZE];
303   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], bt;
304   u32 next_index, *to_next, n_left_to_next;
305   u32 n_rx_packets, n_rx_bytes;
306
307   n_rx_packets = ibv_poll_cq (rxq->cq, VLIB_FRAME_SIZE, wc);
308
309   if (PREDICT_FALSE (n_rx_packets <= 0))
310     {
311       rdma_device_input_refill (vm, rd, rxq);
312       return 0;
313     }
314
315   clib_memset_u64 (&bt, 0,
316                    STRUCT_OFFSET_OF (vlib_buffer_t,
317                                      template_end) / sizeof (u64));
318   next_index = rd->per_interface_next_index;
319   if (PREDICT_FALSE (vnet_device_input_have_features (rd->sw_if_index)))
320     vnet_feature_start_device_input_x1 (rd->sw_if_index, &next_index, &bt);
321
322   vlib_get_new_next_frame (vm, node, next_index, to_next, n_left_to_next);
323   n_rx_bytes = rdma_device_input_load_wc (n_rx_packets, wc, to_next, bufsz);
324   vlib_get_buffers (vm, to_next, bufs, n_rx_packets);
325   rdma_device_input_bufs_init (n_rx_packets, bufs, bufsz, rd->sw_if_index,
326                                &bt);
327   rdma_device_input_trace (vm, node, rd, n_rx_packets, to_next, next_index);
328   rdma_device_input_ethernet (vm, node, rd, next_index);
329
330   vlib_put_next_frame (vm, node, next_index, n_left_to_next - n_rx_packets);
331
332   vlib_increment_combined_counter
333     (vnm->interface_main.combined_sw_if_counters +
334      VNET_INTERFACE_COUNTER_RX, vm->thread_index,
335      rd->hw_if_index, n_rx_packets, n_rx_bytes);
336
337   rxq->n_enq -= n_rx_packets;
338
339   rdma_device_input_refill (vm, rd, rxq);
340
341   return n_rx_packets;
342 }
343
344 VLIB_NODE_FN (rdma_input_node) (vlib_main_t * vm,
345                                 vlib_node_runtime_t * node,
346                                 vlib_frame_t * frame)
347 {
348   u32 n_rx = 0;
349   rdma_main_t *rm = &rdma_main;
350   vnet_device_input_runtime_t *rt = (void *) node->runtime_data;
351   vnet_device_and_queue_t *dq;
352
353   foreach_device_and_queue (dq, rt->devices_and_queues)
354   {
355     rdma_device_t *rd;
356     rd = vec_elt_at_index (rm->devices, dq->dev_instance);
357     if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_ADMIN_UP))
358       n_rx += rdma_device_input_inline (vm, node, frame, rd, dq->queue_id);
359   }
360   return n_rx;
361 }
362
363 /* *INDENT-OFF* */
364 VLIB_REGISTER_NODE (rdma_input_node) = {
365   .name = "rdma-input",
366   .sibling_of = "device-input",
367   .format_trace = format_rdma_input_trace,
368   .type = VLIB_NODE_TYPE_INPUT,
369   .state = VLIB_NODE_STATE_DISABLED,
370   .n_errors = RDMA_INPUT_N_ERROR,
371   .error_strings = rdma_input_error_strings,
372 };
373
374 /* *INDENT-ON* */
375
376
377 /*
378  * fd.io coding-style-patch-verification: ON
379  *
380  * Local Variables:
381  * eval: (c-set-style "gnu")
382  * End:
383  */