svc_rdma_recvfrom.c 24.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
T
Tom Tucker 已提交
2
/*
3
 * Copyright (c) 2016-2018 Oracle. All rights reserved.
S
Steve Wise 已提交
4
 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
T
Tom Tucker 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the BSD-type
 * license below:
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *      Redistributions of source code must retain the above copyright
 *      notice, this list of conditions and the following disclaimer.
 *
 *      Redistributions in binary form must reproduce the above
 *      copyright notice, this list of conditions and the following
 *      disclaimer in the documentation and/or other materials provided
 *      with the distribution.
 *
 *      Neither the name of the Network Appliance, Inc. nor the names of
 *      its contributors may be used to endorse or promote products
 *      derived from this software without specific prior written
 *      permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Author: Tom Tucker <tom@opengridcomputing.com>
 */

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
/* Operation
 *
 * The main entry point is svc_rdma_recvfrom. This is called from
 * svc_recv when the transport indicates there is incoming data to
 * be read. "Data Ready" is signaled when an RDMA Receive completes,
 * or when a set of RDMA Reads complete.
 *
 * An svc_rqst is passed in. This structure contains an array of
 * free pages (rq_pages) that will contain the incoming RPC message.
 *
 * Short messages are moved directly into svc_rqst::rq_arg, and
 * the RPC Call is ready to be processed by the Upper Layer.
 * svc_rdma_recvfrom returns the length of the RPC Call message,
 * completing the reception of the RPC Call.
 *
 * However, when an incoming message has Read chunks,
 * svc_rdma_recvfrom must post RDMA Reads to pull the RPC Call's
 * data payload from the client. svc_rdma_recvfrom sets up the
 * RDMA Reads using pages in svc_rqst::rq_pages, which are
64
 * transferred to an svc_rdma_recv_ctxt for the duration of the
65 66 67 68 69 70 71 72
 * I/O. svc_rdma_recvfrom then returns zero, since the RPC message
 * is still not yet ready.
 *
 * When the Read chunk payloads have become available on the
 * server, "Data Ready" is raised again, and svc_recv calls
 * svc_rdma_recvfrom again. This second call may use a different
 * svc_rqst than the first one, thus any information that needs
 * to be preserved across these two calls is kept in an
73
 * svc_rdma_recv_ctxt.
74 75 76
 *
 * The second call to svc_rdma_recvfrom performs final assembly
 * of the RPC Call message, using the RDMA Read sink pages kept in
77 78
 * the svc_rdma_recv_ctxt. The xdr_buf is copied from the
 * svc_rdma_recv_ctxt to the second svc_rqst. The second call returns
79 80 81 82 83
 * the length of the completed RPC Call message.
 *
 * Page Management
 *
 * Pages under I/O must be transferred from the first svc_rqst to an
84
 * svc_rdma_recv_ctxt before the first svc_rdma_recvfrom call returns.
85 86 87 88 89 90 91
 *
 * The first svc_rqst supplies pages for RDMA Reads. These are moved
 * from rqstp::rq_pages into ctxt::pages. The consumed elements of
 * the rq_pages array are set to NULL and refilled with the first
 * svc_rdma_recvfrom call returns.
 *
 * During the second svc_rdma_recvfrom call, RDMA Read sink pages
92
 * are transferred from the svc_rdma_recv_ctxt to the second svc_rqst
93 94 95
 * (see rdma_read_complete() below).
 */

96
#include <linux/spinlock.h>
T
Tom Tucker 已提交
97 98 99
#include <asm/unaligned.h>
#include <rdma/ib_verbs.h>
#include <rdma/rdma_cm.h>
100 101 102 103

#include <linux/sunrpc/xdr.h>
#include <linux/sunrpc/debug.h>
#include <linux/sunrpc/rpc_rdma.h>
T
Tom Tucker 已提交
104 105
#include <linux/sunrpc/svc_rdma.h>

106 107 108
#include "xprt_rdma.h"
#include <trace/events/rpcrdma.h>

T
Tom Tucker 已提交
109 110
#define RPCDBG_FACILITY	RPCDBG_SVCXPRT

111 112 113 114 115 116 117 118 119
static void svc_rdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc);

