blob: 4aae363943e355b0bcdfcc2bfd5318b31197c9b2 [file] [log] [blame]
Christoph Hellwig71102302016-07-06 21:55:52 +09001/*
2 * NVMe over Fabrics RDMA host code.
3 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Christoph Hellwig71102302016-07-06 21:55:52 +090015#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/err.h>
19#include <linux/string.h>
Christoph Hellwig71102302016-07-06 21:55:52 +090020#include <linux/atomic.h>
21#include <linux/blk-mq.h>
22#include <linux/types.h>
23#include <linux/list.h>
24#include <linux/mutex.h>
25#include <linux/scatterlist.h>
26#include <linux/nvme.h>
Christoph Hellwig71102302016-07-06 21:55:52 +090027#include <asm/unaligned.h>
28
29#include <rdma/ib_verbs.h>
30#include <rdma/rdma_cm.h>
Christoph Hellwig71102302016-07-06 21:55:52 +090031#include <linux/nvme-rdma.h>
32
33#include "nvme.h"
34#include "fabrics.h"
35
36
Sagi Grimberg782d8202017-03-21 16:32:38 +020037#define NVME_RDMA_CONNECT_TIMEOUT_MS 3000 /* 3 second */
Christoph Hellwig71102302016-07-06 21:55:52 +090038
39#define NVME_RDMA_MAX_SEGMENT_SIZE 0xffffff /* 24-bit SGL field */
40
41#define NVME_RDMA_MAX_SEGMENTS 256
42
43#define NVME_RDMA_MAX_INLINE_SEGMENTS 1
44
Christoph Hellwig71102302016-07-06 21:55:52 +090045/*
46 * We handle AEN commands ourselves and don't even let the
47 * block layer know about them.
48 */
49#define NVME_RDMA_NR_AEN_COMMANDS 1
50#define NVME_RDMA_AQ_BLKMQ_DEPTH \
51 (NVMF_AQ_DEPTH - NVME_RDMA_NR_AEN_COMMANDS)
52
53struct nvme_rdma_device {
54 struct ib_device *dev;
55 struct ib_pd *pd;
Christoph Hellwig71102302016-07-06 21:55:52 +090056 struct kref ref;
57 struct list_head entry;
58};
59
60struct nvme_rdma_qe {
61 struct ib_cqe cqe;
62 void *data;
63 u64 dma;
64};
65
66struct nvme_rdma_queue;
67struct nvme_rdma_request {
Christoph Hellwigd49187e2016-11-10 07:32:33 -080068 struct nvme_request req;
Christoph Hellwig71102302016-07-06 21:55:52 +090069 struct ib_mr *mr;
70 struct nvme_rdma_qe sqe;
71 struct ib_sge sge[1 + NVME_RDMA_MAX_INLINE_SEGMENTS];
72 u32 num_sge;
73 int nents;
74 bool inline_data;
Christoph Hellwig71102302016-07-06 21:55:52 +090075 struct ib_reg_wr reg_wr;
76 struct ib_cqe reg_cqe;
77 struct nvme_rdma_queue *queue;
78 struct sg_table sg_table;
79 struct scatterlist first_sgl[];
80};
81
82enum nvme_rdma_queue_flags {
83 NVME_RDMA_Q_CONNECTED = (1 << 0),
Steve Wisef361e5a2016-09-02 09:01:27 -070084 NVME_RDMA_IB_QUEUE_ALLOCATED = (1 << 1),
Sagi Grimberge89ca582016-09-02 09:01:54 -070085 NVME_RDMA_Q_DELETING = (1 << 2),
Christoph Hellwig553cd9e2016-11-02 08:49:18 -060086 NVME_RDMA_Q_LIVE = (1 << 3),
Christoph Hellwig71102302016-07-06 21:55:52 +090087};
88
89struct nvme_rdma_queue {
90 struct nvme_rdma_qe *rsp_ring;
91 u8 sig_count;
92 int queue_size;
93 size_t cmnd_capsule_len;
94 struct nvme_rdma_ctrl *ctrl;
95 struct nvme_rdma_device *device;
96 struct ib_cq *ib_cq;
97 struct ib_qp *qp;
98
99 unsigned long flags;
100 struct rdma_cm_id *cm_id;
101 int cm_error;
102 struct completion cm_done;
103};
104
105struct nvme_rdma_ctrl {
106 /* read and written in the hot path */
107 spinlock_t lock;
108
109 /* read only in the hot path */
110 struct nvme_rdma_queue *queues;
111 u32 queue_count;
112
113 /* other member variables */
Christoph Hellwig71102302016-07-06 21:55:52 +0900114 struct blk_mq_tag_set tag_set;
115 struct work_struct delete_work;
116 struct work_struct reset_work;
117 struct work_struct err_work;
118
119 struct nvme_rdma_qe async_event_sqe;
120
Christoph Hellwig71102302016-07-06 21:55:52 +0900121 struct delayed_work reconnect_work;
122
123 struct list_head list;
124
125 struct blk_mq_tag_set admin_tag_set;
126 struct nvme_rdma_device *device;
127
128 u64 cap;
129 u32 max_fr_pages;
130
Sagi Grimberg0928f9b2017-02-05 21:49:32 +0200131 struct sockaddr_storage addr;
132 struct sockaddr_storage src_addr;
Christoph Hellwig71102302016-07-06 21:55:52 +0900133
134 struct nvme_ctrl ctrl;
135};
136
137static inline struct nvme_rdma_ctrl *to_rdma_ctrl(struct nvme_ctrl *ctrl)
138{
139 return container_of(ctrl, struct nvme_rdma_ctrl, ctrl);
140}
141
142static LIST_HEAD(device_list);
143static DEFINE_MUTEX(device_list_mutex);
144
145static LIST_HEAD(nvme_rdma_ctrl_list);
146static DEFINE_MUTEX(nvme_rdma_ctrl_mutex);
147
148static struct workqueue_struct *nvme_rdma_wq;
149
150/*
151 * Disabling this option makes small I/O goes faster, but is fundamentally
152 * unsafe. With it turned off we will have to register a global rkey that
153 * allows read and write access to all physical memory.
154 */
155static bool register_always = true;
156module_param(register_always, bool, 0444);
157MODULE_PARM_DESC(register_always,
158 "Use memory registration even for contiguous memory regions");
159
160static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
161 struct rdma_cm_event *event);
162static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc);
Christoph Hellwig71102302016-07-06 21:55:52 +0900163
164/* XXX: really should move to a generic header sooner or later.. */
165static inline void put_unaligned_le24(u32 val, u8 *p)
166{
167 *p++ = val;
168 *p++ = val >> 8;
169 *p++ = val >> 16;
170}
171
172static inline int nvme_rdma_queue_idx(struct nvme_rdma_queue *queue)
173{
174 return queue - queue->ctrl->queues;
175}
176
177static inline size_t nvme_rdma_inline_data_size(struct nvme_rdma_queue *queue)
178{
179 return queue->cmnd_capsule_len - sizeof(struct nvme_command);
180}
181
182static void nvme_rdma_free_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
183 size_t capsule_size, enum dma_data_direction dir)
184{
185 ib_dma_unmap_single(ibdev, qe->dma, capsule_size, dir);
186 kfree(qe->data);
187}
188
189static int nvme_rdma_alloc_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
190 size_t capsule_size, enum dma_data_direction dir)
191{
192 qe->data = kzalloc(capsule_size, GFP_KERNEL);
193 if (!qe->data)
194 return -ENOMEM;
195
196 qe->dma = ib_dma_map_single(ibdev, qe->data, capsule_size, dir);
197 if (ib_dma_mapping_error(ibdev, qe->dma)) {
198 kfree(qe->data);
199 return -ENOMEM;
200 }
201
202 return 0;
203}
204
205static void nvme_rdma_free_ring(struct ib_device *ibdev,
206 struct nvme_rdma_qe *ring, size_t ib_queue_size,
207 size_t capsule_size, enum dma_data_direction dir)
208{
209 int i;
210
211 for (i = 0; i < ib_queue_size; i++)
212 nvme_rdma_free_qe(ibdev, &ring[i], capsule_size, dir);
213 kfree(ring);
214}
215
216static struct nvme_rdma_qe *nvme_rdma_alloc_ring(struct ib_device *ibdev,
217 size_t ib_queue_size, size_t capsule_size,
218 enum dma_data_direction dir)
219{
220 struct nvme_rdma_qe *ring;
221 int i;
222
223 ring = kcalloc(ib_queue_size, sizeof(struct nvme_rdma_qe), GFP_KERNEL);
224 if (!ring)
225 return NULL;
226
227 for (i = 0; i < ib_queue_size; i++) {
228 if (nvme_rdma_alloc_qe(ibdev, &ring[i], capsule_size, dir))
229 goto out_free_ring;
230 }
231
232 return ring;
233
234out_free_ring:
235 nvme_rdma_free_ring(ibdev, ring, i, capsule_size, dir);
236 return NULL;
237}
238
239static void nvme_rdma_qp_event(struct ib_event *event, void *context)
240{
Max Gurtovoy27a4bee2016-11-23 11:38:48 +0200241 pr_debug("QP event %s (%d)\n",
242 ib_event_msg(event->event), event->event);
243
Christoph Hellwig71102302016-07-06 21:55:52 +0900244}
245
246static int nvme_rdma_wait_for_cm(struct nvme_rdma_queue *queue)
247{
248 wait_for_completion_interruptible_timeout(&queue->cm_done,
249 msecs_to_jiffies(NVME_RDMA_CONNECT_TIMEOUT_MS) + 1);
250 return queue->cm_error;
251}
252
253static int nvme_rdma_create_qp(struct nvme_rdma_queue *queue, const int factor)
254{
255 struct nvme_rdma_device *dev = queue->device;
256 struct ib_qp_init_attr init_attr;
257 int ret;
258
259 memset(&init_attr, 0, sizeof(init_attr));
260 init_attr.event_handler = nvme_rdma_qp_event;
261 /* +1 for drain */
262 init_attr.cap.max_send_wr = factor * queue->queue_size + 1;
263 /* +1 for drain */
264 init_attr.cap.max_recv_wr = queue->queue_size + 1;
265 init_attr.cap.max_recv_sge = 1;
266 init_attr.cap.max_send_sge = 1 + NVME_RDMA_MAX_INLINE_SEGMENTS;
267 init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
268 init_attr.qp_type = IB_QPT_RC;
269 init_attr.send_cq = queue->ib_cq;
270 init_attr.recv_cq = queue->ib_cq;
271
272 ret = rdma_create_qp(queue->cm_id, dev->pd, &init_attr);
273
274 queue->qp = queue->cm_id->qp;
275 return ret;
276}
277
278static int nvme_rdma_reinit_request(void *data, struct request *rq)
279{
280 struct nvme_rdma_ctrl *ctrl = data;
281 struct nvme_rdma_device *dev = ctrl->device;
282 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
283 int ret = 0;
284
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300285 if (!req->mr->need_inval)
Christoph Hellwig71102302016-07-06 21:55:52 +0900286 goto out;
287
288 ib_dereg_mr(req->mr);
289
290 req->mr = ib_alloc_mr(dev->pd, IB_MR_TYPE_MEM_REG,
291 ctrl->max_fr_pages);
292 if (IS_ERR(req->mr)) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900293 ret = PTR_ERR(req->mr);
Wei Yongjun458a9632016-07-12 11:06:17 +0000294 req->mr = NULL;
Colin Ian King1bda18d2016-09-05 16:24:38 +0100295 goto out;
Christoph Hellwig71102302016-07-06 21:55:52 +0900296 }
297
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300298 req->mr->need_inval = false;
Christoph Hellwig71102302016-07-06 21:55:52 +0900299
300out:
301 return ret;
302}
303
304static void __nvme_rdma_exit_request(struct nvme_rdma_ctrl *ctrl,
305 struct request *rq, unsigned int queue_idx)
306{
307 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
308 struct nvme_rdma_queue *queue = &ctrl->queues[queue_idx];
309 struct nvme_rdma_device *dev = queue->device;
310
311 if (req->mr)
312 ib_dereg_mr(req->mr);
313
314 nvme_rdma_free_qe(dev->dev, &req->sqe, sizeof(struct nvme_command),
315 DMA_TO_DEVICE);
316}
317
318static void nvme_rdma_exit_request(void *data, struct request *rq,
319 unsigned int hctx_idx, unsigned int rq_idx)
320{
321 return __nvme_rdma_exit_request(data, rq, hctx_idx + 1);
322}
323
324static void nvme_rdma_exit_admin_request(void *data, struct request *rq,
325 unsigned int hctx_idx, unsigned int rq_idx)
326{
327 return __nvme_rdma_exit_request(data, rq, 0);
328}
329
330static int __nvme_rdma_init_request(struct nvme_rdma_ctrl *ctrl,
331 struct request *rq, unsigned int queue_idx)
332{
333 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
334 struct nvme_rdma_queue *queue = &ctrl->queues[queue_idx];
335 struct nvme_rdma_device *dev = queue->device;
336 struct ib_device *ibdev = dev->dev;
337 int ret;
338
Christoph Hellwig71102302016-07-06 21:55:52 +0900339 ret = nvme_rdma_alloc_qe(ibdev, &req->sqe, sizeof(struct nvme_command),
340 DMA_TO_DEVICE);
341 if (ret)
342 return ret;
343
344 req->mr = ib_alloc_mr(dev->pd, IB_MR_TYPE_MEM_REG,
345 ctrl->max_fr_pages);
346 if (IS_ERR(req->mr)) {
347 ret = PTR_ERR(req->mr);
348 goto out_free_qe;
349 }
350
351 req->queue = queue;
352
353 return 0;
354
355out_free_qe:
356 nvme_rdma_free_qe(dev->dev, &req->sqe, sizeof(struct nvme_command),
357 DMA_TO_DEVICE);
358 return -ENOMEM;
359}
360
361static int nvme_rdma_init_request(void *data, struct request *rq,
362 unsigned int hctx_idx, unsigned int rq_idx,
363 unsigned int numa_node)
364{
365 return __nvme_rdma_init_request(data, rq, hctx_idx + 1);
366}
367
368static int nvme_rdma_init_admin_request(void *data, struct request *rq,
369 unsigned int hctx_idx, unsigned int rq_idx,
370 unsigned int numa_node)
371{
372 return __nvme_rdma_init_request(data, rq, 0);
373}
374
375static int nvme_rdma_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
376 unsigned int hctx_idx)
377{
378 struct nvme_rdma_ctrl *ctrl = data;
379 struct nvme_rdma_queue *queue = &ctrl->queues[hctx_idx + 1];
380
381 BUG_ON(hctx_idx >= ctrl->queue_count);
382
383 hctx->driver_data = queue;
384 return 0;
385}
386
387static int nvme_rdma_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
388 unsigned int hctx_idx)
389{
390 struct nvme_rdma_ctrl *ctrl = data;
391 struct nvme_rdma_queue *queue = &ctrl->queues[0];
392
393 BUG_ON(hctx_idx != 0);
394
395 hctx->driver_data = queue;
396 return 0;
397}
398
399static void nvme_rdma_free_dev(struct kref *ref)
400{
401 struct nvme_rdma_device *ndev =
402 container_of(ref, struct nvme_rdma_device, ref);
403
404 mutex_lock(&device_list_mutex);
405 list_del(&ndev->entry);
406 mutex_unlock(&device_list_mutex);
407
Christoph Hellwig71102302016-07-06 21:55:52 +0900408 ib_dealloc_pd(ndev->pd);
Christoph Hellwig71102302016-07-06 21:55:52 +0900409 kfree(ndev);
410}
411
412static void nvme_rdma_dev_put(struct nvme_rdma_device *dev)
413{
414 kref_put(&dev->ref, nvme_rdma_free_dev);
415}
416
417static int nvme_rdma_dev_get(struct nvme_rdma_device *dev)
418{
419 return kref_get_unless_zero(&dev->ref);
420}
421
422static struct nvme_rdma_device *
423nvme_rdma_find_get_device(struct rdma_cm_id *cm_id)
424{
425 struct nvme_rdma_device *ndev;
426
427 mutex_lock(&device_list_mutex);
428 list_for_each_entry(ndev, &device_list, entry) {
429 if (ndev->dev->node_guid == cm_id->device->node_guid &&
430 nvme_rdma_dev_get(ndev))
431 goto out_unlock;
432 }
433
434 ndev = kzalloc(sizeof(*ndev), GFP_KERNEL);
435 if (!ndev)
436 goto out_err;
437
438 ndev->dev = cm_id->device;
439 kref_init(&ndev->ref);
440
Christoph Hellwig11975e02016-09-05 12:56:20 +0200441 ndev->pd = ib_alloc_pd(ndev->dev,
442 register_always ? 0 : IB_PD_UNSAFE_GLOBAL_RKEY);
Christoph Hellwig71102302016-07-06 21:55:52 +0900443 if (IS_ERR(ndev->pd))
444 goto out_free_dev;
445
Christoph Hellwig71102302016-07-06 21:55:52 +0900446 if (!(ndev->dev->attrs.device_cap_flags &
447 IB_DEVICE_MEM_MGT_EXTENSIONS)) {
448 dev_err(&ndev->dev->dev,
449 "Memory registrations not supported.\n");
Christoph Hellwig11975e02016-09-05 12:56:20 +0200450 goto out_free_pd;
Christoph Hellwig71102302016-07-06 21:55:52 +0900451 }
452
453 list_add(&ndev->entry, &device_list);
454out_unlock:
455 mutex_unlock(&device_list_mutex);
456 return ndev;
457
Christoph Hellwig71102302016-07-06 21:55:52 +0900458out_free_pd:
459 ib_dealloc_pd(ndev->pd);
460out_free_dev:
461 kfree(ndev);
462out_err:
463 mutex_unlock(&device_list_mutex);
464 return NULL;
465}
466
467static void nvme_rdma_destroy_queue_ib(struct nvme_rdma_queue *queue)
468{
Steve Wisef361e5a2016-09-02 09:01:27 -0700469 struct nvme_rdma_device *dev;
470 struct ib_device *ibdev;
Christoph Hellwig71102302016-07-06 21:55:52 +0900471
Steve Wisef361e5a2016-09-02 09:01:27 -0700472 if (!test_and_clear_bit(NVME_RDMA_IB_QUEUE_ALLOCATED, &queue->flags))
473 return;
474
475 dev = queue->device;
476 ibdev = dev->dev;
Christoph Hellwig71102302016-07-06 21:55:52 +0900477 rdma_destroy_qp(queue->cm_id);
478 ib_free_cq(queue->ib_cq);
479
480 nvme_rdma_free_ring(ibdev, queue->rsp_ring, queue->queue_size,
481 sizeof(struct nvme_completion), DMA_FROM_DEVICE);
482
483 nvme_rdma_dev_put(dev);
484}
485
486static int nvme_rdma_create_queue_ib(struct nvme_rdma_queue *queue,
487 struct nvme_rdma_device *dev)
488{
489 struct ib_device *ibdev = dev->dev;
490 const int send_wr_factor = 3; /* MR, SEND, INV */
491 const int cq_factor = send_wr_factor + 1; /* + RECV */
492 int comp_vector, idx = nvme_rdma_queue_idx(queue);
493
494 int ret;
495
496 queue->device = dev;
497
498 /*
499 * The admin queue is barely used once the controller is live, so don't
500 * bother to spread it out.
501 */
502 if (idx == 0)
503 comp_vector = 0;
504 else
505 comp_vector = idx % ibdev->num_comp_vectors;
506
507
508 /* +1 for ib_stop_cq */
509 queue->ib_cq = ib_alloc_cq(dev->dev, queue,
510 cq_factor * queue->queue_size + 1, comp_vector,
511 IB_POLL_SOFTIRQ);
512 if (IS_ERR(queue->ib_cq)) {
513 ret = PTR_ERR(queue->ib_cq);
514 goto out;
515 }
516
517 ret = nvme_rdma_create_qp(queue, send_wr_factor);
518 if (ret)
519 goto out_destroy_ib_cq;
520
521 queue->rsp_ring = nvme_rdma_alloc_ring(ibdev, queue->queue_size,
522 sizeof(struct nvme_completion), DMA_FROM_DEVICE);
523 if (!queue->rsp_ring) {
524 ret = -ENOMEM;
525 goto out_destroy_qp;
526 }
Steve Wisef361e5a2016-09-02 09:01:27 -0700527 set_bit(NVME_RDMA_IB_QUEUE_ALLOCATED, &queue->flags);
Christoph Hellwig71102302016-07-06 21:55:52 +0900528
529 return 0;
530
531out_destroy_qp:
532 ib_destroy_qp(queue->qp);
533out_destroy_ib_cq:
534 ib_free_cq(queue->ib_cq);
535out:
536 return ret;
537}
538
539static int nvme_rdma_init_queue(struct nvme_rdma_ctrl *ctrl,
540 int idx, size_t queue_size)
541{
542 struct nvme_rdma_queue *queue;
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +0200543 struct sockaddr *src_addr = NULL;
Christoph Hellwig71102302016-07-06 21:55:52 +0900544 int ret;
545
546 queue = &ctrl->queues[idx];
547 queue->ctrl = ctrl;
548 init_completion(&queue->cm_done);
549
550 if (idx > 0)
551 queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
552 else
553 queue->cmnd_capsule_len = sizeof(struct nvme_command);
554
555 queue->queue_size = queue_size;
556
557 queue->cm_id = rdma_create_id(&init_net, nvme_rdma_cm_handler, queue,
558 RDMA_PS_TCP, IB_QPT_RC);
559 if (IS_ERR(queue->cm_id)) {
560 dev_info(ctrl->ctrl.device,
561 "failed to create CM ID: %ld\n", PTR_ERR(queue->cm_id));
562 return PTR_ERR(queue->cm_id);
563 }
564
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +0200565 if (ctrl->ctrl.opts->mask & NVMF_OPT_HOST_TRADDR)
Sagi Grimberg0928f9b2017-02-05 21:49:32 +0200566 src_addr = (struct sockaddr *)&ctrl->src_addr;
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +0200567
Sagi Grimberg0928f9b2017-02-05 21:49:32 +0200568 queue->cm_error = -ETIMEDOUT;
569 ret = rdma_resolve_addr(queue->cm_id, src_addr,
570 (struct sockaddr *)&ctrl->addr,
Christoph Hellwig71102302016-07-06 21:55:52 +0900571 NVME_RDMA_CONNECT_TIMEOUT_MS);
572 if (ret) {
573 dev_info(ctrl->ctrl.device,
574 "rdma_resolve_addr failed (%d).\n", ret);
575 goto out_destroy_cm_id;
576 }
577
578 ret = nvme_rdma_wait_for_cm(queue);
579 if (ret) {
580 dev_info(ctrl->ctrl.device,
581 "rdma_resolve_addr wait failed (%d).\n", ret);
582 goto out_destroy_cm_id;
583 }
584
Sagi Grimberg3b4ac782016-09-22 19:58:17 -0600585 clear_bit(NVME_RDMA_Q_DELETING, &queue->flags);
Christoph Hellwig71102302016-07-06 21:55:52 +0900586 set_bit(NVME_RDMA_Q_CONNECTED, &queue->flags);
587
588 return 0;
589
590out_destroy_cm_id:
Steve Wisef361e5a2016-09-02 09:01:27 -0700591 nvme_rdma_destroy_queue_ib(queue);
Christoph Hellwig71102302016-07-06 21:55:52 +0900592 rdma_destroy_id(queue->cm_id);
593 return ret;
594}
595
596static void nvme_rdma_stop_queue(struct nvme_rdma_queue *queue)
597{
598 rdma_disconnect(queue->cm_id);
599 ib_drain_qp(queue->qp);
600}
601
602static void nvme_rdma_free_queue(struct nvme_rdma_queue *queue)
603{
604 nvme_rdma_destroy_queue_ib(queue);
605 rdma_destroy_id(queue->cm_id);
606}
607
608static void nvme_rdma_stop_and_free_queue(struct nvme_rdma_queue *queue)
609{
Sagi Grimberge89ca582016-09-02 09:01:54 -0700610 if (test_and_set_bit(NVME_RDMA_Q_DELETING, &queue->flags))
Christoph Hellwig71102302016-07-06 21:55:52 +0900611 return;
612 nvme_rdma_stop_queue(queue);
613 nvme_rdma_free_queue(queue);
614}
615
616static void nvme_rdma_free_io_queues(struct nvme_rdma_ctrl *ctrl)
617{
618 int i;
619
620 for (i = 1; i < ctrl->queue_count; i++)
621 nvme_rdma_stop_and_free_queue(&ctrl->queues[i]);
622}
623
624static int nvme_rdma_connect_io_queues(struct nvme_rdma_ctrl *ctrl)
625{
626 int i, ret = 0;
627
628 for (i = 1; i < ctrl->queue_count; i++) {
629 ret = nvmf_connect_io_queue(&ctrl->ctrl, i);
Steve Wisec8dbc372016-11-08 09:16:02 -0800630 if (ret) {
631 dev_info(ctrl->ctrl.device,
632 "failed to connect i/o queue: %d\n", ret);
633 goto out_free_queues;
634 }
Christoph Hellwig553cd9e2016-11-02 08:49:18 -0600635 set_bit(NVME_RDMA_Q_LIVE, &ctrl->queues[i].flags);
Christoph Hellwig71102302016-07-06 21:55:52 +0900636 }
637
Steve Wisec8dbc372016-11-08 09:16:02 -0800638 return 0;
639
640out_free_queues:
641 nvme_rdma_free_io_queues(ctrl);
Christoph Hellwig71102302016-07-06 21:55:52 +0900642 return ret;
643}
644
645static int nvme_rdma_init_io_queues(struct nvme_rdma_ctrl *ctrl)
646{
Sagi Grimbergdc2ad162017-03-09 13:26:07 +0200647 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
648 unsigned int nr_io_queues;
Christoph Hellwig71102302016-07-06 21:55:52 +0900649 int i, ret;
650
Sagi Grimbergdc2ad162017-03-09 13:26:07 +0200651 nr_io_queues = min(opts->nr_io_queues, num_online_cpus());
652 ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
653 if (ret)
654 return ret;
655
656 ctrl->queue_count = nr_io_queues + 1;
657 if (ctrl->queue_count < 2)
658 return 0;
659
660 dev_info(ctrl->ctrl.device,
661 "creating %d I/O queues.\n", nr_io_queues);
662
Christoph Hellwig71102302016-07-06 21:55:52 +0900663 for (i = 1; i < ctrl->queue_count; i++) {
Jay Freyenseec5af8652016-08-17 15:00:27 -0700664 ret = nvme_rdma_init_queue(ctrl, i,
665 ctrl->ctrl.opts->queue_size);
Christoph Hellwig71102302016-07-06 21:55:52 +0900666 if (ret) {
667 dev_info(ctrl->ctrl.device,
668 "failed to initialize i/o queue: %d\n", ret);
669 goto out_free_queues;
670 }
671 }
672
673 return 0;
674
675out_free_queues:
Steve Wisef361e5a2016-09-02 09:01:27 -0700676 for (i--; i >= 1; i--)
Christoph Hellwig71102302016-07-06 21:55:52 +0900677 nvme_rdma_stop_and_free_queue(&ctrl->queues[i]);
678
679 return ret;
680}
681
682static void nvme_rdma_destroy_admin_queue(struct nvme_rdma_ctrl *ctrl)
683{
684 nvme_rdma_free_qe(ctrl->queues[0].device->dev, &ctrl->async_event_sqe,
685 sizeof(struct nvme_command), DMA_TO_DEVICE);
686 nvme_rdma_stop_and_free_queue(&ctrl->queues[0]);
687 blk_cleanup_queue(ctrl->ctrl.admin_q);
688 blk_mq_free_tag_set(&ctrl->admin_tag_set);
689 nvme_rdma_dev_put(ctrl->device);
690}
691
692static void nvme_rdma_free_ctrl(struct nvme_ctrl *nctrl)
693{
694 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
695
696 if (list_empty(&ctrl->list))
697 goto free_ctrl;
698
699 mutex_lock(&nvme_rdma_ctrl_mutex);
700 list_del(&ctrl->list);
701 mutex_unlock(&nvme_rdma_ctrl_mutex);
702
Christoph Hellwig71102302016-07-06 21:55:52 +0900703 kfree(ctrl->queues);
704 nvmf_free_options(nctrl->opts);
705free_ctrl:
706 kfree(ctrl);
707}
708
Sagi Grimbergfd8563c2017-03-18 20:58:29 +0200709static void nvme_rdma_reconnect_or_remove(struct nvme_rdma_ctrl *ctrl)
710{
711 /* If we are resetting/deleting then do nothing */
712 if (ctrl->ctrl.state != NVME_CTRL_RECONNECTING) {
713 WARN_ON_ONCE(ctrl->ctrl.state == NVME_CTRL_NEW ||
714 ctrl->ctrl.state == NVME_CTRL_LIVE);
715 return;
716 }
717
718 if (nvmf_should_reconnect(&ctrl->ctrl)) {
719 dev_info(ctrl->ctrl.device, "Reconnecting in %d seconds...\n",
720 ctrl->ctrl.opts->reconnect_delay);
721 queue_delayed_work(nvme_rdma_wq, &ctrl->reconnect_work,
722 ctrl->ctrl.opts->reconnect_delay * HZ);
723 } else {
724 dev_info(ctrl->ctrl.device, "Removing controller...\n");
725 queue_work(nvme_rdma_wq, &ctrl->delete_work);
726 }
727}
728
Christoph Hellwig71102302016-07-06 21:55:52 +0900729static void nvme_rdma_reconnect_ctrl_work(struct work_struct *work)
730{
731 struct nvme_rdma_ctrl *ctrl = container_of(to_delayed_work(work),
732 struct nvme_rdma_ctrl, reconnect_work);
733 bool changed;
734 int ret;
735
Sagi Grimbergfd8563c2017-03-18 20:58:29 +0200736 ++ctrl->ctrl.opts->nr_reconnects;
737
Christoph Hellwig71102302016-07-06 21:55:52 +0900738 if (ctrl->queue_count > 1) {
739 nvme_rdma_free_io_queues(ctrl);
740
741 ret = blk_mq_reinit_tagset(&ctrl->tag_set);
742 if (ret)
743 goto requeue;
744 }
745
746 nvme_rdma_stop_and_free_queue(&ctrl->queues[0]);
747
748 ret = blk_mq_reinit_tagset(&ctrl->admin_tag_set);
749 if (ret)
750 goto requeue;
751
752 ret = nvme_rdma_init_queue(ctrl, 0, NVMF_AQ_DEPTH);
753 if (ret)
754 goto requeue;
755
756 blk_mq_start_stopped_hw_queues(ctrl->ctrl.admin_q, true);
757
758 ret = nvmf_connect_admin_queue(&ctrl->ctrl);
759 if (ret)
760 goto stop_admin_q;
761
Christoph Hellwig553cd9e2016-11-02 08:49:18 -0600762 set_bit(NVME_RDMA_Q_LIVE, &ctrl->queues[0].flags);
763
Christoph Hellwig71102302016-07-06 21:55:52 +0900764 ret = nvme_enable_ctrl(&ctrl->ctrl, ctrl->cap);
765 if (ret)
766 goto stop_admin_q;
767
768 nvme_start_keep_alive(&ctrl->ctrl);
769
770 if (ctrl->queue_count > 1) {
771 ret = nvme_rdma_init_io_queues(ctrl);
772 if (ret)
773 goto stop_admin_q;
774
775 ret = nvme_rdma_connect_io_queues(ctrl);
776 if (ret)
777 goto stop_admin_q;
778 }
779
780 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
781 WARN_ON_ONCE(!changed);
Sagi Grimbergfd8563c2017-03-18 20:58:29 +0200782 ctrl->ctrl.opts->nr_reconnects = 0;
Christoph Hellwig71102302016-07-06 21:55:52 +0900783
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300784 if (ctrl->queue_count > 1) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900785 nvme_start_queues(&ctrl->ctrl);
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300786 nvme_queue_scan(&ctrl->ctrl);
Sagi Grimberg3ef1b4b2016-08-04 13:46:19 +0300787 nvme_queue_async_events(&ctrl->ctrl);
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300788 }
Christoph Hellwig71102302016-07-06 21:55:52 +0900789
790 dev_info(ctrl->ctrl.device, "Successfully reconnected\n");
791
792 return;
793
794stop_admin_q:
795 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
796requeue:
Sagi Grimbergfd8563c2017-03-18 20:58:29 +0200797 dev_info(ctrl->ctrl.device, "Failed reconnect attempt %d\n",
798 ctrl->ctrl.opts->nr_reconnects);
799 nvme_rdma_reconnect_or_remove(ctrl);
Christoph Hellwig71102302016-07-06 21:55:52 +0900800}
801
802static void nvme_rdma_error_recovery_work(struct work_struct *work)
803{
804 struct nvme_rdma_ctrl *ctrl = container_of(work,
805 struct nvme_rdma_ctrl, err_work);
Sagi Grimberge89ca582016-09-02 09:01:54 -0700806 int i;
Christoph Hellwig71102302016-07-06 21:55:52 +0900807
808 nvme_stop_keep_alive(&ctrl->ctrl);
Sagi Grimberge89ca582016-09-02 09:01:54 -0700809
Christoph Hellwig553cd9e2016-11-02 08:49:18 -0600810 for (i = 0; i < ctrl->queue_count; i++) {
Sagi Grimberge89ca582016-09-02 09:01:54 -0700811 clear_bit(NVME_RDMA_Q_CONNECTED, &ctrl->queues[i].flags);
Christoph Hellwig553cd9e2016-11-02 08:49:18 -0600812 clear_bit(NVME_RDMA_Q_LIVE, &ctrl->queues[i].flags);
813 }
Sagi Grimberge89ca582016-09-02 09:01:54 -0700814
Christoph Hellwig71102302016-07-06 21:55:52 +0900815 if (ctrl->queue_count > 1)
816 nvme_stop_queues(&ctrl->ctrl);
817 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
818
819 /* We must take care of fastfail/requeue all our inflight requests */
820 if (ctrl->queue_count > 1)
821 blk_mq_tagset_busy_iter(&ctrl->tag_set,
822 nvme_cancel_request, &ctrl->ctrl);
823 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
824 nvme_cancel_request, &ctrl->ctrl);
825
Sagi Grimbergfd8563c2017-03-18 20:58:29 +0200826 nvme_rdma_reconnect_or_remove(ctrl);
Christoph Hellwig71102302016-07-06 21:55:52 +0900827}
828
829static void nvme_rdma_error_recovery(struct nvme_rdma_ctrl *ctrl)
830{
831 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RECONNECTING))
832 return;
833
834 queue_work(nvme_rdma_wq, &ctrl->err_work);
835}
836
837static void nvme_rdma_wr_error(struct ib_cq *cq, struct ib_wc *wc,
838 const char *op)
839{
840 struct nvme_rdma_queue *queue = cq->cq_context;
841 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
842
843 if (ctrl->ctrl.state == NVME_CTRL_LIVE)
844 dev_info(ctrl->ctrl.device,
845 "%s for CQE 0x%p failed with status %s (%d)\n",
846 op, wc->wr_cqe,
847 ib_wc_status_msg(wc->status), wc->status);
848 nvme_rdma_error_recovery(ctrl);
849}
850
851static void nvme_rdma_memreg_done(struct ib_cq *cq, struct ib_wc *wc)
852{
853 if (unlikely(wc->status != IB_WC_SUCCESS))
854 nvme_rdma_wr_error(cq, wc, "MEMREG");
855}
856
857static void nvme_rdma_inv_rkey_done(struct ib_cq *cq, struct ib_wc *wc)
858{
859 if (unlikely(wc->status != IB_WC_SUCCESS))
860 nvme_rdma_wr_error(cq, wc, "LOCAL_INV");
861}
862
863static int nvme_rdma_inv_rkey(struct nvme_rdma_queue *queue,
864 struct nvme_rdma_request *req)
865{
866 struct ib_send_wr *bad_wr;
867 struct ib_send_wr wr = {
868 .opcode = IB_WR_LOCAL_INV,
869 .next = NULL,
870 .num_sge = 0,
871 .send_flags = 0,
872 .ex.invalidate_rkey = req->mr->rkey,
873 };
874
875 req->reg_cqe.done = nvme_rdma_inv_rkey_done;
876 wr.wr_cqe = &req->reg_cqe;
877
878 return ib_post_send(queue->qp, &wr, &bad_wr);
879}
880
881static void nvme_rdma_unmap_data(struct nvme_rdma_queue *queue,
882 struct request *rq)
883{
884 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
885 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
886 struct nvme_rdma_device *dev = queue->device;
887 struct ib_device *ibdev = dev->dev;
888 int res;
889
890 if (!blk_rq_bytes(rq))
891 return;
892
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300893 if (req->mr->need_inval) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900894 res = nvme_rdma_inv_rkey(queue, req);
895 if (res < 0) {
896 dev_err(ctrl->ctrl.device,
897 "Queueing INV WR for rkey %#x failed (%d)\n",
898 req->mr->rkey, res);
899 nvme_rdma_error_recovery(queue->ctrl);
900 }
901 }
902
903 ib_dma_unmap_sg(ibdev, req->sg_table.sgl,
904 req->nents, rq_data_dir(rq) ==
905 WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
906
907 nvme_cleanup_cmd(rq);
908 sg_free_table_chained(&req->sg_table, true);
909}
910
911static int nvme_rdma_set_sg_null(struct nvme_command *c)
912{
913 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
914
915 sg->addr = 0;
916 put_unaligned_le24(0, sg->length);
917 put_unaligned_le32(0, sg->key);
918 sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
919 return 0;
920}
921
922static int nvme_rdma_map_sg_inline(struct nvme_rdma_queue *queue,
923 struct nvme_rdma_request *req, struct nvme_command *c)
924{
925 struct nvme_sgl_desc *sg = &c->common.dptr.sgl;
926
927 req->sge[1].addr = sg_dma_address(req->sg_table.sgl);
928 req->sge[1].length = sg_dma_len(req->sg_table.sgl);
929 req->sge[1].lkey = queue->device->pd->local_dma_lkey;
930
931 sg->addr = cpu_to_le64(queue->ctrl->ctrl.icdoff);
932 sg->length = cpu_to_le32(sg_dma_len(req->sg_table.sgl));
933 sg->type = (NVME_SGL_FMT_DATA_DESC << 4) | NVME_SGL_FMT_OFFSET;
934
935 req->inline_data = true;
936 req->num_sge++;
937 return 0;
938}
939
940static int nvme_rdma_map_sg_single(struct nvme_rdma_queue *queue,
941 struct nvme_rdma_request *req, struct nvme_command *c)
942{
943 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
944
945 sg->addr = cpu_to_le64(sg_dma_address(req->sg_table.sgl));
946 put_unaligned_le24(sg_dma_len(req->sg_table.sgl), sg->length);
Christoph Hellwig11975e02016-09-05 12:56:20 +0200947 put_unaligned_le32(queue->device->pd->unsafe_global_rkey, sg->key);
Christoph Hellwig71102302016-07-06 21:55:52 +0900948 sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
949 return 0;
950}
951
952static int nvme_rdma_map_sg_fr(struct nvme_rdma_queue *queue,
953 struct nvme_rdma_request *req, struct nvme_command *c,
954 int count)
955{
956 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
957 int nr;
958
959 nr = ib_map_mr_sg(req->mr, req->sg_table.sgl, count, NULL, PAGE_SIZE);
960 if (nr < count) {
961 if (nr < 0)
962 return nr;
963 return -EINVAL;
964 }
965
966 ib_update_fast_reg_key(req->mr, ib_inc_rkey(req->mr->rkey));
967
968 req->reg_cqe.done = nvme_rdma_memreg_done;
969 memset(&req->reg_wr, 0, sizeof(req->reg_wr));
970 req->reg_wr.wr.opcode = IB_WR_REG_MR;
971 req->reg_wr.wr.wr_cqe = &req->reg_cqe;
972 req->reg_wr.wr.num_sge = 0;
973 req->reg_wr.mr = req->mr;
974 req->reg_wr.key = req->mr->rkey;
975 req->reg_wr.access = IB_ACCESS_LOCAL_WRITE |
976 IB_ACCESS_REMOTE_READ |
977 IB_ACCESS_REMOTE_WRITE;
978
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300979 req->mr->need_inval = true;
Christoph Hellwig71102302016-07-06 21:55:52 +0900980
981 sg->addr = cpu_to_le64(req->mr->iova);
982 put_unaligned_le24(req->mr->length, sg->length);
983 put_unaligned_le32(req->mr->rkey, sg->key);
984 sg->type = (NVME_KEY_SGL_FMT_DATA_DESC << 4) |
985 NVME_SGL_FMT_INVALIDATE;
986
987 return 0;
988}
989
990static int nvme_rdma_map_data(struct nvme_rdma_queue *queue,
Christoph Hellwigb131c612017-01-13 12:29:12 +0100991 struct request *rq, struct nvme_command *c)
Christoph Hellwig71102302016-07-06 21:55:52 +0900992{
993 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
994 struct nvme_rdma_device *dev = queue->device;
995 struct ib_device *ibdev = dev->dev;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700996 int count, ret;
Christoph Hellwig71102302016-07-06 21:55:52 +0900997
998 req->num_sge = 1;
999 req->inline_data = false;
Sagi Grimbergf5b7b552016-08-24 12:25:56 +03001000 req->mr->need_inval = false;
Christoph Hellwig71102302016-07-06 21:55:52 +09001001
1002 c->common.flags |= NVME_CMD_SGL_METABUF;
1003
1004 if (!blk_rq_bytes(rq))
1005 return nvme_rdma_set_sg_null(c);
1006
1007 req->sg_table.sgl = req->first_sgl;
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001008 ret = sg_alloc_table_chained(&req->sg_table,
1009 blk_rq_nr_phys_segments(rq), req->sg_table.sgl);
Christoph Hellwig71102302016-07-06 21:55:52 +09001010 if (ret)
1011 return -ENOMEM;
1012
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001013 req->nents = blk_rq_map_sg(rq->q, rq, req->sg_table.sgl);
Christoph Hellwig71102302016-07-06 21:55:52 +09001014
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001015 count = ib_dma_map_sg(ibdev, req->sg_table.sgl, req->nents,
Christoph Hellwig71102302016-07-06 21:55:52 +09001016 rq_data_dir(rq) == WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
1017 if (unlikely(count <= 0)) {
1018 sg_free_table_chained(&req->sg_table, true);
1019 return -EIO;
1020 }
1021
1022 if (count == 1) {
Christoph Hellwigb131c612017-01-13 12:29:12 +01001023 if (rq_data_dir(rq) == WRITE && nvme_rdma_queue_idx(queue) &&
1024 blk_rq_payload_bytes(rq) <=
1025 nvme_rdma_inline_data_size(queue))
Christoph Hellwig71102302016-07-06 21:55:52 +09001026 return nvme_rdma_map_sg_inline(queue, req, c);
1027
Christoph Hellwig11975e02016-09-05 12:56:20 +02001028 if (dev->pd->flags & IB_PD_UNSAFE_GLOBAL_RKEY)
Christoph Hellwig71102302016-07-06 21:55:52 +09001029 return nvme_rdma_map_sg_single(queue, req, c);
1030 }
1031
1032 return nvme_rdma_map_sg_fr(queue, req, c, count);
1033}
1034
1035static void nvme_rdma_send_done(struct ib_cq *cq, struct ib_wc *wc)
1036{
1037 if (unlikely(wc->status != IB_WC_SUCCESS))
1038 nvme_rdma_wr_error(cq, wc, "SEND");
1039}
1040
1041static int nvme_rdma_post_send(struct nvme_rdma_queue *queue,
1042 struct nvme_rdma_qe *qe, struct ib_sge *sge, u32 num_sge,
1043 struct ib_send_wr *first, bool flush)
1044{
1045 struct ib_send_wr wr, *bad_wr;
1046 int ret;
1047
1048 sge->addr = qe->dma;
1049 sge->length = sizeof(struct nvme_command),
1050 sge->lkey = queue->device->pd->local_dma_lkey;
1051
1052 qe->cqe.done = nvme_rdma_send_done;
1053
1054 wr.next = NULL;
1055 wr.wr_cqe = &qe->cqe;
1056 wr.sg_list = sge;
1057 wr.num_sge = num_sge;
1058 wr.opcode = IB_WR_SEND;
1059 wr.send_flags = 0;
1060
1061 /*
1062 * Unsignalled send completions are another giant desaster in the
1063 * IB Verbs spec: If we don't regularly post signalled sends
1064 * the send queue will fill up and only a QP reset will rescue us.
1065 * Would have been way to obvious to handle this in hardware or
1066 * at least the RDMA stack..
1067 *
1068 * This messy and racy code sniplet is copy and pasted from the iSER
1069 * initiator, and the magic '32' comes from there as well.
1070 *
1071 * Always signal the flushes. The magic request used for the flush
1072 * sequencer is not allocated in our driver's tagset and it's
1073 * triggered to be freed by blk_cleanup_queue(). So we need to
1074 * always mark it as signaled to ensure that the "wr_cqe", which is
Masahiro Yamadab43daed2017-02-27 14:29:09 -08001075 * embedded in request's payload, is not freed when __ib_process_cq()
Christoph Hellwig71102302016-07-06 21:55:52 +09001076 * calls wr_cqe->done().
1077 */
1078 if ((++queue->sig_count % 32) == 0 || flush)
1079 wr.send_flags |= IB_SEND_SIGNALED;
1080
1081 if (first)
1082 first->next = &wr;
1083 else
1084 first = &wr;
1085
1086 ret = ib_post_send(queue->qp, first, &bad_wr);
1087 if (ret) {
1088 dev_err(queue->ctrl->ctrl.device,
1089 "%s failed with error code %d\n", __func__, ret);
1090 }
1091 return ret;
1092}
1093
1094static int nvme_rdma_post_recv(struct nvme_rdma_queue *queue,
1095 struct nvme_rdma_qe *qe)
1096{
1097 struct ib_recv_wr wr, *bad_wr;
1098 struct ib_sge list;
1099 int ret;
1100
1101 list.addr = qe->dma;
1102 list.length = sizeof(struct nvme_completion);
1103 list.lkey = queue->device->pd->local_dma_lkey;
1104
1105 qe->cqe.done = nvme_rdma_recv_done;
1106
1107 wr.next = NULL;
1108 wr.wr_cqe = &qe->cqe;
1109 wr.sg_list = &list;
1110 wr.num_sge = 1;
1111
1112 ret = ib_post_recv(queue->qp, &wr, &bad_wr);
1113 if (ret) {
1114 dev_err(queue->ctrl->ctrl.device,
1115 "%s failed with error code %d\n", __func__, ret);
1116 }
1117 return ret;
1118}
1119
1120static struct blk_mq_tags *nvme_rdma_tagset(struct nvme_rdma_queue *queue)
1121{
1122 u32 queue_idx = nvme_rdma_queue_idx(queue);
1123
1124 if (queue_idx == 0)
1125 return queue->ctrl->admin_tag_set.tags[queue_idx];
1126 return queue->ctrl->tag_set.tags[queue_idx - 1];
1127}
1128
1129static void nvme_rdma_submit_async_event(struct nvme_ctrl *arg, int aer_idx)
1130{
1131 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(arg);
1132 struct nvme_rdma_queue *queue = &ctrl->queues[0];
1133 struct ib_device *dev = queue->device->dev;
1134 struct nvme_rdma_qe *sqe = &ctrl->async_event_sqe;
1135 struct nvme_command *cmd = sqe->data;
1136 struct ib_sge sge;
1137 int ret;
1138
1139 if (WARN_ON_ONCE(aer_idx != 0))
1140 return;
1141
1142 ib_dma_sync_single_for_cpu(dev, sqe->dma, sizeof(*cmd), DMA_TO_DEVICE);
1143
1144 memset(cmd, 0, sizeof(*cmd));
1145 cmd->common.opcode = nvme_admin_async_event;
1146 cmd->common.command_id = NVME_RDMA_AQ_BLKMQ_DEPTH;
1147 cmd->common.flags |= NVME_CMD_SGL_METABUF;
1148 nvme_rdma_set_sg_null(cmd);
1149
1150 ib_dma_sync_single_for_device(dev, sqe->dma, sizeof(*cmd),
1151 DMA_TO_DEVICE);
1152
1153 ret = nvme_rdma_post_send(queue, sqe, &sge, 1, NULL, false);
1154 WARN_ON_ONCE(ret);
1155}
1156
1157static int nvme_rdma_process_nvme_rsp(struct nvme_rdma_queue *queue,
1158 struct nvme_completion *cqe, struct ib_wc *wc, int tag)
1159{
Christoph Hellwig71102302016-07-06 21:55:52 +09001160 struct request *rq;
1161 struct nvme_rdma_request *req;
1162 int ret = 0;
1163
Christoph Hellwig71102302016-07-06 21:55:52 +09001164 rq = blk_mq_tag_to_rq(nvme_rdma_tagset(queue), cqe->command_id);
1165 if (!rq) {
1166 dev_err(queue->ctrl->ctrl.device,
1167 "tag 0x%x on QP %#x not found\n",
1168 cqe->command_id, queue->qp->qp_num);
1169 nvme_rdma_error_recovery(queue->ctrl);
1170 return ret;
1171 }
1172 req = blk_mq_rq_to_pdu(rq);
1173
Christoph Hellwig71102302016-07-06 21:55:52 +09001174 if (rq->tag == tag)
1175 ret = 1;
1176
1177 if ((wc->wc_flags & IB_WC_WITH_INVALIDATE) &&
1178 wc->ex.invalidate_rkey == req->mr->rkey)
Sagi Grimbergf5b7b552016-08-24 12:25:56 +03001179 req->mr->need_inval = false;
Christoph Hellwig71102302016-07-06 21:55:52 +09001180
Christoph Hellwigd49187e2016-11-10 07:32:33 -08001181 req->req.result = cqe->result;
1182 blk_mq_complete_request(rq, le16_to_cpu(cqe->status) >> 1);
Christoph Hellwig71102302016-07-06 21:55:52 +09001183 return ret;
1184}
1185
1186static int __nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc, int tag)
1187{
1188 struct nvme_rdma_qe *qe =
1189 container_of(wc->wr_cqe, struct nvme_rdma_qe, cqe);
1190 struct nvme_rdma_queue *queue = cq->cq_context;
1191 struct ib_device *ibdev = queue->device->dev;
1192 struct nvme_completion *cqe = qe->data;
1193 const size_t len = sizeof(struct nvme_completion);
1194 int ret = 0;
1195
1196 if (unlikely(wc->status != IB_WC_SUCCESS)) {
1197 nvme_rdma_wr_error(cq, wc, "RECV");
1198 return 0;
1199 }
1200
1201 ib_dma_sync_single_for_cpu(ibdev, qe->dma, len, DMA_FROM_DEVICE);
1202 /*
1203 * AEN requests are special as they don't time out and can
1204 * survive any kind of queue freeze and often don't respond to
1205 * aborts. We don't even bother to allocate a struct request
1206 * for them but rather special case them here.
1207 */
1208 if (unlikely(nvme_rdma_queue_idx(queue) == 0 &&
1209 cqe->command_id >= NVME_RDMA_AQ_BLKMQ_DEPTH))
Christoph Hellwig7bf58532016-11-10 07:32:34 -08001210 nvme_complete_async_event(&queue->ctrl->ctrl, cqe->status,
1211 &cqe->result);
Christoph Hellwig71102302016-07-06 21:55:52 +09001212 else
1213 ret = nvme_rdma_process_nvme_rsp(queue, cqe, wc, tag);
1214 ib_dma_sync_single_for_device(ibdev, qe->dma, len, DMA_FROM_DEVICE);
1215
1216 nvme_rdma_post_recv(queue, qe);
1217 return ret;
1218}
1219
1220static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc)
1221{
1222 __nvme_rdma_recv_done(cq, wc, -1);
1223}
1224
1225static int nvme_rdma_conn_established(struct nvme_rdma_queue *queue)
1226{
1227 int ret, i;
1228
1229 for (i = 0; i < queue->queue_size; i++) {
1230 ret = nvme_rdma_post_recv(queue, &queue->rsp_ring[i]);
1231 if (ret)
1232 goto out_destroy_queue_ib;
1233 }
1234
1235 return 0;
1236
1237out_destroy_queue_ib:
1238 nvme_rdma_destroy_queue_ib(queue);
1239 return ret;
1240}
1241
1242static int nvme_rdma_conn_rejected(struct nvme_rdma_queue *queue,
1243 struct rdma_cm_event *ev)
1244{
Steve Wise7f039532016-10-26 12:36:47 -07001245 struct rdma_cm_id *cm_id = queue->cm_id;
1246 int status = ev->status;
1247 const char *rej_msg;
1248 const struct nvme_rdma_cm_rej *rej_data;
1249 u8 rej_data_len;
1250
1251 rej_msg = rdma_reject_msg(cm_id, status);
1252 rej_data = rdma_consumer_reject_data(cm_id, ev, &rej_data_len);
1253
1254 if (rej_data && rej_data_len >= sizeof(u16)) {
1255 u16 sts = le16_to_cpu(rej_data->sts);
Christoph Hellwig71102302016-07-06 21:55:52 +09001256
1257 dev_err(queue->ctrl->ctrl.device,
Steve Wise7f039532016-10-26 12:36:47 -07001258 "Connect rejected: status %d (%s) nvme status %d (%s).\n",
1259 status, rej_msg, sts, nvme_rdma_cm_msg(sts));
Christoph Hellwig71102302016-07-06 21:55:52 +09001260 } else {
1261 dev_err(queue->ctrl->ctrl.device,
Steve Wise7f039532016-10-26 12:36:47 -07001262 "Connect rejected: status %d (%s).\n", status, rej_msg);
Christoph Hellwig71102302016-07-06 21:55:52 +09001263 }
1264
1265 return -ECONNRESET;
1266}
1267
1268static int nvme_rdma_addr_resolved(struct nvme_rdma_queue *queue)
1269{
1270 struct nvme_rdma_device *dev;
1271 int ret;
1272
1273 dev = nvme_rdma_find_get_device(queue->cm_id);
1274 if (!dev) {
Bart Van Assche92f4ae32017-01-20 13:04:35 -08001275 dev_err(queue->cm_id->device->dev.parent,
Christoph Hellwig71102302016-07-06 21:55:52 +09001276 "no client data found!\n");
1277 return -ECONNREFUSED;
1278 }
1279
1280 ret = nvme_rdma_create_queue_ib(queue, dev);
1281 if (ret) {
1282 nvme_rdma_dev_put(dev);
1283 goto out;
1284 }
1285
1286 ret = rdma_resolve_route(queue->cm_id, NVME_RDMA_CONNECT_TIMEOUT_MS);
1287 if (ret) {
1288 dev_err(queue->ctrl->ctrl.device,
1289 "rdma_resolve_route failed (%d).\n",
1290 queue->cm_error);
1291 goto out_destroy_queue;
1292 }
1293
1294 return 0;
1295
1296out_destroy_queue:
1297 nvme_rdma_destroy_queue_ib(queue);
1298out:
1299 return ret;
1300}
1301
1302static int nvme_rdma_route_resolved(struct nvme_rdma_queue *queue)
1303{
1304 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
1305 struct rdma_conn_param param = { };
Roland Dreier0b857b42016-07-31 00:27:39 -07001306 struct nvme_rdma_cm_req priv = { };
Christoph Hellwig71102302016-07-06 21:55:52 +09001307 int ret;
1308
1309 param.qp_num = queue->qp->qp_num;
1310 param.flow_control = 1;
1311
1312 param.responder_resources = queue->device->dev->attrs.max_qp_rd_atom;
Sagi Grimberg2ac17c22016-06-22 15:06:00 +03001313 /* maximum retry count */
1314 param.retry_count = 7;
Christoph Hellwig71102302016-07-06 21:55:52 +09001315 param.rnr_retry_count = 7;
1316 param.private_data = &priv;
1317 param.private_data_len = sizeof(priv);
1318
1319 priv.recfmt = cpu_to_le16(NVME_RDMA_CM_FMT_1_0);
1320 priv.qid = cpu_to_le16(nvme_rdma_queue_idx(queue));
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001321 /*
1322 * set the admin queue depth to the minimum size
1323 * specified by the Fabrics standard.
1324 */
1325 if (priv.qid == 0) {
1326 priv.hrqsize = cpu_to_le16(NVMF_AQ_DEPTH);
1327 priv.hsqsize = cpu_to_le16(NVMF_AQ_DEPTH - 1);
1328 } else {
Jay Freyenseec5af8652016-08-17 15:00:27 -07001329 /*
1330 * current interpretation of the fabrics spec
1331 * is at minimum you make hrqsize sqsize+1, or a
1332 * 1's based representation of sqsize.
1333 */
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001334 priv.hrqsize = cpu_to_le16(queue->queue_size);
Jay Freyenseec5af8652016-08-17 15:00:27 -07001335 priv.hsqsize = cpu_to_le16(queue->ctrl->ctrl.sqsize);
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001336 }
Christoph Hellwig71102302016-07-06 21:55:52 +09001337
1338 ret = rdma_connect(queue->cm_id, &param);
1339 if (ret) {
1340 dev_err(ctrl->ctrl.device,
1341 "rdma_connect failed (%d).\n", ret);
1342 goto out_destroy_queue_ib;
1343 }
1344
1345 return 0;
1346
1347out_destroy_queue_ib:
1348 nvme_rdma_destroy_queue_ib(queue);
1349 return ret;
1350}
1351
Christoph Hellwig71102302016-07-06 21:55:52 +09001352static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
1353 struct rdma_cm_event *ev)
1354{
1355 struct nvme_rdma_queue *queue = cm_id->context;
1356 int cm_error = 0;
1357
1358 dev_dbg(queue->ctrl->ctrl.device, "%s (%d): status %d id %p\n",
1359 rdma_event_msg(ev->event), ev->event,
1360 ev->status, cm_id);
1361
1362 switch (ev->event) {
1363 case RDMA_CM_EVENT_ADDR_RESOLVED:
1364 cm_error = nvme_rdma_addr_resolved(queue);
1365 break;
1366 case RDMA_CM_EVENT_ROUTE_RESOLVED:
1367 cm_error = nvme_rdma_route_resolved(queue);
1368 break;
1369 case RDMA_CM_EVENT_ESTABLISHED:
1370 queue->cm_error = nvme_rdma_conn_established(queue);
1371 /* complete cm_done regardless of success/failure */
1372 complete(&queue->cm_done);
1373 return 0;
1374 case RDMA_CM_EVENT_REJECTED:
1375 cm_error = nvme_rdma_conn_rejected(queue, ev);
1376 break;
1377 case RDMA_CM_EVENT_ADDR_ERROR:
1378 case RDMA_CM_EVENT_ROUTE_ERROR:
1379 case RDMA_CM_EVENT_CONNECT_ERROR:
1380 case RDMA_CM_EVENT_UNREACHABLE:
1381 dev_dbg(queue->ctrl->ctrl.device,
1382 "CM error event %d\n", ev->event);
1383 cm_error = -ECONNRESET;
1384 break;
1385 case RDMA_CM_EVENT_DISCONNECTED:
1386 case RDMA_CM_EVENT_ADDR_CHANGE:
1387 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
1388 dev_dbg(queue->ctrl->ctrl.device,
1389 "disconnect received - connection closed\n");
1390 nvme_rdma_error_recovery(queue->ctrl);
1391 break;
1392 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Steve Wisee87a9112016-09-02 09:01:54 -07001393 /* device removal is handled via the ib_client API */
1394 break;
Christoph Hellwig71102302016-07-06 21:55:52 +09001395 default:
1396 dev_err(queue->ctrl->ctrl.device,
1397 "Unexpected RDMA CM event (%d)\n", ev->event);
1398 nvme_rdma_error_recovery(queue->ctrl);
1399 break;
1400 }
1401
1402 if (cm_error) {
1403 queue->cm_error = cm_error;
1404 complete(&queue->cm_done);
1405 }
1406
1407 return 0;
1408}
1409
1410static enum blk_eh_timer_return
1411nvme_rdma_timeout(struct request *rq, bool reserved)
1412{
1413 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1414
1415 /* queue error recovery */
1416 nvme_rdma_error_recovery(req->queue->ctrl);
1417
1418 /* fail with DNR on cmd timeout */
1419 rq->errors = NVME_SC_ABORT_REQ | NVME_SC_DNR;
1420
1421 return BLK_EH_HANDLED;
1422}
1423
Christoph Hellwig553cd9e2016-11-02 08:49:18 -06001424/*
1425 * We cannot accept any other command until the Connect command has completed.
1426 */
1427static inline bool nvme_rdma_queue_is_ready(struct nvme_rdma_queue *queue,
1428 struct request *rq)
1429{
1430 if (unlikely(!test_bit(NVME_RDMA_Q_LIVE, &queue->flags))) {
Christoph Hellwig1392370e2017-01-03 14:29:02 +03001431 struct nvme_command *cmd = nvme_req(rq)->cmd;
Christoph Hellwig553cd9e2016-11-02 08:49:18 -06001432
Christoph Hellwig57292b52017-01-31 16:57:29 +01001433 if (!blk_rq_is_passthrough(rq) ||
Christoph Hellwig553cd9e2016-11-02 08:49:18 -06001434 cmd->common.opcode != nvme_fabrics_command ||
1435 cmd->fabrics.fctype != nvme_fabrics_type_connect)
1436 return false;
1437 }
1438
1439 return true;
1440}
1441
Christoph Hellwig71102302016-07-06 21:55:52 +09001442static int nvme_rdma_queue_rq(struct blk_mq_hw_ctx *hctx,
1443 const struct blk_mq_queue_data *bd)
1444{
1445 struct nvme_ns *ns = hctx->queue->queuedata;
1446 struct nvme_rdma_queue *queue = hctx->driver_data;
1447 struct request *rq = bd->rq;
1448 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1449 struct nvme_rdma_qe *sqe = &req->sqe;
1450 struct nvme_command *c = sqe->data;
1451 bool flush = false;
1452 struct ib_device *dev;
Christoph Hellwig71102302016-07-06 21:55:52 +09001453 int ret;
1454
1455 WARN_ON_ONCE(rq->tag < 0);
1456
Christoph Hellwig553cd9e2016-11-02 08:49:18 -06001457 if (!nvme_rdma_queue_is_ready(queue, rq))
1458 return BLK_MQ_RQ_QUEUE_BUSY;
1459
Christoph Hellwig71102302016-07-06 21:55:52 +09001460 dev = queue->device->dev;
1461 ib_dma_sync_single_for_cpu(dev, sqe->dma,
1462 sizeof(struct nvme_command), DMA_TO_DEVICE);
1463
1464 ret = nvme_setup_cmd(ns, rq, c);
Omar Sandovalbac00002016-11-15 11:11:58 -08001465 if (ret != BLK_MQ_RQ_QUEUE_OK)
Christoph Hellwig71102302016-07-06 21:55:52 +09001466 return ret;
1467
Christoph Hellwig71102302016-07-06 21:55:52 +09001468 blk_mq_start_request(rq);
1469
Christoph Hellwigb131c612017-01-13 12:29:12 +01001470 ret = nvme_rdma_map_data(queue, rq, c);
Christoph Hellwig71102302016-07-06 21:55:52 +09001471 if (ret < 0) {
1472 dev_err(queue->ctrl->ctrl.device,
1473 "Failed to map data (%d)\n", ret);
1474 nvme_cleanup_cmd(rq);
1475 goto err;
1476 }
1477
1478 ib_dma_sync_single_for_device(dev, sqe->dma,
1479 sizeof(struct nvme_command), DMA_TO_DEVICE);
1480
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001481 if (req_op(rq) == REQ_OP_FLUSH)
Christoph Hellwig71102302016-07-06 21:55:52 +09001482 flush = true;
1483 ret = nvme_rdma_post_send(queue, sqe, req->sge, req->num_sge,
Sagi Grimbergf5b7b552016-08-24 12:25:56 +03001484 req->mr->need_inval ? &req->reg_wr.wr : NULL, flush);
Christoph Hellwig71102302016-07-06 21:55:52 +09001485 if (ret) {
1486 nvme_rdma_unmap_data(queue, rq);
1487 goto err;
1488 }
1489
1490 return BLK_MQ_RQ_QUEUE_OK;
1491err:
1492 return (ret == -ENOMEM || ret == -EAGAIN) ?
1493 BLK_MQ_RQ_QUEUE_BUSY : BLK_MQ_RQ_QUEUE_ERROR;
1494}
1495
1496static int nvme_rdma_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1497{
1498 struct nvme_rdma_queue *queue = hctx->driver_data;
1499 struct ib_cq *cq = queue->ib_cq;
1500 struct ib_wc wc;
1501 int found = 0;
1502
1503 ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
1504 while (ib_poll_cq(cq, 1, &wc) > 0) {
1505 struct ib_cqe *cqe = wc.wr_cqe;
1506
1507 if (cqe) {
1508 if (cqe->done == nvme_rdma_recv_done)
1509 found |= __nvme_rdma_recv_done(cq, &wc, tag);
1510 else
1511 cqe->done(cq, &wc);
1512 }
1513 }
1514
1515 return found;
1516}
1517
1518static void nvme_rdma_complete_rq(struct request *rq)
1519{
1520 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
Christoph Hellwig71102302016-07-06 21:55:52 +09001521
Christoph Hellwig77f02a72017-03-30 13:41:32 +02001522 nvme_rdma_unmap_data(req->queue, rq);
1523 nvme_complete_rq(rq);
Christoph Hellwig71102302016-07-06 21:55:52 +09001524}
1525
Eric Biggersf363b082017-03-30 13:39:16 -07001526static const struct blk_mq_ops nvme_rdma_mq_ops = {
Christoph Hellwig71102302016-07-06 21:55:52 +09001527 .queue_rq = nvme_rdma_queue_rq,
1528 .complete = nvme_rdma_complete_rq,
Christoph Hellwig71102302016-07-06 21:55:52 +09001529 .init_request = nvme_rdma_init_request,
1530 .exit_request = nvme_rdma_exit_request,
1531 .reinit_request = nvme_rdma_reinit_request,
1532 .init_hctx = nvme_rdma_init_hctx,
1533 .poll = nvme_rdma_poll,
1534 .timeout = nvme_rdma_timeout,
1535};
1536
Eric Biggersf363b082017-03-30 13:39:16 -07001537static const struct blk_mq_ops nvme_rdma_admin_mq_ops = {
Christoph Hellwig71102302016-07-06 21:55:52 +09001538 .queue_rq = nvme_rdma_queue_rq,
1539 .complete = nvme_rdma_complete_rq,
Christoph Hellwig71102302016-07-06 21:55:52 +09001540 .init_request = nvme_rdma_init_admin_request,
1541 .exit_request = nvme_rdma_exit_admin_request,
1542 .reinit_request = nvme_rdma_reinit_request,
1543 .init_hctx = nvme_rdma_init_admin_hctx,
1544 .timeout = nvme_rdma_timeout,
1545};
1546
1547static int nvme_rdma_configure_admin_queue(struct nvme_rdma_ctrl *ctrl)
1548{
1549 int error;
1550
1551 error = nvme_rdma_init_queue(ctrl, 0, NVMF_AQ_DEPTH);
1552 if (error)
1553 return error;
1554
1555 ctrl->device = ctrl->queues[0].device;
1556
1557 /*
1558 * We need a reference on the device as long as the tag_set is alive,
1559 * as the MRs in the request structures need a valid ib_device.
1560 */
1561 error = -EINVAL;
1562 if (!nvme_rdma_dev_get(ctrl->device))
1563 goto out_free_queue;
1564
1565 ctrl->max_fr_pages = min_t(u32, NVME_RDMA_MAX_SEGMENTS,
1566 ctrl->device->dev->attrs.max_fast_reg_page_list_len);
1567
1568 memset(&ctrl->admin_tag_set, 0, sizeof(ctrl->admin_tag_set));
1569 ctrl->admin_tag_set.ops = &nvme_rdma_admin_mq_ops;
1570 ctrl->admin_tag_set.queue_depth = NVME_RDMA_AQ_BLKMQ_DEPTH;
1571 ctrl->admin_tag_set.reserved_tags = 2; /* connect + keep-alive */
1572 ctrl->admin_tag_set.numa_node = NUMA_NO_NODE;
1573 ctrl->admin_tag_set.cmd_size = sizeof(struct nvme_rdma_request) +
1574 SG_CHUNK_SIZE * sizeof(struct scatterlist);
1575 ctrl->admin_tag_set.driver_data = ctrl;
1576 ctrl->admin_tag_set.nr_hw_queues = 1;
1577 ctrl->admin_tag_set.timeout = ADMIN_TIMEOUT;
1578
1579 error = blk_mq_alloc_tag_set(&ctrl->admin_tag_set);
1580 if (error)
1581 goto out_put_dev;
1582
1583 ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
1584 if (IS_ERR(ctrl->ctrl.admin_q)) {
1585 error = PTR_ERR(ctrl->ctrl.admin_q);
1586 goto out_free_tagset;
1587 }
1588
1589 error = nvmf_connect_admin_queue(&ctrl->ctrl);
1590 if (error)
1591 goto out_cleanup_queue;
1592
Christoph Hellwig553cd9e2016-11-02 08:49:18 -06001593 set_bit(NVME_RDMA_Q_LIVE, &ctrl->queues[0].flags);
1594
Christoph Hellwig71102302016-07-06 21:55:52 +09001595 error = nvmf_reg_read64(&ctrl->ctrl, NVME_REG_CAP, &ctrl->cap);
1596 if (error) {
1597 dev_err(ctrl->ctrl.device,
1598 "prop_get NVME_REG_CAP failed\n");
1599 goto out_cleanup_queue;
1600 }
1601
1602 ctrl->ctrl.sqsize =
1603 min_t(int, NVME_CAP_MQES(ctrl->cap) + 1, ctrl->ctrl.sqsize);
1604
1605 error = nvme_enable_ctrl(&ctrl->ctrl, ctrl->cap);
1606 if (error)
1607 goto out_cleanup_queue;
1608
1609 ctrl->ctrl.max_hw_sectors =
1610 (ctrl->max_fr_pages - 1) << (PAGE_SHIFT - 9);
1611
1612 error = nvme_init_identify(&ctrl->ctrl);
1613 if (error)
1614 goto out_cleanup_queue;
1615
1616 error = nvme_rdma_alloc_qe(ctrl->queues[0].device->dev,
1617 &ctrl->async_event_sqe, sizeof(struct nvme_command),
1618 DMA_TO_DEVICE);
1619 if (error)
1620 goto out_cleanup_queue;
1621
1622 nvme_start_keep_alive(&ctrl->ctrl);
1623
1624 return 0;
1625
1626out_cleanup_queue:
1627 blk_cleanup_queue(ctrl->ctrl.admin_q);
1628out_free_tagset:
1629 /* disconnect and drain the queue before freeing the tagset */
1630 nvme_rdma_stop_queue(&ctrl->queues[0]);
1631 blk_mq_free_tag_set(&ctrl->admin_tag_set);
1632out_put_dev:
1633 nvme_rdma_dev_put(ctrl->device);
1634out_free_queue:
1635 nvme_rdma_free_queue(&ctrl->queues[0]);
1636 return error;
1637}
1638
1639static void nvme_rdma_shutdown_ctrl(struct nvme_rdma_ctrl *ctrl)
1640{
1641 nvme_stop_keep_alive(&ctrl->ctrl);
1642 cancel_work_sync(&ctrl->err_work);
1643 cancel_delayed_work_sync(&ctrl->reconnect_work);
1644
1645 if (ctrl->queue_count > 1) {
1646 nvme_stop_queues(&ctrl->ctrl);
1647 blk_mq_tagset_busy_iter(&ctrl->tag_set,
1648 nvme_cancel_request, &ctrl->ctrl);
1649 nvme_rdma_free_io_queues(ctrl);
1650 }
1651
Sagi Grimberg45862eb2016-07-24 09:26:16 +03001652 if (test_bit(NVME_RDMA_Q_CONNECTED, &ctrl->queues[0].flags))
Christoph Hellwig71102302016-07-06 21:55:52 +09001653 nvme_shutdown_ctrl(&ctrl->ctrl);
1654
1655 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
1656 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
1657 nvme_cancel_request, &ctrl->ctrl);
1658 nvme_rdma_destroy_admin_queue(ctrl);
1659}
1660
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001661static void __nvme_rdma_remove_ctrl(struct nvme_rdma_ctrl *ctrl, bool shutdown)
1662{
1663 nvme_uninit_ctrl(&ctrl->ctrl);
1664 if (shutdown)
1665 nvme_rdma_shutdown_ctrl(ctrl);
Sagi Grimberga34ca172016-07-24 09:22:19 +03001666
1667 if (ctrl->ctrl.tagset) {
1668 blk_cleanup_queue(ctrl->ctrl.connect_q);
1669 blk_mq_free_tag_set(&ctrl->tag_set);
1670 nvme_rdma_dev_put(ctrl->device);
1671 }
1672
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001673 nvme_put_ctrl(&ctrl->ctrl);
1674}
1675
Christoph Hellwig71102302016-07-06 21:55:52 +09001676static void nvme_rdma_del_ctrl_work(struct work_struct *work)
1677{
1678 struct nvme_rdma_ctrl *ctrl = container_of(work,
1679 struct nvme_rdma_ctrl, delete_work);
1680
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001681 __nvme_rdma_remove_ctrl(ctrl, true);
Christoph Hellwig71102302016-07-06 21:55:52 +09001682}
1683
1684static int __nvme_rdma_del_ctrl(struct nvme_rdma_ctrl *ctrl)
1685{
1686 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING))
1687 return -EBUSY;
1688
1689 if (!queue_work(nvme_rdma_wq, &ctrl->delete_work))
1690 return -EBUSY;
1691
1692 return 0;
1693}
1694
1695static int nvme_rdma_del_ctrl(struct nvme_ctrl *nctrl)
1696{
1697 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
Steve Wisecdbecc82016-09-01 09:12:25 -07001698 int ret = 0;
Christoph Hellwig71102302016-07-06 21:55:52 +09001699
Steve Wisecdbecc82016-09-01 09:12:25 -07001700 /*
1701 * Keep a reference until all work is flushed since
1702 * __nvme_rdma_del_ctrl can free the ctrl mem
1703 */
1704 if (!kref_get_unless_zero(&ctrl->ctrl.kref))
1705 return -EBUSY;
Christoph Hellwig71102302016-07-06 21:55:52 +09001706 ret = __nvme_rdma_del_ctrl(ctrl);
Steve Wisecdbecc82016-09-01 09:12:25 -07001707 if (!ret)
1708 flush_work(&ctrl->delete_work);
1709 nvme_put_ctrl(&ctrl->ctrl);
1710 return ret;
Christoph Hellwig71102302016-07-06 21:55:52 +09001711}
1712
1713static void nvme_rdma_remove_ctrl_work(struct work_struct *work)
1714{
1715 struct nvme_rdma_ctrl *ctrl = container_of(work,
1716 struct nvme_rdma_ctrl, delete_work);
1717
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001718 __nvme_rdma_remove_ctrl(ctrl, false);
Christoph Hellwig71102302016-07-06 21:55:52 +09001719}
1720
1721static void nvme_rdma_reset_ctrl_work(struct work_struct *work)
1722{
1723 struct nvme_rdma_ctrl *ctrl = container_of(work,
1724 struct nvme_rdma_ctrl, reset_work);
1725 int ret;
1726 bool changed;
1727
1728 nvme_rdma_shutdown_ctrl(ctrl);
1729
1730 ret = nvme_rdma_configure_admin_queue(ctrl);
1731 if (ret) {
1732 /* ctrl is already shutdown, just remove the ctrl */
1733 INIT_WORK(&ctrl->delete_work, nvme_rdma_remove_ctrl_work);
1734 goto del_dead_ctrl;
1735 }
1736
1737 if (ctrl->queue_count > 1) {
1738 ret = blk_mq_reinit_tagset(&ctrl->tag_set);
1739 if (ret)
1740 goto del_dead_ctrl;
1741
1742 ret = nvme_rdma_init_io_queues(ctrl);
1743 if (ret)
1744 goto del_dead_ctrl;
1745
1746 ret = nvme_rdma_connect_io_queues(ctrl);
1747 if (ret)
1748 goto del_dead_ctrl;
1749 }
1750
1751 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
1752 WARN_ON_ONCE(!changed);
1753
1754 if (ctrl->queue_count > 1) {
1755 nvme_start_queues(&ctrl->ctrl);
1756 nvme_queue_scan(&ctrl->ctrl);
Sagi Grimberg3ef1b4b2016-08-04 13:46:19 +03001757 nvme_queue_async_events(&ctrl->ctrl);
Christoph Hellwig71102302016-07-06 21:55:52 +09001758 }
1759
1760 return;
1761
1762del_dead_ctrl:
1763 /* Deleting this dead controller... */
1764 dev_warn(ctrl->ctrl.device, "Removing after reset failure\n");
1765 WARN_ON(!queue_work(nvme_rdma_wq, &ctrl->delete_work));
1766}
1767
1768static int nvme_rdma_reset_ctrl(struct nvme_ctrl *nctrl)
1769{
1770 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
1771
1772 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING))
1773 return -EBUSY;
1774
1775 if (!queue_work(nvme_rdma_wq, &ctrl->reset_work))
1776 return -EBUSY;
1777
1778 flush_work(&ctrl->reset_work);
1779
1780 return 0;
1781}
1782
1783static const struct nvme_ctrl_ops nvme_rdma_ctrl_ops = {
1784 .name = "rdma",
1785 .module = THIS_MODULE,
1786 .is_fabrics = true,
1787 .reg_read32 = nvmf_reg_read32,
1788 .reg_read64 = nvmf_reg_read64,
1789 .reg_write32 = nvmf_reg_write32,
1790 .reset_ctrl = nvme_rdma_reset_ctrl,
1791 .free_ctrl = nvme_rdma_free_ctrl,
1792 .submit_async_event = nvme_rdma_submit_async_event,
1793 .delete_ctrl = nvme_rdma_del_ctrl,
1794 .get_subsysnqn = nvmf_get_subsysnqn,
1795 .get_address = nvmf_get_address,
1796};
1797
1798static int nvme_rdma_create_io_queues(struct nvme_rdma_ctrl *ctrl)
1799{
Christoph Hellwig71102302016-07-06 21:55:52 +09001800 int ret;
1801
Christoph Hellwig71102302016-07-06 21:55:52 +09001802 ret = nvme_rdma_init_io_queues(ctrl);
1803 if (ret)
1804 return ret;
1805
1806 /*
1807 * We need a reference on the device as long as the tag_set is alive,
1808 * as the MRs in the request structures need a valid ib_device.
1809 */
1810 ret = -EINVAL;
1811 if (!nvme_rdma_dev_get(ctrl->device))
1812 goto out_free_io_queues;
1813
1814 memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
1815 ctrl->tag_set.ops = &nvme_rdma_mq_ops;
Jay Freyenseec5af8652016-08-17 15:00:27 -07001816 ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
Christoph Hellwig71102302016-07-06 21:55:52 +09001817 ctrl->tag_set.reserved_tags = 1; /* fabric connect */
1818 ctrl->tag_set.numa_node = NUMA_NO_NODE;
1819 ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
1820 ctrl->tag_set.cmd_size = sizeof(struct nvme_rdma_request) +
1821 SG_CHUNK_SIZE * sizeof(struct scatterlist);
1822 ctrl->tag_set.driver_data = ctrl;
1823 ctrl->tag_set.nr_hw_queues = ctrl->queue_count - 1;
1824 ctrl->tag_set.timeout = NVME_IO_TIMEOUT;
1825
1826 ret = blk_mq_alloc_tag_set(&ctrl->tag_set);
1827 if (ret)
1828 goto out_put_dev;
1829 ctrl->ctrl.tagset = &ctrl->tag_set;
1830
1831 ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
1832 if (IS_ERR(ctrl->ctrl.connect_q)) {
1833 ret = PTR_ERR(ctrl->ctrl.connect_q);
1834 goto out_free_tag_set;
1835 }
1836
1837 ret = nvme_rdma_connect_io_queues(ctrl);
1838 if (ret)
1839 goto out_cleanup_connect_q;
1840
1841 return 0;
1842
1843out_cleanup_connect_q:
1844 blk_cleanup_queue(ctrl->ctrl.connect_q);
1845out_free_tag_set:
1846 blk_mq_free_tag_set(&ctrl->tag_set);
1847out_put_dev:
1848 nvme_rdma_dev_put(ctrl->device);
1849out_free_io_queues:
1850 nvme_rdma_free_io_queues(ctrl);
1851 return ret;
1852}
1853
Christoph Hellwig71102302016-07-06 21:55:52 +09001854static struct nvme_ctrl *nvme_rdma_create_ctrl(struct device *dev,
1855 struct nvmf_ctrl_options *opts)
1856{
1857 struct nvme_rdma_ctrl *ctrl;
1858 int ret;
1859 bool changed;
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001860 char *port;
Christoph Hellwig71102302016-07-06 21:55:52 +09001861
1862 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1863 if (!ctrl)
1864 return ERR_PTR(-ENOMEM);
1865 ctrl->ctrl.opts = opts;
1866 INIT_LIST_HEAD(&ctrl->list);
1867
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001868 if (opts->mask & NVMF_OPT_TRSVCID)
1869 port = opts->trsvcid;
1870 else
1871 port = __stringify(NVME_RDMA_IP_PORT);
1872
1873 ret = inet_pton_with_scope(&init_net, AF_UNSPEC,
1874 opts->traddr, port, &ctrl->addr);
Christoph Hellwig71102302016-07-06 21:55:52 +09001875 if (ret) {
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001876 pr_err("malformed address passed: %s:%s\n", opts->traddr, port);
Christoph Hellwig71102302016-07-06 21:55:52 +09001877 goto out_free_ctrl;
1878 }
1879
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +02001880 if (opts->mask & NVMF_OPT_HOST_TRADDR) {
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001881 ret = inet_pton_with_scope(&init_net, AF_UNSPEC,
1882 opts->host_traddr, NULL, &ctrl->src_addr);
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +02001883 if (ret) {
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001884 pr_err("malformed src address passed: %s\n",
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +02001885 opts->host_traddr);
1886 goto out_free_ctrl;
1887 }
1888 }
1889
Christoph Hellwig71102302016-07-06 21:55:52 +09001890 ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_rdma_ctrl_ops,
1891 0 /* no quirks, we're perfect! */);
1892 if (ret)
1893 goto out_free_ctrl;
1894
Christoph Hellwig71102302016-07-06 21:55:52 +09001895 INIT_DELAYED_WORK(&ctrl->reconnect_work,
1896 nvme_rdma_reconnect_ctrl_work);
1897 INIT_WORK(&ctrl->err_work, nvme_rdma_error_recovery_work);
1898 INIT_WORK(&ctrl->delete_work, nvme_rdma_del_ctrl_work);
1899 INIT_WORK(&ctrl->reset_work, nvme_rdma_reset_ctrl_work);
1900 spin_lock_init(&ctrl->lock);
1901
1902 ctrl->queue_count = opts->nr_io_queues + 1; /* +1 for admin queue */
Jay Freyenseec5af8652016-08-17 15:00:27 -07001903 ctrl->ctrl.sqsize = opts->queue_size - 1;
Christoph Hellwig71102302016-07-06 21:55:52 +09001904 ctrl->ctrl.kato = opts->kato;
1905
1906 ret = -ENOMEM;
1907 ctrl->queues = kcalloc(ctrl->queue_count, sizeof(*ctrl->queues),
1908 GFP_KERNEL);
1909 if (!ctrl->queues)
1910 goto out_uninit_ctrl;
1911
1912 ret = nvme_rdma_configure_admin_queue(ctrl);
1913 if (ret)
1914 goto out_kfree_queues;
1915
1916 /* sanity check icdoff */
1917 if (ctrl->ctrl.icdoff) {
1918 dev_err(ctrl->ctrl.device, "icdoff is not supported!\n");
1919 goto out_remove_admin_queue;
1920 }
1921
1922 /* sanity check keyed sgls */
1923 if (!(ctrl->ctrl.sgls & (1 << 20))) {
1924 dev_err(ctrl->ctrl.device, "Mandatory keyed sgls are not support\n");
1925 goto out_remove_admin_queue;
1926 }
1927
1928 if (opts->queue_size > ctrl->ctrl.maxcmd) {
1929 /* warn if maxcmd is lower than queue_size */
1930 dev_warn(ctrl->ctrl.device,
1931 "queue_size %zu > ctrl maxcmd %u, clamping down\n",
1932 opts->queue_size, ctrl->ctrl.maxcmd);
1933 opts->queue_size = ctrl->ctrl.maxcmd;
1934 }
1935
Samuel Jones76c08bf2016-10-25 09:22:34 +02001936 if (opts->queue_size > ctrl->ctrl.sqsize + 1) {
1937 /* warn if sqsize is lower than queue_size */
1938 dev_warn(ctrl->ctrl.device,
1939 "queue_size %zu > ctrl sqsize %u, clamping down\n",
1940 opts->queue_size, ctrl->ctrl.sqsize + 1);
1941 opts->queue_size = ctrl->ctrl.sqsize + 1;
1942 }
1943
Christoph Hellwig71102302016-07-06 21:55:52 +09001944 if (opts->nr_io_queues) {
1945 ret = nvme_rdma_create_io_queues(ctrl);
1946 if (ret)
1947 goto out_remove_admin_queue;
1948 }
1949
1950 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
1951 WARN_ON_ONCE(!changed);
1952
Sagi Grimberg0928f9b2017-02-05 21:49:32 +02001953 dev_info(ctrl->ctrl.device, "new ctrl: NQN \"%s\", addr %pISpcs\n",
Christoph Hellwig71102302016-07-06 21:55:52 +09001954 ctrl->ctrl.opts->subsysnqn, &ctrl->addr);
1955
1956 kref_get(&ctrl->ctrl.kref);
1957
1958 mutex_lock(&nvme_rdma_ctrl_mutex);
1959 list_add_tail(&ctrl->list, &nvme_rdma_ctrl_list);
1960 mutex_unlock(&nvme_rdma_ctrl_mutex);
1961
1962 if (opts->nr_io_queues) {
1963 nvme_queue_scan(&ctrl->ctrl);
1964 nvme_queue_async_events(&ctrl->ctrl);
1965 }
1966
1967 return &ctrl->ctrl;
1968
1969out_remove_admin_queue:
1970 nvme_stop_keep_alive(&ctrl->ctrl);
1971 nvme_rdma_destroy_admin_queue(ctrl);
1972out_kfree_queues:
1973 kfree(ctrl->queues);
1974out_uninit_ctrl:
1975 nvme_uninit_ctrl(&ctrl->ctrl);
1976 nvme_put_ctrl(&ctrl->ctrl);
1977 if (ret > 0)
1978 ret = -EIO;
1979 return ERR_PTR(ret);
1980out_free_ctrl:
1981 kfree(ctrl);
1982 return ERR_PTR(ret);
1983}
1984
1985static struct nvmf_transport_ops nvme_rdma_transport = {
1986 .name = "rdma",
1987 .required_opts = NVMF_OPT_TRADDR,
Max Gurtovoy8f4e8da2017-02-19 20:08:03 +02001988 .allowed_opts = NVMF_OPT_TRSVCID | NVMF_OPT_RECONNECT_DELAY |
Sagi Grimbergfd8563c2017-03-18 20:58:29 +02001989 NVMF_OPT_HOST_TRADDR | NVMF_OPT_CTRL_LOSS_TMO,
Christoph Hellwig71102302016-07-06 21:55:52 +09001990 .create_ctrl = nvme_rdma_create_ctrl,
1991};
1992
Steve Wisee87a9112016-09-02 09:01:54 -07001993static void nvme_rdma_add_one(struct ib_device *ib_device)
1994{
1995}
1996
1997static void nvme_rdma_remove_one(struct ib_device *ib_device, void *client_data)
1998{
1999 struct nvme_rdma_ctrl *ctrl;
2000
2001 /* Delete all controllers using this device */
2002 mutex_lock(&nvme_rdma_ctrl_mutex);
2003 list_for_each_entry(ctrl, &nvme_rdma_ctrl_list, list) {
2004 if (ctrl->device->dev != ib_device)
2005 continue;
2006 dev_info(ctrl->ctrl.device,
2007 "Removing ctrl: NQN \"%s\", addr %pISp\n",
2008 ctrl->ctrl.opts->subsysnqn, &ctrl->addr);
2009 __nvme_rdma_del_ctrl(ctrl);
2010 }
2011 mutex_unlock(&nvme_rdma_ctrl_mutex);
2012
2013 flush_workqueue(nvme_rdma_wq);
2014}
2015
2016static struct ib_client nvme_rdma_ib_client = {
2017 .name = "nvme_rdma",
2018 .add = nvme_rdma_add_one,
2019 .remove = nvme_rdma_remove_one
2020};
2021
Christoph Hellwig71102302016-07-06 21:55:52 +09002022static int __init nvme_rdma_init_module(void)
2023{
Steve Wisee87a9112016-09-02 09:01:54 -07002024 int ret;
2025
Christoph Hellwig71102302016-07-06 21:55:52 +09002026 nvme_rdma_wq = create_workqueue("nvme_rdma_wq");
2027 if (!nvme_rdma_wq)
2028 return -ENOMEM;
2029
Steve Wisee87a9112016-09-02 09:01:54 -07002030 ret = ib_register_client(&nvme_rdma_ib_client);
Sagi Grimberga56c79c2017-03-19 06:21:42 +02002031 if (ret)
2032 goto err_destroy_wq;
Steve Wisee87a9112016-09-02 09:01:54 -07002033
Sagi Grimberga56c79c2017-03-19 06:21:42 +02002034 ret = nvmf_register_transport(&nvme_rdma_transport);
2035 if (ret)
2036 goto err_unreg_client;
2037
2038 return 0;
2039
2040err_unreg_client:
2041 ib_unregister_client(&nvme_rdma_ib_client);
2042err_destroy_wq:
2043 destroy_workqueue(nvme_rdma_wq);
2044 return ret;
Christoph Hellwig71102302016-07-06 21:55:52 +09002045}
2046
2047static void __exit nvme_rdma_cleanup_module(void)
2048{
Christoph Hellwig71102302016-07-06 21:55:52 +09002049 nvmf_unregister_transport(&nvme_rdma_transport);
Steve Wisee87a9112016-09-02 09:01:54 -07002050 ib_unregister_client(&nvme_rdma_ib_client);
Christoph Hellwig71102302016-07-06 21:55:52 +09002051 destroy_workqueue(nvme_rdma_wq);
2052}
2053
2054module_init(nvme_rdma_init_module);
2055module_exit(nvme_rdma_cleanup_module);
2056
2057MODULE_LICENSE("GPL v2");