svc_rdma_transport.c 22.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2
/*
3
 * Copyright (c) 2015-2018 Oracle. All rights reserved.
S
Steve Wise 已提交
4
 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
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-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>
 */

45
#include <linux/interrupt.h>
46
#include <linux/sched.h>
47
#include <linux/slab.h>
48
#include <linux/spinlock.h>
49
#include <linux/workqueue.h>
50 51
#include <linux/export.h>

52 53
#include <rdma/ib_verbs.h>
#include <rdma/rdma_cm.h>
54
#include <rdma/rw.h>
55 56 57 58 59

#include <linux/sunrpc/addr.h>
#include <linux/sunrpc/debug.h>
#include <linux/sunrpc/rpc_rdma.h>
#include <linux/sunrpc/svc_xprt.h>
60
#include <linux/sunrpc/svc_rdma.h>
61

62
#include "xprt_rdma.h"
63
#include <trace/events/rpcrdma.h>
64 65 66

#define RPCDBG_FACILITY	RPCDBG_SVCXPRT

67 68
static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv,
						 struct net *net);
69
static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
70
					struct net *net,
71 72 73 74 75 76 77
					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);
C
Chuck Lever 已提交
78
static void svc_rdma_secure_port(struct svc_rqst *);
79
static void svc_rdma_kill_temp_xprt(struct svc_xprt *);
80

81
static const struct svc_xprt_ops svc_rdma_ops = {
82 83 84 85 86 87 88 89 90
	.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,
91
	.xpo_secure_port = svc_rdma_secure_port,
92
	.xpo_kill_temp_xprt = svc_rdma_kill_temp_xprt,
93 94 95 96 97 98
};

struct svc_xprt_class svc_rdma_class = {
	.xcl_name = "rdma",
	.xcl_owner = THIS_MODULE,
	.xcl_ops = &svc_rdma_ops,
99
	.xcl_max_payload = RPCSVC_MAXPAYLOAD_RDMA,
100
	.xcl_ident = XPRT_TRANSPORT_RDMA,
101 102
};

103 104 105 106 107 108
#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 *);

109
static const struct svc_xprt_ops svc_rdma_bc_ops = {
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
	.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;

132
	cma_xprt = svc_rdma_create_xprt(serv, net);
133 134 135 136 137
	if (!cma_xprt)
		return ERR_PTR(-ENOMEM);
	xprt = &cma_xprt->sc_xprt;

	svc_xprt_init(net, &svc_rdma_bc_class, xprt, serv);
138
	set_bit(XPT_CONG_CTRL, &xprt->xpt_flags);
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
	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 */

161 162 163 164 165
/* QP event handler */
static void qp_event_handler(struct ib_event *event, void *context)
{
	struct svc_xprt *xprt = context;

C
Chuck Lever 已提交
166
	trace_svcrdma_qp_error(event, (struct sockaddr *)&xprt->xpt_remote);
167 168 169 170 171 172 173
	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:
		break;
C
Chuck Lever 已提交
174

175 176 177 178 179 180 181 182
	/* 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:
		set_bit(XPT_CLOSE, &xprt->xpt_flags);
183
		svc_xprt_enqueue(xprt);
184 185 186 187
		break;
	}
}

188 189
static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv,
						 struct net *net)
190 191 192
{
	struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL);

193 194
	if (!cma_xprt) {
		dprintk("svcrdma: failed to create new transport\n");
195
		return NULL;
196 197
	}
	svc_xprt_init(net, &svc_rdma_class, &cma_xprt->sc_xprt, serv);
198 199 200
	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);
201
	INIT_LIST_HEAD(&cma_xprt->sc_send_ctxts);
202
	INIT_LIST_HEAD(&cma_xprt->sc_recv_ctxts);
203
	INIT_LIST_HEAD(&cma_xprt->sc_rw_ctxts);
204 205 206 207
	init_waitqueue_head(&cma_xprt->sc_send_wait);

	spin_lock_init(&cma_xprt->sc_lock);
	spin_lock_init(&cma_xprt->sc_rq_dto_lock);
208
	spin_lock_init(&cma_xprt->sc_send_lock);
209
	spin_lock_init(&cma_xprt->sc_recv_lock);
210
	spin_lock_init(&cma_xprt->sc_rw_ctxt_lock);
211

212 213 214 215 216 217 218 219
	/*
	 * Note that this implies that the underlying transport support
	 * has some form of congestion control (see RFC 7530 section 3.1
	 * paragraph 2). For now, we assume that all supported RDMA
	 * transports are suitable here.
	 */
	set_bit(XPT_CONG_CTRL, &cma_xprt->sc_xprt.xpt_flags);

220 221 222
	return cma_xprt;
}

223 224 225 226 227 228 229 230 231
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) {
232 233 234 235 236
		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",
237
			rpcrdma_decode_buffer_size(pmsg->cp_send_size),
238 239
			rpcrdma_decode_buffer_size(pmsg->cp_recv_size),
			newxprt->sc_snd_w_inv ? "" : "un");
