rdma.c 53.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9
/*
 * NVMe over Fabrics RDMA host code.
 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
 */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
I
Israel Rukshin 已提交
10
#include <rdma/mr_pool.h>
11 12 13 14
#include <linux/err.h>
#include <linux/string.h>
#include <linux/atomic.h>
#include <linux/blk-mq.h>
15
#include <linux/blk-mq-rdma.h>
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#include <linux/types.h>
#include <linux/list.h>
#include <linux/mutex.h>
#include <linux/scatterlist.h>
#include <linux/nvme.h>
#include <asm/unaligned.h>

#include <rdma/ib_verbs.h>
#include <rdma/rdma_cm.h>
#include <linux/nvme-rdma.h>

#include "nvme.h"
#include "fabrics.h"


31
#define NVME_RDMA_CONNECT_TIMEOUT_MS	3000		/* 3 second */
32 33 34

#define NVME_RDMA_MAX_SEGMENTS		256

35
#define NVME_RDMA_MAX_INLINE_SEGMENTS	4
36 37

struct nvme_rdma_device {
38 39
	struct ib_device	*dev;
	struct ib_pd		*pd;
40 41
	struct kref		ref;
	struct list_head	entry;
42
	unsigned int		num_inline_segments;
43 44 45 46 47 48 49 50 51 52
};

struct nvme_rdma_qe {
	struct ib_cqe		cqe;
	void			*data;
	u64			dma;
};

struct nvme_rdma_queue;
struct nvme_rdma_request {
53
	struct nvme_request	req;
54 55
	struct ib_mr		*mr;
	struct nvme_rdma_qe	sqe;
56 57 58
	union nvme_result	result;
	__le16			status;
	refcount_t		ref;
59 60 61 62 63 64 65 66 67 68 69
	struct ib_sge		sge[1 + NVME_RDMA_MAX_INLINE_SEGMENTS];
	u32			num_sge;
	int			nents;
	struct ib_reg_wr	reg_wr;
	struct ib_cqe		reg_cqe;
	struct nvme_rdma_queue  *queue;
	struct sg_table		sg_table;
	struct scatterlist	first_sgl[];
};

enum nvme_rdma_queue_flags {
70 71
	NVME_RDMA_Q_ALLOCATED		= 0,
	NVME_RDMA_Q_LIVE		= 1,
72
	NVME_RDMA_Q_TR_READY		= 2,
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
};

struct nvme_rdma_queue {
	struct nvme_rdma_qe	*rsp_ring;
	int			queue_size;
	size_t			cmnd_capsule_len;
	struct nvme_rdma_ctrl	*ctrl;
	struct nvme_rdma_device	*device;
	struct ib_cq		*ib_cq;
	struct ib_qp		*qp;

	unsigned long		flags;
	struct rdma_cm_id	*cm_id;
	int			cm_error;
	struct completion	cm_done;
};

struct nvme_rdma_ctrl {
	/* read only in the hot path */
	struct nvme_rdma_queue	*queues;

	/* other member variables */
	struct blk_mq_tag_set	tag_set;
	struct work_struct	err_work;

	struct nvme_rdma_qe	async_event_sqe;

	struct delayed_work	reconnect_work;

	struct list_head	list;

	struct blk_mq_tag_set	admin_tag_set;
	struct nvme_rdma_device	*device;

	u32			max_fr_pages;

109 110
	struct sockaddr_storage addr;
	struct sockaddr_storage src_addr;
111 112

	struct nvme_ctrl	ctrl;
113
	bool			use_inline_data;
114
	u32			io_queues[HCTX_MAX_TYPES];
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
};

static inline struct nvme_rdma_ctrl *to_rdma_ctrl(struct nvme_ctrl *ctrl)
{
	return container_of(ctrl, struct nvme_rdma_ctrl, ctrl);
}

static LIST_HEAD(device_list);
static DEFINE_MUTEX(device_list_mutex);

static LIST_HEAD(nvme_rdma_ctrl_list);
static DEFINE_MUTEX(nvme_rdma_ctrl_mutex);

/*
 * Disabling this option makes small I/O goes faster, but is fundamentally
 * unsafe.  With it turned off we will have to register a global rkey that
 * allows read and write access to all physical memory.
 */
static bool register_always = true;
module_param(register_always, bool, 0444);
MODULE_PARM_DESC(register_always,
	 "Use memory registration even for contiguous memory regions");

static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
		struct rdma_cm_event *event);
static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc);

142 143 144
static const struct blk_mq_ops nvme_rdma_mq_ops;
static const struct blk_mq_ops nvme_rdma_admin_mq_ops;

145 146 147 148 149 150 151 152 153 154 155 156 157
/* XXX: really should move to a generic header sooner or later.. */
static inline void put_unaligned_le24(u32 val, u8 *p)
{
	*p++ = val;
	*p++ = val >> 8;
	*p++ = val >> 16;
}

static inline int nvme_rdma_queue_idx(struct nvme_rdma_queue *queue)
{
	return queue - queue->ctrl->queues;
}

158 159 160
static bool nvme_rdma_poll_queue(struct nvme_rdma_queue *queue)
{
	return nvme_rdma_queue_idx(queue) >
161 162
		queue->ctrl->io_queues[HCTX_TYPE_DEFAULT] +
		queue->ctrl->io_queues[HCTX_TYPE_READ];
163 164
}

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
static inline size_t nvme_rdma_inline_data_size(struct nvme_rdma_queue *queue)
{
	return queue->cmnd_capsule_len - sizeof(struct nvme_command);
}

static void nvme_rdma_free_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
		size_t capsule_size, enum dma_data_direction dir)
{
	ib_dma_unmap_single(ibdev, qe->dma, capsule_size, dir);
	kfree(qe->data);
}

static int nvme_rdma_alloc_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
		size_t capsule_size, enum dma_data_direction dir)
{
	qe->data = kzalloc(capsule_size, GFP_KERNEL);
	if (!qe->data)
		return -ENOMEM;

	qe->dma = ib_dma_map_single(ibdev, qe->data, capsule_size, dir);
	if (ib_dma_mapping_error(ibdev, qe->dma)) {
		kfree(qe->data);
187
		qe->data = NULL;
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
		return -ENOMEM;
	}

	return 0;
}

static void nvme_rdma_free_ring(struct ib_device *ibdev,
		struct nvme_rdma_qe *ring, size_t ib_queue_size,
		size_t capsule_size, enum dma_data_direction dir)
{
	int i;

	for (i = 0; i < ib_queue_size; i++)
		nvme_rdma_free_qe(ibdev, &ring[i], capsule_size, dir);
	kfree(ring);
}

static struct nvme_rdma_qe *nvme_rdma_alloc_ring(struct ib_device *ibdev,
		size_t ib_queue_size, size_t capsule_size,
		enum dma_data_direction dir)
{
	struct nvme_rdma_qe *ring;
	int i;

	ring = kcalloc(ib_queue_size, sizeof(struct nvme_rdma_qe), GFP_KERNEL);
	if (!ring)
		return NULL;

216 217 218 219 220
	/*
	 * Bind the CQEs (post recv buffers) DMA mapping to the RDMA queue
	 * lifetime. It's safe, since any chage in the underlying RDMA device
	 * will issue error recovery and queue re-creation.
	 */
221 222 223 224 225 226 227 228 229 230 231 232 233 234
	for (i = 0; i < ib_queue_size; i++) {
		if (nvme_rdma_alloc_qe(ibdev, &ring[i], capsule_size, dir))
			goto out_free_ring;
	}

	return ring;

out_free_ring:
	nvme_rdma_free_ring(ibdev, ring, i, capsule_size, dir);
	return NULL;
}

static void nvme_rdma_qp_event(struct ib_event *event, void *context)
{
235 236 237
	pr_debug("QP event %s (%d)\n",
		 ib_event_msg(event->event), event->event);

238 239 240 241
}

static int nvme_rdma_wait_for_cm(struct nvme_rdma_queue *queue)
{
242 243 244
	int ret;

	ret = wait_for_completion_interruptible_timeout(&queue->cm_done,
245
			msecs_to_jiffies(NVME_RDMA_CONNECT_TIMEOUT_MS) + 1);
246 247 248 249 250
	if (ret < 0)
		return ret;
	if (ret == 0)
		return -ETIMEDOUT;
	WARN_ON_ONCE(queue->cm_error > 0);
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
	return queue->cm_error;
}

static int nvme_rdma_create_qp(struct nvme_rdma_queue *queue, const int factor)
{
	struct nvme_rdma_device *dev = queue->device;
	struct ib_qp_init_attr init_attr;
	int ret;

	memset(&init_attr, 0, sizeof(init_attr));
	init_attr.event_handler = nvme_rdma_qp_event;
	/* +1 for drain */
	init_attr.cap.max_send_wr = factor * queue->queue_size + 1;
	/* +1 for drain */
	init_attr.cap.max_recv_wr = queue->queue_size + 1;
	init_attr.cap.max_recv_sge = 1;
267
	init_attr.cap.max_send_sge = 1 + dev->num_inline_segments;
268 269 270 271 272 273 274 275 276 277 278
	init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
	init_attr.qp_type = IB_QPT_RC;
	init_attr.send_cq = queue->ib_cq;
	init_attr.recv_cq = queue->ib_cq;

	ret = rdma_create_qp(queue->cm_id, dev->pd, &init_attr);

	queue->qp = queue->cm_id->qp;
	return ret;
}

279 280
static void nvme_rdma_exit_request(struct blk_mq_tag_set *set,
		struct request *rq, unsigned int hctx_idx)
281 282 283
{
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);

284
	kfree(req->sqe.data);
285 286
}

287 288 289
static int nvme_rdma_init_request(struct blk_mq_tag_set *set,
		struct request *rq, unsigned int hctx_idx,
		unsigned int numa_node)
290
{
291
	struct nvme_rdma_ctrl *ctrl = set->driver_data;
292
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
293
	int queue_idx = (set == &ctrl->tag_set) ? hctx_idx + 1 : 0;
294 295
	struct nvme_rdma_queue *queue = &ctrl->queues[queue_idx];

296
	nvme_req(rq)->ctrl = &ctrl->ctrl;
297 298 299
	req->sqe.data = kzalloc(sizeof(struct nvme_command), GFP_KERNEL);
	if (!req->sqe.data)
		return -ENOMEM;
300 301 302 303 304 305 306 307 308 309 310 311

	req->queue = queue;

	return 0;
}

static int nvme_rdma_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
		unsigned int hctx_idx)
{
	struct nvme_rdma_ctrl *ctrl = data;
	struct nvme_rdma_queue *queue = &ctrl->queues[hctx_idx + 1];

312
	BUG_ON(hctx_idx >= ctrl->ctrl.queue_count);
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371

	hctx->driver_data = queue;
	return 0;
}

