rdma: add support for MAC changes
[vpp.git] / src / plugins / rdma / device.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 <unistd.h>
19 #include <fcntl.h>
20 #include <net/if.h>
21 #include <linux/if_link.h>
22 #include <linux/if_ether.h>
23
24 #include <vppinfra/linux/sysfs.h>
25 #include <vlib/vlib.h>
26 #include <vlib/unix/unix.h>
27 #include <vlib/pci/pci.h>
28 #include <vnet/ethernet/ethernet.h>
29
30 #include <rdma/rdma.h>
31
32 /* Default RSS hash key (from DPDK MLX driver) */
33 static u8 rdma_rss_hash_key[] = {
34   0x2c, 0xc6, 0x81, 0xd1,
35   0x5b, 0xdb, 0xf4, 0xf7,
36   0xfc, 0xa2, 0x83, 0x19,
37   0xdb, 0x1a, 0x3e, 0x94,
38   0x6b, 0x9e, 0x38, 0xd9,
39   0x2c, 0x9c, 0x03, 0xd1,
40   0xad, 0x99, 0x44, 0xa7,
41   0xd9, 0x56, 0x3d, 0x59,
42   0x06, 0x3c, 0x25, 0xf3,
43   0xfc, 0x1f, 0xdc, 0x2a,
44 };
45
46 rdma_main_t rdma_main;
47
48 #define rdma_log__(lvl, dev, f, ...) \
49   do { \
50       vlib_log((lvl), rdma_main.log_class, "%s: " f, \
51                &(dev)->name, ##__VA_ARGS__); \
52   } while (0)
53
54 #define rdma_log(lvl, dev, f, ...) \
55    rdma_log__((lvl), (dev), "%s (%d): " f, strerror(errno), errno, ##__VA_ARGS__)
56
57 static struct ibv_flow *
58 rdma_rxq_init_flow (const rdma_device_t * rd, struct ibv_qp *qp,
59                     const mac_address_t * mac, const mac_address_t * mask,
60                     u32 flags)
61 {
62   struct ibv_flow *flow;
63   struct raw_eth_flow_attr
64   {
65     struct ibv_flow_attr attr;
66     struct ibv_flow_spec_eth spec_eth;
67   } __attribute__ ((packed)) fa;
68
69   memset (&fa, 0, sizeof (fa));
70   fa.attr.num_of_specs = 1;
71   fa.attr.port = 1;
72   fa.attr.flags = flags;
73   fa.spec_eth.type = IBV_FLOW_SPEC_ETH;
74   fa.spec_eth.size = sizeof (struct ibv_flow_spec_eth);
75
76   memcpy (fa.spec_eth.val.dst_mac, mac, sizeof (fa.spec_eth.val.dst_mac));
77   memcpy (fa.spec_eth.mask.dst_mac, mask, sizeof (fa.spec_eth.mask.dst_mac));
78
79   flow = ibv_create_flow (qp, &fa.attr);
80   if (!flow)
81     rdma_log (VLIB_LOG_LEVEL_ERR, rd, "ibv_create_flow() failed");
82   return flow;
83 }
84
85 static u32
86 rdma_rxq_destroy_flow (const rdma_device_t * rd, struct ibv_flow **flow)
87 {
88   if (!*flow)
89     return 0;
90
91   if (ibv_destroy_flow (*flow))
92     {
93       rdma_log (VLIB_LOG_LEVEL_ERR, rd, "ibv_destroy_flow() failed");
94       return ~0;
95     }
96
97   *flow = 0;
98   return 0;
99 }
100
101 static u32
102 rdma_dev_set_promisc (rdma_device_t * rd)
103 {
104   const mac_address_t all = {.bytes = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0} };
105   int err;
106
107   err = rdma_rxq_destroy_flow (rd, &rd->flow_mcast);
108   if (err)
109     return ~0;
110
111   err = rdma_rxq_destroy_flow (rd, &rd->flow_ucast);
112   if (err)
113     return ~0;
114
115   rd->flow_ucast = rdma_rxq_init_flow (rd, rd->rx_qp, &all, &all, 0);
116   if (!rd->flow_ucast)
117     return ~0;
118
119   rd->flags |= RDMA_DEVICE_F_PROMISC;
120   return 0;
121 }
122
123 static u32
124 rdma_dev_set_ucast (rdma_device_t * rd)
125 {
126   const mac_address_t ucast = {.bytes = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
127   };
128   const mac_address_t mcast = {.bytes = {0x1, 0x0, 0x0, 0x0, 0x0, 0x0} };
129   int err;
130
131   err = rdma_rxq_destroy_flow (rd, &rd->flow_mcast);
132   if (err)
133     return ~0;
134
135   err = rdma_rxq_destroy_flow (rd, &rd->flow_ucast);
136   if (err)
137     return ~0;
138
139   /* receive only packets with src = our MAC */
140   rd->flow_ucast = rdma_rxq_init_flow (rd, rd->rx_qp, &rd->hwaddr, &ucast, 0);
141   if (!rd->flow_ucast)
142     return ~0;
143
144   /* receive multicast packets */
145   rd->flow_mcast = rdma_rxq_init_flow (rd, rd->rx_qp, &mcast, &mcast,
146                                        IBV_FLOW_ATTR_FLAGS_DONT_TRAP
147                                        /* let others receive mcast packet too (eg. Linux) */
148     );
149   if (!rd->flow_mcast)
150     return ~0;
151
152   rd->flags &= ~RDMA_DEVICE_F_PROMISC;
153   return 0;
154 }
155
156 static clib_error_t *
157 rdma_mac_change (vnet_hw_interface_t * hw, const u8 * old, const u8 * new)
158 {
159   rdma_main_t *rm = &rdma_main;
160   rdma_device_t *rd = vec_elt_at_index (rm->devices, hw->dev_instance);
161   mac_address_from_bytes (&rd->hwaddr, new);
162   if (!(rd->flags & RDMA_DEVICE_F_PROMISC) && rdma_dev_set_ucast (rd))
163     {
164       mac_address_from_bytes (&rd->hwaddr, old);
165       return clib_error_return_unix (0, "MAC update failed");
166     }
167   return 0;
168 }
169
170 static u32
171 rdma_dev_change_mtu (rdma_device_t * rd)
172 {
173   rdma_log__ (VLIB_LOG_LEVEL_ERR, rd, "MTU change not supported");
174   return ~0;
175 }
176
177 static u32
178 rdma_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hw, u32 flags)
179 {
180   rdma_main_t *rm = &rdma_main;
181   rdma_device_t *rd = vec_elt_at_index (rm->devices, hw->dev_instance);
182
183   switch (flags)
184     {
185     case 0:
186       return rdma_dev_set_ucast (rd);
187     case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
188       return rdma_dev_set_promisc (rd);
189     case ETHERNET_INTERFACE_FLAG_MTU:
190       return rdma_dev_change_mtu (rd);
191     }
192
193   rdma_log__ (VLIB_LOG_LEVEL_ERR, rd, "unknown flag %x requested", flags);
194   return ~0;
195 }
196
197 static void
198 rdma_update_state (vnet_main_t * vnm, rdma_device_t * rd, int port)
199 {
200   struct ibv_port_attr attr;
201   u32 width = 0;
202   u32 speed = 0;
203
204   if (ibv_query_port (rd->ctx, port, &attr))
205     {
206       vnet_hw_interface_set_link_speed (vnm, rd->hw_if_index, 0);
207       vnet_hw_interface_set_flags (vnm, rd->hw_if_index, 0);
208       return;
209     }
210
211   /* update state */
212   switch (attr.state)
213     {
214     case IBV_PORT_ACTIVE:       /* fallthrough */
215     case IBV_PORT_ACTIVE_DEFER:
216       rd->flags |= RDMA_DEVICE_F_LINK_UP;
217       vnet_hw_interface_set_flags (vnm, rd->hw_if_index,
218                                    VNET_HW_INTERFACE_FLAG_LINK_UP);
219       break;
220     default:
221       rd->flags &= ~RDMA_DEVICE_F_LINK_UP;
222       vnet_hw_interface_set_flags (vnm, rd->hw_if_index, 0);
223       break;
224     }
225
226   /* update speed */
227   switch (attr.active_width)
228     {
229     case 1:
230       width = 1;
231       break;
232     case 2:
233       width = 4;
234       break;
235     case 4:
236       width = 8;
237       break;
238     case 8:
239       width = 12;
240       break;
241     }
242   switch (attr.active_speed)
243     {
244     case 1:
245       speed = 2500000;
246       break;
247     case 2:
248       speed = 5000000;
249       break;
250     case 4:                     /* fallthrough */
251     case 8:
252       speed = 10000000;
253       break;
254     case 16:
255       speed = 14000000;
256       break;
257     case 32:
258       speed = 25000000;
259       break;
260     }
261   vnet_hw_interface_set_link_speed (vnm, rd->hw_if_index, width * speed);
262 }
263
264 static clib_error_t *
265 rdma_async_event_error_ready (clib_file_t * f)
266 {
267   rdma_main_t *rm = &rdma_main;
268   rdma_device_t *rd = vec_elt_at_index (rm->devices, f->private_data);
269   return clib_error_return (0, "RDMA async event error for device %U",
270                             format_vlib_pci_addr, &rd->pci_addr);
271 }
272
273 static clib_error_t *
274 rdma_async_event_read_ready (clib_file_t * f)
275 {
276   vnet_main_t *vnm = vnet_get_main ();
277   rdma_main_t *rm = &rdma_main;
278   rdma_device_t *rd = vec_elt_at_index (rm->devices, f->private_data);
279   int ret;
280   struct ibv_async_event event;
281   ret = ibv_get_async_event (rd->ctx, &event);
282   if (ret < 0)
283     return clib_error_return_unix (0, "ibv_get_async_event() failed");
284
285   switch (event.event_type)
286     {
287     case IBV_EVENT_PORT_ACTIVE:
288       rdma_update_state (vnm, rd, event.element.port_num);
289       break;
290     case IBV_EVENT_PORT_ERR:
291       rdma_update_state (vnm, rd, event.element.port_num);
292       break;
293     case IBV_EVENT_DEVICE_FATAL:
294       rd->flags &= ~RDMA_DEVICE_F_LINK_UP;
295       vnet_hw_interface_set_flags (vnm, rd->hw_if_index, 0);
296       vlib_log_emerg (rm->log_class, "Fatal RDMA error for device %U",
297                       format_vlib_pci_addr, &rd->pci_addr);
298       break;
299     default:
300       rdma_log__ (VLIB_LOG_LEVEL_ERR, rd, "unhandeld RDMA async event %i",
301                   event.event_type);
302       break;
303     }
304
305   ibv_ack_async_event (&event);
306   return 0;
307 }
308
309 static clib_error_t *
310 rdma_async_event_init (rdma_device_t * rd)
311 {
312   clib_file_t t = { 0 };
313   int ret;
314
315   /* make RDMA async event fd non-blocking */
316   ret = fcntl (rd->ctx->async_fd, F_GETFL);
317   if (ret < 0)
318     return clib_error_return_unix (0, "fcntl(F_GETFL) failed");
319
320   ret = fcntl (rd->ctx->async_fd, F_SETFL, ret | O_NONBLOCK);
321   if (ret < 0)
322     return clib_error_return_unix (0, "fcntl(F_SETFL, O_NONBLOCK) failed");
323
324   /* register RDMA async event fd */
325   t.read_function = rdma_async_event_read_ready;
326   t.file_descriptor = rd->ctx->async_fd;
327   t.error_function = rdma_async_event_error_ready;
328   t.private_data = rd->dev_instance;
329   t.description =
330     format (0, "RMDA %U async event", format_vlib_pci_addr, &rd->pci_addr);
331
332   rd->async_event_clib_file_index = clib_file_add (&file_main, &t);
333   return 0;
334 }
335
336 static void
337 rdma_async_event_cleanup (rdma_device_t * rd)
338 {
339   clib_file_del_by_index (&file_main, rd->async_event_clib_file_index);
340 }
341
342 static clib_error_t *
343 rdma_register_interface (vnet_main_t * vnm, rdma_device_t * rd)
344 {
345   return ethernet_register_interface (vnm, rdma_device_class.index,
346                                       rd->dev_instance, rd->hwaddr.bytes,
347                                       &rd->hw_if_index, rdma_flag_change);
348 }
349
350 static void
351 rdma_unregister_interface (vnet_main_t * vnm, rdma_device_t * rd)
352 {
353   vnet_hw_interface_set_flags (vnm, rd->hw_if_index, 0);
354   vnet_hw_interface_unassign_rx_thread (vnm, rd->hw_if_index, 0);
355   ethernet_delete_interface (vnm, rd->hw_if_index);
356 }
357
358 static void
359 rdma_dev_cleanup (rdma_device_t * rd)
360 {
361   rdma_main_t *rm = &rdma_main;
362   rdma_rxq_t *rxq;
363   rdma_txq_t *txq;
364
365 #define _(fn, arg) if (arg) \
366   { \
367     int rv; \
368     if ((rv = fn (arg))) \
369        rdma_log (VLIB_LOG_LEVEL_DEBUG, rd, #fn "() failed (rv = %d)", rv); \
370   }
371
372   _(ibv_destroy_flow, rd->flow_mcast);
373   _(ibv_destroy_flow, rd->flow_ucast);
374   _(ibv_dereg_mr, rd->mr);
375   vec_foreach (txq, rd->txqs)
376   {
377     _(ibv_destroy_qp, txq->qp);
378     _(ibv_destroy_cq, txq->cq);
379   }
380   vec_foreach (rxq, rd->rxqs)
381   {
382     _(ibv_destroy_wq, rxq->wq);
383     _(ibv_destroy_cq, rxq->cq);
384   }
385   _(ibv_destroy_rwq_ind_table, rd->rx_rwq_ind_tbl);
386   _(ibv_destroy_qp, rd->rx_qp);
387   _(ibv_dealloc_pd, rd->pd);
388   _(ibv_close_device, rd->ctx);
389 #undef _
390
391   clib_error_free (rd->error);
392
393   vec_free (rd->rxqs);
394   vec_free (rd->txqs);
395   vec_free (rd->name);
396   pool_put (rm->devices, rd);
397 }
398
399 static clib_error_t *
400 rdma_rxq_init (vlib_main_t * vm, rdma_device_t * rd, u16 qid, u32 n_desc)
401 {
402   rdma_rxq_t *rxq;
403   struct ibv_wq_init_attr wqia;
404   struct ibv_wq_attr wqa;
405
406   vec_validate_aligned (rd->rxqs, qid, CLIB_CACHE_LINE_BYTES);
407   rxq = vec_elt_at_index (rd->rxqs, qid);
408   rxq->size = n_desc;
409
410   if ((rxq->cq = ibv_create_cq (rd->ctx, n_desc, NULL, NULL, 0)) == 0)
411     return clib_error_return_unix (0, "Create CQ Failed");
412
413   memset (&wqia, 0, sizeof (wqia));
414   wqia.wq_type = IBV_WQT_RQ;
415   wqia.max_wr = n_desc;
416   wqia.max_sge = 1;
417   wqia.pd = rd->pd;
418   wqia.cq = rxq->cq;
419   if ((rxq->wq = ibv_create_wq (rd->ctx, &wqia)) == 0)
420     return clib_error_return_unix (0, "Create WQ Failed");
421
422   memset (&wqa, 0, sizeof (wqa));
423   wqa.attr_mask = IBV_WQ_ATTR_STATE;
424   wqa.wq_state = IBV_WQS_RDY;
425   if (ibv_modify_wq (rxq->wq, &wqa) != 0)
426     return clib_error_return_unix (0, "Modify WQ (RDY) Failed");
427
428   return 0;
429 }
430
431 static clib_error_t *
432 rdma_rxq_finalize (vlib_main_t * vm, rdma_device_t * rd)
433 {
434   struct ibv_rwq_ind_table_init_attr rwqia;
435   struct ibv_qp_init_attr_ex qpia;
436   struct ibv_wq **ind_tbl;
437   u32 i;
438
439   ASSERT (is_pow2 (vec_len (rd->rxqs))
440           && "rxq number should be a power of 2");
441
442   ind_tbl = vec_new (struct ibv_wq *, vec_len (rd->rxqs));
443   vec_foreach_index (i, rd->rxqs)
444     ind_tbl[i] = vec_elt_at_index (rd->rxqs, i)->wq;
445   memset (&rwqia, 0, sizeof (rwqia));
446   rwqia.log_ind_tbl_size = min_log2 (vec_len (ind_tbl));
447   rwqia.ind_tbl = ind_tbl;
448   if ((rd->rx_rwq_ind_tbl = ibv_create_rwq_ind_table (rd->ctx, &rwqia)) == 0)
449     return clib_error_return_unix (0, "RWQ indirection table create failed");
450   vec_free (ind_tbl);
451
452   memset (&qpia, 0, sizeof (qpia));
453   qpia.qp_type = IBV_QPT_RAW_PACKET;
454   qpia.comp_mask =
455     IBV_QP_INIT_ATTR_PD | IBV_QP_INIT_ATTR_IND_TABLE |
456     IBV_QP_INIT_ATTR_RX_HASH;
457   qpia.pd = rd->pd;
458   qpia.rwq_ind_tbl = rd->rx_rwq_ind_tbl;
459   STATIC_ASSERT_SIZEOF (rdma_rss_hash_key, 40);
460   qpia.rx_hash_conf.rx_hash_key_len = sizeof (rdma_rss_hash_key);
461   qpia.rx_hash_conf.rx_hash_key = rdma_rss_hash_key;
462   qpia.rx_hash_conf.rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ;
463   qpia.rx_hash_conf.rx_hash_fields_mask =
464     IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4;
465   if ((rd->rx_qp = ibv_create_qp_ex (rd->ctx, &qpia)) == 0)
466     return clib_error_return_unix (0, "Queue Pair create failed");
467
468   if (rdma_dev_set_ucast (rd))
469     return clib_error_return_unix (0, "Set unicast mode failed");
470
471   return 0;
472 }
473
474 static clib_error_t *
475 rdma_txq_init (vlib_main_t * vm, rdma_device_t * rd, u16 qid, u32 n_desc)
476 {
477   rdma_txq_t *txq;
478   struct ibv_qp_init_attr qpia;
479   struct ibv_qp_attr qpa;
480   int qp_flags;
481
482   vec_validate_aligned (rd->txqs, qid, CLIB_CACHE_LINE_BYTES);
483   txq = vec_elt_at_index (rd->txqs, qid);
484   txq->size = n_desc;
485
486   if ((txq->cq = ibv_create_cq (rd->ctx, n_desc, NULL, NULL, 0)) == 0)
487     return clib_error_return_unix (0, "Create CQ Failed");
488
489   memset (&qpia, 0, sizeof (qpia));
490   qpia.send_cq = txq->cq;
491   qpia.recv_cq = txq->cq;
492   qpia.cap.max_send_wr = n_desc;
493   qpia.cap.max_send_sge = 1;
494   qpia.qp_type = IBV_QPT_RAW_PACKET;
495   qpia.sq_sig_all = 1;
496
497   if ((txq->qp = ibv_create_qp (rd->pd, &qpia)) == 0)
498     return clib_error_return_unix (0, "Queue Pair create failed");
499
500   memset (&qpa, 0, sizeof (qpa));
501   qp_flags = IBV_QP_STATE | IBV_QP_PORT;
502   qpa.qp_state = IBV_QPS_INIT;
503   qpa.port_num = 1;
504   if (ibv_modify_qp (txq->qp, &qpa, qp_flags) != 0)
505     return clib_error_return_unix (0, "Modify QP (init) Failed");
506
507   memset (&qpa, 0, sizeof (qpa));
508   qp_flags = IBV_QP_STATE;
509   qpa.qp_state = IBV_QPS_RTR;
510   if (ibv_modify_qp (txq->qp, &qpa, qp_flags) != 0)
511     return clib_error_return_unix (0, "Modify QP (receive) Failed");
512
513   memset (&qpa, 0, sizeof (qpa));
514   qp_flags = IBV_QP_STATE;
515   qpa.qp_state = IBV_QPS_RTS;
516   if (ibv_modify_qp (txq->qp, &qpa, qp_flags) != 0)
517     return clib_error_return_unix (0, "Modify QP (send) Failed");
518   return 0;
519 }
520
521 static clib_error_t *
522 rdma_dev_init (vlib_main_t * vm, rdma_device_t * rd, u32 rxq_size,
523                u32 txq_size, u32 rxq_num)
524 {
525   clib_error_t *err;
526   vlib_buffer_main_t *bm = vm->buffer_main;
527   vlib_thread_main_t *tm = vlib_get_thread_main ();
528   u32 i;
529
530   if (rd->ctx == 0)
531     return clib_error_return_unix (0, "Device Open Failed");
532
533   if ((rd->pd = ibv_alloc_pd (rd->ctx)) == 0)
534     return clib_error_return_unix (0, "PD Alloc Failed");
535
536   ethernet_mac_address_generate (rd->hwaddr.bytes);
537
538   for (i = 0; i < rxq_num; i++)
539     if ((err = rdma_rxq_init (vm, rd, i, rxq_size)))
540       return err;
541   if ((err = rdma_rxq_finalize (vm, rd)))
542     return err;
543
544   for (i = 0; i < tm->n_vlib_mains; i++)
545     if ((err = rdma_txq_init (vm, rd, i, txq_size)))
546       return err;
547
548   if ((rd->mr = ibv_reg_mr (rd->pd, (void *) bm->buffer_mem_start,
549                             bm->buffer_mem_size,
550                             IBV_ACCESS_LOCAL_WRITE)) == 0)
551     return clib_error_return_unix (0, "Register MR Failed");
552
553   return 0;
554 }
555
556 static uword
557 sysfs_path_to_pci_addr (char *path, vlib_pci_addr_t * addr)
558 {
559   uword rv;
560   unformat_input_t in;
561   u8 *s;
562
563   s = clib_sysfs_link_to_name (path);
564   unformat_init_string (&in, (char *) s, strlen ((char *) s));
565   rv = unformat (&in, "%U", unformat_vlib_pci_addr, addr);
566   unformat_free (&in);
567   vec_free (s);
568   return rv;
569 }
570
571 void
572 rdma_create_if (vlib_main_t * vm, rdma_create_if_args_t * args)
573 {
574   vnet_main_t *vnm = vnet_get_main ();
575   rdma_main_t *rm = &rdma_main;
576   rdma_device_t *rd = 0;
577   struct ibv_device **dev_list = 0;
578   int n_devs;
579   u8 *s = 0, *s2 = 0;
580   u16 qid;
581
582   args->rxq_size = args->rxq_size ? args->rxq_size : 2 * VLIB_FRAME_SIZE;
583   args->txq_size = args->txq_size ? args->txq_size : 2 * VLIB_FRAME_SIZE;
584   args->rxq_num = args->rxq_num ? args->rxq_num : 1;
585
586   if (!is_pow2 (args->rxq_num))
587     {
588       args->rv = VNET_API_ERROR_INVALID_VALUE;
589       args->error =
590         clib_error_return (0, "rx queue number must be a power of two");
591       return;
592     }
593
594   if (!is_pow2 (args->rxq_size) || !is_pow2 (args->txq_size))
595     {
596       args->rv = VNET_API_ERROR_INVALID_VALUE;
597       args->error =
598         clib_error_return (0, "queue size must be a power of two");
599       return;
600     }
601
602   pool_get_zero (rm->devices, rd);
603   rd->dev_instance = rd - rm->devices;
604   rd->per_interface_next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
605   rd->name = vec_dup (args->name);
606
607   /* check if device exist and if it is bound to mlx5_core */
608   s = format (s, "/sys/class/net/%s/device/driver/module%c", args->ifname, 0);
609   s2 = clib_sysfs_link_to_name ((char *) s);
610
611   if (s2 == 0 || strncmp ((char *) s2, "mlx5_core", 9) != 0)
612     {
613       args->error =
614         clib_error_return (0,
615                            "invalid interface (only mlx5 supported for now)");
616       goto err0;
617     }
618
619   /* extract PCI address */
620   vec_reset_length (s);
621   s = format (s, "/sys/class/net/%s/device%c", args->ifname, 0);
622   if (sysfs_path_to_pci_addr ((char *) s, &rd->pci_addr) == 0)
623     {
624       args->error = clib_error_return (0, "cannot find PCI address");
625       goto err0;
626     }
627
628   dev_list = ibv_get_device_list (&n_devs);
629   if (n_devs == 0)
630     {
631       args->error =
632         clib_error_return_unix (0,
633                                 "no RDMA devices available, errno = %d. "
634                                 "Is the ib_uverbs module loaded?", errno);
635       goto err0;
636     }
637
638   for (int i = 0; i < n_devs; i++)
639     {
640       vlib_pci_addr_t addr;
641
642       vec_reset_length (s);
643       s = format (s, "%s/device%c", dev_list[i]->dev_path, 0);
644
645       if (sysfs_path_to_pci_addr ((char *) s, &addr) == 0)
646         continue;
647
648       if (addr.as_u32 != rd->pci_addr.as_u32)
649         continue;
650
651       if ((rd->ctx = ibv_open_device (dev_list[i])))
652         break;
653     }
654
655   if ((args->error =
656        rdma_dev_init (vm, rd, args->rxq_size, args->txq_size, args->rxq_num)))
657     goto err1;
658
659   if ((args->error = rdma_register_interface (vnm, rd)))
660     goto err2;
661
662   if ((args->error = rdma_async_event_init (rd)))
663     goto err3;
664
665   rdma_update_state (vnm, rd, 1);
666
667   vnet_sw_interface_t *sw = vnet_get_hw_sw_interface (vnm, rd->hw_if_index);
668   args->sw_if_index = rd->sw_if_index = sw->sw_if_index;
669   /*
670    * FIXME: add support for interrupt mode
671    * vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, rd->hw_if_index);
672    * hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE;
673    */
674   vnet_hw_interface_set_input_node (vnm, rd->hw_if_index,
675                                     rdma_input_node.index);
676   vec_foreach_index (qid, rd->rxqs)
677     vnet_hw_interface_assign_rx_thread (vnm, rd->hw_if_index, qid, ~0);
678   return;
679
680 err3:
681   rdma_unregister_interface (vnm, rd);
682 err2:
683   rdma_dev_cleanup (rd);
684 err1:
685   ibv_free_device_list (dev_list);
686 err0:
687   vec_free (s2);
688   vec_free (s);
689   args->rv = VNET_API_ERROR_INVALID_INTERFACE;
690   vlib_log_err (rm->log_class, "%U", format_clib_error, args->error);
691 }
692
693 void
694 rdma_delete_if (vlib_main_t * vm, rdma_device_t * rd)
695 {
696   rdma_async_event_cleanup (rd);
697   rdma_unregister_interface (vnet_get_main (), rd);
698   rdma_dev_cleanup (rd);
699 }
700
701 static clib_error_t *
702 rdma_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
703 {
704   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
705   rdma_main_t *rm = &rdma_main;
706   rdma_device_t *rd = vec_elt_at_index (rm->devices, hi->dev_instance);
707   uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
708
709   if (rd->flags & RDMA_DEVICE_F_ERROR)
710     return clib_error_return (0, "device is in error state");
711
712   if (is_up)
713     {
714       vnet_hw_interface_set_flags (vnm, rd->hw_if_index,
715                                    VNET_HW_INTERFACE_FLAG_LINK_UP);
716       rd->flags |= RDMA_DEVICE_F_ADMIN_UP;
717     }
718   else
719     {
720       vnet_hw_interface_set_flags (vnm, rd->hw_if_index, 0);
721       rd->flags &= ~RDMA_DEVICE_F_ADMIN_UP;
722     }
723   return 0;
724 }
725
726 static void
727 rdma_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index,
728                               u32 node_index)
729 {
730   rdma_main_t *rm = &rdma_main;
731   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
732   rdma_device_t *rd = pool_elt_at_index (rm->devices, hw->dev_instance);
733
734   /* Shut off redirection */
735   if (node_index == ~0)
736     {
737       rd->per_interface_next_index = node_index;
738       return;
739     }
740
741   rd->per_interface_next_index =
742     vlib_node_add_next (vlib_get_main (), rdma_input_node.index, node_index);
743 }
744
745 static char *rdma_tx_func_error_strings[] = {
746 #define _(n,s) s,
747   foreach_rdma_tx_func_error
748 #undef _
749 };
750
751 /* *INDENT-OFF* */
752 VNET_DEVICE_CLASS (rdma_device_class) =
753 {
754   .name = "RDMA interface",
755   .format_device = format_rdma_device,
756   .format_device_name = format_rdma_device_name,
757   .admin_up_down_function = rdma_interface_admin_up_down,
758   .rx_redirect_to_node = rdma_set_interface_next_node,
759   .tx_function_n_errors = RDMA_TX_N_ERROR,
760   .tx_function_error_strings = rdma_tx_func_error_strings,
761   .mac_addr_change_function = rdma_mac_change,
762 };
763 /* *INDENT-ON* */
764
765 clib_error_t *
766 rdma_init (vlib_main_t * vm)
767 {
768   rdma_main_t *rm = &rdma_main;
769
770   rm->log_class = vlib_log_register_class ("rdma", 0);
771
772   return 0;
773 }
774
775 VLIB_INIT_FUNCTION (rdma_init);
776
777 /*
778  * fd.io coding-style-patch-verification: ON
779  *
780  * Local Variables:
781  * eval: (c-set-style "gnu")
782  * End:
783  */