static inline struct svc_rdma_recv_ctxt *
svc_rdma_next_recv_ctxt(struct list_head *list)
{
	return list_first_entry_or_null(list, struct svc_rdma_recv_ctxt,
					rc_list);
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
static struct svc_rdma_recv_ctxt *
svc_rdma_recv_ctxt_alloc(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_recv_ctxt *ctxt;
	dma_addr_t addr;
	void *buffer;

	ctxt = kmalloc(sizeof(*ctxt), GFP_KERNEL);
	if (!ctxt)
		goto fail0;
	buffer = kmalloc(rdma->sc_max_req_size, GFP_KERNEL);
	if (!buffer)
		goto fail1;
	addr = ib_dma_map_single(rdma->sc_pd->device, buffer,
				 rdma->sc_max_req_size, DMA_FROM_DEVICE);
	if (ib_dma_mapping_error(rdma->sc_pd->device, addr))
		goto fail2;

	ctxt->rc_recv_wr.next = NULL;
	ctxt->rc_recv_wr.wr_cqe = &ctxt->rc_cqe;
	ctxt->rc_recv_wr.sg_list = &ctxt->rc_recv_sge;
	ctxt->rc_recv_wr.num_sge = 1;
	ctxt->rc_cqe.done = svc_rdma_wc_receive;
	ctxt->rc_recv_sge.addr = addr;
	ctxt->rc_recv_sge.length = rdma->sc_max_req_size;
	ctxt->rc_recv_sge.lkey = rdma->sc_pd->local_dma_lkey;
	ctxt->rc_recv_buf = buffer;
147
	ctxt->rc_temp = false;
148 149 150 151 152 153 154 155 156 157
	return ctxt;

fail2:
	kfree(buffer);
fail1:
	kfree(ctxt);
fail0:
	return NULL;
}

158 159 160 161 162 163 164 165 166
static void svc_rdma_recv_ctxt_destroy(struct svcxprt_rdma *rdma,
				       struct svc_rdma_recv_ctxt *ctxt)
{
	ib_dma_unmap_single(rdma->sc_pd->device, ctxt->rc_recv_sge.addr,
			    ctxt->rc_recv_sge.length, DMA_FROM_DEVICE);
	kfree(ctxt->rc_recv_buf);
	kfree(ctxt);
}

167 168 169 170 171 172 173 174
/**
 * svc_rdma_recv_ctxts_destroy - Release all recv_ctxt's for an xprt
 * @rdma: svcxprt_rdma being torn down
 *
 */
void svc_rdma_recv_ctxts_destroy(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_recv_ctxt *ctxt;
175
	struct llist_node *node;
176

177 178
	while ((node = llist_del_first(&rdma->sc_recv_ctxts))) {
		ctxt = llist_entry(node, struct svc_rdma_recv_ctxt, rc_node);
179
		svc_rdma_recv_ctxt_destroy(rdma, ctxt);
180 181 182 183 184 185 186
	}
}

static struct svc_rdma_recv_ctxt *
svc_rdma_recv_ctxt_get(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_recv_ctxt *ctxt;
187
	struct llist_node *node;
188

189 190
	node = llist_del_first(&rdma->sc_recv_ctxts);
	if (!node)
191
		goto out_empty;
192
	ctxt = llist_entry(node, struct svc_rdma_recv_ctxt, rc_node);
193 194 195

out:
	ctxt->rc_page_count = 0;
196
	ctxt->rc_read_payload_length = 0;
197 198 199
	return ctxt;

out_empty:
200
	ctxt = svc_rdma_recv_ctxt_alloc(rdma);
201 202 203 204 205 206 207 208 209 210 211 212
	if (!ctxt)
		return NULL;
	goto out;
}

/**
 * svc_rdma_recv_ctxt_put - Return recv_ctxt to free list
 * @rdma: controlling svcxprt_rdma
 * @ctxt: object to return to the free list
 *
 */
void svc_rdma_recv_ctxt_put(struct svcxprt_rdma *rdma,
213
			    struct svc_rdma_recv_ctxt *ctxt)
214 215 216
{
	unsigned int i;

217 218
	for (i = 0; i < ctxt->rc_page_count; i++)
		put_page(ctxt->rc_pages[i]);
219

220 221 222
	if (!ctxt->rc_temp)
		llist_add(&ctxt->rc_node, &rdma->sc_recv_ctxts);
	else
223
		svc_rdma_recv_ctxt_destroy(rdma, ctxt);
224 225
}

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
/**
 * svc_rdma_release_rqst - Release transport-specific per-rqst resources
 * @rqstp: svc_rqst being released
 *
 * Ensure that the recv_ctxt is released whether or not a Reply
 * was sent. For example, the client could close the connection,
 * or svc_process could drop an RPC, before the Reply is sent.
 */
void svc_rdma_release_rqst(struct svc_rqst *rqstp)
{
	struct svc_rdma_recv_ctxt *ctxt = rqstp->rq_xprt_ctxt;
	struct svc_xprt *xprt = rqstp->rq_xprt;
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);

	rqstp->rq_xprt_ctxt = NULL;
	if (ctxt)
		svc_rdma_recv_ctxt_put(rdma, ctxt);
}

