svc_rdma_transport.c 36.9 KB
Newer Older
1
/*
S
Steve Wise 已提交
2
 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
3 4 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
 * Copyright (c) 2005-2007 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>
 */

#include <linux/sunrpc/svc_xprt.h>
44
#include <linux/sunrpc/addr.h>
45 46
#include <linux/sunrpc/debug.h>
#include <linux/sunrpc/rpc_rdma.h>
47
#include <linux/interrupt.h>
48
#include <linux/sched.h>
49
#include <linux/slab.h>
50
#include <linux/spinlock.h>
51
#include <linux/workqueue.h>
52 53 54
#include <rdma/ib_verbs.h>
#include <rdma/rdma_cm.h>
#include <linux/sunrpc/svc_rdma.h>
55
#include <linux/export.h>
56
#include "xprt_rdma.h"
57 58 59

#define RPCDBG_FACILITY	RPCDBG_SVCXPRT

60
static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *, int);
61
static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
62
					struct net *net,
63 64 65 66 67 68 69
					struct sockaddr *sa, int salen,
					int flags);
static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt);
static void svc_rdma_release_rqst(struct svc_rqst *);
static void svc_rdma_detach(struct svc_xprt *xprt);
static void svc_rdma_free(struct svc_xprt *xprt);
static int svc_rdma_has_wspace(struct svc_xprt *xprt);
70
static int svc_rdma_secure_port(struct svc_rqst *);
71
static void svc_rdma_kill_temp_xprt(struct svc_xprt *);
72 73 74 75 76 77 78 79 80 81 82

static struct svc_xprt_ops svc_rdma_ops = {
	.xpo_create = svc_rdma_create,
	.xpo_recvfrom = svc_rdma_recvfrom,
	.xpo_sendto = svc_rdma_sendto,
	.xpo_release_rqst = svc_rdma_release_rqst,
	.xpo_detach = svc_rdma_detach,
	.xpo_free = svc_rdma_free,
	.xpo_prep_reply_hdr = svc_rdma_prep_reply_hdr,
	.xpo_has_wspace = svc_rdma_has_wspace,
	.xpo_accept = svc_rdma_accept,
83
	.xpo_secure_port = svc_rdma_secure_port,
84
	.xpo_kill_temp_xprt = svc_rdma_kill_temp_xprt,
85 86 87 88 89 90
};

struct svc_xprt_class svc_rdma_class = {
	.xcl_name = "rdma",
	.xcl_owner = THIS_MODULE,
	.xcl_ops = &svc_rdma_ops,
91
	.xcl_max_payload = RPCSVC_MAXPAYLOAD_RDMA,
92
	.xcl_ident = XPRT_TRANSPORT_RDMA,
93 94
};

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 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 147 148 149 150 151
#if defined(CONFIG_SUNRPC_BACKCHANNEL)
static struct svc_xprt *svc_rdma_bc_create(struct svc_serv *, struct net *,
					   struct sockaddr *, int, int);
static void svc_rdma_bc_detach(struct svc_xprt *);
static void svc_rdma_bc_free(struct svc_xprt *);

static struct svc_xprt_ops svc_rdma_bc_ops = {
	.xpo_create = svc_rdma_bc_create,
	.xpo_detach = svc_rdma_bc_detach,
	.xpo_free = svc_rdma_bc_free,
	.xpo_prep_reply_hdr = svc_rdma_prep_reply_hdr,
	.xpo_secure_port = svc_rdma_secure_port,
};

struct svc_xprt_class svc_rdma_bc_class = {
	.xcl_name = "rdma-bc",
	.xcl_owner = THIS_MODULE,
	.xcl_ops = &svc_rdma_bc_ops,
	.xcl_max_payload = (1024 - RPCRDMA_HDRLEN_MIN)
};

static struct svc_xprt *svc_rdma_bc_create(struct svc_serv *serv,
					   struct net *net,
					   struct sockaddr *sa, int salen,
					   int flags)
{
	struct svcxprt_rdma *cma_xprt;
	struct svc_xprt *xprt;

	cma_xprt = rdma_create_xprt(serv, 0);
	if (!cma_xprt)
		return ERR_PTR(-ENOMEM);
	xprt = &cma_xprt->sc_xprt;

	svc_xprt_init(net, &svc_rdma_bc_class, xprt, serv);
	serv->sv_bc_xprt = xprt;

	dprintk("svcrdma: %s(%p)\n", __func__, xprt);
	return xprt;
}

static void svc_rdma_bc_detach(struct svc_xprt *xprt)
{
	dprintk("svcrdma: %s(%p)\n", __func__, xprt);
}

static void svc_rdma_bc_free(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);

	dprintk("svcrdma: %s(%p)\n", __func__, xprt);
	if (xprt)
		kfree(rdma);
}
#endif	/* CONFIG_SUNRPC_BACKCHANNEL */

152 153
static struct svc_rdma_op_ctxt *alloc_ctxt(struct svcxprt_rdma *xprt,
					   gfp_t flags)
154 155 156
{
	struct svc_rdma_op_ctxt *ctxt;

157 158 159
	ctxt = kmalloc(sizeof(*ctxt), flags);
	if (ctxt) {
		ctxt->xprt = xprt;
160
		INIT_LIST_HEAD(&ctxt->list);
161 162 163 164 165 166
	}
	return ctxt;
}

static bool svc_rdma_prealloc_ctxts(struct svcxprt_rdma *xprt)
{
167
	unsigned int i;
168 169 170 171

	/* Each RPC/RDMA credit can consume a number of send
	 * and receive WQEs. One ctxt is allocated for each.
	 */
172
	i = xprt->sc_sq_depth + xprt->sc_rq_depth;
173 174 175 176 177 178 179 180 181

	while (i--) {
		struct svc_rdma_op_ctxt *ctxt;

		ctxt = alloc_ctxt(xprt, GFP_KERNEL);
		if (!ctxt) {
			dprintk("svcrdma: No memory for RDMA ctxt\n");
			return false;
		}
182
		list_add(&ctxt->list, &xprt->sc_ctxts);
183 184 185 186 187 188 189 190 191 192 193 194 195 196
	}
	return true;
}

struct svc_rdma_op_ctxt *svc_rdma_get_context(struct svcxprt_rdma *xprt)
{
	struct svc_rdma_op_ctxt *ctxt = NULL;

	spin_lock_bh(&xprt->sc_ctxt_lock);
	xprt->sc_ctxt_used++;
	if (list_empty(&xprt->sc_ctxts))
		goto out_empty;

	ctxt = list_first_entry(&xprt->sc_ctxts,
197 198
				struct svc_rdma_op_ctxt, list);
	list_del(&ctxt->list);
199 200 201
	spin_unlock_bh(&xprt->sc_ctxt_lock);

out:
202
	ctxt->count = 0;
203
	ctxt->mapped_sges = 0;
T
Tom Tucker 已提交
204
	ctxt->frmr = NULL;
205
	return ctxt;
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221

out_empty:
	/* Either pre-allocation missed the mark, or send
	 * queue accounting is broken.
	 */
	spin_unlock_bh(&xprt->sc_ctxt_lock);