static int nvme_rdma_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
		unsigned int hctx_idx)
{
	struct nvme_rdma_ctrl *ctrl = data;
	struct nvme_rdma_queue *queue = &ctrl->queues[0];

	BUG_ON(hctx_idx != 0);

	hctx->driver_data = queue;
	return 0;
}

static void nvme_rdma_free_dev(struct kref *ref)
{
	struct nvme_rdma_device *ndev =
		container_of(ref, struct nvme_rdma_device, ref);

	mutex_lock(&device_list_mutex);
	list_del(&ndev->entry);
	mutex_unlock(&device_list_mutex);

	ib_dealloc_pd(ndev->pd);
	kfree(ndev);
}

static void nvme_rdma_dev_put(struct nvme_rdma_device *dev)
{
	kref_put(&dev->ref, nvme_rdma_free_dev);
}

static int nvme_rdma_dev_get(struct nvme_rdma_device *dev)
{
	return kref_get_unless_zero(&dev->ref);
}

static struct nvme_rdma_device *
nvme_rdma_find_get_device(struct rdma_cm_id *cm_id)
{
	struct nvme_rdma_device *ndev;

	mutex_lock(&device_list_mutex);
	list_for_each_entry(ndev, &device_list, entry) {
		if (ndev->dev->node_guid == cm_id->device->node_guid &&
		    nvme_rdma_dev_get(ndev))
			goto out_unlock;
	}

	ndev = kzalloc(sizeof(*ndev), GFP_KERNEL);
	if (!ndev)
		goto out_err;

	ndev->dev = cm_id->device;
	kref_init(&ndev->ref);

372 373
	ndev->pd = ib_alloc_pd(ndev->dev,
		register_always ? 0 : IB_PD_UNSAFE_GLOBAL_RKEY);
374 375 376 377 378 379 380
	if (IS_ERR(ndev->pd))
		goto out_free_dev;

	if (!(ndev->dev->attrs.device_cap_flags &
	      IB_DEVICE_MEM_MGT_EXTENSIONS)) {
		dev_err(&ndev->dev->dev,
			"Memory registrations not supported.\n");
381
		goto out_free_pd;
382 383
	}

384
	ndev->num_inline_segments = min(NVME_RDMA_MAX_INLINE_SEGMENTS,
385
					ndev->dev->attrs.max_send_sge - 1);
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
	list_add(&ndev->entry, &device_list);
out_unlock:
	mutex_unlock(&device_list_mutex);
	return ndev;

out_free_pd:
	ib_dealloc_pd(ndev->pd);
out_free_dev:
	kfree(ndev);
out_err:
	mutex_unlock(&device_list_mutex);
	return NULL;
}

static void nvme_rdma_destroy_queue_ib(struct nvme_rdma_queue *queue)
{
402 403 404 405 406 407 408 409
	struct nvme_rdma_device *dev;
	struct ib_device *ibdev;

	if (!test_and_clear_bit(NVME_RDMA_Q_TR_READY, &queue->flags))
		return;

	dev = queue->device;
	ibdev = dev->dev;
410

I
Israel Rukshin 已提交
411 412
	ib_mr_pool_destroy(queue->qp, &queue->qp->rdma_mrs);

413 414 415 416 417 418
	/*
	 * The cm_id object might have been destroyed during RDMA connection
	 * establishment error flow to avoid getting other cma events, thus
	 * the destruction of the QP shouldn't use rdma_cm API.
	 */
	ib_destroy_qp(queue->qp);
419 420 421 422 423 424 425 426
	ib_free_cq(queue->ib_cq);

	nvme_rdma_free_ring(ibdev, queue->rsp_ring, queue->queue_size,
			sizeof(struct nvme_completion), DMA_FROM_DEVICE);

	nvme_rdma_dev_put(dev);
}

I
Israel Rukshin 已提交
427 428 429 430 431 432
static int nvme_rdma_get_max_fr_pages(struct ib_device *ibdev)
{
	return min_t(u32, NVME_RDMA_MAX_SEGMENTS,
		     ibdev->attrs.max_fast_reg_page_list_len);
}

433
static int nvme_rdma_create_queue_ib(struct nvme_rdma_queue *queue)
434
{
435
	struct ib_device *ibdev;
436 437 438
	const int send_wr_factor = 3;			/* MR, SEND, INV */
	const int cq_factor = send_wr_factor + 1;	/* + RECV */
	int comp_vector, idx = nvme_rdma_queue_idx(queue);
439
	enum ib_poll_context poll_ctx;
440 441
	int ret;

442 443 444 445 446 447 448
	queue->device = nvme_rdma_find_get_device(queue->cm_id);
	if (!queue->device) {
		dev_err(queue->cm_id->device->dev.parent,
			"no client data found!\n");
		return -ECONNREFUSED;
	}
	ibdev = queue->device->dev;
449 450

	/*
451 452
	 * Spread I/O queues completion vectors according their queue index.
	 * Admin queues can always go on completion vector 0.
453
	 */
454
	comp_vector = idx == 0 ? idx : idx - 1;
455

456 457 458 459 460 461
	/* Polling queues need direct cq polling context */
	if (nvme_rdma_poll_queue(queue))
		poll_ctx = IB_POLL_DIRECT;
	else
		poll_ctx = IB_POLL_SOFTIRQ;

462
	/* +1 for ib_stop_cq */
463 464
	queue->ib_cq = ib_alloc_cq(ibdev, queue,
				cq_factor * queue->queue_size + 1,
465
				comp_vector, poll_ctx);
466 467
	if (IS_ERR(queue->ib_cq)) {
		ret = PTR_ERR(queue->ib_cq);
468
		goto out_put_dev;
469 470 471 472 473 474 475 476 477 478 479 480 481
	}

	ret = nvme_rdma_create_qp(queue, send_wr_factor);
	if (ret)
		goto out_destroy_ib_cq;

	queue->rsp_ring = nvme_rdma_alloc_ring(ibdev, queue->queue_size,
			sizeof(struct nvme_completion), DMA_FROM_DEVICE);
	if (!queue->rsp_ring) {
		ret = -ENOMEM;
		goto out_destroy_qp;
	}

I
Israel Rukshin 已提交
482 483 484
	ret = ib_mr_pool_init(queue->qp, &queue->qp->rdma_mrs,
			      queue->queue_size,
			      IB_MR_TYPE_MEM_REG,
485
			      nvme_rdma_get_max_fr_pages(ibdev), 0);
I
Israel Rukshin 已提交
486 487 488 489 490 491 492
	if (ret) {
		dev_err(queue->ctrl->ctrl.device,
			"failed to initialize MR pool sized %d for QID %d\n",
			queue->queue_size, idx);
		goto out_destroy_ring;
	}

493 494
	set_bit(NVME_RDMA_Q_TR_READY, &queue->flags);

495 496
	return 0;

I
Israel Rukshin 已提交
497 498 499
out_destroy_ring:
	nvme_rdma_free_ring(ibdev, queue->rsp_ring, queue->queue_size,
			    sizeof(struct nvme_completion), DMA_FROM_DEVICE);
500
out_destroy_qp:
501
	rdma_destroy_qp(queue->cm_id);
502 503
out_destroy_ib_cq:
	ib_free_cq(queue->ib_cq);
504 505
out_put_dev:
	nvme_rdma_dev_put(queue->device);
506 507 508
	return ret;
}

509
static int nvme_rdma_alloc_queue(struct nvme_rdma_ctrl *ctrl,
510 511 512
		int idx, size_t queue_size)
{
	struct nvme_rdma_queue *queue;
513
	struct sockaddr *src_addr = NULL;
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
	int ret;

	queue = &ctrl->queues[idx];
	queue->ctrl = ctrl;
	init_completion(&queue->cm_done);

	if (idx > 0)
		queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
	else
		queue->cmnd_capsule_len = sizeof(struct nvme_command);

	queue->queue_size = queue_size;

	queue->cm_id = rdma_create_id(&init_net, nvme_rdma_cm_handler, queue,
			RDMA_PS_TCP, IB_QPT_RC);
	if (IS_ERR(queue->cm_id)) {
		dev_info(ctrl->ctrl.device,
			"failed to create CM ID: %ld\n", PTR_ERR(queue->cm_id));
		return PTR_ERR(queue->cm_id);
	}

535
	if (ctrl->ctrl.opts->mask & NVMF_OPT_HOST_TRADDR)
536
		src_addr = (struct sockaddr *)&ctrl->src_addr;
537

538 539 540
	queue->cm_error = -ETIMEDOUT;
	ret = rdma_resolve_addr(queue->cm_id, src_addr,
			(struct sockaddr *)&ctrl->addr,
541 542 543 544 545 546 547 548 549 550
			NVME_RDMA_CONNECT_TIMEOUT_MS);
	if (ret) {
		dev_info(ctrl->ctrl.device,
			"rdma_resolve_addr failed (%d).\n", ret);
		goto out_destroy_cm_id;
	}

	ret = nvme_rdma_wait_for_cm(queue);
	if (ret) {
		dev_info(ctrl->ctrl.device,
551
			"rdma connection establishment failed (%d)\n", ret);
552 553 554
		goto out_destroy_cm_id;
	}

555
	set_bit(NVME_RDMA_Q_ALLOCATED, &queue->flags);
556 557 558 559 560

	return 0;

out_destroy_cm_id:
	rdma_destroy_id(queue->cm_id);
561
	nvme_rdma_destroy_queue_ib(queue);
562 563 564 565 566
	return ret;
}

static void nvme_rdma_stop_queue(struct nvme_rdma_queue *queue)
{
567 568 569
	if (!test_and_clear_bit(NVME_RDMA_Q_LIVE, &queue->flags))
		return;

570 571 572 573 574 575
	rdma_disconnect(queue->cm_id);
	ib_drain_qp(queue->qp);
}

static void nvme_rdma_free_queue(struct nvme_rdma_queue *queue)
{
576
	if (!test_and_clear_bit(NVME_RDMA_Q_ALLOCATED, &queue->flags))
577 578
		return;

579 580 581 582
	nvme_rdma_destroy_queue_ib(queue);
	rdma_destroy_id(queue->cm_id);
}

583
static void nvme_rdma_free_io_queues(struct nvme_rdma_ctrl *ctrl)
584
{
585 586 587 588
	int i;

	for (i = 1; i < ctrl->ctrl.queue_count; i++)
		nvme_rdma_free_queue(&ctrl->queues[i]);
589 590
}