246 247
static int __svc_rdma_post_recv(struct svcxprt_rdma *rdma,
				struct svc_rdma_recv_ctxt *ctxt)
248
{
249
	int ret;
250 251

	svc_xprt_get(&rdma->sc_xprt);
252
	ret = ib_post_recv(rdma->sc_qp, &ctxt->rc_recv_wr, NULL);
253 254 255 256 257 258
	trace_svcrdma_post_recv(&ctxt->rc_recv_wr, ret);
	if (ret)
		goto err_post;
	return 0;

err_post:
259
	svc_rdma_recv_ctxt_put(rdma, ctxt);
260 261 262 263
	svc_xprt_put(&rdma->sc_xprt);
	return ret;
}

264 265 266 267 268 269 270 271 272 273
static int svc_rdma_post_recv(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_recv_ctxt *ctxt;

	ctxt = svc_rdma_recv_ctxt_get(rdma);
	if (!ctxt)
		return -ENOMEM;
	return __svc_rdma_post_recv(rdma, ctxt);
}

274 275 276 277 278 279 280 281
/**
 * svc_rdma_post_recvs - Post initial set of Recv WRs
 * @rdma: fresh svcxprt_rdma
 *
 * Returns true if successful, otherwise false.
 */
bool svc_rdma_post_recvs(struct svcxprt_rdma *rdma)
{
282
	struct svc_rdma_recv_ctxt *ctxt;
283 284 285 286
	unsigned int i;
	int ret;

	for (i = 0; i < rdma->sc_max_requests; i++) {
287 288
		ctxt = svc_rdma_recv_ctxt_get(rdma);
		if (!ctxt)
289
			return false;
290 291
		ctxt->rc_temp = true;
		ret = __svc_rdma_post_recv(rdma, ctxt);
292
		if (ret)
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
			return false;
	}
	return true;
}

/**
 * svc_rdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
 * @cq: Completion Queue context
 * @wc: Work Completion object
 *
 * NB: The svc_xprt/svcxprt_rdma is pinned whenever it's possible that
 * the Receive completion handler could be running.
 */
static void svc_rdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
{
	struct svcxprt_rdma *rdma = cq->cq_context;
	struct ib_cqe *cqe = wc->wr_cqe;
	struct svc_rdma_recv_ctxt *ctxt;

	trace_svcrdma_wc_receive(wc);

	/* WARNING: Only wc->wr_cqe and wc->status are reliable */
	ctxt = container_of(cqe, struct svc_rdma_recv_ctxt, rc_cqe);

	if (wc->status != IB_WC_SUCCESS)
		goto flushed;

	if (svc_rdma_post_recv(rdma))
		goto post_err;

	/* All wc fields are now known to be valid */
	ctxt->rc_byte_len = wc->byte_len;
325 326 327 328
	ib_dma_sync_single_for_cpu(rdma->sc_pd->device,
				   ctxt->rc_recv_sge.addr,
				   wc->byte_len, DMA_FROM_DEVICE);

329 330
	spin_lock(&rdma->sc_rq_dto_lock);
	list_add_tail(&ctxt->rc_list, &rdma->sc_rq_dto_q);
331
	/* Note the unlock pairs with the smp_rmb in svc_xprt_ready: */
332
	set_bit(XPT_DATA, &rdma->sc_xprt.xpt_flags);
333
	spin_unlock(&rdma->sc_rq_dto_lock);
334 335 336 337 338 339
	if (!test_bit(RDMAXPRT_CONN_PENDING, &rdma->sc_flags))
		svc_xprt_enqueue(&rdma->sc_xprt);
	goto out;

flushed:
post_err:
340
	svc_rdma_recv_ctxt_put(rdma, ctxt);
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
	set_bit(XPT_CLOSE, &rdma->sc_xprt.xpt_flags);
	svc_xprt_enqueue(&rdma->sc_xprt);
out:
	svc_xprt_put(&rdma->sc_xprt);
}

/**
 * svc_rdma_flush_recv_queues - Drain pending Receive work
 * @rdma: svcxprt_rdma being shut down
 *
 */