	ctxt = alloc_ctxt(xprt, GFP_NOIO);
	if (ctxt)
		goto out;

	spin_lock_bh(&xprt->sc_ctxt_lock);
	xprt->sc_ctxt_used--;
	spin_unlock_bh(&xprt->sc_ctxt_lock);
	WARN_ONCE(1, "svcrdma: empty RDMA ctxt list?\n");
	return NULL;
222 223
}

224
void svc_rdma_unmap_dma(struct svc_rdma_op_ctxt *ctxt)
225 226
{
	struct svcxprt_rdma *xprt = ctxt->xprt;
227 228
	struct ib_device *device = xprt->sc_cm_id->device;
	u32 lkey = xprt->sc_pd->local_dma_lkey;
C
Chuck Lever 已提交
229
	unsigned int i;
230

C
Chuck Lever 已提交
231
	for (i = 0; i < ctxt->mapped_sges; i++) {
T
Tom Tucker 已提交
232 233
		/*
		 * Unmap the DMA addr in the SGE if the lkey matches
C
Christoph Hellwig 已提交
234
		 * the local_dma_lkey, otherwise, ignore it since it is
T
Tom Tucker 已提交
235 236 237
		 * an FRMR lkey and will be unmapped later when the
		 * last WR that uses it completes.
		 */
C
Chuck Lever 已提交
238
		if (ctxt->sge[i].lkey == lkey)
239
			ib_dma_unmap_page(device,
T
Tom Tucker 已提交
240 241 242
					    ctxt->sge[i].addr,
					    ctxt->sge[i].length,
					    ctxt->direction);
243
	}
244
	ctxt->mapped_sges = 0;
245 246
}

247 248
void svc_rdma_put_context(struct svc_rdma_op_ctxt *ctxt, int free_pages)
{
249
	struct svcxprt_rdma *xprt = ctxt->xprt;
250 251 252 253 254 255
	int i;

	if (free_pages)
		for (i = 0; i < ctxt->count; i++)
			put_page(ctxt->pages[i]);

256 257
	spin_lock_bh(&xprt->sc_ctxt_lock);
	xprt->sc_ctxt_used--;
258
	list_add(&ctxt->list, &xprt->sc_ctxts);
259 260 261 262 263 264 265 266 267
	spin_unlock_bh(&xprt->sc_ctxt_lock);
}

static void svc_rdma_destroy_ctxts(struct svcxprt_rdma *xprt)
{
	while (!list_empty(&xprt->sc_ctxts)) {
		struct svc_rdma_op_ctxt *ctxt;

		ctxt = list_first_entry(&xprt->sc_ctxts,
268 269
					struct svc_rdma_op_ctxt, list);
		list_del(&ctxt->list);
270 271
		kfree(ctxt);
	}
272 273
}

274
static struct svc_rdma_req_map *alloc_req_map(gfp_t flags)
275 276
{
	struct svc_rdma_req_map *map;
277 278 279 280 281 282 283 284 285

	map = kmalloc(sizeof(*map), flags);
	if (map)
		INIT_LIST_HEAD(&map->free);
	return map;
}

static bool svc_rdma_prealloc_maps(struct svcxprt_rdma *xprt)
{
286
	unsigned int i;
287 288 289 290 291 292 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

	/* One for each receive buffer on this connection. */
	i = xprt->sc_max_requests;

	while (i--) {
		struct svc_rdma_req_map *map;

		map = alloc_req_map(GFP_KERNEL);
		if (!map) {
			dprintk("svcrdma: No memory for request map\n");
			return false;
		}
		list_add(&map->free, &xprt->sc_maps);
	}
	return true;
}

struct svc_rdma_req_map *svc_rdma_get_req_map(struct svcxprt_rdma *xprt)
{
	struct svc_rdma_req_map *map = NULL;

	spin_lock(&xprt->sc_map_lock);
	if (list_empty(&xprt->sc_maps))
		goto out_empty;

	map = list_first_entry(&xprt->sc_maps,
			       struct svc_rdma_req_map, free);
	list_del_init(&map->free);
	spin_unlock(&xprt->sc_map_lock);

out:
318 319
	map->count = 0;
	return map;
320 321 322 323 324 325 326 327 328 329 330

out_empty:
	spin_unlock(&xprt->sc_map_lock);

	/* Pre-allocation amount was incorrect */
	map = alloc_req_map(GFP_NOIO);
	if (map)
		goto out;

	WARN_ONCE(1, "svcrdma: empty request map list?\n");
	return NULL;
331 332
}

333 334
void svc_rdma_put_req_map(struct svcxprt_rdma *xprt,
			  struct svc_rdma_req_map *map)
335
{
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
	spin_lock(&xprt->sc_map_lock);
	list_add(&map->free, &xprt->sc_maps);
	spin_unlock(&xprt->sc_map_lock);
}

static void svc_rdma_destroy_maps(struct svcxprt_rdma *xprt)
{
	while (!list_empty(&xprt->sc_maps)) {
		struct svc_rdma_req_map *map;

		map = list_first_entry(&xprt->sc_maps,
				       struct svc_rdma_req_map, free);
		list_del(&map->free);
		kfree(map);
	}
351 352
}

353 354 355 356 357 358 359 360 361 362 363
/* QP event handler */
static void qp_event_handler(struct ib_event *event, void *context)
{
	struct svc_xprt *xprt = context;

	switch (event->event) {
	/* These are considered benign events */
	case IB_EVENT_PATH_MIG:
	case IB_EVENT_COMM_EST:
	case IB_EVENT_SQ_DRAINED:
	case IB_EVENT_QP_LAST_WQE_REACHED:
364 365 366
		dprintk("svcrdma: QP event %s (%d) received for QP=%p\n",
			ib_event_msg(event->event), event->event,
			event->element.qp);
367 368 369 370 371 372 373 374
		break;
	/* These are considered fatal events */
	case IB_EVENT_PATH_MIG_ERR:
	case IB_EVENT_QP_FATAL:
	case IB_EVENT_QP_REQ_ERR:
	case IB_EVENT_QP_ACCESS_ERR:
	case IB_EVENT_DEVICE_FATAL:
	default:
375
		dprintk("svcrdma: QP ERROR event %s (%d) received for QP=%p, "
376
			"closing transport\n",
377 378
			ib_event_msg(event->event), event->event,
			event->element.qp);
379 380 381 382 383
		set_bit(XPT_CLOSE, &xprt->xpt_flags);
		break;
	}
}

384 385 386 387
/**
 * svc_rdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
 * @cq:        completion queue
 * @wc:        completed WR
388 389
 *
 */