591
static void nvme_rdma_stop_io_queues(struct nvme_rdma_ctrl *ctrl)
592 593 594
{
	int i;

595
	for (i = 1; i < ctrl->ctrl.queue_count; i++)
596
		nvme_rdma_stop_queue(&ctrl->queues[i]);
597 598
}

599 600
static int nvme_rdma_start_queue(struct nvme_rdma_ctrl *ctrl, int idx)
{
601 602
	struct nvme_rdma_queue *queue = &ctrl->queues[idx];
	bool poll = nvme_rdma_poll_queue(queue);
603 604 605
	int ret;

	if (idx)
606
		ret = nvmf_connect_io_queue(&ctrl->ctrl, idx, poll);
607 608 609 610
	else
		ret = nvmf_connect_admin_queue(&ctrl->ctrl);

	if (!ret)
611
		set_bit(NVME_RDMA_Q_LIVE, &queue->flags);
612 613 614 615 616 617 618
	else
		dev_info(ctrl->ctrl.device,
			"failed to connect queue: %d ret=%d\n", idx, ret);
	return ret;
}

static int nvme_rdma_start_io_queues(struct nvme_rdma_ctrl *ctrl)
619 620 621
{
	int i, ret = 0;

622
	for (i = 1; i < ctrl->ctrl.queue_count; i++) {
623 624
		ret = nvme_rdma_start_queue(ctrl, i);
		if (ret)
625
			goto out_stop_queues;
626 627
	}

628 629
	return 0;

630
out_stop_queues:
631 632
	for (i--; i >= 1; i--)
		nvme_rdma_stop_queue(&ctrl->queues[i]);
633 634 635
	return ret;
}

636
static int nvme_rdma_alloc_io_queues(struct nvme_rdma_ctrl *ctrl)
637
{
638
	struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
639
	struct ib_device *ibdev = ctrl->device->dev;
640 641
	unsigned int nr_io_queues, nr_default_queues;
	unsigned int nr_read_queues, nr_poll_queues;
642 643
	int i, ret;

644 645 646 647 648 649
	nr_read_queues = min_t(unsigned int, ibdev->num_comp_vectors,
				min(opts->nr_io_queues, num_online_cpus()));
	nr_default_queues =  min_t(unsigned int, ibdev->num_comp_vectors,
				min(opts->nr_write_queues, num_online_cpus()));
	nr_poll_queues = min(opts->nr_poll_queues, num_online_cpus());
	nr_io_queues = nr_read_queues + nr_default_queues + nr_poll_queues;
650

651 652 653 654
	ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
	if (ret)
		return ret;

655 656
	ctrl->ctrl.queue_count = nr_io_queues + 1;
	if (ctrl->ctrl.queue_count < 2)
657 658 659 660 661
		return 0;

	dev_info(ctrl->ctrl.device,
		"creating %d I/O queues.\n", nr_io_queues);

662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
	if (opts->nr_write_queues && nr_read_queues < nr_io_queues) {
		/*
		 * separate read/write queues
		 * hand out dedicated default queues only after we have
		 * sufficient read queues.
		 */
		ctrl->io_queues[HCTX_TYPE_READ] = nr_read_queues;
		nr_io_queues -= ctrl->io_queues[HCTX_TYPE_READ];
		ctrl->io_queues[HCTX_TYPE_DEFAULT] =
			min(nr_default_queues, nr_io_queues);
		nr_io_queues -= ctrl->io_queues[HCTX_TYPE_DEFAULT];
	} else {
		/*
		 * shared read/write queues
		 * either no write queues were requested, or we don't have
		 * sufficient queue count to have dedicated default queues.
		 */
		ctrl->io_queues[HCTX_TYPE_DEFAULT] =
			min(nr_read_queues, nr_io_queues);
		nr_io_queues -= ctrl->io_queues[HCTX_TYPE_DEFAULT];
	}

	if (opts->nr_poll_queues && nr_io_queues) {
		/* map dedicated poll queues only if we have queues left */
		ctrl->io_queues[HCTX_TYPE_POLL] =
			min(nr_poll_queues, nr_io_queues);
	}

690
	for (i = 1; i < ctrl->ctrl.queue_count; i++) {
691 692 693
		ret = nvme_rdma_alloc_queue(ctrl, i,
				ctrl->ctrl.sqsize + 1);
		if (ret)
694 695 696 697 698 699
			goto out_free_queues;
	}

	return 0;

out_free_queues:
700
	for (i--; i >= 1; i--)
701
		nvme_rdma_free_queue(&ctrl->queues[i]);
702 703 704 705

	return ret;
}

706 707 708 709 710 711 712 713 714 715 716
static struct blk_mq_tag_set *nvme_rdma_alloc_tagset(struct nvme_ctrl *nctrl,
		bool admin)
{
	struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
	struct blk_mq_tag_set *set;
	int ret;

	if (admin) {
		set = &ctrl->admin_tag_set;
		memset(set, 0, sizeof(*set));
		set->ops = &nvme_rdma_admin_mq_ops;
K
Keith Busch 已提交
717
		set->queue_depth = NVME_AQ_MQ_TAG_DEPTH;
718
		set->reserved_tags = 2; /* connect + keep-alive */
719
		set->numa_node = nctrl->numa_node;
720 721 722 723 724
		set->cmd_size = sizeof(struct nvme_rdma_request) +
			SG_CHUNK_SIZE * sizeof(struct scatterlist);
		set->driver_data = ctrl;
		set->nr_hw_queues = 1;
		set->timeout = ADMIN_TIMEOUT;
725
		set->flags = BLK_MQ_F_NO_SCHED;
726 727 728 729
	} else {
		set = &ctrl->tag_set;
		memset(set, 0, sizeof(*set));
		set->ops = &nvme_rdma_mq_ops;
730
		set->queue_depth = nctrl->sqsize + 1;
731
		set->reserved_tags = 1; /* fabric connect */
732
		set->numa_node = nctrl->numa_node;
733 734 735 736 737 738
		set->flags = BLK_MQ_F_SHOULD_MERGE;
		set->cmd_size = sizeof(struct nvme_rdma_request) +
			SG_CHUNK_SIZE * sizeof(struct scatterlist);
		set->driver_data = ctrl;
		set->nr_hw_queues = nctrl->queue_count - 1;
		set->timeout = NVME_IO_TIMEOUT;
739
		set->nr_maps = nctrl->opts->nr_poll_queues ? HCTX_MAX_TYPES : 2;
740 741 742 743
	}

	ret = blk_mq_alloc_tag_set(set);
	if (ret)
744
		return ERR_PTR(ret);
745 746 747 748

	return set;
}

749 750
static void nvme_rdma_destroy_admin_queue(struct nvme_rdma_ctrl *ctrl,
		bool remove)
751
{
752 753
	if (remove) {
		blk_cleanup_queue(ctrl->ctrl.admin_q);
754
		blk_mq_free_tag_set(ctrl->ctrl.admin_tagset);
755
	}
756 757 758 759 760
	if (ctrl->async_event_sqe.data) {
		nvme_rdma_free_qe(ctrl->device->dev, &ctrl->async_event_sqe,
				sizeof(struct nvme_command), DMA_TO_DEVICE);
		ctrl->async_event_sqe.data = NULL;
	}
761
	nvme_rdma_free_queue(&ctrl->queues[0]);
762 763
}

764 765
static int nvme_rdma_configure_admin_queue(struct nvme_rdma_ctrl *ctrl,
		bool new)
766 767 768
{
	int error;

769
	error = nvme_rdma_alloc_queue(ctrl, 0, NVME_AQ_DEPTH);
770 771 772 773
	if (error)
		return error;

	ctrl->device = ctrl->queues[0].device;
774
	ctrl->ctrl.numa_node = dev_to_node(ctrl->device->dev->dma_device);
775

I
Israel Rukshin 已提交
776
	ctrl->max_fr_pages = nvme_rdma_get_max_fr_pages(ctrl->device->dev);
777

778 779 780 781 782
	/*
	 * Bind the async event SQE DMA mapping to the admin queue lifetime.
	 * It's safe, since any chage in the underlying RDMA device will issue
	 * error recovery and queue re-creation.
	 */
783 784 785 786 787
	error = nvme_rdma_alloc_qe(ctrl->device->dev, &ctrl->async_event_sqe,
			sizeof(struct nvme_command), DMA_TO_DEVICE);
	if (error)
		goto out_free_queue;

788 789
	if (new) {
		ctrl->ctrl.admin_tagset = nvme_rdma_alloc_tagset(&ctrl->ctrl, true);
790 791
		if (IS_ERR(ctrl->ctrl.admin_tagset)) {
			error = PTR_ERR(ctrl->ctrl.admin_tagset);
792
			goto out_free_async_qe;
793
		}
794

795 796 797 798 799
		ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
		if (IS_ERR(ctrl->ctrl.admin_q)) {
			error = PTR_ERR(ctrl->ctrl.admin_q);
			goto out_free_tagset;
		}
800 801
	}

802
	error = nvme_rdma_start_queue(ctrl, 0);
803 804 805
	if (error)
		goto out_cleanup_queue;

806
	error = ctrl->ctrl.ops->reg_read64(&ctrl->ctrl, NVME_REG_CAP,
807 808 809 810
			&ctrl->ctrl.cap);
	if (error) {
		dev_err(ctrl->ctrl.device,
			"prop_get NVME_REG_CAP failed\n");
811
		goto out_stop_queue;
812 813 814 815 816 817 818
	}

	ctrl->ctrl.sqsize =
		min_t(int, NVME_CAP_MQES(ctrl->ctrl.cap), ctrl->ctrl.sqsize);

	error = nvme_enable_ctrl(&ctrl->ctrl, ctrl->ctrl.cap);
	if (error)
819
		goto out_stop_queue;
820 821

	ctrl->ctrl.max_hw_sectors =
822
		(ctrl->max_fr_pages - 1) << (ilog2(SZ_4K) - 9);
823 824 825

	error = nvme_init_identify(&ctrl->ctrl);
	if (error)
826
		goto out_stop_queue;
827 828 829

	return 0;

830 831
out_stop_queue:
	nvme_rdma_stop_queue(&ctrl->queues[0]);
832
out_cleanup_queue:
833 834
	if (new)
		blk_cleanup_queue(ctrl->ctrl.admin_q);
835
out_free_tagset:
836
	if (new)
837
		blk_mq_free_tag_set(ctrl->ctrl.admin_tagset);
838 839 840
out_free_async_qe:
	nvme_rdma_free_qe(ctrl->device->dev, &ctrl->async_event_sqe,
		sizeof(struct nvme_command), DMA_TO_DEVICE);
841
	ctrl->async_event_sqe.data = NULL;
842 843 844 845 846
out_free_queue:
	nvme_rdma_free_queue(&ctrl->queues[0]);
	return error;
}

