21 #include <linux/if_link.h> 22 #include <linux/if_ether.h> 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,
48 #define rdma_log__(lvl, dev, f, ...) \ 50 vlib_log((lvl), rdma_main.log_class, "%s: " f, \ 51 &(dev)->name, ##__VA_ARGS__); \ 54 #define rdma_log(lvl, dev, f, ...) \ 55 rdma_log__((lvl), (dev), "%s (%d): " f, strerror(errno), errno, ##__VA_ARGS__) 57 static struct ibv_flow *
62 struct ibv_flow *
flow;
63 struct raw_eth_flow_attr
65 struct ibv_flow_attr attr;
66 struct ibv_flow_spec_eth spec_eth;
67 } __attribute__ ((packed)) fa;
69 memset (&fa, 0,
sizeof (fa));
70 fa.attr.num_of_specs = 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);
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));
79 flow = ibv_create_flow (qp, &fa.attr);
81 rdma_log (VLIB_LOG_LEVEL_ERR, rd,
"ibv_create_flow() failed");
91 if (ibv_destroy_flow (*flow))
93 rdma_log (VLIB_LOG_LEVEL_ERR, rd,
"ibv_destroy_flow() failed");
119 rd->
flags |= RDMA_DEVICE_F_PROMISC;
146 IBV_FLOW_ATTR_FLAGS_DONT_TRAP
152 rd->
flags &= ~RDMA_DEVICE_F_PROMISC;
173 rdma_log__ (VLIB_LOG_LEVEL_ERR, rd,
"MTU change not supported");
193 rdma_log__ (VLIB_LOG_LEVEL_ERR, rd,
"unknown flag %x requested", flags);
200 struct ibv_port_attr attr;
204 if (ibv_query_port (rd->
ctx, port, &attr))
214 case IBV_PORT_ACTIVE:
215 case IBV_PORT_ACTIVE_DEFER:
216 rd->
flags |= RDMA_DEVICE_F_LINK_UP;
221 rd->
flags &= ~RDMA_DEVICE_F_LINK_UP;
227 switch (attr.active_width)
242 switch (attr.active_speed)
279 struct ibv_async_event event;
280 ret = ibv_get_async_event (rd->
ctx, &event);
284 switch (event.event_type)
286 case IBV_EVENT_PORT_ACTIVE:
289 case IBV_EVENT_PORT_ERR:
292 case IBV_EVENT_DEVICE_FATAL:
293 rd->
flags &= ~RDMA_DEVICE_F_LINK_UP;
298 rdma_log__ (VLIB_LOG_LEVEL_ERR, rd,
"unhandeld RDMA async event %i",
303 ibv_ack_async_event (&event);
314 ret = fcntl (rd->
ctx->async_fd, F_GETFL);
318 ret = fcntl (rd->
ctx->async_fd, F_SETFL, ret | O_NONBLOCK);
371 #define _(fn, arg) if (arg) \ 374 if ((rv = fn (arg))) \ 375 rdma_log (VLIB_LOG_LEVEL_DEBUG, rd, #fn "() failed (rv = %d)", rv); \ 380 _(ibv_dereg_mr, rd->
mr);
383 _(ibv_destroy_qp, txq->
qp);
384 _(ibv_destroy_cq, txq->
cq);
388 _(ibv_destroy_wq, rxq->
wq);
389 _(ibv_destroy_cq, rxq->
cq);
392 _(ibv_destroy_qp, rd->
rx_qp);
393 _(ibv_dealloc_pd, rd->
pd);
394 _(ibv_close_device, rd->
ctx);
410 struct ibv_wq_init_attr wqia;
411 struct ibv_cq_init_attr_ex cqa = { };
412 struct ibv_wq_attr wqa;
413 struct ibv_cq_ex *cqex;
421 if (rd->
flags & RDMA_DEVICE_F_MLX5DV)
423 struct mlx5dv_cq_init_attr dvcq = { };
424 dvcq.comp_mask = MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE;
425 dvcq.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH;
427 if ((cqex = mlx5dv_create_cq (rd->
ctx, &cqa, &dvcq)) == 0)
432 if ((cqex = ibv_create_cq_ex (rd->
ctx, &cqa)) == 0)
436 rxq->
cq = ibv_cq_ex_to_cq (cqex);
438 memset (&wqia, 0,
sizeof (wqia));
439 wqia.wq_type = IBV_WQT_RQ;
440 wqia.max_wr = n_desc;
444 if ((rxq->
wq = ibv_create_wq (rd->
ctx, &wqia)) == 0)
447 memset (&wqa, 0,
sizeof (wqa));
448 wqa.attr_mask = IBV_WQ_ATTR_STATE;
449 wqa.wq_state = IBV_WQS_RDY;
450 if (ibv_modify_wq (rxq->
wq, &wqa) != 0)
453 if (rd->
flags & RDMA_DEVICE_F_MLX5DV)
455 struct mlx5dv_obj obj = { };
456 struct mlx5dv_cq dv_cq;
457 struct mlx5dv_rwq dv_rwq;
462 obj.rwq.in = rxq->
wq;
463 obj.rwq.out = &dv_rwq;
465 if ((mlx5dv_init_obj (&obj, MLX5DV_OBJ_CQ | MLX5DV_OBJ_RWQ)))
473 rxq->
cq_db = (
volatile u32 *) dv_cq.dbrec;
474 rxq->
cqn = dv_cq.cqn;
477 rxq->
wq_db = (
volatile u32 *) dv_rwq.dbrec;
482 qw0 |= (
u64) clib_host_to_net_u32 (rd->
lkey) << 32;
484 for (
int i = 0;
i < rxq->
size;
i++)
497 struct ibv_rwq_ind_table_init_attr rwqia;
498 struct ibv_qp_init_attr_ex qpia;
499 struct ibv_wq **ind_tbl;
503 &&
"rxq number should be a power of 2");
508 memset (&rwqia, 0,
sizeof (rwqia));
510 rwqia.ind_tbl = ind_tbl;
515 memset (&qpia, 0,
sizeof (qpia));
516 qpia.qp_type = IBV_QPT_RAW_PACKET;
518 IBV_QP_INIT_ATTR_PD | IBV_QP_INIT_ATTR_IND_TABLE |
519 IBV_QP_INIT_ATTR_RX_HASH;
525 qpia.rx_hash_conf.rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ;
526 qpia.rx_hash_conf.rx_hash_fields_mask =
527 IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4;
528 if ((rd->
rx_qp = ibv_create_qp_ex (rd->
ctx, &qpia)) == 0)
541 struct ibv_qp_init_attr qpia;
542 struct ibv_qp_attr qpa;
551 if ((txq->
cq = ibv_create_cq (rd->
ctx, n_desc, NULL, NULL, 0)) == 0)
554 memset (&qpia, 0,
sizeof (qpia));
555 qpia.send_cq = txq->
cq;
556 qpia.recv_cq = txq->
cq;
557 qpia.cap.max_send_wr = n_desc;
558 qpia.cap.max_send_sge = 1;
559 qpia.qp_type = IBV_QPT_RAW_PACKET;
561 if ((txq->
qp = ibv_create_qp (rd->
pd, &qpia)) == 0)
564 memset (&qpa, 0,
sizeof (qpa));
565 qp_flags = IBV_QP_STATE | IBV_QP_PORT;
566 qpa.qp_state = IBV_QPS_INIT;
568 if (ibv_modify_qp (txq->
qp, &qpa, qp_flags) != 0)
571 memset (&qpa, 0,
sizeof (qpa));
572 qp_flags = IBV_QP_STATE;
573 qpa.qp_state = IBV_QPS_RTR;
574 if (ibv_modify_qp (txq->
qp, &qpa, qp_flags) != 0)
577 memset (&qpa, 0,
sizeof (qpa));
578 qp_flags = IBV_QP_STATE;
579 qpa.qp_state = IBV_QPS_RTS;
580 if (ibv_modify_qp (txq->
qp, &qpa, qp_flags) != 0)
586 if (rd->
flags & RDMA_DEVICE_F_MLX5DV)
589 struct mlx5dv_cq dv_cq;
590 struct mlx5dv_qp dv_qp;
591 struct mlx5dv_obj obj = { };
598 if (mlx5dv_init_obj (&obj, MLX5DV_OBJ_CQ | MLX5DV_OBJ_QP))
609 || sizeof (
struct mlx5_cqe64) != dv_cq.cqe_size
610 || (
uword) dv_cq.buf % sizeof (
struct mlx5_cqe64))
626 mlx5dv_set_ctrl_seg (&tmpl->ctrl, 0, MLX5_OPCODE_SEND, 0,
630 mlx5dv_set_data_seg (&tmpl->dseg, 0, rd->
lkey, 0);
638 u32 txq_size,
u32 rxq_num)
648 if ((rd->
pd = ibv_alloc_pd (rd->
ctx)) == 0)
653 IBV_ACCESS_LOCAL_WRITE)) == 0)
662 IBV_ACCESS_LOCAL_WRITE)) == 0)
675 for (i = 0; i < rxq_num; i++)
708 vlib_pci_addr_t pci_addr;
709 struct ibv_device **dev_list;
721 args->
rv = VNET_API_ERROR_INVALID_VALUE;
731 args->
rv = VNET_API_ERROR_INVALID_VALUE;
733 "between %i and 65535",
738 dev_list = ibv_get_device_list (&n_devs);
743 "no RDMA devices available. Is the ib_uverbs module loaded?");
748 s =
format (0,
"/sys/class/net/%s/device%c", args->
ifname, 0);
761 if (!args->
name || 0 == args->
name[0])
780 "invalid interface (only mlx5 supported for now)");
784 for (i = 0; i < n_devs; i++)
786 vlib_pci_addr_t
addr;
789 s =
format (s,
"%s/device%c", dev_list[i]->dev_path, 0);
794 if (addr.as_u32 != rd->
pci->
addr.as_u32)
797 if ((rd->
ctx = ibv_open_device (dev_list[i])))
803 struct mlx5dv_context mlx5dv_attrs = { };
805 if (mlx5dv_query_device (rd->
ctx, &mlx5dv_attrs) == 0)
807 if ((mlx5dv_attrs.flags & MLX5DV_CONTEXT_FLAGS_CQE_V1))
808 rd->
flags |= RDMA_DEVICE_F_MLX5DV;
815 "supported on this interface");
853 ibv_free_device_list (dev_list);
855 args->
rv = VNET_API_ERROR_INVALID_INTERFACE;
876 if (rd->
flags & RDMA_DEVICE_F_ERROR)
883 rd->
flags |= RDMA_DEVICE_F_ADMIN_UP;
888 rd->
flags &= ~RDMA_DEVICE_F_ADMIN_UP;
915 .name =
"RDMA interface",
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
volatile u32 * dv_sq_dbrec
struct mlx5_cqe64 * dv_cq_cqes
#define vec_foreach_index(var, v)
Iterate over vector indices.
u8 * format_clib_error(u8 *s, va_list *va)
static u32 rdma_dev_set_ucast(rdma_device_t *rd)
static clib_error_t * rdma_rxq_init(vlib_main_t *vm, rdma_device_t *rd, u16 qid, u32 n_desc)
rdma_mlx5_wqe_t * dv_sq_wqes
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
static u32 rdma_rxq_destroy_flow(const rdma_device_t *rd, struct ibv_flow **flow)
vnet_main_t * vnet_get_main(void)
#define pool_get_zero(P, E)
Allocate an object E from a pool P and zero it.
#define rdma_log(lvl, dev, f,...)
format_function_t format_rdma_device
static u32 rdma_dev_set_promisc(rdma_device_t *rd)
vlib_pci_device_info_t * pci
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static clib_error_t * rdma_rxq_finalize(vlib_main_t *vm, rdma_device_t *rd)
u8 opcode_cqefmt_se_owner
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define RDMA_TXQ_DV_INVALID_ID
volatile u32 * dv_cq_dbrec
u32 per_interface_next_index
static void vlib_pci_free_device_info(vlib_pci_device_info_t *di)
for(i=1;i<=collision_buckets;i++)
vlib_buffer_main_t * buffer_main
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
#define ETHERNET_INTERFACE_FLAG_DEFAULT_L3
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
static uword min_log2(uword x)
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
clib_file_function_t * read_function
static vnet_sw_interface_t * vnet_get_hw_sw_interface(vnet_main_t *vnm, u32 hw_if_index)
vlib_log_class_t log_class
static void rdma_async_event_cleanup(rdma_device_t *rd)
#define rdma_log__(lvl, dev, f,...)
rdma_per_thread_data_t * per_thread_data
#define VLIB_INIT_FUNCTION(x)
static void rdma_set_interface_next_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
static uword sysfs_path_to_pci_addr(char *path, vlib_pci_addr_t *addr)
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
vnet_hw_interface_flags_t flags
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
static void rdma_dev_cleanup(rdma_device_t *rd)
clib_file_main_t file_main
#define vlib_log_emerg(...)
static clib_error_t * rdma_txq_init(vlib_main_t *vm, rdma_device_t *rd, u16 qid, u32 n_desc)
vlib_pci_device_info_t * vlib_pci_get_device_info(vlib_main_t *vm, vlib_pci_addr_t *addr, clib_error_t **error)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static_always_inline void mac_address_from_bytes(mac_address_t *mac, const u8 *bytes)
clib_error_t * rdma_init(vlib_main_t *vm)
static clib_error_t * rdma_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
#define clib_error_return_unix(e, args...)
static u32 rdma_dev_change_mtu(rdma_device_t *rd)
#define pool_put(P, E)
Free an object E in pool P.
unformat_function_t unformat_vlib_pci_addr
static u8 rdma_rss_hash_key[]
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
vlib_buffer_t buffer_template
struct ibv_rwq_ind_table * rx_rwq_ind_tbl
static void rdma_unregister_interface(vnet_main_t *vnm, rdma_device_t *rd)
sll srl srl sll sra u16x4 i
#define vec_free(V)
Free vector's memory (no header).
static struct ibv_flow * rdma_rxq_init_flow(const rdma_device_t *rd, struct ibv_qp *qp, const mac_address_t *mac, const mac_address_t *mask, u32 flags)
#define ETHERNET_INTERFACE_FLAG_MTU
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
#define RDMA_TXQ_BUF_SZ(txq)
format_function_t format_rdma_device_name
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
VNET_DEVICE_CLASS(avf_device_class,)
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
static void clib_file_del_by_index(clib_file_main_t *um, uword index)
static u32 rdma_flag_change(vnet_main_t *vnm, vnet_hw_interface_t *hw, u32 flags)
static vlib_main_t * vlib_get_main(void)
vnet_device_class_t rdma_device_class
static uword is_pow2(uword x)
static clib_error_t * rdma_dev_init(vlib_main_t *vm, rdma_device_t *rd, u32 rxq_size, u32 txq_size, u32 rxq_num)
u32 async_event_clib_file_index
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static void ethernet_mac_address_generate(u8 *mac)
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, const u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
static uword max_log2(uword x)
VLIB buffer representation.
static void rdma_update_state(vnet_main_t *vnm, rdma_device_t *rd, int port)
#define foreach_rdma_tx_func_error
#define clib_error_free(e)
static char * rdma_tx_func_error_strings[]
clib_file_function_t * error_function
int vnet_hw_interface_unassign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
static clib_error_t * rdma_mac_change(vnet_hw_interface_t *hw, const u8 *old, const u8 *new)
static clib_error_t * rdma_register_interface(vnet_main_t *vnm, rdma_device_t *rd)
static clib_error_t * rdma_async_event_init(rdma_device_t *rd)
struct ibv_flow * flow_ucast
static vlib_thread_main_t * vlib_get_thread_main()
#define vec_foreach(var, vec)
Vector iterator.
static clib_error_t * rdma_async_event_error_ready(clib_file_t *f)
#define MLX5_ETH_L2_INLINE_HEADER_SIZE
#define vlib_log_err(...)
static clib_error_t * rdma_async_event_read_ready(clib_file_t *f)
struct ibv_flow * flow_mcast
void rdma_delete_if(vlib_main_t *vm, rdma_device_t *rd)
#define CLIB_CACHE_LINE_BYTES
void rdma_create_if(vlib_main_t *vm, rdma_create_if_args_t *args)
#define STATIC_ASSERT_SIZEOF(d, s)
static u8 vlib_buffer_pool_get_default_for_numa(vlib_main_t *vm, u32 numa_node)
volatile u8 ref_count
Reference count for this buffer.
static void vnet_hw_interface_set_link_speed(vnet_main_t *vnm, u32 hw_if_index, u32 link_speed)
static void vnet_hw_interface_set_input_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
u8 * clib_sysfs_link_to_name(char *link)
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)