void svc_rdma_flush_recv_queues(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_recv_ctxt *ctxt;

	while ((ctxt = svc_rdma_next_recv_ctxt(&rdma->sc_read_complete_q))) {
		list_del(&ctxt->rc_list);
358
		svc_rdma_recv_ctxt_put(rdma, ctxt);
359 360 361
	}
	while ((ctxt = svc_rdma_next_recv_ctxt(&rdma->sc_rq_dto_q))) {
		list_del(&ctxt->rc_list);
362
		svc_rdma_recv_ctxt_put(rdma, ctxt);
363 364 365
	}
}

366
static void svc_rdma_build_arg_xdr(struct svc_rqst *rqstp,
367
				   struct svc_rdma_recv_ctxt *ctxt)
T
Tom Tucker 已提交
368
{
369 370 371 372 373 374 375 376 377 378
	struct xdr_buf *arg = &rqstp->rq_arg;

	arg->head[0].iov_base = ctxt->rc_recv_buf;
	arg->head[0].iov_len = ctxt->rc_byte_len;
	arg->tail[0].iov_base = NULL;
	arg->tail[0].iov_len = 0;
	arg->page_len = 0;
	arg->page_base = 0;
	arg->buflen = ctxt->rc_byte_len;
	arg->len = ctxt->rc_byte_len;
T
Tom Tucker 已提交
379 380
}

381
/* This accommodates the largest possible Write chunk.
382
 */
383
#define MAX_BYTES_WRITE_CHUNK ((u32)(RPCSVC_MAXPAGES << PAGE_SHIFT))
384

385
/* This accommodates the largest possible Position-Zero
386
 * Read chunk or Reply chunk.
387
 */
388
#define MAX_BYTES_SPECIAL_CHUNK ((u32)((RPCSVC_MAXPAGES + 2) << PAGE_SHIFT))
389 390 391 392 393 394 395

/* Sanity check the Read list.
 *
 * Implementation limits:
 * - This implementation supports only one Read chunk.
 *
 * Sanity checks:
396
 * - Read list does not overflow Receive buffer.
397 398 399 400 401 402 403
 * - Segment size limited by largest NFS data payload.
 *
 * The segment count is limited to how many segments can
 * fit in the transport header without overflowing the
 * buffer. That's about 40 Read segments for a 1KB inline
 * threshold.
 *
404 405 406 407 408
 * Return values:
 *       %true: Read list is valid. @rctxt's xdr_stream is updated
 *		to point to the first byte past the Read list.
 *      %false: Read list is corrupt. @rctxt's xdr_stream is left
 *		in an unknown state.
409
 */
410
static bool xdr_check_read_list(struct svc_rdma_recv_ctxt *rctxt)
C
Chuck Lever 已提交
411
{
412
	u32 position, len;
413
	bool first;
414 415 416 417 418
	__be32 *p;

	p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
	if (!p)
		return false;
C
Chuck Lever 已提交
419

420
	len = 0;
421
	first = true;
422 423 424 425 426 427
	while (*p != xdr_zero) {
		p = xdr_inline_decode(&rctxt->rc_stream,
				      rpcrdma_readseg_maxsz * sizeof(*p));
		if (!p)
			return false;

428
		if (first) {
429
			position = be32_to_cpup(p);
430
			first = false;
431 432
		} else if (be32_to_cpup(p) != position) {
			return false;
433
		}
434 435
		p += 2;
		len += be32_to_cpup(p);
436

437 438 439
		p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
		if (!p)
			return false;
C
Chuck Lever 已提交
440
	}
441
	return len <= MAX_BYTES_SPECIAL_CHUNK;
C
Chuck Lever 已提交
442 443
}

444 445 446 447 448
/* The segment count is limited to how many segments can
 * fit in the transport header without overflowing the
 * buffer. That's about 60 Write segments for a 1KB inline
 * threshold.
 */
449
static bool xdr_check_write_chunk(struct svc_rdma_recv_ctxt *rctxt, u32 maxlen)
C
Chuck Lever 已提交
450
{
451 452 453 454 455 456 457
	u32 i, segcount, total;
	__be32 *p;

	p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
	if (!p)
		return false;
	segcount = be32_to_cpup(p);
458

459
	total = 0;
460
	for (i = 0; i < segcount; i++) {
461 462
		u32 handle, length;
		u64 offset;
463

464 465 466 467 468 469 470 471 472
		p = xdr_inline_decode(&rctxt->rc_stream,
				      rpcrdma_segment_maxsz * sizeof(*p));
		if (!p)
			return false;

		handle = be32_to_cpup(p++);
		length = be32_to_cpup(p++);
		xdr_decode_hyper(p, &offset);
		trace_svcrdma_decode_wseg(handle, length, offset);
473

474 475 476
		total += length;
	}
	return total <= maxlen;
477
}
C
Chuck Lever 已提交
478