847 848 849 850 851
static void nvme_rdma_destroy_io_queues(struct nvme_rdma_ctrl *ctrl,
		bool remove)
{
	if (remove) {
		blk_cleanup_queue(ctrl->ctrl.connect_q);
852
		blk_mq_free_tag_set(ctrl->ctrl.tagset);
853 854 855 856 857 858 859 860
	}
	nvme_rdma_free_io_queues(ctrl);
}

static int nvme_rdma_configure_io_queues(struct nvme_rdma_ctrl *ctrl, bool new)
{
	int ret;

861
	ret = nvme_rdma_alloc_io_queues(ctrl);
862 863 864 865 866
	if (ret)
		return ret;

	if (new) {
		ctrl->ctrl.tagset = nvme_rdma_alloc_tagset(&ctrl->ctrl, false);
867 868
		if (IS_ERR(ctrl->ctrl.tagset)) {
			ret = PTR_ERR(ctrl->ctrl.tagset);
869
			goto out_free_io_queues;
870
		}
871 872 873 874 875 876 877 878 879 880 881

		ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
		if (IS_ERR(ctrl->ctrl.connect_q)) {
			ret = PTR_ERR(ctrl->ctrl.connect_q);
			goto out_free_tag_set;
		}
	} else {
		blk_mq_update_nr_hw_queues(&ctrl->tag_set,
			ctrl->ctrl.queue_count - 1);
	}

882
	ret = nvme_rdma_start_io_queues(ctrl);
883 884 885 886 887 888 889 890 891 892
	if (ret)
		goto out_cleanup_connect_q;

	return 0;

out_cleanup_connect_q:
	if (new)
		blk_cleanup_queue(ctrl->ctrl.connect_q);
out_free_tag_set:
	if (new)
893
		blk_mq_free_tag_set(ctrl->ctrl.tagset);
894 895 896
out_free_io_queues:
	nvme_rdma_free_io_queues(ctrl);
	return ret;
897 898
}

899 900 901 902 903
static void nvme_rdma_teardown_admin_queue(struct nvme_rdma_ctrl *ctrl,
		bool remove)
{
	blk_mq_quiesce_queue(ctrl->ctrl.admin_q);
	nvme_rdma_stop_queue(&ctrl->queues[0]);
904 905 906
	if (ctrl->ctrl.admin_tagset)
		blk_mq_tagset_busy_iter(ctrl->ctrl.admin_tagset,
			nvme_cancel_request, &ctrl->ctrl);
907 908 909 910 911 912 913 914 915 916
	blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
	nvme_rdma_destroy_admin_queue(ctrl, remove);
}

static void nvme_rdma_teardown_io_queues(struct nvme_rdma_ctrl *ctrl,
		bool remove)
{
	if (ctrl->ctrl.queue_count > 1) {
		nvme_stop_queues(&ctrl->ctrl);
		nvme_rdma_stop_io_queues(ctrl);
917 918 919
		if (ctrl->ctrl.tagset)
			blk_mq_tagset_busy_iter(ctrl->ctrl.tagset,
				nvme_cancel_request, &ctrl->ctrl);
920 921 922 923 924 925
		if (remove)
			nvme_start_queues(&ctrl->ctrl);
		nvme_rdma_destroy_io_queues(ctrl, remove);
	}
}

926 927 928 929 930 931 932 933 934 935 936 937 938
static void nvme_rdma_free_ctrl(struct nvme_ctrl *nctrl)
{
	struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);

	if (list_empty(&ctrl->list))
		goto free_ctrl;

	mutex_lock(&nvme_rdma_ctrl_mutex);
	list_del(&ctrl->list);
	mutex_unlock(&nvme_rdma_ctrl_mutex);

	nvmf_free_options(nctrl->opts);
free_ctrl:
939
	kfree(ctrl->queues);
940 941 942
	kfree(ctrl);
}

S
Sagi Grimberg 已提交
943 944 945
static void nvme_rdma_reconnect_or_remove(struct nvme_rdma_ctrl *ctrl)
{
	/* If we are resetting/deleting then do nothing */
946
	if (ctrl->ctrl.state != NVME_CTRL_CONNECTING) {
S
Sagi Grimberg 已提交
947 948 949 950 951 952 953 954
		WARN_ON_ONCE(ctrl->ctrl.state == NVME_CTRL_NEW ||
			ctrl->ctrl.state == NVME_CTRL_LIVE);
		return;
	}

	if (nvmf_should_reconnect(&ctrl->ctrl)) {
		dev_info(ctrl->ctrl.device, "Reconnecting in %d seconds...\n",
			ctrl->ctrl.opts->reconnect_delay);
955
		queue_delayed_work(nvme_wq, &ctrl->reconnect_work,
S
Sagi Grimberg 已提交
956 957
				ctrl->ctrl.opts->reconnect_delay * HZ);
	} else {
958
		nvme_delete_ctrl(&ctrl->ctrl);
S
Sagi Grimberg 已提交
959 960 961
	}
}

962
static int nvme_rdma_setup_ctrl(struct nvme_rdma_ctrl *ctrl, bool new)
963
{
964
	int ret = -EINVAL;
965 966
	bool changed;

967
	ret = nvme_rdma_configure_admin_queue(ctrl, new);
968
	if (ret)
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
		return ret;

	if (ctrl->ctrl.icdoff) {
		dev_err(ctrl->ctrl.device, "icdoff is not supported!\n");
		goto destroy_admin;
	}

	if (!(ctrl->ctrl.sgls & (1 << 2))) {
		dev_err(ctrl->ctrl.device,
			"Mandatory keyed sgls are not supported!\n");
		goto destroy_admin;
	}

	if (ctrl->ctrl.opts->queue_size > ctrl->ctrl.sqsize + 1) {
		dev_warn(ctrl->ctrl.device,
			"queue_size %zu > ctrl sqsize %u, clamping down\n",
			ctrl->ctrl.opts->queue_size, ctrl->ctrl.sqsize + 1);
	}

	if (ctrl->ctrl.sqsize + 1 > ctrl->ctrl.maxcmd) {
		dev_warn(ctrl->ctrl.device,
			"sqsize %u > ctrl maxcmd %u, clamping down\n",
			ctrl->ctrl.sqsize + 1, ctrl->ctrl.maxcmd);
		ctrl->ctrl.sqsize = ctrl->ctrl.maxcmd - 1;
	}
994

995 996
	if (ctrl->ctrl.sgls & (1 << 20))
		ctrl->use_inline_data = true;
997

998
	if (ctrl->ctrl.queue_count > 1) {
999
		ret = nvme_rdma_configure_io_queues(ctrl, new);
1000
		if (ret)
1001
			goto destroy_admin;
1002 1003 1004
	}

	changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
1005 1006 1007
	if (!changed) {
		/* state change failure is ok if we're in DELETING state */
		WARN_ON_ONCE(ctrl->ctrl.state != NVME_CTRL_DELETING);
1008 1009
		ret = -EINVAL;
		goto destroy_io;
1010 1011
	}

1012
	nvme_start_ctrl(&ctrl->ctrl);
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
	return 0;

destroy_io:
	if (ctrl->ctrl.queue_count > 1)
		nvme_rdma_destroy_io_queues(ctrl, new);
destroy_admin:
	nvme_rdma_stop_queue(&ctrl->queues[0]);
	nvme_rdma_destroy_admin_queue(ctrl, new);
	return ret;
}

static void nvme_rdma_reconnect_ctrl_work(struct work_struct *work)
{
	struct nvme_rdma_ctrl *ctrl = container_of(to_delayed_work(work),
			struct nvme_rdma_ctrl, reconnect_work);

	++ctrl->ctrl.nr_reconnects;

	if (nvme_rdma_setup_ctrl(ctrl, false))
		goto requeue;
1033

1034 1035 1036 1037
	dev_info(ctrl->ctrl.device, "Successfully reconnected (%d attempts)\n",
			ctrl->ctrl.nr_reconnects);

	ctrl->ctrl.nr_reconnects = 0;
1038 1039 1040 1041

	return;

requeue:
S
Sagi Grimberg 已提交
1042
	dev_info(ctrl->ctrl.device, "Failed reconnect attempt %d\n",
1043
			ctrl->ctrl.nr_reconnects);
S
Sagi Grimberg 已提交
1044
	nvme_rdma_reconnect_or_remove(ctrl);
1045 1046 1047 1048 1049 1050 1051
}

static void nvme_rdma_error_recovery_work(struct work_struct *work)
{
	struct nvme_rdma_ctrl *ctrl = container_of(work,
			struct nvme_rdma_ctrl, err_work);

1052
	nvme_stop_keep_alive(&ctrl->ctrl);
1053
	nvme_rdma_teardown_io_queues(ctrl, false);
1054
	nvme_start_queues(&ctrl->ctrl);
1055
	nvme_rdma_teardown_admin_queue(ctrl, false);
1056

1057
	if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
1058 1059
		/* state change failure is ok if we're in DELETING state */
		WARN_ON_ONCE(ctrl->ctrl.state != NVME_CTRL_DELETING);
1060 1061 1062
		return;
	}

S
Sagi Grimberg 已提交
1063
	nvme_rdma_reconnect_or_remove(ctrl);
1064 1065 1066 1067
}

static void nvme_rdma_error_recovery(struct nvme_rdma_ctrl *ctrl)
{
1068
	if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING))
1069 1070
		return;

1071
	queue_work(nvme_wq, &ctrl->err_work);
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
}

static void nvme_rdma_wr_error(struct ib_cq *cq, struct ib_wc *wc,
		const char *op)
{
	struct nvme_rdma_queue *queue = cq->cq_context;
	struct nvme_rdma_ctrl *ctrl = queue->ctrl;

	if (ctrl->ctrl.state == NVME_CTRL_LIVE)
		dev_info(ctrl->ctrl.device,
			     "%s for CQE 0x%p failed with status %s (%d)\n",
			     op, wc->wr_cqe,
			     ib_wc_status_msg(wc->status), wc->status);
	nvme_rdma_error_recovery(ctrl);
}

static void nvme_rdma_memreg_done(struct ib_cq *cq, struct ib_wc *wc)
{
	if (unlikely(wc->status != IB_WC_SUCCESS))
		nvme_rdma_wr_error(cq, wc, "MEMREG");
}

