blob: 40f48c62f9b1a310ab3a8fe9c8c7eb7463a48f70 [file] [log] [blame]
Chuck Leverf531a5d2015-10-24 17:27:43 -04001/*
2 * Copyright (c) 2015 Oracle. All rights reserved.
3 *
4 * Support for backward direction RPCs on RPC/RDMA.
5 */
6
7#include <linux/module.h>
Chuck Lever63cae472015-10-24 17:28:08 -04008#include <linux/sunrpc/xprt.h>
9#include <linux/sunrpc/svc.h>
Chuck Lever76566772015-10-24 17:28:32 -040010#include <linux/sunrpc/svc_xprt.h>
Chuck Leverf531a5d2015-10-24 17:27:43 -040011
12#include "xprt_rdma.h"
13
14#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
15# define RPCDBG_FACILITY RPCDBG_TRANS
16#endif
17
Chuck Lever63cae472015-10-24 17:28:08 -040018#define RPCRDMA_BACKCHANNEL_DEBUG
19
Chuck Leverf531a5d2015-10-24 17:27:43 -040020static void rpcrdma_bc_free_rqst(struct rpcrdma_xprt *r_xprt,
21 struct rpc_rqst *rqst)
22{
23 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
24 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
25
26 spin_lock(&buf->rb_reqslock);
27 list_del(&req->rl_all);
28 spin_unlock(&buf->rb_reqslock);
29
30 rpcrdma_destroy_req(&r_xprt->rx_ia, req);
31
32 kfree(rqst);
33}
34
35static int rpcrdma_bc_setup_rqst(struct rpcrdma_xprt *r_xprt,
36 struct rpc_rqst *rqst)
37{
38 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
39 struct rpcrdma_regbuf *rb;
40 struct rpcrdma_req *req;
41 struct xdr_buf *buf;
42 size_t size;
43
44 req = rpcrdma_create_req(r_xprt);
Dan Carpenterabfb6892015-11-05 11:39:52 +030045 if (IS_ERR(req))
46 return PTR_ERR(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -040047 req->rl_backchannel = true;
48
49 size = RPCRDMA_INLINE_WRITE_THRESHOLD(rqst);
50 rb = rpcrdma_alloc_regbuf(ia, size, GFP_KERNEL);
51 if (IS_ERR(rb))
52 goto out_fail;
53 req->rl_rdmabuf = rb;
54
55 size += RPCRDMA_INLINE_READ_THRESHOLD(rqst);
56 rb = rpcrdma_alloc_regbuf(ia, size, GFP_KERNEL);
57 if (IS_ERR(rb))
58 goto out_fail;
59 rb->rg_owner = req;
60 req->rl_sendbuf = rb;
61 /* so that rpcr_to_rdmar works when receiving a request */
62 rqst->rq_buffer = (void *)req->rl_sendbuf->rg_base;
63
64 buf = &rqst->rq_snd_buf;
65 buf->head[0].iov_base = rqst->rq_buffer;
66 buf->head[0].iov_len = 0;
67 buf->tail[0].iov_base = NULL;
68 buf->tail[0].iov_len = 0;
69 buf->page_len = 0;
70 buf->len = 0;
71 buf->buflen = size;
72
73 return 0;
74
75out_fail:
76 rpcrdma_bc_free_rqst(r_xprt, rqst);
77 return -ENOMEM;
78}
79
80/* Allocate and add receive buffers to the rpcrdma_buffer's
81 * existing list of rep's. These are released when the
82 * transport is destroyed.
83 */
84static int rpcrdma_bc_setup_reps(struct rpcrdma_xprt *r_xprt,
85 unsigned int count)
86{
Chuck Leverf531a5d2015-10-24 17:27:43 -040087 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -040088 int rc = 0;
89
90 while (count--) {
91 rep = rpcrdma_create_rep(r_xprt);
92 if (IS_ERR(rep)) {
93 pr_err("RPC: %s: reply buffer alloc failed\n",
94 __func__);
95 rc = PTR_ERR(rep);
96 break;
97 }
98
Chuck Lever9b066882015-12-16 17:22:06 -050099 rpcrdma_recv_buffer_put(rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400100 }
101
102 return rc;
103}
104
105/**
106 * xprt_rdma_bc_setup - Pre-allocate resources for handling backchannel requests
107 * @xprt: transport associated with these backchannel resources
108 * @reqs: number of concurrent incoming requests to expect
109 *
110 * Returns 0 on success; otherwise a negative errno
111 */
112int xprt_rdma_bc_setup(struct rpc_xprt *xprt, unsigned int reqs)
113{
114 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
115 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
116 struct rpc_rqst *rqst;
117 unsigned int i;
118 int rc;
119
120 /* The backchannel reply path returns each rpc_rqst to the
121 * bc_pa_list _after_ the reply is sent. If the server is
122 * faster than the client, it can send another backward
123 * direction request before the rpc_rqst is returned to the
124 * list. The client rejects the request in this case.
125 *
126 * Twice as many rpc_rqsts are prepared to ensure there is
127 * always an rpc_rqst available as soon as a reply is sent.
128 */
Chuck Lever124fa172015-10-24 17:27:51 -0400129 if (reqs > RPCRDMA_BACKWARD_WRS >> 1)
130 goto out_err;
131
Chuck Leverf531a5d2015-10-24 17:27:43 -0400132 for (i = 0; i < (reqs << 1); i++) {
133 rqst = kzalloc(sizeof(*rqst), GFP_KERNEL);
134 if (!rqst) {
135 pr_err("RPC: %s: Failed to create bc rpc_rqst\n",
136 __func__);
137 goto out_free;
138 }
139
140 rqst->rq_xprt = &r_xprt->rx_xprt;
141 INIT_LIST_HEAD(&rqst->rq_list);
142 INIT_LIST_HEAD(&rqst->rq_bc_list);
143
144 if (rpcrdma_bc_setup_rqst(r_xprt, rqst))
145 goto out_free;
146
147 spin_lock_bh(&xprt->bc_pa_lock);
148 list_add(&rqst->rq_bc_pa_list, &xprt->bc_pa_list);
149 spin_unlock_bh(&xprt->bc_pa_lock);
150 }
151
152 rc = rpcrdma_bc_setup_reps(r_xprt, reqs);
153 if (rc)
154 goto out_free;
155
156 rc = rpcrdma_ep_post_extra_recv(r_xprt, reqs);
157 if (rc)
158 goto out_free;
159
160 buffer->rb_bc_srv_max_requests = reqs;
161 request_module("svcrdma");
162
163 return 0;
164
165out_free:
166 xprt_rdma_bc_destroy(xprt, reqs);
167
Chuck Lever124fa172015-10-24 17:27:51 -0400168out_err:
Chuck Leverf531a5d2015-10-24 17:27:43 -0400169 pr_err("RPC: %s: setup backchannel transport failed\n", __func__);
170 return -ENOMEM;
171}
172
173/**
Chuck Lever76566772015-10-24 17:28:32 -0400174 * xprt_rdma_bc_up - Create transport endpoint for backchannel service
175 * @serv: server endpoint
176 * @net: network namespace
177 *
178 * The "xprt" is an implied argument: it supplies the name of the
179 * backchannel transport class.
180 *
181 * Returns zero on success, negative errno on failure
182 */
183int xprt_rdma_bc_up(struct svc_serv *serv, struct net *net)
184{
185 int ret;
186
187 ret = svc_create_xprt(serv, "rdma-bc", net, PF_INET, 0, 0);
188 if (ret < 0)
189 return ret;
190 return 0;
191}
192
193/**
Chuck Lever83128a62015-10-24 17:27:59 -0400194 * rpcrdma_bc_marshal_reply - Send backwards direction reply
195 * @rqst: buffer containing RPC reply data
196 *
197 * Returns zero on success.
198 */
199int rpcrdma_bc_marshal_reply(struct rpc_rqst *rqst)
200{
201 struct rpc_xprt *xprt = rqst->rq_xprt;
202 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
203 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
204 struct rpcrdma_msg *headerp;
205 size_t rpclen;
206
207 headerp = rdmab_to_msg(req->rl_rdmabuf);
208 headerp->rm_xid = rqst->rq_xid;
209 headerp->rm_vers = rpcrdma_version;
210 headerp->rm_credit =
211 cpu_to_be32(r_xprt->rx_buf.rb_bc_srv_max_requests);
212 headerp->rm_type = rdma_msg;
213 headerp->rm_body.rm_chunks[0] = xdr_zero;
214 headerp->rm_body.rm_chunks[1] = xdr_zero;
215 headerp->rm_body.rm_chunks[2] = xdr_zero;
216
217 rpclen = rqst->rq_svec[0].iov_len;
218
219 pr_info("RPC: %s: rpclen %zd headerp 0x%p lkey 0x%x\n",
220 __func__, rpclen, headerp, rdmab_lkey(req->rl_rdmabuf));
221 pr_info("RPC: %s: RPC/RDMA: %*ph\n",
222 __func__, (int)RPCRDMA_HDRLEN_MIN, headerp);
223 pr_info("RPC: %s: RPC: %*ph\n",
224 __func__, (int)rpclen, rqst->rq_svec[0].iov_base);
225
226 req->rl_send_iov[0].addr = rdmab_addr(req->rl_rdmabuf);
227 req->rl_send_iov[0].length = RPCRDMA_HDRLEN_MIN;
228 req->rl_send_iov[0].lkey = rdmab_lkey(req->rl_rdmabuf);
229
230 req->rl_send_iov[1].addr = rdmab_addr(req->rl_sendbuf);
231 req->rl_send_iov[1].length = rpclen;
232 req->rl_send_iov[1].lkey = rdmab_lkey(req->rl_sendbuf);
233
234 req->rl_niovs = 2;
235 return 0;
236}
237
238/**
Chuck Leverf531a5d2015-10-24 17:27:43 -0400239 * xprt_rdma_bc_destroy - Release resources for handling backchannel requests
240 * @xprt: transport associated with these backchannel resources
241 * @reqs: number of incoming requests to destroy; ignored
242 */
243void xprt_rdma_bc_destroy(struct rpc_xprt *xprt, unsigned int reqs)
244{
245 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
246 struct rpc_rqst *rqst, *tmp;
247
248 spin_lock_bh(&xprt->bc_pa_lock);
249 list_for_each_entry_safe(rqst, tmp, &xprt->bc_pa_list, rq_bc_pa_list) {
250 list_del(&rqst->rq_bc_pa_list);
251 spin_unlock_bh(&xprt->bc_pa_lock);
252
253 rpcrdma_bc_free_rqst(r_xprt, rqst);
254
255 spin_lock_bh(&xprt->bc_pa_lock);
256 }
257 spin_unlock_bh(&xprt->bc_pa_lock);
258}
259
260/**
261 * xprt_rdma_bc_free_rqst - Release a backchannel rqst
262 * @rqst: request to release
263 */
264void xprt_rdma_bc_free_rqst(struct rpc_rqst *rqst)
265{
266 struct rpc_xprt *xprt = rqst->rq_xprt;
267
268 smp_mb__before_atomic();
269 WARN_ON_ONCE(!test_bit(RPC_BC_PA_IN_USE, &rqst->rq_bc_pa_state));
270 clear_bit(RPC_BC_PA_IN_USE, &rqst->rq_bc_pa_state);
271 smp_mb__after_atomic();
272
273 spin_lock_bh(&xprt->bc_pa_lock);
274 list_add_tail(&rqst->rq_bc_pa_list, &xprt->bc_pa_list);
275 spin_unlock_bh(&xprt->bc_pa_lock);
276}
Chuck Lever63cae472015-10-24 17:28:08 -0400277
278/**
279 * rpcrdma_bc_receive_call - Handle a backward direction call
280 * @xprt: transport receiving the call
281 * @rep: receive buffer containing the call
282 *
283 * Called in the RPC reply handler, which runs in a tasklet.
284 * Be quick about it.
285 *
286 * Operational assumptions:
287 * o Backchannel credits are ignored, just as the NFS server
288 * forechannel currently does
289 * o The ULP manages a replay cache (eg, NFSv4.1 sessions).
290 * No replay detection is done at the transport level
291 */
292void rpcrdma_bc_receive_call(struct rpcrdma_xprt *r_xprt,
293 struct rpcrdma_rep *rep)
294{
295 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
296 struct rpcrdma_msg *headerp;
297 struct svc_serv *bc_serv;
298 struct rpcrdma_req *req;
299 struct rpc_rqst *rqst;
300 struct xdr_buf *buf;
301 size_t size;
302 __be32 *p;
303
304 headerp = rdmab_to_msg(rep->rr_rdmabuf);
305#ifdef RPCRDMA_BACKCHANNEL_DEBUG
306 pr_info("RPC: %s: callback XID %08x, length=%u\n",
307 __func__, be32_to_cpu(headerp->rm_xid), rep->rr_len);
308 pr_info("RPC: %s: %*ph\n", __func__, rep->rr_len, headerp);
309#endif
310
311 /* Sanity check:
312 * Need at least enough bytes for RPC/RDMA header, as code
313 * here references the header fields by array offset. Also,
314 * backward calls are always inline, so ensure there
315 * are some bytes beyond the RPC/RDMA header.
316 */
317 if (rep->rr_len < RPCRDMA_HDRLEN_MIN + 24)
318 goto out_short;
319 p = (__be32 *)((unsigned char *)headerp + RPCRDMA_HDRLEN_MIN);
320 size = rep->rr_len - RPCRDMA_HDRLEN_MIN;
321
322 /* Grab a free bc rqst */
323 spin_lock(&xprt->bc_pa_lock);
324 if (list_empty(&xprt->bc_pa_list)) {
325 spin_unlock(&xprt->bc_pa_lock);
326 goto out_overflow;
327 }
328 rqst = list_first_entry(&xprt->bc_pa_list,
329 struct rpc_rqst, rq_bc_pa_list);
330 list_del(&rqst->rq_bc_pa_list);
331 spin_unlock(&xprt->bc_pa_lock);
332#ifdef RPCRDMA_BACKCHANNEL_DEBUG
333 pr_info("RPC: %s: using rqst %p\n", __func__, rqst);
334#endif
335
336 /* Prepare rqst */
337 rqst->rq_reply_bytes_recvd = 0;
338 rqst->rq_bytes_sent = 0;
339 rqst->rq_xid = headerp->rm_xid;
340 set_bit(RPC_BC_PA_IN_USE, &rqst->rq_bc_pa_state);
341
342 buf = &rqst->rq_rcv_buf;
343 memset(buf, 0, sizeof(*buf));
344 buf->head[0].iov_base = p;
345 buf->head[0].iov_len = size;
346 buf->len = size;
347
348 /* The receive buffer has to be hooked to the rpcrdma_req
349 * so that it can be reposted after the server is done
350 * parsing it but just before sending the backward
351 * direction reply.
352 */
353 req = rpcr_to_rdmar(rqst);
354#ifdef RPCRDMA_BACKCHANNEL_DEBUG
355 pr_info("RPC: %s: attaching rep %p to req %p\n",
356 __func__, rep, req);
357#endif
358 req->rl_reply = rep;
359
360 /* Defeat the retransmit detection logic in send_request */
361 req->rl_connect_cookie = 0;
362
363 /* Queue rqst for ULP's callback service */
364 bc_serv = xprt->bc_serv;
365 spin_lock(&bc_serv->sv_cb_lock);
366 list_add(&rqst->rq_bc_list, &bc_serv->sv_cb_list);
367 spin_unlock(&bc_serv->sv_cb_lock);
368
369 wake_up(&bc_serv->sv_cb_waitq);
370
371 r_xprt->rx_stats.bcall_count++;
372 return;
373
374out_overflow:
375 pr_warn("RPC/RDMA backchannel overflow\n");
376 xprt_disconnect_done(xprt);
377 /* This receive buffer gets reposted automatically
378 * when the connection is re-established.
379 */
380 return;
381
382out_short:
383 pr_warn("RPC/RDMA short backward direction call\n");
384
385 if (rpcrdma_ep_post_recv(&r_xprt->rx_ia, &r_xprt->rx_ep, rep))
386 xprt_disconnect_done(xprt);
387 else
388 pr_warn("RPC: %s: reposting rep %p\n",
389 __func__, rep);
390}