blob: 6a57033a5846d03efc135e34592f5a6062ecb100 [file] [log] [blame]
Chuck Levera2268cf2018-05-04 15:34:32 -04001// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04002/*
Chuck Lever62b56a62017-10-30 16:22:14 -04003 * Copyright (c) 2014-2017 Oracle. All rights reserved.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04004 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040054#include <linux/seq_file.h>
Chuck Leverbd2abef2018-05-07 15:27:16 -040055#include <linux/smp.h>
56
Jeff Layton59766872013-02-04 12:50:00 -050057#include <linux/sunrpc/addr.h>
Chuck Leverbd2abef2018-05-07 15:27:16 -040058#include <linux/sunrpc/svc_rdma.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040059
60#include "xprt_rdma.h"
Chuck Leverb6e717cb2018-05-07 15:27:05 -040061#include <trace/events/rpcrdma.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040062
Jeff Laytonf895b252014-11-17 16:58:04 -050063#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040064# define RPCDBG_FACILITY RPCDBG_TRANS
65#endif
66
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040067/*
68 * tunables
69 */
70
71static unsigned int xprt_rdma_slot_table_entries = RPCRDMA_DEF_SLOT_TABLE;
Chuck Lever5d252f92016-01-07 14:50:10 -050072unsigned int xprt_rdma_max_inline_read = RPCRDMA_DEF_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040073static unsigned int xprt_rdma_max_inline_write = RPCRDMA_DEF_INLINE;
Chuck Leverce5b3712017-12-14 20:57:47 -050074unsigned int xprt_rdma_memreg_strategy = RPCRDMA_FRWR;
Chuck Leverfff09592017-04-11 13:22:54 -040075int xprt_rdma_pad_optimize;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040076
Jeff Laytonf895b252014-11-17 16:58:04 -050077#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040078
79static unsigned int min_slot_table_size = RPCRDMA_MIN_SLOT_TABLE;
80static unsigned int max_slot_table_size = RPCRDMA_MAX_SLOT_TABLE;
Chuck Lever29c55422016-05-02 14:40:48 -040081static unsigned int min_inline_size = RPCRDMA_MIN_INLINE;
82static unsigned int max_inline_size = RPCRDMA_MAX_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040083static 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;
Chuck Lever10492702017-12-14 20:56:42 -050087static unsigned int dummy;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040088
89static struct ctl_table_header *sunrpc_table_header;
90
Joe Perchesfe2c6332013-06-11 23:04:25 -070091static struct ctl_table xr_tunables_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040092 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040093 .procname = "rdma_slot_table_entries",
94 .data = &xprt_rdma_slot_table_entries,
95 .maxlen = sizeof(unsigned int),
96 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080097 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040098 .extra1 = &min_slot_table_size,
99 .extra2 = &max_slot_table_size
100 },
101 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400102 .procname = "rdma_max_inline_read",
103 .data = &xprt_rdma_max_inline_read,
104 .maxlen = sizeof(unsigned int),
105 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400106 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400107 .extra1 = &min_inline_size,
108 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400109 },
110 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400111 .procname = "rdma_max_inline_write",
112 .data = &xprt_rdma_max_inline_write,
113 .maxlen = sizeof(unsigned int),
114 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400115 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400116 .extra1 = &min_inline_size,
117 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400118 },
119 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400120 .procname = "rdma_inline_write_padding",
Chuck Lever10492702017-12-14 20:56:42 -0500121 .data = &dummy,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400122 .maxlen = sizeof(unsigned int),
123 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800124 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400125 .extra1 = &zero,
126 .extra2 = &max_padding,
127 },
128 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400129 .procname = "rdma_memreg_strategy",
130 .data = &xprt_rdma_memreg_strategy,
131 .maxlen = sizeof(unsigned int),
132 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800133 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400134 .extra1 = &min_memreg,
135 .extra2 = &max_memreg,
136 },
137 {
Tom Talpey9191ca32008-10-09 15:01:11 -0400138 .procname = "rdma_pad_optimize",
139 .data = &xprt_rdma_pad_optimize,
140 .maxlen = sizeof(unsigned int),
141 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800142 .proc_handler = proc_dointvec,
Tom Talpey9191ca32008-10-09 15:01:11 -0400143 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800144 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400145};
146
Joe Perchesfe2c6332013-06-11 23:04:25 -0700147static struct ctl_table sunrpc_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400148 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400149 .procname = "sunrpc",
150 .mode = 0555,
151 .child = xr_tunables_table
152 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800153 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400154};
155
156#endif
157
Chuck Leverd31ae252017-08-01 12:00:39 -0400158static const struct rpc_xprt_ops xprt_rdma_procs;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400159
160static void
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400161xprt_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
Chuck Lever5d252f92016-01-07 14:50:10 -0500184void
Chuck Lever5231eb92015-08-03 13:02:41 -0400185xprt_rdma_format_addresses(struct rpc_xprt *xprt, struct sockaddr *sap)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400186{
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400187 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 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400200
Chuck Leverc877b842009-08-09 15:09:36 -0400201 (void)rpc_ntop(sap, buf, sizeof(buf));
202 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400203
Joe Perches81160e662010-03-08 12:15:59 -0800204 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400205 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400206
Joe Perches81160e662010-03-08 12:15:59 -0800207 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400208 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400209
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400210 xprt->address_strings[RPC_DISPLAY_PROTO] = "rdma";
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400211}
212
Chuck Lever5d252f92016-01-07 14:50:10 -0500213void
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400214xprt_rdma_free_addresses(struct rpc_xprt *xprt)
215{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500216 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 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400226}
227
Chuck Lever31e62d22018-10-01 14:26:08 -0400228/**
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 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400236static void
237xprt_rdma_connect_worker(struct work_struct *work)
238{
Chuck Lever5abefb82015-01-21 11:02:37 -0500239 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;
Chuck Lever31e62d22018-10-01 14:26:08 -0400242 int rc;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400243
Trond Myklebustd19751e2012-09-11 17:21:25 -0400244 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400245 xprt_clear_connecting(xprt);
Chuck Lever31e62d22018-10-01 14:26:08 -0400246 if (r_xprt->rx_ep.rep_connected > 0) {
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;
251 xprt_wake_pending_tasks(xprt, -EAGAIN);
252 }
253 } else {
254 if (xprt_test_and_clear_connected(xprt))
255 xprt_wake_pending_tasks(xprt, rc);
256 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400257}
258
Chuck Leverf26c32f2018-10-01 14:26:40 -0400259/**
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 */
Chuck Lever4a068252015-05-11 14:02:25 -0400266static void
267xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
268{
Chuck Leverad091182018-10-01 14:26:45 -0400269 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever4a068252015-05-11 14:02:25 -0400270
Chuck Leverb4744e02017-12-20 16:31:29 -0500271 trace_xprtrdma_inject_dsc(r_xprt);
Chuck Lever4a068252015-05-11 14:02:25 -0400272 rdma_disconnect(r_xprt->rx_ia.ri_id);
273}
274
Chuck Leverf26c32f2018-10-01 14:26:40 -0400275/**
276 * xprt_rdma_destroy - Full tear down of transport
277 * @xprt: doomed transport context
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400278 *
Chuck Leverf26c32f2018-10-01 14:26:40 -0400279 * Caller guarantees there will be no more calls to us with
280 * this @xprt.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400281 */
282static void
283xprt_rdma_destroy(struct rpc_xprt *xprt)
284{
285 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400286
Chuck Leverb4744e02017-12-20 16:31:29 -0500287 trace_xprtrdma_destroy(r_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400288
Chuck Lever5abefb82015-01-21 11:02:37 -0500289 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400290
Chuck Lever7f1d5412014-05-28 10:33:16 -0400291 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
Steve Wise72c02172015-09-21 12:24:23 -0500292 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400293 rpcrdma_ia_close(&r_xprt->rx_ia);
294
295 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400296 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400297
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400298 module_put(THIS_MODULE);
299}
300
Trond Myklebust2881ae72007-12-20 16:03:54 -0500301static const struct rpc_timeout xprt_rdma_default_timeout = {
302 .to_initval = 60 * HZ,
303 .to_maxval = 60 * HZ,
304};
305
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400306/**
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;
Chuck Lever5231eb92015-08-03 13:02:41 -0400318 struct sockaddr *sap;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400319 int rc;
320
Chuck Leverddbb3472018-12-19 10:59:39 -0500321 if (args->addrlen > sizeof(xprt->addr))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400322 return ERR_PTR(-EBADF);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400323
Chuck Leveredb41e62018-05-04 15:35:09 -0400324 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt), 0, 0);
Chuck Leverddbb3472018-12-19 10:59:39 -0500325 if (!xprt)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400326 return ERR_PTR(-ENOMEM);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400327
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400328 /* 60 second timeout, no retries */
Trond Myklebustba7392b2007-12-20 16:03:55 -0500329 xprt->timeout = &xprt_rdma_default_timeout;
Chuck Leverbfaee092014-05-28 10:34:32 -0400330 xprt->bind_timeout = RPCRDMA_BIND_TO;
331 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
332 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400333
334 xprt->resvport = 0; /* privileged port not needed */
335 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400336 xprt->ops = &xprt_rdma_procs;
337
338 /*
339 * Set up RDMA-specific connect data.
340 */
Chuck Leverdd229ce2017-12-14 20:56:58 -0500341 sap = args->dstaddr;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400342
343 /* Ensure xprt->addr holds valid server TCP (not RDMA)
344 * address, for any side protocols which peek at it */
345 xprt->prot = IPPROTO_TCP;
346 xprt->addrlen = args->addrlen;
Chuck Lever5231eb92015-08-03 13:02:41 -0400347 memcpy(&xprt->addr, sap, xprt->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400348
Chuck Lever5231eb92015-08-03 13:02:41 -0400349 if (rpc_get_port(sap))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400350 xprt_set_bound(xprt);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500351 xprt_rdma_format_addresses(xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400352
Chuck Leveredb41e62018-05-04 15:35:09 -0400353 cdata.max_requests = xprt_rdma_slot_table_entries;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400354
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400355 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
356 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
357
358 cdata.inline_wsize = xprt_rdma_max_inline_write;
359 if (cdata.inline_wsize > cdata.wsize)
360 cdata.inline_wsize = cdata.wsize;
361
362 cdata.inline_rsize = xprt_rdma_max_inline_read;
363 if (cdata.inline_rsize > cdata.rsize)
364 cdata.inline_rsize = cdata.rsize;
365
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400366 /*
367 * Create new transport instance, which includes initialized
368 * o ia
369 * o endpoint
370 * o buffers
371 */
372
373 new_xprt = rpcx_to_rdmax(xprt);
374
Chuck Leverdd229ce2017-12-14 20:56:58 -0500375 rc = rpcrdma_ia_open(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400376 if (rc)
377 goto out1;
378
379 /*
380 * initialize and create ep
381 */
382 new_xprt->rx_data = cdata;
383 new_ep = &new_xprt->rx_ep;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400384
385 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
386 &new_xprt->rx_ia, &new_xprt->rx_data);
387 if (rc)
388 goto out2;
389
Chuck Leverac920d02015-01-21 11:03:44 -0500390 rc = rpcrdma_buffer_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400391 if (rc)
392 goto out3;
393
Chuck Lever5abefb82015-01-21 11:02:37 -0500394 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
395 xprt_rdma_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400396
Chuck Lever5f624122018-12-19 10:59:01 -0500397 xprt->max_payload = frwr_maxpages(new_xprt);
Chuck Lever1c9351e2015-03-30 14:34:30 -0400398 if (xprt->max_payload == 0)
399 goto out4;
400 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400401 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
402 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400403
404 if (!try_module_get(THIS_MODULE))
405 goto out4;
406
Chuck Lever5231eb92015-08-03 13:02:41 -0400407 dprintk("RPC: %s: %s:%s\n", __func__,
408 xprt->address_strings[RPC_DISPLAY_ADDR],
409 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Leverb4744e02017-12-20 16:31:29 -0500410 trace_xprtrdma_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400411 return xprt;
412
413out4:
Chuck Lever03ac1a72017-12-14 20:56:01 -0500414 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
Chuck Lever03ac1a72017-12-14 20:56:01 -0500415 rc = -ENODEV;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400416out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400417 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400418out2:
419 rpcrdma_ia_close(&new_xprt->rx_ia);
420out1:
Chuck Leverb4744e02017-12-20 16:31:29 -0500421 trace_xprtrdma_destroy(new_xprt);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500422 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400423 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400424 return ERR_PTR(rc);
425}
426
Chuck Leverbebd0312017-04-11 13:23:10 -0400427/**
Chuck Leverf26c32f2018-10-01 14:26:40 -0400428 * xprt_rdma_close - close a transport connection
429 * @xprt: transport context
Chuck Leverbebd0312017-04-11 13:23:10 -0400430 *
Chuck Leverf26c32f2018-10-01 14:26:40 -0400431 * Called during transport shutdown, reconnect, or device removal.
432 * Caller holds @xprt's send lock to prevent activity on this
433 * transport while the connection is torn down.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400434 */
Chuck Lever0c0829b2018-12-19 10:58:40 -0500435void xprt_rdma_close(struct rpc_xprt *xprt)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400436{
437 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400438 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
439 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400440
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500441 might_sleep();
442
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500443 /* Prevent marshaling and sending of new requests */
444 xprt_clear_connected(xprt);
445
Chuck Leverbebd0312017-04-11 13:23:10 -0400446 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
Chuck Leverbebd0312017-04-11 13:23:10 -0400447 rpcrdma_ia_remove(ia);
Chuck Lever0c0829b2018-12-19 10:58:40 -0500448 goto out;
Chuck Leverbebd0312017-04-11 13:23:10 -0400449 }
Chuck Lever0c0829b2018-12-19 10:58:40 -0500450
Chuck Leverbebd0312017-04-11 13:23:10 -0400451 if (ep->rep_connected == -ENODEV)
452 return;
453 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400454 xprt->reestablish_timeout = 0;
Chuck Leverbebd0312017-04-11 13:23:10 -0400455 rpcrdma_ep_disconnect(ep, ia);
Chuck Leveref739b22018-10-01 14:25:14 -0400456
457 /* Prepare @xprt for the next connection by reinitializing
458 * its credit grant to one (see RFC 8166, Section 3.3.3).
459 */
460 r_xprt->rx_buf.rb_credits = 1;
461 xprt->cwnd = RPC_CWNDSHIFT;
Chuck Lever0c0829b2018-12-19 10:58:40 -0500462
463out:
464 ++xprt->connect_cookie;
465 xprt_disconnect_done(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400466}
467
Chuck Lever20035ed2017-12-14 20:57:06 -0500468/**
469 * xprt_rdma_set_port - update server port with rpcbind result
470 * @xprt: controlling RPC transport
471 * @port: new port value
472 *
473 * Transport connect status is unchanged.
474 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400475static void
476xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
477{
Chuck Lever20035ed2017-12-14 20:57:06 -0500478 struct sockaddr *sap = (struct sockaddr *)&xprt->addr;
479 char buf[8];
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400480
Chuck Lever20035ed2017-12-14 20:57:06 -0500481 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
482 __func__, xprt,
483 xprt->address_strings[RPC_DISPLAY_ADDR],
484 xprt->address_strings[RPC_DISPLAY_PORT],
485 port);
486
487 rpc_set_port(sap, port);
488
489 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
490 snprintf(buf, sizeof(buf), "%u", port);
491 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
492
493 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
494 snprintf(buf, sizeof(buf), "%4hx", port);
495 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400496}
497
Chuck Lever33849792017-04-11 13:22:46 -0400498/**
499 * xprt_rdma_timer - invoked when an RPC times out
500 * @xprt: controlling RPC transport
501 * @task: RPC task that timed out
502 *
503 * Invoked when the transport is still connected, but an RPC
504 * retransmit timeout occurs.
505 *
506 * Since RDMA connections don't have a keep-alive, forcibly
507 * disconnect and retry to connect. This drives full
508 * detection of the network path, and retransmissions of
509 * all pending RPCs.
510 */
511static void
512xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
513{
Chuck Lever33849792017-04-11 13:22:46 -0400514 xprt_force_disconnect(xprt);
515}
516
Chuck Leverf26c32f2018-10-01 14:26:40 -0400517/**
518 * xprt_rdma_connect - try to establish a transport connection
519 * @xprt: transport state
520 * @task: RPC scheduler context
521 *
522 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400523static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500524xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400525{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400526 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
527
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400528 if (r_xprt->rx_ep.rep_connected != 0) {
529 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500530 schedule_delayed_work(&r_xprt->rx_connect_worker,
531 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400532 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400533 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
534 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
535 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
536 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400537 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500538 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400539 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500540 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400541 }
542}
543
Chuck Lever48be5392018-05-04 15:35:04 -0400544/**
545 * xprt_rdma_alloc_slot - allocate an rpc_rqst
546 * @xprt: controlling RPC transport
547 * @task: RPC task requesting a fresh rpc_rqst
548 *
549 * tk_status values:
550 * %0 if task->tk_rqstp points to a fresh rpc_rqst
551 * %-EAGAIN if no rpc_rqst is available; queued on backlog
552 */
553static void
554xprt_rdma_alloc_slot(struct rpc_xprt *xprt, struct rpc_task *task)
555{
Chuck Leveredb41e62018-05-04 15:35:09 -0400556 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
557 struct rpcrdma_req *req;
Chuck Lever48be5392018-05-04 15:35:04 -0400558
Chuck Leveredb41e62018-05-04 15:35:09 -0400559 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
560 if (!req)
Chuck Lever48be5392018-05-04 15:35:04 -0400561 goto out_sleep;
Chuck Leveredb41e62018-05-04 15:35:09 -0400562 task->tk_rqstp = &req->rl_slot;
Chuck Lever48be5392018-05-04 15:35:04 -0400563 task->tk_status = 0;
564 return;
565
566out_sleep:
567 rpc_sleep_on(&xprt->backlog, task, NULL);
Chuck Lever48be5392018-05-04 15:35:04 -0400568 task->tk_status = -EAGAIN;
569}
570
571/**
572 * xprt_rdma_free_slot - release an rpc_rqst
573 * @xprt: controlling RPC transport
574 * @rqst: rpc_rqst to release
575 *
576 */
577static void
578xprt_rdma_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *rqst)
579{
580 memset(rqst, 0, sizeof(*rqst));
Chuck Leveredb41e62018-05-04 15:35:09 -0400581 rpcrdma_buffer_put(rpcr_to_rdmar(rqst));
Chuck Lever48be5392018-05-04 15:35:04 -0400582 rpc_wake_up_next(&xprt->backlog);
Chuck Lever48be5392018-05-04 15:35:04 -0400583}
584
Chuck Lever9c40c492016-09-15 10:55:53 -0400585static bool
586rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
587 size_t size, gfp_t flags)
588{
589 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400590
591 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
592 return true;
593
Chuck Lever655fec62016-09-15 10:57:24 -0400594 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400595 if (IS_ERR(rb))
596 return false;
597
Chuck Lever13650c22016-09-15 10:56:26 -0400598 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400599 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400600 req->rl_sendbuf = rb;
601 return true;
602}
603
604/* The rq_rcv_buf is used only if a Reply chunk is necessary.
605 * The decision to use a Reply chunk is made later in
606 * rpcrdma_marshal_req. This buffer is registered at that time.
607 *
608 * Otherwise, the associated RPC Reply arrives in a separate
609 * Receive buffer, arbitrarily chosen by the HCA. The buffer
610 * allocated here for the RPC Reply is not utilized in that
611 * case. See rpcrdma_inline_fixup.
612 *
613 * A regbuf is used here to remember the buffer size.
614 */
615static bool
616rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
617 size_t size, gfp_t flags)
618{
619 struct rpcrdma_regbuf *rb;
620
621 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
622 return true;
623
Chuck Lever13650c22016-09-15 10:56:26 -0400624 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400625 if (IS_ERR(rb))
626 return false;
627
Chuck Lever13650c22016-09-15 10:56:26 -0400628 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400629 r_xprt->rx_stats.hardway_register_count += size;
630 req->rl_recvbuf = rb;
631 return true;
632}
633
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400634/**
635 * xprt_rdma_allocate - allocate transport resources for an RPC
636 * @task: RPC task
637 *
638 * Return values:
639 * 0: Success; rq_buffer points to RPC buffer to use
640 * ENOMEM: Out of memory, call again later
641 * EIO: A permanent error occurred, do not retry
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400642 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400643static int
644xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400645{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400646 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400647 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Leveredb41e62018-05-04 15:35:09 -0400648 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
Chuck Levera0a1d502015-01-26 17:11:47 -0500649 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400650
Chuck Lever5d252f92016-01-07 14:50:10 -0500651 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500652 if (RPC_IS_SWAPPER(task))
653 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
654
Chuck Lever9c40c492016-09-15 10:55:53 -0400655 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
656 goto out_fail;
657 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
658 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400659
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400660 rqst->rq_buffer = req->rl_sendbuf->rg_base;
Chuck Lever9c40c492016-09-15 10:55:53 -0400661 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
Chuck Leverae724672017-12-20 16:31:53 -0500662 trace_xprtrdma_allocate(task, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400663 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400664
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500665out_fail:
Chuck Leverae724672017-12-20 16:31:53 -0500666 trace_xprtrdma_allocate(task, NULL);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400667 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400668}
669
Chuck Lever3435c742016-09-15 10:55:29 -0400670/**
671 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
672 * @task: RPC task
673 *
674 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400675 */
676static void
Chuck Lever3435c742016-09-15 10:55:29 -0400677xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400678{
Chuck Lever3435c742016-09-15 10:55:29 -0400679 struct rpc_rqst *rqst = task->tk_rqstp;
680 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
681 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400682
Chuck Lever0ba6f372017-10-20 10:48:28 -0400683 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
684 rpcrdma_release_rqst(r_xprt, req);
Chuck Leverae724672017-12-20 16:31:53 -0500685 trace_xprtrdma_rpc_done(task, req);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400686}
687
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400688/**
689 * xprt_rdma_send_request - marshal and send an RPC request
Trond Myklebustadfa7142018-09-03 23:58:59 -0400690 * @rqst: RPC message in rq_snd_buf
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400691 *
Chuck Leverbebd0312017-04-11 13:23:10 -0400692 * Caller holds the transport's write lock.
693 *
Chuck Levercf73daf2017-12-14 20:57:31 -0500694 * Returns:
695 * %0 if the RPC message has been sent
696 * %-ENOTCONN if the caller should reconnect and call again
Chuck Lever9e679d52018-02-28 15:30:44 -0500697 * %-EAGAIN if the caller should call again
698 * %-ENOBUFS if the caller should call again after a delay
Chuck Lever6946f822018-12-19 10:58:45 -0500699 * %-EMSGSIZE if encoding ran out of buffer space. The request
700 * was not sent. Do not try to send this message again.
701 * %-EIO if an I/O error occurred. The request was not sent.
702 * Do not try to send this message again.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400703 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400704static int
Trond Myklebustadfa7142018-09-03 23:58:59 -0400705xprt_rdma_send_request(struct rpc_rqst *rqst)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400706{
Trond Myklebusta4f08352013-01-08 09:10:21 -0500707 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400708 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
709 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400710 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400711
Chuck Levercf73daf2017-12-14 20:57:31 -0500712#if defined(CONFIG_SUNRPC_BACKCHANNEL)
713 if (unlikely(!rqst->rq_buffer))
714 return xprt_rdma_bc_send_reply(rqst);
715#endif /* CONFIG_SUNRPC_BACKCHANNEL */
716
Chuck Leverbebd0312017-04-11 13:23:10 -0400717 if (!xprt_connected(xprt))
Chuck Lever0c0829b2018-12-19 10:58:40 -0500718 return -ENOTCONN;
Chuck Leverbebd0312017-04-11 13:23:10 -0400719
Trond Myklebust75891f52018-09-03 17:37:36 -0400720 if (!xprt_request_get_cong(xprt, rqst))
721 return -EBADSLT;
722
Chuck Lever09e60642017-08-10 12:47:12 -0400723 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400724 if (rc < 0)
725 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400726
Tom Talpey575448b2008-10-09 15:00:40 -0400727 /* Must suppress retransmit to maintain credits */
Chuck Lever8a147932018-02-28 15:30:38 -0500728 if (rqst->rq_connect_cookie == xprt->connect_cookie)
Tom Talpey575448b2008-10-09 15:00:40 -0400729 goto drop_connection;
Chuck Lever78215752018-03-05 15:13:07 -0500730 rqst->rq_xtime = ktime_get();
Tom Talpey575448b2008-10-09 15:00:40 -0400731
Chuck Lever42b9f5c2017-12-14 20:56:18 -0500732 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400733 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
734 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400735
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400736 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400737 rqst->rq_bytes_sent = 0;
Chuck Leverfb14ae82018-02-28 15:30:54 -0500738
739 /* An RPC with no reply will throw off credit accounting,
740 * so drop the connection to reset the credit grant.
741 */
Trond Myklebust50f484e2018-08-30 13:27:29 -0400742 if (!rpc_reply_expected(rqst->rq_task))
Chuck Leverfb14ae82018-02-28 15:30:54 -0500743 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400744 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400745
Chuck Leverc93c6222014-05-28 10:35:14 -0400746failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400747 if (rc != -ENOTCONN)
748 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400749drop_connection:
Chuck Lever0c0829b2018-12-19 10:58:40 -0500750 xprt_rdma_close(xprt);
751 return -ENOTCONN;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400752}
753
Chuck Lever5d252f92016-01-07 14:50:10 -0500754void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400755{
756 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
757 long idle_time = 0;
758
759 if (xprt_connected(xprt))
760 idle_time = (long)(jiffies - xprt->last_used) / HZ;
761
Chuck Lever763f7e42015-08-03 13:04:36 -0400762 seq_puts(seq, "\txprt:\trdma ");
763 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
764 0, /* need a local port? */
765 xprt->stat.bind_count,
766 xprt->stat.connect_count,
Chuck Lever8440a882018-10-01 14:25:41 -0400767 xprt->stat.connect_time / HZ,
Chuck Lever763f7e42015-08-03 13:04:36 -0400768 idle_time,
769 xprt->stat.sends,
770 xprt->stat.recvs,
771 xprt->stat.bad_xids,
772 xprt->stat.req_u,
773 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400774 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400775 r_xprt->rx_stats.read_chunk_count,
776 r_xprt->rx_stats.write_chunk_count,
777 r_xprt->rx_stats.reply_chunk_count,
778 r_xprt->rx_stats.total_rdma_request,
779 r_xprt->rx_stats.total_rdma_reply,
780 r_xprt->rx_stats.pullup_copy_count,
781 r_xprt->rx_stats.fixup_copy_count,
782 r_xprt->rx_stats.hardway_register_count,
783 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400784 r_xprt->rx_stats.bad_reply_count,
785 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400786 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever61da8862018-10-01 14:25:25 -0400787 r_xprt->rx_stats.mrs_recycled,
Chuck Levere2ac2362016-06-29 13:54:00 -0400788 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400789 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400790 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400791 r_xprt->rx_stats.empty_sendctx_q,
792 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400793}
794
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400795static int
796xprt_rdma_enable_swap(struct rpc_xprt *xprt)
797{
Chuck Levera0451782015-10-24 17:26:29 -0400798 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400799}
800
801static void
802xprt_rdma_disable_swap(struct rpc_xprt *xprt)
803{
804}
805
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400806/*
807 * Plumbing for rpc transport switch and kernel module
808 */
809
Chuck Leverd31ae252017-08-01 12:00:39 -0400810static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400811 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400812 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Chuck Lever48be5392018-05-04 15:35:04 -0400813 .alloc_slot = xprt_rdma_alloc_slot,
814 .free_slot = xprt_rdma_free_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400815 .release_request = xprt_release_rqst_cong, /* ditto */
816 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400817 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400818 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
819 .set_port = xprt_rdma_set_port,
820 .connect = xprt_rdma_connect,
821 .buf_alloc = xprt_rdma_allocate,
822 .buf_free = xprt_rdma_free,
823 .send_request = xprt_rdma_send_request,
824 .close = xprt_rdma_close,
825 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400826 .print_stats = xprt_rdma_print_stats,
827 .enable_swap = xprt_rdma_enable_swap,
828 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400829 .inject_disconnect = xprt_rdma_inject_disconnect,
830#if defined(CONFIG_SUNRPC_BACKCHANNEL)
831 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400832 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400833 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400834 .bc_free_rqst = xprt_rdma_bc_free_rqst,
835 .bc_destroy = xprt_rdma_bc_destroy,
836#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400837};
838
839static struct xprt_class xprt_rdma = {
840 .list = LIST_HEAD_INIT(xprt_rdma.list),
841 .name = "rdma",
842 .owner = THIS_MODULE,
843 .ident = XPRT_TRANSPORT_RDMA,
844 .setup = xprt_setup_rdma,
845};
846
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400847void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400848{
Jeff Laytonf895b252014-11-17 16:58:04 -0500849#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400850 if (sunrpc_table_header) {
851 unregister_sysctl_table(sunrpc_table_header);
852 sunrpc_table_header = NULL;
853 }
854#endif
Chuck Lever951e7212015-05-26 11:52:25 -0400855
Chuck Leverddbb3472018-12-19 10:59:39 -0500856 xprt_unregister_transport(&xprt_rdma);
857 xprt_unregister_transport(&xprt_rdma_bc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400858}
859
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400860int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400861{
862 int rc;
863
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500864 rc = xprt_register_transport(&xprt_rdma);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400865 if (rc)
866 return rc;
867
Chuck Lever5d252f92016-01-07 14:50:10 -0500868 rc = xprt_register_transport(&xprt_rdma_bc);
869 if (rc) {
870 xprt_unregister_transport(&xprt_rdma);
Chuck Lever5d252f92016-01-07 14:50:10 -0500871 return rc;
872 }
873
Jeff Laytonf895b252014-11-17 16:58:04 -0500874#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400875 if (!sunrpc_table_header)
876 sunrpc_table_header = register_sysctl_table(sunrpc_table);
877#endif
878 return 0;
879}