240 241 242
	}
}

243 244 245 246 247 248 249 250 251 252 253
/*
 * 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.
 */
254 255
static void handle_connect_req(struct rdma_cm_id *new_cma_id,
			       struct rdma_conn_param *param)
256 257 258
{
	struct svcxprt_rdma *listen_xprt = new_cma_id->context;
	struct svcxprt_rdma *newxprt;
259
	struct sockaddr *sa;
260 261

	/* Create a new transport */
262 263 264
	newxprt = svc_rdma_create_xprt(listen_xprt->sc_xprt.xpt_server,
				       listen_xprt->sc_xprt.xpt_net);
	if (!newxprt)
265 266 267
		return;
	newxprt->sc_cm_id = new_cma_id;
	new_cma_id->context = newxprt;
268
	svc_rdma_parse_connect_private(newxprt, param);
269

270
	/* Save client advertised inbound read limit for use later in accept. */
271
	newxprt->sc_ord = param->initiator_depth;
272

273 274 275 276 277 278
	/* 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));

279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
	/*
	 * 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)
{
C
Chuck Lever 已提交
298
	struct sockaddr *sap = (struct sockaddr *)&cma_id->route.addr.src_addr;
299

C
Chuck Lever 已提交
300 301
	trace_svcrdma_cm_event(event, sap);

302 303 304
	switch (event->event) {
	case RDMA_CM_EVENT_CONNECT_REQUEST:
		dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
305 306
			"event = %s (%d)\n", cma_id, cma_id->context,
			rdma_event_msg(event->event), event->event);
307
		handle_connect_req(cma_id, &event->param.conn);
308 309
		break;
	default:
C
Chuck Lever 已提交
310
		/* NB: No device removal upcall for INADDR_ANY listeners */
311
		dprintk("svcrdma: Unexpected event on listening endpoint %p, "
312 313
			"event = %s (%d)\n", cma_id,
			rdma_event_msg(event->event), event->event);
314 315 316
		break;
	}

317
	return 0;
318 319 320 321 322
}

static int rdma_cma_handler(struct rdma_cm_id *cma_id,
			    struct rdma_cm_event *event)
{
C
Chuck Lever 已提交
323 324 325 326 327 328
	struct sockaddr *sap = (struct sockaddr *)&cma_id->route.addr.dst_addr;
	struct svcxprt_rdma *rdma = cma_id->context;
	struct svc_xprt *xprt = &rdma->sc_xprt;

	trace_svcrdma_cm_event(event, sap);

329 330 331
	switch (event->event) {
	case RDMA_CM_EVENT_ESTABLISHED:
		/* Accept complete */
332
		svc_xprt_get(xprt);
333 334 335 336 337 338 339 340
		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);
C
Chuck Lever 已提交
341 342 343
		set_bit(XPT_CLOSE, &xprt->xpt_flags);
		svc_xprt_enqueue(xprt);
		svc_xprt_put(xprt);
344 345 346
		break;
	case RDMA_CM_EVENT_DEVICE_REMOVAL:
		dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
347 348
			"event = %s (%d)\n", cma_id, xprt,
			rdma_event_msg(event->event), event->event);
C
Chuck Lever 已提交
349 350 351
		set_bit(XPT_CLOSE, &xprt->xpt_flags);
		svc_xprt_enqueue(xprt);
		svc_xprt_put(xprt);
