2 * Unix SMB/CIFS implementation.
3 * Wrap Infiniband calls.
5 * Copyright (C) Sven Oehme <oehmes@de.ibm.com> 2006
7 * Major code contributions by Peter Somogyi <psomogyi@gamax.hu>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "system/network.h"
30 #include "lib/util/dlinklist.h"
31 #include "lib/util/debug.h"
33 #include "common/logging.h"
35 #include <rdma/rdma_cma_abi.h>
36 #include <rdma/rdma_cma.h>
38 #include "ibwrapper.h"
39 #include "ibwrapper_internal.h"
41 #define IBW_LASTERR_BUFSIZE 512
42 static char ibw_lasterr
[IBW_LASTERR_BUFSIZE
];
44 #define IBW_MAX_SEND_WR 256
45 #define IBW_MAX_RECV_WR 1024
46 #define IBW_RECV_BUFSIZE 256
47 #define IBW_RECV_THRESHOLD (1 * 1024 * 1024)
49 static void ibw_event_handler_verbs(struct tevent_context
*ev
,
50 struct tevent_fd
*fde
, uint16_t flags
, void *private_data
);
51 static int ibw_fill_cq(struct ibw_conn
*conn
);
52 static int ibw_wc_recv(struct ibw_conn
*conn
, struct ibv_wc
*wc
);
53 static int ibw_wc_send(struct ibw_conn
*conn
, struct ibv_wc
*wc
);
54 static int ibw_send_packet(struct ibw_conn
*conn
, void *buf
, struct ibw_wr
*p
, uint32_t len
);
56 static void *ibw_alloc_mr(struct ibw_ctx_priv
*pctx
, struct ibw_conn_priv
*pconn
,
57 uint32_t n
, struct ibv_mr
**ppmr
)
61 DEBUG(DEBUG_DEBUG
, ("ibw_alloc_mr(cmid=%p, n=%u)\n", pconn
->cm_id
, n
));
62 buf
= memalign(pctx
->pagesize
, n
);
64 sprintf(ibw_lasterr
, "couldn't allocate memory\n");
68 *ppmr
= ibv_reg_mr(pconn
->pd
, buf
, n
, IBV_ACCESS_LOCAL_WRITE
);
70 sprintf(ibw_lasterr
, "couldn't allocate mr\n");
78 static void ibw_free_mr(char **ppbuf
, struct ibv_mr
**ppmr
)
80 DEBUG(DEBUG_DEBUG
, ("ibw_free_mr(%p %p)\n", *ppbuf
, *ppmr
));
91 static int ibw_init_memory(struct ibw_conn
*conn
)
93 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
94 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
95 struct ibw_opts
*opts
= &pctx
->opts
;
99 DEBUG(DEBUG_DEBUG
, ("ibw_init_memory(cmid: %p)\n", pconn
->cm_id
));
100 pconn
->buf_send
= ibw_alloc_mr(pctx
, pconn
,
101 opts
->max_send_wr
* opts
->recv_bufsize
, &pconn
->mr_send
);
102 if (!pconn
->buf_send
) {
103 sprintf(ibw_lasterr
, "couldn't allocate work send buf\n");
107 pconn
->buf_recv
= ibw_alloc_mr(pctx
, pconn
,
108 opts
->max_recv_wr
* opts
->recv_bufsize
, &pconn
->mr_recv
);
109 if (!pconn
->buf_recv
) {
110 sprintf(ibw_lasterr
, "couldn't allocate work recv buf\n");
114 pconn
->wr_index
= talloc_size(pconn
, opts
->max_send_wr
* sizeof(struct ibw_wr
*));
115 assert(pconn
->wr_index
!=NULL
);
117 for(i
=0; i
<opts
->max_send_wr
; i
++) {
118 p
= pconn
->wr_index
[i
] = talloc_zero(pconn
, struct ibw_wr
);
119 p
->buf
= pconn
->buf_send
+ (i
* opts
->recv_bufsize
);
122 DLIST_ADD(pconn
->wr_list_avail
, p
);
128 static int ibw_ctx_priv_destruct(struct ibw_ctx_priv
*pctx
)
130 DEBUG(DEBUG_DEBUG
, ("ibw_ctx_priv_destruct(%p)\n", pctx
));
133 * tevent_fd must be removed before the fd is closed
135 TALLOC_FREE(pctx
->cm_channel_event
);
138 if (pctx
->cm_channel
) {
139 rdma_destroy_event_channel(pctx
->cm_channel
);
140 pctx
->cm_channel
= NULL
;
143 rdma_destroy_id(pctx
->cm_id
);
150 static int ibw_ctx_destruct(struct ibw_ctx
*ctx
)
152 DEBUG(DEBUG_DEBUG
, ("ibw_ctx_destruct(%p)\n", ctx
));
156 static int ibw_conn_priv_destruct(struct ibw_conn_priv
*pconn
)
158 DEBUG(DEBUG_DEBUG
, ("ibw_conn_priv_destruct(%p, cmid: %p)\n",
159 pconn
, pconn
->cm_id
));
161 /* pconn->wr_index is freed by talloc */
162 /* pconn->wr_index[i] are freed by talloc */
165 * tevent_fd must be removed before the fd is closed
167 TALLOC_FREE(pconn
->verbs_channel_event
);
170 if (pconn
->cm_id
!=NULL
&& pconn
->cm_id
->qp
!=NULL
) {
171 rdma_destroy_qp(pconn
->cm_id
);
172 pconn
->cm_id
->qp
= NULL
;
175 if (pconn
->cq
!=NULL
) {
176 ibv_destroy_cq(pconn
->cq
);
180 if (pconn
->verbs_channel
!=NULL
) {
181 ibv_destroy_comp_channel(pconn
->verbs_channel
);
182 pconn
->verbs_channel
= NULL
;
185 /* free memory regions */
186 ibw_free_mr(&pconn
->buf_send
, &pconn
->mr_send
);
187 ibw_free_mr(&pconn
->buf_recv
, &pconn
->mr_recv
);
190 ibv_dealloc_pd(pconn
->pd
);
192 DEBUG(DEBUG_DEBUG
, ("pconn=%p pd deallocated\n", pconn
));
196 rdma_destroy_id(pconn
->cm_id
);
198 DEBUG(DEBUG_DEBUG
, ("pconn=%p cm_id destroyed\n", pconn
));
204 static int ibw_wr_destruct(struct ibw_wr
*wr
)
206 if (wr
->buf_large
!=NULL
)
207 ibw_free_mr(&wr
->buf_large
, &wr
->mr_large
);
211 static int ibw_conn_destruct(struct ibw_conn
*conn
)
213 DEBUG(DEBUG_DEBUG
, ("ibw_conn_destruct(%p)\n", conn
));
215 /* important here: ctx is a talloc _parent_ */
216 DLIST_REMOVE(conn
->ctx
->conn_list
, conn
);
220 struct ibw_conn
*ibw_conn_new(struct ibw_ctx
*ctx
, TALLOC_CTX
*mem_ctx
)
222 struct ibw_conn
*conn
;
223 struct ibw_conn_priv
*pconn
;
227 conn
= talloc_zero(mem_ctx
, struct ibw_conn
);
229 talloc_set_destructor(conn
, ibw_conn_destruct
);
231 pconn
= talloc_zero(conn
, struct ibw_conn_priv
);
233 talloc_set_destructor(pconn
, ibw_conn_priv_destruct
);
236 conn
->internal
= (void *)pconn
;
238 DLIST_ADD(ctx
->conn_list
, conn
);
243 static int ibw_setup_cq_qp(struct ibw_conn
*conn
)
245 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
246 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
247 struct ibv_qp_init_attr init_attr
;
248 struct ibv_qp_attr attr
;
251 DEBUG(DEBUG_DEBUG
, ("ibw_setup_cq_qp(cmid: %p)\n", pconn
->cm_id
));
254 pconn
->verbs_channel
= ibv_create_comp_channel(pconn
->cm_id
->verbs
);
255 if (!pconn
->verbs_channel
) {
256 sprintf(ibw_lasterr
, "ibv_create_comp_channel failed %d\n", errno
);
259 DEBUG(DEBUG_DEBUG
, ("created channel %p\n", pconn
->verbs_channel
));
261 pconn
->verbs_channel_event
= tevent_add_fd(pctx
->ectx
, NULL
, /* not pconn or conn */
262 pconn
->verbs_channel
->fd
, TEVENT_FD_READ
, ibw_event_handler_verbs
, conn
);
264 pconn
->pd
= ibv_alloc_pd(pconn
->cm_id
->verbs
);
266 sprintf(ibw_lasterr
, "ibv_alloc_pd failed %d\n", errno
);
269 DEBUG(DEBUG_DEBUG
, ("created pd %p\n", pconn
->pd
));
272 if (ibw_init_memory(conn
))
276 pconn
->cq
= ibv_create_cq(pconn
->cm_id
->verbs
,
277 pctx
->opts
.max_recv_wr
+ pctx
->opts
.max_send_wr
,
278 conn
, pconn
->verbs_channel
, 0);
279 if (pconn
->cq
==NULL
) {
280 sprintf(ibw_lasterr
, "ibv_create_cq failed\n");
284 rc
= ibv_req_notify_cq(pconn
->cq
, 0);
286 sprintf(ibw_lasterr
, "ibv_req_notify_cq failed with %d\n", rc
);
291 memset(&init_attr
, 0, sizeof(init_attr
));
292 init_attr
.cap
.max_send_wr
= pctx
->opts
.max_send_wr
;
293 init_attr
.cap
.max_recv_wr
= pctx
->opts
.max_recv_wr
;
294 init_attr
.cap
.max_recv_sge
= 1;
295 init_attr
.cap
.max_send_sge
= 1;
296 init_attr
.qp_type
= IBV_QPT_RC
;
297 init_attr
.send_cq
= pconn
->cq
;
298 init_attr
.recv_cq
= pconn
->cq
;
300 rc
= rdma_create_qp(pconn
->cm_id
, pconn
->pd
, &init_attr
);
302 sprintf(ibw_lasterr
, "rdma_create_qp failed with %d\n", rc
);
305 /* elase result is in pconn->cm_id->qp */
307 rc
= ibv_query_qp(pconn
->cm_id
->qp
, &attr
, IBV_QP_PATH_MTU
, &init_attr
);
309 sprintf(ibw_lasterr
, "ibv_query_qp failed with %d\n", rc
);
313 return ibw_fill_cq(conn
);
316 static int ibw_refill_cq_recv(struct ibw_conn
*conn
)
318 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
319 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
321 struct ibv_sge list
= {
322 .addr
= (uintptr_t) NULL
, /* filled below */
323 .length
= pctx
->opts
.recv_bufsize
,
324 .lkey
= pconn
->mr_recv
->lkey
/* always the same */
326 struct ibv_recv_wr wr
= {
327 .wr_id
= 0, /* filled below */
331 struct ibv_recv_wr
*bad_wr
;
333 DEBUG(DEBUG_DEBUG
, ("ibw_refill_cq_recv(cmid: %p)\n", pconn
->cm_id
));
335 list
.addr
= (uintptr_t) pconn
->buf_recv
+ pctx
->opts
.recv_bufsize
* pconn
->recv_index
;
336 wr
.wr_id
= pconn
->recv_index
;
337 pconn
->recv_index
= (pconn
->recv_index
+ 1) % pctx
->opts
.max_recv_wr
;
339 rc
= ibv_post_recv(pconn
->cm_id
->qp
, &wr
, &bad_wr
);
341 sprintf(ibw_lasterr
, "refill/ibv_post_recv failed with %d\n", rc
);
342 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
349 static int ibw_fill_cq(struct ibw_conn
*conn
)
351 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
352 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
354 struct ibv_sge list
= {
355 .addr
= (uintptr_t) NULL
, /* filled below */
356 .length
= pctx
->opts
.recv_bufsize
,
357 .lkey
= pconn
->mr_recv
->lkey
/* always the same */
359 struct ibv_recv_wr wr
= {
360 .wr_id
= 0, /* filled below */
364 struct ibv_recv_wr
*bad_wr
;
366 DEBUG(DEBUG_DEBUG
, ("ibw_fill_cq(cmid: %p)\n", pconn
->cm_id
));
368 for(i
= pctx
->opts
.max_recv_wr
; i
!=0; i
--) {
369 list
.addr
= (uintptr_t) pconn
->buf_recv
+ pctx
->opts
.recv_bufsize
* pconn
->recv_index
;
370 wr
.wr_id
= pconn
->recv_index
;
371 pconn
->recv_index
= (pconn
->recv_index
+ 1) % pctx
->opts
.max_recv_wr
;
373 rc
= ibv_post_recv(pconn
->cm_id
->qp
, &wr
, &bad_wr
);
375 sprintf(ibw_lasterr
, "fill/ibv_post_recv failed with %d\n", rc
);
376 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
384 static int ibw_manage_connect(struct ibw_conn
*conn
)
386 struct rdma_conn_param conn_param
;
387 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
390 DEBUG(DEBUG_DEBUG
, ("ibw_manage_connect(cmid: %p)\n", pconn
->cm_id
));
392 if (ibw_setup_cq_qp(conn
))
396 memset(&conn_param
, 0, sizeof conn_param
);
397 conn_param
.responder_resources
= 1;
398 conn_param
.initiator_depth
= 1;
399 conn_param
.retry_count
= 10;
401 rc
= rdma_connect(pconn
->cm_id
, &conn_param
);
403 sprintf(ibw_lasterr
, "rdma_connect error %d\n", rc
);
408 static void ibw_event_handler_cm(struct tevent_context
*ev
,
409 struct tevent_fd
*fde
, uint16_t flags
, void *private_data
)
412 struct ibw_ctx
*ctx
= talloc_get_type(private_data
, struct ibw_ctx
);
413 struct ibw_ctx_priv
*pctx
= talloc_get_type(ctx
->internal
, struct ibw_ctx_priv
);
414 struct ibw_conn
*conn
= NULL
;
415 struct ibw_conn_priv
*pconn
= NULL
;
416 struct rdma_cm_id
*cma_id
= NULL
;
417 struct rdma_cm_event
*event
= NULL
;
421 rc
= rdma_get_cm_event(pctx
->cm_channel
, &event
);
423 ctx
->state
= IBWS_ERROR
;
425 sprintf(ibw_lasterr
, "rdma_get_cm_event error %d\n", rc
);
430 DEBUG(DEBUG_DEBUG
, ("cma_event type %d cma_id %p (%s)\n", event
->event
, cma_id
,
431 (cma_id
== pctx
->cm_id
) ? "parent" : "child"));
433 switch (event
->event
) {
434 case RDMA_CM_EVENT_ADDR_RESOLVED
:
435 DEBUG(DEBUG_DEBUG
, ("RDMA_CM_EVENT_ADDR_RESOLVED\n"));
436 /* continuing from ibw_connect ... */
437 rc
= rdma_resolve_route(cma_id
, 2000);
439 sprintf(ibw_lasterr
, "rdma_resolve_route error %d\n", rc
);
442 /* continued at RDMA_CM_EVENT_ROUTE_RESOLVED */
445 case RDMA_CM_EVENT_ROUTE_RESOLVED
:
446 DEBUG(DEBUG_DEBUG
, ("RDMA_CM_EVENT_ROUTE_RESOLVED\n"));
447 /* after RDMA_CM_EVENT_ADDR_RESOLVED: */
448 assert(cma_id
->context
!=NULL
);
449 conn
= talloc_get_type(cma_id
->context
, struct ibw_conn
);
451 rc
= ibw_manage_connect(conn
);
457 case RDMA_CM_EVENT_CONNECT_REQUEST
:
458 DEBUG(DEBUG_DEBUG
, ("RDMA_CM_EVENT_CONNECT_REQUEST\n"));
459 ctx
->state
= IBWS_CONNECT_REQUEST
;
460 conn
= ibw_conn_new(ctx
, ctx
);
461 pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
462 pconn
->cm_id
= cma_id
; /* !!! event will be freed but id not */
463 cma_id
->context
= (void *)conn
;
464 DEBUG(DEBUG_DEBUG
, ("pconn->cm_id %p\n", pconn
->cm_id
));
466 if (ibw_setup_cq_qp(conn
))
469 conn
->state
= IBWC_INIT
;
470 pctx
->connstate_func(ctx
, conn
);
472 /* continued at ibw_accept when invoked by the func above */
473 if (!pconn
->is_accepted
) {
474 rc
= rdma_reject(cma_id
, NULL
, 0);
476 DEBUG(DEBUG_ERR
, ("rdma_reject failed with rc=%d\n", rc
));
478 DEBUG(DEBUG_DEBUG
, ("pconn->cm_id %p wasn't accepted\n", pconn
->cm_id
));
481 /* TODO: clarify whether if it's needed by upper layer: */
482 ctx
->state
= IBWS_READY
;
483 pctx
->connstate_func(ctx
, NULL
);
485 /* NOTE: more requests can arrive until RDMA_CM_EVENT_ESTABLISHED ! */
488 case RDMA_CM_EVENT_ESTABLISHED
:
489 /* expected after ibw_accept and ibw_connect[not directly] */
490 DEBUG(DEBUG_INFO
, ("ESTABLISHED (conn: %p)\n", cma_id
->context
));
491 conn
= talloc_get_type(cma_id
->context
, struct ibw_conn
);
492 assert(conn
!=NULL
); /* important assumption */
494 DEBUG(DEBUG_DEBUG
, ("ibw_setup_cq_qp succeeded (cmid=%p)\n", cma_id
));
496 /* client conn is up */
497 conn
->state
= IBWC_CONNECTED
;
499 /* both ctx and conn have changed */
500 pctx
->connstate_func(ctx
, conn
);
503 case RDMA_CM_EVENT_ADDR_ERROR
:
504 sprintf(ibw_lasterr
, "RDMA_CM_EVENT_ADDR_ERROR, error %d\n", event
->status
);
506 case RDMA_CM_EVENT_ROUTE_ERROR
:
507 sprintf(ibw_lasterr
, "RDMA_CM_EVENT_ROUTE_ERROR, error %d\n", event
->status
);
509 case RDMA_CM_EVENT_CONNECT_ERROR
:
510 sprintf(ibw_lasterr
, "RDMA_CM_EVENT_CONNECT_ERROR, error %d\n", event
->status
);
512 case RDMA_CM_EVENT_UNREACHABLE
:
513 sprintf(ibw_lasterr
, "RDMA_CM_EVENT_UNREACHABLE, error %d\n", event
->status
);
515 case RDMA_CM_EVENT_REJECTED
:
516 sprintf(ibw_lasterr
, "RDMA_CM_EVENT_REJECTED, error %d\n", event
->status
);
517 DEBUG(DEBUG_INFO
, ("cm event handler: %s", ibw_lasterr
));
518 conn
= talloc_get_type(cma_id
->context
, struct ibw_conn
);
520 /* must be done BEFORE connstate */
521 if ((rc
=rdma_ack_cm_event(event
)))
522 DEBUG(DEBUG_ERR
, ("reject/rdma_ack_cm_event failed with %d\n", rc
));
523 event
= NULL
; /* not to touch cma_id or conn */
524 conn
->state
= IBWC_ERROR
;
525 /* it should free the conn */
526 pctx
->connstate_func(NULL
, conn
);
528 break; /* this is not strictly an error */
530 case RDMA_CM_EVENT_DISCONNECTED
:
531 DEBUG(DEBUG_DEBUG
, ("RDMA_CM_EVENT_DISCONNECTED\n"));
532 if ((rc
=rdma_ack_cm_event(event
)))
533 DEBUG(DEBUG_ERR
, ("disc/rdma_ack_cm_event failed with %d\n", rc
));
534 event
= NULL
; /* don't ack more */
536 if (cma_id
!=pctx
->cm_id
) {
537 DEBUG(DEBUG_ERR
, ("client DISCONNECT event cm_id=%p\n", cma_id
));
538 conn
= talloc_get_type(cma_id
->context
, struct ibw_conn
);
539 conn
->state
= IBWC_DISCONNECTED
;
540 pctx
->connstate_func(NULL
, conn
);
544 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
545 sprintf(ibw_lasterr
, "cma detected device removal!\n");
549 sprintf(ibw_lasterr
, "unknown event %d\n", event
->event
);
553 if (event
!=NULL
&& (rc
=rdma_ack_cm_event(event
))) {
554 sprintf(ibw_lasterr
, "rdma_ack_cm_event failed with %d\n", rc
);
560 DEBUG(DEBUG_ERR
, ("cm event handler: %s", ibw_lasterr
));
563 if (cma_id
!=NULL
&& cma_id
!=pctx
->cm_id
) {
564 conn
= talloc_get_type(cma_id
->context
, struct ibw_conn
);
566 conn
->state
= IBWC_ERROR
;
567 pctx
->connstate_func(NULL
, conn
);
570 ctx
->state
= IBWS_ERROR
;
571 pctx
->connstate_func(ctx
, NULL
);
574 if ((rc
=rdma_ack_cm_event(event
))!=0) {
575 DEBUG(DEBUG_ERR
, ("rdma_ack_cm_event failed with %d\n", rc
));
582 static void ibw_event_handler_verbs(struct tevent_context
*ev
,
583 struct tevent_fd
*fde
, uint16_t flags
, void *private_data
)
585 struct ibw_conn
*conn
= talloc_get_type(private_data
, struct ibw_conn
);
586 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
587 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
591 struct ibv_cq
*ev_cq
;
594 DEBUG(DEBUG_DEBUG
, ("ibw_event_handler_verbs(%u)\n", (uint32_t)flags
));
596 /* TODO: check whether if it's good to have more channels here... */
597 rc
= ibv_get_cq_event(pconn
->verbs_channel
, &ev_cq
, &ev_ctx
);
599 sprintf(ibw_lasterr
, "Failed to get cq_event with %d\n", rc
);
602 if (ev_cq
!= pconn
->cq
) {
603 sprintf(ibw_lasterr
, "ev_cq(%p) != pconn->cq(%p)\n", ev_cq
, pconn
->cq
);
606 rc
= ibv_req_notify_cq(pconn
->cq
, 0);
608 sprintf(ibw_lasterr
, "Couldn't request CQ notification (%d)\n", rc
);
612 while((rc
=ibv_poll_cq(pconn
->cq
, 1, &wc
))==1) {
614 sprintf(ibw_lasterr
, "cq completion failed status=%d, opcode=%d, rc=%d\n",
615 wc
.status
, wc
.opcode
, rc
);
621 DEBUG(DEBUG_DEBUG
, ("send completion\n"));
622 if (ibw_wc_send(conn
, &wc
))
626 case IBV_WC_RDMA_WRITE
:
627 DEBUG(DEBUG_DEBUG
, ("rdma write completion\n"));
630 case IBV_WC_RDMA_READ
:
631 DEBUG(DEBUG_DEBUG
, ("rdma read completion\n"));
635 DEBUG(DEBUG_DEBUG
, ("recv completion\n"));
636 if (ibw_wc_recv(conn
, &wc
))
641 sprintf(ibw_lasterr
, "unknown completion %d\n", wc
.opcode
);
646 sprintf(ibw_lasterr
, "ibv_poll_cq error %d\n", rc
);
650 ibv_ack_cq_events(pconn
->cq
, 1);
654 ibv_ack_cq_events(pconn
->cq
, 1);
656 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
658 if (conn
->state
!=IBWC_ERROR
) {
659 conn
->state
= IBWC_ERROR
;
660 pctx
->connstate_func(NULL
, conn
);
664 static int ibw_process_queue(struct ibw_conn
*conn
)
666 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
667 struct ibw_ctx_priv
*pctx
;
672 if (pconn
->queue
==NULL
)
677 /* we must have at least 1 fragment to send */
678 assert(p
->queued_ref_cnt
>0);
681 pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
682 msg_size
= (p
->queued_ref_cnt
) ? pctx
->opts
.recv_bufsize
: p
->queued_rlen
;
684 assert(p
->queued_msg
!=NULL
);
687 DEBUG(DEBUG_DEBUG
, ("ibw_process_queue refcnt=%d msgsize=%u\n",
688 p
->queued_ref_cnt
, msg_size
));
690 rc
= ibw_send_packet(conn
, p
->queued_msg
, p
, msg_size
);
692 /* was this the last fragment? */
693 if (p
->queued_ref_cnt
) {
694 p
->queued_msg
+= pctx
->opts
.recv_bufsize
;
696 DLIST_REMOVE2(pconn
->queue
, p
, qprev
, qnext
);
697 p
->queued_msg
= NULL
;
703 static int ibw_wc_send(struct ibw_conn
*conn
, struct ibv_wc
*wc
)
705 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
706 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
710 DEBUG(DEBUG_DEBUG
, ("ibw_wc_send(cmid: %p, wr_id: %u, bl: %u)\n",
711 pconn
->cm_id
, (uint32_t)wc
->wr_id
, (uint32_t)wc
->byte_len
));
713 assert(pconn
->cm_id
->qp
->qp_num
==wc
->qp_num
);
714 assert(wc
->wr_id
>= pctx
->opts
.max_recv_wr
);
715 send_index
= wc
->wr_id
- pctx
->opts
.max_recv_wr
;
718 if (send_index
< pctx
->opts
.max_send_wr
) {
719 DEBUG(DEBUG_DEBUG
, ("ibw_wc_send#1 %u\n", (int)wc
->wr_id
));
720 p
= pconn
->wr_index
[send_index
];
721 if (p
->buf_large
!=NULL
) {
723 /* awaiting more of it... */
726 ibw_free_mr(&p
->buf_large
, &p
->mr_large
);
727 DLIST_REMOVE(pconn
->wr_list_used
, p
);
728 DLIST_ADD(pconn
->wr_list_avail
, p
);
730 } else { /* nasty - but necessary */
731 DLIST_REMOVE(pconn
->wr_list_used
, p
);
732 DLIST_ADD(pconn
->wr_list_avail
, p
);
734 } else { /* "extra" request - not optimized */
735 DEBUG(DEBUG_DEBUG
, ("ibw_wc_send#2 %u\n", (int)wc
->wr_id
));
736 for(p
=pconn
->extra_sent
; p
!=NULL
; p
=p
->next
)
737 if ((p
->wr_id
+ pctx
->opts
.max_recv_wr
)==(int)wc
->wr_id
)
740 sprintf(ibw_lasterr
, "failed to find wr_id %d\n", (int)wc
->wr_id
);
746 ibw_free_mr(&p
->buf_large
, &p
->mr_large
);
747 DLIST_REMOVE(pconn
->extra_sent
, p
);
748 DLIST_ADD(pconn
->extra_avail
, p
);
752 return ibw_process_queue(conn
);
755 static int ibw_append_to_part(struct ibw_conn_priv
*pconn
,
756 struct ibw_part
*part
, char **pp
, uint32_t add_len
, int info
)
758 DEBUG(DEBUG_DEBUG
, ("ibw_append_to_part: cmid=%p, (bs=%u, len=%u, tr=%u), al=%u, i=%u\n",
759 pconn
->cm_id
, part
->bufsize
, part
->len
, part
->to_read
, add_len
, info
));
761 /* allocate more if necessary - it's an "evergrowing" buffer... */
762 if (part
->len
+ add_len
> part
->bufsize
) {
763 if (part
->buf
==NULL
) {
764 assert(part
->len
==0);
765 part
->buf
= talloc_size(pconn
, add_len
);
766 if (part
->buf
==NULL
) {
767 sprintf(ibw_lasterr
, "recv talloc_size error (%u) #%d\n",
771 part
->bufsize
= add_len
;
773 part
->buf
= talloc_realloc_size(pconn
,
774 part
->buf
, part
->len
+ add_len
);
775 if (part
->buf
==NULL
) {
776 sprintf(ibw_lasterr
, "recv realloc error (%u + %u) #%d\n",
777 part
->len
, add_len
, info
);
781 part
->bufsize
= part
->len
+ add_len
;
785 memcpy(part
->buf
+ part
->len
, *pp
, add_len
);
787 part
->len
+= add_len
;
788 part
->to_read
-= add_len
;
793 static int ibw_wc_mem_threshold(struct ibw_conn_priv
*pconn
,
794 struct ibw_part
*part
, uint32_t threshold
)
796 DEBUG(DEBUG_DEBUG
, ("ibw_wc_mem_threshold: cmid=%p, (bs=%u, len=%u, tr=%u), thr=%u\n",
797 pconn
->cm_id
, part
->bufsize
, part
->len
, part
->to_read
, threshold
));
799 if (part
->bufsize
> threshold
) {
800 DEBUG(DEBUG_DEBUG
, ("ibw_wc_mem_threshold: cmid=%p, %u > %u\n",
801 pconn
->cm_id
, part
->bufsize
, threshold
));
802 talloc_free(part
->buf
);
803 part
->buf
= talloc_size(pconn
, threshold
);
804 if (part
->buf
==NULL
) {
805 sprintf(ibw_lasterr
, "talloc_size failed\n");
808 part
->bufsize
= threshold
;
813 static int ibw_wc_recv(struct ibw_conn
*conn
, struct ibv_wc
*wc
)
815 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
816 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
817 struct ibw_part
*part
= &pconn
->part
;
819 uint32_t remain
= wc
->byte_len
;
821 DEBUG(DEBUG_DEBUG
, ("ibw_wc_recv: cmid=%p, wr_id: %u, bl: %u\n",
822 pconn
->cm_id
, (uint32_t)wc
->wr_id
, remain
));
824 assert(pconn
->cm_id
->qp
->qp_num
==wc
->qp_num
);
825 assert((int)wc
->wr_id
< pctx
->opts
.max_recv_wr
);
826 assert(wc
->byte_len
<= pctx
->opts
.recv_bufsize
);
828 p
= pconn
->buf_recv
+ ((int)wc
->wr_id
* pctx
->opts
.recv_bufsize
);
831 /* here always true: (part->len!=0 && part->to_read!=0) ||
832 (part->len==0 && part->to_read==0) */
833 if (part
->len
) { /* is there a partial msg to be continued? */
834 int read_len
= (part
->to_read
<=remain
) ? part
->to_read
: remain
;
835 if (ibw_append_to_part(pconn
, part
, &p
, read_len
, 421))
839 if (part
->len
<=sizeof(uint32_t) && part
->to_read
==0) {
840 assert(part
->len
==sizeof(uint32_t));
841 /* set it again now... */
842 part
->to_read
= *((uint32_t *)(part
->buf
)); /* TODO: ntohl */
843 if (part
->to_read
<sizeof(uint32_t)) {
844 sprintf(ibw_lasterr
, "got msglen=%u #2\n", part
->to_read
);
847 part
->to_read
-= sizeof(uint32_t); /* it's already read */
850 if (part
->to_read
==0) {
851 if (pctx
->receive_func(conn
, part
->buf
, part
->len
) != 0) {
854 part
->len
= 0; /* tells not having partial data (any more) */
855 if (ibw_wc_mem_threshold(pconn
, part
, pctx
->opts
.recv_threshold
))
859 if (remain
>=sizeof(uint32_t)) {
860 uint32_t msglen
= *(uint32_t *)p
; /* TODO: ntohl */
861 if (msglen
<sizeof(uint32_t)) {
862 sprintf(ibw_lasterr
, "got msglen=%u\n", msglen
);
866 /* mostly awaited case: */
867 if (msglen
<=remain
) {
868 if (pctx
->receive_func(conn
, p
, msglen
) != 0) {
874 part
->to_read
= msglen
;
875 /* part->len is already 0 */
876 if (ibw_append_to_part(pconn
, part
, &p
, remain
, 422))
878 remain
= 0; /* to be continued ... */
879 /* part->to_read > 0 here */
881 } else { /* edge case: */
882 part
->to_read
= sizeof(uint32_t);
883 /* part->len is already 0 */
884 if (ibw_append_to_part(pconn
, part
, &p
, remain
, 423))
887 /* part->to_read > 0 here */
890 } /* <remain> is always decreased at least by 1 */
892 if (ibw_refill_cq_recv(conn
))
898 DEBUG(DEBUG_ERR
, ("ibw_wc_recv error: %s", ibw_lasterr
));
902 static int ibw_process_init_attrs(struct ibw_initattr
*attr
, int nattr
, struct ibw_opts
*opts
)
905 const char *name
, *value
;
907 DEBUG(DEBUG_DEBUG
, ("ibw_process_init_attrs: nattr: %d\n", nattr
));
909 opts
->max_send_wr
= IBW_MAX_SEND_WR
;
910 opts
->max_recv_wr
= IBW_MAX_RECV_WR
;
911 opts
->recv_bufsize
= IBW_RECV_BUFSIZE
;
912 opts
->recv_threshold
= IBW_RECV_THRESHOLD
;
914 for(i
=0; i
<nattr
; i
++) {
916 value
= attr
[i
].value
;
918 assert(name
!=NULL
&& value
!=NULL
);
919 if (strcmp(name
, "max_send_wr")==0)
920 opts
->max_send_wr
= atoi(value
);
921 else if (strcmp(name
, "max_recv_wr")==0)
922 opts
->max_recv_wr
= atoi(value
);
923 else if (strcmp(name
, "recv_bufsize")==0)
924 opts
->recv_bufsize
= atoi(value
);
925 else if (strcmp(name
, "recv_threshold")==0)
926 opts
->recv_threshold
= atoi(value
);
928 sprintf(ibw_lasterr
, "ibw_init: unknown name %s\n", name
);
935 struct ibw_ctx
*ibw_init(struct ibw_initattr
*attr
, int nattr
,
937 ibw_connstate_fn_t ibw_connstate
,
938 ibw_receive_fn_t ibw_receive
,
939 struct tevent_context
*ectx
)
941 struct ibw_ctx
*ctx
= talloc_zero(NULL
, struct ibw_ctx
);
942 struct ibw_ctx_priv
*pctx
;
945 DEBUG(DEBUG_DEBUG
, ("ibw_init(ctx_userdata: %p, ectx: %p)\n", ctx_userdata
, ectx
));
947 /* initialize basic data structures */
948 memset(ibw_lasterr
, 0, IBW_LASTERR_BUFSIZE
);
951 ibw_lasterr
[0] = '\0';
952 talloc_set_destructor(ctx
, ibw_ctx_destruct
);
953 ctx
->ctx_userdata
= ctx_userdata
;
955 pctx
= talloc_zero(ctx
, struct ibw_ctx_priv
);
956 talloc_set_destructor(pctx
, ibw_ctx_priv_destruct
);
957 ctx
->internal
= (void *)pctx
;
960 pctx
->connstate_func
= ibw_connstate
;
961 pctx
->receive_func
= ibw_receive
;
965 /* process attributes */
966 if (ibw_process_init_attrs(attr
, nattr
, &pctx
->opts
))
970 pctx
->cm_channel
= rdma_create_event_channel();
971 if (!pctx
->cm_channel
) {
972 sprintf(ibw_lasterr
, "rdma_create_event_channel error %d\n", errno
);
976 pctx
->cm_channel_event
= tevent_add_fd(pctx
->ectx
, pctx
,
977 pctx
->cm_channel
->fd
, TEVENT_FD_READ
, ibw_event_handler_cm
, ctx
);
979 #if RDMA_USER_CM_MAX_ABI_VERSION >= 2
980 rc
= rdma_create_id(pctx
->cm_channel
, &pctx
->cm_id
, ctx
, RDMA_PS_TCP
);
982 rc
= rdma_create_id(pctx
->cm_channel
, &pctx
->cm_id
, ctx
);
986 sprintf(ibw_lasterr
, "rdma_create_id error %d\n", rc
);
989 DEBUG(DEBUG_DEBUG
, ("created cm_id %p\n", pctx
->cm_id
));
991 pctx
->pagesize
= sysconf(_SC_PAGESIZE
);
994 /* don't put code here */
996 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1004 int ibw_stop(struct ibw_ctx
*ctx
)
1006 struct ibw_ctx_priv
*pctx
= (struct ibw_ctx_priv
*)ctx
->internal
;
1009 DEBUG(DEBUG_DEBUG
, ("ibw_stop\n"));
1011 for(p
=ctx
->conn_list
; p
!=NULL
; p
=p
->next
) {
1012 if (p
->state
==IBWC_ERROR
|| p
->state
==IBWC_CONNECTED
) {
1013 if (ibw_disconnect(p
))
1018 ctx
->state
= IBWS_STOPPED
;
1019 pctx
->connstate_func(ctx
, NULL
);
1024 int ibw_bind(struct ibw_ctx
*ctx
, struct sockaddr_in
*my_addr
)
1026 struct ibw_ctx_priv
*pctx
= (struct ibw_ctx_priv
*)ctx
->internal
;
1029 DEBUG(DEBUG_DEBUG
, ("ibw_bind: addr=%s, port=%u\n",
1030 inet_ntoa(my_addr
->sin_addr
), ntohs(my_addr
->sin_port
)));
1031 rc
= rdma_bind_addr(pctx
->cm_id
, (struct sockaddr
*) my_addr
);
1033 sprintf(ibw_lasterr
, "rdma_bind_addr error %d\n", rc
);
1034 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1037 DEBUG(DEBUG_DEBUG
, ("rdma_bind_addr successful\n"));
1042 int ibw_listen(struct ibw_ctx
*ctx
, int backlog
)
1044 struct ibw_ctx_priv
*pctx
= talloc_get_type(ctx
->internal
, struct ibw_ctx_priv
);
1047 DEBUG(DEBUG_DEBUG
, ("ibw_listen\n"));
1048 rc
= rdma_listen(pctx
->cm_id
, backlog
);
1050 sprintf(ibw_lasterr
, "rdma_listen failed: %d\n", rc
);
1051 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1058 int ibw_accept(struct ibw_ctx
*ctx
, struct ibw_conn
*conn
, void *conn_userdata
)
1060 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1061 struct rdma_conn_param conn_param
;
1064 DEBUG(DEBUG_DEBUG
, ("ibw_accept: cmid=%p\n", pconn
->cm_id
));
1065 conn
->conn_userdata
= conn_userdata
;
1067 memset(&conn_param
, 0, sizeof(struct rdma_conn_param
));
1068 conn_param
.responder_resources
= 1;
1069 conn_param
.initiator_depth
= 1;
1070 rc
= rdma_accept(pconn
->cm_id
, &conn_param
);
1072 sprintf(ibw_lasterr
, "rdma_accept failed %d\n", rc
);
1073 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1077 pconn
->is_accepted
= 1;
1079 /* continued at RDMA_CM_EVENT_ESTABLISHED */
1084 int ibw_connect(struct ibw_conn
*conn
, struct sockaddr_in
*serv_addr
, void *conn_userdata
)
1086 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
1087 struct ibw_conn_priv
*pconn
= NULL
;
1092 conn
->conn_userdata
= conn_userdata
;
1093 pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1094 DEBUG(DEBUG_DEBUG
, ("ibw_connect: addr=%s, port=%u\n", inet_ntoa(serv_addr
->sin_addr
),
1095 ntohs(serv_addr
->sin_port
)));
1097 /* clean previous - probably half - initialization */
1098 if (ibw_conn_priv_destruct(pconn
)) {
1099 DEBUG(DEBUG_ERR
, ("ibw_connect/ibw_pconn_destruct failed for cm_id=%p\n", pconn
->cm_id
));
1104 #if RDMA_USER_CM_MAX_ABI_VERSION >= 2
1105 rc
= rdma_create_id(pctx
->cm_channel
, &pconn
->cm_id
, conn
, RDMA_PS_TCP
);
1107 rc
= rdma_create_id(pctx
->cm_channel
, &pconn
->cm_id
, conn
);
1111 sprintf(ibw_lasterr
, "ibw_connect/rdma_create_id error %d\n", rc
);
1115 DEBUG(DEBUG_DEBUG
, ("ibw_connect: rdma_create_id succeeded, cm_id=%p\n", pconn
->cm_id
));
1117 rc
= rdma_resolve_addr(pconn
->cm_id
, NULL
, (struct sockaddr
*) serv_addr
, 2000);
1119 sprintf(ibw_lasterr
, "rdma_resolve_addr error %d\n", rc
);
1120 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1125 /* continued at RDMA_CM_EVENT_ADDR_RESOLVED */
1130 int ibw_disconnect(struct ibw_conn
*conn
)
1133 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1135 DEBUG(DEBUG_DEBUG
, ("ibw_disconnect: cmid=%p\n", pconn
->cm_id
));
1137 assert(pconn
!=NULL
);
1139 switch(conn
->state
) {
1141 ibw_conn_priv_destruct(pconn
); /* do this here right now */
1143 case IBWC_CONNECTED
:
1144 rc
= rdma_disconnect(pconn
->cm_id
);
1146 sprintf(ibw_lasterr
, "ibw_disconnect failed with %d\n", rc
);
1147 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1152 DEBUG(DEBUG_DEBUG
, ("invalid state for disconnect: %d\n", conn
->state
));
1159 int ibw_alloc_send_buf(struct ibw_conn
*conn
, void **buf
, void **key
, uint32_t len
)
1161 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
1162 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1163 struct ibw_wr
*p
= pconn
->wr_list_avail
;
1166 DEBUG(DEBUG_DEBUG
, ("ibw_alloc_send_buf#1: cmid=%p, len=%d\n", pconn
->cm_id
, len
));
1168 DLIST_REMOVE(pconn
->wr_list_avail
, p
);
1169 DLIST_ADD(pconn
->wr_list_used
, p
);
1171 if (len
<= pctx
->opts
.recv_bufsize
) {
1172 *buf
= (void *)p
->buf
;
1174 p
->buf_large
= ibw_alloc_mr(pctx
, pconn
, len
, &p
->mr_large
);
1175 if (p
->buf_large
==NULL
) {
1176 sprintf(ibw_lasterr
, "ibw_alloc_mr#1 failed\n");
1179 *buf
= (void *)p
->buf_large
;
1181 /* p->wr_id is already filled in ibw_init_memory */
1183 DEBUG(DEBUG_DEBUG
, ("ibw_alloc_send_buf#2: cmid=%p, len=%d\n", pconn
->cm_id
, len
));
1185 p
= pconn
->extra_avail
;
1187 p
= pconn
->extra_avail
= talloc_zero(pconn
, struct ibw_wr
);
1188 talloc_set_destructor(p
, ibw_wr_destruct
);
1190 sprintf(ibw_lasterr
, "talloc_zero failed (emax: %u)\n", pconn
->extra_max
);
1193 p
->wr_id
= pctx
->opts
.max_send_wr
+ pconn
->extra_max
;
1195 switch(pconn
->extra_max
) {
1196 case 1: DEBUG(DEBUG_INFO
, ("warning: queue performed\n")); break;
1197 case 10: DEBUG(DEBUG_INFO
, ("warning: queue reached 10\n")); break;
1198 case 100: DEBUG(DEBUG_INFO
, ("warning: queue reached 100\n")); break;
1199 case 1000: DEBUG(DEBUG_INFO
, ("warning: queue reached 1000\n")); break;
1204 p
->buf_large
= ibw_alloc_mr(pctx
, pconn
, len
, &p
->mr_large
);
1205 if (p
->buf_large
==NULL
) {
1206 sprintf(ibw_lasterr
, "ibw_alloc_mr#2 failed\n");
1209 *buf
= (void *)p
->buf_large
;
1211 DLIST_REMOVE(pconn
->extra_avail
, p
);
1212 /* we don't have prepared index for this, so that
1213 * we will have to find this by wr_id later on */
1214 DLIST_ADD(pconn
->extra_sent
, p
);
1221 DEBUG(DEBUG_ERR
, ("ibw_alloc_send_buf error: %s", ibw_lasterr
));
1226 static int ibw_send_packet(struct ibw_conn
*conn
, void *buf
, struct ibw_wr
*p
, uint32_t len
)
1228 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
1229 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1232 /* can we send it right now? */
1233 if (pconn
->wr_sent
<pctx
->opts
.max_send_wr
) {
1234 struct ibv_send_wr
*bad_wr
;
1235 struct ibv_sge list
= {
1236 .addr
= (uintptr_t)buf
,
1238 .lkey
= pconn
->mr_send
->lkey
1240 struct ibv_send_wr wr
= {
1241 .wr_id
= p
->wr_id
+ pctx
->opts
.max_recv_wr
,
1244 .opcode
= IBV_WR_SEND
,
1245 .send_flags
= IBV_SEND_SIGNALED
,
1248 if (p
->buf_large
==NULL
) {
1249 DEBUG(DEBUG_DEBUG
, ("ibw_send#normal(cmid: %p, wrid: %u, n: %d)\n",
1250 pconn
->cm_id
, (uint32_t)wr
.wr_id
, len
));
1252 DEBUG(DEBUG_DEBUG
, ("ibw_send#large(cmid: %p, wrid: %u, n: %d)\n",
1253 pconn
->cm_id
, (uint32_t)wr
.wr_id
, len
));
1254 list
.lkey
= p
->mr_large
->lkey
;
1257 rc
= ibv_post_send(pconn
->cm_id
->qp
, &wr
, &bad_wr
);
1259 sprintf(ibw_lasterr
, "ibv_post_send error %d (%d)\n",
1260 rc
, pconn
->wr_sent
);
1267 } /* else put the request into our own queue: */
1269 DEBUG(DEBUG_DEBUG
, ("ibw_send#queued(cmid: %p, len: %u)\n", pconn
->cm_id
, len
));
1271 /* TODO: clarify how to continue when state==IBWC_STOPPED */
1273 /* to be sent by ibw_wc_send */
1274 /* regardless "normal" or [a part of] "large" packet */
1275 if (!p
->queued_ref_cnt
) {
1276 DLIST_ADD_END2(pconn
->queue
, p
, struct ibw_wr
*,
1277 qprev
, qnext
); /* TODO: optimize */
1278 p
->queued_msg
= buf
;
1280 p
->queued_ref_cnt
++;
1281 p
->queued_rlen
= len
; /* last wins; see ibw_wc_send */
1285 DEBUG(DEBUG_ERR
, ("%s", ibw_lasterr
));
1289 int ibw_send(struct ibw_conn
*conn
, void *buf
, void *key
, uint32_t len
)
1291 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
1292 struct ibw_wr
*p
= talloc_get_type(key
, struct ibw_wr
);
1295 assert(len
>=sizeof(uint32_t));
1296 assert((*((uint32_t *)buf
)==len
)); /* TODO: htonl */
1298 if (len
> pctx
->opts
.recv_bufsize
) {
1299 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1301 char *packet
= (char *)buf
;
1302 uint32_t recv_bufsize
= pctx
->opts
.recv_bufsize
;
1304 DEBUG(DEBUG_DEBUG
, ("ibw_send#frag(cmid: %p, buf: %p, len: %u)\n",
1305 pconn
->cm_id
, buf
, len
));
1307 /* single threaded => no race here: */
1308 assert(p
->ref_cnt
==0);
1309 while(rlen
> recv_bufsize
) {
1310 rc
= ibw_send_packet(conn
, packet
, p
, recv_bufsize
);
1313 packet
+= recv_bufsize
;
1314 rlen
-= recv_bufsize
;
1315 p
->ref_cnt
++; /* not good to have it in ibw_send_packet */
1318 rc
= ibw_send_packet(conn
, packet
, p
, rlen
);
1319 p
->ref_cnt
++; /* not good to have it in ibw_send_packet */
1321 p
->ref_cnt
--; /* for the same handling */
1323 assert(p
->ref_cnt
==0);
1324 assert(p
->queued_ref_cnt
==0);
1326 rc
= ibw_send_packet(conn
, buf
, p
, len
);
1331 int ibw_cancel_send_buf(struct ibw_conn
*conn
, void *buf
, void *key
)
1333 struct ibw_ctx_priv
*pctx
= talloc_get_type(conn
->ctx
->internal
, struct ibw_ctx_priv
);
1334 struct ibw_conn_priv
*pconn
= talloc_get_type(conn
->internal
, struct ibw_conn_priv
);
1335 struct ibw_wr
*p
= talloc_get_type(key
, struct ibw_wr
);
1341 if (p
->buf_large
!=NULL
)
1342 ibw_free_mr(&p
->buf_large
, &p
->mr_large
);
1345 if (p
->wr_id
< pctx
->opts
.max_send_wr
) {
1346 DEBUG(DEBUG_DEBUG
, ("ibw_cancel_send_buf#1 %u", (int)p
->wr_id
));
1347 DLIST_REMOVE(pconn
->wr_list_used
, p
);
1348 DLIST_ADD(pconn
->wr_list_avail
, p
);
1349 } else { /* "extra" packet */
1350 DEBUG(DEBUG_DEBUG
, ("ibw_cancel_send_buf#2 %u", (int)p
->wr_id
));
1351 DLIST_REMOVE(pconn
->extra_sent
, p
);
1352 DLIST_ADD(pconn
->extra_avail
, p
);
1358 const char *ibw_getLastError(void)