390
static void svc_rdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
391
{
392 393 394
	struct svcxprt_rdma *xprt = cq->cq_context;
	struct ib_cqe *cqe = wc->wr_cqe;
	struct svc_rdma_op_ctxt *ctxt;
395

396 397 398
	/* WARNING: Only wc->wr_cqe and wc->status are reliable */
	ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
	svc_rdma_unmap_dma(ctxt);
399

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

403 404 405
	/* All wc fields are now known to be valid */
	ctxt->byte_len = wc->byte_len;
	spin_lock(&xprt->sc_rq_dto_lock);
406
	list_add_tail(&ctxt->list, &xprt->sc_rq_dto_q);
407
	spin_unlock(&xprt->sc_rq_dto_lock);
408 409

	set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
	if (test_bit(RDMAXPRT_CONN_PENDING, &xprt->sc_flags))
		goto out;
	svc_xprt_enqueue(&xprt->sc_xprt);
	goto out;

flushed:
	if (wc->status != IB_WC_WR_FLUSH_ERR)
		pr_warn("svcrdma: receive: %s (%u/0x%x)\n",
			ib_wc_status_msg(wc->status),
			wc->status, wc->vendor_err);
	set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
	svc_rdma_put_context(ctxt, 1);

out:
	svc_xprt_put(&xprt->sc_xprt);
425 426
}

427 428 429
static void svc_rdma_send_wc_common(struct svcxprt_rdma *xprt,
				    struct ib_wc *wc,
				    const char *opname)
430
{
431 432
	if (wc->status != IB_WC_SUCCESS)
		goto err;
433

434
out:
435
	atomic_inc(&xprt->sc_sq_avail);
436 437
	wake_up(&xprt->sc_send_wait);
	return;
438

439 440 441 442 443 444 445 446
err:
	set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
	if (wc->status != IB_WC_WR_FLUSH_ERR)
		pr_err("svcrdma: %s: %s (%u/0x%x)\n",
		       opname, ib_wc_status_msg(wc->status),
		       wc->status, wc->vendor_err);
	goto out;
}
447

448 449 450 451
static void svc_rdma_send_wc_common_put(struct ib_cq *cq, struct ib_wc *wc,
					const char *opname)
{
	struct svcxprt_rdma *xprt = cq->cq_context;
452

453 454 455
	svc_rdma_send_wc_common(xprt, wc, opname);
	svc_xprt_put(&xprt->sc_xprt);
}
456

457 458 459 460 461 462 463 464 465 466
/**
 * svc_rdma_wc_send - Invoked by RDMA provider for each polled Send WC
 * @cq:        completion queue
 * @wc:        completed WR
 *
 */
void svc_rdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
{
	struct ib_cqe *cqe = wc->wr_cqe;
	struct svc_rdma_op_ctxt *ctxt;
467

468
	svc_rdma_send_wc_common_put(cq, wc, "send");
469

470 471 472
	ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
	svc_rdma_unmap_dma(ctxt);
	svc_rdma_put_context(ctxt, 1);
473 474
}

475 476 477 478
/**
 * svc_rdma_wc_write - Invoked by RDMA provider for each polled Write WC
 * @cq:        completion queue
 * @wc:        completed WR
479
 *
480
 */
481
void svc_rdma_wc_write(struct ib_cq *cq, struct ib_wc *wc)
482
{
483 484
	struct ib_cqe *cqe = wc->wr_cqe;
	struct svc_rdma_op_ctxt *ctxt;
485

486
	svc_rdma_send_wc_common_put(cq, wc, "write");
S
Steve Wise 已提交
487

488 489 490 491
	ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
	svc_rdma_unmap_dma(ctxt);
	svc_rdma_put_context(ctxt, 0);
}
492

493 494 495 496 497 498 499 500 501 502
/**
 * svc_rdma_wc_reg - Invoked by RDMA provider for each polled FASTREG WC
 * @cq:        completion queue
 * @wc:        completed WR
 *
 */
void svc_rdma_wc_reg(struct ib_cq *cq, struct ib_wc *wc)
{
	svc_rdma_send_wc_common_put(cq, wc, "fastreg");
}
503

504 505 506 507 508 509 510 511 512 513 514
/**
 * svc_rdma_wc_read - Invoked by RDMA provider for each polled Read WC
 * @cq:        completion queue
 * @wc:        completed WR
 *
 */
void svc_rdma_wc_read(struct ib_cq *cq, struct ib_wc *wc)
{
	struct svcxprt_rdma *xprt = cq->cq_context;
	struct ib_cqe *cqe = wc->wr_cqe;
	struct svc_rdma_op_ctxt *ctxt;
515

516
	svc_rdma_send_wc_common(xprt, wc, "read");
517

518 519 520
	ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
	svc_rdma_unmap_dma(ctxt);
	svc_rdma_put_frmr(xprt, ctxt->frmr);
S
Steve Wise 已提交
521

522 523
	if (test_bit(RDMACTXT_F_LAST_CTXT, &ctxt->flags)) {
		struct svc_rdma_op_ctxt *read_hdr;
S
Steve Wise 已提交
524

525 526
		read_hdr = ctxt->read_hdr;
		spin_lock(&xprt->sc_rq_dto_lock);
527
		list_add_tail(&read_hdr->list,
528 529 530 531 532
			      &xprt->sc_read_complete_q);
		spin_unlock(&xprt->sc_rq_dto_lock);

		set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
		svc_xprt_enqueue(&xprt->sc_xprt);
533 534
	}

535 536
	svc_rdma_put_context(ctxt, 0);
	svc_xprt_put(&xprt->sc_xprt);
537 538
}

539 540 541 542 543 544 545
/**
 * svc_rdma_wc_inv - Invoked by RDMA provider for each polled LOCAL_INV WC
 * @cq:        completion queue
 * @wc:        completed WR
 *
 */
void svc_rdma_wc_inv(struct ib_cq *cq, struct ib_wc *wc)
546
{
547
	svc_rdma_send_wc_common_put(cq, wc, "localInv");
548 549 550 551 552 553 554 555 556
}

static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv,
					     int listener)
{
	struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL);

	if (!cma_xprt)
		return NULL;
557
	svc_xprt_init(&init_net, &svc_rdma_class, &cma_xprt->sc_xprt, serv);
558 559 560
	INIT_LIST_HEAD(&cma_xprt->sc_accept_q);
	INIT_LIST_HEAD(&cma_xprt->sc_rq_dto_q);
	INIT_LIST_HEAD(&cma_xprt->sc_read_complete_q);
T
Tom Tucker 已提交
561
	INIT_LIST_HEAD(&cma_xprt->sc_frmr_q);
562
	INIT_LIST_HEAD(&cma_xprt->sc_ctxts);
563
	INIT_LIST_HEAD(&cma_xprt->sc_maps);
564 565 566 567
	init_waitqueue_head(&cma_xprt->sc_send_wait);

	spin_lock_init(&cma_xprt->sc_lock);
	spin_lock_init(&cma_xprt->sc_rq_dto_lock);
