]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/sunrpc/xprtrdma/transport.c
xprtrdma: Re-organize the switch() in rpcrdma_conn_upcall
[mirror_ubuntu-jammy-kernel.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
3a72dc77
CL
228void
229rpcrdma_conn_func(struct rpcrdma_ep *ep)
230{
231 schedule_delayed_work(&ep->rep_connect_worker, 0);
232}
233
234void
235rpcrdma_connect_worker(struct work_struct *work)
236{
237 struct rpcrdma_ep *ep =
238 container_of(work, struct rpcrdma_ep, rep_connect_worker.work);
239 struct rpcrdma_xprt *r_xprt =
240 container_of(ep, struct rpcrdma_xprt, rx_ep);
241 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
242
243 spin_lock_bh(&xprt->transport_lock);
3a72dc77 244 if (ep->rep_connected > 0) {
3968a8a5
CL
245 if (!xprt_test_and_set_connected(xprt)) {
246 xprt->stat.connect_count++;
247 xprt->stat.connect_time += (long)jiffies -
248 xprt->stat.connect_start;
3a72dc77 249 xprt_wake_pending_tasks(xprt, 0);
3968a8a5 250 }
3a72dc77
CL
251 } else {
252 if (xprt_test_and_clear_connected(xprt))
253 xprt_wake_pending_tasks(xprt, -ENOTCONN);
254 }
255 spin_unlock_bh(&xprt->transport_lock);
256}
257
f58851e6
TT
258static void
259xprt_rdma_connect_worker(struct work_struct *work)
260{
5abefb86
CL
261 struct rpcrdma_xprt *r_xprt = container_of(work, struct rpcrdma_xprt,
262 rx_connect_worker.work);
263 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
f58851e6
TT
264 int rc = 0;
265
d19751e7
TM
266 xprt_clear_connected(xprt);
267
d19751e7
TM
268 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
269 if (rc)
270 xprt_wake_pending_tasks(xprt, rc);
271
f58851e6
TT
272 xprt_clear_connecting(xprt);
273}
274
4a068258
CL
275static void
276xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
277{
278 struct rpcrdma_xprt *r_xprt = container_of(xprt, struct rpcrdma_xprt,
279 rx_xprt);
280
b4744e00 281 trace_xprtrdma_inject_dsc(r_xprt);
4a068258
CL
282 rdma_disconnect(r_xprt->rx_ia.ri_id);
283}
284
f58851e6
TT
285/*
286 * xprt_rdma_destroy
287 *
288 * Destroy the xprt.
289 * Free all memory associated with the object, including its own.
290 * NOTE: none of the *destroy methods free memory for their top-level
291 * objects, even though they may have allocated it (they do free
292 * private memory). It's up to the caller to handle it. In this
293 * case (RDMA transport), all structure memory is inlined with the
294 * struct rpcrdma_xprt.
295 */
296static void
297xprt_rdma_destroy(struct rpc_xprt *xprt)
298{
299 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
f58851e6 300
b4744e00 301 trace_xprtrdma_destroy(r_xprt);
f58851e6 302
5abefb86 303 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
f58851e6
TT
304
305 xprt_clear_connected(xprt);
306
7f1d5419 307 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
72c02173 308 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
f58851e6
TT
309 rpcrdma_ia_close(&r_xprt->rx_ia);
310
311 xprt_rdma_free_addresses(xprt);
e204e621 312 xprt_free(xprt);
f58851e6 313
f58851e6
TT
314 module_put(THIS_MODULE);
315}
316
2881ae74
TM
317static const struct rpc_timeout xprt_rdma_default_timeout = {
318 .to_initval = 60 * HZ,
319 .to_maxval = 60 * HZ,
320};
321
f58851e6
TT
322/**
323 * xprt_setup_rdma - Set up transport to use RDMA
324 *
325 * @args: rpc transport arguments
326 */
327static struct rpc_xprt *
328xprt_setup_rdma(struct xprt_create *args)
329{
330 struct rpcrdma_create_data_internal cdata;
331 struct rpc_xprt *xprt;
332 struct rpcrdma_xprt *new_xprt;
333 struct rpcrdma_ep *new_ep;
5231eb97 334 struct sockaddr *sap;
f58851e6
TT
335 int rc;
336
337 if (args->addrlen > sizeof(xprt->addr)) {
338 dprintk("RPC: %s: address too large\n", __func__);
339 return ERR_PTR(-EBADF);
340 }
341
edb41e61 342 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt), 0, 0);
f58851e6
TT
343 if (xprt == NULL) {
344 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
345 __func__);
346 return ERR_PTR(-ENOMEM);
347 }
348
f58851e6 349 /* 60 second timeout, no retries */
ba7392bb 350 xprt->timeout = &xprt_rdma_default_timeout;
bfaee096
CL
351 xprt->bind_timeout = RPCRDMA_BIND_TO;
352 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
353 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
f58851e6
TT
354
355 xprt->resvport = 0; /* privileged port not needed */
356 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
f58851e6
TT
357 xprt->ops = &xprt_rdma_procs;
358
359 /*
360 * Set up RDMA-specific connect data.
361 */
dd229cee 362 sap = args->dstaddr;
f58851e6
TT
363
364 /* Ensure xprt->addr holds valid server TCP (not RDMA)
365 * address, for any side protocols which peek at it */
366 xprt->prot = IPPROTO_TCP;
367 xprt->addrlen = args->addrlen;
5231eb97 368 memcpy(&xprt->addr, sap, xprt->addrlen);
f58851e6 369
5231eb97 370 if (rpc_get_port(sap))
f58851e6 371 xprt_set_bound(xprt);
d461f1f2 372 xprt_rdma_format_addresses(xprt, sap);
f58851e6 373
edb41e61 374 cdata.max_requests = xprt_rdma_slot_table_entries;
f58851e6 375
f58851e6
TT
376 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
377 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
378
379 cdata.inline_wsize = xprt_rdma_max_inline_write;
380 if (cdata.inline_wsize > cdata.wsize)
381 cdata.inline_wsize = cdata.wsize;
382
383 cdata.inline_rsize = xprt_rdma_max_inline_read;
384 if (cdata.inline_rsize > cdata.rsize)
385 cdata.inline_rsize = cdata.rsize;
386
f58851e6
TT
387 /*
388 * Create new transport instance, which includes initialized
389 * o ia
390 * o endpoint
391 * o buffers
392 */
393
394 new_xprt = rpcx_to_rdmax(xprt);
395
dd229cee 396 rc = rpcrdma_ia_open(new_xprt);
f58851e6
TT
397 if (rc)
398 goto out1;
399
400 /*
401 * initialize and create ep
402 */
403 new_xprt->rx_data = cdata;
404 new_ep = &new_xprt->rx_ep;
f58851e6
TT
405
406 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
407 &new_xprt->rx_ia, &new_xprt->rx_data);
408 if (rc)
409 goto out2;
410
ac920d04 411 rc = rpcrdma_buffer_create(new_xprt);
f58851e6
TT
412 if (rc)
413 goto out3;
414
5abefb86
CL
415 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
416 xprt_rdma_connect_worker);
f58851e6 417
1c9351ee
CL
418 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
419 if (xprt->max_payload == 0)
420 goto out4;
421 xprt->max_payload <<= PAGE_SHIFT;
43e95988
CL
422 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
423 __func__, xprt->max_payload);
f58851e6
TT
424
425 if (!try_module_get(THIS_MODULE))
426 goto out4;
427
5231eb97
CL
428 dprintk("RPC: %s: %s:%s\n", __func__,
429 xprt->address_strings[RPC_DISPLAY_ADDR],
430 xprt->address_strings[RPC_DISPLAY_PORT]);
b4744e00 431 trace_xprtrdma_create(new_xprt);
f58851e6
TT
432 return xprt;
433
434out4:
03ac1a76 435 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
03ac1a76 436 rc = -ENODEV;
f58851e6 437out3:
7f1d5419 438 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
f58851e6
TT
439out2:
440 rpcrdma_ia_close(&new_xprt->rx_ia);
441out1:
b4744e00 442 trace_xprtrdma_destroy(new_xprt);
d461f1f2 443 xprt_rdma_free_addresses(xprt);
e204e621 444 xprt_free(xprt);
f58851e6
TT
445 return ERR_PTR(rc);
446}
447
bebd0318
CL
448/**
449 * xprt_rdma_close - Close down RDMA connection
450 * @xprt: generic transport to be closed
451 *
452 * Called during transport shutdown reconnect, or device
453 * removal. Caller holds the transport's write lock.
f58851e6
TT
454 */
455static void
456xprt_rdma_close(struct rpc_xprt *xprt)
457{
458 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
bebd0318
CL
459 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
460 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
461
462 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
f58851e6 463
bebd0318
CL
464 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
465 xprt_clear_connected(xprt);
466 rpcrdma_ia_remove(ia);
467 return;
468 }
469 if (ep->rep_connected == -ENODEV)
470 return;
471 if (ep->rep_connected > 0)
08ca0dce 472 xprt->reestablish_timeout = 0;
62da3b24 473 xprt_disconnect_done(xprt);
bebd0318 474 rpcrdma_ep_disconnect(ep, ia);
ef739b21
CL
475
476 /* Prepare @xprt for the next connection by reinitializing
477 * its credit grant to one (see RFC 8166, Section 3.3.3).
478 */
479 r_xprt->rx_buf.rb_credits = 1;
480 xprt->cwnd = RPC_CWNDSHIFT;
f58851e6
TT
481}
482
20035edf
CL
483/**
484 * xprt_rdma_set_port - update server port with rpcbind result
485 * @xprt: controlling RPC transport
486 * @port: new port value
487 *
488 * Transport connect status is unchanged.
489 */
f58851e6
TT
490static void
491xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
492{
20035edf
CL
493 struct sockaddr *sap = (struct sockaddr *)&xprt->addr;
494 char buf[8];
495
496 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
497 __func__, xprt,
498 xprt->address_strings[RPC_DISPLAY_ADDR],
499 xprt->address_strings[RPC_DISPLAY_PORT],
500 port);
501
502 rpc_set_port(sap, port);
f58851e6 503
20035edf
CL
504 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
505 snprintf(buf, sizeof(buf), "%u", port);
506 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
507
508 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
509 snprintf(buf, sizeof(buf), "%4hx", port);
510 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
f58851e6
TT
511}
512
33849792
CL
513/**
514 * xprt_rdma_timer - invoked when an RPC times out
515 * @xprt: controlling RPC transport
516 * @task: RPC task that timed out
517 *
518 * Invoked when the transport is still connected, but an RPC
519 * retransmit timeout occurs.
520 *
521 * Since RDMA connections don't have a keep-alive, forcibly
522 * disconnect and retry to connect. This drives full
523 * detection of the network path, and retransmissions of
524 * all pending RPCs.
525 */
526static void
527xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
528{
33849792
CL
529 xprt_force_disconnect(xprt);
530}
531
f58851e6 532static void
1b092092 533xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
f58851e6 534{
f58851e6
TT
535 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
536
0b9e7943
TM
537 if (r_xprt->rx_ep.rep_connected != 0) {
538 /* Reconnect */
5abefb86
CL
539 schedule_delayed_work(&r_xprt->rx_connect_worker,
540 xprt->reestablish_timeout);
0b9e7943 541 xprt->reestablish_timeout <<= 1;
bfaee096
CL
542 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
543 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
544 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
545 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
0b9e7943 546 } else {
5abefb86 547 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
0b9e7943 548 if (!RPC_IS_ASYNC(task))
5abefb86 549 flush_delayed_work(&r_xprt->rx_connect_worker);
f58851e6
TT
550 }
551}
552
48be539d
CL
553/**
554 * xprt_rdma_alloc_slot - allocate an rpc_rqst
555 * @xprt: controlling RPC transport
556 * @task: RPC task requesting a fresh rpc_rqst
557 *
558 * tk_status values:
559 * %0 if task->tk_rqstp points to a fresh rpc_rqst
560 * %-EAGAIN if no rpc_rqst is available; queued on backlog
561 */
562static void
563xprt_rdma_alloc_slot(struct rpc_xprt *xprt, struct rpc_task *task)
564{
edb41e61
CL
565 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
566 struct rpcrdma_req *req;
48be539d 567
edb41e61
CL
568 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
569 if (!req)
48be539d 570 goto out_sleep;
edb41e61 571 task->tk_rqstp = &req->rl_slot;
48be539d
CL
572 task->tk_status = 0;
573 return;
574
575out_sleep:
576 rpc_sleep_on(&xprt->backlog, task, NULL);
48be539d
CL
577 task->tk_status = -EAGAIN;
578}
579
580/**
581 * xprt_rdma_free_slot - release an rpc_rqst
582 * @xprt: controlling RPC transport
583 * @rqst: rpc_rqst to release
584 *
585 */
586static void
587xprt_rdma_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *rqst)
588{
589 memset(rqst, 0, sizeof(*rqst));
edb41e61 590 rpcrdma_buffer_put(rpcr_to_rdmar(rqst));
48be539d 591 rpc_wake_up_next(&xprt->backlog);
48be539d
CL
592}
593
9c40c49f
CL
594static bool
595rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
596 size_t size, gfp_t flags)
597{
598 struct rpcrdma_regbuf *rb;
9c40c49f
CL
599
600 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
601 return true;
602
655fec69 603 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
9c40c49f
CL
604 if (IS_ERR(rb))
605 return false;
606
13650c23 607 rpcrdma_free_regbuf(req->rl_sendbuf);
655fec69 608 r_xprt->rx_stats.hardway_register_count += size;
9c40c49f
CL
609 req->rl_sendbuf = rb;
610 return true;
611}
612
613/* The rq_rcv_buf is used only if a Reply chunk is necessary.
614 * The decision to use a Reply chunk is made later in
615 * rpcrdma_marshal_req. This buffer is registered at that time.
616 *
617 * Otherwise, the associated RPC Reply arrives in a separate
618 * Receive buffer, arbitrarily chosen by the HCA. The buffer
619 * allocated here for the RPC Reply is not utilized in that
620 * case. See rpcrdma_inline_fixup.
621 *
622 * A regbuf is used here to remember the buffer size.
623 */
624static bool
625rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
626 size_t size, gfp_t flags)
627{
628 struct rpcrdma_regbuf *rb;
629
630 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
631 return true;
632
13650c23 633 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
9c40c49f
CL
634 if (IS_ERR(rb))
635 return false;
636
13650c23 637 rpcrdma_free_regbuf(req->rl_recvbuf);
9c40c49f
CL
638 r_xprt->rx_stats.hardway_register_count += size;
639 req->rl_recvbuf = rb;
640 return true;
641}
642
5fe6eaa1
CL
643/**
644 * xprt_rdma_allocate - allocate transport resources for an RPC
645 * @task: RPC task
646 *
647 * Return values:
648 * 0: Success; rq_buffer points to RPC buffer to use
649 * ENOMEM: Out of memory, call again later
650 * EIO: A permanent error occurred, do not retry
651 *
f58851e6 652 * The RDMA allocate/free functions need the task structure as a place
9c40c49f
CL
653 * to hide the struct rpcrdma_req, which is necessary for the actual
654 * send/recv sequence.
0ca77dc3 655 *
9c40c49f
CL
656 * xprt_rdma_allocate provides buffers that are already mapped for
657 * DMA, and a local DMA lkey is provided for each.
f58851e6 658 */
5fe6eaa1
CL
659static int
660xprt_rdma_allocate(struct rpc_task *task)
f58851e6 661{
5fe6eaa1 662 struct rpc_rqst *rqst = task->tk_rqstp;
5fe6eaa1 663 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
edb41e61 664 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
a0a1d50c 665 gfp_t flags;
f58851e6 666
5d252f90 667 flags = RPCRDMA_DEF_GFP;
a0a1d50c
CL
668 if (RPC_IS_SWAPPER(task))
669 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
670
9c40c49f
CL
671 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
672 goto out_fail;
673 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
674 goto out_fail;
675
5fe6eaa1 676 rqst->rq_buffer = req->rl_sendbuf->rg_base;
9c40c49f 677 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
ae724676 678 trace_xprtrdma_allocate(task, req);
5fe6eaa1 679 return 0;
0ca77dc3 680
0ca77dc3 681out_fail:
ae724676 682 trace_xprtrdma_allocate(task, NULL);
5fe6eaa1 683 return -ENOMEM;
f58851e6
TT
684}
685
3435c74a
CL
686/**
687 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
688 * @task: RPC task
689 *
690 * Caller guarantees rqst->rq_buffer is non-NULL.
f58851e6
TT
691 */
692static void
3435c74a 693xprt_rdma_free(struct rpc_task *task)
f58851e6 694{
3435c74a
CL
695 struct rpc_rqst *rqst = task->tk_rqstp;
696 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
697 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
f58851e6 698
0ba6f370
CL
699 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
700 rpcrdma_release_rqst(r_xprt, req);
ae724676 701 trace_xprtrdma_rpc_done(task, req);
f58851e6
TT
702}
703
7a89f9c6
CL
704/**
705 * xprt_rdma_send_request - marshal and send an RPC request
706 * @task: RPC task with an RPC message in rq_snd_buf
707 *
bebd0318
CL
708 * Caller holds the transport's write lock.
709 *
cf73daf5
CL
710 * Returns:
711 * %0 if the RPC message has been sent
712 * %-ENOTCONN if the caller should reconnect and call again
9e679d5e
CL
713 * %-EAGAIN if the caller should call again
714 * %-ENOBUFS if the caller should call again after a delay
cf73daf5
CL
715 * %-EIO if a permanent error occurred and the request was not
716 * sent. Do not try to send this message again.
f58851e6 717 */
f58851e6
TT
718static int
719xprt_rdma_send_request(struct rpc_task *task)
720{
721 struct rpc_rqst *rqst = task->tk_rqstp;
a4f0835c 722 struct rpc_xprt *xprt = rqst->rq_xprt;
f58851e6
TT
723 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
724 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
6ab59945 725 int rc = 0;
f58851e6 726
cf73daf5
CL
727#if defined(CONFIG_SUNRPC_BACKCHANNEL)
728 if (unlikely(!rqst->rq_buffer))
729 return xprt_rdma_bc_send_reply(rqst);
730#endif /* CONFIG_SUNRPC_BACKCHANNEL */
731
bebd0318
CL
732 if (!xprt_connected(xprt))
733 goto drop_connection;
734
09e60641 735 rc = rpcrdma_marshal_req(r_xprt, rqst);
6ab59945
CL
736 if (rc < 0)
737 goto failed_marshal;
f58851e6 738
575448bd 739 /* Must suppress retransmit to maintain credits */
8a14793e 740 if (rqst->rq_connect_cookie == xprt->connect_cookie)
575448bd 741 goto drop_connection;
78215759 742 rqst->rq_xtime = ktime_get();
575448bd 743
42b9f5c5 744 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
575448bd
TT
745 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
746 goto drop_connection;
f58851e6 747
d60dbb20 748 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
f58851e6 749 rqst->rq_bytes_sent = 0;
fb14ae88
CL
750
751 /* An RPC with no reply will throw off credit accounting,
752 * so drop the connection to reset the credit grant.
753 */
754 if (!rpc_reply_expected(task))
755 goto drop_connection;
f58851e6 756 return 0;
575448bd 757
c93c6223 758failed_marshal:
7a89f9c6
CL
759 if (rc != -ENOTCONN)
760 return rc;
575448bd
TT
761drop_connection:
762 xprt_disconnect_done(xprt);
763 return -ENOTCONN; /* implies disconnect */
f58851e6
TT
764}
765
5d252f90 766void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
f58851e6
TT
767{
768 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
769 long idle_time = 0;
770
771 if (xprt_connected(xprt))
772 idle_time = (long)(jiffies - xprt->last_used) / HZ;
773
763f7e4e
CL
774 seq_puts(seq, "\txprt:\trdma ");
775 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
776 0, /* need a local port? */
777 xprt->stat.bind_count,
778 xprt->stat.connect_count,
8440a886 779 xprt->stat.connect_time / HZ,
763f7e4e
CL
780 idle_time,
781 xprt->stat.sends,
782 xprt->stat.recvs,
783 xprt->stat.bad_xids,
784 xprt->stat.req_u,
785 xprt->stat.bklog_u);
505bbe64 786 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
763f7e4e
CL
787 r_xprt->rx_stats.read_chunk_count,
788 r_xprt->rx_stats.write_chunk_count,
789 r_xprt->rx_stats.reply_chunk_count,
790 r_xprt->rx_stats.total_rdma_request,
791 r_xprt->rx_stats.total_rdma_reply,
792 r_xprt->rx_stats.pullup_copy_count,
793 r_xprt->rx_stats.fixup_copy_count,
794 r_xprt->rx_stats.hardway_register_count,
795 r_xprt->rx_stats.failed_marshal_count,
860477d1
CL
796 r_xprt->rx_stats.bad_reply_count,
797 r_xprt->rx_stats.nomsg_call_count);
01bb35c8 798 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
61da886b 799 r_xprt->rx_stats.mrs_recycled,
e2ac236c 800 r_xprt->rx_stats.mrs_orphaned,
c8b920bb 801 r_xprt->rx_stats.mrs_allocated,
ae72950a 802 r_xprt->rx_stats.local_inv_needed,
01bb35c8
CL
803 r_xprt->rx_stats.empty_sendctx_q,
804 r_xprt->rx_stats.reply_waits_for_send);
f58851e6
TT
805}
806
d67fa4d8
JL
807static int
808xprt_rdma_enable_swap(struct rpc_xprt *xprt)
809{
a0451788 810 return 0;
d67fa4d8
JL
811}
812
813static void
814xprt_rdma_disable_swap(struct rpc_xprt *xprt)
815{
816}
817
f58851e6
TT
818/*
819 * Plumbing for rpc transport switch and kernel module
820 */
821
d31ae254 822static const struct rpc_xprt_ops xprt_rdma_procs = {
e7ce710a 823 .reserve_xprt = xprt_reserve_xprt_cong,
f58851e6 824 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
48be539d
CL
825 .alloc_slot = xprt_rdma_alloc_slot,
826 .free_slot = xprt_rdma_free_slot,
f58851e6
TT
827 .release_request = xprt_release_rqst_cong, /* ditto */
828 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
33849792 829 .timer = xprt_rdma_timer,
f58851e6
TT
830 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
831 .set_port = xprt_rdma_set_port,
832 .connect = xprt_rdma_connect,
833 .buf_alloc = xprt_rdma_allocate,
834 .buf_free = xprt_rdma_free,
835 .send_request = xprt_rdma_send_request,
836 .close = xprt_rdma_close,
837 .destroy = xprt_rdma_destroy,
d67fa4d8
JL
838 .print_stats = xprt_rdma_print_stats,
839 .enable_swap = xprt_rdma_enable_swap,
840 .disable_swap = xprt_rdma_disable_swap,
f531a5db
CL
841 .inject_disconnect = xprt_rdma_inject_disconnect,
842#if defined(CONFIG_SUNRPC_BACKCHANNEL)
843 .bc_setup = xprt_rdma_bc_setup,
76566773 844 .bc_up = xprt_rdma_bc_up,
6b26cc8c 845 .bc_maxpayload = xprt_rdma_bc_maxpayload,
f531a5db
CL
846 .bc_free_rqst = xprt_rdma_bc_free_rqst,
847 .bc_destroy = xprt_rdma_bc_destroy,
848#endif
f58851e6
TT
849};
850
851static struct xprt_class xprt_rdma = {
852 .list = LIST_HEAD_INIT(xprt_rdma.list),
853 .name = "rdma",
854 .owner = THIS_MODULE,
855 .ident = XPRT_TRANSPORT_RDMA,
856 .setup = xprt_setup_rdma,
857};
858
ffe1f0df 859void xprt_rdma_cleanup(void)
f58851e6
TT
860{
861 int rc;
862
3a0799a9 863 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
f895b252 864#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
865 if (sunrpc_table_header) {
866 unregister_sysctl_table(sunrpc_table_header);
867 sunrpc_table_header = NULL;
868 }
869#endif
870 rc = xprt_unregister_transport(&xprt_rdma);
871 if (rc)
872 dprintk("RPC: %s: xprt_unregister returned %i\n",
873 __func__, rc);
951e721c 874
fe97b47c 875 rpcrdma_destroy_wq();
5d252f90
CL
876
877 rc = xprt_unregister_transport(&xprt_rdma_bc);
878 if (rc)
879 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
880 __func__, rc);
f58851e6
TT
881}
882
ffe1f0df 883int xprt_rdma_init(void)
f58851e6
TT
884{
885 int rc;
886
fe97b47c 887 rc = rpcrdma_alloc_wq();
505bbe64 888 if (rc)
fe97b47c 889 return rc;
fe97b47c 890
951e721c
CL
891 rc = xprt_register_transport(&xprt_rdma);
892 if (rc) {
fe97b47c 893 rpcrdma_destroy_wq();
951e721c
CL
894 return rc;
895 }
896
5d252f90
CL
897 rc = xprt_register_transport(&xprt_rdma_bc);
898 if (rc) {
899 xprt_unregister_transport(&xprt_rdma);
900 rpcrdma_destroy_wq();
5d252f90
CL
901 return rc;
902 }
903
3a0799a9 904 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
f58851e6 905
3a0799a9
CL
906 dprintk("Defaults:\n");
907 dprintk("\tSlots %d\n"
f58851e6
TT
908 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
909 xprt_rdma_slot_table_entries,
910 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
10492704 911 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
f58851e6 912
f895b252 913#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
f58851e6
TT
914 if (!sunrpc_table_header)
915 sunrpc_table_header = register_sysctl_table(sunrpc_table);
916#endif
917 return 0;
918}