352 353 354
		break;
	default:
		dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
355 356
			"event = %s (%d)\n", cma_id,
			rdma_event_msg(event->event), event->event);
357 358 359 360 361 362 363 364 365
		break;
	}
	return 0;
}

/*
 * Create a listening RDMA service endpoint.
 */
static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
366
					struct net *net,
367 368 369 370 371 372 373
					struct sockaddr *sa, int salen,
					int flags)
{
	struct rdma_cm_id *listen_id;
	struct svcxprt_rdma *cma_xprt;
	int ret;

374
	dprintk("svcrdma: Creating RDMA listener\n");
S
Shirley Ma 已提交
375
	if ((sa->sa_family != AF_INET) && (sa->sa_family != AF_INET6)) {
376 377 378
		dprintk("svcrdma: Address family %d is not supported.\n", sa->sa_family);
		return ERR_PTR(-EAFNOSUPPORT);
	}
379
	cma_xprt = svc_rdma_create_xprt(serv, net);
380
	if (!cma_xprt)
381
		return ERR_PTR(-ENOMEM);
382 383
	set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
	strcpy(cma_xprt->sc_xprt.xpt_remotebuf, "listener");
384

385
	listen_id = rdma_create_id(net, rdma_listen_handler, cma_xprt,
386
				   RDMA_PS_TCP, IB_QPT_RC);
387
	if (IS_ERR(listen_id)) {
388 389 390
		ret = PTR_ERR(listen_id);
		dprintk("svcrdma: rdma_create_id failed = %d\n", ret);
		goto err0;
391
	}
392

S
Shirley Ma 已提交
393 394 395 396 397 398 399 400 401 402
	/* 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
403 404 405
	ret = rdma_bind_addr(listen_id, sa);
	if (ret) {
		dprintk("svcrdma: rdma_bind_addr failed = %d\n", ret);
406
		goto err1;
407 408 409 410 411 412
	}
	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);
413
		goto err1;
414 415 416 417 418 419 420 421 422 423
	}

	/*
	 * 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;
424 425 426 427 428 429

 err1:
	rdma_destroy_id(listen_id);
 err0:
	kfree(cma_xprt);
	return ERR_PTR(ret);
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
}

/*
 * 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;
448
	struct rpcrdma_connect_private pmsg;
449
	struct ib_qp_init_attr qp_attr;
C
Chuck Lever 已提交
450
	unsigned int ctxts, rq_depth;
451
	struct ib_device *dev;
452
	struct sockaddr *sap;
453
	int ret = 0;
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

	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);

473
	dev = newxprt->sc_cm_id->device;
474
	newxprt->sc_port_num = newxprt->sc_cm_id->port_num;
475 476 477

	/* Qualify the transport resource defaults with the
	 * capabilities of this particular device */
478 479 480 481 482 483 484
	newxprt->sc_max_send_sges = dev->attrs.max_sge;
	/* transport hdr, head iovec, one page list entry, tail iovec */
	if (newxprt->sc_max_send_sges < 4) {
		pr_err("svcrdma: too few Send SGEs available (%d)\n",
		       newxprt->sc_max_send_sges);
		goto errout;
	}
485
	newxprt->sc_max_req_size = svcrdma_max_req_size;
C
Chuck Lever 已提交
486 487
	newxprt->sc_max_requests = svcrdma_max_requests;
	newxprt->sc_max_bc_requests = svcrdma_max_bc_requests;
C
Chuck Lever 已提交
488 489
	rq_depth = newxprt->sc_max_requests + newxprt->sc_max_bc_requests;
	if (rq_depth > dev->attrs.max_qp_wr) {
C
Chuck Lever 已提交
490 491
		pr_warn("svcrdma: reducing receive depth to %d\n",
			dev->attrs.max_qp_wr);
C
Chuck Lever 已提交
492 493
		rq_depth = dev->attrs.max_qp_wr;
		newxprt->sc_max_requests = rq_depth - 2;
C
Chuck Lever 已提交
494 495 496
		newxprt->sc_max_bc_requests = 2;
	}
	newxprt->sc_fc_credits = cpu_to_be32(newxprt->sc_max_requests);
497 498
	ctxts = rdma_rw_mr_factor(dev, newxprt->sc_port_num, RPCSVC_MAXPAGES);
	ctxts *= newxprt->sc_max_requests;
C
Chuck Lever 已提交
499
	newxprt->sc_sq_depth = rq_depth + ctxts;
500 501 502 503 504
	if (newxprt->sc_sq_depth > dev->attrs.max_qp_wr) {
		pr_warn("svcrdma: reducing send depth to %d\n",
			dev->attrs.max_qp_wr);
		newxprt->sc_sq_depth = dev->attrs.max_qp_wr;
	}
505
	atomic_set(&newxprt->sc_sq_avail, newxprt->sc_sq_depth);
506

507
	newxprt->sc_pd = ib_alloc_pd(dev, 0);
508 509 510 511
	if (IS_ERR(newxprt->sc_pd)) {
		dprintk("svcrdma: error creating PD for connect request\n");
		goto errout;
	}
512
	newxprt->sc_sq_cq = ib_alloc_cq(dev, newxprt, newxprt->sc_sq_depth,
513
					0, IB_POLL_WORKQUEUE);
514 515 516 517
	if (IS_ERR(newxprt->sc_sq_cq)) {
		dprintk("svcrdma: error creating SQ CQ for connect request\n");
		goto errout;
	}
C
Chuck Lever 已提交
518
	newxprt->sc_rq_cq = ib_alloc_cq(dev, newxprt, rq_depth,
519
					0, IB_POLL_WORKQUEUE);
520 521 522 523 524 525 526 527
	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;
528
	qp_attr.port_num = newxprt->sc_port_num;
529 530
	qp_attr.cap.max_rdma_ctxs = ctxts;
	qp_attr.cap.max_send_wr = newxprt->sc_sq_depth - ctxts;
C
Chuck Lever 已提交
531
	qp_attr.cap.max_recv_wr = rq_depth;
532
	qp_attr.cap.max_send_sge = newxprt->sc_max_send_sges;
533
	qp_attr.cap.max_recv_sge = 1;
534 535 536 537
	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;
538 539 540 541 542 543
	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);