static void nvme_rdma_inv_rkey_done(struct ib_cq *cq, struct ib_wc *wc)
{
1096 1097 1098 1099 1100
	struct nvme_rdma_request *req =
		container_of(wc->wr_cqe, struct nvme_rdma_request, reg_cqe);
	struct request *rq = blk_mq_rq_from_pdu(req);

	if (unlikely(wc->status != IB_WC_SUCCESS)) {
1101
		nvme_rdma_wr_error(cq, wc, "LOCAL_INV");
1102 1103 1104 1105 1106 1107
		return;
	}

	if (refcount_dec_and_test(&req->ref))
		nvme_end_request(rq, req->status, req->result);

1108 1109 1110 1111 1112 1113 1114 1115 1116
}

static int nvme_rdma_inv_rkey(struct nvme_rdma_queue *queue,
		struct nvme_rdma_request *req)
{
	struct ib_send_wr wr = {
		.opcode		    = IB_WR_LOCAL_INV,
		.next		    = NULL,
		.num_sge	    = 0,
1117
		.send_flags	    = IB_SEND_SIGNALED,
1118 1119 1120 1121 1122 1123
		.ex.invalidate_rkey = req->mr->rkey,
	};

	req->reg_cqe.done = nvme_rdma_inv_rkey_done;
	wr.wr_cqe = &req->reg_cqe;

1124
	return ib_post_send(queue->qp, &wr, NULL);
1125 1126 1127 1128 1129 1130 1131 1132 1133
}

static void nvme_rdma_unmap_data(struct nvme_rdma_queue *queue,
		struct request *rq)
{
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
	struct nvme_rdma_device *dev = queue->device;
	struct ib_device *ibdev = dev->dev;

1134
	if (!blk_rq_nr_phys_segments(rq))
1135 1136
		return;

I
Israel Rukshin 已提交
1137 1138 1139 1140 1141
	if (req->mr) {
		ib_mr_pool_put(queue->qp, &queue->qp->rdma_mrs, req->mr);
		req->mr = NULL;
	}

1142 1143 1144 1145 1146
	ib_dma_unmap_sg(ibdev, req->sg_table.sgl,
			req->nents, rq_data_dir(rq) ==
				    WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);

	nvme_cleanup_cmd(rq);
1147
	sg_free_table_chained(&req->sg_table, SG_CHUNK_SIZE);
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
}

static int nvme_rdma_set_sg_null(struct nvme_command *c)
{
	struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;

	sg->addr = 0;
	put_unaligned_le24(0, sg->length);
	put_unaligned_le32(0, sg->key);
	sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
	return 0;
}

static int nvme_rdma_map_sg_inline(struct nvme_rdma_queue *queue,
1162 1163
		struct nvme_rdma_request *req, struct nvme_command *c,
		int count)
1164 1165
{
	struct nvme_sgl_desc *sg = &c->common.dptr.sgl;
1166 1167 1168 1169
	struct scatterlist *sgl = req->sg_table.sgl;
	struct ib_sge *sge = &req->sge[1];
	u32 len = 0;
	int i;
1170

1171 1172 1173 1174 1175 1176
	for (i = 0; i < count; i++, sgl++, sge++) {
		sge->addr = sg_dma_address(sgl);
		sge->length = sg_dma_len(sgl);
		sge->lkey = queue->device->pd->local_dma_lkey;
		len += sge->length;
	}
1177 1178

	sg->addr = cpu_to_le64(queue->ctrl->ctrl.icdoff);
1179
	sg->length = cpu_to_le32(len);
1180 1181
	sg->type = (NVME_SGL_FMT_DATA_DESC << 4) | NVME_SGL_FMT_OFFSET;

1182
	req->num_sge += count;
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
	return 0;
}

static int nvme_rdma_map_sg_single(struct nvme_rdma_queue *queue,
		struct nvme_rdma_request *req, struct nvme_command *c)
{
	struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;

	sg->addr = cpu_to_le64(sg_dma_address(req->sg_table.sgl));
	put_unaligned_le24(sg_dma_len(req->sg_table.sgl), sg->length);
1193
	put_unaligned_le32(queue->device->pd->unsafe_global_rkey, sg->key);
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
	return 0;
}

static int nvme_rdma_map_sg_fr(struct nvme_rdma_queue *queue,
		struct nvme_rdma_request *req, struct nvme_command *c,
		int count)
{
	struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
	int nr;

I
Israel Rukshin 已提交
1205 1206 1207 1208
	req->mr = ib_mr_pool_get(queue->qp, &queue->qp->rdma_mrs);
	if (WARN_ON_ONCE(!req->mr))
		return -EAGAIN;

1209 1210 1211 1212 1213
	/*
	 * Align the MR to a 4K page size to match the ctrl page size and
	 * the block virtual boundary.
	 */
	nr = ib_map_mr_sg(req->mr, req->sg_table.sgl, count, NULL, SZ_4K);
1214
	if (unlikely(nr < count)) {
I
Israel Rukshin 已提交
1215 1216
		ib_mr_pool_put(queue->qp, &queue->qp->rdma_mrs, req->mr);
		req->mr = NULL;
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
		if (nr < 0)
			return nr;
		return -EINVAL;
	}

	ib_update_fast_reg_key(req->mr, ib_inc_rkey(req->mr->rkey));

	req->reg_cqe.done = nvme_rdma_memreg_done;
	memset(&req->reg_wr, 0, sizeof(req->reg_wr));
	req->reg_wr.wr.opcode = IB_WR_REG_MR;
	req->reg_wr.wr.wr_cqe = &req->reg_cqe;
	req->reg_wr.wr.num_sge = 0;
	req->reg_wr.mr = req->mr;
	req->reg_wr.key = req->mr->rkey;
	req->reg_wr.access = IB_ACCESS_LOCAL_WRITE |
			     IB_ACCESS_REMOTE_READ |
			     IB_ACCESS_REMOTE_WRITE;

	sg->addr = cpu_to_le64(req->mr->iova);
	put_unaligned_le24(req->mr->length, sg->length);
	put_unaligned_le32(req->mr->rkey, sg->key);
	sg->type = (NVME_KEY_SGL_FMT_DATA_DESC << 4) |
			NVME_SGL_FMT_INVALIDATE;

	return 0;
}

static int nvme_rdma_map_data(struct nvme_rdma_queue *queue,
1245
		struct request *rq, struct nvme_command *c)
