blob: ee9ba0736ceb7f83a2dbbe63c8f77824444fbf36 [file] [log] [blame]
Chuck Leverbcf3ffd2018-05-07 15:26:55 -04001// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
Tom Tuckerc06b5402007-12-12 16:13:25 -06002/*
Chuck Leverecf85b22018-05-07 15:27:21 -04003 * Copyright (c) 2016-2018 Oracle. All rights reserved.
Steve Wise0bf48282014-05-28 15:12:01 -05004 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
Tom Tuckerc06b5402007-12-12 16:13:25 -06005 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
6 *
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the BSD-type
11 * license below:
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 *
17 * Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 *
20 * Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials provided
23 * with the distribution.
24 *
25 * Neither the name of the Network Appliance, Inc. nor the names of
26 * its contributors may be used to endorse or promote products
27 * derived from this software without specific prior written
28 * permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
33 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 *
42 * Author: Tom Tucker <tom@opengridcomputing.com>
43 */
44
Chuck Lever9a6a1802017-04-09 13:06:25 -040045/* Operation
46 *
47 * The main entry point is svc_rdma_sendto. This is called by the
48 * RPC server when an RPC Reply is ready to be transmitted to a client.
49 *
50 * The passed-in svc_rqst contains a struct xdr_buf which holds an
51 * XDR-encoded RPC Reply message. sendto must construct the RPC-over-RDMA
52 * transport header, post all Write WRs needed for this Reply, then post
53 * a Send WR conveying the transport header and the RPC message itself to
54 * the client.
55 *
56 * svc_rdma_sendto must fully transmit the Reply before returning, as
57 * the svc_rqst will be recycled as soon as sendto returns. Remaining
58 * resources referred to by the svc_rqst are also recycled at that time.
59 * Therefore any resources that must remain longer must be detached
60 * from the svc_rqst and released later.
61 *
62 * Page Management
63 *
64 * The I/O that performs Reply transmission is asynchronous, and may
65 * complete well after sendto returns. Thus pages under I/O must be
66 * removed from the svc_rqst before sendto returns.
67 *
68 * The logic here depends on Send Queue and completion ordering. Since
69 * the Send WR is always posted last, it will always complete last. Thus
70 * when it completes, it is guaranteed that all previous Write WRs have
71 * also completed.
72 *
73 * Write WRs are constructed and posted. Each Write segment gets its own
74 * svc_rdma_rw_ctxt, allowing the Write completion handler to find and
75 * DMA-unmap the pages under I/O for that Write segment. The Write
76 * completion handler does not release any pages.
77 *
78 * When the Send WR is constructed, it also gets its own svc_rdma_op_ctxt.
79 * The ownership of all of the Reply's pages are transferred into that
80 * ctxt, the Send WR is posted, and sendto returns.
81 *
82 * The svc_rdma_op_ctxt is presented when the Send WR completes. The
83 * Send completion handler finally releases the Reply's pages.
84 *
85 * This mechanism also assumes that completions on the transport's Send
86 * Completion Queue do not run in parallel. Otherwise a Write completion
87 * and Send completion running at the same time could release pages that
88 * are still DMA-mapped.
89 *
90 * Error Handling
91 *
92 * - If the Send WR is posted successfully, it will either complete
93 * successfully, or get flushed. Either way, the Send completion
94 * handler releases the Reply's pages.
95 * - If the Send WR cannot be not posted, the forward path releases
96 * the Reply's pages.
97 *
98 * This handles the case, without the use of page reference counting,
99 * where two different Write segments send portions of the same page.
100 */
101
Tom Tuckerc06b5402007-12-12 16:13:25 -0600102#include <linux/spinlock.h>
103#include <asm/unaligned.h>
Chuck Lever98895ed2018-05-07 15:27:11 -0400104
Tom Tuckerc06b5402007-12-12 16:13:25 -0600105#include <rdma/ib_verbs.h>
106#include <rdma/rdma_cm.h>
Chuck Lever98895ed2018-05-07 15:27:11 -0400107
108#include <linux/sunrpc/debug.h>
109#include <linux/sunrpc/rpc_rdma.h>
Tom Tuckerc06b5402007-12-12 16:13:25 -0600110#include <linux/sunrpc/svc_rdma.h>
111
Chuck Lever98895ed2018-05-07 15:27:11 -0400112#include "xprt_rdma.h"
113#include <trace/events/rpcrdma.h>
114
Tom Tuckerc06b5402007-12-12 16:13:25 -0600115#define RPCDBG_FACILITY RPCDBG_SVCXPRT
116
Chuck Levercf570a92016-03-01 13:05:45 -0500117static u32 xdr_padsize(u32 len)
118{
119 return (len & 3) ? (4 - (len & 3)) : 0;
120}
121
Chuck Lever9a6a1802017-04-09 13:06:25 -0400122/* Returns length of transport header, in bytes.
123 */
124static unsigned int svc_rdma_reply_hdr_len(__be32 *rdma_resp)
125{
126 unsigned int nsegs;
127 __be32 *p;
128
129 p = rdma_resp;
130
131 /* RPC-over-RDMA V1 replies never have a Read list. */
132 p += rpcrdma_fixed_maxsz + 1;
133
134 /* Skip Write list. */
135 while (*p++ != xdr_zero) {
136 nsegs = be32_to_cpup(p++);
137 p += nsegs * rpcrdma_segment_maxsz;
138 }
139
140 /* Skip Reply chunk. */
141 if (*p++ != xdr_zero) {
142 nsegs = be32_to_cpup(p++);
143 p += nsegs * rpcrdma_segment_maxsz;
144 }
145
146 return (unsigned long)p - (unsigned long)rdma_resp;
147}
148
149/* One Write chunk is copied from Call transport header to Reply
150 * transport header. Each segment's length field is updated to
151 * reflect number of bytes consumed in the segment.
152 *
153 * Returns number of segments in this chunk.
154 */
155static unsigned int xdr_encode_write_chunk(__be32 *dst, __be32 *src,
156 unsigned int remaining)
157{
158 unsigned int i, nsegs;
159 u32 seg_len;
160
161 /* Write list discriminator */
162 *dst++ = *src++;
163
164 /* number of segments in this chunk */
165 nsegs = be32_to_cpup(src);
166 *dst++ = *src++;
167
168 for (i = nsegs; i; i--) {
169 /* segment's RDMA handle */
170 *dst++ = *src++;
171
172 /* bytes returned in this segment */
173 seg_len = be32_to_cpu(*src);
174 if (remaining >= seg_len) {
175 /* entire segment was consumed */
176 *dst = *src;
177 remaining -= seg_len;
178 } else {
179 /* segment only partly filled */
180 *dst = cpu_to_be32(remaining);
181 remaining = 0;
182 }
183 dst++; src++;
184
185 /* segment's RDMA offset */
186 *dst++ = *src++;
187 *dst++ = *src++;
188 }
189
190 return nsegs;
191}
192
193/* The client provided a Write list in the Call message. Fill in
194 * the segments in the first Write chunk in the Reply's transport
195 * header with the number of bytes consumed in each segment.
196 * Remaining chunks are returned unused.
197 *
198 * Assumptions:
199 * - Client has provided only one Write chunk
200 */
201static void svc_rdma_xdr_encode_write_list(__be32 *rdma_resp, __be32 *wr_ch,
202 unsigned int consumed)
203{
204 unsigned int nsegs;
205 __be32 *p, *q;
206
207 /* RPC-over-RDMA V1 replies never have a Read list. */
208 p = rdma_resp + rpcrdma_fixed_maxsz + 1;
209
210 q = wr_ch;
211 while (*q != xdr_zero) {
212 nsegs = xdr_encode_write_chunk(p, q, consumed);
213 q += 2 + nsegs * rpcrdma_segment_maxsz;
214 p += 2 + nsegs * rpcrdma_segment_maxsz;
215 consumed = 0;
216 }
217
218 /* Terminate Write list */
219 *p++ = xdr_zero;
220
221 /* Reply chunk discriminator; may be replaced later */
222 *p = xdr_zero;
223}
224
225/* The client provided a Reply chunk in the Call message. Fill in
226 * the segments in the Reply chunk in the Reply message with the
227 * number of bytes consumed in each segment.
228 *
229 * Assumptions:
230 * - Reply can always fit in the provided Reply chunk
231 */
232static void svc_rdma_xdr_encode_reply_chunk(__be32 *rdma_resp, __be32 *rp_ch,
233 unsigned int consumed)
234{
235 __be32 *p;
236
237 /* Find the Reply chunk in the Reply's xprt header.
238 * RPC-over-RDMA V1 replies never have a Read list.
239 */
240 p = rdma_resp + rpcrdma_fixed_maxsz + 1;
241
242 /* Skip past Write list */
243 while (*p++ != xdr_zero)
244 p += 1 + be32_to_cpup(p) * rpcrdma_segment_maxsz;
245
246 xdr_encode_write_chunk(p, rp_ch, consumed);
247}
248
Chuck Lever5fdca652016-11-29 11:04:42 -0500249/* Parse the RPC Call's transport header.
Chuck Lever10dc4512015-07-09 16:45:28 -0400250 */
Chuck Lever9a6a1802017-04-09 13:06:25 -0400251static void svc_rdma_get_write_arrays(__be32 *rdma_argp,
252 __be32 **write, __be32 **reply)
Chuck Lever10dc4512015-07-09 16:45:28 -0400253{
Chuck Lever5fdca652016-11-29 11:04:42 -0500254 __be32 *p;
Chuck Lever10dc4512015-07-09 16:45:28 -0400255
Chuck Lever9a6a1802017-04-09 13:06:25 -0400256 p = rdma_argp + rpcrdma_fixed_maxsz;
Chuck Lever10dc4512015-07-09 16:45:28 -0400257
Chuck Lever5fdca652016-11-29 11:04:42 -0500258 /* Read list */
259 while (*p++ != xdr_zero)
260 p += 5;
Chuck Lever10dc4512015-07-09 16:45:28 -0400261
Chuck Lever5fdca652016-11-29 11:04:42 -0500262 /* Write list */
263 if (*p != xdr_zero) {
Chuck Lever9a6a1802017-04-09 13:06:25 -0400264 *write = p;
Chuck Lever5fdca652016-11-29 11:04:42 -0500265 while (*p++ != xdr_zero)
266 p += 1 + be32_to_cpu(*p) * 4;
267 } else {
268 *write = NULL;
269 p++;
Chuck Lever10dc4512015-07-09 16:45:28 -0400270 }
271
Chuck Lever5fdca652016-11-29 11:04:42 -0500272 /* Reply chunk */
273 if (*p != xdr_zero)
Chuck Lever9a6a1802017-04-09 13:06:25 -0400274 *reply = p;
Chuck Lever5fdca652016-11-29 11:04:42 -0500275 else
276 *reply = NULL;
Chuck Lever10dc4512015-07-09 16:45:28 -0400277}
278
Chuck Lever25d552962016-09-13 10:53:23 -0400279/* RPC-over-RDMA Version One private extension: Remote Invalidation.
280 * Responder's choice: requester signals it can handle Send With
281 * Invalidate, and responder chooses one rkey to invalidate.
282 *
283 * Find a candidate rkey to invalidate when sending a reply. Picks the
Chuck Leverc238c4c2017-04-09 13:06:08 -0400284 * first R_key it finds in the chunk lists.
Chuck Lever25d552962016-09-13 10:53:23 -0400285 *
286 * Returns zero if RPC's chunk lists are empty.
287 */
Chuck Leverc238c4c2017-04-09 13:06:08 -0400288static u32 svc_rdma_get_inv_rkey(__be32 *rdma_argp,
289 __be32 *wr_lst, __be32 *rp_ch)
Chuck Lever25d552962016-09-13 10:53:23 -0400290{
Chuck Leverc238c4c2017-04-09 13:06:08 -0400291 __be32 *p;
Chuck Lever25d552962016-09-13 10:53:23 -0400292
Chuck Leverc238c4c2017-04-09 13:06:08 -0400293 p = rdma_argp + rpcrdma_fixed_maxsz;
294 if (*p != xdr_zero)
295 p += 2;
296 else if (wr_lst && be32_to_cpup(wr_lst + 1))
297 p = wr_lst + 2;
298 else if (rp_ch && be32_to_cpup(rp_ch + 1))
299 p = rp_ch + 2;
300 else
301 return 0;
302 return be32_to_cpup(p);
Chuck Lever25d552962016-09-13 10:53:23 -0400303}
304
Chuck Lever6e6092c2017-04-09 13:05:44 -0400305static int svc_rdma_dma_map_page(struct svcxprt_rdma *rdma,
306 struct svc_rdma_op_ctxt *ctxt,
307 unsigned int sge_no,
308 struct page *page,
Chuck Leverf016f302018-05-07 15:27:53 -0400309 unsigned long offset,
Chuck Lever6e6092c2017-04-09 13:05:44 -0400310 unsigned int len)
311{
312 struct ib_device *dev = rdma->sc_cm_id->device;
313 dma_addr_t dma_addr;
314
315 dma_addr = ib_dma_map_page(dev, page, offset, len, DMA_TO_DEVICE);
316 if (ib_dma_mapping_error(dev, dma_addr))
Chuck Lever91a08eae2017-06-23 17:17:15 -0400317 goto out_maperr;
Chuck Lever6e6092c2017-04-09 13:05:44 -0400318
319 ctxt->sge[sge_no].addr = dma_addr;
320 ctxt->sge[sge_no].length = len;
321 ctxt->sge[sge_no].lkey = rdma->sc_pd->local_dma_lkey;
Chuck Leverf016f302018-05-07 15:27:53 -0400322 ctxt->mapped_sges++;
Chuck Lever6e6092c2017-04-09 13:05:44 -0400323 return 0;
Chuck Lever91a08eae2017-06-23 17:17:15 -0400324
325out_maperr:
Chuck Leverbd2abef2018-05-07 15:27:16 -0400326 trace_svcrdma_dma_map_page(rdma, page);
Chuck Lever91a08eae2017-06-23 17:17:15 -0400327 return -EIO;
Chuck Lever6e6092c2017-04-09 13:05:44 -0400328}
329
Chuck Leverf016f302018-05-07 15:27:53 -0400330/* ib_dma_map_page() is used here because svc_rdma_dma_unmap()
331 * handles DMA-unmap and it uses ib_dma_unmap_page() exclusively.
332 */
333static int svc_rdma_dma_map_buf(struct svcxprt_rdma *rdma,
334 struct svc_rdma_op_ctxt *ctxt,
335 unsigned int sge_no,
336 unsigned char *base,
337 unsigned int len)
338{
339 return svc_rdma_dma_map_page(rdma, ctxt, sge_no, virt_to_page(base),
340 offset_in_page(base), len);
341}
342
Chuck Lever6e6092c2017-04-09 13:05:44 -0400343/**
344 * svc_rdma_map_reply_hdr - DMA map the transport header buffer
345 * @rdma: controlling transport
346 * @ctxt: op_ctxt for the Send WR
347 * @rdma_resp: buffer containing transport header
348 * @len: length of transport header
349 *
350 * Returns:
351 * %0 if the header is DMA mapped,
352 * %-EIO if DMA mapping failed.
353 */
354int svc_rdma_map_reply_hdr(struct svcxprt_rdma *rdma,
355 struct svc_rdma_op_ctxt *ctxt,
356 __be32 *rdma_resp,
357 unsigned int len)
358{
359 ctxt->direction = DMA_TO_DEVICE;
360 ctxt->pages[0] = virt_to_page(rdma_resp);
361 ctxt->count = 1;
362 return svc_rdma_dma_map_page(rdma, ctxt, 0, ctxt->pages[0], 0, len);
363}
364
Chuck Lever9a6a1802017-04-09 13:06:25 -0400365/* Load the xdr_buf into the ctxt's sge array, and DMA map each
366 * element as it is added.
367 *
368 * Returns the number of sge elements loaded on success, or
369 * a negative errno on failure.
Tom Tuckerc06b5402007-12-12 16:13:25 -0600370 */
Chuck Lever9a6a1802017-04-09 13:06:25 -0400371static int svc_rdma_map_reply_msg(struct svcxprt_rdma *rdma,
372 struct svc_rdma_op_ctxt *ctxt,
373 struct xdr_buf *xdr, __be32 *wr_lst)
Tom Tuckerc06b5402007-12-12 16:13:25 -0600374{
Chuck Leverf016f302018-05-07 15:27:53 -0400375 unsigned int len, sge_no, remaining;
376 unsigned long page_off;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400377 struct page **ppages;
378 unsigned char *base;
379 u32 xdr_pad;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600380 int ret;
381
Chuck Lever9a6a1802017-04-09 13:06:25 -0400382 sge_no = 1;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600383
Chuck Lever9a6a1802017-04-09 13:06:25 -0400384 ret = svc_rdma_dma_map_buf(rdma, ctxt, sge_no++,
385 xdr->head[0].iov_base,
386 xdr->head[0].iov_len);
387 if (ret < 0)
388 return ret;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600389
Chuck Lever9a6a1802017-04-09 13:06:25 -0400390 /* If a Write chunk is present, the xdr_buf's page list
391 * is not included inline. However the Upper Layer may
392 * have added XDR padding in the tail buffer, and that
393 * should not be included inline.
394 */
395 if (wr_lst) {
396 base = xdr->tail[0].iov_base;
397 len = xdr->tail[0].iov_len;
398 xdr_pad = xdr_padsize(xdr->page_len);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600399
Chuck Lever9a6a1802017-04-09 13:06:25 -0400400 if (len && xdr_pad) {
401 base += xdr_pad;
402 len -= xdr_pad;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600403 }
Chuck Lever9a6a1802017-04-09 13:06:25 -0400404
405 goto tail;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600406 }
Tom Tuckerc06b5402007-12-12 16:13:25 -0600407
Chuck Lever9a6a1802017-04-09 13:06:25 -0400408 ppages = xdr->pages + (xdr->page_base >> PAGE_SHIFT);
409 page_off = xdr->page_base & ~PAGE_MASK;
410 remaining = xdr->page_len;
411 while (remaining) {
412 len = min_t(u32, PAGE_SIZE - page_off, remaining);
Chuck Lever08ae4e72016-03-01 13:05:36 -0500413
Chuck Lever9a6a1802017-04-09 13:06:25 -0400414 ret = svc_rdma_dma_map_page(rdma, ctxt, sge_no++,
415 *ppages++, page_off, len);
416 if (ret < 0)
417 return ret;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600418
Chuck Lever9a6a1802017-04-09 13:06:25 -0400419 remaining -= len;
420 page_off = 0;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600421 }
Tom Tuckerc06b5402007-12-12 16:13:25 -0600422
Chuck Lever9a6a1802017-04-09 13:06:25 -0400423 base = xdr->tail[0].iov_base;
424 len = xdr->tail[0].iov_len;
425tail:
426 if (len) {
427 ret = svc_rdma_dma_map_buf(rdma, ctxt, sge_no++, base, len);
428 if (ret < 0)
429 return ret;
430 }
Chuck Lever08ae4e72016-03-01 13:05:36 -0500431
Chuck Lever9a6a1802017-04-09 13:06:25 -0400432 return sge_no - 1;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600433}
434
Chuck Leverc55ab072017-04-09 13:06:00 -0400435/* The svc_rqst and all resources it owns are released as soon as
436 * svc_rdma_sendto returns. Transfer pages under I/O to the ctxt
437 * so they are released by the Send completion handler.
438 */
439static void svc_rdma_save_io_pages(struct svc_rqst *rqstp,
440 struct svc_rdma_op_ctxt *ctxt)
441{
442 int i, pages = rqstp->rq_next_page - rqstp->rq_respages;
443
444 ctxt->count += pages;
445 for (i = 0; i < pages; i++) {
446 ctxt->pages[i + 1] = rqstp->rq_respages[i];
447 rqstp->rq_respages[i] = NULL;
448 }
449 rqstp->rq_next_page = rqstp->rq_respages + 1;
450}
451
Chuck Lever17f5f7f2017-04-09 13:05:36 -0400452/**
453 * svc_rdma_post_send_wr - Set up and post one Send Work Request
454 * @rdma: controlling transport
455 * @ctxt: op_ctxt for transmitting the Send WR
456 * @num_sge: number of SGEs to send
457 * @inv_rkey: R_key argument to Send With Invalidate, or zero
458 *
459 * Returns:
460 * %0 if the Send* was posted successfully,
461 * %-ENOTCONN if the connection was lost or dropped,
462 * %-EINVAL if there was a problem with the Send we built,
463 * %-ENOMEM if ib_post_send failed.
464 */
465int svc_rdma_post_send_wr(struct svcxprt_rdma *rdma,
466 struct svc_rdma_op_ctxt *ctxt, int num_sge,
467 u32 inv_rkey)
468{
469 struct ib_send_wr *send_wr = &ctxt->send_wr;
470
471 dprintk("svcrdma: posting Send WR with %u sge(s)\n", num_sge);
472
473 send_wr->next = NULL;
474 ctxt->cqe.done = svc_rdma_wc_send;
475 send_wr->wr_cqe = &ctxt->cqe;
476 send_wr->sg_list = ctxt->sge;
477 send_wr->num_sge = num_sge;
478 send_wr->send_flags = IB_SEND_SIGNALED;
479 if (inv_rkey) {
480 send_wr->opcode = IB_WR_SEND_WITH_INV;
481 send_wr->ex.invalidate_rkey = inv_rkey;
482 } else {
483 send_wr->opcode = IB_WR_SEND;
484 }
485
486 return svc_rdma_send(rdma, send_wr);
487}
488
Chuck Lever9a6a1802017-04-09 13:06:25 -0400489/* Prepare the portion of the RPC Reply that will be transmitted
490 * via RDMA Send. The RPC-over-RDMA transport header is prepared
491 * in sge[0], and the RPC xdr_buf is prepared in following sges.
492 *
493 * Depending on whether a Write list or Reply chunk is present,
494 * the server may send all, a portion of, or none of the xdr_buf.
495 * In the latter case, only the transport header (sge[0]) is
496 * transmitted.
497 *
498 * RDMA Send is the last step of transmitting an RPC reply. Pages
499 * involved in the earlier RDMA Writes are here transferred out
500 * of the rqstp and into the ctxt's page array. These pages are
501 * DMA unmapped by each Write completion, but the subsequent Send
502 * completion finally releases these pages.
503 *
504 * Assumptions:
505 * - The Reply's transport header will never be larger than a page.
Tom Tuckerc06b5402007-12-12 16:13:25 -0600506 */
Chuck Lever9a6a1802017-04-09 13:06:25 -0400507static int svc_rdma_send_reply_msg(struct svcxprt_rdma *rdma,
508 __be32 *rdma_argp, __be32 *rdma_resp,
509 struct svc_rqst *rqstp,
510 __be32 *wr_lst, __be32 *rp_ch)
Tom Tuckerc06b5402007-12-12 16:13:25 -0600511{
Chuck Lever9ec64052016-05-04 10:53:05 -0400512 struct svc_rdma_op_ctxt *ctxt;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400513 u32 inv_rkey;
514 int ret;
Tom Tucker0e7f0112008-04-23 16:49:54 -0500515
Chuck Lever9ec64052016-05-04 10:53:05 -0400516 ctxt = svc_rdma_get_context(rdma);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600517
Chuck Lever9a6a1802017-04-09 13:06:25 -0400518 ret = svc_rdma_map_reply_hdr(rdma, ctxt, rdma_resp,
519 svc_rdma_reply_hdr_len(rdma_resp));
520 if (ret < 0)
Tom Tuckerafd566e2008-10-03 15:45:03 -0500521 goto err;
Tom Tuckerafd566e2008-10-03 15:45:03 -0500522
Chuck Lever9a6a1802017-04-09 13:06:25 -0400523 if (!rp_ch) {
524 ret = svc_rdma_map_reply_msg(rdma, ctxt,
525 &rqstp->rq_res, wr_lst);
526 if (ret < 0)
Steve Wise0bf48282014-05-28 15:12:01 -0500527 goto err;
Chuck Lever3fe04ee2015-01-13 11:03:03 -0500528 }
Tom Tuckerc06b5402007-12-12 16:13:25 -0600529
Chuck Leverc55ab072017-04-09 13:06:00 -0400530 svc_rdma_save_io_pages(rqstp, ctxt);
Steve Wise0bf48282014-05-28 15:12:01 -0500531
Chuck Lever9a6a1802017-04-09 13:06:25 -0400532 inv_rkey = 0;
533 if (rdma->sc_snd_w_inv)
534 inv_rkey = svc_rdma_get_inv_rkey(rdma_argp, wr_lst, rp_ch);
535 ret = svc_rdma_post_send_wr(rdma, ctxt, 1 + ret, inv_rkey);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600536 if (ret)
Tom Tuckerafd566e2008-10-03 15:45:03 -0500537 goto err;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600538
Tom Tuckerafd566e2008-10-03 15:45:03 -0500539 return 0;
540
Chuck Lever9a6a1802017-04-09 13:06:25 -0400541err:
Steve Wise21515e42009-04-29 14:14:00 -0500542 svc_rdma_unmap_dma(ctxt);
Tom Tuckerafd566e2008-10-03 15:45:03 -0500543 svc_rdma_put_context(ctxt, 1);
Chuck Lever9ec64052016-05-04 10:53:05 -0400544 return ret;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600545}
546
Chuck Lever4757d902017-04-09 13:06:41 -0400547/* Given the client-provided Write and Reply chunks, the server was not
548 * able to form a complete reply. Return an RDMA_ERROR message so the
549 * client can retire this RPC transaction. As above, the Send completion
550 * routine releases payload pages that were part of a previous RDMA Write.
551 *
552 * Remote Invalidation is skipped for simplicity.
553 */
554static int svc_rdma_send_error_msg(struct svcxprt_rdma *rdma,
555 __be32 *rdma_resp, struct svc_rqst *rqstp)
556{
557 struct svc_rdma_op_ctxt *ctxt;
558 __be32 *p;
559 int ret;
560
561 ctxt = svc_rdma_get_context(rdma);
562
563 /* Replace the original transport header with an
564 * RDMA_ERROR response. XID etc are preserved.
565 */
Chuck Lever98895ed2018-05-07 15:27:11 -0400566 trace_svcrdma_err_chunk(*rdma_resp);
Chuck Lever4757d902017-04-09 13:06:41 -0400567 p = rdma_resp + 3;
568 *p++ = rdma_error;
569 *p = err_chunk;
570
571 ret = svc_rdma_map_reply_hdr(rdma, ctxt, rdma_resp, 20);
572 if (ret < 0)
573 goto err;
574
575 svc_rdma_save_io_pages(rqstp, ctxt);
576
577 ret = svc_rdma_post_send_wr(rdma, ctxt, 1 + ret, 0);
578 if (ret)
579 goto err;
580
581 return 0;
582
583err:
Chuck Lever4757d902017-04-09 13:06:41 -0400584 svc_rdma_unmap_dma(ctxt);
585 svc_rdma_put_context(ctxt, 1);
586 return ret;
587}
588
Tom Tuckerc06b5402007-12-12 16:13:25 -0600589void svc_rdma_prep_reply_hdr(struct svc_rqst *rqstp)
590{
591}
592
Chuck Lever9a6a1802017-04-09 13:06:25 -0400593/**
594 * svc_rdma_sendto - Transmit an RPC reply
595 * @rqstp: processed RPC request, reply XDR already in ::rq_res
596 *
597 * Any resources still associated with @rqstp are released upon return.
598 * If no reply message was possible, the connection is closed.
599 *
600 * Returns:
601 * %0 if an RPC reply has been successfully posted,
602 * %-ENOMEM if a resource shortage occurred (connection is lost),
603 * %-ENOTCONN if posting failed (connection is lost).
604 */
Tom Tuckerc06b5402007-12-12 16:13:25 -0600605int svc_rdma_sendto(struct svc_rqst *rqstp)
606{
607 struct svc_xprt *xprt = rqstp->rq_xprt;
608 struct svcxprt_rdma *rdma =
609 container_of(xprt, struct svcxprt_rdma, sc_xprt);
Chuck Lever3a880922018-05-07 15:27:37 -0400610 struct svc_rdma_recv_ctxt *rctxt = rqstp->rq_xprt_ctxt;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400611 __be32 *p, *rdma_argp, *rdma_resp, *wr_lst, *rp_ch;
612 struct xdr_buf *xdr = &rqstp->rq_res;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600613 struct page *res_page;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400614 int ret;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600615
Chuck Lever3316f062018-05-07 15:27:43 -0400616 rdma_argp = rctxt->rc_recv_buf;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400617 svc_rdma_get_write_arrays(rdma_argp, &wr_lst, &rp_ch);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600618
Chuck Levere4eb42c2016-11-29 11:04:50 -0500619 /* Create the RDMA response header. xprt->xpt_mutex,
620 * acquired in svc_send(), serializes RPC replies. The
621 * code path below that inserts the credit grant value
622 * into each transport header runs only inside this
623 * critical section.
624 */
Chuck Lever78da2b32016-01-07 14:49:45 -0500625 ret = -ENOMEM;
626 res_page = alloc_page(GFP_KERNEL);
627 if (!res_page)
628 goto err0;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600629 rdma_resp = page_address(res_page);
Chuck Lever98fc21d2017-02-07 11:58:23 -0500630
Chuck Lever9a6a1802017-04-09 13:06:25 -0400631 p = rdma_resp;
632 *p++ = *rdma_argp;
633 *p++ = *(rdma_argp + 1);
Chuck Lever98fc21d2017-02-07 11:58:23 -0500634 *p++ = rdma->sc_fc_credits;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400635 *p++ = rp_ch ? rdma_nomsg : rdma_msg;
Chuck Lever98fc21d2017-02-07 11:58:23 -0500636
637 /* Start with empty chunks */
638 *p++ = xdr_zero;
639 *p++ = xdr_zero;
640 *p = xdr_zero;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600641
Chuck Lever9a6a1802017-04-09 13:06:25 -0400642 if (wr_lst) {
643 /* XXX: Presume the client sent only one Write chunk */
644 ret = svc_rdma_send_write_chunk(rdma, wr_lst, xdr);
Chuck Lever08ae4e72016-03-01 13:05:36 -0500645 if (ret < 0)
Chuck Lever4757d902017-04-09 13:06:41 -0400646 goto err2;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400647 svc_rdma_xdr_encode_write_list(rdma_resp, wr_lst, ret);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600648 }
Chuck Lever9a6a1802017-04-09 13:06:25 -0400649 if (rp_ch) {
650 ret = svc_rdma_send_reply_chunk(rdma, rp_ch, wr_lst, xdr);
Chuck Lever08ae4e72016-03-01 13:05:36 -0500651 if (ret < 0)
Chuck Lever4757d902017-04-09 13:06:41 -0400652 goto err2;
Chuck Lever9a6a1802017-04-09 13:06:25 -0400653 svc_rdma_xdr_encode_reply_chunk(rdma_resp, rp_ch, ret);
Tom Tuckerc06b5402007-12-12 16:13:25 -0600654 }
Tom Tuckerc06b5402007-12-12 16:13:25 -0600655
Chuck Lever9a6a1802017-04-09 13:06:25 -0400656 ret = svc_rdma_send_reply_msg(rdma, rdma_argp, rdma_resp, rqstp,
657 wr_lst, rp_ch);
Chuck Lever3e1eeb92016-03-01 13:06:11 -0500658 if (ret < 0)
Chuck Lever99952372016-09-13 10:52:59 -0400659 goto err0;
Chuck Lever3a880922018-05-07 15:27:37 -0400660 ret = 0;
661
662out:
663 rqstp->rq_xprt_ctxt = NULL;
664 svc_rdma_recv_ctxt_put(rdma, rctxt);
665 return ret;
Tom Tuckerafd566e2008-10-03 15:45:03 -0500666
Chuck Lever4757d902017-04-09 13:06:41 -0400667 err2:
Colin Ian Kingb20dae702017-07-13 18:51:15 +0100668 if (ret != -E2BIG && ret != -EINVAL)
Chuck Lever4757d902017-04-09 13:06:41 -0400669 goto err1;
670
Chuck Lever4757d902017-04-09 13:06:41 -0400671 ret = svc_rdma_send_error_msg(rdma, rdma_resp, rqstp);
672 if (ret < 0)
673 goto err0;
Chuck Lever3a880922018-05-07 15:27:37 -0400674 ret = 0;
675 goto out;
Chuck Lever4757d902017-04-09 13:06:41 -0400676
Tom Tuckerafd566e2008-10-03 15:45:03 -0500677 err1:
678 put_page(res_page);
679 err0:
Chuck Leverbd2abef2018-05-07 15:27:16 -0400680 trace_svcrdma_send_failed(rqstp, ret);
Chuck Lever9a6a1802017-04-09 13:06:25 -0400681 set_bit(XPT_CLOSE, &xprt->xpt_flags);
Chuck Lever3a880922018-05-07 15:27:37 -0400682 ret = -ENOTCONN;
683 goto out;
Tom Tuckerc06b5402007-12-12 16:13:25 -0600684}