544 545 546

	ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd, &qp_attr);
	if (ret) {
547 548
		dprintk("svcrdma: failed to create QP, ret=%d\n", ret);
		goto errout;
549 550 551
	}
	newxprt->sc_qp = newxprt->sc_cm_id->qp;

552
	if (!(dev->attrs.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS))
553
		newxprt->sc_snd_w_inv = false;
554 555
	if (!rdma_protocol_iwarp(dev, newxprt->sc_port_num) &&
	    !rdma_ib_or_roce(dev, newxprt->sc_port_num))
556
		goto errout;
M
Michael Wang 已提交
557

558 559
	if (!svc_rdma_post_recvs(newxprt))
		goto errout;
560 561 562 563

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

564 565 566 567 568 569 570
	/* 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);

571 572 573 574
	/* Accept Connection */
	set_bit(RDMAXPRT_CONN_PENDING, &newxprt->sc_flags);
	memset(&conn_param, 0, sizeof conn_param);
	conn_param.responder_resources = 0;
575 576 577 578 579 580 581
	conn_param.initiator_depth = min_t(int, newxprt->sc_ord,
					   dev->attrs.max_qp_init_rd_atom);
	if (!conn_param.initiator_depth) {
		dprintk("svcrdma: invalid ORD setting\n");
		ret = -EINVAL;
		goto errout;
	}
582 583
	conn_param.private_data = &pmsg;
	conn_param.private_data_len = sizeof(pmsg);
584
	ret = rdma_accept(newxprt->sc_cm_id, &conn_param);
585
	if (ret)
586 587
		goto errout;

588 589 590 591 592
	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));
593
	dprintk("    max_sge         : %d\n", newxprt->sc_max_send_sges);
594
	dprintk("    sq_depth        : %d\n", newxprt->sc_sq_depth);
595
	dprintk("    rdma_rw_ctxs    : %d\n", ctxts);
596
	dprintk("    max_requests    : %d\n", newxprt->sc_max_requests);
