blob: 79a55fc540a6cd9cc8f885e215ffb6280dbf47c3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Chuck Leverf531a5d2015-10-24 17:27:43 -04002/*
3 * Copyright (c) 2015 Oracle. All rights reserved.
4 *
5 * Support for backward direction RPCs on RPC/RDMA.
6 */
7
8#include <linux/module.h>
Chuck Lever63cae472015-10-24 17:28:08 -04009#include <linux/sunrpc/xprt.h>
10#include <linux/sunrpc/svc.h>
Chuck Lever76566772015-10-24 17:28:32 -040011#include <linux/sunrpc/svc_xprt.h>
Chuck Leverbd2abef2018-05-07 15:27:16 -040012#include <linux/sunrpc/svc_rdma.h>
Chuck Leverf531a5d2015-10-24 17:27:43 -040013
14#include "xprt_rdma.h"
Chuck Leverb6e717cb2018-05-07 15:27:05 -040015#include <trace/events/rpcrdma.h>
Chuck Leverf531a5d2015-10-24 17:27:43 -040016
17#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
18# define RPCDBG_FACILITY RPCDBG_TRANS
19#endif
20
Chuck Leverc8bbe0c2015-12-16 17:22:23 -050021#undef RPCRDMA_BACKCHANNEL_DEBUG
Chuck Lever63cae472015-10-24 17:28:08 -040022
Chuck Leverf531a5d2015-10-24 17:27:43 -040023static void rpcrdma_bc_free_rqst(struct rpcrdma_xprt *r_xprt,
24 struct rpc_rqst *rqst)
25{
26 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
27 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
28
29 spin_lock(&buf->rb_reqslock);
30 list_del(&req->rl_all);
31 spin_unlock(&buf->rb_reqslock);
32
Chuck Lever13650c22016-09-15 10:56:26 -040033 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -040034}
35
Chuck Leveredb41e62018-05-04 15:35:09 -040036static int rpcrdma_bc_setup_reqs(struct rpcrdma_xprt *r_xprt,
37 unsigned int count)
Chuck Leverf531a5d2015-10-24 17:27:43 -040038{
Chuck Leveredb41e62018-05-04 15:35:09 -040039 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
40 struct rpc_rqst *rqst;
41 unsigned int i;
Chuck Leverf531a5d2015-10-24 17:27:43 -040042
Chuck Leveredb41e62018-05-04 15:35:09 -040043 for (i = 0; i < (count << 1); i++) {
44 struct rpcrdma_regbuf *rb;
45 struct rpcrdma_req *req;
46 size_t size;
Chuck Leverf531a5d2015-10-24 17:27:43 -040047
Chuck Leveredb41e62018-05-04 15:35:09 -040048 req = rpcrdma_create_req(r_xprt);
49 if (IS_ERR(req))
50 return PTR_ERR(req);
51 rqst = &req->rl_slot;
52
53 rqst->rq_xprt = xprt;
Chuck Leveredb41e62018-05-04 15:35:09 -040054 INIT_LIST_HEAD(&rqst->rq_bc_list);
55 __set_bit(RPC_BC_PA_IN_USE, &rqst->rq_bc_pa_state);
Chuck Leverf7d46682018-10-01 14:26:24 -040056 spin_lock(&xprt->bc_pa_lock);
Chuck Leveredb41e62018-05-04 15:35:09 -040057 list_add(&rqst->rq_bc_pa_list, &xprt->bc_pa_list);
Chuck Leverf7d46682018-10-01 14:26:24 -040058 spin_unlock(&xprt->bc_pa_lock);
Chuck Leveredb41e62018-05-04 15:35:09 -040059
60 size = r_xprt->rx_data.inline_rsize;
61 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, GFP_KERNEL);
62 if (IS_ERR(rb))
63 goto out_fail;
64 req->rl_sendbuf = rb;
65 xdr_buf_init(&rqst->rq_snd_buf, rb->rg_base,
66 min_t(size_t, size, PAGE_SIZE));
67 }
Chuck Leverf531a5d2015-10-24 17:27:43 -040068 return 0;
69
70out_fail:
71 rpcrdma_bc_free_rqst(r_xprt, rqst);
72 return -ENOMEM;
73}
74
Chuck Leverf531a5d2015-10-24 17:27:43 -040075/**
76 * xprt_rdma_bc_setup - Pre-allocate resources for handling backchannel requests
77 * @xprt: transport associated with these backchannel resources
78 * @reqs: number of concurrent incoming requests to expect
79 *
80 * Returns 0 on success; otherwise a negative errno
81 */
82int xprt_rdma_bc_setup(struct rpc_xprt *xprt, unsigned int reqs)
83{
84 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverf531a5d2015-10-24 17:27:43 -040085 int rc;
86
87 /* The backchannel reply path returns each rpc_rqst to the
88 * bc_pa_list _after_ the reply is sent. If the server is
89 * faster than the client, it can send another backward
90 * direction request before the rpc_rqst is returned to the
91 * list. The client rejects the request in this case.
92 *
93 * Twice as many rpc_rqsts are prepared to ensure there is
94 * always an rpc_rqst available as soon as a reply is sent.
95 */
Chuck Lever124fa172015-10-24 17:27:51 -040096 if (reqs > RPCRDMA_BACKWARD_WRS >> 1)
97 goto out_err;
98
Chuck Leveredb41e62018-05-04 15:35:09 -040099 rc = rpcrdma_bc_setup_reqs(r_xprt, reqs);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400100 if (rc)
101 goto out_free;
102
Chuck Leveredb41e62018-05-04 15:35:09 -0400103 r_xprt->rx_buf.rb_bc_srv_max_requests = reqs;
Chuck Leverf531a5d2015-10-24 17:27:43 -0400104 request_module("svcrdma");
Chuck Leverfc1eb802017-12-20 16:31:37 -0500105 trace_xprtrdma_cb_setup(r_xprt, reqs);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400106 return 0;
107
108out_free:
109 xprt_rdma_bc_destroy(xprt, reqs);
110
Chuck Lever124fa172015-10-24 17:27:51 -0400111out_err:
Chuck Leverf531a5d2015-10-24 17:27:43 -0400112 pr_err("RPC: %s: setup backchannel transport failed\n", __func__);
113 return -ENOMEM;
114}
115
116/**
Chuck Lever76566772015-10-24 17:28:32 -0400117 * xprt_rdma_bc_up - Create transport endpoint for backchannel service
118 * @serv: server endpoint
119 * @net: network namespace
120 *
121 * The "xprt" is an implied argument: it supplies the name of the
122 * backchannel transport class.
123 *
124 * Returns zero on success, negative errno on failure
125 */
126int xprt_rdma_bc_up(struct svc_serv *serv, struct net *net)
127{
128 int ret;
129
130 ret = svc_create_xprt(serv, "rdma-bc", net, PF_INET, 0, 0);
131 if (ret < 0)
132 return ret;
133 return 0;
134}
135
136/**
Chuck Lever6b26cc82016-05-02 14:40:40 -0400137 * xprt_rdma_bc_maxpayload - Return maximum backchannel message size
138 * @xprt: transport
139 *
140 * Returns maximum size, in bytes, of a backchannel message
141 */
142size_t xprt_rdma_bc_maxpayload(struct rpc_xprt *xprt)
143{
144 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
145 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
146 size_t maxmsg;
147
148 maxmsg = min_t(unsigned int, cdata->inline_rsize, cdata->inline_wsize);
Chuck Lever62aee0e2016-11-29 10:52:08 -0500149 maxmsg = min_t(unsigned int, maxmsg, PAGE_SIZE);
Chuck Lever6b26cc82016-05-02 14:40:40 -0400150 return maxmsg - RPCRDMA_HDRLEN_MIN;
151}
152
Chuck Levercf73daf2017-12-14 20:57:31 -0500153static int rpcrdma_bc_marshal_reply(struct rpc_rqst *rqst)
Chuck Lever83128a62015-10-24 17:27:59 -0400154{
Chuck Lever7ec910e2017-08-10 12:47:44 -0400155 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever83128a62015-10-24 17:27:59 -0400156 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
Chuck Lever7ec910e2017-08-10 12:47:44 -0400157 __be32 *p;
Chuck Lever83128a62015-10-24 17:27:59 -0400158
Chuck Lever7ec910e2017-08-10 12:47:44 -0400159 rpcrdma_set_xdrlen(&req->rl_hdrbuf, 0);
160 xdr_init_encode(&req->rl_stream, &req->rl_hdrbuf,
161 req->rl_rdmabuf->rg_base);
162
163 p = xdr_reserve_space(&req->rl_stream, 28);
164 if (unlikely(!p))
165 return -EIO;
166 *p++ = rqst->rq_xid;
167 *p++ = rpcrdma_version;
168 *p++ = cpu_to_be32(r_xprt->rx_buf.rb_bc_srv_max_requests);
169 *p++ = rdma_msg;
170 *p++ = xdr_zero;
171 *p++ = xdr_zero;
172 *p = xdr_zero;
Chuck Lever83128a62015-10-24 17:27:59 -0400173
Chuck Lever857f9ac2017-10-20 10:47:55 -0400174 if (rpcrdma_prepare_send_sges(r_xprt, req, RPCRDMA_HDRLEN_MIN,
175 &rqst->rq_snd_buf, rpcrdma_noch))
Chuck Lever655fec62016-09-15 10:57:24 -0400176 return -EIO;
Chuck Leverfc1eb802017-12-20 16:31:37 -0500177
178 trace_xprtrdma_cb_reply(rqst);
Chuck Lever83128a62015-10-24 17:27:59 -0400179 return 0;
180}
181
182/**
Chuck Levercf73daf2017-12-14 20:57:31 -0500183 * xprt_rdma_bc_send_reply - marshal and send a backchannel reply
184 * @rqst: RPC rqst with a backchannel RPC reply in rq_snd_buf
185 *
186 * Caller holds the transport's write lock.
187 *
188 * Returns:
189 * %0 if the RPC message has been sent
190 * %-ENOTCONN if the caller should reconnect and call again
191 * %-EIO if a permanent error occurred and the request was not
192 * sent. Do not try to send this message again.
193 */
194int xprt_rdma_bc_send_reply(struct rpc_rqst *rqst)
195{
Chuck Lever0c0829b2018-12-19 10:58:40 -0500196 struct rpc_xprt *xprt = rqst->rq_xprt;
197 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Levercf73daf2017-12-14 20:57:31 -0500198 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
199 int rc;
200
Chuck Lever0c0829b2018-12-19 10:58:40 -0500201 if (!xprt_connected(xprt))
202 return -ENOTCONN;
Chuck Levercf73daf2017-12-14 20:57:31 -0500203
Chuck Lever0c0829b2018-12-19 10:58:40 -0500204 if (!xprt_request_get_cong(xprt, rqst))
Trond Myklebust75891f52018-09-03 17:37:36 -0400205 return -EBADSLT;
206
Chuck Levercf73daf2017-12-14 20:57:31 -0500207 rc = rpcrdma_bc_marshal_reply(rqst);
208 if (rc < 0)
209 goto failed_marshal;
210
211 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
212 goto drop_connection;
213 return 0;
214
215failed_marshal:
216 if (rc != -ENOTCONN)
217 return rc;
218drop_connection:
Chuck Lever0c0829b2018-12-19 10:58:40 -0500219 xprt_rdma_close(xprt);
Chuck Levercf73daf2017-12-14 20:57:31 -0500220 return -ENOTCONN;
221}
222
223/**
Chuck Leverf531a5d2015-10-24 17:27:43 -0400224 * xprt_rdma_bc_destroy - Release resources for handling backchannel requests
225 * @xprt: transport associated with these backchannel resources
226 * @reqs: number of incoming requests to destroy; ignored
227 */
228void xprt_rdma_bc_destroy(struct rpc_xprt *xprt, unsigned int reqs)
229{
230 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
231 struct rpc_rqst *rqst, *tmp;
232
Chuck Leverf7d46682018-10-01 14:26:24 -0400233 spin_lock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400234 list_for_each_entry_safe(rqst, tmp, &xprt->bc_pa_list, rq_bc_pa_list) {
235 list_del(&rqst->rq_bc_pa_list);
Chuck Leverf7d46682018-10-01 14:26:24 -0400236 spin_unlock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400237
238 rpcrdma_bc_free_rqst(r_xprt, rqst);
239
Chuck Leverf7d46682018-10-01 14:26:24 -0400240 spin_lock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400241 }
Chuck Leverf7d46682018-10-01 14:26:24 -0400242 spin_unlock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400243}
244
245/**
246 * xprt_rdma_bc_free_rqst - Release a backchannel rqst
247 * @rqst: request to release
248 */
249void xprt_rdma_bc_free_rqst(struct rpc_rqst *rqst)
250{
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400251 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400252 struct rpc_xprt *xprt = rqst->rq_xprt;
253
Chuck Leverc8bbe0c2015-12-16 17:22:23 -0500254 dprintk("RPC: %s: freeing rqst %p (req %p)\n",
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400255 __func__, rqst, req);
256
257 rpcrdma_recv_buffer_put(req->rl_reply);
258 req->rl_reply = NULL;
Chuck Leverc8bbe0c2015-12-16 17:22:23 -0500259
Chuck Leverf7d46682018-10-01 14:26:24 -0400260 spin_lock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400261 list_add_tail(&rqst->rq_bc_pa_list, &xprt->bc_pa_list);
Chuck Leverf7d46682018-10-01 14:26:24 -0400262 spin_unlock(&xprt->bc_pa_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400263}
Chuck Lever63cae472015-10-24 17:28:08 -0400264
265/**
266 * rpcrdma_bc_receive_call - Handle a backward direction call
Chuck Lever9ab6d892018-01-03 15:38:17 -0500267 * @r_xprt: transport receiving the call
Chuck Lever63cae472015-10-24 17:28:08 -0400268 * @rep: receive buffer containing the call
269 *
Chuck Lever63cae472015-10-24 17:28:08 -0400270 * Operational assumptions:
271 * o Backchannel credits are ignored, just as the NFS server
272 * forechannel currently does
273 * o The ULP manages a replay cache (eg, NFSv4.1 sessions).
274 * No replay detection is done at the transport level
275 */
276void rpcrdma_bc_receive_call(struct rpcrdma_xprt *r_xprt,
277 struct rpcrdma_rep *rep)
278{
279 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
Chuck Lever63cae472015-10-24 17:28:08 -0400280 struct svc_serv *bc_serv;
281 struct rpcrdma_req *req;
282 struct rpc_rqst *rqst;
283 struct xdr_buf *buf;
284 size_t size;
285 __be32 *p;
286
Chuck Lever41c8f702017-08-03 14:30:11 -0400287 p = xdr_inline_decode(&rep->rr_stream, 0);
288 size = xdr_stream_remaining(&rep->rr_stream);
289
Chuck Lever63cae472015-10-24 17:28:08 -0400290#ifdef RPCRDMA_BACKCHANNEL_DEBUG
291 pr_info("RPC: %s: callback XID %08x, length=%u\n",
Chuck Lever41c8f702017-08-03 14:30:11 -0400292 __func__, be32_to_cpup(p), size);
293 pr_info("RPC: %s: %*ph\n", __func__, size, p);
Chuck Lever63cae472015-10-24 17:28:08 -0400294#endif
295
Chuck Lever63cae472015-10-24 17:28:08 -0400296 /* Grab a free bc rqst */
297 spin_lock(&xprt->bc_pa_lock);
298 if (list_empty(&xprt->bc_pa_list)) {
299 spin_unlock(&xprt->bc_pa_lock);
300 goto out_overflow;
301 }
302 rqst = list_first_entry(&xprt->bc_pa_list,
303 struct rpc_rqst, rq_bc_pa_list);
304 list_del(&rqst->rq_bc_pa_list);
305 spin_unlock(&xprt->bc_pa_lock);
Chuck Lever63cae472015-10-24 17:28:08 -0400306
307 /* Prepare rqst */
308 rqst->rq_reply_bytes_recvd = 0;
309 rqst->rq_bytes_sent = 0;
Chuck Lever41c8f702017-08-03 14:30:11 -0400310 rqst->rq_xid = *p;
Chuck Lever9f74660b2016-02-15 10:23:59 -0500311
312 rqst->rq_private_buf.len = size;
Chuck Lever63cae472015-10-24 17:28:08 -0400313
314 buf = &rqst->rq_rcv_buf;
315 memset(buf, 0, sizeof(*buf));
316 buf->head[0].iov_base = p;
317 buf->head[0].iov_len = size;
318 buf->len = size;
319
320 /* The receive buffer has to be hooked to the rpcrdma_req
Chuck Lever41c8f702017-08-03 14:30:11 -0400321 * so that it is not released while the req is pointing
322 * to its buffer, and so that it can be reposted after
323 * the Upper Layer is done decoding it.
Chuck Lever63cae472015-10-24 17:28:08 -0400324 */
325 req = rpcr_to_rdmar(rqst);
Chuck Lever63cae472015-10-24 17:28:08 -0400326 req->rl_reply = rep;
Chuck Leverfc1eb802017-12-20 16:31:37 -0500327 trace_xprtrdma_cb_call(rqst);
Chuck Lever63cae472015-10-24 17:28:08 -0400328
Chuck Lever63cae472015-10-24 17:28:08 -0400329 /* Queue rqst for ULP's callback service */
330 bc_serv = xprt->bc_serv;
331 spin_lock(&bc_serv->sv_cb_lock);
332 list_add(&rqst->rq_bc_list, &bc_serv->sv_cb_list);
333 spin_unlock(&bc_serv->sv_cb_lock);
334
335 wake_up(&bc_serv->sv_cb_waitq);
336
337 r_xprt->rx_stats.bcall_count++;
338 return;
339
340out_overflow:
341 pr_warn("RPC/RDMA backchannel overflow\n");
Chuck Lever0c0829b2018-12-19 10:58:40 -0500342 xprt_force_disconnect(xprt);
Chuck Lever63cae472015-10-24 17:28:08 -0400343 /* This receive buffer gets reposted automatically
344 * when the connection is re-established.
345 */
346 return;
Chuck Lever63cae472015-10-24 17:28:08 -0400347}