1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3 * Copyright (c) 2014-2017 Oracle. All rights reserved.
4 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the BSD-type
10 * license below:
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 *
19 * Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials provided
22 * with the distribution.
23 *
24 * Neither the name of the Network Appliance, Inc. nor the names of
25 * its contributors may be used to endorse or promote products
26 * derived from this software without specific prior written
27 * permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 */
41
42 /*
43 * verbs.c
44 *
45 * Encapsulates the major functions managing:
46 * o adapters
47 * o endpoints
48 * o connections
49 * o buffer memory
50 */
51
52 #include <linux/bitops.h>
53 #include <linux/interrupt.h>
54 #include <linux/slab.h>
55 #include <linux/sunrpc/addr.h>
56 #include <linux/sunrpc/svc_rdma.h>
57 #include <linux/log2.h>
58
59 #include <asm/barrier.h>
60
61 #include <rdma/ib_cm.h>
62
63 #include "xprt_rdma.h"
64 #include <trace/events/rpcrdma.h>
65
66 static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt);
67 static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt);
68 static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
69 struct rpcrdma_sendctx *sc);
70 static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt);
71 static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt);
72 static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt);
73 static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
74 static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt);
75 static void rpcrdma_ep_get(struct rpcrdma_ep *ep);
76 static int rpcrdma_ep_put(struct rpcrdma_ep *ep);
77 static struct rpcrdma_regbuf *
78 rpcrdma_regbuf_alloc_node(size_t size, enum dma_data_direction direction,
79 int node);
80 static struct rpcrdma_regbuf *
81 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction);
82 static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb);
83 static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb);
84
85 /* Wait for outstanding transport work to finish. ib_drain_qp
86 * handles the drains in the wrong order for us, so open code
87 * them here.
88 */
rpcrdma_xprt_drain(struct rpcrdma_xprt * r_xprt)89 static void rpcrdma_xprt_drain(struct rpcrdma_xprt *r_xprt)
90 {
91 struct rpcrdma_ep *ep = r_xprt->rx_ep;
92 struct rdma_cm_id *id = ep->re_id;
93
94 /* Wait for rpcrdma_post_recvs() to leave its critical
95 * section.
96 */
97 if (atomic_inc_return(&ep->re_receiving) > 1)
98 wait_for_completion(&ep->re_done);
99
100 /* Flush Receives, then wait for deferred Reply work
101 * to complete.
102 */
103 ib_drain_rq(id->qp);
104
105 /* Deferred Reply processing might have scheduled
106 * local invalidations.
107 */
108 ib_drain_sq(id->qp);
109
110 rpcrdma_ep_put(ep);
111 }
112
113 /* Ensure xprt_force_disconnect() is invoked exactly once when a
114 * connection is closed or lost. (The important thing is it needs
115 * to be invoked "at least" once).
116 */
rpcrdma_force_disconnect(struct rpcrdma_ep * ep)117 void rpcrdma_force_disconnect(struct rpcrdma_ep *ep)
118 {
119 if (atomic_add_unless(&ep->re_force_disconnect, 1, 1))
120 xprt_force_disconnect(ep->re_xprt);
121 }
122
123 /**
124 * rpcrdma_flush_disconnect - Disconnect on flushed completion
125 * @r_xprt: transport to disconnect
126 * @wc: work completion entry
127 *
128 * Must be called in process context.
129 */
rpcrdma_flush_disconnect(struct rpcrdma_xprt * r_xprt,struct ib_wc * wc)130 void rpcrdma_flush_disconnect(struct rpcrdma_xprt *r_xprt, struct ib_wc *wc)
131 {
132 if (wc->status != IB_WC_SUCCESS)
133 rpcrdma_force_disconnect(r_xprt->rx_ep);
134 }
135
136 /**
137 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
138 * @cq: completion queue
139 * @wc: WCE for a completed Send WR
140 *
141 */
rpcrdma_wc_send(struct ib_cq * cq,struct ib_wc * wc)142 static void rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
143 {
144 struct ib_cqe *cqe = wc->wr_cqe;
145 struct rpcrdma_sendctx *sc =
146 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
147 struct rpcrdma_xprt *r_xprt = cq->cq_context;
148
149 /* WARNING: Only wr_cqe and status are reliable at this point */
150 trace_xprtrdma_wc_send(wc, &sc->sc_cid);
151 rpcrdma_sendctx_put_locked(r_xprt, sc);
152 rpcrdma_flush_disconnect(r_xprt, wc);
153 }
154
155 /**
156 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
157 * @cq: completion queue
158 * @wc: WCE for a completed Receive WR
159 *
160 */
rpcrdma_wc_receive(struct ib_cq * cq,struct ib_wc * wc)161 static void rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
162 {
163 struct ib_cqe *cqe = wc->wr_cqe;
164 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
165 rr_cqe);
166 struct rpcrdma_xprt *r_xprt = cq->cq_context;
167
168 /* WARNING: Only wr_cqe and status are reliable at this point */
169 trace_xprtrdma_wc_receive(wc, &rep->rr_cid);
170 --r_xprt->rx_ep->re_receive_count;
171 if (wc->status != IB_WC_SUCCESS)
172 goto out_flushed;
173
174 /* status == SUCCESS means all fields in wc are trustworthy */
175 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
176 rep->rr_wc_flags = wc->wc_flags;
177 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
178
179 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
180 rdmab_addr(rep->rr_rdmabuf),
181 wc->byte_len, DMA_FROM_DEVICE);
182
183 rpcrdma_reply_handler(rep);
184 return;
185
186 out_flushed:
187 rpcrdma_flush_disconnect(r_xprt, wc);
188 rpcrdma_rep_put(&r_xprt->rx_buf, rep);
189 }
190
rpcrdma_update_cm_private(struct rpcrdma_ep * ep,struct rdma_conn_param * param)191 static void rpcrdma_update_cm_private(struct rpcrdma_ep *ep,
192 struct rdma_conn_param *param)
193 {
194 const struct rpcrdma_connect_private *pmsg = param->private_data;
195 unsigned int rsize, wsize;
196
197 /* Default settings for RPC-over-RDMA Version One */
198 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
199 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
200
201 if (pmsg &&
202 pmsg->cp_magic == rpcrdma_cmp_magic &&
203 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
204 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
205 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
206 }
207
208 if (rsize < ep->re_inline_recv)
209 ep->re_inline_recv = rsize;
210 if (wsize < ep->re_inline_send)
211 ep->re_inline_send = wsize;
212
213 rpcrdma_set_max_header_sizes(ep);
214 }
215
216 /**
217 * rpcrdma_cm_event_handler - Handle RDMA CM events
218 * @id: rdma_cm_id on which an event has occurred
219 * @event: details of the event
220 *
221 * Called with @id's mutex held. Returns 1 if caller should
222 * destroy @id, otherwise 0.
223 */
224 static int
rpcrdma_cm_event_handler(struct rdma_cm_id * id,struct rdma_cm_event * event)225 rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
226 {
227 struct rpcrdma_ep *ep = id->context;
228
229 might_sleep();
230
231 switch (event->event) {
232 case RDMA_CM_EVENT_ADDR_RESOLVED:
233 case RDMA_CM_EVENT_ROUTE_RESOLVED:
234 ep->re_async_rc = 0;
235 complete(&ep->re_done);
236 return 0;
237 case RDMA_CM_EVENT_ADDR_ERROR:
238 ep->re_async_rc = -EPROTO;
239 complete(&ep->re_done);
240 return 0;
241 case RDMA_CM_EVENT_ROUTE_ERROR:
242 ep->re_async_rc = -ENETUNREACH;
243 complete(&ep->re_done);
244 return 0;
245 case RDMA_CM_EVENT_ADDR_CHANGE:
246 ep->re_connect_status = -ENODEV;
247 goto disconnected;
248 case RDMA_CM_EVENT_ESTABLISHED:
249 rpcrdma_ep_get(ep);
250 ep->re_connect_status = 1;
251 rpcrdma_update_cm_private(ep, &event->param.conn);
252 trace_xprtrdma_inline_thresh(ep);
253 wake_up_all(&ep->re_connect_wait);
254 break;
255 case RDMA_CM_EVENT_CONNECT_ERROR:
256 ep->re_connect_status = -ENOTCONN;
257 goto wake_connect_worker;
258 case RDMA_CM_EVENT_UNREACHABLE:
259 ep->re_connect_status = -ENETUNREACH;
260 goto wake_connect_worker;
261 case RDMA_CM_EVENT_REJECTED:
262 ep->re_connect_status = -ECONNREFUSED;
263 if (event->status == IB_CM_REJ_STALE_CONN)
264 ep->re_connect_status = -ENOTCONN;
265 wake_connect_worker:
266 wake_up_all(&ep->re_connect_wait);
267 return 0;
268 case RDMA_CM_EVENT_DISCONNECTED:
269 ep->re_connect_status = -ECONNABORTED;
270 disconnected:
271 rpcrdma_force_disconnect(ep);
272 return rpcrdma_ep_put(ep);
273 default:
274 break;
275 }
276
277 return 0;
278 }
279
rpcrdma_ep_removal_done(struct rpcrdma_notification * rn)280 static void rpcrdma_ep_removal_done(struct rpcrdma_notification *rn)
281 {
282 struct rpcrdma_ep *ep = container_of(rn, struct rpcrdma_ep, re_rn);
283
284 trace_xprtrdma_device_removal(ep->re_id);
285 xprt_force_disconnect(ep->re_xprt);
286 }
287
rpcrdma_create_id(struct rpcrdma_xprt * r_xprt,struct rpcrdma_ep * ep)288 static struct rdma_cm_id *rpcrdma_create_id(struct rpcrdma_xprt *r_xprt,
289 struct rpcrdma_ep *ep)
290 {
291 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
292 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
293 struct rdma_cm_id *id;
294 int rc;
295
296 init_completion(&ep->re_done);
297
298 id = rdma_create_id(xprt->xprt_net, rpcrdma_cm_event_handler, ep,
299 RDMA_PS_TCP, IB_QPT_RC);
300 if (IS_ERR(id))
301 return id;
302
303 ep->re_async_rc = -ETIMEDOUT;
304 rc = rdma_resolve_addr(id, NULL, (struct sockaddr *)&xprt->addr,
305 RDMA_RESOLVE_TIMEOUT);
306 if (rc)
307 goto out;
308 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
309 if (rc < 0)
310 goto out;
311
312 rc = ep->re_async_rc;
313 if (rc)
314 goto out;
315
316 ep->re_async_rc = -ETIMEDOUT;
317 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
318 if (rc)
319 goto out;
320 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
321 if (rc < 0)
322 goto out;
323 rc = ep->re_async_rc;
324 if (rc)
325 goto out;
326
327 rc = rpcrdma_rn_register(id->device, &ep->re_rn, rpcrdma_ep_removal_done);
328 if (rc)
329 goto out;
330
331 return id;
332
333 out:
334 rdma_destroy_id(id);
335 return ERR_PTR(rc);
336 }
337
rpcrdma_ep_destroy(struct kref * kref)338 static void rpcrdma_ep_destroy(struct kref *kref)
339 {
340 struct rpcrdma_ep *ep = container_of(kref, struct rpcrdma_ep, re_kref);
341
342 if (ep->re_id->qp) {
343 rdma_destroy_qp(ep->re_id);
344 ep->re_id->qp = NULL;
345 }
346
347 if (ep->re_attr.recv_cq)
348 ib_free_cq(ep->re_attr.recv_cq);
349 ep->re_attr.recv_cq = NULL;
350 if (ep->re_attr.send_cq)
351 ib_free_cq(ep->re_attr.send_cq);
352 ep->re_attr.send_cq = NULL;
353
354 if (ep->re_pd)
355 ib_dealloc_pd(ep->re_pd);
356 ep->re_pd = NULL;
357
358 rpcrdma_rn_unregister(ep->re_id->device, &ep->re_rn);
359
360 kfree(ep);
361 module_put(THIS_MODULE);
362 }
363
rpcrdma_ep_get(struct rpcrdma_ep * ep)364 static noinline void rpcrdma_ep_get(struct rpcrdma_ep *ep)
365 {
366 kref_get(&ep->re_kref);
367 }
368
369 /* Returns:
370 * %0 if @ep still has a positive kref count, or
371 * %1 if @ep was destroyed successfully.
372 */
rpcrdma_ep_put(struct rpcrdma_ep * ep)373 static noinline int rpcrdma_ep_put(struct rpcrdma_ep *ep)
374 {
375 return kref_put(&ep->re_kref, rpcrdma_ep_destroy);
376 }
377
rpcrdma_ep_create(struct rpcrdma_xprt * r_xprt)378 static int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
379 {
380 struct rpcrdma_connect_private *pmsg;
381 struct ib_device *device;
382 struct rdma_cm_id *id;
383 struct rpcrdma_ep *ep;
384 int rc;
385
386 ep = kzalloc_obj(*ep, XPRTRDMA_GFP_FLAGS);
387 if (!ep)
388 return -ENOTCONN;
389 ep->re_xprt = &r_xprt->rx_xprt;
390 kref_init(&ep->re_kref);
391
392 id = rpcrdma_create_id(r_xprt, ep);
393 if (IS_ERR(id)) {
394 kfree(ep);
395 return PTR_ERR(id);
396 }
397 __module_get(THIS_MODULE);
398 device = id->device;
399 ep->re_id = id;
400 reinit_completion(&ep->re_done);
401
402 ep->re_max_requests = r_xprt->rx_xprt.max_reqs;
403 ep->re_inline_send = xprt_rdma_max_inline_write;
404 ep->re_inline_recv = xprt_rdma_max_inline_read;
405 rc = frwr_query_device(ep, device);
406 if (rc)
407 goto out_destroy;
408
409 r_xprt->rx_buf.rb_max_requests = cpu_to_be32(ep->re_max_requests);
410
411 ep->re_attr.srq = NULL;
412 ep->re_attr.cap.max_inline_data = 0;
413 ep->re_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
414 ep->re_attr.qp_type = IB_QPT_RC;
415 ep->re_attr.port_num = ~0;
416
417 ep->re_send_batch = ep->re_max_requests >> 3;
418 ep->re_send_count = ep->re_send_batch;
419 init_waitqueue_head(&ep->re_connect_wait);
420
421 ep->re_attr.send_cq = ib_alloc_cq_any(device, r_xprt,
422 ep->re_attr.cap.max_send_wr,
423 IB_POLL_WORKQUEUE);
424 if (IS_ERR(ep->re_attr.send_cq)) {
425 rc = PTR_ERR(ep->re_attr.send_cq);
426 ep->re_attr.send_cq = NULL;
427 goto out_destroy;
428 }
429
430 ep->re_attr.recv_cq = ib_alloc_cq_any(device, r_xprt,
431 ep->re_attr.cap.max_recv_wr,
432 IB_POLL_WORKQUEUE);
433 if (IS_ERR(ep->re_attr.recv_cq)) {
434 rc = PTR_ERR(ep->re_attr.recv_cq);
435 ep->re_attr.recv_cq = NULL;
436 goto out_destroy;
437 }
438 ep->re_receive_count = 0;
439
440 /* Initialize cma parameters */
441 memset(&ep->re_remote_cma, 0, sizeof(ep->re_remote_cma));
442
443 /* Prepare RDMA-CM private message */
444 pmsg = &ep->re_cm_private;
445 pmsg->cp_magic = rpcrdma_cmp_magic;
446 pmsg->cp_version = RPCRDMA_CMP_VERSION;
447 pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
448 pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->re_inline_send);
449 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->re_inline_recv);
450 ep->re_remote_cma.private_data = pmsg;
451 ep->re_remote_cma.private_data_len = sizeof(*pmsg);
452
453 /* Client offers RDMA Read but does not initiate */
454 ep->re_remote_cma.initiator_depth = 0;
455 ep->re_remote_cma.responder_resources =
456 min_t(int, U8_MAX, device->attrs.max_qp_rd_atom);
457
458 /* Limit transport retries so client can detect server
459 * GID changes quickly. RPC layer handles re-establishing
460 * transport connection and retransmission.
461 */
462 ep->re_remote_cma.retry_count = 6;
463
464 /* RPC-over-RDMA handles its own flow control. In addition,
465 * make all RNR NAKs visible so we know that RPC-over-RDMA
466 * flow control is working correctly (no NAKs should be seen).
467 */
468 ep->re_remote_cma.flow_control = 0;
469 ep->re_remote_cma.rnr_retry_count = 0;
470
471 ep->re_pd = ib_alloc_pd(device, 0);
472 if (IS_ERR(ep->re_pd)) {
473 rc = PTR_ERR(ep->re_pd);
474 ep->re_pd = NULL;
475 goto out_destroy;
476 }
477
478 rc = rdma_create_qp(id, ep->re_pd, &ep->re_attr);
479 if (rc)
480 goto out_destroy;
481
482 r_xprt->rx_ep = ep;
483 return 0;
484
485 out_destroy:
486 rpcrdma_ep_put(ep);
487 rdma_destroy_id(id);
488 return rc;
489 }
490
491 /**
492 * rpcrdma_xprt_connect - Connect an unconnected transport
493 * @r_xprt: controlling transport instance
494 *
495 * Returns 0 on success or a negative errno.
496 */
rpcrdma_xprt_connect(struct rpcrdma_xprt * r_xprt)497 int rpcrdma_xprt_connect(struct rpcrdma_xprt *r_xprt)
498 {
499 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
500 struct rpcrdma_ep *ep;
501 int rc;
502
503 rc = rpcrdma_ep_create(r_xprt);
504 if (rc)
505 return rc;
506 ep = r_xprt->rx_ep;
507
508 xprt_clear_connected(xprt);
509 rpcrdma_reset_cwnd(r_xprt);
510
511 /* Bump the ep's reference count while there are
512 * outstanding Receives.
513 */
514 rpcrdma_ep_get(ep);
515 rpcrdma_post_recvs(r_xprt, 1);
516
517 rc = rdma_connect(ep->re_id, &ep->re_remote_cma);
518 if (rc)
519 goto out;
520
521 if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
522 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
523 wait_event_interruptible(ep->re_connect_wait,
524 ep->re_connect_status != 0);
525 if (ep->re_connect_status <= 0) {
526 rc = ep->re_connect_status;
527 goto out;
528 }
529
530 rc = rpcrdma_sendctxs_create(r_xprt);
531 if (rc) {
532 rc = -ENOTCONN;
533 goto out;
534 }
535
536 rc = rpcrdma_reqs_setup(r_xprt);
537 if (rc) {
538 rc = -ENOTCONN;
539 goto out;
540 }
541 rpcrdma_mrs_create(r_xprt);
542 frwr_wp_create(r_xprt);
543
544 out:
545 trace_xprtrdma_connect(r_xprt, rc);
546 return rc;
547 }
548
549 /**
550 * rpcrdma_xprt_disconnect - Disconnect underlying transport
551 * @r_xprt: controlling transport instance
552 *
553 * Caller serializes. Either the transport send lock is held,
554 * or we're being called to destroy the transport.
555 *
556 * On return, @r_xprt is completely divested of all hardware
557 * resources and prepared for the next ->connect operation.
558 */
rpcrdma_xprt_disconnect(struct rpcrdma_xprt * r_xprt)559 void rpcrdma_xprt_disconnect(struct rpcrdma_xprt *r_xprt)
560 {
561 struct rpcrdma_ep *ep = r_xprt->rx_ep;
562 struct rdma_cm_id *id;
563 int rc;
564
565 if (!ep)
566 return;
567
568 id = ep->re_id;
569 rc = rdma_disconnect(id);
570 trace_xprtrdma_disconnect(r_xprt, rc);
571
572 rpcrdma_xprt_drain(r_xprt);
573 rpcrdma_reps_unmap(r_xprt);
574 rpcrdma_reqs_reset(r_xprt);
575 rpcrdma_mrs_destroy(r_xprt);
576 rpcrdma_sendctxs_destroy(r_xprt);
577
578 if (rpcrdma_ep_put(ep))
579 rdma_destroy_id(id);
580
581 r_xprt->rx_ep = NULL;
582 }
583
584 /* Fixed-size circular FIFO queue. This implementation is wait-free and
585 * lock-free.
586 *
587 * Consumer is the code path that posts Sends. This path dequeues a
588 * sendctx for use by a Send operation. Multiple consumer threads
589 * are serialized by the RPC transport lock, which allows only one
590 * ->send_request call at a time.
591 *
592 * Producer is the code path that handles Send completions. This path
593 * enqueues a sendctx that has been completed. Multiple producer
594 * threads are serialized by the ib_poll_cq() function.
595 */
596
597 /* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
598 * queue activity, and rpcrdma_xprt_drain has flushed all remaining
599 * Send requests.
600 */
rpcrdma_sendctxs_destroy(struct rpcrdma_xprt * r_xprt)601 static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt)
602 {
603 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
604 unsigned long i;
605
606 if (!buf->rb_sc_ctxs)
607 return;
608 for (i = 0; i <= buf->rb_sc_last; i++)
609 kfree(buf->rb_sc_ctxs[i]);
610 kfree(buf->rb_sc_ctxs);
611 buf->rb_sc_ctxs = NULL;
612 }
613
rpcrdma_sendctx_create(struct rpcrdma_ep * ep)614 static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ep *ep)
615 {
616 struct rpcrdma_sendctx *sc;
617
618 sc = kzalloc_flex(*sc, sc_sges, ep->re_attr.cap.max_send_sge,
619 XPRTRDMA_GFP_FLAGS);
620 if (!sc)
621 return NULL;
622
623 sc->sc_cqe.done = rpcrdma_wc_send;
624 sc->sc_cid.ci_queue_id = ep->re_attr.send_cq->res.id;
625 sc->sc_cid.ci_completion_id =
626 atomic_inc_return(&ep->re_completion_ids);
627 return sc;
628 }
629
rpcrdma_sendctxs_create(struct rpcrdma_xprt * r_xprt)630 static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
631 {
632 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
633 struct rpcrdma_sendctx *sc;
634 unsigned long i;
635
636 /* Maximum number of concurrent outstanding Send WRs. Capping
637 * the circular queue size stops Send Queue overflow by causing
638 * the ->send_request call to fail temporarily before too many
639 * Sends are posted.
640 */
641 i = r_xprt->rx_ep->re_max_requests + RPCRDMA_MAX_BC_REQUESTS;
642 buf->rb_sc_ctxs = kzalloc_objs(sc, i, XPRTRDMA_GFP_FLAGS);
643 if (!buf->rb_sc_ctxs)
644 return -ENOMEM;
645
646 buf->rb_sc_last = i - 1;
647 for (i = 0; i <= buf->rb_sc_last; i++) {
648 sc = rpcrdma_sendctx_create(r_xprt->rx_ep);
649 if (!sc)
650 return -ENOMEM;
651
652 buf->rb_sc_ctxs[i] = sc;
653 }
654
655 buf->rb_sc_head = 0;
656 buf->rb_sc_tail = 0;
657 return 0;
658 }
659
660 /* The sendctx queue is not guaranteed to have a size that is a
661 * power of two, thus the helpers in circ_buf.h cannot be used.
662 * The other option is to use modulus (%), which can be expensive.
663 */
rpcrdma_sendctx_next(struct rpcrdma_buffer * buf,unsigned long item)664 static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
665 unsigned long item)
666 {
667 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
668 }
669
670 /**
671 * rpcrdma_sendctx_get_locked - Acquire a send context
672 * @r_xprt: controlling transport instance
673 *
674 * Returns pointer to a free send completion context; or NULL if
675 * the queue is empty.
676 *
677 * Usage: Called to acquire an SGE array before preparing a Send WR.
678 *
679 * The caller serializes calls to this function (per transport), and
680 * provides an effective memory barrier that flushes the new value
681 * of rb_sc_head.
682 */
rpcrdma_sendctx_get_locked(struct rpcrdma_xprt * r_xprt)683 struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
684 {
685 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
686 struct rpcrdma_sendctx *sc;
687 unsigned long next_head;
688
689 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
690
691 if (next_head == READ_ONCE(buf->rb_sc_tail))
692 goto out_emptyq;
693
694 /* ORDER: item must be accessed _before_ head is updated */
695 sc = buf->rb_sc_ctxs[next_head];
696
697 /* Releasing the lock in the caller acts as a memory
698 * barrier that flushes rb_sc_head.
699 */
700 buf->rb_sc_head = next_head;
701
702 return sc;
703
704 out_emptyq:
705 /* The queue is "empty" if there have not been enough Send
706 * completions recently. This is a sign the Send Queue is
707 * backing up. Cause the caller to pause and try again.
708 */
709 xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
710 r_xprt->rx_stats.empty_sendctx_q++;
711
712 /* Recheck: a Send completion between the ring-empty test
713 * and the set_bit could cause its xprt_write_space() to
714 * miss, leaving XPRT_WRITE_SPACE set with a non-full ring.
715 * The smp_mb__after_atomic() pairs with smp_store_release()
716 * in rpcrdma_sendctx_put_locked().
717 */
718 smp_mb__after_atomic();
719 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
720 if (next_head != READ_ONCE(buf->rb_sc_tail))
721 xprt_write_space(&r_xprt->rx_xprt);
722
723 return NULL;
724 }
725
726 /**
727 * rpcrdma_sendctx_put_locked - Release a send context
728 * @r_xprt: controlling transport instance
729 * @sc: send context to release
730 *
731 * Usage: Called from Send completion to return a sendctxt
732 * to the queue.
733 *
734 * The caller serializes calls to this function (per transport).
735 */
rpcrdma_sendctx_put_locked(struct rpcrdma_xprt * r_xprt,struct rpcrdma_sendctx * sc)736 static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
737 struct rpcrdma_sendctx *sc)
738 {
739 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
740 unsigned long next_tail;
741
742 /* Unmap SGEs of previously completed but unsignaled
743 * Sends by walking up the queue until @sc is found.
744 */
745 next_tail = buf->rb_sc_tail;
746 do {
747 next_tail = rpcrdma_sendctx_next(buf, next_tail);
748
749 /* ORDER: item must be accessed _before_ tail is updated */
750 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
751
752 } while (buf->rb_sc_ctxs[next_tail] != sc);
753
754 /* Paired with READ_ONCE in rpcrdma_sendctx_get_locked():
755 * both the fast-path ring-full test and the post-set_bit
756 * recheck in the slow path depend on this store-release.
757 */
758 smp_store_release(&buf->rb_sc_tail, next_tail);
759
760 xprt_write_space(&r_xprt->rx_xprt);
761 }
762
763 static void
rpcrdma_mrs_create(struct rpcrdma_xprt * r_xprt)764 rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
765 {
766 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
767 struct rpcrdma_ep *ep = r_xprt->rx_ep;
768 struct ib_device *device = ep->re_id->device;
769 unsigned int count;
770
771 /* Try to allocate enough to perform one full-sized I/O */
772 for (count = 0; count < ep->re_max_rdma_segs; count++) {
773 struct rpcrdma_mr *mr;
774 int rc;
775
776 mr = kzalloc_node(sizeof(*mr), XPRTRDMA_GFP_FLAGS,
777 ibdev_to_node(device));
778 if (!mr)
779 break;
780
781 rc = frwr_mr_init(r_xprt, mr);
782 if (rc) {
783 kfree(mr);
784 break;
785 }
786
787 spin_lock(&buf->rb_lock);
788 rpcrdma_mr_push(mr, &buf->rb_mrs);
789 list_add(&mr->mr_all, &buf->rb_all_mrs);
790 spin_unlock(&buf->rb_lock);
791 }
792
793 r_xprt->rx_stats.mrs_allocated += count;
794 trace_xprtrdma_createmrs(r_xprt, count);
795 }
796
797 static void
rpcrdma_mr_refresh_worker(struct work_struct * work)798 rpcrdma_mr_refresh_worker(struct work_struct *work)
799 {
800 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
801 rb_refresh_worker);
802 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
803 rx_buf);
804
805 rpcrdma_mrs_create(r_xprt);
806 xprt_write_space(&r_xprt->rx_xprt);
807 }
808
809 /**
810 * rpcrdma_mrs_refresh - Wake the MR refresh worker
811 * @r_xprt: controlling transport instance
812 *
813 */
rpcrdma_mrs_refresh(struct rpcrdma_xprt * r_xprt)814 void rpcrdma_mrs_refresh(struct rpcrdma_xprt *r_xprt)
815 {
816 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
817 struct rpcrdma_ep *ep = r_xprt->rx_ep;
818
819 /* If there is no underlying connection, it's no use
820 * to wake the refresh worker.
821 */
822 if (ep->re_connect_status != 1)
823 return;
824 queue_work(system_highpri_wq, &buf->rb_refresh_worker);
825 }
826
827 /**
828 * rpcrdma_req_create - Allocate an rpcrdma_req object
829 * @r_xprt: controlling r_xprt
830 * @size: initial size, in bytes, of send and receive buffers
831 *
832 * Returns an allocated and fully initialized rpcrdma_req or NULL.
833 */
rpcrdma_req_create(struct rpcrdma_xprt * r_xprt,size_t size)834 struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt,
835 size_t size)
836 {
837 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
838 struct rpcrdma_req *req;
839
840 req = kzalloc_obj(*req, XPRTRDMA_GFP_FLAGS);
841 if (req == NULL)
842 goto out1;
843
844 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE);
845 if (!req->rl_sendbuf)
846 goto out2;
847
848 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE);
849 if (!req->rl_recvbuf)
850 goto out3;
851
852 INIT_LIST_HEAD(&req->rl_free_mrs);
853 INIT_LIST_HEAD(&req->rl_registered);
854 spin_lock(&buffer->rb_lock);
855 list_add(&req->rl_all, &buffer->rb_allreqs);
856 spin_unlock(&buffer->rb_lock);
857 return req;
858
859 out3:
860 rpcrdma_regbuf_free(req->rl_sendbuf);
861 out2:
862 kfree(req);
863 out1:
864 return NULL;
865 }
866
867 /**
868 * rpcrdma_req_setup - Per-connection instance setup of an rpcrdma_req object
869 * @r_xprt: controlling transport instance
870 * @req: rpcrdma_req object to set up
871 *
872 * Returns zero on success, and a negative errno on failure.
873 */
rpcrdma_req_setup(struct rpcrdma_xprt * r_xprt,struct rpcrdma_req * req)874 int rpcrdma_req_setup(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
875 {
876 struct rpcrdma_regbuf *rb;
877 size_t maxhdrsize;
878
879 /* Compute maximum header buffer size in bytes */
880 maxhdrsize = rpcrdma_fixed_maxsz + 3 +
881 r_xprt->rx_ep->re_max_rdma_segs * rpcrdma_readchunk_maxsz;
882 maxhdrsize *= sizeof(__be32);
883 rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
884 DMA_TO_DEVICE);
885 if (!rb)
886 goto out;
887
888 if (!__rpcrdma_regbuf_dma_map(r_xprt, rb))
889 goto out_free;
890
891 req->rl_rdmabuf = rb;
892 xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
893 return 0;
894
895 out_free:
896 rpcrdma_regbuf_free(rb);
897 out:
898 return -ENOMEM;
899 }
900
901 /* ASSUMPTION: the rb_allreqs list is stable for the duration,
902 * and thus can be walked without holding rb_lock. Eg. the
903 * caller is holding the transport send lock to exclude
904 * device removal or disconnection.
905 */
rpcrdma_reqs_setup(struct rpcrdma_xprt * r_xprt)906 static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt)
907 {
908 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
909 struct rpcrdma_req *req;
910 int rc;
911
912 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
913 rc = rpcrdma_req_setup(r_xprt, req);
914 if (rc)
915 return rc;
916 }
917 return 0;
918 }
919
rpcrdma_req_reset(struct rpcrdma_req * req)920 static void rpcrdma_req_reset(struct rpcrdma_req *req)
921 {
922 struct rpcrdma_mr *mr;
923
924 /* Credits are valid for only one connection */
925 req->rl_slot.rq_cong = 0;
926
927 rpcrdma_regbuf_free(req->rl_rdmabuf);
928 req->rl_rdmabuf = NULL;
929
930 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
931 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
932
933 /* The verbs consumer can't know the state of an MR on the
934 * req->rl_registered list unless a successful completion
935 * has occurred, so they cannot be re-used.
936 */
937 while ((mr = rpcrdma_mr_pop(&req->rl_registered))) {
938 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
939
940 spin_lock(&buf->rb_lock);
941 list_del(&mr->mr_all);
942 spin_unlock(&buf->rb_lock);
943
944 frwr_mr_release(mr);
945 }
946 }
947
948 /* ASSUMPTION: the rb_allreqs list is stable for the duration,
949 * and thus can be walked without holding rb_lock. Eg. the
950 * caller is holding the transport send lock to exclude
951 * device removal or disconnection.
952 */
rpcrdma_reqs_reset(struct rpcrdma_xprt * r_xprt)953 static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt)
954 {
955 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
956 struct rpcrdma_req *req;
957
958 list_for_each_entry(req, &buf->rb_allreqs, rl_all)
959 rpcrdma_req_reset(req);
960 }
961
962 static noinline
rpcrdma_rep_create(struct rpcrdma_xprt * r_xprt)963 struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt)
964 {
965 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
966 struct rpcrdma_ep *ep = r_xprt->rx_ep;
967 struct ib_device *device = ep->re_id->device;
968 struct rpcrdma_rep *rep;
969
970 rep = kzalloc_obj(*rep, XPRTRDMA_GFP_FLAGS);
971 if (rep == NULL)
972 goto out;
973
974 rep->rr_rdmabuf = rpcrdma_regbuf_alloc_node(ep->re_inline_recv,
975 DMA_FROM_DEVICE,
976 ibdev_to_node(device));
977 if (!rep->rr_rdmabuf)
978 goto out_free;
979
980 rep->rr_cid.ci_completion_id =
981 atomic_inc_return(&r_xprt->rx_ep->re_completion_ids);
982
983 xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
984 rdmab_length(rep->rr_rdmabuf));
985 rep->rr_cqe.done = rpcrdma_wc_receive;
986 rep->rr_rxprt = r_xprt;
987 rep->rr_recv_wr.next = NULL;
988 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
989 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
990 rep->rr_recv_wr.num_sge = 1;
991
992 spin_lock(&buf->rb_lock);
993 list_add(&rep->rr_all, &buf->rb_all_reps);
994 spin_unlock(&buf->rb_lock);
995 return rep;
996
997 out_free:
998 kfree(rep);
999 out:
1000 return NULL;
1001 }
1002
rpcrdma_rep_free(struct rpcrdma_rep * rep)1003 static void rpcrdma_rep_free(struct rpcrdma_rep *rep)
1004 {
1005 rpcrdma_regbuf_free(rep->rr_rdmabuf);
1006 kfree(rep);
1007 }
1008
rpcrdma_rep_get_locked(struct rpcrdma_buffer * buf)1009 static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
1010 {
1011 struct llist_node *node;
1012
1013 /* Calls to llist_del_first are required to be serialized */
1014 node = llist_del_first(&buf->rb_free_reps);
1015 if (!node)
1016 return NULL;
1017 return llist_entry(node, struct rpcrdma_rep, rr_node);
1018 }
1019
1020 /**
1021 * rpcrdma_rep_put - Release rpcrdma_rep back to free list
1022 * @buf: buffer pool
1023 * @rep: rep to release
1024 *
1025 */
rpcrdma_rep_put(struct rpcrdma_buffer * buf,struct rpcrdma_rep * rep)1026 void rpcrdma_rep_put(struct rpcrdma_buffer *buf, struct rpcrdma_rep *rep)
1027 {
1028 llist_add(&rep->rr_node, &buf->rb_free_reps);
1029 }
1030
1031 /* Caller must ensure the QP is quiescent (RQ is drained) before
1032 * invoking this function, to guarantee rb_all_reps is not
1033 * changing.
1034 */
rpcrdma_reps_unmap(struct rpcrdma_xprt * r_xprt)1035 static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt)
1036 {
1037 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1038 struct rpcrdma_rep *rep;
1039
1040 list_for_each_entry(rep, &buf->rb_all_reps, rr_all)
1041 rpcrdma_regbuf_dma_unmap(rep->rr_rdmabuf);
1042 }
1043
rpcrdma_reps_destroy(struct rpcrdma_buffer * buf)1044 static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf)
1045 {
1046 struct rpcrdma_rep *rep;
1047
1048 spin_lock(&buf->rb_lock);
1049 while ((rep = list_first_entry_or_null(&buf->rb_all_reps,
1050 struct rpcrdma_rep,
1051 rr_all)) != NULL) {
1052 list_del(&rep->rr_all);
1053 spin_unlock(&buf->rb_lock);
1054
1055 rpcrdma_rep_free(rep);
1056
1057 spin_lock(&buf->rb_lock);
1058 }
1059 spin_unlock(&buf->rb_lock);
1060 }
1061
1062 /**
1063 * rpcrdma_buffer_create - Create initial set of req/rep objects
1064 * @r_xprt: transport instance to (re)initialize
1065 *
1066 * Returns zero on success, otherwise a negative errno.
1067 */
rpcrdma_buffer_create(struct rpcrdma_xprt * r_xprt)1068 int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
1069 {
1070 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1071 int i, rc;
1072
1073 buf->rb_bc_srv_max_requests = 0;
1074 spin_lock_init(&buf->rb_lock);
1075 INIT_LIST_HEAD(&buf->rb_mrs);
1076 INIT_LIST_HEAD(&buf->rb_all_mrs);
1077 INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
1078
1079 INIT_LIST_HEAD(&buf->rb_send_bufs);
1080 INIT_LIST_HEAD(&buf->rb_allreqs);
1081 INIT_LIST_HEAD(&buf->rb_all_reps);
1082
1083 rc = -ENOMEM;
1084 for (i = 0; i < r_xprt->rx_xprt.max_reqs; i++) {
1085 struct rpcrdma_req *req;
1086
1087 req = rpcrdma_req_create(r_xprt,
1088 RPCRDMA_V1_DEF_INLINE_SIZE * 2);
1089 if (!req)
1090 goto out;
1091 list_add(&req->rl_list, &buf->rb_send_bufs);
1092 }
1093
1094 init_llist_head(&buf->rb_free_reps);
1095
1096 return 0;
1097 out:
1098 rpcrdma_buffer_destroy(buf);
1099 return rc;
1100 }
1101
1102 /**
1103 * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1104 * @req: unused object to be destroyed
1105 *
1106 * Relies on caller holding the transport send lock to protect
1107 * removing req->rl_all from buf->rb_all_reqs safely.
1108 */
rpcrdma_req_destroy(struct rpcrdma_req * req)1109 void rpcrdma_req_destroy(struct rpcrdma_req *req)
1110 {
1111 struct rpcrdma_mr *mr;
1112
1113 list_del(&req->rl_all);
1114
1115 while ((mr = rpcrdma_mr_pop(&req->rl_free_mrs))) {
1116 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
1117
1118 spin_lock(&buf->rb_lock);
1119 list_del(&mr->mr_all);
1120 spin_unlock(&buf->rb_lock);
1121
1122 frwr_mr_release(mr);
1123 }
1124
1125 rpcrdma_regbuf_free(req->rl_recvbuf);
1126 rpcrdma_regbuf_free(req->rl_sendbuf);
1127 rpcrdma_regbuf_free(req->rl_rdmabuf);
1128 kfree(req);
1129 }
1130
1131 /**
1132 * rpcrdma_mrs_destroy - Release all of a transport's MRs
1133 * @r_xprt: controlling transport instance
1134 *
1135 * Relies on caller holding the transport send lock to protect
1136 * removing mr->mr_list from req->rl_free_mrs safely.
1137 */
rpcrdma_mrs_destroy(struct rpcrdma_xprt * r_xprt)1138 static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
1139 {
1140 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1141 struct rpcrdma_mr *mr;
1142
1143 cancel_work_sync(&buf->rb_refresh_worker);
1144
1145 spin_lock(&buf->rb_lock);
1146 while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1147 struct rpcrdma_mr,
1148 mr_all)) != NULL) {
1149 list_del(&mr->mr_list);
1150 list_del(&mr->mr_all);
1151 spin_unlock(&buf->rb_lock);
1152
1153 frwr_mr_release(mr);
1154
1155 spin_lock(&buf->rb_lock);
1156 }
1157 spin_unlock(&buf->rb_lock);
1158 }
1159
1160 /**
1161 * rpcrdma_buffer_destroy - Release all hw resources
1162 * @buf: root control block for resources
1163 *
1164 * ORDERING: relies on a prior rpcrdma_xprt_drain :
1165 * - No more Send or Receive completions can occur
1166 * - All MRs, reps, and reqs are returned to their free lists
1167 */
1168 void
rpcrdma_buffer_destroy(struct rpcrdma_buffer * buf)1169 rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1170 {
1171 rpcrdma_reps_destroy(buf);
1172
1173 while (!list_empty(&buf->rb_send_bufs)) {
1174 struct rpcrdma_req *req;
1175
1176 req = list_first_entry(&buf->rb_send_bufs,
1177 struct rpcrdma_req, rl_list);
1178 list_del(&req->rl_list);
1179 rpcrdma_req_destroy(req);
1180 }
1181 }
1182
1183 /**
1184 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1185 * @r_xprt: controlling transport
1186 *
1187 * Returns an initialized rpcrdma_mr or NULL if no free
1188 * rpcrdma_mr objects are available.
1189 */
1190 struct rpcrdma_mr *
rpcrdma_mr_get(struct rpcrdma_xprt * r_xprt)1191 rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
1192 {
1193 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1194 struct rpcrdma_mr *mr;
1195
1196 spin_lock(&buf->rb_lock);
1197 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1198 spin_unlock(&buf->rb_lock);
1199 return mr;
1200 }
1201
1202 /**
1203 * rpcrdma_reply_put - Put reply buffers back into pool
1204 * @buffers: buffer pool
1205 * @req: object to return
1206 *
1207 */
rpcrdma_reply_put(struct rpcrdma_buffer * buffers,struct rpcrdma_req * req)1208 void rpcrdma_reply_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
1209 {
1210 if (req->rl_reply) {
1211 rpcrdma_rep_put(buffers, req->rl_reply);
1212 req->rl_reply = NULL;
1213 }
1214 }
1215
1216 /**
1217 * rpcrdma_buffer_get - Get a request buffer
1218 * @buffers: Buffer pool from which to obtain a buffer
1219 *
1220 * Returns a fresh rpcrdma_req, or NULL if none are available.
1221 */
1222 struct rpcrdma_req *
rpcrdma_buffer_get(struct rpcrdma_buffer * buffers)1223 rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1224 {
1225 struct rpcrdma_req *req;
1226
1227 spin_lock(&buffers->rb_lock);
1228 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1229 struct rpcrdma_req, rl_list);
1230 if (req)
1231 list_del_init(&req->rl_list);
1232 spin_unlock(&buffers->rb_lock);
1233 return req;
1234 }
1235
1236 /**
1237 * rpcrdma_buffer_put - Put request/reply buffers back into pool
1238 * @buffers: buffer pool
1239 * @req: object to return
1240 *
1241 */
rpcrdma_buffer_put(struct rpcrdma_buffer * buffers,struct rpcrdma_req * req)1242 void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
1243 {
1244 rpcrdma_reply_put(buffers, req);
1245
1246 spin_lock(&buffers->rb_lock);
1247 list_add(&req->rl_list, &buffers->rb_send_bufs);
1248 spin_unlock(&buffers->rb_lock);
1249 }
1250
1251 /* Returns a pointer to a rpcrdma_regbuf object, or NULL.
1252 *
1253 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1254 * receiving the payload of RDMA RECV operations. During Long Calls
1255 * or Replies they may be registered externally via frwr_map.
1256 */
1257 static struct rpcrdma_regbuf *
rpcrdma_regbuf_alloc_node(size_t size,enum dma_data_direction direction,int node)1258 rpcrdma_regbuf_alloc_node(size_t size, enum dma_data_direction direction,
1259 int node)
1260 {
1261 struct rpcrdma_regbuf *rb;
1262
1263 rb = kmalloc_node(sizeof(*rb), XPRTRDMA_GFP_FLAGS, node);
1264 if (!rb)
1265 return NULL;
1266 rb->rg_data = kmalloc_node(size, XPRTRDMA_GFP_FLAGS, node);
1267 if (!rb->rg_data) {
1268 kfree(rb);
1269 return NULL;
1270 }
1271
1272 rb->rg_device = NULL;
1273 rb->rg_direction = direction;
1274 rb->rg_iov.length = size;
1275 return rb;
1276 }
1277
1278 static struct rpcrdma_regbuf *
rpcrdma_regbuf_alloc(size_t size,enum dma_data_direction direction)1279 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction)
1280 {
1281 return rpcrdma_regbuf_alloc_node(size, direction, NUMA_NO_NODE);
1282 }
1283
1284 /**
1285 * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1286 * @rb: regbuf to reallocate
1287 * @size: size of buffer to be allocated, in bytes
1288 * @flags: GFP flags
1289 *
1290 * Returns true if reallocation was successful. If false is
1291 * returned, @rb is left untouched.
1292 */
rpcrdma_regbuf_realloc(struct rpcrdma_regbuf * rb,size_t size,gfp_t flags)1293 bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1294 {
1295 void *buf;
1296
1297 buf = kmalloc(size, flags);
1298 if (!buf)
1299 return false;
1300
1301 rpcrdma_regbuf_dma_unmap(rb);
1302 kfree(rb->rg_data);
1303
1304 rb->rg_data = buf;
1305 rb->rg_iov.length = size;
1306 return true;
1307 }
1308
1309 /**
1310 * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1311 * @r_xprt: controlling transport instance
1312 * @rb: regbuf to be mapped
1313 *
1314 * Returns true if the buffer is now DMA mapped to @r_xprt's device
1315 */
__rpcrdma_regbuf_dma_map(struct rpcrdma_xprt * r_xprt,struct rpcrdma_regbuf * rb)1316 bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1317 struct rpcrdma_regbuf *rb)
1318 {
1319 struct ib_device *device = r_xprt->rx_ep->re_id->device;
1320
1321 if (rb->rg_direction == DMA_NONE)
1322 return false;
1323
1324 rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1325 rdmab_length(rb), rb->rg_direction);
1326 if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1327 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
1328 return false;
1329 }
1330
1331 rb->rg_device = device;
1332 rb->rg_iov.lkey = r_xprt->rx_ep->re_pd->local_dma_lkey;
1333 return true;
1334 }
1335
rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf * rb)1336 static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
1337 {
1338 if (!rb)
1339 return;
1340
1341 if (!rpcrdma_regbuf_is_mapped(rb))
1342 return;
1343
1344 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1345 rb->rg_direction);
1346 rb->rg_device = NULL;
1347 }
1348
rpcrdma_regbuf_free(struct rpcrdma_regbuf * rb)1349 static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
1350 {
1351 rpcrdma_regbuf_dma_unmap(rb);
1352 if (rb)
1353 kfree(rb->rg_data);
1354 kfree(rb);
1355 }
1356
1357 /**
1358 * rpcrdma_post_recvs - Refill the Receive Queue
1359 * @r_xprt: controlling transport instance
1360 * @needed: current credit grant
1361 *
1362 */
rpcrdma_post_recvs(struct rpcrdma_xprt * r_xprt,int needed)1363 void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, int needed)
1364 {
1365 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1366 struct rpcrdma_ep *ep = r_xprt->rx_ep;
1367 struct ib_recv_wr *wr, *bad_wr;
1368 struct rpcrdma_rep *rep;
1369 int count, rc;
1370
1371 rc = 0;
1372 count = 0;
1373
1374 if (likely(ep->re_receive_count > needed))
1375 goto out;
1376 needed -= ep->re_receive_count;
1377 needed += ep->re_recv_batch;
1378
1379 if (atomic_inc_return(&ep->re_receiving) > 1)
1380 goto out_dec;
1381
1382 /* fast path: all needed reps can be found on the free list */
1383 wr = NULL;
1384 while (needed) {
1385 rep = rpcrdma_rep_get_locked(buf);
1386 if (!rep)
1387 rep = rpcrdma_rep_create(r_xprt);
1388 if (!rep)
1389 break;
1390 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf)) {
1391 rpcrdma_rep_put(buf, rep);
1392 break;
1393 }
1394
1395 rep->rr_cid.ci_queue_id = ep->re_attr.recv_cq->res.id;
1396 trace_xprtrdma_post_recv(&rep->rr_cid);
1397 rep->rr_recv_wr.next = wr;
1398 wr = &rep->rr_recv_wr;
1399 --needed;
1400 ++count;
1401 }
1402 if (!wr)
1403 goto out_dec;
1404
1405 rc = ib_post_recv(ep->re_id->qp, wr,
1406 (const struct ib_recv_wr **)&bad_wr);
1407 if (rc) {
1408 trace_xprtrdma_post_recvs_err(r_xprt, rc);
1409 for (wr = bad_wr; wr;) {
1410 struct rpcrdma_rep *rep;
1411
1412 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
1413 wr = wr->next;
1414 rpcrdma_rep_put(buf, rep);
1415 --count;
1416 }
1417 }
1418
1419 out_dec:
1420 if (atomic_dec_return(&ep->re_receiving) > 0)
1421 complete(&ep->re_done);
1422 out:
1423 trace_xprtrdma_post_recvs(r_xprt, count);
1424 ep->re_receive_count += count;
1425 return;
1426 }
1427