597
	dprintk("    ord             : %d\n", conn_param.initiator_depth);
598

599
	trace_svcrdma_xprt_accept(&newxprt->sc_xprt);
600 601 602 603
	return &newxprt->sc_xprt;

 errout:
	dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret);
604
	trace_svcrdma_xprt_fail(&newxprt->sc_xprt);
605 606
	/* Take a reference in case the DTO handler runs */
	svc_xprt_get(&newxprt->sc_xprt);
607
	if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp))
608
		ib_destroy_qp(newxprt->sc_qp);
609
	rdma_destroy_id(newxprt->sc_cm_id);
610 611
	/* This call to put will destroy the transport */
	svc_xprt_put(&newxprt->sc_xprt);
612 613 614 615 616 617 618
	return NULL;
}

static void svc_rdma_release_rqst(struct svc_rqst *rqstp)
{
}

619
/*
620
 * When connected, an svc_xprt has at least two references:
621 622 623 624 625 626 627 628
 *
 * - 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.
 *
629
 * At a minimum one references should still be held.
630
 */
631 632 633 634
static void svc_rdma_detach(struct svc_xprt *xprt)
{
	struct svcxprt_rdma *rdma =
		container_of(xprt, struct svcxprt_rdma, sc_xprt);
635 636

	/* Disconnect and flush posted WQE */
637 638 639
	rdma_disconnect(rdma->sc_cm_id);
}

640
static void __svc_rdma_free(struct work_struct *work)
641
{
642 643
	struct svcxprt_rdma *rdma =
		container_of(work, struct svcxprt_rdma, sc_work);
644 645
	struct svc_xprt *xprt = &rdma->sc_xprt;

646
	trace_svcrdma_xprt_free(xprt);
647

648 649 650
	if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
		ib_drain_qp(rdma->sc_qp);

651
	/* We should only be called from kref_put */
652
	if (kref_read(&xprt->xpt_ref) != 0)
653
		pr_err("svcrdma: sc_xprt still in use? (%d)\n",
654
		       kref_read(&xprt->xpt_ref));
655

656
	svc_rdma_flush_recv_queues(rdma);
657

658 659 660 661 662 663
	/* Final put of backchannel client transport */
	if (xprt->xpt_bc_xprt) {
		xprt_put(xprt->xpt_bc_xprt);
		xprt->xpt_bc_xprt = NULL;
	}

664
	svc_rdma_destroy_rw_ctxts(rdma);
665
	svc_rdma_send_ctxts_destroy(rdma);
666
	svc_rdma_recv_ctxts_destroy(rdma);
T
Tom Tucker 已提交
667

668 669 670 671
	/* Destroy the QP if present (not a listener) */
	if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
		ib_destroy_qp(rdma->sc_qp);

672
	if (rdma->sc_sq_cq && !IS_ERR(rdma->sc_sq_cq))
673
		ib_free_cq(rdma->sc_sq_cq);
674

675
	if (rdma->sc_rq_cq && !IS_ERR(rdma->sc_rq_cq))
676
		ib_free_cq(rdma->sc_rq_cq);
677

678 679
	if (rdma->sc_pd && !IS_ERR(rdma->sc_pd))
		ib_dealloc_pd(rdma->sc_pd);
680

681 682 683
	/* Destroy the CM ID */
	rdma_destroy_id(rdma->sc_cm_id);

684
	kfree(rdma);
685 686
}

687 688 689 690 691
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);
692
	queue_work(svc_rdma_wq, &rdma->sc_work);
693 694
}

695 696 697 698 699 700
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 已提交
701
	 * If there are already waiters on the SQ,
702 703 704 705 706 707 708 709 710
	 * return false.
	 */
	if (waitqueue_active(&rdma->sc_send_wait))
		return 0;

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

C
Chuck Lever 已提交
711
static void svc_rdma_secure_port(struct svc_rqst *rqstp)
712
{
C
Chuck Lever 已提交
713
	set_bit(RQ_SECURE, &rqstp->rq_flags);
714 715
}

716 717 718
static void svc_rdma_kill_temp_xprt(struct svc_xprt *xprt)
{
}