479 480 481
/* Sanity check the Write list.
 *
 * Implementation limits:
482
 * - This implementation currently supports only one Write chunk.
483 484
 *
 * Sanity checks:
485 486 487 488 489 490 491 492
 * - Write list does not overflow Receive buffer.
 * - Chunk size limited by largest NFS data payload.
 *
 * Return values:
 *       %true: Write list is valid. @rctxt's xdr_stream is updated
 *		to point to the first byte past the Write list.
 *      %false: Write list is corrupt. @rctxt's xdr_stream is left
 *		in an unknown state.
493
 */
494
static bool xdr_check_write_list(struct svc_rdma_recv_ctxt *rctxt)
495
{
496 497
	u32 chcount = 0;
	__be32 *p;
498

499 500 501
	p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
	if (!p)
		return false;
502
	rctxt->rc_write_list = p;
503 504 505 506 507
	while (*p != xdr_zero) {
		if (!xdr_check_write_chunk(rctxt, MAX_BYTES_WRITE_CHUNK))
			return false;
		++chcount;
		p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
508
		if (!p)
509
			return false;
C
Chuck Lever 已提交
510
	}
511 512
	if (!chcount)
		rctxt->rc_write_list = NULL;
513
	return chcount < 2;
C
Chuck Lever 已提交
514 515
}

516 517 518
/* Sanity check the Reply chunk.
 *
 * Sanity checks:
519 520 521 522 523 524 525 526
 * - Reply chunk does not overflow Receive buffer.
 * - Chunk size limited by largest NFS data payload.
 *
 * Return values:
 *       %true: Reply chunk is valid. @rctxt's xdr_stream is updated
 *		to point to the first byte past the Reply chunk.
 *      %false: Reply chunk is corrupt. @rctxt's xdr_stream is left
 *		in an unknown state.
527
 */
528
static bool xdr_check_reply_chunk(struct svc_rdma_recv_ctxt *rctxt)
C
Chuck Lever 已提交
529
{
530 531 532 533 534
	__be32 *p;

	p = xdr_inline_decode(&rctxt->rc_stream, sizeof(*p));
	if (!p)
		return false;
535 536
	rctxt->rc_reply_chunk = p;
	if (*p != xdr_zero) {
537 538
		if (!xdr_check_write_chunk(rctxt, MAX_BYTES_SPECIAL_CHUNK))
			return false;
539 540 541
	} else {
		rctxt->rc_reply_chunk = NULL;
	}
542
	return true;
C
Chuck Lever 已提交
543 544
}

545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
/* RPC-over-RDMA Version One private extension: Remote Invalidation.
 * Responder's choice: requester signals it can handle Send With
 * Invalidate, and responder chooses one R_key to invalidate.
 *
 * If there is exactly one distinct R_key in the received transport
 * header, set rc_inv_rkey to that R_key. Otherwise, set it to zero.
 *
 * Perform this operation while the received transport header is
 * still in the CPU cache.
 */
static void svc_rdma_get_inv_rkey(struct svcxprt_rdma *rdma,
				  struct svc_rdma_recv_ctxt *ctxt)
{
	__be32 inv_rkey, *p;
	u32 i, segcount;

	ctxt->rc_inv_rkey = 0;

	if (!rdma->sc_snd_w_inv)
		return;

	inv_rkey = xdr_zero;
	p = ctxt->rc_recv_buf;
	p += rpcrdma_fixed_maxsz;

	/* Read list */
	while (*p++ != xdr_zero) {
		p++;	/* position */
		if (inv_rkey == xdr_zero)
			inv_rkey = *p;
		else if (inv_rkey != *p)
			return;
		p += 4;
	}

	/* Write list */
	while (*p++ != xdr_zero) {
		segcount = be32_to_cpup(p++);
		for (i = 0; i < segcount; i++) {
			if (inv_rkey == xdr_zero)
				inv_rkey = *p;
			else if (inv_rkey != *p)
				return;
			p += 4;
		}
	}

	/* Reply chunk */
	if (*p++ != xdr_zero) {
		segcount = be32_to_cpup(p++);
		for (i = 0; i < segcount; i++) {
			if (inv_rkey == xdr_zero)
				inv_rkey = *p;
			else if (inv_rkey != *p)
				return;
			p += 4;
		}
	}

	ctxt->rc_inv_rkey = be32_to_cpu(inv_rkey);
}

