blob: eeb08b6586409d6d1579bba910643b2e1b3aa148 [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>
31#include <rdma/ib_cm.h>
32#include <linux/nvme-rdma.h>
33
34#include "nvme.h"
35#include "fabrics.h"
36
37
38#define NVME_RDMA_CONNECT_TIMEOUT_MS 1000 /* 1 second */
39
40#define NVME_RDMA_MAX_SEGMENT_SIZE 0xffffff /* 24-bit SGL field */
41
42#define NVME_RDMA_MAX_SEGMENTS 256
43
44#define NVME_RDMA_MAX_INLINE_SEGMENTS 1
45
Christoph Hellwig71102302016-07-06 21:55:52 +090046/*
47 * We handle AEN commands ourselves and don't even let the
48 * block layer know about them.
49 */
50#define NVME_RDMA_NR_AEN_COMMANDS 1
51#define NVME_RDMA_AQ_BLKMQ_DEPTH \
52 (NVMF_AQ_DEPTH - NVME_RDMA_NR_AEN_COMMANDS)
53
54struct nvme_rdma_device {
55 struct ib_device *dev;
56 struct ib_pd *pd;
57 struct ib_mr *mr;
58 struct kref ref;
59 struct list_head entry;
60};
61
62struct nvme_rdma_qe {
63 struct ib_cqe cqe;
64 void *data;
65 u64 dma;
66};
67
68struct nvme_rdma_queue;
69struct nvme_rdma_request {
70 struct ib_mr *mr;
71 struct nvme_rdma_qe sqe;
72 struct ib_sge sge[1 + NVME_RDMA_MAX_INLINE_SEGMENTS];
73 u32 num_sge;
74 int nents;
75 bool inline_data;
Christoph Hellwig71102302016-07-06 21:55:52 +090076 struct ib_reg_wr reg_wr;
77 struct ib_cqe reg_cqe;
78 struct nvme_rdma_queue *queue;
79 struct sg_table sg_table;
80 struct scatterlist first_sgl[];
81};
82
83enum nvme_rdma_queue_flags {
84 NVME_RDMA_Q_CONNECTED = (1 << 0),
Steve Wisef361e5a2016-09-02 09:01:27 -070085 NVME_RDMA_IB_QUEUE_ALLOCATED = (1 << 1),
Sagi Grimberge89ca582016-09-02 09:01:54 -070086 NVME_RDMA_Q_DELETING = (1 << 2),
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
121 int reconnect_delay;
122 struct delayed_work reconnect_work;
123
124 struct list_head list;
125
126 struct blk_mq_tag_set admin_tag_set;
127 struct nvme_rdma_device *device;
128
129 u64 cap;
130 u32 max_fr_pages;
131
132 union {
133 struct sockaddr addr;
134 struct sockaddr_in addr_in;
135 };
136
137 struct nvme_ctrl ctrl;
138};
139
140static inline struct nvme_rdma_ctrl *to_rdma_ctrl(struct nvme_ctrl *ctrl)
141{
142 return container_of(ctrl, struct nvme_rdma_ctrl, ctrl);
143}
144
145static LIST_HEAD(device_list);
146static DEFINE_MUTEX(device_list_mutex);
147
148static LIST_HEAD(nvme_rdma_ctrl_list);
149static DEFINE_MUTEX(nvme_rdma_ctrl_mutex);
150
151static struct workqueue_struct *nvme_rdma_wq;
152
153/*
154 * Disabling this option makes small I/O goes faster, but is fundamentally
155 * unsafe. With it turned off we will have to register a global rkey that
156 * allows read and write access to all physical memory.
157 */
158static bool register_always = true;
159module_param(register_always, bool, 0444);
160MODULE_PARM_DESC(register_always,
161 "Use memory registration even for contiguous memory regions");
162
163static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
164 struct rdma_cm_event *event);
165static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc);
Christoph Hellwig71102302016-07-06 21:55:52 +0900166
167/* XXX: really should move to a generic header sooner or later.. */
168static inline void put_unaligned_le24(u32 val, u8 *p)
169{
170 *p++ = val;
171 *p++ = val >> 8;
172 *p++ = val >> 16;
173}
174
175static inline int nvme_rdma_queue_idx(struct nvme_rdma_queue *queue)
176{
177 return queue - queue->ctrl->queues;
178}
179
180static inline size_t nvme_rdma_inline_data_size(struct nvme_rdma_queue *queue)
181{
182 return queue->cmnd_capsule_len - sizeof(struct nvme_command);
183}
184
185static void nvme_rdma_free_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
186 size_t capsule_size, enum dma_data_direction dir)
187{
188 ib_dma_unmap_single(ibdev, qe->dma, capsule_size, dir);
189 kfree(qe->data);
190}
191
192static int nvme_rdma_alloc_qe(struct ib_device *ibdev, struct nvme_rdma_qe *qe,
193 size_t capsule_size, enum dma_data_direction dir)
194{
195 qe->data = kzalloc(capsule_size, GFP_KERNEL);
196 if (!qe->data)
197 return -ENOMEM;
198
199 qe->dma = ib_dma_map_single(ibdev, qe->data, capsule_size, dir);
200 if (ib_dma_mapping_error(ibdev, qe->dma)) {
201 kfree(qe->data);
202 return -ENOMEM;
203 }
204
205 return 0;
206}
207
208static void nvme_rdma_free_ring(struct ib_device *ibdev,
209 struct nvme_rdma_qe *ring, size_t ib_queue_size,
210 size_t capsule_size, enum dma_data_direction dir)
211{
212 int i;
213
214 for (i = 0; i < ib_queue_size; i++)
215 nvme_rdma_free_qe(ibdev, &ring[i], capsule_size, dir);
216 kfree(ring);
217}
218
219static struct nvme_rdma_qe *nvme_rdma_alloc_ring(struct ib_device *ibdev,
220 size_t ib_queue_size, size_t capsule_size,
221 enum dma_data_direction dir)
222{
223 struct nvme_rdma_qe *ring;
224 int i;
225
226 ring = kcalloc(ib_queue_size, sizeof(struct nvme_rdma_qe), GFP_KERNEL);
227 if (!ring)
228 return NULL;
229
230 for (i = 0; i < ib_queue_size; i++) {
231 if (nvme_rdma_alloc_qe(ibdev, &ring[i], capsule_size, dir))
232 goto out_free_ring;
233 }
234
235 return ring;
236
237out_free_ring:
238 nvme_rdma_free_ring(ibdev, ring, i, capsule_size, dir);
239 return NULL;
240}
241
242static void nvme_rdma_qp_event(struct ib_event *event, void *context)
243{
244 pr_debug("QP event %d\n", event->event);
245}
246
247static int nvme_rdma_wait_for_cm(struct nvme_rdma_queue *queue)
248{
249 wait_for_completion_interruptible_timeout(&queue->cm_done,
250 msecs_to_jiffies(NVME_RDMA_CONNECT_TIMEOUT_MS) + 1);
251 return queue->cm_error;
252}
253
254static int nvme_rdma_create_qp(struct nvme_rdma_queue *queue, const int factor)
255{
256 struct nvme_rdma_device *dev = queue->device;
257 struct ib_qp_init_attr init_attr;
258 int ret;
259
260 memset(&init_attr, 0, sizeof(init_attr));
261 init_attr.event_handler = nvme_rdma_qp_event;
262 /* +1 for drain */
263 init_attr.cap.max_send_wr = factor * queue->queue_size + 1;
264 /* +1 for drain */
265 init_attr.cap.max_recv_wr = queue->queue_size + 1;
266 init_attr.cap.max_recv_sge = 1;
267 init_attr.cap.max_send_sge = 1 + NVME_RDMA_MAX_INLINE_SEGMENTS;
268 init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
269 init_attr.qp_type = IB_QPT_RC;
270 init_attr.send_cq = queue->ib_cq;
271 init_attr.recv_cq = queue->ib_cq;
272
273 ret = rdma_create_qp(queue->cm_id, dev->pd, &init_attr);
274
275 queue->qp = queue->cm_id->qp;
276 return ret;
277}
278
279static int nvme_rdma_reinit_request(void *data, struct request *rq)
280{
281 struct nvme_rdma_ctrl *ctrl = data;
282 struct nvme_rdma_device *dev = ctrl->device;
283 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
284 int ret = 0;
285
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300286 if (!req->mr->need_inval)
Christoph Hellwig71102302016-07-06 21:55:52 +0900287 goto out;
288
289 ib_dereg_mr(req->mr);
290
291 req->mr = ib_alloc_mr(dev->pd, IB_MR_TYPE_MEM_REG,
292 ctrl->max_fr_pages);
293 if (IS_ERR(req->mr)) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900294 ret = PTR_ERR(req->mr);
Wei Yongjun458a9632016-07-12 11:06:17 +0000295 req->mr = NULL;
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
339 BUG_ON(queue_idx >= ctrl->queue_count);
340
341 ret = nvme_rdma_alloc_qe(ibdev, &req->sqe, sizeof(struct nvme_command),
342 DMA_TO_DEVICE);
343 if (ret)
344 return ret;
345
346 req->mr = ib_alloc_mr(dev->pd, IB_MR_TYPE_MEM_REG,
347 ctrl->max_fr_pages);
348 if (IS_ERR(req->mr)) {
349 ret = PTR_ERR(req->mr);
350 goto out_free_qe;
351 }
352
353 req->queue = queue;
354
355 return 0;
356
357out_free_qe:
358 nvme_rdma_free_qe(dev->dev, &req->sqe, sizeof(struct nvme_command),
359 DMA_TO_DEVICE);
360 return -ENOMEM;
361}
362
363static int nvme_rdma_init_request(void *data, struct request *rq,
364 unsigned int hctx_idx, unsigned int rq_idx,
365 unsigned int numa_node)
366{
367 return __nvme_rdma_init_request(data, rq, hctx_idx + 1);
368}
369
370static int nvme_rdma_init_admin_request(void *data, struct request *rq,
371 unsigned int hctx_idx, unsigned int rq_idx,
372 unsigned int numa_node)
373{
374 return __nvme_rdma_init_request(data, rq, 0);
375}
376
377static int nvme_rdma_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
378 unsigned int hctx_idx)
379{
380 struct nvme_rdma_ctrl *ctrl = data;
381 struct nvme_rdma_queue *queue = &ctrl->queues[hctx_idx + 1];
382
383 BUG_ON(hctx_idx >= ctrl->queue_count);
384
385 hctx->driver_data = queue;
386 return 0;
387}
388
389static int nvme_rdma_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
390 unsigned int hctx_idx)
391{
392 struct nvme_rdma_ctrl *ctrl = data;
393 struct nvme_rdma_queue *queue = &ctrl->queues[0];
394
395 BUG_ON(hctx_idx != 0);
396
397 hctx->driver_data = queue;
398 return 0;
399}
400
401static void nvme_rdma_free_dev(struct kref *ref)
402{
403 struct nvme_rdma_device *ndev =
404 container_of(ref, struct nvme_rdma_device, ref);
405
406 mutex_lock(&device_list_mutex);
407 list_del(&ndev->entry);
408 mutex_unlock(&device_list_mutex);
409
410 if (!register_always)
411 ib_dereg_mr(ndev->mr);
412 ib_dealloc_pd(ndev->pd);
413
414 kfree(ndev);
415}
416
417static void nvme_rdma_dev_put(struct nvme_rdma_device *dev)
418{
419 kref_put(&dev->ref, nvme_rdma_free_dev);
420}
421
422static int nvme_rdma_dev_get(struct nvme_rdma_device *dev)
423{
424 return kref_get_unless_zero(&dev->ref);
425}
426
427static struct nvme_rdma_device *
428nvme_rdma_find_get_device(struct rdma_cm_id *cm_id)
429{
430 struct nvme_rdma_device *ndev;
431
432 mutex_lock(&device_list_mutex);
433 list_for_each_entry(ndev, &device_list, entry) {
434 if (ndev->dev->node_guid == cm_id->device->node_guid &&
435 nvme_rdma_dev_get(ndev))
436 goto out_unlock;
437 }
438
439 ndev = kzalloc(sizeof(*ndev), GFP_KERNEL);
440 if (!ndev)
441 goto out_err;
442
443 ndev->dev = cm_id->device;
444 kref_init(&ndev->ref);
445
446 ndev->pd = ib_alloc_pd(ndev->dev);
447 if (IS_ERR(ndev->pd))
448 goto out_free_dev;
449
450 if (!register_always) {
451 ndev->mr = ib_get_dma_mr(ndev->pd,
452 IB_ACCESS_LOCAL_WRITE |
453 IB_ACCESS_REMOTE_READ |
454 IB_ACCESS_REMOTE_WRITE);
455 if (IS_ERR(ndev->mr))
456 goto out_free_pd;
457 }
458
459 if (!(ndev->dev->attrs.device_cap_flags &
460 IB_DEVICE_MEM_MGT_EXTENSIONS)) {
461 dev_err(&ndev->dev->dev,
462 "Memory registrations not supported.\n");
463 goto out_free_mr;
464 }
465
466 list_add(&ndev->entry, &device_list);
467out_unlock:
468 mutex_unlock(&device_list_mutex);
469 return ndev;
470
471out_free_mr:
472 if (!register_always)
473 ib_dereg_mr(ndev->mr);
474out_free_pd:
475 ib_dealloc_pd(ndev->pd);
476out_free_dev:
477 kfree(ndev);
478out_err:
479 mutex_unlock(&device_list_mutex);
480 return NULL;
481}
482
483static void nvme_rdma_destroy_queue_ib(struct nvme_rdma_queue *queue)
484{
Steve Wisef361e5a2016-09-02 09:01:27 -0700485 struct nvme_rdma_device *dev;
486 struct ib_device *ibdev;
Christoph Hellwig71102302016-07-06 21:55:52 +0900487
Steve Wisef361e5a2016-09-02 09:01:27 -0700488 if (!test_and_clear_bit(NVME_RDMA_IB_QUEUE_ALLOCATED, &queue->flags))
489 return;
490
491 dev = queue->device;
492 ibdev = dev->dev;
Christoph Hellwig71102302016-07-06 21:55:52 +0900493 rdma_destroy_qp(queue->cm_id);
494 ib_free_cq(queue->ib_cq);
495
496 nvme_rdma_free_ring(ibdev, queue->rsp_ring, queue->queue_size,
497 sizeof(struct nvme_completion), DMA_FROM_DEVICE);
498
499 nvme_rdma_dev_put(dev);
500}
501
502static int nvme_rdma_create_queue_ib(struct nvme_rdma_queue *queue,
503 struct nvme_rdma_device *dev)
504{
505 struct ib_device *ibdev = dev->dev;
506 const int send_wr_factor = 3; /* MR, SEND, INV */
507 const int cq_factor = send_wr_factor + 1; /* + RECV */
508 int comp_vector, idx = nvme_rdma_queue_idx(queue);
509
510 int ret;
511
512 queue->device = dev;
513
514 /*
515 * The admin queue is barely used once the controller is live, so don't
516 * bother to spread it out.
517 */
518 if (idx == 0)
519 comp_vector = 0;
520 else
521 comp_vector = idx % ibdev->num_comp_vectors;
522
523
524 /* +1 for ib_stop_cq */
525 queue->ib_cq = ib_alloc_cq(dev->dev, queue,
526 cq_factor * queue->queue_size + 1, comp_vector,
527 IB_POLL_SOFTIRQ);
528 if (IS_ERR(queue->ib_cq)) {
529 ret = PTR_ERR(queue->ib_cq);
530 goto out;
531 }
532
533 ret = nvme_rdma_create_qp(queue, send_wr_factor);
534 if (ret)
535 goto out_destroy_ib_cq;
536
537 queue->rsp_ring = nvme_rdma_alloc_ring(ibdev, queue->queue_size,
538 sizeof(struct nvme_completion), DMA_FROM_DEVICE);
539 if (!queue->rsp_ring) {
540 ret = -ENOMEM;
541 goto out_destroy_qp;
542 }
Steve Wisef361e5a2016-09-02 09:01:27 -0700543 set_bit(NVME_RDMA_IB_QUEUE_ALLOCATED, &queue->flags);
Christoph Hellwig71102302016-07-06 21:55:52 +0900544
545 return 0;
546
547out_destroy_qp:
548 ib_destroy_qp(queue->qp);
549out_destroy_ib_cq:
550 ib_free_cq(queue->ib_cq);
551out:
552 return ret;
553}
554
555static int nvme_rdma_init_queue(struct nvme_rdma_ctrl *ctrl,
556 int idx, size_t queue_size)
557{
558 struct nvme_rdma_queue *queue;
559 int ret;
560
561 queue = &ctrl->queues[idx];
562 queue->ctrl = ctrl;
Sagi Grimberge89ca582016-09-02 09:01:54 -0700563 queue->flags = 0;
Christoph Hellwig71102302016-07-06 21:55:52 +0900564 init_completion(&queue->cm_done);
565
566 if (idx > 0)
567 queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
568 else
569 queue->cmnd_capsule_len = sizeof(struct nvme_command);
570
571 queue->queue_size = queue_size;
572
573 queue->cm_id = rdma_create_id(&init_net, nvme_rdma_cm_handler, queue,
574 RDMA_PS_TCP, IB_QPT_RC);
575 if (IS_ERR(queue->cm_id)) {
576 dev_info(ctrl->ctrl.device,
577 "failed to create CM ID: %ld\n", PTR_ERR(queue->cm_id));
578 return PTR_ERR(queue->cm_id);
579 }
580
581 queue->cm_error = -ETIMEDOUT;
582 ret = rdma_resolve_addr(queue->cm_id, NULL, &ctrl->addr,
583 NVME_RDMA_CONNECT_TIMEOUT_MS);
584 if (ret) {
585 dev_info(ctrl->ctrl.device,
586 "rdma_resolve_addr failed (%d).\n", ret);
587 goto out_destroy_cm_id;
588 }
589
590 ret = nvme_rdma_wait_for_cm(queue);
591 if (ret) {
592 dev_info(ctrl->ctrl.device,
593 "rdma_resolve_addr wait failed (%d).\n", ret);
594 goto out_destroy_cm_id;
595 }
596
597 set_bit(NVME_RDMA_Q_CONNECTED, &queue->flags);
598
599 return 0;
600
601out_destroy_cm_id:
Steve Wisef361e5a2016-09-02 09:01:27 -0700602 nvme_rdma_destroy_queue_ib(queue);
Christoph Hellwig71102302016-07-06 21:55:52 +0900603 rdma_destroy_id(queue->cm_id);
604 return ret;
605}
606
607static void nvme_rdma_stop_queue(struct nvme_rdma_queue *queue)
608{
609 rdma_disconnect(queue->cm_id);
610 ib_drain_qp(queue->qp);
611}
612
613static void nvme_rdma_free_queue(struct nvme_rdma_queue *queue)
614{
615 nvme_rdma_destroy_queue_ib(queue);
616 rdma_destroy_id(queue->cm_id);
617}
618
619static void nvme_rdma_stop_and_free_queue(struct nvme_rdma_queue *queue)
620{
Sagi Grimberge89ca582016-09-02 09:01:54 -0700621 if (test_and_set_bit(NVME_RDMA_Q_DELETING, &queue->flags))
Christoph Hellwig71102302016-07-06 21:55:52 +0900622 return;
623 nvme_rdma_stop_queue(queue);
624 nvme_rdma_free_queue(queue);
625}
626
627static void nvme_rdma_free_io_queues(struct nvme_rdma_ctrl *ctrl)
628{
629 int i;
630
631 for (i = 1; i < ctrl->queue_count; i++)
632 nvme_rdma_stop_and_free_queue(&ctrl->queues[i]);
633}
634
635static int nvme_rdma_connect_io_queues(struct nvme_rdma_ctrl *ctrl)
636{
637 int i, ret = 0;
638
639 for (i = 1; i < ctrl->queue_count; i++) {
640 ret = nvmf_connect_io_queue(&ctrl->ctrl, i);
641 if (ret)
642 break;
643 }
644
645 return ret;
646}
647
648static int nvme_rdma_init_io_queues(struct nvme_rdma_ctrl *ctrl)
649{
650 int i, ret;
651
652 for (i = 1; i < ctrl->queue_count; i++) {
Jay Freyenseec5af8652016-08-17 15:00:27 -0700653 ret = nvme_rdma_init_queue(ctrl, i,
654 ctrl->ctrl.opts->queue_size);
Christoph Hellwig71102302016-07-06 21:55:52 +0900655 if (ret) {
656 dev_info(ctrl->ctrl.device,
657 "failed to initialize i/o queue: %d\n", ret);
658 goto out_free_queues;
659 }
660 }
661
662 return 0;
663
664out_free_queues:
Steve Wisef361e5a2016-09-02 09:01:27 -0700665 for (i--; i >= 1; i--)
Christoph Hellwig71102302016-07-06 21:55:52 +0900666 nvme_rdma_stop_and_free_queue(&ctrl->queues[i]);
667
668 return ret;
669}
670
671static void nvme_rdma_destroy_admin_queue(struct nvme_rdma_ctrl *ctrl)
672{
673 nvme_rdma_free_qe(ctrl->queues[0].device->dev, &ctrl->async_event_sqe,
674 sizeof(struct nvme_command), DMA_TO_DEVICE);
675 nvme_rdma_stop_and_free_queue(&ctrl->queues[0]);
676 blk_cleanup_queue(ctrl->ctrl.admin_q);
677 blk_mq_free_tag_set(&ctrl->admin_tag_set);
678 nvme_rdma_dev_put(ctrl->device);
679}
680
681static void nvme_rdma_free_ctrl(struct nvme_ctrl *nctrl)
682{
683 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
684
685 if (list_empty(&ctrl->list))
686 goto free_ctrl;
687
688 mutex_lock(&nvme_rdma_ctrl_mutex);
689 list_del(&ctrl->list);
690 mutex_unlock(&nvme_rdma_ctrl_mutex);
691
Christoph Hellwig71102302016-07-06 21:55:52 +0900692 kfree(ctrl->queues);
693 nvmf_free_options(nctrl->opts);
694free_ctrl:
695 kfree(ctrl);
696}
697
698static void nvme_rdma_reconnect_ctrl_work(struct work_struct *work)
699{
700 struct nvme_rdma_ctrl *ctrl = container_of(to_delayed_work(work),
701 struct nvme_rdma_ctrl, reconnect_work);
702 bool changed;
703 int ret;
704
705 if (ctrl->queue_count > 1) {
706 nvme_rdma_free_io_queues(ctrl);
707
708 ret = blk_mq_reinit_tagset(&ctrl->tag_set);
709 if (ret)
710 goto requeue;
711 }
712
713 nvme_rdma_stop_and_free_queue(&ctrl->queues[0]);
714
715 ret = blk_mq_reinit_tagset(&ctrl->admin_tag_set);
716 if (ret)
717 goto requeue;
718
719 ret = nvme_rdma_init_queue(ctrl, 0, NVMF_AQ_DEPTH);
720 if (ret)
721 goto requeue;
722
723 blk_mq_start_stopped_hw_queues(ctrl->ctrl.admin_q, true);
724
725 ret = nvmf_connect_admin_queue(&ctrl->ctrl);
726 if (ret)
727 goto stop_admin_q;
728
729 ret = nvme_enable_ctrl(&ctrl->ctrl, ctrl->cap);
730 if (ret)
731 goto stop_admin_q;
732
733 nvme_start_keep_alive(&ctrl->ctrl);
734
735 if (ctrl->queue_count > 1) {
736 ret = nvme_rdma_init_io_queues(ctrl);
737 if (ret)
738 goto stop_admin_q;
739
740 ret = nvme_rdma_connect_io_queues(ctrl);
741 if (ret)
742 goto stop_admin_q;
743 }
744
745 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
746 WARN_ON_ONCE(!changed);
747
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300748 if (ctrl->queue_count > 1) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900749 nvme_start_queues(&ctrl->ctrl);
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300750 nvme_queue_scan(&ctrl->ctrl);
Sagi Grimberg3ef1b4b2016-08-04 13:46:19 +0300751 nvme_queue_async_events(&ctrl->ctrl);
Sagi Grimberg5f372eb2016-07-31 18:43:15 +0300752 }
Christoph Hellwig71102302016-07-06 21:55:52 +0900753
754 dev_info(ctrl->ctrl.device, "Successfully reconnected\n");
755
756 return;
757
758stop_admin_q:
759 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
760requeue:
761 /* Make sure we are not resetting/deleting */
762 if (ctrl->ctrl.state == NVME_CTRL_RECONNECTING) {
763 dev_info(ctrl->ctrl.device,
764 "Failed reconnect attempt, requeueing...\n");
765 queue_delayed_work(nvme_rdma_wq, &ctrl->reconnect_work,
766 ctrl->reconnect_delay * HZ);
767 }
768}
769
770static void nvme_rdma_error_recovery_work(struct work_struct *work)
771{
772 struct nvme_rdma_ctrl *ctrl = container_of(work,
773 struct nvme_rdma_ctrl, err_work);
Sagi Grimberge89ca582016-09-02 09:01:54 -0700774 int i;
Christoph Hellwig71102302016-07-06 21:55:52 +0900775
776 nvme_stop_keep_alive(&ctrl->ctrl);
Sagi Grimberge89ca582016-09-02 09:01:54 -0700777
778 for (i = 0; i < ctrl->queue_count; i++)
779 clear_bit(NVME_RDMA_Q_CONNECTED, &ctrl->queues[i].flags);
780
Christoph Hellwig71102302016-07-06 21:55:52 +0900781 if (ctrl->queue_count > 1)
782 nvme_stop_queues(&ctrl->ctrl);
783 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
784
785 /* We must take care of fastfail/requeue all our inflight requests */
786 if (ctrl->queue_count > 1)
787 blk_mq_tagset_busy_iter(&ctrl->tag_set,
788 nvme_cancel_request, &ctrl->ctrl);
789 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
790 nvme_cancel_request, &ctrl->ctrl);
791
792 dev_info(ctrl->ctrl.device, "reconnecting in %d seconds\n",
793 ctrl->reconnect_delay);
794
795 queue_delayed_work(nvme_rdma_wq, &ctrl->reconnect_work,
796 ctrl->reconnect_delay * HZ);
797}
798
799static void nvme_rdma_error_recovery(struct nvme_rdma_ctrl *ctrl)
800{
801 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RECONNECTING))
802 return;
803
804 queue_work(nvme_rdma_wq, &ctrl->err_work);
805}
806
807static void nvme_rdma_wr_error(struct ib_cq *cq, struct ib_wc *wc,
808 const char *op)
809{
810 struct nvme_rdma_queue *queue = cq->cq_context;
811 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
812
813 if (ctrl->ctrl.state == NVME_CTRL_LIVE)
814 dev_info(ctrl->ctrl.device,
815 "%s for CQE 0x%p failed with status %s (%d)\n",
816 op, wc->wr_cqe,
817 ib_wc_status_msg(wc->status), wc->status);
818 nvme_rdma_error_recovery(ctrl);
819}
820
821static void nvme_rdma_memreg_done(struct ib_cq *cq, struct ib_wc *wc)
822{
823 if (unlikely(wc->status != IB_WC_SUCCESS))
824 nvme_rdma_wr_error(cq, wc, "MEMREG");
825}
826
827static void nvme_rdma_inv_rkey_done(struct ib_cq *cq, struct ib_wc *wc)
828{
829 if (unlikely(wc->status != IB_WC_SUCCESS))
830 nvme_rdma_wr_error(cq, wc, "LOCAL_INV");
831}
832
833static int nvme_rdma_inv_rkey(struct nvme_rdma_queue *queue,
834 struct nvme_rdma_request *req)
835{
836 struct ib_send_wr *bad_wr;
837 struct ib_send_wr wr = {
838 .opcode = IB_WR_LOCAL_INV,
839 .next = NULL,
840 .num_sge = 0,
841 .send_flags = 0,
842 .ex.invalidate_rkey = req->mr->rkey,
843 };
844
845 req->reg_cqe.done = nvme_rdma_inv_rkey_done;
846 wr.wr_cqe = &req->reg_cqe;
847
848 return ib_post_send(queue->qp, &wr, &bad_wr);
849}
850
851static void nvme_rdma_unmap_data(struct nvme_rdma_queue *queue,
852 struct request *rq)
853{
854 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
855 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
856 struct nvme_rdma_device *dev = queue->device;
857 struct ib_device *ibdev = dev->dev;
858 int res;
859
860 if (!blk_rq_bytes(rq))
861 return;
862
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300863 if (req->mr->need_inval) {
Christoph Hellwig71102302016-07-06 21:55:52 +0900864 res = nvme_rdma_inv_rkey(queue, req);
865 if (res < 0) {
866 dev_err(ctrl->ctrl.device,
867 "Queueing INV WR for rkey %#x failed (%d)\n",
868 req->mr->rkey, res);
869 nvme_rdma_error_recovery(queue->ctrl);
870 }
871 }
872
873 ib_dma_unmap_sg(ibdev, req->sg_table.sgl,
874 req->nents, rq_data_dir(rq) ==
875 WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
876
877 nvme_cleanup_cmd(rq);
878 sg_free_table_chained(&req->sg_table, true);
879}
880
881static int nvme_rdma_set_sg_null(struct nvme_command *c)
882{
883 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
884
885 sg->addr = 0;
886 put_unaligned_le24(0, sg->length);
887 put_unaligned_le32(0, sg->key);
888 sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
889 return 0;
890}
891
892static int nvme_rdma_map_sg_inline(struct nvme_rdma_queue *queue,
893 struct nvme_rdma_request *req, struct nvme_command *c)
894{
895 struct nvme_sgl_desc *sg = &c->common.dptr.sgl;
896
897 req->sge[1].addr = sg_dma_address(req->sg_table.sgl);
898 req->sge[1].length = sg_dma_len(req->sg_table.sgl);
899 req->sge[1].lkey = queue->device->pd->local_dma_lkey;
900
901 sg->addr = cpu_to_le64(queue->ctrl->ctrl.icdoff);
902 sg->length = cpu_to_le32(sg_dma_len(req->sg_table.sgl));
903 sg->type = (NVME_SGL_FMT_DATA_DESC << 4) | NVME_SGL_FMT_OFFSET;
904
905 req->inline_data = true;
906 req->num_sge++;
907 return 0;
908}
909
910static int nvme_rdma_map_sg_single(struct nvme_rdma_queue *queue,
911 struct nvme_rdma_request *req, struct nvme_command *c)
912{
913 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
914
915 sg->addr = cpu_to_le64(sg_dma_address(req->sg_table.sgl));
916 put_unaligned_le24(sg_dma_len(req->sg_table.sgl), sg->length);
917 put_unaligned_le32(queue->device->mr->rkey, sg->key);
918 sg->type = NVME_KEY_SGL_FMT_DATA_DESC << 4;
919 return 0;
920}
921
922static int nvme_rdma_map_sg_fr(struct nvme_rdma_queue *queue,
923 struct nvme_rdma_request *req, struct nvme_command *c,
924 int count)
925{
926 struct nvme_keyed_sgl_desc *sg = &c->common.dptr.ksgl;
927 int nr;
928
929 nr = ib_map_mr_sg(req->mr, req->sg_table.sgl, count, NULL, PAGE_SIZE);
930 if (nr < count) {
931 if (nr < 0)
932 return nr;
933 return -EINVAL;
934 }
935
936 ib_update_fast_reg_key(req->mr, ib_inc_rkey(req->mr->rkey));
937
938 req->reg_cqe.done = nvme_rdma_memreg_done;
939 memset(&req->reg_wr, 0, sizeof(req->reg_wr));
940 req->reg_wr.wr.opcode = IB_WR_REG_MR;
941 req->reg_wr.wr.wr_cqe = &req->reg_cqe;
942 req->reg_wr.wr.num_sge = 0;
943 req->reg_wr.mr = req->mr;
944 req->reg_wr.key = req->mr->rkey;
945 req->reg_wr.access = IB_ACCESS_LOCAL_WRITE |
946 IB_ACCESS_REMOTE_READ |
947 IB_ACCESS_REMOTE_WRITE;
948
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300949 req->mr->need_inval = true;
Christoph Hellwig71102302016-07-06 21:55:52 +0900950
951 sg->addr = cpu_to_le64(req->mr->iova);
952 put_unaligned_le24(req->mr->length, sg->length);
953 put_unaligned_le32(req->mr->rkey, sg->key);
954 sg->type = (NVME_KEY_SGL_FMT_DATA_DESC << 4) |
955 NVME_SGL_FMT_INVALIDATE;
956
957 return 0;
958}
959
960static int nvme_rdma_map_data(struct nvme_rdma_queue *queue,
961 struct request *rq, unsigned int map_len,
962 struct nvme_command *c)
963{
964 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
965 struct nvme_rdma_device *dev = queue->device;
966 struct ib_device *ibdev = dev->dev;
967 int nents, count;
968 int ret;
969
970 req->num_sge = 1;
971 req->inline_data = false;
Sagi Grimbergf5b7b552016-08-24 12:25:56 +0300972 req->mr->need_inval = false;
Christoph Hellwig71102302016-07-06 21:55:52 +0900973
974 c->common.flags |= NVME_CMD_SGL_METABUF;
975
976 if (!blk_rq_bytes(rq))
977 return nvme_rdma_set_sg_null(c);
978
979 req->sg_table.sgl = req->first_sgl;
980 ret = sg_alloc_table_chained(&req->sg_table, rq->nr_phys_segments,
981 req->sg_table.sgl);
982 if (ret)
983 return -ENOMEM;
984
985 nents = blk_rq_map_sg(rq->q, rq, req->sg_table.sgl);
986 BUG_ON(nents > rq->nr_phys_segments);
987 req->nents = nents;
988
989 count = ib_dma_map_sg(ibdev, req->sg_table.sgl, nents,
990 rq_data_dir(rq) == WRITE ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
991 if (unlikely(count <= 0)) {
992 sg_free_table_chained(&req->sg_table, true);
993 return -EIO;
994 }
995
996 if (count == 1) {
997 if (rq_data_dir(rq) == WRITE &&
998 map_len <= nvme_rdma_inline_data_size(queue) &&
999 nvme_rdma_queue_idx(queue))
1000 return nvme_rdma_map_sg_inline(queue, req, c);
1001
1002 if (!register_always)
1003 return nvme_rdma_map_sg_single(queue, req, c);
1004 }
1005
1006 return nvme_rdma_map_sg_fr(queue, req, c, count);
1007}
1008
1009static void nvme_rdma_send_done(struct ib_cq *cq, struct ib_wc *wc)
1010{
1011 if (unlikely(wc->status != IB_WC_SUCCESS))
1012 nvme_rdma_wr_error(cq, wc, "SEND");
1013}
1014
1015static int nvme_rdma_post_send(struct nvme_rdma_queue *queue,
1016 struct nvme_rdma_qe *qe, struct ib_sge *sge, u32 num_sge,
1017 struct ib_send_wr *first, bool flush)
1018{
1019 struct ib_send_wr wr, *bad_wr;
1020 int ret;
1021
1022 sge->addr = qe->dma;
1023 sge->length = sizeof(struct nvme_command),
1024 sge->lkey = queue->device->pd->local_dma_lkey;
1025
1026 qe->cqe.done = nvme_rdma_send_done;
1027
1028 wr.next = NULL;
1029 wr.wr_cqe = &qe->cqe;
1030 wr.sg_list = sge;
1031 wr.num_sge = num_sge;
1032 wr.opcode = IB_WR_SEND;
1033 wr.send_flags = 0;
1034
1035 /*
1036 * Unsignalled send completions are another giant desaster in the
1037 * IB Verbs spec: If we don't regularly post signalled sends
1038 * the send queue will fill up and only a QP reset will rescue us.
1039 * Would have been way to obvious to handle this in hardware or
1040 * at least the RDMA stack..
1041 *
1042 * This messy and racy code sniplet is copy and pasted from the iSER
1043 * initiator, and the magic '32' comes from there as well.
1044 *
1045 * Always signal the flushes. The magic request used for the flush
1046 * sequencer is not allocated in our driver's tagset and it's
1047 * triggered to be freed by blk_cleanup_queue(). So we need to
1048 * always mark it as signaled to ensure that the "wr_cqe", which is
1049 * embeded in request's payload, is not freed when __ib_process_cq()
1050 * calls wr_cqe->done().
1051 */
1052 if ((++queue->sig_count % 32) == 0 || flush)
1053 wr.send_flags |= IB_SEND_SIGNALED;
1054
1055 if (first)
1056 first->next = &wr;
1057 else
1058 first = &wr;
1059
1060 ret = ib_post_send(queue->qp, first, &bad_wr);
1061 if (ret) {
1062 dev_err(queue->ctrl->ctrl.device,
1063 "%s failed with error code %d\n", __func__, ret);
1064 }
1065 return ret;
1066}
1067
1068static int nvme_rdma_post_recv(struct nvme_rdma_queue *queue,
1069 struct nvme_rdma_qe *qe)
1070{
1071 struct ib_recv_wr wr, *bad_wr;
1072 struct ib_sge list;
1073 int ret;
1074
1075 list.addr = qe->dma;
1076 list.length = sizeof(struct nvme_completion);
1077 list.lkey = queue->device->pd->local_dma_lkey;
1078
1079 qe->cqe.done = nvme_rdma_recv_done;
1080
1081 wr.next = NULL;
1082 wr.wr_cqe = &qe->cqe;
1083 wr.sg_list = &list;
1084 wr.num_sge = 1;
1085
1086 ret = ib_post_recv(queue->qp, &wr, &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 struct blk_mq_tags *nvme_rdma_tagset(struct nvme_rdma_queue *queue)
1095{
1096 u32 queue_idx = nvme_rdma_queue_idx(queue);
1097
1098 if (queue_idx == 0)
1099 return queue->ctrl->admin_tag_set.tags[queue_idx];
1100 return queue->ctrl->tag_set.tags[queue_idx - 1];
1101}
1102
1103static void nvme_rdma_submit_async_event(struct nvme_ctrl *arg, int aer_idx)
1104{
1105 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(arg);
1106 struct nvme_rdma_queue *queue = &ctrl->queues[0];
1107 struct ib_device *dev = queue->device->dev;
1108 struct nvme_rdma_qe *sqe = &ctrl->async_event_sqe;
1109 struct nvme_command *cmd = sqe->data;
1110 struct ib_sge sge;
1111 int ret;
1112
1113 if (WARN_ON_ONCE(aer_idx != 0))
1114 return;
1115
1116 ib_dma_sync_single_for_cpu(dev, sqe->dma, sizeof(*cmd), DMA_TO_DEVICE);
1117
1118 memset(cmd, 0, sizeof(*cmd));
1119 cmd->common.opcode = nvme_admin_async_event;
1120 cmd->common.command_id = NVME_RDMA_AQ_BLKMQ_DEPTH;
1121 cmd->common.flags |= NVME_CMD_SGL_METABUF;
1122 nvme_rdma_set_sg_null(cmd);
1123
1124 ib_dma_sync_single_for_device(dev, sqe->dma, sizeof(*cmd),
1125 DMA_TO_DEVICE);
1126
1127 ret = nvme_rdma_post_send(queue, sqe, &sge, 1, NULL, false);
1128 WARN_ON_ONCE(ret);
1129}
1130
1131static int nvme_rdma_process_nvme_rsp(struct nvme_rdma_queue *queue,
1132 struct nvme_completion *cqe, struct ib_wc *wc, int tag)
1133{
1134 u16 status = le16_to_cpu(cqe->status);
1135 struct request *rq;
1136 struct nvme_rdma_request *req;
1137 int ret = 0;
1138
1139 status >>= 1;
1140
1141 rq = blk_mq_tag_to_rq(nvme_rdma_tagset(queue), cqe->command_id);
1142 if (!rq) {
1143 dev_err(queue->ctrl->ctrl.device,
1144 "tag 0x%x on QP %#x not found\n",
1145 cqe->command_id, queue->qp->qp_num);
1146 nvme_rdma_error_recovery(queue->ctrl);
1147 return ret;
1148 }
1149 req = blk_mq_rq_to_pdu(rq);
1150
1151 if (rq->cmd_type == REQ_TYPE_DRV_PRIV && rq->special)
1152 memcpy(rq->special, cqe, sizeof(*cqe));
1153
1154 if (rq->tag == tag)
1155 ret = 1;
1156
1157 if ((wc->wc_flags & IB_WC_WITH_INVALIDATE) &&
1158 wc->ex.invalidate_rkey == req->mr->rkey)
Sagi Grimbergf5b7b552016-08-24 12:25:56 +03001159 req->mr->need_inval = false;
Christoph Hellwig71102302016-07-06 21:55:52 +09001160
1161 blk_mq_complete_request(rq, status);
1162
1163 return ret;
1164}
1165
1166static int __nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc, int tag)
1167{
1168 struct nvme_rdma_qe *qe =
1169 container_of(wc->wr_cqe, struct nvme_rdma_qe, cqe);
1170 struct nvme_rdma_queue *queue = cq->cq_context;
1171 struct ib_device *ibdev = queue->device->dev;
1172 struct nvme_completion *cqe = qe->data;
1173 const size_t len = sizeof(struct nvme_completion);
1174 int ret = 0;
1175
1176 if (unlikely(wc->status != IB_WC_SUCCESS)) {
1177 nvme_rdma_wr_error(cq, wc, "RECV");
1178 return 0;
1179 }
1180
1181 ib_dma_sync_single_for_cpu(ibdev, qe->dma, len, DMA_FROM_DEVICE);
1182 /*
1183 * AEN requests are special as they don't time out and can
1184 * survive any kind of queue freeze and often don't respond to
1185 * aborts. We don't even bother to allocate a struct request
1186 * for them but rather special case them here.
1187 */
1188 if (unlikely(nvme_rdma_queue_idx(queue) == 0 &&
1189 cqe->command_id >= NVME_RDMA_AQ_BLKMQ_DEPTH))
1190 nvme_complete_async_event(&queue->ctrl->ctrl, cqe);
1191 else
1192 ret = nvme_rdma_process_nvme_rsp(queue, cqe, wc, tag);
1193 ib_dma_sync_single_for_device(ibdev, qe->dma, len, DMA_FROM_DEVICE);
1194
1195 nvme_rdma_post_recv(queue, qe);
1196 return ret;
1197}
1198
1199static void nvme_rdma_recv_done(struct ib_cq *cq, struct ib_wc *wc)
1200{
1201 __nvme_rdma_recv_done(cq, wc, -1);
1202}
1203
1204static int nvme_rdma_conn_established(struct nvme_rdma_queue *queue)
1205{
1206 int ret, i;
1207
1208 for (i = 0; i < queue->queue_size; i++) {
1209 ret = nvme_rdma_post_recv(queue, &queue->rsp_ring[i]);
1210 if (ret)
1211 goto out_destroy_queue_ib;
1212 }
1213
1214 return 0;
1215
1216out_destroy_queue_ib:
1217 nvme_rdma_destroy_queue_ib(queue);
1218 return ret;
1219}
1220
1221static int nvme_rdma_conn_rejected(struct nvme_rdma_queue *queue,
1222 struct rdma_cm_event *ev)
1223{
1224 if (ev->param.conn.private_data_len) {
1225 struct nvme_rdma_cm_rej *rej =
1226 (struct nvme_rdma_cm_rej *)ev->param.conn.private_data;
1227
1228 dev_err(queue->ctrl->ctrl.device,
1229 "Connect rejected, status %d.", le16_to_cpu(rej->sts));
1230 /* XXX: Think of something clever to do here... */
1231 } else {
1232 dev_err(queue->ctrl->ctrl.device,
1233 "Connect rejected, no private data.\n");
1234 }
1235
1236 return -ECONNRESET;
1237}
1238
1239static int nvme_rdma_addr_resolved(struct nvme_rdma_queue *queue)
1240{
1241 struct nvme_rdma_device *dev;
1242 int ret;
1243
1244 dev = nvme_rdma_find_get_device(queue->cm_id);
1245 if (!dev) {
1246 dev_err(queue->cm_id->device->dma_device,
1247 "no client data found!\n");
1248 return -ECONNREFUSED;
1249 }
1250
1251 ret = nvme_rdma_create_queue_ib(queue, dev);
1252 if (ret) {
1253 nvme_rdma_dev_put(dev);
1254 goto out;
1255 }
1256
1257 ret = rdma_resolve_route(queue->cm_id, NVME_RDMA_CONNECT_TIMEOUT_MS);
1258 if (ret) {
1259 dev_err(queue->ctrl->ctrl.device,
1260 "rdma_resolve_route failed (%d).\n",
1261 queue->cm_error);
1262 goto out_destroy_queue;
1263 }
1264
1265 return 0;
1266
1267out_destroy_queue:
1268 nvme_rdma_destroy_queue_ib(queue);
1269out:
1270 return ret;
1271}
1272
1273static int nvme_rdma_route_resolved(struct nvme_rdma_queue *queue)
1274{
1275 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
1276 struct rdma_conn_param param = { };
Roland Dreier0b857b42016-07-31 00:27:39 -07001277 struct nvme_rdma_cm_req priv = { };
Christoph Hellwig71102302016-07-06 21:55:52 +09001278 int ret;
1279
1280 param.qp_num = queue->qp->qp_num;
1281 param.flow_control = 1;
1282
1283 param.responder_resources = queue->device->dev->attrs.max_qp_rd_atom;
Sagi Grimberg2ac17c22016-06-22 15:06:00 +03001284 /* maximum retry count */
1285 param.retry_count = 7;
Christoph Hellwig71102302016-07-06 21:55:52 +09001286 param.rnr_retry_count = 7;
1287 param.private_data = &priv;
1288 param.private_data_len = sizeof(priv);
1289
1290 priv.recfmt = cpu_to_le16(NVME_RDMA_CM_FMT_1_0);
1291 priv.qid = cpu_to_le16(nvme_rdma_queue_idx(queue));
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001292 /*
1293 * set the admin queue depth to the minimum size
1294 * specified by the Fabrics standard.
1295 */
1296 if (priv.qid == 0) {
1297 priv.hrqsize = cpu_to_le16(NVMF_AQ_DEPTH);
1298 priv.hsqsize = cpu_to_le16(NVMF_AQ_DEPTH - 1);
1299 } else {
Jay Freyenseec5af8652016-08-17 15:00:27 -07001300 /*
1301 * current interpretation of the fabrics spec
1302 * is at minimum you make hrqsize sqsize+1, or a
1303 * 1's based representation of sqsize.
1304 */
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001305 priv.hrqsize = cpu_to_le16(queue->queue_size);
Jay Freyenseec5af8652016-08-17 15:00:27 -07001306 priv.hsqsize = cpu_to_le16(queue->ctrl->ctrl.sqsize);
Jay Freyenseef994d9d2016-08-17 15:00:26 -07001307 }
Christoph Hellwig71102302016-07-06 21:55:52 +09001308
1309 ret = rdma_connect(queue->cm_id, &param);
1310 if (ret) {
1311 dev_err(ctrl->ctrl.device,
1312 "rdma_connect failed (%d).\n", ret);
1313 goto out_destroy_queue_ib;
1314 }
1315
1316 return 0;
1317
1318out_destroy_queue_ib:
1319 nvme_rdma_destroy_queue_ib(queue);
1320 return ret;
1321}
1322
1323/**
1324 * nvme_rdma_device_unplug() - Handle RDMA device unplug
1325 * @queue: Queue that owns the cm_id that caught the event
1326 *
1327 * DEVICE_REMOVAL event notifies us that the RDMA device is about
1328 * to unplug so we should take care of destroying our RDMA resources.
1329 * This event will be generated for each allocated cm_id.
1330 *
1331 * In our case, the RDMA resources are managed per controller and not
1332 * only per queue. So the way we handle this is we trigger an implicit
1333 * controller deletion upon the first DEVICE_REMOVAL event we see, and
1334 * hold the event inflight until the controller deletion is completed.
1335 *
1336 * One exception that we need to handle is the destruction of the cm_id
1337 * that caught the event. Since we hold the callout until the controller
1338 * deletion is completed, we'll deadlock if the controller deletion will
1339 * call rdma_destroy_id on this queue's cm_id. Thus, we claim ownership
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001340 * of destroying this queue before-hand, destroy the queue resources,
1341 * then queue the controller deletion which won't destroy this queue and
1342 * we destroy the cm_id implicitely by returning a non-zero rc to the callout.
Christoph Hellwig71102302016-07-06 21:55:52 +09001343 */
1344static int nvme_rdma_device_unplug(struct nvme_rdma_queue *queue)
1345{
1346 struct nvme_rdma_ctrl *ctrl = queue->ctrl;
Colin Ian King39bbee42016-08-16 09:24:39 +01001347 int ret = 0;
Christoph Hellwig71102302016-07-06 21:55:52 +09001348
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001349 /* Own the controller deletion */
1350 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING))
1351 return 0;
Christoph Hellwig71102302016-07-06 21:55:52 +09001352
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001353 dev_warn(ctrl->ctrl.device,
1354 "Got rdma device removal event, deleting ctrl\n");
1355
1356 /* Get rid of reconnect work if its running */
1357 cancel_delayed_work_sync(&ctrl->reconnect_work);
1358
1359 /* Disable the queue so ctrl delete won't free it */
Sagi Grimberge89ca582016-09-02 09:01:54 -07001360 if (!test_and_set_bit(NVME_RDMA_Q_DELETING, &queue->flags)) {
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001361 /* Free this queue ourselves */
1362 nvme_rdma_stop_queue(queue);
1363 nvme_rdma_destroy_queue_ib(queue);
Christoph Hellwig71102302016-07-06 21:55:52 +09001364
1365 /* Return non-zero so the cm_id will destroy implicitly */
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001366 ret = 1;
Christoph Hellwig71102302016-07-06 21:55:52 +09001367 }
1368
Steve Wisecdbecc82016-09-01 09:12:25 -07001369 /*
1370 * Queue controller deletion. Keep a reference until all
1371 * work is flushed since delete_work will free the ctrl mem
1372 */
1373 kref_get(&ctrl->ctrl.kref);
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001374 queue_work(nvme_rdma_wq, &ctrl->delete_work);
1375 flush_work(&ctrl->delete_work);
Steve Wisecdbecc82016-09-01 09:12:25 -07001376 nvme_put_ctrl(&ctrl->ctrl);
1377
Sagi Grimberg57de5a02016-07-14 17:39:47 +03001378 return ret;
Christoph Hellwig71102302016-07-06 21:55:52 +09001379}
1380
1381static int nvme_rdma_cm_handler(struct rdma_cm_id *cm_id,
1382 struct rdma_cm_event *ev)
1383{
1384 struct nvme_rdma_queue *queue = cm_id->context;
1385 int cm_error = 0;
1386
1387 dev_dbg(queue->ctrl->ctrl.device, "%s (%d): status %d id %p\n",
1388 rdma_event_msg(ev->event), ev->event,
1389 ev->status, cm_id);
1390
1391 switch (ev->event) {
1392 case RDMA_CM_EVENT_ADDR_RESOLVED:
1393 cm_error = nvme_rdma_addr_resolved(queue);
1394 break;
1395 case RDMA_CM_EVENT_ROUTE_RESOLVED:
1396 cm_error = nvme_rdma_route_resolved(queue);
1397 break;
1398 case RDMA_CM_EVENT_ESTABLISHED:
1399 queue->cm_error = nvme_rdma_conn_established(queue);
1400 /* complete cm_done regardless of success/failure */
1401 complete(&queue->cm_done);
1402 return 0;
1403 case RDMA_CM_EVENT_REJECTED:
1404 cm_error = nvme_rdma_conn_rejected(queue, ev);
1405 break;
1406 case RDMA_CM_EVENT_ADDR_ERROR:
1407 case RDMA_CM_EVENT_ROUTE_ERROR:
1408 case RDMA_CM_EVENT_CONNECT_ERROR:
1409 case RDMA_CM_EVENT_UNREACHABLE:
1410 dev_dbg(queue->ctrl->ctrl.device,
1411 "CM error event %d\n", ev->event);
1412 cm_error = -ECONNRESET;
1413 break;
1414 case RDMA_CM_EVENT_DISCONNECTED:
1415 case RDMA_CM_EVENT_ADDR_CHANGE:
1416 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
1417 dev_dbg(queue->ctrl->ctrl.device,
1418 "disconnect received - connection closed\n");
1419 nvme_rdma_error_recovery(queue->ctrl);
1420 break;
1421 case RDMA_CM_EVENT_DEVICE_REMOVAL:
1422 /* return 1 means impliciy CM ID destroy */
1423 return nvme_rdma_device_unplug(queue);
1424 default:
1425 dev_err(queue->ctrl->ctrl.device,
1426 "Unexpected RDMA CM event (%d)\n", ev->event);
1427 nvme_rdma_error_recovery(queue->ctrl);
1428 break;
1429 }
1430
1431 if (cm_error) {
1432 queue->cm_error = cm_error;
1433 complete(&queue->cm_done);
1434 }
1435
1436 return 0;
1437}
1438
1439static enum blk_eh_timer_return
1440nvme_rdma_timeout(struct request *rq, bool reserved)
1441{
1442 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1443
1444 /* queue error recovery */
1445 nvme_rdma_error_recovery(req->queue->ctrl);
1446
1447 /* fail with DNR on cmd timeout */
1448 rq->errors = NVME_SC_ABORT_REQ | NVME_SC_DNR;
1449
1450 return BLK_EH_HANDLED;
1451}
1452
1453static int nvme_rdma_queue_rq(struct blk_mq_hw_ctx *hctx,
1454 const struct blk_mq_queue_data *bd)
1455{
1456 struct nvme_ns *ns = hctx->queue->queuedata;
1457 struct nvme_rdma_queue *queue = hctx->driver_data;
1458 struct request *rq = bd->rq;
1459 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1460 struct nvme_rdma_qe *sqe = &req->sqe;
1461 struct nvme_command *c = sqe->data;
1462 bool flush = false;
1463 struct ib_device *dev;
1464 unsigned int map_len;
1465 int ret;
1466
1467 WARN_ON_ONCE(rq->tag < 0);
1468
1469 dev = queue->device->dev;
1470 ib_dma_sync_single_for_cpu(dev, sqe->dma,
1471 sizeof(struct nvme_command), DMA_TO_DEVICE);
1472
1473 ret = nvme_setup_cmd(ns, rq, c);
1474 if (ret)
1475 return ret;
1476
1477 c->common.command_id = rq->tag;
1478 blk_mq_start_request(rq);
1479
1480 map_len = nvme_map_len(rq);
1481 ret = nvme_rdma_map_data(queue, rq, map_len, c);
1482 if (ret < 0) {
1483 dev_err(queue->ctrl->ctrl.device,
1484 "Failed to map data (%d)\n", ret);
1485 nvme_cleanup_cmd(rq);
1486 goto err;
1487 }
1488
1489 ib_dma_sync_single_for_device(dev, sqe->dma,
1490 sizeof(struct nvme_command), DMA_TO_DEVICE);
1491
1492 if (rq->cmd_type == REQ_TYPE_FS && req_op(rq) == REQ_OP_FLUSH)
1493 flush = true;
1494 ret = nvme_rdma_post_send(queue, sqe, req->sge, req->num_sge,
Sagi Grimbergf5b7b552016-08-24 12:25:56 +03001495 req->mr->need_inval ? &req->reg_wr.wr : NULL, flush);
Christoph Hellwig71102302016-07-06 21:55:52 +09001496 if (ret) {
1497 nvme_rdma_unmap_data(queue, rq);
1498 goto err;
1499 }
1500
1501 return BLK_MQ_RQ_QUEUE_OK;
1502err:
1503 return (ret == -ENOMEM || ret == -EAGAIN) ?
1504 BLK_MQ_RQ_QUEUE_BUSY : BLK_MQ_RQ_QUEUE_ERROR;
1505}
1506
1507static int nvme_rdma_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
1508{
1509 struct nvme_rdma_queue *queue = hctx->driver_data;
1510 struct ib_cq *cq = queue->ib_cq;
1511 struct ib_wc wc;
1512 int found = 0;
1513
1514 ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
1515 while (ib_poll_cq(cq, 1, &wc) > 0) {
1516 struct ib_cqe *cqe = wc.wr_cqe;
1517
1518 if (cqe) {
1519 if (cqe->done == nvme_rdma_recv_done)
1520 found |= __nvme_rdma_recv_done(cq, &wc, tag);
1521 else
1522 cqe->done(cq, &wc);
1523 }
1524 }
1525
1526 return found;
1527}
1528
1529static void nvme_rdma_complete_rq(struct request *rq)
1530{
1531 struct nvme_rdma_request *req = blk_mq_rq_to_pdu(rq);
1532 struct nvme_rdma_queue *queue = req->queue;
1533 int error = 0;
1534
1535 nvme_rdma_unmap_data(queue, rq);
1536
1537 if (unlikely(rq->errors)) {
1538 if (nvme_req_needs_retry(rq, rq->errors)) {
1539 nvme_requeue_req(rq);
1540 return;
1541 }
1542
1543 if (rq->cmd_type == REQ_TYPE_DRV_PRIV)
1544 error = rq->errors;
1545 else
1546 error = nvme_error_status(rq->errors);
1547 }
1548
1549 blk_mq_end_request(rq, error);
1550}
1551
1552static struct blk_mq_ops nvme_rdma_mq_ops = {
1553 .queue_rq = nvme_rdma_queue_rq,
1554 .complete = nvme_rdma_complete_rq,
1555 .map_queue = blk_mq_map_queue,
1556 .init_request = nvme_rdma_init_request,
1557 .exit_request = nvme_rdma_exit_request,
1558 .reinit_request = nvme_rdma_reinit_request,
1559 .init_hctx = nvme_rdma_init_hctx,
1560 .poll = nvme_rdma_poll,
1561 .timeout = nvme_rdma_timeout,
1562};
1563
1564static struct blk_mq_ops nvme_rdma_admin_mq_ops = {
1565 .queue_rq = nvme_rdma_queue_rq,
1566 .complete = nvme_rdma_complete_rq,
1567 .map_queue = blk_mq_map_queue,
1568 .init_request = nvme_rdma_init_admin_request,
1569 .exit_request = nvme_rdma_exit_admin_request,
1570 .reinit_request = nvme_rdma_reinit_request,
1571 .init_hctx = nvme_rdma_init_admin_hctx,
1572 .timeout = nvme_rdma_timeout,
1573};
1574
1575static int nvme_rdma_configure_admin_queue(struct nvme_rdma_ctrl *ctrl)
1576{
1577 int error;
1578
1579 error = nvme_rdma_init_queue(ctrl, 0, NVMF_AQ_DEPTH);
1580 if (error)
1581 return error;
1582
1583 ctrl->device = ctrl->queues[0].device;
1584
1585 /*
1586 * We need a reference on the device as long as the tag_set is alive,
1587 * as the MRs in the request structures need a valid ib_device.
1588 */
1589 error = -EINVAL;
1590 if (!nvme_rdma_dev_get(ctrl->device))
1591 goto out_free_queue;
1592
1593 ctrl->max_fr_pages = min_t(u32, NVME_RDMA_MAX_SEGMENTS,
1594 ctrl->device->dev->attrs.max_fast_reg_page_list_len);
1595
1596 memset(&ctrl->admin_tag_set, 0, sizeof(ctrl->admin_tag_set));
1597 ctrl->admin_tag_set.ops = &nvme_rdma_admin_mq_ops;
1598 ctrl->admin_tag_set.queue_depth = NVME_RDMA_AQ_BLKMQ_DEPTH;
1599 ctrl->admin_tag_set.reserved_tags = 2; /* connect + keep-alive */
1600 ctrl->admin_tag_set.numa_node = NUMA_NO_NODE;
1601 ctrl->admin_tag_set.cmd_size = sizeof(struct nvme_rdma_request) +
1602 SG_CHUNK_SIZE * sizeof(struct scatterlist);
1603 ctrl->admin_tag_set.driver_data = ctrl;
1604 ctrl->admin_tag_set.nr_hw_queues = 1;
1605 ctrl->admin_tag_set.timeout = ADMIN_TIMEOUT;
1606
1607 error = blk_mq_alloc_tag_set(&ctrl->admin_tag_set);
1608 if (error)
1609 goto out_put_dev;
1610
1611 ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
1612 if (IS_ERR(ctrl->ctrl.admin_q)) {
1613 error = PTR_ERR(ctrl->ctrl.admin_q);
1614 goto out_free_tagset;
1615 }
1616
1617 error = nvmf_connect_admin_queue(&ctrl->ctrl);
1618 if (error)
1619 goto out_cleanup_queue;
1620
1621 error = nvmf_reg_read64(&ctrl->ctrl, NVME_REG_CAP, &ctrl->cap);
1622 if (error) {
1623 dev_err(ctrl->ctrl.device,
1624 "prop_get NVME_REG_CAP failed\n");
1625 goto out_cleanup_queue;
1626 }
1627
1628 ctrl->ctrl.sqsize =
1629 min_t(int, NVME_CAP_MQES(ctrl->cap) + 1, ctrl->ctrl.sqsize);
1630
1631 error = nvme_enable_ctrl(&ctrl->ctrl, ctrl->cap);
1632 if (error)
1633 goto out_cleanup_queue;
1634
1635 ctrl->ctrl.max_hw_sectors =
1636 (ctrl->max_fr_pages - 1) << (PAGE_SHIFT - 9);
1637
1638 error = nvme_init_identify(&ctrl->ctrl);
1639 if (error)
1640 goto out_cleanup_queue;
1641
1642 error = nvme_rdma_alloc_qe(ctrl->queues[0].device->dev,
1643 &ctrl->async_event_sqe, sizeof(struct nvme_command),
1644 DMA_TO_DEVICE);
1645 if (error)
1646 goto out_cleanup_queue;
1647
1648 nvme_start_keep_alive(&ctrl->ctrl);
1649
1650 return 0;
1651
1652out_cleanup_queue:
1653 blk_cleanup_queue(ctrl->ctrl.admin_q);
1654out_free_tagset:
1655 /* disconnect and drain the queue before freeing the tagset */
1656 nvme_rdma_stop_queue(&ctrl->queues[0]);
1657 blk_mq_free_tag_set(&ctrl->admin_tag_set);
1658out_put_dev:
1659 nvme_rdma_dev_put(ctrl->device);
1660out_free_queue:
1661 nvme_rdma_free_queue(&ctrl->queues[0]);
1662 return error;
1663}
1664
1665static void nvme_rdma_shutdown_ctrl(struct nvme_rdma_ctrl *ctrl)
1666{
1667 nvme_stop_keep_alive(&ctrl->ctrl);
1668 cancel_work_sync(&ctrl->err_work);
1669 cancel_delayed_work_sync(&ctrl->reconnect_work);
1670
1671 if (ctrl->queue_count > 1) {
1672 nvme_stop_queues(&ctrl->ctrl);
1673 blk_mq_tagset_busy_iter(&ctrl->tag_set,
1674 nvme_cancel_request, &ctrl->ctrl);
1675 nvme_rdma_free_io_queues(ctrl);
1676 }
1677
Sagi Grimberg45862eb2016-07-24 09:26:16 +03001678 if (test_bit(NVME_RDMA_Q_CONNECTED, &ctrl->queues[0].flags))
Christoph Hellwig71102302016-07-06 21:55:52 +09001679 nvme_shutdown_ctrl(&ctrl->ctrl);
1680
1681 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
1682 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
1683 nvme_cancel_request, &ctrl->ctrl);
1684 nvme_rdma_destroy_admin_queue(ctrl);
1685}
1686
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001687static void __nvme_rdma_remove_ctrl(struct nvme_rdma_ctrl *ctrl, bool shutdown)
1688{
1689 nvme_uninit_ctrl(&ctrl->ctrl);
1690 if (shutdown)
1691 nvme_rdma_shutdown_ctrl(ctrl);
Sagi Grimberga34ca172016-07-24 09:22:19 +03001692
1693 if (ctrl->ctrl.tagset) {
1694 blk_cleanup_queue(ctrl->ctrl.connect_q);
1695 blk_mq_free_tag_set(&ctrl->tag_set);
1696 nvme_rdma_dev_put(ctrl->device);
1697 }
1698
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001699 nvme_put_ctrl(&ctrl->ctrl);
1700}
1701
Christoph Hellwig71102302016-07-06 21:55:52 +09001702static void nvme_rdma_del_ctrl_work(struct work_struct *work)
1703{
1704 struct nvme_rdma_ctrl *ctrl = container_of(work,
1705 struct nvme_rdma_ctrl, delete_work);
1706
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001707 __nvme_rdma_remove_ctrl(ctrl, true);
Christoph Hellwig71102302016-07-06 21:55:52 +09001708}
1709
1710static int __nvme_rdma_del_ctrl(struct nvme_rdma_ctrl *ctrl)
1711{
1712 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING))
1713 return -EBUSY;
1714
1715 if (!queue_work(nvme_rdma_wq, &ctrl->delete_work))
1716 return -EBUSY;
1717
1718 return 0;
1719}
1720
1721static int nvme_rdma_del_ctrl(struct nvme_ctrl *nctrl)
1722{
1723 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
Steve Wisecdbecc82016-09-01 09:12:25 -07001724 int ret = 0;
Christoph Hellwig71102302016-07-06 21:55:52 +09001725
Steve Wisecdbecc82016-09-01 09:12:25 -07001726 /*
1727 * Keep a reference until all work is flushed since
1728 * __nvme_rdma_del_ctrl can free the ctrl mem
1729 */
1730 if (!kref_get_unless_zero(&ctrl->ctrl.kref))
1731 return -EBUSY;
Christoph Hellwig71102302016-07-06 21:55:52 +09001732 ret = __nvme_rdma_del_ctrl(ctrl);
Steve Wisecdbecc82016-09-01 09:12:25 -07001733 if (!ret)
1734 flush_work(&ctrl->delete_work);
1735 nvme_put_ctrl(&ctrl->ctrl);
1736 return ret;
Christoph Hellwig71102302016-07-06 21:55:52 +09001737}
1738
1739static void nvme_rdma_remove_ctrl_work(struct work_struct *work)
1740{
1741 struct nvme_rdma_ctrl *ctrl = container_of(work,
1742 struct nvme_rdma_ctrl, delete_work);
1743
Sagi Grimberg2461a8d2016-07-24 09:29:51 +03001744 __nvme_rdma_remove_ctrl(ctrl, false);
Christoph Hellwig71102302016-07-06 21:55:52 +09001745}
1746
1747static void nvme_rdma_reset_ctrl_work(struct work_struct *work)
1748{
1749 struct nvme_rdma_ctrl *ctrl = container_of(work,
1750 struct nvme_rdma_ctrl, reset_work);
1751 int ret;
1752 bool changed;
1753
1754 nvme_rdma_shutdown_ctrl(ctrl);
1755
1756 ret = nvme_rdma_configure_admin_queue(ctrl);
1757 if (ret) {
1758 /* ctrl is already shutdown, just remove the ctrl */
1759 INIT_WORK(&ctrl->delete_work, nvme_rdma_remove_ctrl_work);
1760 goto del_dead_ctrl;
1761 }
1762
1763 if (ctrl->queue_count > 1) {
1764 ret = blk_mq_reinit_tagset(&ctrl->tag_set);
1765 if (ret)
1766 goto del_dead_ctrl;
1767
1768 ret = nvme_rdma_init_io_queues(ctrl);
1769 if (ret)
1770 goto del_dead_ctrl;
1771
1772 ret = nvme_rdma_connect_io_queues(ctrl);
1773 if (ret)
1774 goto del_dead_ctrl;
1775 }
1776
1777 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
1778 WARN_ON_ONCE(!changed);
1779
1780 if (ctrl->queue_count > 1) {
1781 nvme_start_queues(&ctrl->ctrl);
1782 nvme_queue_scan(&ctrl->ctrl);
Sagi Grimberg3ef1b4b2016-08-04 13:46:19 +03001783 nvme_queue_async_events(&ctrl->ctrl);
Christoph Hellwig71102302016-07-06 21:55:52 +09001784 }
1785
1786 return;
1787
1788del_dead_ctrl:
1789 /* Deleting this dead controller... */
1790 dev_warn(ctrl->ctrl.device, "Removing after reset failure\n");
1791 WARN_ON(!queue_work(nvme_rdma_wq, &ctrl->delete_work));
1792}
1793
1794static int nvme_rdma_reset_ctrl(struct nvme_ctrl *nctrl)
1795{
1796 struct nvme_rdma_ctrl *ctrl = to_rdma_ctrl(nctrl);
1797
1798 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING))
1799 return -EBUSY;
1800
1801 if (!queue_work(nvme_rdma_wq, &ctrl->reset_work))
1802 return -EBUSY;
1803
1804 flush_work(&ctrl->reset_work);
1805
1806 return 0;
1807}
1808
1809static const struct nvme_ctrl_ops nvme_rdma_ctrl_ops = {
1810 .name = "rdma",
1811 .module = THIS_MODULE,
1812 .is_fabrics = true,
1813 .reg_read32 = nvmf_reg_read32,
1814 .reg_read64 = nvmf_reg_read64,
1815 .reg_write32 = nvmf_reg_write32,
1816 .reset_ctrl = nvme_rdma_reset_ctrl,
1817 .free_ctrl = nvme_rdma_free_ctrl,
1818 .submit_async_event = nvme_rdma_submit_async_event,
1819 .delete_ctrl = nvme_rdma_del_ctrl,
1820 .get_subsysnqn = nvmf_get_subsysnqn,
1821 .get_address = nvmf_get_address,
1822};
1823
1824static int nvme_rdma_create_io_queues(struct nvme_rdma_ctrl *ctrl)
1825{
1826 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
1827 int ret;
1828
1829 ret = nvme_set_queue_count(&ctrl->ctrl, &opts->nr_io_queues);
1830 if (ret)
1831 return ret;
1832
1833 ctrl->queue_count = opts->nr_io_queues + 1;
1834 if (ctrl->queue_count < 2)
1835 return 0;
1836
1837 dev_info(ctrl->ctrl.device,
1838 "creating %d I/O queues.\n", opts->nr_io_queues);
1839
1840 ret = nvme_rdma_init_io_queues(ctrl);
1841 if (ret)
1842 return ret;
1843
1844 /*
1845 * We need a reference on the device as long as the tag_set is alive,
1846 * as the MRs in the request structures need a valid ib_device.
1847 */
1848 ret = -EINVAL;
1849 if (!nvme_rdma_dev_get(ctrl->device))
1850 goto out_free_io_queues;
1851
1852 memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
1853 ctrl->tag_set.ops = &nvme_rdma_mq_ops;
Jay Freyenseec5af8652016-08-17 15:00:27 -07001854 ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
Christoph Hellwig71102302016-07-06 21:55:52 +09001855 ctrl->tag_set.reserved_tags = 1; /* fabric connect */
1856 ctrl->tag_set.numa_node = NUMA_NO_NODE;
1857 ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
1858 ctrl->tag_set.cmd_size = sizeof(struct nvme_rdma_request) +
1859 SG_CHUNK_SIZE * sizeof(struct scatterlist);
1860 ctrl->tag_set.driver_data = ctrl;
1861 ctrl->tag_set.nr_hw_queues = ctrl->queue_count - 1;
1862 ctrl->tag_set.timeout = NVME_IO_TIMEOUT;
1863
1864 ret = blk_mq_alloc_tag_set(&ctrl->tag_set);
1865 if (ret)
1866 goto out_put_dev;
1867 ctrl->ctrl.tagset = &ctrl->tag_set;
1868
1869 ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
1870 if (IS_ERR(ctrl->ctrl.connect_q)) {
1871 ret = PTR_ERR(ctrl->ctrl.connect_q);
1872 goto out_free_tag_set;
1873 }
1874
1875 ret = nvme_rdma_connect_io_queues(ctrl);
1876 if (ret)
1877 goto out_cleanup_connect_q;
1878
1879 return 0;
1880
1881out_cleanup_connect_q:
1882 blk_cleanup_queue(ctrl->ctrl.connect_q);
1883out_free_tag_set:
1884 blk_mq_free_tag_set(&ctrl->tag_set);
1885out_put_dev:
1886 nvme_rdma_dev_put(ctrl->device);
1887out_free_io_queues:
1888 nvme_rdma_free_io_queues(ctrl);
1889 return ret;
1890}
1891
1892static int nvme_rdma_parse_ipaddr(struct sockaddr_in *in_addr, char *p)
1893{
1894 u8 *addr = (u8 *)&in_addr->sin_addr.s_addr;
1895 size_t buflen = strlen(p);
1896
1897 /* XXX: handle IPv6 addresses */
1898
1899 if (buflen > INET_ADDRSTRLEN)
1900 return -EINVAL;
1901 if (in4_pton(p, buflen, addr, '\0', NULL) == 0)
1902 return -EINVAL;
1903 in_addr->sin_family = AF_INET;
1904 return 0;
1905}
1906
1907static struct nvme_ctrl *nvme_rdma_create_ctrl(struct device *dev,
1908 struct nvmf_ctrl_options *opts)
1909{
1910 struct nvme_rdma_ctrl *ctrl;
1911 int ret;
1912 bool changed;
1913
1914 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1915 if (!ctrl)
1916 return ERR_PTR(-ENOMEM);
1917 ctrl->ctrl.opts = opts;
1918 INIT_LIST_HEAD(&ctrl->list);
1919
1920 ret = nvme_rdma_parse_ipaddr(&ctrl->addr_in, opts->traddr);
1921 if (ret) {
1922 pr_err("malformed IP address passed: %s\n", opts->traddr);
1923 goto out_free_ctrl;
1924 }
1925
1926 if (opts->mask & NVMF_OPT_TRSVCID) {
1927 u16 port;
1928
1929 ret = kstrtou16(opts->trsvcid, 0, &port);
1930 if (ret)
1931 goto out_free_ctrl;
1932
1933 ctrl->addr_in.sin_port = cpu_to_be16(port);
1934 } else {
1935 ctrl->addr_in.sin_port = cpu_to_be16(NVME_RDMA_IP_PORT);
1936 }
1937
1938 ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_rdma_ctrl_ops,
1939 0 /* no quirks, we're perfect! */);
1940 if (ret)
1941 goto out_free_ctrl;
1942
1943 ctrl->reconnect_delay = opts->reconnect_delay;
1944 INIT_DELAYED_WORK(&ctrl->reconnect_work,
1945 nvme_rdma_reconnect_ctrl_work);
1946 INIT_WORK(&ctrl->err_work, nvme_rdma_error_recovery_work);
1947 INIT_WORK(&ctrl->delete_work, nvme_rdma_del_ctrl_work);
1948 INIT_WORK(&ctrl->reset_work, nvme_rdma_reset_ctrl_work);
1949 spin_lock_init(&ctrl->lock);
1950
1951 ctrl->queue_count = opts->nr_io_queues + 1; /* +1 for admin queue */
Jay Freyenseec5af8652016-08-17 15:00:27 -07001952 ctrl->ctrl.sqsize = opts->queue_size - 1;
Christoph Hellwig71102302016-07-06 21:55:52 +09001953 ctrl->ctrl.kato = opts->kato;
1954
1955 ret = -ENOMEM;
1956 ctrl->queues = kcalloc(ctrl->queue_count, sizeof(*ctrl->queues),
1957 GFP_KERNEL);
1958 if (!ctrl->queues)
1959 goto out_uninit_ctrl;
1960
1961 ret = nvme_rdma_configure_admin_queue(ctrl);
1962 if (ret)
1963 goto out_kfree_queues;
1964
1965 /* sanity check icdoff */
1966 if (ctrl->ctrl.icdoff) {
1967 dev_err(ctrl->ctrl.device, "icdoff is not supported!\n");
1968 goto out_remove_admin_queue;
1969 }
1970
1971 /* sanity check keyed sgls */
1972 if (!(ctrl->ctrl.sgls & (1 << 20))) {
1973 dev_err(ctrl->ctrl.device, "Mandatory keyed sgls are not support\n");
1974 goto out_remove_admin_queue;
1975 }
1976
1977 if (opts->queue_size > ctrl->ctrl.maxcmd) {
1978 /* warn if maxcmd is lower than queue_size */
1979 dev_warn(ctrl->ctrl.device,
1980 "queue_size %zu > ctrl maxcmd %u, clamping down\n",
1981 opts->queue_size, ctrl->ctrl.maxcmd);
1982 opts->queue_size = ctrl->ctrl.maxcmd;
1983 }
1984
1985 if (opts->nr_io_queues) {
1986 ret = nvme_rdma_create_io_queues(ctrl);
1987 if (ret)
1988 goto out_remove_admin_queue;
1989 }
1990
1991 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
1992 WARN_ON_ONCE(!changed);
1993
1994 dev_info(ctrl->ctrl.device, "new ctrl: NQN \"%s\", addr %pISp\n",
1995 ctrl->ctrl.opts->subsysnqn, &ctrl->addr);
1996
1997 kref_get(&ctrl->ctrl.kref);
1998
1999 mutex_lock(&nvme_rdma_ctrl_mutex);
2000 list_add_tail(&ctrl->list, &nvme_rdma_ctrl_list);
2001 mutex_unlock(&nvme_rdma_ctrl_mutex);
2002
2003 if (opts->nr_io_queues) {
2004 nvme_queue_scan(&ctrl->ctrl);
2005 nvme_queue_async_events(&ctrl->ctrl);
2006 }
2007
2008 return &ctrl->ctrl;
2009
2010out_remove_admin_queue:
2011 nvme_stop_keep_alive(&ctrl->ctrl);
2012 nvme_rdma_destroy_admin_queue(ctrl);
2013out_kfree_queues:
2014 kfree(ctrl->queues);
2015out_uninit_ctrl:
2016 nvme_uninit_ctrl(&ctrl->ctrl);
2017 nvme_put_ctrl(&ctrl->ctrl);
2018 if (ret > 0)
2019 ret = -EIO;
2020 return ERR_PTR(ret);
2021out_free_ctrl:
2022 kfree(ctrl);
2023 return ERR_PTR(ret);
2024}
2025
2026static struct nvmf_transport_ops nvme_rdma_transport = {
2027 .name = "rdma",
2028 .required_opts = NVMF_OPT_TRADDR,
Sagi Grimberg2ac17c22016-06-22 15:06:00 +03002029 .allowed_opts = NVMF_OPT_TRSVCID | NVMF_OPT_RECONNECT_DELAY,
Christoph Hellwig71102302016-07-06 21:55:52 +09002030 .create_ctrl = nvme_rdma_create_ctrl,
2031};
2032
2033static int __init nvme_rdma_init_module(void)
2034{
2035 nvme_rdma_wq = create_workqueue("nvme_rdma_wq");
2036 if (!nvme_rdma_wq)
2037 return -ENOMEM;
2038
2039 nvmf_register_transport(&nvme_rdma_transport);
2040 return 0;
2041}
2042
2043static void __exit nvme_rdma_cleanup_module(void)
2044{
2045 struct nvme_rdma_ctrl *ctrl;
2046
2047 nvmf_unregister_transport(&nvme_rdma_transport);
2048
2049 mutex_lock(&nvme_rdma_ctrl_mutex);
2050 list_for_each_entry(ctrl, &nvme_rdma_ctrl_list, list)
2051 __nvme_rdma_del_ctrl(ctrl);
2052 mutex_unlock(&nvme_rdma_ctrl_mutex);
2053
2054 destroy_workqueue(nvme_rdma_wq);
2055}
2056
2057module_init(nvme_rdma_init_module);
2058module_exit(nvme_rdma_cleanup_module);
2059
2060MODULE_LICENSE("GPL v2");