1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2015, 2017 Oracle. All rights reserved.
4 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
7 /* Lightweight memory registration using Fast Registration Work
10 * FRWR features ordered asynchronous registration and deregistration
11 * of arbitrarily sized memory regions. This is the fastest and safest
12 * but most complex memory registration mode.
17 * A Memory Region is prepared for RDMA READ or WRITE using a FAST_REG
18 * Work Request (frwr_op_map). When the RDMA operation is finished, this
19 * Memory Region is invalidated using a LOCAL_INV Work Request
20 * (frwr_op_unmap_sync).
22 * Typically these Work Requests are not signaled, and neither are RDMA
23 * SEND Work Requests (with the exception of signaling occasionally to
24 * prevent provider work queue overflows). This greatly reduces HCA
27 * As an optimization, frwr_op_unmap marks MRs INVALID before the
28 * LOCAL_INV WR is posted. If posting succeeds, the MR is placed on
29 * rb_mrs immediately so that no work (like managing a linked list
30 * under a spinlock) is needed in the completion upcall.
32 * But this means that frwr_op_map() can occasionally encounter an MR
33 * that is INVALID but the LOCAL_INV WR has not completed. Work Queue
34 * ordering prevents a subsequent FAST_REG WR from executing against
35 * that MR while it is still being invalidated.
40 * ->op_map and the transport connect worker cannot run at the same
41 * time, but ->op_unmap can fire while the transport connect worker
42 * is running. Thus MR recovery is handled in ->op_map, to guarantee
43 * that recovered MRs are owned by a sending RPC, and not one where
44 * ->op_unmap could fire at the same time transport reconnect is
47 * When the underlying transport disconnects, MRs are left in one of
50 * INVALID: The MR was not in use before the QP entered ERROR state.
52 * VALID: The MR was registered before the QP entered ERROR state.
54 * FLUSHED_FR: The MR was being registered when the QP entered ERROR
55 * state, and the pending WR was flushed.
57 * FLUSHED_LI: The MR was being invalidated when the QP entered ERROR
58 * state, and the pending WR was flushed.
60 * When frwr_op_map encounters FLUSHED and VALID MRs, they are recovered
61 * with ib_dereg_mr and then are re-initialized. Because MR recovery
62 * allocates fresh resources, it is deferred to a workqueue, and the
63 * recovered MRs are placed back on the rb_mrs list when recovery is
64 * complete. frwr_op_map allocates another MR for the current RPC while
65 * the broken MR is reset.
67 * To ensure that frwr_op_map doesn't encounter an MR that is marked
68 * INVALID but that is about to be flushed due to a previous transport
69 * disconnect, the transport connect worker attempts to drain all
70 * pending send queue WRs before the transport is reconnected.
73 #include <linux/sunrpc/rpc_rdma.h>
74 #include <linux/sunrpc/svc_rdma.h>
76 #include "xprt_rdma.h"
77 #include <trace/events/rpcrdma.h>
79 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
80 # define RPCDBG_FACILITY RPCDBG_TRANS
84 frwr_is_supported(struct rpcrdma_ia
*ia
)
86 struct ib_device_attr
*attrs
= &ia
->ri_device
->attrs
;
88 if (!(attrs
->device_cap_flags
& IB_DEVICE_MEM_MGT_EXTENSIONS
))
89 goto out_not_supported
;
90 if (attrs
->max_fast_reg_page_list_len
== 0)
91 goto out_not_supported
;
95 pr_info("rpcrdma: 'frwr' mode is not supported by device %s\n",
101 frwr_op_release_mr(struct rpcrdma_mr
*mr
)
105 rc
= ib_dereg_mr(mr
->frwr
.fr_mr
);
107 pr_err("rpcrdma: final ib_dereg_mr for %p returned %i\n",
113 /* MRs are dynamically allocated, so simply clean up and release the MR.
114 * A replacement MR will subsequently be allocated on demand.
117 frwr_mr_recycle_worker(struct work_struct
*work
)
119 struct rpcrdma_mr
*mr
= container_of(work
, struct rpcrdma_mr
, mr_recycle
);
120 enum rpcrdma_frwr_state state
= mr
->frwr
.fr_state
;
121 struct rpcrdma_xprt
*r_xprt
= mr
->mr_xprt
;
123 trace_xprtrdma_mr_recycle(mr
);
125 if (state
!= FRWR_FLUSHED_LI
) {
126 trace_xprtrdma_mr_unmap(mr
);
127 ib_dma_unmap_sg(r_xprt
->rx_ia
.ri_device
,
128 mr
->mr_sg
, mr
->mr_nents
, mr
->mr_dir
);
131 spin_lock(&r_xprt
->rx_buf
.rb_mrlock
);
132 list_del(&mr
->mr_all
);
133 r_xprt
->rx_stats
.mrs_recycled
++;
134 spin_unlock(&r_xprt
->rx_buf
.rb_mrlock
);
135 frwr_op_release_mr(mr
);
139 frwr_op_init_mr(struct rpcrdma_ia
*ia
, struct rpcrdma_mr
*mr
)
141 unsigned int depth
= ia
->ri_max_frwr_depth
;
142 struct rpcrdma_frwr
*frwr
= &mr
->frwr
;
145 frwr
->fr_mr
= ib_alloc_mr(ia
->ri_pd
, ia
->ri_mrtype
, depth
);
146 if (IS_ERR(frwr
->fr_mr
))
149 mr
->mr_sg
= kcalloc(depth
, sizeof(*mr
->mr_sg
), GFP_KERNEL
);
153 INIT_LIST_HEAD(&mr
->mr_list
);
154 INIT_WORK(&mr
->mr_recycle
, frwr_mr_recycle_worker
);
155 sg_init_table(mr
->mr_sg
, depth
);
156 init_completion(&frwr
->fr_linv_done
);
160 rc
= PTR_ERR(frwr
->fr_mr
);
161 dprintk("RPC: %s: ib_alloc_mr status %i\n",
167 dprintk("RPC: %s: sg allocation failure\n",
169 ib_dereg_mr(frwr
->fr_mr
);
174 * ep->rep_attr.cap.max_send_wr
175 * ep->rep_attr.cap.max_recv_wr
176 * cdata->max_requests
179 * And these FRWR-related fields:
180 * ia->ri_max_frwr_depth
184 frwr_op_open(struct rpcrdma_ia
*ia
, struct rpcrdma_ep
*ep
,
185 struct rpcrdma_create_data_internal
*cdata
)
187 struct ib_device_attr
*attrs
= &ia
->ri_device
->attrs
;
188 int max_qp_wr
, depth
, delta
;
190 ia
->ri_mrtype
= IB_MR_TYPE_MEM_REG
;
191 if (attrs
->device_cap_flags
& IB_DEVICE_SG_GAPS_REG
)
192 ia
->ri_mrtype
= IB_MR_TYPE_SG_GAPS
;
194 ia
->ri_max_frwr_depth
=
195 min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS
,
196 attrs
->max_fast_reg_page_list_len
);
197 dprintk("RPC: %s: device's max FR page list len = %u\n",
198 __func__
, ia
->ri_max_frwr_depth
);
200 /* Add room for frwr register and invalidate WRs.
201 * 1. FRWR reg WR for head
202 * 2. FRWR invalidate WR for head
203 * 3. N FRWR reg WRs for pagelist
204 * 4. N FRWR invalidate WRs for pagelist
205 * 5. FRWR reg WR for tail
206 * 6. FRWR invalidate WR for tail
207 * 7. The RDMA_SEND WR
211 /* Calculate N if the device max FRWR depth is smaller than
212 * RPCRDMA_MAX_DATA_SEGS.
214 if (ia
->ri_max_frwr_depth
< RPCRDMA_MAX_DATA_SEGS
) {
215 delta
= RPCRDMA_MAX_DATA_SEGS
- ia
->ri_max_frwr_depth
;
217 depth
+= 2; /* FRWR reg + invalidate */
218 delta
-= ia
->ri_max_frwr_depth
;
222 max_qp_wr
= ia
->ri_device
->attrs
.max_qp_wr
;
223 max_qp_wr
-= RPCRDMA_BACKWARD_WRS
;
225 if (max_qp_wr
< RPCRDMA_MIN_SLOT_TABLE
)
227 if (cdata
->max_requests
> max_qp_wr
)
228 cdata
->max_requests
= max_qp_wr
;
229 ep
->rep_attr
.cap
.max_send_wr
= cdata
->max_requests
* depth
;
230 if (ep
->rep_attr
.cap
.max_send_wr
> max_qp_wr
) {
231 cdata
->max_requests
= max_qp_wr
/ depth
;
232 if (!cdata
->max_requests
)
234 ep
->rep_attr
.cap
.max_send_wr
= cdata
->max_requests
*
237 ep
->rep_attr
.cap
.max_send_wr
+= RPCRDMA_BACKWARD_WRS
;
238 ep
->rep_attr
.cap
.max_send_wr
+= 1; /* for ib_drain_sq */
239 ep
->rep_attr
.cap
.max_recv_wr
= cdata
->max_requests
;
240 ep
->rep_attr
.cap
.max_recv_wr
+= RPCRDMA_BACKWARD_WRS
;
241 ep
->rep_attr
.cap
.max_recv_wr
+= 1; /* for ib_drain_rq */
243 ia
->ri_max_segs
= max_t(unsigned int, 1, RPCRDMA_MAX_DATA_SEGS
/
244 ia
->ri_max_frwr_depth
);
245 ia
->ri_max_segs
+= 2; /* segments for head and tail buffers */
249 /* FRWR mode conveys a list of pages per chunk segment. The
250 * maximum length of that list is the FRWR page list depth.
253 frwr_op_maxpages(struct rpcrdma_xprt
*r_xprt
)
255 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
257 return min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS
,
258 RPCRDMA_MAX_HDR_SEGS
* ia
->ri_max_frwr_depth
);
262 __frwr_sendcompletion_flush(struct ib_wc
*wc
, const char *wr
)
264 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
265 pr_err("rpcrdma: %s: %s (%u/0x%x)\n",
266 wr
, ib_wc_status_msg(wc
->status
),
267 wc
->status
, wc
->vendor_err
);
271 * frwr_wc_fastreg - Invoked by RDMA provider for a flushed FastReg WC
272 * @cq: completion queue (ignored)
277 frwr_wc_fastreg(struct ib_cq
*cq
, struct ib_wc
*wc
)
279 struct ib_cqe
*cqe
= wc
->wr_cqe
;
280 struct rpcrdma_frwr
*frwr
=
281 container_of(cqe
, struct rpcrdma_frwr
, fr_cqe
);
283 /* WARNING: Only wr_cqe and status are reliable at this point */
284 if (wc
->status
!= IB_WC_SUCCESS
) {
285 frwr
->fr_state
= FRWR_FLUSHED_FR
;
286 __frwr_sendcompletion_flush(wc
, "fastreg");
288 trace_xprtrdma_wc_fastreg(wc
, frwr
);
292 * frwr_wc_localinv - Invoked by RDMA provider for a flushed LocalInv WC
293 * @cq: completion queue (ignored)
298 frwr_wc_localinv(struct ib_cq
*cq
, struct ib_wc
*wc
)
300 struct ib_cqe
*cqe
= wc
->wr_cqe
;
301 struct rpcrdma_frwr
*frwr
= container_of(cqe
, struct rpcrdma_frwr
,
304 /* WARNING: Only wr_cqe and status are reliable at this point */
305 if (wc
->status
!= IB_WC_SUCCESS
) {
306 frwr
->fr_state
= FRWR_FLUSHED_LI
;
307 __frwr_sendcompletion_flush(wc
, "localinv");
309 trace_xprtrdma_wc_li(wc
, frwr
);
313 * frwr_wc_localinv_wake - Invoked by RDMA provider for a signaled LocalInv WC
314 * @cq: completion queue (ignored)
317 * Awaken anyone waiting for an MR to finish being fenced.
320 frwr_wc_localinv_wake(struct ib_cq
*cq
, struct ib_wc
*wc
)
322 struct ib_cqe
*cqe
= wc
->wr_cqe
;
323 struct rpcrdma_frwr
*frwr
= container_of(cqe
, struct rpcrdma_frwr
,
326 /* WARNING: Only wr_cqe and status are reliable at this point */
327 if (wc
->status
!= IB_WC_SUCCESS
) {
328 frwr
->fr_state
= FRWR_FLUSHED_LI
;
329 __frwr_sendcompletion_flush(wc
, "localinv");
331 complete(&frwr
->fr_linv_done
);
332 trace_xprtrdma_wc_li_wake(wc
, frwr
);
335 /* Post a REG_MR Work Request to register a memory region
336 * for remote access via RDMA READ or RDMA WRITE.
338 static struct rpcrdma_mr_seg
*
339 frwr_op_map(struct rpcrdma_xprt
*r_xprt
, struct rpcrdma_mr_seg
*seg
,
340 int nsegs
, bool writing
, struct rpcrdma_mr
**out
)
342 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
343 bool holes_ok
= ia
->ri_mrtype
== IB_MR_TYPE_SG_GAPS
;
344 struct rpcrdma_frwr
*frwr
;
345 struct rpcrdma_mr
*mr
;
347 struct ib_reg_wr
*reg_wr
;
354 rpcrdma_mr_recycle(mr
);
355 mr
= rpcrdma_mr_get(r_xprt
);
357 return ERR_PTR(-EAGAIN
);
358 } while (mr
->frwr
.fr_state
!= FRWR_IS_INVALID
);
360 frwr
->fr_state
= FRWR_IS_VALID
;
362 if (nsegs
> ia
->ri_max_frwr_depth
)
363 nsegs
= ia
->ri_max_frwr_depth
;
364 for (i
= 0; i
< nsegs
;) {
366 sg_set_page(&mr
->mr_sg
[i
],
369 offset_in_page(seg
->mr_offset
));
371 sg_set_buf(&mr
->mr_sg
[i
], seg
->mr_offset
,
378 if ((i
< nsegs
&& offset_in_page(seg
->mr_offset
)) ||
379 offset_in_page((seg
-1)->mr_offset
+ (seg
-1)->mr_len
))
382 mr
->mr_dir
= rpcrdma_data_dir(writing
);
384 mr
->mr_nents
= ib_dma_map_sg(ia
->ri_device
, mr
->mr_sg
, i
, mr
->mr_dir
);
387 trace_xprtrdma_mr_map(mr
);
390 n
= ib_map_mr_sg(ibmr
, mr
->mr_sg
, mr
->mr_nents
, NULL
, PAGE_SIZE
);
391 if (unlikely(n
!= mr
->mr_nents
))
394 key
= (u8
)(ibmr
->rkey
& 0x000000FF);
395 ib_update_fast_reg_key(ibmr
, ++key
);
397 reg_wr
= &frwr
->fr_regwr
;
399 reg_wr
->key
= ibmr
->rkey
;
400 reg_wr
->access
= writing
?
401 IB_ACCESS_REMOTE_WRITE
| IB_ACCESS_LOCAL_WRITE
:
402 IB_ACCESS_REMOTE_READ
;
404 mr
->mr_handle
= ibmr
->rkey
;
405 mr
->mr_length
= ibmr
->length
;
406 mr
->mr_offset
= ibmr
->iova
;
412 pr_err("rpcrdma: failed to DMA map sg %p sg_nents %d\n",
414 frwr
->fr_state
= FRWR_IS_INVALID
;
416 return ERR_PTR(-EIO
);
419 pr_err("rpcrdma: failed to map mr %p (%d/%d)\n",
420 frwr
->fr_mr
, n
, mr
->mr_nents
);
421 rpcrdma_mr_recycle(mr
);
422 return ERR_PTR(-EIO
);
425 /* Post Send WR containing the RPC Call message.
427 * For FRMR, chain any FastReg WRs to the Send WR. Only a
428 * single ib_post_send call is needed to register memory
429 * and then post the Send WR.
432 frwr_op_send(struct rpcrdma_ia
*ia
, struct rpcrdma_req
*req
)
434 struct ib_send_wr
*post_wr
;
435 struct rpcrdma_mr
*mr
;
437 post_wr
= &req
->rl_sendctx
->sc_wr
;
438 list_for_each_entry(mr
, &req
->rl_registered
, mr_list
) {
439 struct rpcrdma_frwr
*frwr
;
443 frwr
->fr_cqe
.done
= frwr_wc_fastreg
;
444 frwr
->fr_regwr
.wr
.next
= post_wr
;
445 frwr
->fr_regwr
.wr
.wr_cqe
= &frwr
->fr_cqe
;
446 frwr
->fr_regwr
.wr
.num_sge
= 0;
447 frwr
->fr_regwr
.wr
.opcode
= IB_WR_REG_MR
;
448 frwr
->fr_regwr
.wr
.send_flags
= 0;
450 post_wr
= &frwr
->fr_regwr
.wr
;
453 /* If ib_post_send fails, the next ->send_request for
454 * @req will queue these MWs for recovery.
456 return ib_post_send(ia
->ri_id
->qp
, post_wr
, NULL
);
459 /* Handle a remotely invalidated mr on the @mrs list
462 frwr_op_reminv(struct rpcrdma_rep
*rep
, struct list_head
*mrs
)
464 struct rpcrdma_mr
*mr
;
466 list_for_each_entry(mr
, mrs
, mr_list
)
467 if (mr
->mr_handle
== rep
->rr_inv_rkey
) {
468 list_del_init(&mr
->mr_list
);
469 trace_xprtrdma_mr_remoteinv(mr
);
470 mr
->frwr
.fr_state
= FRWR_IS_INVALID
;
471 rpcrdma_mr_unmap_and_put(mr
);
472 break; /* only one invalidated MR per RPC */
476 /* Invalidate all memory regions that were registered for "req".
478 * Sleeps until it is safe for the host CPU to access the
479 * previously mapped memory regions.
481 * Caller ensures that @mrs is not empty before the call. This
482 * function empties the list.
485 frwr_op_unmap_sync(struct rpcrdma_xprt
*r_xprt
, struct list_head
*mrs
)
487 struct ib_send_wr
*first
, **prev
, *last
;
488 const struct ib_send_wr
*bad_wr
;
489 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
490 struct rpcrdma_frwr
*frwr
;
491 struct rpcrdma_mr
*mr
;
494 /* ORDER: Invalidate all of the MRs first
496 * Chain the LOCAL_INV Work Requests and post them with
497 * a single ib_post_send() call.
502 list_for_each_entry(mr
, mrs
, mr_list
) {
503 mr
->frwr
.fr_state
= FRWR_IS_INVALID
;
506 trace_xprtrdma_mr_localinv(mr
);
508 frwr
->fr_cqe
.done
= frwr_wc_localinv
;
509 last
= &frwr
->fr_invwr
;
510 memset(last
, 0, sizeof(*last
));
511 last
->wr_cqe
= &frwr
->fr_cqe
;
512 last
->opcode
= IB_WR_LOCAL_INV
;
513 last
->ex
.invalidate_rkey
= mr
->mr_handle
;
522 /* Strong send queue ordering guarantees that when the
523 * last WR in the chain completes, all WRs in the chain
526 last
->send_flags
= IB_SEND_SIGNALED
;
527 frwr
->fr_cqe
.done
= frwr_wc_localinv_wake
;
528 reinit_completion(&frwr
->fr_linv_done
);
530 /* Transport disconnect drains the receive CQ before it
531 * replaces the QP. The RPC reply handler won't call us
532 * unless ri_id->qp is a valid pointer.
534 r_xprt
->rx_stats
.local_inv_needed
++;
536 rc
= ib_post_send(ia
->ri_id
->qp
, first
, &bad_wr
);
538 wait_for_completion(&frwr
->fr_linv_done
);
542 /* ORDER: Now DMA unmap all of the MRs, and return
543 * them to the free MR list.
546 while (!list_empty(mrs
)) {
547 mr
= rpcrdma_mr_pop(mrs
);
548 rpcrdma_mr_unmap_and_put(mr
);
553 pr_err("rpcrdma: FRWR invalidate ib_post_send returned %i\n", rc
);
555 /* Unmap and release the MRs in the LOCAL_INV WRs that did not
559 frwr
= container_of(bad_wr
, struct rpcrdma_frwr
,
561 mr
= container_of(frwr
, struct rpcrdma_mr
, frwr
);
562 bad_wr
= bad_wr
->next
;
564 list_del(&mr
->mr_list
);
565 frwr_op_release_mr(mr
);
569 const struct rpcrdma_memreg_ops rpcrdma_frwr_memreg_ops
= {
570 .ro_map
= frwr_op_map
,
571 .ro_send
= frwr_op_send
,
572 .ro_reminv
= frwr_op_reminv
,
573 .ro_unmap_sync
= frwr_op_unmap_sync
,
574 .ro_open
= frwr_op_open
,
575 .ro_maxpages
= frwr_op_maxpages
,
576 .ro_init_mr
= frwr_op_init_mr
,
577 .ro_release_mr
= frwr_op_release_mr
,
578 .ro_displayname
= "frwr",
579 .ro_send_w_inv_ok
= RPCRDMA_CMP_F_SND_W_INV_OK
,