607 608 609 610 611 612 613
/**
 * svc_rdma_xdr_decode_req - Decode the transport header
 * @rq_arg: xdr_buf containing ingress RPC/RDMA message
 * @rctxt: state of decoding
 *
 * On entry, xdr->head[0].iov_base points to first byte of the
 * RPC-over-RDMA transport header.
C
Chuck Lever 已提交
614 615 616
 *
 * On successful exit, head[0] points to first byte past the
 * RPC-over-RDMA header. For RDMA_MSG, this is the RPC message.
617
 *
C
Chuck Lever 已提交
618 619 620 621 622
 * The length of the RPC-over-RDMA header is returned.
 *
 * Assumptions:
 * - The transport header is entirely contained in the head iovec.
 */
623 624
static int svc_rdma_xdr_decode_req(struct xdr_buf *rq_arg,
				   struct svc_rdma_recv_ctxt *rctxt)
C
Chuck Lever 已提交
625
{
626
	__be32 *p, *rdma_argp;
C
Chuck Lever 已提交
627 628 629
	unsigned int hdr_len;

	rdma_argp = rq_arg->head[0].iov_base;
630
	xdr_init_decode(&rctxt->rc_stream, rq_arg, rdma_argp, NULL);
C
Chuck Lever 已提交
631

632 633 634 635 636 637 638 639 640
	p = xdr_inline_decode(&rctxt->rc_stream,
			      rpcrdma_fixed_maxsz * sizeof(*p));
	if (unlikely(!p))
		goto out_short;
	p++;
	if (*p != rpcrdma_version)
		goto out_version;
	p += 2;
	switch (*p) {
C
Chuck Lever 已提交
641 642 643 644 645 646 647 648 649 650 651 652
	case rdma_msg:
		break;
	case rdma_nomsg:
		break;
	case rdma_done:
		goto out_drop;
	case rdma_error:
		goto out_drop;
	default:
		goto out_proc;
	}

653
	if (!xdr_check_read_list(rctxt))
C
Chuck Lever 已提交
654
		goto out_inval;
655
	if (!xdr_check_write_list(rctxt))
C
Chuck Lever 已提交
656
		goto out_inval;
657
	if (!xdr_check_reply_chunk(rctxt))
C
Chuck Lever 已提交
658 659
		goto out_inval;

660 661
	rq_arg->head[0].iov_base = rctxt->rc_stream.p;
	hdr_len = xdr_stream_pos(&rctxt->rc_stream);
C
Chuck Lever 已提交
662
	rq_arg->head[0].iov_len -= hdr_len;
663
	rq_arg->len -= hdr_len;
664
	trace_svcrdma_decode_rqst(rdma_argp, hdr_len);
C
Chuck Lever 已提交
665 666 667
	return hdr_len;

out_short:
668
	trace_svcrdma_decode_short(rq_arg->len);
C
Chuck Lever 已提交
669 670 671
	return -EINVAL;

out_version:
672
	trace_svcrdma_decode_badvers(rdma_argp);
C
Chuck Lever 已提交
673 674 675
	return -EPROTONOSUPPORT;

out_drop:
676
	trace_svcrdma_decode_drop(rdma_argp);
C
Chuck Lever 已提交
677 678 679
	return 0;

out_proc:
680
	trace_svcrdma_decode_badproc(rdma_argp);
C
Chuck Lever 已提交
681 682 683
	return -EINVAL;

out_inval:
684
	trace_svcrdma_decode_parse(rdma_argp);
C
Chuck Lever 已提交
685 686 687
	return -EINVAL;
}

688
static void rdma_read_complete(struct svc_rqst *rqstp,
689
			       struct svc_rdma_recv_ctxt *head)
T
Tom Tucker 已提交
690 691 692
{
	int page_no;

693 694 695
	/* Move Read chunk pages to rqstp so that they will be released
	 * when svc_process is done with them.
	 */
696
	for (page_no = 0; page_no < head->rc_page_count; page_no++) {
T
Tom Tucker 已提交
697
		put_page(rqstp->rq_pages[page_no]);
698
		rqstp->rq_pages[page_no] = head->rc_pages[page_no];
T
Tom Tucker 已提交
699
	}
700
	head->rc_page_count = 0;
701

T
Tom Tucker 已提交
702
	/* Point rq_arg.pages past header */
703 704
	rqstp->rq_arg.pages = &rqstp->rq_pages[head->rc_hdr_count];
	rqstp->rq_arg.page_len = head->rc_arg.page_len;
T
Tom Tucker 已提交
705 706

	/* rq_respages starts after the last arg page */
707
	rqstp->rq_respages = &rqstp->rq_pages[page_no];
T
Tom Tucker 已提交
708
	rqstp->rq_next_page = rqstp->rq_respages + 1;
T
Tom Tucker 已提交
709 710

	/* Rebuild rq_arg head and tail. */
711 712 713 714
	rqstp->rq_arg.head[0] = head->rc_arg.head[0];
	rqstp->rq_arg.tail[0] = head->rc_arg.tail[0];
	rqstp->rq_arg.len = head->rc_arg.len;
	rqstp->rq_arg.buflen = head->rc_arg.buflen;
T
Tom Tucker 已提交
715 716
}