T
Tom Tucker 已提交
568
	spin_lock_init(&cma_xprt->sc_frmr_q_lock);
569
	spin_lock_init(&cma_xprt->sc_ctxt_lock);
570
	spin_lock_init(&cma_xprt->sc_map_lock);
571

572
	if (listener)
573 574 575 576 577
		set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);

	return cma_xprt;
}

578
int svc_rdma_post_recv(struct svcxprt_rdma *xprt, gfp_t flags)
579 580 581 582
{
	struct ib_recv_wr recv_wr, *bad_recv_wr;
	struct svc_rdma_op_ctxt *ctxt;
	struct page *page;
583
	dma_addr_t pa;
584 585 586 587 588 589 590
	int sge_no;
	int buflen;
	int ret;

	ctxt = svc_rdma_get_context(xprt);
	buflen = 0;
	ctxt->direction = DMA_FROM_DEVICE;
591
	ctxt->cqe.done = svc_rdma_wc_receive;
592
	for (sge_no = 0; buflen < xprt->sc_max_req_size; sge_no++) {
593 594 595 596
		if (sge_no >= xprt->sc_max_sge) {
			pr_err("svcrdma: Too many sges (%d)\n", sge_no);
			goto err_put_ctxt;
		}
597 598 599
		page = alloc_page(flags);
		if (!page)
			goto err_put_ctxt;
600
		ctxt->pages[sge_no] = page;
601 602
		pa = ib_dma_map_page(xprt->sc_cm_id->device,
				     page, 0, PAGE_SIZE,
603
				     DMA_FROM_DEVICE);
604 605
		if (ib_dma_mapping_error(xprt->sc_cm_id->device, pa))
			goto err_put_ctxt;
606
		svc_rdma_count_mappings(xprt, ctxt);
607 608
		ctxt->sge[sge_no].addr = pa;
		ctxt->sge[sge_no].length = PAGE_SIZE;
C
Christoph Hellwig 已提交
609
		ctxt->sge[sge_no].lkey = xprt->sc_pd->local_dma_lkey;
610
		ctxt->count = sge_no + 1;
611 612 613 614 615
		buflen += PAGE_SIZE;
	}
	recv_wr.next = NULL;
	recv_wr.sg_list = &ctxt->sge[0];
	recv_wr.num_sge = ctxt->count;
616
	recv_wr.wr_cqe = &ctxt->cqe;
617

618
	svc_xprt_get(&xprt->sc_xprt);
619
	ret = ib_post_recv(xprt->sc_qp, &recv_wr, &bad_recv_wr);
620
	if (ret) {
S
Steve Wise 已提交
621
		svc_rdma_unmap_dma(ctxt);
622
		svc_rdma_put_context(ctxt, 1);
S
Steve Wise 已提交
623
		svc_xprt_put(&xprt->sc_xprt);
624
	}
625
	return ret;
626 627

 err_put_ctxt:
628
	svc_rdma_unmap_dma(ctxt);
629 630
	svc_rdma_put_context(ctxt, 1);
	return -ENOMEM;
631 632
}

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
int svc_rdma_repost_recv(struct svcxprt_rdma *xprt, gfp_t flags)
{
	int ret = 0;

	ret = svc_rdma_post_recv(xprt, flags);
	if (ret) {
		pr_err("svcrdma: could not post a receive buffer, err=%d.\n",
		       ret);
		pr_err("svcrdma: closing transport %p.\n", xprt);
		set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
		ret = -ENOTCONN;
	}
	return ret;
}

648 649 650 651 652 653 654 655 656
static void
svc_rdma_parse_connect_private(struct svcxprt_rdma *newxprt,
			       struct rdma_conn_param *param)
{
	const struct rpcrdma_connect_private *pmsg = param->private_data;

	if (pmsg &&
	    pmsg->cp_magic == rpcrdma_cmp_magic &&
	    pmsg->cp_version == RPCRDMA_CMP_VERSION) {
657 658 659 660 661
		newxprt->sc_snd_w_inv = pmsg->cp_flags &
					RPCRDMA_CMP_F_SND_W_INV_OK;

		dprintk("svcrdma: client send_size %u, recv_size %u "
			"remote inv %ssupported\n",
662
			rpcrdma_decode_buffer_size(pmsg->cp_send_size),
663 664
			rpcrdma_decode_buffer_size(pmsg->cp_recv_size),
			newxprt->sc_snd_w_inv ? "" : "un");
665 666 667
	}
}

668 669 670 671 672 673 674 675 676 677 678
/*
 * This function handles the CONNECT_REQUEST event on a listening
 * endpoint. It is passed the cma_id for the _new_ connection. The context in
 * this cma_id is inherited from the listening cma_id and is the svc_xprt
 * structure for the listening endpoint.
 *
 * This function creates a new xprt for the new connection and enqueues it on
 * the accept queue for the listent xprt. When the listen thread is kicked, it
 * will call the recvfrom method on the listen xprt which will accept the new
 * connection.
 */
679 680
static void handle_connect_req(struct rdma_cm_id *new_cma_id,
			       struct rdma_conn_param *param)
681 682 683
{
	struct svcxprt_rdma *listen_xprt = new_cma_id->context;
	struct svcxprt_rdma *newxprt;
684
	struct sockaddr *sa;
685 686 687 688 689 690 691 692 693 694 695

	/* Create a new transport */
	newxprt = rdma_create_xprt(listen_xprt->sc_xprt.xpt_server, 0);
	if (!newxprt) {
		dprintk("svcrdma: failed to create new transport\n");
		return;
	}
	newxprt->sc_cm_id = new_cma_id;
	new_cma_id->context = newxprt;
	dprintk("svcrdma: Creating newxprt=%p, cm_id=%p, listenxprt=%p\n",
		newxprt, newxprt->sc_cm_id, listen_xprt);
696
	svc_rdma_parse_connect_private(newxprt, param);
697

698
	/* Save client advertised inbound read limit for use later in accept. */
699
	newxprt->sc_ord = param->initiator_depth;
700

701 702 703 704 705 706
	/* Set the local and remote addresses in the transport */
	sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr;
	svc_xprt_set_remote(&newxprt->sc_xprt, sa, svc_addr_len(sa));
	sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr;
	svc_xprt_set_local(&newxprt->sc_xprt, sa, svc_addr_len(sa));

707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
	/*
	 * Enqueue the new transport on the accept queue of the listening
	 * transport
	 */
	spin_lock_bh(&listen_xprt->sc_lock);
	list_add_tail(&newxprt->sc_accept_q, &listen_xprt->sc_accept_q);
	spin_unlock_bh(&listen_xprt->sc_lock);

	set_bit(XPT_CONN, &listen_xprt->sc_xprt.xpt_flags);
	svc_xprt_enqueue(&listen_xprt->sc_xprt);
}