1246 1247 1248 1249
{
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
	struct nvme_rdma_device *dev = queue->device;
	struct ib_device *ibdev = dev->dev;
1250
	int count, ret;
1251 1252

	req->num_sge = 1;
1253
	refcount_set(&req->ref, 2); /* send and recv completions */
1254 1255 1256

	c->common.flags |= NVME_CMD_SGL_METABUF;

1257
	if (!blk_rq_nr_phys_segments(rq))
1258 1259 1260
		return nvme_rdma_set_sg_null(c);

	req->sg_table.sgl = req->first_sgl;
1261
	ret = sg_alloc_table_chained(&req->sg_table,
1262 1263
			blk_rq_nr_phys_segments(rq), req->sg_table.sgl,
			SG_CHUNK_SIZE);
1264 1265 1266
	if (ret)
		return -ENOMEM;

1267
	req->nents = blk_rq_map_sg(rq->q, rq, req->sg_table.sgl);
1268

1269
	count = ib_dma_map_sg(ibdev, req->sg_table.sgl, req->nents,
1270 1271
		    rq_data_dir(rq) == WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
	if (unlikely(count <= 0)) {
1272 1273
		ret = -EIO;
		goto out_free_table;
1274 1275
	}

1276
	if (count <= dev->num_inline_segments) {
1277
		if (rq_data_dir(rq) == WRITE && nvme_rdma_queue_idx(queue) &&
1278
		    queue->ctrl->use_inline_data &&
1279
		    blk_rq_payload_bytes(rq) <=
1280
				nvme_rdma_inline_data_size(queue)) {
1281
			ret = nvme_rdma_map_sg_inline(queue, req, c, count);
1282 1283
			goto out;
		}
1284

1285
		if (count == 1 && dev->pd->flags & IB_PD_UNSAFE_GLOBAL_RKEY) {
1286 1287 1288
			ret = nvme_rdma_map_sg_single(queue, req, c);
			goto out;
		}
1289 1290
	}

1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	ret = nvme_rdma_map_sg_fr(queue, req, c, count);
out:
	if (unlikely(ret))
		goto out_unmap_sg;

	return 0;

out_unmap_sg:
	ib_dma_unmap_sg(ibdev, req->sg_table.sgl,
			req->nents, rq_data_dir(rq) ==
			WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
out_free_table:
1303
	sg_free_table_chained(&req->sg_table, SG_CHUNK_SIZE);
1304
	return ret;
1305 1306 1307 1308
}

static void nvme_rdma_send_done(struct ib_cq *cq, struct ib_wc *wc)
{
1309 1310 1311 1312 1313 1314 1315
	struct nvme_rdma_qe *qe =
		container_of(wc->wr_cqe, struct nvme_rdma_qe, cqe);
	struct nvme_rdma_request *req =
		container_of(qe, struct nvme_rdma_request, sqe);
	struct request *rq = blk_mq_rq_from_pdu(req);

	if (unlikely(wc->status != IB_WC_SUCCESS)) {
1316
		nvme_rdma_wr_error(cq, wc, "SEND");
1317 1318 1319 1320 1321
		return;
	}

	if (refcount_dec_and_test(&req->ref))
		nvme_end_request(rq, req->status, req->result);
1322 1323 1324 1325
}

static int nvme_rdma_post_send(struct nvme_rdma_queue *queue,
		struct nvme_rdma_qe *qe, struct ib_sge *sge, u32 num_sge,
1326
		struct ib_send_wr *first)
1327
{
1328
	struct ib_send_wr wr;
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
	int ret;

	sge->addr   = qe->dma;
	sge->length = sizeof(struct nvme_command),
	sge->lkey   = queue->device->pd->local_dma_lkey;

	wr.next       = NULL;
	wr.wr_cqe     = &qe->cqe;
	wr.sg_list    = sge;
	wr.num_sge    = num_sge;
	wr.opcode     = IB_WR_SEND;
1340
	wr.send_flags = IB_SEND_SIGNALED;
1341 1342 1343 1344 1345 1346

	if (first)
		first->next = &wr;
	else
		first = &wr;

1347
	ret = ib_post_send(queue->qp, first, NULL);
1348
	if (unlikely(ret)) {
1349 1350 1351 1352 1353 1354 1355 1356 1357
		dev_err(queue->ctrl->ctrl.device,
			     "%s failed with error code %d\n", __func__, ret);
	}
	return ret;
}

static int nvme_rdma_post_recv(struct nvme_rdma_queue *queue,
		struct nvme_rdma_qe *qe)
{
1358
	struct ib_recv_wr wr;
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
	struct ib_sge list;
	int ret;

	list.addr   = qe->dma;
	list.length = sizeof(struct nvme_completion);
	list.lkey   = queue->device->pd->local_dma_lkey;

	qe->cqe.done = nvme_rdma_recv_done;

	wr.next     = NULL;
	wr.wr_cqe   = &qe->cqe;
	wr.sg_list  = &list;
	wr.num_sge  = 1;

1373
	ret = ib_post_recv(queue->qp, &wr, NULL);
1374
	if (unlikely(ret)) {
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
		dev_err(queue->ctrl->ctrl.device,
			"%s failed with error code %d\n", __func__, ret);
	}
	return ret;
}

static struct blk_mq_tags *nvme_rdma_tagset(struct nvme_rdma_queue *queue)
{
	u32 queue_idx = nvme_rdma_queue_idx(queue);

	if (queue_idx == 0)
		return queue->ctrl->admin_tag_set.tags[queue_idx];
	return queue->ctrl->tag_set.tags[queue_idx - 1];
}

1390 1391 1392 1393 1394 1395
static void nvme_rdma_async_done(struct ib_cq *cq, struct ib_wc *wc)
{
	if (unlikely(wc->status != IB_WC_SUCCESS))
		nvme_rdma_wr_error(cq, wc, "ASYNC");
}

1396
static void nvme_rdma_submit_async_event(struct nvme_ctrl *arg)
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
{
	struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(arg);
	struct nvme_rdma_queue *queue = &ctrl->queues[0];
	struct ib_device *dev = queue->device->dev;
	struct nvme_rdma_qe *sqe = &ctrl->async_event_sqe;
	struct nvme_command *cmd = sqe->data;
	struct ib_sge sge;
	int ret;

	ib_dma_sync_single_for_cpu(dev, sqe->dma, sizeof(*cmd), DMA_TO_DEVICE);

	memset(cmd, 0, sizeof(*cmd));
	cmd->common.opcode = nvme_admin_async_event;
K
Keith Busch 已提交
1410
	cmd->common.command_id = NVME_AQ_BLK_MQ_DEPTH;
1411 1412 1413
	cmd->common.flags |= NVME_CMD_SGL_METABUF;
	nvme_rdma_set_sg_null(cmd);

1414 1415
	sqe->cqe.done = nvme_rdma_async_done;

1416 1417 1418
	ib_dma_sync_single_for_device(dev, sqe->dma, sizeof(*cmd),
			DMA_TO_DEVICE);

1419
	ret = nvme_rdma_post_send(queue, sqe, &sge, 1, NULL);
1420 1421 1422
	WARN_ON_ONCE(ret);
}

1423 1424
static void nvme_rdma_process_nvme_rsp(struct nvme_rdma_queue *queue,
		struct nvme_completion *cqe, struct ib_wc *wc)
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
{
	struct request *rq;
	struct nvme_rdma_request *req;

	rq = blk_mq_tag_to_rq(nvme_rdma_tagset(queue), cqe->command_id);
	if (!rq) {
		dev_err(queue->ctrl->ctrl.device,
			"tag 0x%x on QP %#x not found\n",
			cqe->command_id, queue->qp->qp_num);
		nvme_rdma_error_recovery(queue->ctrl);
1435
		return;
1436 1437 1438
	}
	req = blk_mq_rq_to_pdu(rq);

1439 1440
	req->status = cqe->status;
	req->result = cqe->result;
1441

1442 1443 1444 1445 1446 1447 1448
	if (wc->wc_flags & IB_WC_WITH_INVALIDATE) {
		if (unlikely(wc->ex.invalidate_rkey != req->mr->rkey)) {
			dev_err(queue->ctrl->ctrl.device,
				"Bogus remote invalidation for rkey %#x\n",
				req->mr->rkey);
			nvme_rdma_error_recovery(queue->ctrl);
		}
I
Israel Rukshin 已提交
1449
	} else if (req->mr) {
1450 1451
		int ret;

1452 1453 1454 1455 1456 1457 1458 1459
		ret = nvme_rdma_inv_rkey(queue, req);
		if (unlikely(ret < 0)) {
			dev_err(queue->ctrl->ctrl.device,
				"Queueing INV WR for rkey %#x failed (%d)\n",
				req->mr->rkey, ret);
			nvme_rdma_error_recovery(queue->ctrl);
		}
		/* the local invalidation completion will end the request */
1460
		return;
1461
	}
1462

1463
	if (refcount_dec_and_test(&req->ref))
1464
		nvme_end_request(rq, req->status, req->result);
1465 1466
}

1467
static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc)
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477
{
	struct nvme_rdma_qe *qe =
		container_of(wc->wr_cqe, struct nvme_rdma_qe, cqe);
	struct nvme_rdma_queue *queue = cq->cq_context;
	struct ib_device *ibdev = queue->device->dev;
	struct nvme_completion *cqe = qe->data;
	const size_t len = sizeof(struct nvme_completion);

	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		nvme_rdma_wr_error(cq, wc, "RECV");
1478
		return;
1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
	}

	ib_dma_sync_single_for_cpu(ibdev, qe->dma, len, DMA_FROM_DEVICE);
	/*
	 * AEN requests are special as they don't time out and can
	 * survive any kind of queue freeze and often don't respond to
	 * aborts.  We don't even bother to allocate a struct request
	 * for them but rather special case them here.
	 */
	if (unlikely(nvme_rdma_queue_idx(queue) == 0 &&
K
Keith Busch 已提交
1489
			cqe->command_id >= NVME_AQ_BLK_MQ_DEPTH))
1490 1491
		nvme_complete_async_event(&queue->ctrl->ctrl, cqe->status,
				&cqe->result);
1492
	else
1493
		nvme_rdma_process_nvme_rsp(queue, cqe, wc);
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
	ib_dma_sync_single_for_device(ibdev, qe->dma, len, DMA_FROM_DEVICE);

	nvme_rdma_post_recv(queue, qe);
}

static int nvme_rdma_conn_established(struct nvme_rdma_queue *queue)
{
	int ret, i;

	for (i = 0; i < queue->queue_size; i++) {
		ret = nvme_rdma_post_recv(queue, &queue->rsp_ring[i]);
		if (ret)
			goto out_destroy_queue_ib;
	}

	return 0;

out_destroy_queue_ib:
	nvme_rdma_destroy_queue_ib(queue);
	return ret;
}

static int nvme_rdma_conn_rejected(struct nvme_rdma_queue *queue,
		struct rdma_cm_event *ev)
{
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
	struct rdma_cm_id *cm_id = queue->cm_id;
	int status = ev->status;
	const char *rej_msg;
	const struct nvme_rdma_cm_rej *rej_data;
	u8 rej_data_len;

	rej_msg = rdma_reject_msg(cm_id, status);
	rej_data = rdma_consumer_reject_data(cm_id, ev, &rej_data_len);

	if (rej_data && rej_data_len >= sizeof(u16)) {
		u16 sts = le16_to_cpu(rej_data->sts);
1530 1531

		dev_err(queue->ctrl->ctrl.device,
1532 1533
		      "Connect rejected: status %d (%s) nvme status %d (%s).\n",
		      status, rej_msg, sts, nvme_rdma_cm_msg(sts));
1534 1535
	} else {
		dev_err(queue->ctrl->ctrl.device,
1536
			"Connect rejected: status %d (%s).\n", status, rej_msg);
1537 1538 1539 1540 1541 1542 1543 1544 1545
	}

	return -ECONNRESET;
}

static int nvme_rdma_addr_resolved(struct nvme_rdma_queue *queue)
{
	int ret;

1546 1547 1548
	ret = nvme_rdma_create_queue_ib(queue);
	if (ret)
		return ret;
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568

	ret = rdma_resolve_route(queue->cm_id, NVME_RDMA_CONNECT_TIMEOUT_MS);
	if (ret) {
		dev_err(queue->ctrl->ctrl.device,
			"rdma_resolve_route failed (%d).\n",
			queue->cm_error);
		goto out_destroy_queue;
	}

	return 0;

out_destroy_queue:
	nvme_rdma_destroy_queue_ib(queue);
	return ret;
}

static int nvme_rdma_route_resolved(struct nvme_rdma_queue *queue)
{
	struct nvme_rdma_ctrl *ctrl = queue->ctrl;
	struct rdma_conn_param param = { };
1569
	struct nvme_rdma_cm_req priv = { };
1570 1571 1572 1573 1574 1575
	int ret;

	param.qp_num = queue->qp->qp_num;
	param.flow_control = 1;

	param.responder_resources = queue->device->dev->attrs.max_qp_rd_atom;
1576 1577
	/* maximum retry count */
	param.retry_count = 7;
1578 1579 1580 1581 1582 1583
	param.rnr_retry_count = 7;
	param.private_data = &priv;
	param.private_data_len = sizeof(priv);

	priv.recfmt = cpu_to_le16(NVME_RDMA_CM_FMT_1_0);
	priv.qid = cpu_to_le16(nvme_rdma_queue_idx(queue));
1584 1585 1586 1587 1588
	/*
	 * set the admin queue depth to the minimum size
	 * specified by the Fabrics standard.
	 */
	if (priv.qid == 0) {
1589 1590
		priv.hrqsize = cpu_to_le16(NVME_AQ_DEPTH);
		priv.hsqsize = cpu_to_le16(NVME_AQ_DEPTH - 1);
1591
	} else {
1592 1593 1594 1595 1596
		/*
		 * current interpretation of the fabrics spec
		 * is at minimum you make hrqsize sqsize+1, or a
		 * 1's based representation of sqsize.
		 */
1597
		priv.hrqsize = cpu_to_le16(queue->queue_size);
1598
		priv.hsqsize = cpu_to_le16(queue->ctrl->ctrl.sqsize);
1599
	}
1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637

	ret = rdma_connect(queue->cm_id, &param);
	if (ret) {
		dev_err(ctrl->ctrl.device,
			"rdma_connect failed (%d).\n", ret);
		goto out_destroy_queue_ib;
	}

	return 0;

out_destroy_queue_ib:
	nvme_rdma_destroy_queue_ib(queue);
	return ret;
}

static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
		struct rdma_cm_event *ev)
{
	struct nvme_rdma_queue *queue = cm_id->context;
	int cm_error = 0;

	dev_dbg(queue->ctrl->ctrl.device, "%s (%d): status %d id %p\n",
		rdma_event_msg(ev->event), ev->event,
		ev->status, cm_id);