C
Chuck Lever 已提交
717 718 719
static void svc_rdma_send_error(struct svcxprt_rdma *xprt,
				__be32 *rdma_argp, int status)
{
720
	struct svc_rdma_send_ctxt *ctxt;
721
	__be32 *p;
C
Chuck Lever 已提交
722 723
	int ret;

724 725
	ctxt = svc_rdma_send_ctxt_get(xprt);
	if (!ctxt)
C
Chuck Lever 已提交
726 727
		return;

728 729 730 731 732
	p = xdr_reserve_space(&ctxt->sc_stream,
			      rpcrdma_fixed_maxsz * sizeof(*p));
	if (!p)
		goto put_ctxt;

C
Chuck Lever 已提交
733 734 735
	*p++ = *rdma_argp;
	*p++ = *(rdma_argp + 1);
	*p++ = xprt->sc_fc_credits;
736 737
	*p = rdma_error;

738 739
	switch (status) {
	case -EPROTONOSUPPORT:
740 741 742 743
		p = xdr_reserve_space(&ctxt->sc_stream, 3 * sizeof(*p));
		if (!p)
			goto put_ctxt;

C
Chuck Lever 已提交
744 745
		*p++ = err_vers;
		*p++ = rpcrdma_version;
746
		*p = rpcrdma_version;
747 748 749
		trace_svcrdma_err_vers(*rdma_argp);
		break;
	default:
750 751 752 753 754
		p = xdr_reserve_space(&ctxt->sc_stream, sizeof(*p));
		if (!p)
			goto put_ctxt;

		*p = err_chunk;
755
		trace_svcrdma_err_chunk(*rdma_argp);
C
Chuck Lever 已提交
756
	}
757

758
	ctxt->sc_send_wr.num_sge = 1;
C
Chuck Lever 已提交
759
	ctxt->sc_send_wr.opcode = IB_WR_SEND;
760
	ctxt->sc_sges[0].length = ctxt->sc_hdrbuf.len;
C
Chuck Lever 已提交
761
	ret = svc_rdma_send(xprt, &ctxt->sc_send_wr);
762
	if (ret)
763 764 765 766 767
		goto put_ctxt;
	return;

put_ctxt:
	svc_rdma_send_ctxt_put(xprt, ctxt);
C
Chuck Lever 已提交
768 769
}

770 771 772 773 774
/* By convention, backchannel calls arrive via rdma_msg type
 * messages, and never populate the chunk lists. This makes
 * the RPC/RDMA header small and fixed in size, so it is
 * straightforward to check the RPC header's direction field.
 */
775 776
static bool svc_rdma_is_backchannel_reply(struct svc_xprt *xprt,
					  __be32 *rdma_resp)
777
{
778
	__be32 *p;
779 780 781 782

	if (!xprt->xpt_bc_xprt)
		return false;

783 784
	p = rdma_resp + 3;
	if (*p++ != rdma_msg)
785
		return false;
786 787

	if (*p++ != xdr_zero)
788
		return false;
789
	if (*p++ != xdr_zero)
790
		return false;
791
	if (*p++ != xdr_zero)
792 793
		return false;

794 795
	/* XID sanity */
	if (*p++ != *rdma_resp)
796 797
		return false;
	/* call direction */
798
	if (*p == cpu_to_be32(RPC_CALL))
799 800 801 802 803
		return false;

	return true;
}

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
/**
 * svc_rdma_recvfrom - Receive an RPC call
 * @rqstp: request structure into which to receive an RPC Call
 *
 * Returns:
 *	The positive number of bytes in the RPC Call message,
 *	%0 if there were no Calls ready to return,
 *	%-EINVAL if the Read chunk data is too large,
 *	%-ENOMEM if rdma_rw context pool was exhausted,
 *	%-ENOTCONN if posting failed (connection is lost),
 *	%-EIO if rdma_rw initialization failed (DMA mapping, etc).
 *
 * Called in a loop when XPT_DATA is set. XPT_DATA is cleared only
 * when there are no remaining ctxt's to process.
 *
 * The next ctxt is removed from the "receive" lists.
 *
 * - If the ctxt completes a Read, then finish assembling the Call
 *   message and return the number of bytes in the message.
 *
 * - If the ctxt completes a Receive, then construct the Call
 *   message from the contents of the Receive buffer.
 *
 *   - If there are no Read chunks in this message, then finish
 *     assembling the Call message and return the number of bytes
 *     in the message.
 *
 *   - If there are Read chunks in this message, post Read WRs to
 *     pull that payload and return 0.
T
Tom Tucker 已提交
833 834 835 836 837 838
 */