/*
 * Handles events generated on the listening endpoint. These events will be
 * either be incoming connect requests or adapter removal  events.
 */
static int rdma_listen_handler(struct rdma_cm_id *cma_id,
			       struct rdma_cm_event *event)
{
	struct svcxprt_rdma *xprt = cma_id->context;
	int ret = 0;

	switch (event->event) {
	case RDMA_CM_EVENT_CONNECT_REQUEST:
		dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
732 733
			"event = %s (%d)\n", cma_id, cma_id->context,
			rdma_event_msg(event->event), event->event);
734
		handle_connect_req(cma_id, &event->param.conn);
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
		break;

	case RDMA_CM_EVENT_ESTABLISHED:
		/* Accept complete */
		dprintk("svcrdma: Connection completed on LISTEN xprt=%p, "
			"cm_id=%p\n", xprt, cma_id);
		break;

	case RDMA_CM_EVENT_DEVICE_REMOVAL:
		dprintk("svcrdma: Device removal xprt=%p, cm_id=%p\n",
			xprt, cma_id);
		if (xprt)
			set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
		break;

	default:
		dprintk("svcrdma: Unexpected event on listening endpoint %p, "
752 753
			"event = %s (%d)\n", cma_id,
			rdma_event_msg(event->event), event->event);
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
		break;
	}

	return ret;
}

static int rdma_cma_handler(struct rdma_cm_id *cma_id,
			    struct rdma_cm_event *event)
{
	struct svc_xprt *xprt = cma_id->context;
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);
	switch (event->event) {
	case RDMA_CM_EVENT_ESTABLISHED:
		/* Accept complete */
769
		svc_xprt_get(xprt);
770 771 772 773 774 775 776 777 778 779 780
		dprintk("svcrdma: Connection completed on DTO xprt=%p, "
			"cm_id=%p\n", xprt, cma_id);
		clear_bit(RDMAXPRT_CONN_PENDING, &rdma->sc_flags);
		svc_xprt_enqueue(xprt);
		break;
	case RDMA_CM_EVENT_DISCONNECTED:
		dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n",
			xprt, cma_id);
		if (xprt) {
			set_bit(XPT_CLOSE, &xprt->xpt_flags);
			svc_xprt_enqueue(xprt);
781
			svc_xprt_put(xprt);
782 783 784 785
		}
		break;
	case RDMA_CM_EVENT_DEVICE_REMOVAL:
		dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
786 787
			"event = %s (%d)\n", cma_id, xprt,
			rdma_event_msg(event->event), event->event);
788 789 790
		if (xprt) {
			set_bit(XPT_CLOSE, &xprt->xpt_flags);
			svc_xprt_enqueue(xprt);
791
			svc_xprt_put(xprt);
792 793 794 795
		}
		break;
	default:
		dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
796 797
			"event = %s (%d)\n", cma_id,
			rdma_event_msg(event->event), event->event);
798 799 800 801 802 803 804 805 806
		break;
	}
	return 0;
}

/*
 * Create a listening RDMA service endpoint.
 */
static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
807
					struct net *net,
808 809 810 811 812 813 814 815
					struct sockaddr *sa, int salen,
					int flags)
{
	struct rdma_cm_id *listen_id;
	struct svcxprt_rdma *cma_xprt;
	int ret;

	dprintk("svcrdma: Creating RDMA socket\n");
S
Shirley Ma 已提交
816
	if ((sa->sa_family != AF_INET) && (sa->sa_family != AF_INET6)) {
817 818 819
		dprintk("svcrdma: Address family %d is not supported.\n", sa->sa_family);
		return ERR_PTR(-EAFNOSUPPORT);
	}
820 821
	cma_xprt = rdma_create_xprt(serv, 1);
	if (!cma_xprt)
822
		return ERR_PTR(-ENOMEM);
823

824 825
	listen_id = rdma_create_id(&init_net, rdma_listen_handler, cma_xprt,
				   RDMA_PS_TCP, IB_QPT_RC);
826
	if (IS_ERR(listen_id)) {
827 828 829
		ret = PTR_ERR(listen_id);
		dprintk("svcrdma: rdma_create_id failed = %d\n", ret);
		goto err0;
830
	}
831

S
Shirley Ma 已提交
832 833 834 835 836 837 838 839 840 841
	/* Allow both IPv4 and IPv6 sockets to bind a single port
	 * at the same time.
	 */
#if IS_ENABLED(CONFIG_IPV6)
	ret = rdma_set_afonly(listen_id, 1);
	if (ret) {
		dprintk("svcrdma: rdma_set_afonly failed = %d\n", ret);
		goto err1;
	}
#endif
842 843 844
	ret = rdma_bind_addr(listen_id, sa);
	if (ret) {
		dprintk("svcrdma: rdma_bind_addr failed = %d\n", ret);
845
		goto err1;
846 847 848 849 850 851
	}
	cma_xprt->sc_cm_id = listen_id;

	ret = rdma_listen(listen_id, RPCRDMA_LISTEN_BACKLOG);
	if (ret) {
		dprintk("svcrdma: rdma_listen failed = %d\n", ret);
852
		goto err1;
853 854 855 856 857 858 859 860 861 862
	}

	/*
	 * We need to use the address from the cm_id in case the
	 * caller specified 0 for the port number.
	 */
	sa = (struct sockaddr *)&cma_xprt->sc_cm_id->route.addr.src_addr;
	svc_xprt_set_local(&cma_xprt->sc_xprt, sa, salen);

	return &cma_xprt->sc_xprt;
863 864 865 866 867 868

 err1:
	rdma_destroy_id(listen_id);
 err0:
	kfree(cma_xprt);
	return ERR_PTR(ret);
869 870
}

T
Tom Tucker 已提交
871 872 873
static struct svc_rdma_fastreg_mr *rdma_alloc_frmr(struct svcxprt_rdma *xprt)
{
	struct ib_mr *mr;
874
	struct scatterlist *sg;
T
Tom Tucker 已提交
875
	struct svc_rdma_fastreg_mr *frmr;
876
	u32 num_sg;
T
Tom Tucker 已提交
877 878 879 880 881

	frmr = kmalloc(sizeof(*frmr), GFP_KERNEL);
	if (!frmr)
		goto err;

882 883
	num_sg = min_t(u32, RPCSVC_MAXPAGES, xprt->sc_frmr_pg_list_len);
	mr = ib_alloc_mr(xprt->sc_pd, IB_MR_TYPE_MEM_REG, num_sg);
884
	if (IS_ERR(mr))
T
Tom Tucker 已提交
885 886
		goto err_free_frmr;

887 888
	sg = kcalloc(RPCSVC_MAXPAGES, sizeof(*sg), GFP_KERNEL);
	if (!sg)
T
Tom Tucker 已提交
889 890
		goto err_free_mr;

891 892
	sg_init_table(sg, RPCSVC_MAXPAGES);

T
Tom Tucker 已提交
893
	frmr->mr = mr;
894
	frmr->sg = sg;
T
Tom Tucker 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	INIT_LIST_HEAD(&frmr->frmr_list);
	return frmr;