	switch (ev->event) {
	case RDMA_CM_EVENT_ADDR_RESOLVED:
		cm_error = nvme_rdma_addr_resolved(queue);
		break;
	case RDMA_CM_EVENT_ROUTE_RESOLVED:
		cm_error = nvme_rdma_route_resolved(queue);
		break;
	case RDMA_CM_EVENT_ESTABLISHED:
		queue->cm_error = nvme_rdma_conn_established(queue);
		/* complete cm_done regardless of success/failure */
		complete(&queue->cm_done);
		return 0;
	case RDMA_CM_EVENT_REJECTED:
1638
		nvme_rdma_destroy_queue_ib(queue);
1639 1640 1641 1642 1643
		cm_error = nvme_rdma_conn_rejected(queue, ev);
		break;
	case RDMA_CM_EVENT_ROUTE_ERROR:
	case RDMA_CM_EVENT_CONNECT_ERROR:
	case RDMA_CM_EVENT_UNREACHABLE:
1644
		nvme_rdma_destroy_queue_ib(queue);
1645
		/* fall through */
1646
	case RDMA_CM_EVENT_ADDR_ERROR:
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
		dev_dbg(queue->ctrl->ctrl.device,
			"CM error event %d\n", ev->event);
		cm_error = -ECONNRESET;
		break;
	case RDMA_CM_EVENT_DISCONNECTED:
	case RDMA_CM_EVENT_ADDR_CHANGE:
	case RDMA_CM_EVENT_TIMEWAIT_EXIT:
		dev_dbg(queue->ctrl->ctrl.device,
			"disconnect received - connection closed\n");
		nvme_rdma_error_recovery(queue->ctrl);
		break;
	case RDMA_CM_EVENT_DEVICE_REMOVAL:
1659 1660
		/* device removal is handled via the ib_client API */
		break;
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
	default:
		dev_err(queue->ctrl->ctrl.device,
			"Unexpected RDMA CM event (%d)\n", ev->event);
		nvme_rdma_error_recovery(queue->ctrl);
		break;
	}

	if (cm_error) {
		queue->cm_error = cm_error;
		complete(&queue->cm_done);
	}

	return 0;
}

static enum blk_eh_timer_return
nvme_rdma_timeout(struct request *rq, bool reserved)
{
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
S
Sagi Grimberg 已提交
1680 1681
	struct nvme_rdma_queue *queue = req->queue;
	struct nvme_rdma_ctrl *ctrl = queue->ctrl;
1682

S
Sagi Grimberg 已提交
1683 1684
	dev_warn(ctrl->ctrl.device, "I/O %d QID %d timeout\n",
		 rq->tag, nvme_rdma_queue_idx(queue));
1685

S
Sagi Grimberg 已提交
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696
	if (ctrl->ctrl.state != NVME_CTRL_LIVE) {
		/*
		 * Teardown immediately if controller times out while starting
		 * or we are already started error recovery. all outstanding
		 * requests are completed on shutdown, so we return BLK_EH_DONE.
		 */
		flush_work(&ctrl->err_work);
		nvme_rdma_teardown_io_queues(ctrl, false);
		nvme_rdma_teardown_admin_queue(ctrl, false);
		return BLK_EH_DONE;
	}
1697

S
Sagi Grimberg 已提交
1698 1699
	dev_warn(ctrl->ctrl.device, "starting error recovery\n");
	nvme_rdma_error_recovery(ctrl);
1700

S
Sagi Grimberg 已提交
1701
	return BLK_EH_RESET_TIMER;
1702 1703
}

1704
static blk_status_t nvme_rdma_queue_rq(struct blk_mq_hw_ctx *hctx,
1705 1706 1707 1708 1709 1710 1711 1712 1713
		const struct blk_mq_queue_data *bd)
{
	struct nvme_ns *ns = hctx->queue->queuedata;
	struct nvme_rdma_queue *queue = hctx->driver_data;
	struct request *rq = bd->rq;
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
	struct nvme_rdma_qe *sqe = &req->sqe;
	struct nvme_command *c = sqe->data;
	struct ib_device *dev;
1714
	bool queue_ready = test_bit(NVME_RDMA_Q_LIVE, &queue->flags);
1715 1716
	blk_status_t ret;
	int err;
1717 1718 1719

	WARN_ON_ONCE(rq->tag < 0);

1720
	if (!nvmf_check_ready(&queue->ctrl->ctrl, rq, queue_ready))
1721
		return nvmf_fail_nonready_command(&queue->ctrl->ctrl, rq);
1722

1723
	dev = queue->device->dev;
1724 1725 1726 1727 1728 1729 1730 1731

	req->sqe.dma = ib_dma_map_single(dev, req->sqe.data,
					 sizeof(struct nvme_command),
					 DMA_TO_DEVICE);
	err = ib_dma_mapping_error(dev, req->sqe.dma);
	if (unlikely(err))
		return BLK_STS_RESOURCE;

1732 1733 1734 1735
	ib_dma_sync_single_for_cpu(dev, sqe->dma,
			sizeof(struct nvme_command), DMA_TO_DEVICE);

	ret = nvme_setup_cmd(ns, rq, c);
1736
	if (ret)
1737
		goto unmap_qe;
1738 1739 1740

	blk_mq_start_request(rq);

1741
	err = nvme_rdma_map_data(queue, rq, c);
1742
	if (unlikely(err < 0)) {
1743
		dev_err(queue->ctrl->ctrl.device,
1744
			     "Failed to map data (%d)\n", err);
1745 1746 1747 1748
		nvme_cleanup_cmd(rq);
		goto err;
	}

1749 1750
	sqe->cqe.done = nvme_rdma_send_done;

1751 1752 1753
	ib_dma_sync_single_for_device(dev, sqe->dma,
			sizeof(struct nvme_command), DMA_TO_DEVICE);

1754
	err = nvme_rdma_post_send(queue, sqe, req->sge, req->num_sge,
I
Israel Rukshin 已提交
1755
			req->mr ? &req->reg_wr.wr : NULL);
1756
	if (unlikely(err)) {
1757 1758 1759 1760
		nvme_rdma_unmap_data(queue, rq);
		goto err;
	}

1761
	return BLK_STS_OK;
1762

1763
err:
1764
	if (err == -ENOMEM || err == -EAGAIN)
1765 1766 1767 1768 1769 1770 1771
		ret = BLK_STS_RESOURCE;
	else
		ret = BLK_STS_IOERR;
unmap_qe:
	ib_dma_unmap_single(dev, req->sqe.dma, sizeof(struct nvme_command),
			    DMA_TO_DEVICE);
	return ret;
1772 1773
}

1774 1775 1776 1777 1778 1779 1780
static int nvme_rdma_poll(struct blk_mq_hw_ctx *hctx)
{
	struct nvme_rdma_queue *queue = hctx->driver_data;

	return ib_process_cq_direct(queue->ib_cq, -1);
}

1781 1782 1783
static void nvme_rdma_complete_rq(struct request *rq)
{
	struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1784 1785
	struct nvme_rdma_queue *queue = req->queue;
	struct ib_device *ibdev = queue->device->dev;
1786

1787 1788 1789
	nvme_rdma_unmap_data(queue, rq);
	ib_dma_unmap_single(ibdev, req->sqe.dma, sizeof(struct nvme_command),
			    DMA_TO_DEVICE);
1790
	nvme_complete_rq(rq);
1791 1792
}

1793 1794 1795
static int nvme_rdma_map_queues(struct blk_mq_tag_set *set)
{
	struct nvme_rdma_ctrl *ctrl = set->driver_data;
1796
	struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
1797

1798
	if (opts->nr_write_queues && ctrl->io_queues[HCTX_TYPE_READ]) {
1799
		/* separate read/write queues */
1800 1801 1802 1803 1804
		set->map[HCTX_TYPE_DEFAULT].nr_queues =
			ctrl->io_queues[HCTX_TYPE_DEFAULT];
		set->map[HCTX_TYPE_DEFAULT].queue_offset = 0;
		set->map[HCTX_TYPE_READ].nr_queues =
			ctrl->io_queues[HCTX_TYPE_READ];
1805
		set->map[HCTX_TYPE_READ].queue_offset =
1806
			ctrl->io_queues[HCTX_TYPE_DEFAULT];
1807
	} else {
1808 1809 1810 1811 1812 1813
		/* shared read/write queues */
		set->map[HCTX_TYPE_DEFAULT].nr_queues =
			ctrl->io_queues[HCTX_TYPE_DEFAULT];
		set->map[HCTX_TYPE_DEFAULT].queue_offset = 0;
		set->map[HCTX_TYPE_READ].nr_queues =
			ctrl->io_queues[HCTX_TYPE_DEFAULT];
1814 1815 1816 1817 1818 1819
		set->map[HCTX_TYPE_READ].queue_offset = 0;
	}
	blk_mq_rdma_map_queues(&set->map[HCTX_TYPE_DEFAULT],
			ctrl->device->dev, 0);
	blk_mq_rdma_map_queues(&set->map[HCTX_TYPE_READ],
			ctrl->device->dev, 0);
1820

1821 1822
	if (opts->nr_poll_queues && ctrl->io_queues[HCTX_TYPE_POLL]) {
		/* map dedicated poll queues only if we have queues left */
1823
		set->map[HCTX_TYPE_POLL].nr_queues =
1824
				ctrl->io_queues[HCTX_TYPE_POLL];
1825
		set->map[HCTX_TYPE_POLL].queue_offset =
1826 1827
			ctrl->io_queues[HCTX_TYPE_DEFAULT] +
			ctrl->io_queues[HCTX_TYPE_READ];
1828 1829
		blk_mq_map_queues(&set->map[HCTX_TYPE_POLL]);
	}
1830 1831 1832 1833 1834 1835 1836

	dev_info(ctrl->ctrl.device,
		"mapped %d/%d/%d default/read/poll queues.\n",
		ctrl->io_queues[HCTX_TYPE_DEFAULT],
		ctrl->io_queues[HCTX_TYPE_READ],
		ctrl->io_queues[HCTX_TYPE_POLL]);

1837
	return 0;
1838 1839
}

1840
static const struct blk_mq_ops nvme_rdma_mq_ops = {
1841 1842 1843 1844 1845 1846
	.queue_rq	= nvme_rdma_queue_rq,
	.complete	= nvme_rdma_complete_rq,
	.init_request	= nvme_rdma_init_request,
	.exit_request	= nvme_rdma_exit_request,
	.init_hctx	= nvme_rdma_init_hctx,
	.timeout	= nvme_rdma_timeout,
1847
	.map_queues	= nvme_rdma_map_queues,
1848
	.poll		= nvme_rdma_poll,
1849 1850
};

1851
static const struct blk_mq_ops nvme_rdma_admin_mq_ops = {
1852 1853
	.queue_rq	= nvme_rdma_queue_rq,
	.complete	= nvme_rdma_complete_rq,
1854 1855
	.init_request	= nvme_rdma_init_request,
	.exit_request	= nvme_rdma_exit_request,
1856 1857 1858 1859
	.init_hctx	= nvme_rdma_init_admin_hctx,
	.timeout	= nvme_rdma_timeout,
};