int svc_rdma_recvfrom(struct svc_rqst *rqstp)
{
	struct svc_xprt *xprt = rqstp->rq_xprt;
	struct svcxprt_rdma *rdma_xprt =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);
839
	struct svc_rdma_recv_ctxt *ctxt;
840
	__be32 *p;
841
	int ret;
T
Tom Tucker 已提交
842

843 844
	rqstp->rq_xprt_ctxt = NULL;

845
	spin_lock(&rdma_xprt->sc_rq_dto_lock);
846 847 848
	ctxt = svc_rdma_next_recv_ctxt(&rdma_xprt->sc_read_complete_q);
	if (ctxt) {
		list_del(&ctxt->rc_list);
849
		spin_unlock(&rdma_xprt->sc_rq_dto_lock);
850 851
		rdma_read_complete(rqstp, ctxt);
		goto complete;
852 853 854
	}
	ctxt = svc_rdma_next_recv_ctxt(&rdma_xprt->sc_rq_dto_q);
	if (!ctxt) {
855
		/* No new incoming requests, terminate the loop */
T
Tom Tucker 已提交
856
		clear_bit(XPT_DATA, &xprt->xpt_flags);
857 858
		spin_unlock(&rdma_xprt->sc_rq_dto_lock);
		return 0;
T
Tom Tucker 已提交
859
	}
860
	list_del(&ctxt->rc_list);
861
	spin_unlock(&rdma_xprt->sc_rq_dto_lock);
862

T
Tom Tucker 已提交
863 864
	atomic_inc(&rdma_stat_recv);

865
	svc_rdma_build_arg_xdr(rqstp, ctxt);
T
Tom Tucker 已提交
866

867 868 869 870 871 872
	/* Prevent svc_xprt_release from releasing pages in rq_pages
	 * if we return 0 or an error.
	 */
	rqstp->rq_respages = rqstp->rq_pages;
	rqstp->rq_next_page = rqstp->rq_respages;

873
	p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
874
	ret = svc_rdma_xdr_decode_req(&rqstp->rq_arg, ctxt);
875 876
	if (ret < 0)
		goto out_err;
877 878
	if (ret == 0)
		goto out_drop;
879
	rqstp->rq_xprt_hlen = ret;
T
Tom Tucker 已提交
880

881 882 883
	if (svc_rdma_is_backchannel_reply(xprt, p))
		goto out_backchannel;

884
	svc_rdma_get_inv_rkey(rdma_xprt, ctxt);
885

886 887 888
	p += rpcrdma_fixed_maxsz;
	if (*p != xdr_zero)
		goto out_readchunk;
T
Tom Tucker 已提交
889

890
complete:
891
	rqstp->rq_xprt_ctxt = ctxt;
T
Tom Tucker 已提交
892 893
	rqstp->rq_prot = IPPROTO_MAX;
	svc_xprt_copy_addrs(rqstp, xprt);
894
	return rqstp->rq_arg.len;
T
Tom Tucker 已提交
895

896 897 898 899 900 901
out_readchunk:
	ret = svc_rdma_recv_read_chunk(rdma_xprt, rqstp, ctxt, p);
	if (ret < 0)
		goto out_postfail;
	return 0;

902
out_err:
903
	svc_rdma_send_error(rdma_xprt, p, ret);
904
	svc_rdma_recv_ctxt_put(rdma_xprt, ctxt);
905 906
	return 0;

907 908 909
out_postfail:
	if (ret == -EINVAL)
		svc_rdma_send_error(rdma_xprt, p, ret);
910
	svc_rdma_recv_ctxt_put(rdma_xprt, ctxt);
911
	return ret;
912

913 914
out_backchannel:
	svc_rdma_handle_bc_reply(rqstp, ctxt);
915
out_drop:
916
	svc_rdma_recv_ctxt_put(rdma_xprt, ctxt);
917
	return 0;
T
Tom Tucker 已提交
918
}