 err_free_mr:
	ib_dereg_mr(mr);
 err_free_frmr:
	kfree(frmr);
 err:
	return ERR_PTR(-ENOMEM);
}

static void rdma_dealloc_frmr_q(struct svcxprt_rdma *xprt)
{
	struct svc_rdma_fastreg_mr *frmr;

	while (!list_empty(&xprt->sc_frmr_q)) {
		frmr = list_entry(xprt->sc_frmr_q.next,
				  struct svc_rdma_fastreg_mr, frmr_list);
		list_del_init(&frmr->frmr_list);
914
		kfree(frmr->sg);
T
Tom Tucker 已提交
915 916 917 918 919 920 921 922 923 924 925 926 927 928
		ib_dereg_mr(frmr->mr);
		kfree(frmr);
	}
}

struct svc_rdma_fastreg_mr *svc_rdma_get_frmr(struct svcxprt_rdma *rdma)
{
	struct svc_rdma_fastreg_mr *frmr = NULL;

	spin_lock_bh(&rdma->sc_frmr_q_lock);
	if (!list_empty(&rdma->sc_frmr_q)) {
		frmr = list_entry(rdma->sc_frmr_q.next,
				  struct svc_rdma_fastreg_mr, frmr_list);
		list_del_init(&frmr->frmr_list);
929
		frmr->sg_nents = 0;
T
Tom Tucker 已提交
930 931 932 933 934 935 936 937 938 939 940 941
	}
	spin_unlock_bh(&rdma->sc_frmr_q_lock);
	if (frmr)
		return frmr;

	return rdma_alloc_frmr(rdma);
}

void svc_rdma_put_frmr(struct svcxprt_rdma *rdma,
		       struct svc_rdma_fastreg_mr *frmr)
{
	if (frmr) {
942 943
		ib_dma_unmap_sg(rdma->sc_cm_id->device,
				frmr->sg, frmr->sg_nents, frmr->direction);
T
Tom Tucker 已提交
944
		spin_lock_bh(&rdma->sc_frmr_q_lock);
945
		WARN_ON_ONCE(!list_empty(&frmr->frmr_list));
T
Tom Tucker 已提交
946 947 948 949 950
		list_add(&frmr->frmr_list, &rdma->sc_frmr_q);
		spin_unlock_bh(&rdma->sc_frmr_q_lock);
	}
}

951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
/*
 * This is the xpo_recvfrom function for listening endpoints. Its
 * purpose is to accept incoming connections. The CMA callback handler
 * has already created a new transport and attached it to the new CMA
 * ID.
 *
 * There is a queue of pending connections hung on the listening
 * transport. This queue contains the new svc_xprt structure. This
 * function takes svc_xprt structures off the accept_q and completes
 * the connection.
 */
static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *listen_rdma;
	struct svcxprt_rdma *newxprt = NULL;
	struct rdma_conn_param conn_param;
967
	struct rpcrdma_connect_private pmsg;
968
	struct ib_qp_init_attr qp_attr;
969
	struct ib_device *dev;
970
	struct sockaddr *sap;
971
	unsigned int i;
972
	int ret = 0;
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991

	listen_rdma = container_of(xprt, struct svcxprt_rdma, sc_xprt);
	clear_bit(XPT_CONN, &xprt->xpt_flags);
	/* Get the next entry off the accept list */
	spin_lock_bh(&listen_rdma->sc_lock);
	if (!list_empty(&listen_rdma->sc_accept_q)) {
		newxprt = list_entry(listen_rdma->sc_accept_q.next,
				     struct svcxprt_rdma, sc_accept_q);
		list_del_init(&newxprt->sc_accept_q);
	}
	if (!list_empty(&listen_rdma->sc_accept_q))
		set_bit(XPT_CONN, &listen_rdma->sc_xprt.xpt_flags);
	spin_unlock_bh(&listen_rdma->sc_lock);
	if (!newxprt)
		return NULL;

	dprintk("svcrdma: newxprt from accept queue = %p, cm_id=%p\n",
		newxprt, newxprt->sc_cm_id);

992
	dev = newxprt->sc_cm_id->device;
993 994 995

	/* Qualify the transport resource defaults with the
	 * capabilities of this particular device */
996
	newxprt->sc_max_sge = min((size_t)dev->attrs.max_sge,
997
				  (size_t)RPCSVC_MAXPAGES);
998
	newxprt->sc_max_sge_rd = min_t(size_t, dev->attrs.max_sge_rd,
999
				       RPCSVC_MAXPAGES);
1000
	newxprt->sc_max_req_size = svcrdma_max_req_size;
1001 1002
	newxprt->sc_max_requests = min_t(u32, dev->attrs.max_qp_wr,
					 svcrdma_max_requests);
1003
	newxprt->sc_fc_credits = cpu_to_be32(newxprt->sc_max_requests);
1004 1005 1006 1007 1008
	newxprt->sc_max_bc_requests = min_t(u32, dev->attrs.max_qp_wr,
					    svcrdma_max_bc_requests);
	newxprt->sc_rq_depth = newxprt->sc_max_requests +
			       newxprt->sc_max_bc_requests;
	newxprt->sc_sq_depth = RPCRDMA_SQ_DEPTH_MULT * newxprt->sc_rq_depth;
1009
	atomic_set(&newxprt->sc_sq_avail, newxprt->sc_sq_depth);
1010

1011 1012
	if (!svc_rdma_prealloc_ctxts(newxprt))
		goto errout;
1013 1014
	if (!svc_rdma_prealloc_maps(newxprt))
		goto errout;
1015

1016 1017 1018 1019
	/*
	 * Limit ORD based on client limit, local device limit, and
	 * configured svcrdma limit.
	 */
1020
	newxprt->sc_ord = min_t(size_t, dev->attrs.max_qp_rd_atom, newxprt->sc_ord);
1021
	newxprt->sc_ord = min_t(size_t,	svcrdma_ord, newxprt->sc_ord);
1022

1023
	newxprt->sc_pd = ib_alloc_pd(dev, 0);
1024 1025 1026 1027
	if (IS_ERR(newxprt->sc_pd)) {
		dprintk("svcrdma: error creating PD for connect request\n");
		goto errout;
	}
1028 1029
	newxprt->sc_sq_cq = ib_alloc_cq(dev, newxprt, newxprt->sc_sq_depth,
					0, IB_POLL_SOFTIRQ);
1030 1031 1032 1033
	if (IS_ERR(newxprt->sc_sq_cq)) {
		dprintk("svcrdma: error creating SQ CQ for connect request\n");
		goto errout;
	}
1034 1035
	newxprt->sc_rq_cq = ib_alloc_cq(dev, newxprt, newxprt->sc_rq_depth,
					0, IB_POLL_SOFTIRQ);