1860
static void nvme_rdma_shutdown_ctrl(struct nvme_rdma_ctrl *ctrl, bool shutdown)
1861
{
1862 1863 1864
	cancel_work_sync(&ctrl->err_work);
	cancel_delayed_work_sync(&ctrl->reconnect_work);

1865
	nvme_rdma_teardown_io_queues(ctrl, shutdown);
1866
	if (shutdown)
1867
		nvme_shutdown_ctrl(&ctrl->ctrl);
1868 1869
	else
		nvme_disable_ctrl(&ctrl->ctrl, ctrl->ctrl.cap);
1870
	nvme_rdma_teardown_admin_queue(ctrl, shutdown);
1871 1872
}

1873
static void nvme_rdma_delete_ctrl(struct nvme_ctrl *ctrl)
1874
{
1875
	nvme_rdma_shutdown_ctrl(to_rdma_ctrl(ctrl), true);
1876 1877 1878 1879
}

static void nvme_rdma_reset_ctrl_work(struct work_struct *work)
{
1880 1881
	struct nvme_rdma_ctrl *ctrl =
		container_of(work, struct nvme_rdma_ctrl, ctrl.reset_work);
1882

1883
	nvme_stop_ctrl(&ctrl->ctrl);
1884
	nvme_rdma_shutdown_ctrl(ctrl, false);
1885

1886
	if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
1887 1888 1889 1890 1891
		/* state change failure should never happen */
		WARN_ON_ONCE(1);
		return;
	}

1892
	if (nvme_rdma_setup_ctrl(ctrl, false))
1893
		goto out_fail;
1894 1895 1896

	return;

1897
out_fail:
1898 1899
	++ctrl->ctrl.nr_reconnects;
	nvme_rdma_reconnect_or_remove(ctrl);
1900 1901 1902 1903 1904
}

static const struct nvme_ctrl_ops nvme_rdma_ctrl_ops = {
	.name			= "rdma",
	.module			= THIS_MODULE,
1905
	.flags			= NVME_F_FABRICS,
1906 1907 1908 1909 1910
	.reg_read32		= nvmf_reg_read32,
	.reg_read64		= nvmf_reg_read64,
	.reg_write32		= nvmf_reg_write32,
	.free_ctrl		= nvme_rdma_free_ctrl,
	.submit_async_event	= nvme_rdma_submit_async_event,
1911
	.delete_ctrl		= nvme_rdma_delete_ctrl,
1912 1913 1914
	.get_address		= nvmf_get_address,
};

1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
/*
 * Fails a connection request if it matches an existing controller
 * (association) with the same tuple:
 * <Host NQN, Host ID, local address, remote address, remote port, SUBSYS NQN>
 *
 * if local address is not specified in the request, it will match an
 * existing controller with all the other parameters the same and no
 * local port address specified as well.
 *
 * The ports don't need to be compared as they are intrinsically
 * already matched by the port pointers supplied.
 */
static bool
nvme_rdma_existing_controller(struct nvmf_ctrl_options *opts)
{
	struct nvme_rdma_ctrl *ctrl;
	bool found = false;

	mutex_lock(&nvme_rdma_ctrl_mutex);
	list_for_each_entry(ctrl, &nvme_rdma_ctrl_list, list) {
1935
		found = nvmf_ip_options_match(&ctrl->ctrl, opts);
1936 1937 1938 1939 1940 1941 1942 1943
		if (found)
			break;
	}
	mutex_unlock(&nvme_rdma_ctrl_mutex);

	return found;
}

1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
static struct nvme_ctrl *nvme_rdma_create_ctrl(struct device *dev,
		struct nvmf_ctrl_options *opts)
{
	struct nvme_rdma_ctrl *ctrl;
	int ret;
	bool changed;

	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl)
		return ERR_PTR(-ENOMEM);
	ctrl->ctrl.opts = opts;
	INIT_LIST_HEAD(&ctrl->list);

1957 1958 1959 1960 1961 1962 1963 1964 1965
	if (!(opts->mask & NVMF_OPT_TRSVCID)) {
		opts->trsvcid =
			kstrdup(__stringify(NVME_RDMA_IP_PORT), GFP_KERNEL);
		if (!opts->trsvcid) {
			ret = -ENOMEM;
			goto out_free_ctrl;
		}
		opts->mask |= NVMF_OPT_TRSVCID;
	}
1966 1967

	ret = inet_pton_with_scope(&init_net, AF_UNSPEC,
1968
			opts->traddr, opts->trsvcid, &ctrl->addr);
1969
	if (ret) {
1970 1971
		pr_err("malformed address passed: %s:%s\n",
			opts->traddr, opts->trsvcid);
1972 1973 1974
		goto out_free_ctrl;
	}

1975
	if (opts->mask & NVMF_OPT_HOST_TRADDR) {
1976 1977
		ret = inet_pton_with_scope(&init_net, AF_UNSPEC,
			opts->host_traddr, NULL, &ctrl->src_addr);
1978
		if (ret) {
1979
			pr_err("malformed src address passed: %s\n",
1980 1981 1982 1983 1984
			       opts->host_traddr);
			goto out_free_ctrl;
		}
	}

1985 1986 1987 1988 1989
	if (!opts->duplicate_connect && nvme_rdma_existing_controller(opts)) {
		ret = -EALREADY;
		goto out_free_ctrl;
	}

1990 1991 1992
	INIT_DELAYED_WORK(&ctrl->reconnect_work,
			nvme_rdma_reconnect_ctrl_work);
	INIT_WORK(&ctrl->err_work, nvme_rdma_error_recovery_work);
1993
	INIT_WORK(&ctrl->ctrl.reset_work, nvme_rdma_reset_ctrl_work);
1994

1995 1996
	ctrl->ctrl.queue_count = opts->nr_io_queues + opts->nr_write_queues +
				opts->nr_poll_queues + 1;
1997
	ctrl->ctrl.sqsize = opts->queue_size - 1;
1998 1999 2000
	ctrl->ctrl.kato = opts->kato;

	ret = -ENOMEM;
2001
	ctrl->queues = kcalloc(ctrl->ctrl.queue_count, sizeof(*ctrl->queues),
2002 2003
				GFP_KERNEL);
	if (!ctrl->queues)
2004 2005 2006 2007 2008 2009
		goto out_free_ctrl;

	ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_rdma_ctrl_ops,
				0 /* no quirks, we're perfect! */);
	if (ret)
		goto out_kfree_queues;
2010

2011 2012 2013
	changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING);
	WARN_ON_ONCE(!changed);

2014
	ret = nvme_rdma_setup_ctrl(ctrl, true);
2015
	if (ret)
2016
		goto out_uninit_ctrl;
2017

2018
	dev_info(ctrl->ctrl.device, "new ctrl: NQN \"%s\", addr %pISpcs\n",
2019 2020
		ctrl->ctrl.opts->subsysnqn, &ctrl->addr);

2021
	nvme_get_ctrl(&ctrl->ctrl);
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034

	mutex_lock(&nvme_rdma_ctrl_mutex);
	list_add_tail(&ctrl->list, &nvme_rdma_ctrl_list);
	mutex_unlock(&nvme_rdma_ctrl_mutex);

	return &ctrl->ctrl;

out_uninit_ctrl:
	nvme_uninit_ctrl(&ctrl->ctrl);
	nvme_put_ctrl(&ctrl->ctrl);
	if (ret > 0)
		ret = -EIO;
	return ERR_PTR(ret);
2035 2036
out_kfree_queues:
	kfree(ctrl->queues);
2037 2038 2039 2040 2041 2042 2043
out_free_ctrl:
	kfree(ctrl);
	return ERR_PTR(ret);
}

static struct nvmf_transport_ops nvme_rdma_transport = {
	.name		= "rdma",
2044
	.module		= THIS_MODULE,
2045
	.required_opts	= NVMF_OPT_TRADDR,
2046
	.allowed_opts	= NVMF_OPT_TRSVCID | NVMF_OPT_RECONNECT_DELAY |
2047
			  NVMF_OPT_HOST_TRADDR | NVMF_OPT_CTRL_LOSS_TMO |
2048
			  NVMF_OPT_NR_WRITE_QUEUES | NVMF_OPT_NR_POLL_QUEUES,
2049 2050 2051
	.create_ctrl	= nvme_rdma_create_ctrl,
};

2052 2053 2054
static void nvme_rdma_remove_one(struct ib_device *ib_device, void *client_data)
{
	struct nvme_rdma_ctrl *ctrl;
2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068
	struct nvme_rdma_device *ndev;
	bool found = false;

	mutex_lock(&device_list_mutex);
	list_for_each_entry(ndev, &device_list, entry) {
		if (ndev->dev == ib_device) {
			found = true;
			break;
		}
	}
	mutex_unlock(&device_list_mutex);

	if (!found)
		return;
2069 2070 2071 2072 2073 2074

	/* Delete all controllers using this device */
	mutex_lock(&nvme_rdma_ctrl_mutex);
	list_for_each_entry(ctrl, &nvme_rdma_ctrl_list, list) {
		if (ctrl->device->dev != ib_device)
			continue;
2075
		nvme_delete_ctrl(&ctrl->ctrl);
2076 2077 2078
	}
	mutex_unlock(&nvme_rdma_ctrl_mutex);

2079
	flush_workqueue(nvme_delete_wq);
2080 2081 2082 2083 2084 2085 2086
}

static struct ib_client nvme_rdma_ib_client = {
	.name   = "nvme_rdma",
	.remove = nvme_rdma_remove_one
};

2087 2088
static int __init nvme_rdma_init_module(void)
{
2089 2090 2091
	int ret;

	ret = ib_register_client(&nvme_rdma_ib_client);
2092
	if (ret)
2093
		return ret;
2094 2095 2096 2097

	ret = nvmf_register_transport(&nvme_rdma_transport);
	if (ret)
		goto err_unreg_client;
2098

2099
	return 0;
2100

2101 2102 2103
err_unreg_client:
	ib_unregister_client(&nvme_rdma_ib_client);
	return ret;
2104 2105 2106 2107 2108
}

static void __exit nvme_rdma_cleanup_module(void)
{
	nvmf_unregister_transport(&nvme_rdma_transport);
2109
	ib_unregister_client(&nvme_rdma_ib_client);
2110 2111 2112 2113 2114 2115
}

module_init(nvme_rdma_init_module);
module_exit(nvme_rdma_cleanup_module);

MODULE_LICENSE("GPL v2");