]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - net/sunrpc/xprtrdma/transport.c
xprtrdma: Replace rpcrdma_receive_wq with a per-xprt workqueue
[thirdparty/kernel/stable.git] / net / sunrpc / xprtrdma / transport.c
CommitLineData
a2268cfb 1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
f58851e6 2/*
62b56a67 3 * Copyright (c) 2014-2017 Oracle. All rights reserved.
f58851e6
TT
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 * transport.c
44 *
45 * This file contains the top-level implementation of an RPC RDMA
46 * transport.
47 *
48 * Naming convention: functions beginning with xprt_ are part of the
49 * transport switch. All others are RPC RDMA internal.
50 */
51
52#include <linux/module.h>
5a0e3ad6 53#include <linux/slab.h>
f58851e6 54#include <linux/seq_file.h>
bd2abef3
CL
55#include <linux/smp.h>
56
5976687a 57#include <linux/sunrpc/addr.h>
bd2abef3 58#include <linux/sunrpc/svc_rdma.h>
f58851e6
TT
59
60#include "xprt_rdma.h"
b6e717cb 61#include <trace/events/rpcrdma.h>
f58851e6 62
f895b252 63#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
64# define RPCDBG_FACILITY RPCDBG_TRANS
65#endif
66
f58851e6
TT
67/*
68 * tunables
69 */
70
71static unsigned int xprt_rdma_slot_table_entries = RPCRDMA_DEF_SLOT_TABLE;
5d252f90 72unsigned int xprt_rdma_max_inline_read = RPCRDMA_DEF_INLINE;
f58851e6 73static unsigned int xprt_rdma_max_inline_write = RPCRDMA_DEF_INLINE;
ce5b3717 74unsigned int xprt_rdma_memreg_strategy = RPCRDMA_FRWR;
fff09594 75int xprt_rdma_pad_optimize;
f58851e6 76
f895b252 77#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
78
79static unsigned int min_slot_table_size = RPCRDMA_MIN_SLOT_TABLE;
80static unsigned int max_slot_table_size = RPCRDMA_MAX_SLOT_TABLE;
29c55422
CL
81static unsigned int min_inline_size = RPCRDMA_MIN_INLINE;
82static unsigned int max_inline_size = RPCRDMA_MAX_INLINE;
f58851e6
TT
83static unsigned int zero;
84static unsigned int max_padding = PAGE_SIZE;
85static unsigned int min_memreg = RPCRDMA_BOUNCEBUFFERS;
86static unsigned int max_memreg = RPCRDMA_LAST - 1;
10492704 87static unsigned int dummy;
f58851e6
TT
88
89static struct ctl_table_header *sunrpc_table_header;
90
fe2c6338 91static struct ctl_table xr_tunables_table[] = {
f58851e6 92 {
f58851e6
TT
93 .procname = "rdma_slot_table_entries",
94 .data = &xprt_rdma_slot_table_entries,
95 .maxlen = sizeof(unsigned int),
96 .mode = 0644,
6d456111 97 .proc_handler = proc_dointvec_minmax,
f58851e6
TT
98 .extra1 = &min_slot_table_size,
99 .extra2 = &max_slot_table_size
100 },
101 {
f58851e6
TT
102 .procname = "rdma_max_inline_read",
103 .data = &xprt_rdma_max_inline_read,
104 .maxlen = sizeof(unsigned int),
105 .mode = 0644,
44829d02 106 .proc_handler = proc_dointvec_minmax,
29c55422
CL
107 .extra1 = &min_inline_size,
108 .extra2 = &max_inline_size,
f58851e6
TT
109 },
110 {
f58851e6
TT
111 .procname = "rdma_max_inline_write",
112 .data = &xprt_rdma_max_inline_write,
113 .maxlen = sizeof(unsigned int),
114 .mode = 0644,
44829d02 115 .proc_handler = proc_dointvec_minmax,
29c55422
CL
116 .extra1 = &min_inline_size,
117 .extra2 = &max_inline_size,
f58851e6
TT
118 },
119 {
f58851e6 120 .procname = "rdma_inline_write_padding",
10492704 121 .data = &dummy,
f58851e6
TT
122 .maxlen = sizeof(unsigned int),
123 .mode = 0644,
6d456111 124 .proc_handler = proc_dointvec_minmax,
f58851e6
TT
125 .extra1 = &zero,
126 .extra2 = &max_padding,
127 },
128 {
f58851e6
TT
129 .procname = "rdma_memreg_strategy",
130 .data = &xprt_rdma_memreg_strategy,
131 .maxlen = sizeof(unsigned int),
132 .mode = 0644,
6d456111 133 .proc_handler = proc_dointvec_minmax,
f58851e6
TT
134 .extra1 = &min_memreg,
135 .extra2 = &max_memreg,
136 },
9191ca3b 137 {
9191ca3b
TT
138 .procname = "rdma_pad_optimize",
139 .data = &xprt_rdma_pad_optimize,
140 .maxlen = sizeof(unsigned int),
141 .mode = 0644,
6d456111 142 .proc_handler = proc_dointvec,
9191ca3b 143 },
f8572d8f 144 { },
f58851e6
TT
145};
146
fe2c6338 147static struct ctl_table sunrpc_table[] = {
f58851e6 148 {
f58851e6
TT
149 .procname = "sunrpc",
150 .mode = 0555,
151 .child = xr_tunables_table
152 },
f8572d8f 153 { },
f58851e6
TT
154};
155
156#endif
157
d31ae254 158static const struct rpc_xprt_ops xprt_rdma_procs;
f58851e6 159
0dd39cae
CL
160static void
161xprt_rdma_format_addresses4(struct rpc_xprt *xprt, struct sockaddr *sap)
162{
163 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
164 char buf[20];
165
166 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
167 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
168
169 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA;
170}
171
172static void
173xprt_rdma_format_addresses6(struct rpc_xprt *xprt, struct sockaddr *sap)
174{
175 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
176 char buf[40];
177
178 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
179 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
180
181 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA6;
182}
183
5d252f90 184void
5231eb97 185xprt_rdma_format_addresses(struct rpc_xprt *xprt, struct sockaddr *sap)
f58851e6 186{
0dd39cae
CL
187 char buf[128];
188
189 switch (sap->sa_family) {
190 case AF_INET:
191 xprt_rdma_format_addresses4(xprt, sap);
192 break;
193 case AF_INET6:
194 xprt_rdma_format_addresses6(xprt, sap);
195 break;
196 default:
197 pr_err("rpcrdma: Unrecognized address family\n");
198 return;
199 }
f58851e6 200
c877b849
CL
201 (void)rpc_ntop(sap, buf, sizeof(buf));
202 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
f58851e6 203
81160e66 204 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
c877b849 205 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
f58851e6 206
81160e66 207 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
c877b849 208 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
f58851e6 209
0dd39cae 210 xprt->address_strings[RPC_DISPLAY_PROTO] = "rdma";
f58851e6
TT
211}
212
5d252f90 213void
f58851e6
TT
214xprt_rdma_free_addresses(struct rpc_xprt *xprt)
215{
33e01dc7
CL
216 unsigned int i;
217
218 for (i = 0; i < RPC_DISPLAY_MAX; i++)
219 switch (i) {
220 case RPC_DISPLAY_PROTO:
221 case RPC_DISPLAY_NETID:
222 continue;
223 default:
224 kfree(xprt->address_strings[i]);
225 }
f58851e6
TT
226}
227
31e62d25
CL
228/**
229 * xprt_rdma_connect_worker - establish connection in the background
230 * @work: worker thread context
231 *
232 * Requester holds the xprt's send lock to prevent activity on this
233 * transport while a fresh connection is being established. RPC tasks
234 * sleep on the xprt's pending queue waiting for connect to complete.
235 */
f58851e6
TT
236static void
237xprt_rdma_connect_worker(struct work_struct *work)
238{
5abefb86
CL
239 struct rpcrdma_xprt *r_xprt = container_of(work, struct rpcrdma_xprt,
240 rx_connect_worker.work);
241 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
31e62d25 242 int rc;
d19751e7 243
d19751e7 244 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
f58851e6 245 xprt_clear_connecting(xprt);
31e62d25 246 if (r_xprt->rx_ep.rep_connected > 0) {
3968a8a5
CL
247 if (!xprt_test_and_set_connected(xprt)) {
248 xprt->stat.connect_count++;
249 xprt->stat.connect_time += (long)jiffies -
250 xprt->stat.connect_start;
31e62d25 251 xprt_wake_pending_tasks(xprt, -EAGAIN);
3968a8a5 252 }
3a72dc77
CL
253 } else {
254 if (xprt_test_and_clear_connected(xprt))
31e62d25 255 xprt_wake_pending_tasks(xprt, rc);
3a72dc77 256 }
f58851e6
TT
257}
258
f26c32fa
CL
259/**
260 * xprt_rdma_inject_disconnect - inject a connection fault
261 * @xprt: transport context
262 *
263 * If @xprt is connected, disconnect it to simulate spurious connection
264 * loss.
265 */
4a068258
CL
266static void
267xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
268{
ad091180 269 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
4a068258 270
b4744e00 271 trace_xprtrdma_inject_dsc(r_xprt);
4a068258
CL
272 rdma_disconnect(r_xprt->rx_ia.ri_id);
273}
274
f26c32fa
CL
275/**
276 * xprt_rdma_destroy - Full tear down of transport
277 * @xprt: doomed transport context
f58851e6 278 *
f26c32fa
CL
279 * Caller guarantees there will be no more calls to us with
280 * this @xprt.
f58851e6
TT
281 */
282static void
283xprt_rdma_destroy(struct rpc_xprt *xprt)
284{
285 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
f58851e6 286
b4744e00 287 trace_xprtrdma_destroy(r_xprt);
f58851e6 288
5abefb86 289 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
f58851e6 290
7f1d5419 291 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
72c02173 292 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
f58851e6
TT
293 rpcrdma_ia_close(&r_xprt->rx_ia);
294
295 xprt_rdma_free_addresses(xprt);
e204e621 296 xprt_free(xprt);
f58851e6 297
f58851e6
TT
298 module_put(THIS_MODULE);
299}
300
2881ae74
TM
301static const struct rpc_timeout xprt_rdma_default_timeout = {
302 .to_initval = 60 * HZ,
303 .to_maxval = 60 * HZ,
304};
305
f58851e6
TT
306/**
307 * xprt_setup_rdma - Set up transport to use RDMA
308 *
309 * @args: rpc transport arguments
310 */
311static struct rpc_xprt *
312xprt_setup_rdma(struct xprt_create *args)
313{
314 struct rpcrdma_create_data_internal cdata;
315 struct rpc_xprt *xprt;
316 struct rpcrdma_xprt *new_xprt;
317 struct rpcrdma_ep *new_ep;
5231eb97 318 struct sockaddr *sap;
f58851e6
TT
319 int rc;
320
321 if (args->addrlen > sizeof(xprt->addr)) {
322 dprintk("RPC: %s: address too large\n", __func__);
323 return ERR_PTR(-EBADF);
324 }
325
edb41e61 326 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt), 0, 0);
f58851e6
TT
327 if (xprt == NULL) {
328 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
329 __func__);
330 return ERR_PTR(-ENOMEM);
331 }
332
f58851e6 333 /* 60 second timeout, no retries */
ba7392bb 334 xprt->timeout = &xprt_rdma_default_timeout;
bfaee096
CL
335 xprt->bind_timeout = RPCRDMA_BIND_TO;
336 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
337 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
f58851e6
TT
338
339 xprt->resvport = 0; /* privileged port not needed */
340 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
f58851e6
TT
341 xprt->ops = &xprt_rdma_procs;
342
343 /*
344 * Set up RDMA-specific connect data.
345 */
dd229cee 346 sap = args->dstaddr;
f58851e6
TT
347
348 /* Ensure xprt->addr holds valid server TCP (not RDMA)
349 * address, for any side protocols which peek at it */
350 xprt->prot = IPPROTO_TCP;
351 xprt->addrlen = args->addrlen;
5231eb97 352 memcpy(&xprt->addr, sap, xprt->addrlen);
f58851e6 353
5231eb97 354 if (rpc_get_port(sap))
f58851e6 355 xprt_set_bound(xprt);
d461f1f2 356 xprt_rdma_format_addresses(xprt, sap);
f58851e6 357
edb41e61 358 cdata.max_requests = xprt_rdma_slot_table_entries;
f58851e6 359
f58851e6
TT
360 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
361 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
362
363 cdata.inline_wsize = xprt_rdma_max_inline_write;
364 if (cdata.inline_wsize > cdata.wsize)
365 cdata.inline_wsize = cdata.wsize;
366
367 cdata.inline_rsize = xprt_rdma_max_inline_read;
368 if (cdata.inline_rsize > cdata.rsize)
369 cdata.inline_rsize = cdata.rsize;
370
f58851e6
TT
371 /*
372 * Create new transport instance, which includes initialized
373 * o ia
374 * o endpoint
375 * o buffers
376 */
377
378 new_xprt = rpcx_to_rdmax(xprt);
379
dd229cee 380 rc = rpcrdma_ia_open(new_xprt);
f58851e6
TT
381 if (rc)
382 goto out1;
383
384 /*
385 * initialize and create ep
386 */
387 new_xprt->rx_data = cdata;
388 new_ep = &new_xprt->rx_ep;
f58851e6
TT
389
390 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
391 &new_xprt->rx_ia, &new_xprt->rx_data);
392 if (rc)
393 goto out2;
394
ac920d04 395 rc = rpcrdma_buffer_create(new_xprt);
f58851e6
TT
396 if (rc)
397 goto out3;
398
5abefb86
CL
399 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
400 xprt_rdma_connect_worker);
f58851e6 401
1c9351ee
CL
402 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
403 if (xprt->max_payload == 0)
404 goto out4;
405 xprt->max_payload <<= PAGE_SHIFT;
43e95988
CL
406 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
407 __func__, xprt->max_payload);
f58851e6
TT
408
409 if (!try_module_get(THIS_MODULE))
410 goto out4;
411
5231eb97
CL
412 dprintk("RPC: %s: %s:%s\n", __func__,
413 xprt->address_strings[RPC_DISPLAY_ADDR],
414 xprt->address_strings[RPC_DISPLAY_PORT]);
b4744e00 415 trace_xprtrdma_create(new_xprt);
f58851e6
TT
416 return xprt;
417
418out4:
03ac1a76 419 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
03ac1a76 420 rc = -ENODEV;
f58851e6 421out3:
7f1d5419 422 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
f58851e6
TT
423out2:
424 rpcrdma_ia_close(&new_xprt->rx_ia);
425out1:
b4744e00 426 trace_xprtrdma_destroy(new_xprt);
d461f1f2 427 xprt_rdma_free_addresses(xprt);
e204e621 428 xprt_free(xprt);
f58851e6
TT
429 return ERR_PTR(rc);
430}
431
bebd0318 432/**
f26c32fa
CL
433 * xprt_rdma_close - close a transport connection
434 * @xprt: transport context
bebd0318 435 *
f26c32fa
CL
436 * Called during transport shutdown, reconnect, or device removal.
437 * Caller holds @xprt's send lock to prevent activity on this
438 * transport while the connection is torn down.
f58851e6
TT
439 */
440static void
441xprt_rdma_close(struct rpc_xprt *xprt)
442{
443 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
bebd0318
CL
444 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
445 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
446
6d2d0ee2
CL
447 might_sleep();
448
bebd0318 449 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
f58851e6 450
6d2d0ee2
CL
451 /* Prevent marshaling and sending of new requests */
452 xprt_clear_connected(xprt);
453
bebd0318 454 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
bebd0318
CL
455 rpcrdma_ia_remove(ia);
456 return;
457 }
458 if (ep->rep_connected == -ENODEV)
459 return;
460 if (ep->rep_connected > 0)
08ca0dce 461 xprt->reestablish_timeout = 0;
62da3b24 462 xprt_disconnect_done(xprt);
bebd0318 463 rpcrdma_ep_disconnect(ep, ia);
ef739b21
CL
464
465 /* Prepare @xprt for the next connection by reinitializing
466 * its credit grant to one (see RFC 8166, Section 3.3.3).
467 */
468 r_xprt->rx_buf.rb_credits = 1;
469 xprt->cwnd = RPC_CWNDSHIFT;
f58851e6
TT
470}
471
20035edf
CL
472/**
473 * xprt_rdma_set_port - update server port with rpcbind result
474 * @xprt: controlling RPC transport
475 * @port: new port value
476 *
477 * Transport connect status is unchanged.
478 */
f58851e6
TT
479static void
480xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
481{
20035edf
CL
482 struct sockaddr *sap = (struct sockaddr *)&xprt->addr;
483 char buf[8];
484
485 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
486 __func__, xprt,
487 xprt->address_strings[RPC_DISPLAY_ADDR],
488 xprt->address_strings[RPC_DISPLAY_PORT],
489 port);
490
491 rpc_set_port(sap, port);
f58851e6 492
20035edf
CL
493 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
494 snprintf(buf, sizeof(buf), "%u", port);
495 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
496
497 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
498 snprintf(buf, sizeof(buf), "%4hx", port);
499 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
f58851e6
TT
500}
501
33849792
CL
502/**
503 * xprt_rdma_timer - invoked when an RPC times out
504 * @xprt: controlling RPC transport
505 * @task: RPC task that timed out
506 *
507 * Invoked when the transport is still connected, but an RPC
508 * retransmit timeout occurs.
509 *
510 * Since RDMA connections don't have a keep-alive, forcibly
511 * disconnect and retry to connect. This drives full
512 * detection of the network path, and retransmissions of
513 * all pending RPCs.
514 */
515static void
516xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
517{
33849792
CL
518 xprt_force_disconnect(xprt);
519}
520
f26c32fa
CL
521/**
522 * xprt_rdma_connect - try to establish a transport connection
523 * @xprt: transport state
524 * @task: RPC scheduler context
525 *
526 */
f58851e6 527static void
1b092092 528xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
f58851e6 529{
f58851e6
TT
530 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
531
0b9e7943
TM
532 if (r_xprt->rx_ep.rep_connected != 0) {
533 /* Reconnect */
5abefb86
CL
534 schedule_delayed_work(&r_xprt->rx_connect_worker,
535 xprt->reestablish_timeout);
0b9e7943 536 xprt->reestablish_timeout <<= 1;
bfaee096
CL
537 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
538 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
539 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
540 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
0b9e7943 541 } else {
5abefb86 542 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
0b9e7943 543 if (!RPC_IS_ASYNC(task))
5abefb86 544 flush_delayed_work(&r_xprt->rx_connect_worker);
f58851e6
TT
545 }
546}
547
48be539d
CL
548/**
549 * xprt_rdma_alloc_slot - allocate an rpc_rqst
550 * @xprt: controlling RPC transport
551 * @task: RPC task requesting a fresh rpc_rqst
552 *
553 * tk_status values:
554 * %0 if task->tk_rqstp points to a fresh rpc_rqst
555 * %-EAGAIN if no rpc_rqst is available; queued on backlog
556 */
557static void
558xprt_rdma_alloc_slot(struct rpc_xprt *xprt, struct rpc_task *task)
559{
edb41e61
CL
560 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
561 struct rpcrdma_req *req;
48be539d 562
edb41e61
CL
563 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
564 if (!req)
48be539d 565 goto out_sleep;
edb41e61 566 task->tk_rqstp = &req->rl_slot;
48be539d
CL
567 task->tk_status = 0;
568 return;
569
570out_sleep:
571 rpc_sleep_on(&xprt->backlog, task, NULL);
48be539d
CL
572 task->tk_status = -EAGAIN;
573}
574
575/**
576 * xprt_rdma_free_slot - release an rpc_rqst
577 * @xprt: controlling RPC transport
578 * @rqst: rpc_rqst to release
579 *
580 */
581static void
582xprt_rdma_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *rqst)
583{
584 memset(rqst, 0, sizeof(*rqst));
edb41e61 585 rpcrdma_buffer_put(rpcr_to_rdmar(rqst));
48be539d 586 rpc_wake_up_next(&xprt->backlog);
48be539d
CL
587}
588
9c40c49f
CL
589static bool
590rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
591 size_t size, gfp_t flags)
592{
593 struct rpcrdma_regbuf *rb;
9c40c49f
CL
594
595 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
596 return true;
597
655fec69 598 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
9c40c49f
CL
599 if (IS_ERR(rb))
600 return false;
601
13650c23 602 rpcrdma_free_regbuf(req->rl_sendbuf);
655fec69 603 r_xprt->rx_stats.hardway_register_count += size;
9c40c49f
CL
604 req->rl_sendbuf = rb;
605 return true;
606}
607
608/* The rq_rcv_buf is used only if a Reply chunk is necessary.
609 * The decision to use a Reply chunk is made later in
610 * rpcrdma_marshal_req. This buffer is registered at that time.
611 *
612 * Otherwise, the associated RPC Reply arrives in a separate
613 * Receive buffer, arbitrarily chosen by the HCA. The buffer
614 * allocated here for the RPC Reply is not utilized in that
615 * case. See rpcrdma_inline_fixup.
616 *
617 * A regbuf is used here to remember the buffer size.
618 */
619static bool
620rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
621 size_t size, gfp_t flags)
622{
623 struct rpcrdma_regbuf *rb;
624
625 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
626 return true;
627
13650c23 628 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
9c40c49f
CL
629 if (IS_ERR(rb))
630 return false;
631
13650c23 632 rpcrdma_free_regbuf(req->rl_recvbuf);
9c40c49f
CL
633 r_xprt->rx_stats.hardway_register_count += size;
634 req->rl_recvbuf = rb;
635 return true;
636}
637
5fe6eaa1
CL
638/**
639 * xprt_rdma_allocate - allocate transport resources for an RPC
640 * @task: RPC task
641 *
642 * Return values:
643 * 0: Success; rq_buffer points to RPC buffer to use
644 * ENOMEM: Out of memory, call again later
645 * EIO: A permanent error occurred, do not retry
f58851e6 646 */
5fe6eaa1
CL
647static int
648xprt_rdma_allocate(struct rpc_task *task)
f58851e6 649{
5fe6eaa1 650 struct rpc_rqst *rqst = task->tk_rqstp;
5fe6eaa1 651 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
edb41e61 652 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
a0a1d50c 653 gfp_t flags;
f58851e6 654
5d252f90 655 flags = RPCRDMA_DEF_GFP;
a0a1d50c
CL
656 if (RPC_IS_SWAPPER(task))
657 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
658
9c40c49f
CL
659 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
660 goto out_fail;
661 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
662 goto out_fail;
663
5fe6eaa1 664 rqst->rq_buffer = req->rl_sendbuf->rg_base;
9c40c49f 665 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
ae724676 666 trace_xprtrdma_allocate(task, req);
5fe6eaa1 667 return 0;
0ca77dc3 668
0ca77dc3 669out_fail:
ae724676 670 trace_xprtrdma_allocate(task, NULL);
5fe6eaa1 671 return -ENOMEM;
f58851e6
TT
672}
673
3435c74a
CL
674/**
675 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
676 * @task: RPC task
677 *
678 * Caller guarantees rqst->rq_buffer is non-NULL.
f58851e6
TT
679 */
680static void
3435c74a 681xprt_rdma_free(struct rpc_task *task)
f58851e6 682{
3435c74a
CL
683 struct rpc_rqst *rqst = task->tk_rqstp;
684 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
685 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
f58851e6 686
0ba6f370
CL
687 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
688 rpcrdma_release_rqst(r_xprt, req);
ae724676 689 trace_xprtrdma_rpc_done(task, req);
f58851e6
TT
690}
691
7a89f9c6
CL
692/**
693 * xprt_rdma_send_request - marshal and send an RPC request
adfa7144 694 * @rqst: RPC message in rq_snd_buf
7a89f9c6 695 *
bebd0318
CL
696 * Caller holds the transport's write lock.
697 *
cf73daf5
CL
698 * Returns:
699 * %0 if the RPC message has been sent
700 * %-ENOTCONN if the caller should reconnect and call again
9e679d5e
CL
701 * %-EAGAIN if the caller should call again
702 * %-ENOBUFS if the caller should call again after a delay
cf73daf5
CL
703 * %-EIO if a permanent error occurred and the request was not
704 * sent. Do not try to send this message again.
f58851e6 705 */
f58851e6 706static int
adfa7144 707xprt_rdma_send_request(struct rpc_rqst *rqst)
f58851e6 708{
a4f0835c 709 struct rpc_xprt *xprt = rqst->rq_xprt;
f58851e6
TT
710 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
711 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
6ab59945 712 int rc = 0;
f58851e6 713
cf73daf5
CL
714#if defined(CONFIG_SUNRPC_BACKCHANNEL)
715 if (unlikely(!rqst->rq_buffer))
716 return xprt_rdma_bc_send_reply(rqst);
717#endif /* CONFIG_SUNRPC_BACKCHANNEL */
718
bebd0318
CL
719 if (!xprt_connected(xprt))
720 goto drop_connection;
721
75891f50
TM
722 if (!xprt_request_get_cong(xprt, rqst))
723 return -EBADSLT;
724
09e60641 725 rc = rpcrdma_marshal_req(r_xprt, rqst);
6ab59945
CL
726 if (rc < 0)
727 goto failed_marshal;
f58851e6 728
575448bd 729 /* Must suppress retransmit to maintain credits */
8a14793e 730 if (rqst->rq_connect_cookie == xprt->connect_cookie)
575448bd 731 goto drop_connection;
78215759 732 rqst->rq_xtime = ktime_get();
575448bd 733
42b9f5c5 734 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
575448bd
TT
735 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
736 goto drop_connection;
f58851e6 737
d60dbb20 738 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
f58851e6 739 rqst->rq_bytes_sent = 0;
fb14ae88
CL
740
741 /* An RPC with no reply will throw off credit accounting,
742 * so drop the connection to reset the credit grant.
743 */
50f484e2 744 if (!rpc_reply_expected(rqst->rq_task))
fb14ae88 745 goto drop_connection;
f58851e6 746 return 0;
575448bd 747
c93c6223 748failed_marshal:
7a89f9c6
CL
749 if (rc != -ENOTCONN)
750 return rc;
575448bd
TT
751drop_connection:
752 xprt_disconnect_done(xprt);
753 return -ENOTCONN; /* implies disconnect */
f58851e6
TT
754}
755
5d252f90 756void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
f58851e6
TT
757{
758 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
759 long idle_time = 0;
760
761 if (xprt_connected(xprt))
762 idle_time = (long)(jiffies - xprt->last_used) / HZ;
763
763f7e4e
CL
764 seq_puts(seq, "\txprt:\trdma ");
765 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
766 0, /* need a local port? */
767 xprt->stat.bind_count,
768 xprt->stat.connect_count,
8440a886 769 xprt->stat.connect_time / HZ,
763f7e4e
CL
770 idle_time,
771 xprt->stat.sends,
772 xprt->stat.recvs,
773 xprt->stat.bad_xids,
774 xprt->stat.req_u,
775 xprt->stat.bklog_u);
505bbe64 776 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
763f7e4e
CL
777 r_xprt->rx_stats.read_chunk_count,
778 r_xprt->rx_stats.write_chunk_count,
779 r_xprt->rx_stats.reply_chunk_count,
780 r_xprt->rx_stats.total_rdma_request,
781 r_xprt->rx_stats.total_rdma_reply,
782 r_xprt->rx_stats.pullup_copy_count,
783 r_xprt->rx_stats.fixup_copy_count,
784 r_xprt->rx_stats.hardway_register_count,
785 r_xprt->rx_stats.failed_marshal_count,
860477d1
CL
786 r_xprt->rx_stats.bad_reply_count,
787 r_xprt->rx_stats.nomsg_call_count);
01bb35c8 788 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
61da886b 789 r_xprt->rx_stats.mrs_recycled,
e2ac236c 790 r_xprt->rx_stats.mrs_orphaned,
c8b920bb 791 r_xprt->rx_stats.mrs_allocated,
ae72950a 792 r_xprt->rx_stats.local_inv_needed,
01bb35c8
CL
793 r_xprt->rx_stats.empty_sendctx_q,
794 r_xprt->rx_stats.reply_waits_for_send);
f58851e6
TT
795}
796
d67fa4d8
JL
797static int
798xprt_rdma_enable_swap(struct rpc_xprt *xprt)
799{
a0451788 800 return 0;
d67fa4d8
JL
801}
802
803static void
804xprt_rdma_disable_swap(struct rpc_xprt *xprt)
805{
806}
807
f58851e6
TT
808/*
809 * Plumbing for rpc transport switch and kernel module
810 */
811
d31ae254 812static const struct rpc_xprt_ops xprt_rdma_procs = {
e7ce710a 813 .reserve_xprt = xprt_reserve_xprt_cong,
f58851e6 814 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
48be539d
CL
815 .alloc_slot = xprt_rdma_alloc_slot,
816 .free_slot = xprt_rdma_free_slot,
f58851e6
TT
817 .release_request = xprt_release_rqst_cong, /* ditto */
818 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
33849792 819 .timer = xprt_rdma_timer,
f58851e6
TT
820 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
821 .set_port = xprt_rdma_set_port,
822 .connect = xprt_rdma_connect,
823 .buf_alloc = xprt_rdma_allocate,
824 .buf_free = xprt_rdma_free,
825 .send_request = xprt_rdma_send_request,
826 .close = xprt_rdma_close,
827 .destroy = xprt_rdma_destroy,
d67fa4d8
JL
828 .print_stats = xprt_rdma_print_stats,
829 .enable_swap = xprt_rdma_enable_swap,
830 .disable_swap = xprt_rdma_disable_swap,
f531a5db
CL
831 .inject_disconnect = xprt_rdma_inject_disconnect,
832#if defined(CONFIG_SUNRPC_BACKCHANNEL)
833 .bc_setup = xprt_rdma_bc_setup,
76566773 834 .bc_up = xprt_rdma_bc_up,
6b26cc8c 835 .bc_maxpayload = xprt_rdma_bc_maxpayload,
f531a5db
CL
836 .bc_free_rqst = xprt_rdma_bc_free_rqst,
837 .bc_destroy = xprt_rdma_bc_destroy,
838#endif
f58851e6
TT
839};
840
841static struct xprt_class xprt_rdma = {
842 .list = LIST_HEAD_INIT(xprt_rdma.list),
843 .name = "rdma",
844 .owner = THIS_MODULE,
845 .ident = XPRT_TRANSPORT_RDMA,
846 .setup = xprt_setup_rdma,
847};
848
ffe1f0df 849void xprt_rdma_cleanup(void)
f58851e6
TT
850{
851 int rc;
852
3a0799a9 853 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
f895b252 854#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
855 if (sunrpc_table_header) {
856 unregister_sysctl_table(sunrpc_table_header);
857 sunrpc_table_header = NULL;
858 }
859#endif
860 rc = xprt_unregister_transport(&xprt_rdma);
861 if (rc)
862 dprintk("RPC: %s: xprt_unregister returned %i\n",
863 __func__, rc);
951e721c 864
5d252f90
CL
865 rc = xprt_unregister_transport(&xprt_rdma_bc);
866 if (rc)
867 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
868 __func__, rc);
f58851e6
TT
869}
870
ffe1f0df 871int xprt_rdma_init(void)
f58851e6
TT
872{
873 int rc;
874
951e721c 875 rc = xprt_register_transport(&xprt_rdma);
6d2d0ee2 876 if (rc)
951e721c 877 return rc;
951e721c 878
5d252f90
CL
879 rc = xprt_register_transport(&xprt_rdma_bc);
880 if (rc) {
881 xprt_unregister_transport(&xprt_rdma);
5d252f90
CL
882 return rc;
883 }
884
3a0799a9 885 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
f58851e6 886
3a0799a9
CL
887 dprintk("Defaults:\n");
888 dprintk("\tSlots %d\n"
f58851e6
TT
889 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
890 xprt_rdma_slot_table_entries,
891 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
10492704 892 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
f58851e6 893
f895b252 894#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
895 if (!sunrpc_table_header)
896 sunrpc_table_header = register_sysctl_table(sunrpc_table);
897#endif
898 return 0;
899}