1036 1037 1038 1039 1040 1041 1042 1043 1044
	if (IS_ERR(newxprt->sc_rq_cq)) {
		dprintk("svcrdma: error creating RQ CQ for connect request\n");
		goto errout;
	}

	memset(&qp_attr, 0, sizeof qp_attr);
	qp_attr.event_handler = qp_event_handler;
	qp_attr.qp_context = &newxprt->sc_xprt;
	qp_attr.cap.max_send_wr = newxprt->sc_sq_depth;
1045
	qp_attr.cap.max_recv_wr = newxprt->sc_rq_depth;
1046 1047 1048 1049 1050 1051
	qp_attr.cap.max_send_sge = newxprt->sc_max_sge;
	qp_attr.cap.max_recv_sge = newxprt->sc_max_sge;
	qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
	qp_attr.qp_type = IB_QPT_RC;
	qp_attr.send_cq = newxprt->sc_sq_cq;
	qp_attr.recv_cq = newxprt->sc_rq_cq;
1052 1053 1054 1055 1056 1057
	dprintk("svcrdma: newxprt->sc_cm_id=%p, newxprt->sc_pd=%p\n",
		newxprt->sc_cm_id, newxprt->sc_pd);
	dprintk("    cap.max_send_wr = %d, cap.max_recv_wr = %d\n",
		qp_attr.cap.max_send_wr, qp_attr.cap.max_recv_wr);
	dprintk("    cap.max_send_sge = %d, cap.max_recv_sge = %d\n",
		qp_attr.cap.max_send_sge, qp_attr.cap.max_recv_sge);
1058 1059 1060

	ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd, &qp_attr);
	if (ret) {
1061 1062
		dprintk("svcrdma: failed to create QP, ret=%d\n", ret);
		goto errout;
1063 1064 1065
	}
	newxprt->sc_qp = newxprt->sc_cm_id->qp;

1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
	/*
	 * Use the most secure set of MR resources based on the
	 * transport type and available memory management features in
	 * the device. Here's the table implemented below:
	 *
	 *		Fast	Global	DMA	Remote WR
	 *		Reg	LKEY	MR	Access
	 *		Sup'd	Sup'd	Needed	Needed
	 *
	 * IWARP	N	N	Y	Y
	 *		N	Y	Y	Y
	 *		Y	N	Y	N
	 *		Y	Y	N	-
	 *
	 * IB		N	N	Y	N
	 *		N	Y	N	-
	 *		Y	N	Y	N
	 *		Y	Y	N	-
	 *
	 * NB:	iWARP requires remote write access for the data sink
	 *	of an RDMA_READ. IB does not.
	 */
1088
	newxprt->sc_reader = rdma_read_chunk_lcl;
1089
	if (dev->attrs.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) {
1090
		newxprt->sc_frmr_pg_list_len =
1091
			dev->attrs.max_fast_reg_page_list_len;
1092
		newxprt->sc_dev_caps |= SVCRDMA_DEVCAP_FAST_REG;
1093
		newxprt->sc_reader = rdma_read_chunk_frmr;
1094 1095
	} else
		newxprt->sc_snd_w_inv = false;
1096 1097 1098 1099

	/*
	 * Determine if a DMA MR is required and if so, what privs are required
	 */
1100 1101
	if (!rdma_protocol_iwarp(dev, newxprt->sc_cm_id->port_num) &&
	    !rdma_ib_or_roce(dev, newxprt->sc_cm_id->port_num))
1102
		goto errout;
M
Michael Wang 已提交
1103

1104
	if (rdma_protocol_iwarp(dev, newxprt->sc_cm_id->port_num))
M
Michael Wang 已提交
1105 1106
		newxprt->sc_dev_caps |= SVCRDMA_DEVCAP_READ_W_INV;

1107
	/* Post receive buffers */
1108
	for (i = 0; i < newxprt->sc_max_requests; i++) {
1109
		ret = svc_rdma_post_recv(newxprt, GFP_KERNEL);
1110 1111 1112 1113 1114 1115 1116 1117 1118
		if (ret) {
			dprintk("svcrdma: failure posting receive buffers\n");
			goto errout;
		}
	}

	/* Swap out the handler */
	newxprt->sc_cm_id->event_handler = rdma_cma_handler;

1119 1120 1121 1122 1123 1124 1125
	/* Construct RDMA-CM private message */
	pmsg.cp_magic = rpcrdma_cmp_magic;
	pmsg.cp_version = RPCRDMA_CMP_VERSION;
	pmsg.cp_flags = 0;
	pmsg.cp_send_size = pmsg.cp_recv_size =
		rpcrdma_encode_buffer_size(newxprt->sc_max_req_size);

1126 1127 1128 1129 1130
	/* Accept Connection */
	set_bit(RDMAXPRT_CONN_PENDING, &newxprt->sc_flags);
	memset(&conn_param, 0, sizeof conn_param);
	conn_param.responder_resources = 0;
	conn_param.initiator_depth = newxprt->sc_ord;
1131 1132
	conn_param.private_data = &pmsg;
	conn_param.private_data_len = sizeof(pmsg);
1133 1134 1135 1136 1137 1138 1139
	ret = rdma_accept(newxprt->sc_cm_id, &conn_param);
	if (ret) {
		dprintk("svcrdma: failed to accept new connection, ret=%d\n",
		       ret);
		goto errout;
	}

1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
	dprintk("svcrdma: new connection %p accepted:\n", newxprt);
	sap = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr;
	dprintk("    local address   : %pIS:%u\n", sap, rpc_get_port(sap));
	sap = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr;
	dprintk("    remote address  : %pIS:%u\n", sap, rpc_get_port(sap));
	dprintk("    max_sge         : %d\n", newxprt->sc_max_sge);
	dprintk("    max_sge_rd      : %d\n", newxprt->sc_max_sge_rd);
	dprintk("    sq_depth        : %d\n", newxprt->sc_sq_depth);
	dprintk("    max_requests    : %d\n", newxprt->sc_max_requests);
	dprintk("    ord             : %d\n", newxprt->sc_ord);
1150 1151 1152 1153 1154

	return &newxprt->sc_xprt;

 errout:
	dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret);
1155 1156
	/* Take a reference in case the DTO handler runs */
	svc_xprt_get(&newxprt->sc_xprt);
1157
	if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp))
1158
		ib_destroy_qp(newxprt->sc_qp);
1159
	rdma_destroy_id(newxprt->sc_cm_id);
1160 1161
	/* This call to put will destroy the transport */
	svc_xprt_put(&newxprt->sc_xprt);
1162 1163 1164 1165 1166 1167 1168
	return NULL;
}

static void svc_rdma_release_rqst(struct svc_rqst *rqstp)
{
}

1169
/*
1170
 * When connected, an svc_xprt has at least two references:
1171 1172 1173 1174 1175 1176 1177 1178
 *
 * - A reference held by the cm_id between the ESTABLISHED and
 *   DISCONNECTED events. If the remote peer disconnected first, this
 *   reference could be gone.
 *
 * - A reference held by the svc_recv code that called this function
 *   as part of close processing.
 *
1179
 * At a minimum one references should still be held.
1180
 */
1181 1182 1183 1184 1185
static void svc_rdma_detach(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);
	dprintk("svc: svc_rdma_detach(%p)\n", xprt);
1186 1187

	/* Disconnect and flush posted WQE */
1188 1189 1190
	rdma_disconnect(rdma->sc_cm_id);
}

1191
static void __svc_rdma_free(struct work_struct *work)
1192
{
1193 1194
	struct svcxprt_rdma *rdma =
		container_of(work, struct svcxprt_rdma, sc_work);
1195 1196 1197
	struct svc_xprt *xprt = &rdma->sc_xprt;

	dprintk("svcrdma: %s(%p)\n", __func__, rdma);
1198

1199 1200 1201
	if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
		ib_drain_qp(rdma->sc_qp);

1202
	/* We should only be called from kref_put */
1203
	if (atomic_read(&xprt->xpt_ref.refcount) != 0)
1204
		pr_err("svcrdma: sc_xprt still in use? (%d)\n",
1205
		       atomic_read(&xprt->xpt_ref.refcount));
1206

1207 1208 1209 1210 1211 1212 1213 1214
	/*
	 * Destroy queued, but not processed read completions. Note
	 * that this cleanup has to be done before destroying the
	 * cm_id because the device ptr is needed to unmap the dma in
	 * svc_rdma_put_context.
	 */
	while (!list_empty(&rdma->sc_read_complete_q)) {
		struct svc_rdma_op_ctxt *ctxt;
1215 1216 1217
		ctxt = list_first_entry(&rdma->sc_read_complete_q,
					struct svc_rdma_op_ctxt, list);
		list_del(&ctxt->list);
1218 1219 1220 1221 1222 1223
		svc_rdma_put_context(ctxt, 1);
	}

	/* Destroy queued, but not processed recv completions */
	while (!list_empty(&rdma->sc_rq_dto_q)) {
		struct svc_rdma_op_ctxt *ctxt;
1224 1225 1226
		ctxt = list_first_entry(&rdma->sc_rq_dto_q,
					struct svc_rdma_op_ctxt, list);
		list_del(&ctxt->list);
1227 1228 1229 1230
		svc_rdma_put_context(ctxt, 1);
	}

	/* Warn if we leaked a resource or under-referenced */
1231
	if (rdma->sc_ctxt_used != 0)
1232
		pr_err("svcrdma: ctxt still in use? (%d)\n",
1233
		       rdma->sc_ctxt_used);
1234

1235 1236 1237 1238 1239 1240
	/* Final put of backchannel client transport */
	if (xprt->xpt_bc_xprt) {
		xprt_put(xprt->xpt_bc_xprt);
		xprt->xpt_bc_xprt = NULL;
	}

T
Tom Tucker 已提交
1241
	rdma_dealloc_frmr_q(rdma);
1242
	svc_rdma_destroy_ctxts(rdma);
1243
	svc_rdma_destroy_maps(rdma);
T
Tom Tucker 已提交
1244

1245 1246 1247 1248
	/* Destroy the QP if present (not a listener) */
	if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
		ib_destroy_qp(rdma->sc_qp);

1249
	if (rdma->sc_sq_cq && !IS_ERR(rdma->sc_sq_cq))
1250
		ib_free_cq(rdma->sc_sq_cq);
1251

1252
	if (rdma->sc_rq_cq && !IS_ERR(rdma->sc_rq_cq))
1253
		ib_free_cq(rdma->sc_rq_cq);
1254

1255 1256
	if (rdma->sc_pd && !IS_ERR(rdma->sc_pd))
		ib_dealloc_pd(rdma->sc_pd);
1257

1258 1259 1260
	/* Destroy the CM ID */
	rdma_destroy_id(rdma->sc_cm_id);

1261
	kfree(rdma);
1262 1263
}

1264 1265 1266 1267 1268
static void svc_rdma_free(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);
	INIT_WORK(&rdma->sc_work, __svc_rdma_free);
1269
	queue_work(svc_rdma_wq, &rdma->sc_work);
1270 1271
}

1272 1273 1274 1275 1276 1277
static int svc_rdma_has_wspace(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);

	/*
S
Steve Wise 已提交
1278
	 * If there are already waiters on the SQ,
1279 1280 1281 1282 1283 1284 1285 1286 1287
	 * return false.
	 */
	if (waitqueue_active(&rdma->sc_send_wait))
		return 0;

	/* Otherwise return true. */
	return 1;
}

1288 1289 1290 1291 1292
static int svc_rdma_secure_port(struct svc_rqst *rqstp)
{
	return 1;
}

1293 1294 1295 1296
static void svc_rdma_kill_temp_xprt(struct svc_xprt *xprt)
{
}

1297 1298
int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
{
1299 1300 1301
	struct ib_send_wr *bad_wr, *n_wr;
	int wr_count;
	int i;
1302 1303 1304
	int ret;

	if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
1305
		return -ENOTCONN;
1306

1307 1308 1309 1310
	wr_count = 1;
	for (n_wr = wr->next; n_wr; n_wr = n_wr->next)
		wr_count++;

1311 1312
	/* If the SQ is full, wait until an SQ entry is available */
	while (1) {
1313
		if ((atomic_sub_return(wr_count, &xprt->sc_sq_avail) < 0)) {
1314
			atomic_inc(&rdma_stat_sq_starve);
1315

1316
			/* Wait until SQ WR available if SQ still full */
1317
			atomic_add(wr_count, &xprt->sc_sq_avail);
1318
			wait_event(xprt->sc_send_wait,
1319
				   atomic_read(&xprt->sc_sq_avail) > wr_count);
1320
			if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
1321
				return -ENOTCONN;
1322 1323
			continue;
		}
1324 1325 1326 1327 1328
		/* Take a transport ref for each WR posted */
		for (i = 0; i < wr_count; i++)
			svc_xprt_get(&xprt->sc_xprt);

		/* Bump used SQ WR count and post */
1329
		ret = ib_post_send(xprt->sc_qp, wr, &bad_wr);
1330 1331 1332 1333
		if (ret) {
			set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
			for (i = 0; i < wr_count; i ++)
				svc_xprt_put(&xprt->sc_xprt);
1334 1335 1336 1337
			dprintk("svcrdma: failed to post SQ WR rc=%d\n", ret);
			dprintk("    sc_sq_avail=%d, sc_sq_depth=%d\n",
				atomic_read(&xprt->sc_sq_avail),
				xprt->sc_sq_depth);
1338
			wake_up(&xprt->sc_send_wait);
1339
		}
1340 1341 1342 1343
		break;
	}
	return ret;
}