blob: 8c85d7c4123e0aee2b173a37d34ea5db7bd4a65d [file] [log] [blame]
James Smarte3994412016-12-02 00:28:42 -08001/*
2 * Copyright (c) 2016 Avago Technologies. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful.
9 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
10 * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
11 * PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO
12 * THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
13 * See the GNU General Public License for more details, a copy of which
14 * can be found in the file COPYING included with this package
15 *
16 */
17#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18#include <linux/module.h>
19#include <linux/parser.h>
20#include <uapi/scsi/fc/fc_fs.h>
21#include <uapi/scsi/fc/fc_els.h>
James Smart61bff8e2017-04-23 08:30:08 -070022#include <linux/delay.h>
James Smarte3994412016-12-02 00:28:42 -080023
24#include "nvme.h"
25#include "fabrics.h"
26#include <linux/nvme-fc-driver.h>
27#include <linux/nvme-fc.h>
28
29
30/* *************************** Data Structures/Defines ****************** */
31
32
33/*
34 * We handle AEN commands ourselves and don't even let the
35 * block layer know about them.
36 */
37#define NVME_FC_NR_AEN_COMMANDS 1
38#define NVME_FC_AQ_BLKMQ_DEPTH \
39 (NVMF_AQ_DEPTH - NVME_FC_NR_AEN_COMMANDS)
40#define AEN_CMDID_BASE (NVME_FC_AQ_BLKMQ_DEPTH + 1)
41
42enum nvme_fc_queue_flags {
43 NVME_FC_Q_CONNECTED = (1 << 0),
44};
45
46#define NVMEFC_QUEUE_DELAY 3 /* ms units */
47
48struct nvme_fc_queue {
49 struct nvme_fc_ctrl *ctrl;
50 struct device *dev;
51 struct blk_mq_hw_ctx *hctx;
52 void *lldd_handle;
53 int queue_size;
54 size_t cmnd_capsule_len;
55 u32 qnum;
56 u32 rqcnt;
57 u32 seqno;
58
59 u64 connection_id;
60 atomic_t csn;
61
62 unsigned long flags;
63} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
64
James Smart8d64daf2017-04-11 11:35:09 -070065enum nvme_fcop_flags {
66 FCOP_FLAGS_TERMIO = (1 << 0),
67 FCOP_FLAGS_RELEASED = (1 << 1),
68 FCOP_FLAGS_COMPLETE = (1 << 2),
James Smart78a7ac22017-04-23 08:30:07 -070069 FCOP_FLAGS_AEN = (1 << 3),
James Smart8d64daf2017-04-11 11:35:09 -070070};
71
James Smarte3994412016-12-02 00:28:42 -080072struct nvmefc_ls_req_op {
73 struct nvmefc_ls_req ls_req;
74
James Smartc913a8b2017-04-11 11:35:08 -070075 struct nvme_fc_rport *rport;
James Smarte3994412016-12-02 00:28:42 -080076 struct nvme_fc_queue *queue;
77 struct request *rq;
James Smart8d64daf2017-04-11 11:35:09 -070078 u32 flags;
James Smarte3994412016-12-02 00:28:42 -080079
80 int ls_error;
81 struct completion ls_done;
James Smartc913a8b2017-04-11 11:35:08 -070082 struct list_head lsreq_list; /* rport->ls_req_list */
James Smarte3994412016-12-02 00:28:42 -080083 bool req_queued;
84};
85
86enum nvme_fcpop_state {
87 FCPOP_STATE_UNINIT = 0,
88 FCPOP_STATE_IDLE = 1,
89 FCPOP_STATE_ACTIVE = 2,
90 FCPOP_STATE_ABORTED = 3,
James Smart78a7ac22017-04-23 08:30:07 -070091 FCPOP_STATE_COMPLETE = 4,
James Smarte3994412016-12-02 00:28:42 -080092};
93
94struct nvme_fc_fcp_op {
95 struct nvme_request nreq; /*
96 * nvme/host/core.c
97 * requires this to be
98 * the 1st element in the
99 * private structure
100 * associated with the
101 * request.
102 */
103 struct nvmefc_fcp_req fcp_req;
104
105 struct nvme_fc_ctrl *ctrl;
106 struct nvme_fc_queue *queue;
107 struct request *rq;
108
109 atomic_t state;
James Smart78a7ac22017-04-23 08:30:07 -0700110 u32 flags;
James Smarte3994412016-12-02 00:28:42 -0800111 u32 rqno;
112 u32 nents;
113
114 struct nvme_fc_cmd_iu cmd_iu;
115 struct nvme_fc_ersp_iu rsp_iu;
116};
117
118struct nvme_fc_lport {
119 struct nvme_fc_local_port localport;
120
121 struct ida endp_cnt;
122 struct list_head port_list; /* nvme_fc_port_list */
123 struct list_head endp_list;
124 struct device *dev; /* physical device for dma */
125 struct nvme_fc_port_template *ops;
126 struct kref ref;
127} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
128
129struct nvme_fc_rport {
130 struct nvme_fc_remote_port remoteport;
131
132 struct list_head endp_list; /* for lport->endp_list */
133 struct list_head ctrl_list;
James Smartc913a8b2017-04-11 11:35:08 -0700134 struct list_head ls_req_list;
135 struct device *dev; /* physical device for dma */
136 struct nvme_fc_lport *lport;
James Smarte3994412016-12-02 00:28:42 -0800137 spinlock_t lock;
138 struct kref ref;
139} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
140
James Smart61bff8e2017-04-23 08:30:08 -0700141enum nvme_fcctrl_flags {
142 FCCTRL_TERMIO = (1 << 0),
James Smarte3994412016-12-02 00:28:42 -0800143};
144
145struct nvme_fc_ctrl {
146 spinlock_t lock;
147 struct nvme_fc_queue *queues;
James Smarte3994412016-12-02 00:28:42 -0800148 struct device *dev;
149 struct nvme_fc_lport *lport;
150 struct nvme_fc_rport *rport;
James Smart61bff8e2017-04-23 08:30:08 -0700151 u32 queue_count;
James Smarte3994412016-12-02 00:28:42 -0800152 u32 cnum;
153
154 u64 association_id;
155
156 u64 cap;
157
158 struct list_head ctrl_list; /* rport->ctrl_list */
James Smarte3994412016-12-02 00:28:42 -0800159
160 struct blk_mq_tag_set admin_tag_set;
161 struct blk_mq_tag_set tag_set;
162
163 struct work_struct delete_work;
James Smart61bff8e2017-04-23 08:30:08 -0700164 struct work_struct reset_work;
165 struct delayed_work connect_work;
James Smart61bff8e2017-04-23 08:30:08 -0700166
James Smarte3994412016-12-02 00:28:42 -0800167 struct kref ref;
James Smart61bff8e2017-04-23 08:30:08 -0700168 u32 flags;
169 u32 iocnt;
James Smarte3994412016-12-02 00:28:42 -0800170
171 struct nvme_fc_fcp_op aen_ops[NVME_FC_NR_AEN_COMMANDS];
172
173 struct nvme_ctrl ctrl;
174};
175
176static inline struct nvme_fc_ctrl *
177to_fc_ctrl(struct nvme_ctrl *ctrl)
178{
179 return container_of(ctrl, struct nvme_fc_ctrl, ctrl);
180}
181
182static inline struct nvme_fc_lport *
183localport_to_lport(struct nvme_fc_local_port *portptr)
184{
185 return container_of(portptr, struct nvme_fc_lport, localport);
186}
187
188static inline struct nvme_fc_rport *
189remoteport_to_rport(struct nvme_fc_remote_port *portptr)
190{
191 return container_of(portptr, struct nvme_fc_rport, remoteport);
192}
193
194static inline struct nvmefc_ls_req_op *
195ls_req_to_lsop(struct nvmefc_ls_req *lsreq)
196{
197 return container_of(lsreq, struct nvmefc_ls_req_op, ls_req);
198}
199
200static inline struct nvme_fc_fcp_op *
201fcp_req_to_fcp_op(struct nvmefc_fcp_req *fcpreq)
202{
203 return container_of(fcpreq, struct nvme_fc_fcp_op, fcp_req);
204}
205
206
207
208/* *************************** Globals **************************** */
209
210
211static DEFINE_SPINLOCK(nvme_fc_lock);
212
213static LIST_HEAD(nvme_fc_lport_list);
214static DEFINE_IDA(nvme_fc_local_port_cnt);
215static DEFINE_IDA(nvme_fc_ctrl_cnt);
216
James Smarte3994412016-12-02 00:28:42 -0800217
218
219
220/* *********************** FC-NVME Port Management ************************ */
221
222static int __nvme_fc_del_ctrl(struct nvme_fc_ctrl *);
223static void __nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *,
224 struct nvme_fc_queue *, unsigned int);
225
226
227/**
228 * nvme_fc_register_localport - transport entry point called by an
229 * LLDD to register the existence of a NVME
230 * host FC port.
231 * @pinfo: pointer to information about the port to be registered
232 * @template: LLDD entrypoints and operational parameters for the port
233 * @dev: physical hardware device node port corresponds to. Will be
234 * used for DMA mappings
235 * @lport_p: pointer to a local port pointer. Upon success, the routine
236 * will allocate a nvme_fc_local_port structure and place its
237 * address in the local port pointer. Upon failure, local port
238 * pointer will be set to 0.
239 *
240 * Returns:
241 * a completion status. Must be 0 upon success; a negative errno
242 * (ex: -ENXIO) upon failure.
243 */
244int
245nvme_fc_register_localport(struct nvme_fc_port_info *pinfo,
246 struct nvme_fc_port_template *template,
247 struct device *dev,
248 struct nvme_fc_local_port **portptr)
249{
250 struct nvme_fc_lport *newrec;
251 unsigned long flags;
252 int ret, idx;
253
254 if (!template->localport_delete || !template->remoteport_delete ||
255 !template->ls_req || !template->fcp_io ||
256 !template->ls_abort || !template->fcp_abort ||
257 !template->max_hw_queues || !template->max_sgl_segments ||
258 !template->max_dif_sgl_segments || !template->dma_boundary) {
259 ret = -EINVAL;
260 goto out_reghost_failed;
261 }
262
263 newrec = kmalloc((sizeof(*newrec) + template->local_priv_sz),
264 GFP_KERNEL);
265 if (!newrec) {
266 ret = -ENOMEM;
267 goto out_reghost_failed;
268 }
269
270 idx = ida_simple_get(&nvme_fc_local_port_cnt, 0, 0, GFP_KERNEL);
271 if (idx < 0) {
272 ret = -ENOSPC;
273 goto out_fail_kfree;
274 }
275
276 if (!get_device(dev) && dev) {
277 ret = -ENODEV;
278 goto out_ida_put;
279 }
280
281 INIT_LIST_HEAD(&newrec->port_list);
282 INIT_LIST_HEAD(&newrec->endp_list);
283 kref_init(&newrec->ref);
284 newrec->ops = template;
285 newrec->dev = dev;
286 ida_init(&newrec->endp_cnt);
287 newrec->localport.private = &newrec[1];
288 newrec->localport.node_name = pinfo->node_name;
289 newrec->localport.port_name = pinfo->port_name;
290 newrec->localport.port_role = pinfo->port_role;
291 newrec->localport.port_id = pinfo->port_id;
292 newrec->localport.port_state = FC_OBJSTATE_ONLINE;
293 newrec->localport.port_num = idx;
294
295 spin_lock_irqsave(&nvme_fc_lock, flags);
296 list_add_tail(&newrec->port_list, &nvme_fc_lport_list);
297 spin_unlock_irqrestore(&nvme_fc_lock, flags);
298
299 if (dev)
300 dma_set_seg_boundary(dev, template->dma_boundary);
301
302 *portptr = &newrec->localport;
303 return 0;
304
305out_ida_put:
306 ida_simple_remove(&nvme_fc_local_port_cnt, idx);
307out_fail_kfree:
308 kfree(newrec);
309out_reghost_failed:
310 *portptr = NULL;
311
312 return ret;
313}
314EXPORT_SYMBOL_GPL(nvme_fc_register_localport);
315
316static void
317nvme_fc_free_lport(struct kref *ref)
318{
319 struct nvme_fc_lport *lport =
320 container_of(ref, struct nvme_fc_lport, ref);
321 unsigned long flags;
322
323 WARN_ON(lport->localport.port_state != FC_OBJSTATE_DELETED);
324 WARN_ON(!list_empty(&lport->endp_list));
325
326 /* remove from transport list */
327 spin_lock_irqsave(&nvme_fc_lock, flags);
328 list_del(&lport->port_list);
329 spin_unlock_irqrestore(&nvme_fc_lock, flags);
330
331 /* let the LLDD know we've finished tearing it down */
332 lport->ops->localport_delete(&lport->localport);
333
334 ida_simple_remove(&nvme_fc_local_port_cnt, lport->localport.port_num);
335 ida_destroy(&lport->endp_cnt);
336
337 put_device(lport->dev);
338
339 kfree(lport);
340}
341
342static void
343nvme_fc_lport_put(struct nvme_fc_lport *lport)
344{
345 kref_put(&lport->ref, nvme_fc_free_lport);
346}
347
348static int
349nvme_fc_lport_get(struct nvme_fc_lport *lport)
350{
351 return kref_get_unless_zero(&lport->ref);
352}
353
354/**
355 * nvme_fc_unregister_localport - transport entry point called by an
356 * LLDD to deregister/remove a previously
357 * registered a NVME host FC port.
358 * @localport: pointer to the (registered) local port that is to be
359 * deregistered.
360 *
361 * Returns:
362 * a completion status. Must be 0 upon success; a negative errno
363 * (ex: -ENXIO) upon failure.
364 */
365int
366nvme_fc_unregister_localport(struct nvme_fc_local_port *portptr)
367{
368 struct nvme_fc_lport *lport = localport_to_lport(portptr);
369 unsigned long flags;
370
371 if (!portptr)
372 return -EINVAL;
373
374 spin_lock_irqsave(&nvme_fc_lock, flags);
375
376 if (portptr->port_state != FC_OBJSTATE_ONLINE) {
377 spin_unlock_irqrestore(&nvme_fc_lock, flags);
378 return -EINVAL;
379 }
380 portptr->port_state = FC_OBJSTATE_DELETED;
381
382 spin_unlock_irqrestore(&nvme_fc_lock, flags);
383
384 nvme_fc_lport_put(lport);
385
386 return 0;
387}
388EXPORT_SYMBOL_GPL(nvme_fc_unregister_localport);
389
390/**
391 * nvme_fc_register_remoteport - transport entry point called by an
392 * LLDD to register the existence of a NVME
393 * subsystem FC port on its fabric.
394 * @localport: pointer to the (registered) local port that the remote
395 * subsystem port is connected to.
396 * @pinfo: pointer to information about the port to be registered
397 * @rport_p: pointer to a remote port pointer. Upon success, the routine
398 * will allocate a nvme_fc_remote_port structure and place its
399 * address in the remote port pointer. Upon failure, remote port
400 * pointer will be set to 0.
401 *
402 * Returns:
403 * a completion status. Must be 0 upon success; a negative errno
404 * (ex: -ENXIO) upon failure.
405 */
406int
407nvme_fc_register_remoteport(struct nvme_fc_local_port *localport,
408 struct nvme_fc_port_info *pinfo,
409 struct nvme_fc_remote_port **portptr)
410{
411 struct nvme_fc_lport *lport = localport_to_lport(localport);
412 struct nvme_fc_rport *newrec;
413 unsigned long flags;
414 int ret, idx;
415
416 newrec = kmalloc((sizeof(*newrec) + lport->ops->remote_priv_sz),
417 GFP_KERNEL);
418 if (!newrec) {
419 ret = -ENOMEM;
420 goto out_reghost_failed;
421 }
422
423 if (!nvme_fc_lport_get(lport)) {
424 ret = -ESHUTDOWN;
425 goto out_kfree_rport;
426 }
427
428 idx = ida_simple_get(&lport->endp_cnt, 0, 0, GFP_KERNEL);
429 if (idx < 0) {
430 ret = -ENOSPC;
431 goto out_lport_put;
432 }
433
434 INIT_LIST_HEAD(&newrec->endp_list);
435 INIT_LIST_HEAD(&newrec->ctrl_list);
James Smartc913a8b2017-04-11 11:35:08 -0700436 INIT_LIST_HEAD(&newrec->ls_req_list);
James Smarte3994412016-12-02 00:28:42 -0800437 kref_init(&newrec->ref);
438 spin_lock_init(&newrec->lock);
439 newrec->remoteport.localport = &lport->localport;
James Smartc913a8b2017-04-11 11:35:08 -0700440 newrec->dev = lport->dev;
441 newrec->lport = lport;
James Smarte3994412016-12-02 00:28:42 -0800442 newrec->remoteport.private = &newrec[1];
443 newrec->remoteport.port_role = pinfo->port_role;
444 newrec->remoteport.node_name = pinfo->node_name;
445 newrec->remoteport.port_name = pinfo->port_name;
446 newrec->remoteport.port_id = pinfo->port_id;
447 newrec->remoteport.port_state = FC_OBJSTATE_ONLINE;
448 newrec->remoteport.port_num = idx;
449
450 spin_lock_irqsave(&nvme_fc_lock, flags);
451 list_add_tail(&newrec->endp_list, &lport->endp_list);
452 spin_unlock_irqrestore(&nvme_fc_lock, flags);
453
454 *portptr = &newrec->remoteport;
455 return 0;
456
457out_lport_put:
458 nvme_fc_lport_put(lport);
459out_kfree_rport:
460 kfree(newrec);
461out_reghost_failed:
462 *portptr = NULL;
463 return ret;
James Smarte3994412016-12-02 00:28:42 -0800464}
465EXPORT_SYMBOL_GPL(nvme_fc_register_remoteport);
466
467static void
468nvme_fc_free_rport(struct kref *ref)
469{
470 struct nvme_fc_rport *rport =
471 container_of(ref, struct nvme_fc_rport, ref);
472 struct nvme_fc_lport *lport =
473 localport_to_lport(rport->remoteport.localport);
474 unsigned long flags;
475
476 WARN_ON(rport->remoteport.port_state != FC_OBJSTATE_DELETED);
477 WARN_ON(!list_empty(&rport->ctrl_list));
478
479 /* remove from lport list */
480 spin_lock_irqsave(&nvme_fc_lock, flags);
481 list_del(&rport->endp_list);
482 spin_unlock_irqrestore(&nvme_fc_lock, flags);
483
484 /* let the LLDD know we've finished tearing it down */
485 lport->ops->remoteport_delete(&rport->remoteport);
486
487 ida_simple_remove(&lport->endp_cnt, rport->remoteport.port_num);
488
489 kfree(rport);
490
491 nvme_fc_lport_put(lport);
492}
493
494static void
495nvme_fc_rport_put(struct nvme_fc_rport *rport)
496{
497 kref_put(&rport->ref, nvme_fc_free_rport);
498}
499
500static int
501nvme_fc_rport_get(struct nvme_fc_rport *rport)
502{
503 return kref_get_unless_zero(&rport->ref);
504}
505
James Smart8d64daf2017-04-11 11:35:09 -0700506static int
507nvme_fc_abort_lsops(struct nvme_fc_rport *rport)
508{
509 struct nvmefc_ls_req_op *lsop;
510 unsigned long flags;
511
512restart:
513 spin_lock_irqsave(&rport->lock, flags);
514
515 list_for_each_entry(lsop, &rport->ls_req_list, lsreq_list) {
516 if (!(lsop->flags & FCOP_FLAGS_TERMIO)) {
517 lsop->flags |= FCOP_FLAGS_TERMIO;
518 spin_unlock_irqrestore(&rport->lock, flags);
519 rport->lport->ops->ls_abort(&rport->lport->localport,
520 &rport->remoteport,
521 &lsop->ls_req);
522 goto restart;
523 }
524 }
525 spin_unlock_irqrestore(&rport->lock, flags);
526
527 return 0;
528}
529
James Smarte3994412016-12-02 00:28:42 -0800530/**
531 * nvme_fc_unregister_remoteport - transport entry point called by an
532 * LLDD to deregister/remove a previously
533 * registered a NVME subsystem FC port.
534 * @remoteport: pointer to the (registered) remote port that is to be
535 * deregistered.
536 *
537 * Returns:
538 * a completion status. Must be 0 upon success; a negative errno
539 * (ex: -ENXIO) upon failure.
540 */
541int
542nvme_fc_unregister_remoteport(struct nvme_fc_remote_port *portptr)
543{
544 struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
545 struct nvme_fc_ctrl *ctrl;
546 unsigned long flags;
547
548 if (!portptr)
549 return -EINVAL;
550
551 spin_lock_irqsave(&rport->lock, flags);
552
553 if (portptr->port_state != FC_OBJSTATE_ONLINE) {
554 spin_unlock_irqrestore(&rport->lock, flags);
555 return -EINVAL;
556 }
557 portptr->port_state = FC_OBJSTATE_DELETED;
558
559 /* tear down all associations to the remote port */
560 list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list)
561 __nvme_fc_del_ctrl(ctrl);
562
563 spin_unlock_irqrestore(&rport->lock, flags);
564
James Smart8d64daf2017-04-11 11:35:09 -0700565 nvme_fc_abort_lsops(rport);
566
James Smarte3994412016-12-02 00:28:42 -0800567 nvme_fc_rport_put(rport);
568 return 0;
569}
570EXPORT_SYMBOL_GPL(nvme_fc_unregister_remoteport);
571
572
573/* *********************** FC-NVME DMA Handling **************************** */
574
575/*
576 * The fcloop device passes in a NULL device pointer. Real LLD's will
577 * pass in a valid device pointer. If NULL is passed to the dma mapping
578 * routines, depending on the platform, it may or may not succeed, and
579 * may crash.
580 *
581 * As such:
582 * Wrapper all the dma routines and check the dev pointer.
583 *
584 * If simple mappings (return just a dma address, we'll noop them,
585 * returning a dma address of 0.
586 *
587 * On more complex mappings (dma_map_sg), a pseudo routine fills
588 * in the scatter list, setting all dma addresses to 0.
589 */
590
591static inline dma_addr_t
592fc_dma_map_single(struct device *dev, void *ptr, size_t size,
593 enum dma_data_direction dir)
594{
595 return dev ? dma_map_single(dev, ptr, size, dir) : (dma_addr_t)0L;
596}
597
598static inline int
599fc_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
600{
601 return dev ? dma_mapping_error(dev, dma_addr) : 0;
602}
603
604static inline void
605fc_dma_unmap_single(struct device *dev, dma_addr_t addr, size_t size,
606 enum dma_data_direction dir)
607{
608 if (dev)
609 dma_unmap_single(dev, addr, size, dir);
610}
611
612static inline void
613fc_dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size,
614 enum dma_data_direction dir)
615{
616 if (dev)
617 dma_sync_single_for_cpu(dev, addr, size, dir);
618}
619
620static inline void
621fc_dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size,
622 enum dma_data_direction dir)
623{
624 if (dev)
625 dma_sync_single_for_device(dev, addr, size, dir);
626}
627
628/* pseudo dma_map_sg call */
629static int
630fc_map_sg(struct scatterlist *sg, int nents)
631{
632 struct scatterlist *s;
633 int i;
634
635 WARN_ON(nents == 0 || sg[0].length == 0);
636
637 for_each_sg(sg, s, nents, i) {
638 s->dma_address = 0L;
639#ifdef CONFIG_NEED_SG_DMA_LENGTH
640 s->dma_length = s->length;
641#endif
642 }
643 return nents;
644}
645
646static inline int
647fc_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
648 enum dma_data_direction dir)
649{
650 return dev ? dma_map_sg(dev, sg, nents, dir) : fc_map_sg(sg, nents);
651}
652
653static inline void
654fc_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
655 enum dma_data_direction dir)
656{
657 if (dev)
658 dma_unmap_sg(dev, sg, nents, dir);
659}
660
661
662/* *********************** FC-NVME LS Handling **************************** */
663
664static void nvme_fc_ctrl_put(struct nvme_fc_ctrl *);
665static int nvme_fc_ctrl_get(struct nvme_fc_ctrl *);
666
667
668static void
James Smartc913a8b2017-04-11 11:35:08 -0700669__nvme_fc_finish_ls_req(struct nvmefc_ls_req_op *lsop)
James Smarte3994412016-12-02 00:28:42 -0800670{
James Smartc913a8b2017-04-11 11:35:08 -0700671 struct nvme_fc_rport *rport = lsop->rport;
James Smarte3994412016-12-02 00:28:42 -0800672 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
673 unsigned long flags;
674
James Smartc913a8b2017-04-11 11:35:08 -0700675 spin_lock_irqsave(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -0800676
677 if (!lsop->req_queued) {
James Smartc913a8b2017-04-11 11:35:08 -0700678 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -0800679 return;
680 }
681
682 list_del(&lsop->lsreq_list);
683
684 lsop->req_queued = false;
685
James Smartc913a8b2017-04-11 11:35:08 -0700686 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -0800687
James Smartc913a8b2017-04-11 11:35:08 -0700688 fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
James Smarte3994412016-12-02 00:28:42 -0800689 (lsreq->rqstlen + lsreq->rsplen),
690 DMA_BIDIRECTIONAL);
691
James Smartc913a8b2017-04-11 11:35:08 -0700692 nvme_fc_rport_put(rport);
James Smarte3994412016-12-02 00:28:42 -0800693}
694
695static int
James Smartc913a8b2017-04-11 11:35:08 -0700696__nvme_fc_send_ls_req(struct nvme_fc_rport *rport,
James Smarte3994412016-12-02 00:28:42 -0800697 struct nvmefc_ls_req_op *lsop,
698 void (*done)(struct nvmefc_ls_req *req, int status))
699{
700 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
701 unsigned long flags;
James Smartc913a8b2017-04-11 11:35:08 -0700702 int ret = 0;
James Smarte3994412016-12-02 00:28:42 -0800703
James Smartc913a8b2017-04-11 11:35:08 -0700704 if (rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
705 return -ECONNREFUSED;
706
707 if (!nvme_fc_rport_get(rport))
James Smarte3994412016-12-02 00:28:42 -0800708 return -ESHUTDOWN;
709
710 lsreq->done = done;
James Smartc913a8b2017-04-11 11:35:08 -0700711 lsop->rport = rport;
James Smarte3994412016-12-02 00:28:42 -0800712 lsop->req_queued = false;
713 INIT_LIST_HEAD(&lsop->lsreq_list);
714 init_completion(&lsop->ls_done);
715
James Smartc913a8b2017-04-11 11:35:08 -0700716 lsreq->rqstdma = fc_dma_map_single(rport->dev, lsreq->rqstaddr,
James Smarte3994412016-12-02 00:28:42 -0800717 lsreq->rqstlen + lsreq->rsplen,
718 DMA_BIDIRECTIONAL);
James Smartc913a8b2017-04-11 11:35:08 -0700719 if (fc_dma_mapping_error(rport->dev, lsreq->rqstdma)) {
720 ret = -EFAULT;
721 goto out_putrport;
James Smarte3994412016-12-02 00:28:42 -0800722 }
723 lsreq->rspdma = lsreq->rqstdma + lsreq->rqstlen;
724
James Smartc913a8b2017-04-11 11:35:08 -0700725 spin_lock_irqsave(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -0800726
James Smartc913a8b2017-04-11 11:35:08 -0700727 list_add_tail(&lsop->lsreq_list, &rport->ls_req_list);
James Smarte3994412016-12-02 00:28:42 -0800728
729 lsop->req_queued = true;
730
James Smartc913a8b2017-04-11 11:35:08 -0700731 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -0800732
James Smartc913a8b2017-04-11 11:35:08 -0700733 ret = rport->lport->ops->ls_req(&rport->lport->localport,
734 &rport->remoteport, lsreq);
James Smarte3994412016-12-02 00:28:42 -0800735 if (ret)
James Smartc913a8b2017-04-11 11:35:08 -0700736 goto out_unlink;
737
738 return 0;
739
740out_unlink:
741 lsop->ls_error = ret;
742 spin_lock_irqsave(&rport->lock, flags);
743 lsop->req_queued = false;
744 list_del(&lsop->lsreq_list);
745 spin_unlock_irqrestore(&rport->lock, flags);
746 fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
747 (lsreq->rqstlen + lsreq->rsplen),
748 DMA_BIDIRECTIONAL);
749out_putrport:
750 nvme_fc_rport_put(rport);
James Smarte3994412016-12-02 00:28:42 -0800751
752 return ret;
753}
754
755static void
756nvme_fc_send_ls_req_done(struct nvmefc_ls_req *lsreq, int status)
757{
758 struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
759
760 lsop->ls_error = status;
761 complete(&lsop->ls_done);
762}
763
764static int
James Smartc913a8b2017-04-11 11:35:08 -0700765nvme_fc_send_ls_req(struct nvme_fc_rport *rport, struct nvmefc_ls_req_op *lsop)
James Smarte3994412016-12-02 00:28:42 -0800766{
767 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
768 struct fcnvme_ls_rjt *rjt = lsreq->rspaddr;
769 int ret;
770
James Smartc913a8b2017-04-11 11:35:08 -0700771 ret = __nvme_fc_send_ls_req(rport, lsop, nvme_fc_send_ls_req_done);
James Smarte3994412016-12-02 00:28:42 -0800772
James Smartc913a8b2017-04-11 11:35:08 -0700773 if (!ret) {
James Smarte3994412016-12-02 00:28:42 -0800774 /*
775 * No timeout/not interruptible as we need the struct
776 * to exist until the lldd calls us back. Thus mandate
777 * wait until driver calls back. lldd responsible for
778 * the timeout action
779 */
780 wait_for_completion(&lsop->ls_done);
781
James Smartc913a8b2017-04-11 11:35:08 -0700782 __nvme_fc_finish_ls_req(lsop);
James Smarte3994412016-12-02 00:28:42 -0800783
James Smartc913a8b2017-04-11 11:35:08 -0700784 ret = lsop->ls_error;
James Smarte3994412016-12-02 00:28:42 -0800785 }
786
James Smartc913a8b2017-04-11 11:35:08 -0700787 if (ret)
788 return ret;
789
James Smarte3994412016-12-02 00:28:42 -0800790 /* ACC or RJT payload ? */
791 if (rjt->w0.ls_cmd == FCNVME_LS_RJT)
792 return -ENXIO;
793
794 return 0;
795}
796
James Smartc913a8b2017-04-11 11:35:08 -0700797static int
798nvme_fc_send_ls_req_async(struct nvme_fc_rport *rport,
James Smarte3994412016-12-02 00:28:42 -0800799 struct nvmefc_ls_req_op *lsop,
800 void (*done)(struct nvmefc_ls_req *req, int status))
801{
James Smarte3994412016-12-02 00:28:42 -0800802 /* don't wait for completion */
803
James Smartc913a8b2017-04-11 11:35:08 -0700804 return __nvme_fc_send_ls_req(rport, lsop, done);
James Smarte3994412016-12-02 00:28:42 -0800805}
806
807/* Validation Error indexes into the string table below */
808enum {
809 VERR_NO_ERROR = 0,
810 VERR_LSACC = 1,
811 VERR_LSDESC_RQST = 2,
812 VERR_LSDESC_RQST_LEN = 3,
813 VERR_ASSOC_ID = 4,
814 VERR_ASSOC_ID_LEN = 5,
815 VERR_CONN_ID = 6,
816 VERR_CONN_ID_LEN = 7,
817 VERR_CR_ASSOC = 8,
818 VERR_CR_ASSOC_ACC_LEN = 9,
819 VERR_CR_CONN = 10,
820 VERR_CR_CONN_ACC_LEN = 11,
821 VERR_DISCONN = 12,
822 VERR_DISCONN_ACC_LEN = 13,
823};
824
825static char *validation_errors[] = {
826 "OK",
827 "Not LS_ACC",
828 "Not LSDESC_RQST",
829 "Bad LSDESC_RQST Length",
830 "Not Association ID",
831 "Bad Association ID Length",
832 "Not Connection ID",
833 "Bad Connection ID Length",
834 "Not CR_ASSOC Rqst",
835 "Bad CR_ASSOC ACC Length",
836 "Not CR_CONN Rqst",
837 "Bad CR_CONN ACC Length",
838 "Not Disconnect Rqst",
839 "Bad Disconnect ACC Length",
840};
841
842static int
843nvme_fc_connect_admin_queue(struct nvme_fc_ctrl *ctrl,
844 struct nvme_fc_queue *queue, u16 qsize, u16 ersp_ratio)
845{
846 struct nvmefc_ls_req_op *lsop;
847 struct nvmefc_ls_req *lsreq;
848 struct fcnvme_ls_cr_assoc_rqst *assoc_rqst;
849 struct fcnvme_ls_cr_assoc_acc *assoc_acc;
850 int ret, fcret = 0;
851
852 lsop = kzalloc((sizeof(*lsop) +
853 ctrl->lport->ops->lsrqst_priv_sz +
854 sizeof(*assoc_rqst) + sizeof(*assoc_acc)), GFP_KERNEL);
855 if (!lsop) {
856 ret = -ENOMEM;
857 goto out_no_memory;
858 }
859 lsreq = &lsop->ls_req;
860
861 lsreq->private = (void *)&lsop[1];
862 assoc_rqst = (struct fcnvme_ls_cr_assoc_rqst *)
863 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
864 assoc_acc = (struct fcnvme_ls_cr_assoc_acc *)&assoc_rqst[1];
865
866 assoc_rqst->w0.ls_cmd = FCNVME_LS_CREATE_ASSOCIATION;
867 assoc_rqst->desc_list_len =
868 cpu_to_be32(sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
869
870 assoc_rqst->assoc_cmd.desc_tag =
871 cpu_to_be32(FCNVME_LSDESC_CREATE_ASSOC_CMD);
872 assoc_rqst->assoc_cmd.desc_len =
873 fcnvme_lsdesc_len(
874 sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
875
876 assoc_rqst->assoc_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
877 assoc_rqst->assoc_cmd.sqsize = cpu_to_be16(qsize);
878 /* Linux supports only Dynamic controllers */
879 assoc_rqst->assoc_cmd.cntlid = cpu_to_be16(0xffff);
Christoph Hellwig8e412262017-05-17 09:54:27 +0200880 uuid_copy(&assoc_rqst->assoc_cmd.hostid, &ctrl->ctrl.opts->host->id);
James Smarte3994412016-12-02 00:28:42 -0800881 strncpy(assoc_rqst->assoc_cmd.hostnqn, ctrl->ctrl.opts->host->nqn,
882 min(FCNVME_ASSOC_HOSTNQN_LEN, NVMF_NQN_SIZE));
883 strncpy(assoc_rqst->assoc_cmd.subnqn, ctrl->ctrl.opts->subsysnqn,
884 min(FCNVME_ASSOC_SUBNQN_LEN, NVMF_NQN_SIZE));
885
886 lsop->queue = queue;
887 lsreq->rqstaddr = assoc_rqst;
888 lsreq->rqstlen = sizeof(*assoc_rqst);
889 lsreq->rspaddr = assoc_acc;
890 lsreq->rsplen = sizeof(*assoc_acc);
891 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
892
James Smartc913a8b2017-04-11 11:35:08 -0700893 ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
James Smarte3994412016-12-02 00:28:42 -0800894 if (ret)
895 goto out_free_buffer;
896
897 /* process connect LS completion */
898
899 /* validate the ACC response */
900 if (assoc_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
901 fcret = VERR_LSACC;
James Smartf77fc872017-03-23 20:41:25 -0700902 else if (assoc_acc->hdr.desc_list_len !=
James Smarte3994412016-12-02 00:28:42 -0800903 fcnvme_lsdesc_len(
904 sizeof(struct fcnvme_ls_cr_assoc_acc)))
905 fcret = VERR_CR_ASSOC_ACC_LEN;
James Smartf77fc872017-03-23 20:41:25 -0700906 else if (assoc_acc->hdr.rqst.desc_tag !=
907 cpu_to_be32(FCNVME_LSDESC_RQST))
James Smarte3994412016-12-02 00:28:42 -0800908 fcret = VERR_LSDESC_RQST;
909 else if (assoc_acc->hdr.rqst.desc_len !=
910 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
911 fcret = VERR_LSDESC_RQST_LEN;
912 else if (assoc_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_ASSOCIATION)
913 fcret = VERR_CR_ASSOC;
914 else if (assoc_acc->associd.desc_tag !=
915 cpu_to_be32(FCNVME_LSDESC_ASSOC_ID))
916 fcret = VERR_ASSOC_ID;
917 else if (assoc_acc->associd.desc_len !=
918 fcnvme_lsdesc_len(
919 sizeof(struct fcnvme_lsdesc_assoc_id)))
920 fcret = VERR_ASSOC_ID_LEN;
921 else if (assoc_acc->connectid.desc_tag !=
922 cpu_to_be32(FCNVME_LSDESC_CONN_ID))
923 fcret = VERR_CONN_ID;
924 else if (assoc_acc->connectid.desc_len !=
925 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
926 fcret = VERR_CONN_ID_LEN;
927
928 if (fcret) {
929 ret = -EBADF;
930 dev_err(ctrl->dev,
931 "q %d connect failed: %s\n",
932 queue->qnum, validation_errors[fcret]);
933 } else {
934 ctrl->association_id =
935 be64_to_cpu(assoc_acc->associd.association_id);
936 queue->connection_id =
937 be64_to_cpu(assoc_acc->connectid.connection_id);
938 set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
939 }
940
941out_free_buffer:
942 kfree(lsop);
943out_no_memory:
944 if (ret)
945 dev_err(ctrl->dev,
946 "queue %d connect admin queue failed (%d).\n",
947 queue->qnum, ret);
948 return ret;
949}
950
951static int
952nvme_fc_connect_queue(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
953 u16 qsize, u16 ersp_ratio)
954{
955 struct nvmefc_ls_req_op *lsop;
956 struct nvmefc_ls_req *lsreq;
957 struct fcnvme_ls_cr_conn_rqst *conn_rqst;
958 struct fcnvme_ls_cr_conn_acc *conn_acc;
959 int ret, fcret = 0;
960
961 lsop = kzalloc((sizeof(*lsop) +
962 ctrl->lport->ops->lsrqst_priv_sz +
963 sizeof(*conn_rqst) + sizeof(*conn_acc)), GFP_KERNEL);
964 if (!lsop) {
965 ret = -ENOMEM;
966 goto out_no_memory;
967 }
968 lsreq = &lsop->ls_req;
969
970 lsreq->private = (void *)&lsop[1];
971 conn_rqst = (struct fcnvme_ls_cr_conn_rqst *)
972 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
973 conn_acc = (struct fcnvme_ls_cr_conn_acc *)&conn_rqst[1];
974
975 conn_rqst->w0.ls_cmd = FCNVME_LS_CREATE_CONNECTION;
976 conn_rqst->desc_list_len = cpu_to_be32(
977 sizeof(struct fcnvme_lsdesc_assoc_id) +
978 sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
979
980 conn_rqst->associd.desc_tag = cpu_to_be32(FCNVME_LSDESC_ASSOC_ID);
981 conn_rqst->associd.desc_len =
982 fcnvme_lsdesc_len(
983 sizeof(struct fcnvme_lsdesc_assoc_id));
984 conn_rqst->associd.association_id = cpu_to_be64(ctrl->association_id);
985 conn_rqst->connect_cmd.desc_tag =
986 cpu_to_be32(FCNVME_LSDESC_CREATE_CONN_CMD);
987 conn_rqst->connect_cmd.desc_len =
988 fcnvme_lsdesc_len(
989 sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
990 conn_rqst->connect_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
991 conn_rqst->connect_cmd.qid = cpu_to_be16(queue->qnum);
992 conn_rqst->connect_cmd.sqsize = cpu_to_be16(qsize);
993
994 lsop->queue = queue;
995 lsreq->rqstaddr = conn_rqst;
996 lsreq->rqstlen = sizeof(*conn_rqst);
997 lsreq->rspaddr = conn_acc;
998 lsreq->rsplen = sizeof(*conn_acc);
999 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
1000
James Smartc913a8b2017-04-11 11:35:08 -07001001 ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
James Smarte3994412016-12-02 00:28:42 -08001002 if (ret)
1003 goto out_free_buffer;
1004
1005 /* process connect LS completion */
1006
1007 /* validate the ACC response */
1008 if (conn_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
1009 fcret = VERR_LSACC;
James Smartf77fc872017-03-23 20:41:25 -07001010 else if (conn_acc->hdr.desc_list_len !=
James Smarte3994412016-12-02 00:28:42 -08001011 fcnvme_lsdesc_len(sizeof(struct fcnvme_ls_cr_conn_acc)))
1012 fcret = VERR_CR_CONN_ACC_LEN;
James Smartf77fc872017-03-23 20:41:25 -07001013 else if (conn_acc->hdr.rqst.desc_tag != cpu_to_be32(FCNVME_LSDESC_RQST))
James Smarte3994412016-12-02 00:28:42 -08001014 fcret = VERR_LSDESC_RQST;
1015 else if (conn_acc->hdr.rqst.desc_len !=
1016 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
1017 fcret = VERR_LSDESC_RQST_LEN;
1018 else if (conn_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_CONNECTION)
1019 fcret = VERR_CR_CONN;
1020 else if (conn_acc->connectid.desc_tag !=
1021 cpu_to_be32(FCNVME_LSDESC_CONN_ID))
1022 fcret = VERR_CONN_ID;
1023 else if (conn_acc->connectid.desc_len !=
1024 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
1025 fcret = VERR_CONN_ID_LEN;
1026
1027 if (fcret) {
1028 ret = -EBADF;
1029 dev_err(ctrl->dev,
1030 "q %d connect failed: %s\n",
1031 queue->qnum, validation_errors[fcret]);
1032 } else {
1033 queue->connection_id =
1034 be64_to_cpu(conn_acc->connectid.connection_id);
1035 set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
1036 }
1037
1038out_free_buffer:
1039 kfree(lsop);
1040out_no_memory:
1041 if (ret)
1042 dev_err(ctrl->dev,
1043 "queue %d connect command failed (%d).\n",
1044 queue->qnum, ret);
1045 return ret;
1046}
1047
1048static void
1049nvme_fc_disconnect_assoc_done(struct nvmefc_ls_req *lsreq, int status)
1050{
1051 struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
James Smarte3994412016-12-02 00:28:42 -08001052
James Smartc913a8b2017-04-11 11:35:08 -07001053 __nvme_fc_finish_ls_req(lsop);
James Smarte3994412016-12-02 00:28:42 -08001054
1055 /* fc-nvme iniator doesn't care about success or failure of cmd */
1056
1057 kfree(lsop);
1058}
1059
1060/*
1061 * This routine sends a FC-NVME LS to disconnect (aka terminate)
1062 * the FC-NVME Association. Terminating the association also
1063 * terminates the FC-NVME connections (per queue, both admin and io
1064 * queues) that are part of the association. E.g. things are torn
1065 * down, and the related FC-NVME Association ID and Connection IDs
1066 * become invalid.
1067 *
1068 * The behavior of the fc-nvme initiator is such that it's
1069 * understanding of the association and connections will implicitly
1070 * be torn down. The action is implicit as it may be due to a loss of
1071 * connectivity with the fc-nvme target, so you may never get a
1072 * response even if you tried. As such, the action of this routine
1073 * is to asynchronously send the LS, ignore any results of the LS, and
1074 * continue on with terminating the association. If the fc-nvme target
1075 * is present and receives the LS, it too can tear down.
1076 */
1077static void
1078nvme_fc_xmt_disconnect_assoc(struct nvme_fc_ctrl *ctrl)
1079{
1080 struct fcnvme_ls_disconnect_rqst *discon_rqst;
1081 struct fcnvme_ls_disconnect_acc *discon_acc;
1082 struct nvmefc_ls_req_op *lsop;
1083 struct nvmefc_ls_req *lsreq;
James Smartc913a8b2017-04-11 11:35:08 -07001084 int ret;
James Smarte3994412016-12-02 00:28:42 -08001085
1086 lsop = kzalloc((sizeof(*lsop) +
1087 ctrl->lport->ops->lsrqst_priv_sz +
1088 sizeof(*discon_rqst) + sizeof(*discon_acc)),
1089 GFP_KERNEL);
1090 if (!lsop)
1091 /* couldn't sent it... too bad */
1092 return;
1093
1094 lsreq = &lsop->ls_req;
1095
1096 lsreq->private = (void *)&lsop[1];
1097 discon_rqst = (struct fcnvme_ls_disconnect_rqst *)
1098 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
1099 discon_acc = (struct fcnvme_ls_disconnect_acc *)&discon_rqst[1];
1100
1101 discon_rqst->w0.ls_cmd = FCNVME_LS_DISCONNECT;
1102 discon_rqst->desc_list_len = cpu_to_be32(
1103 sizeof(struct fcnvme_lsdesc_assoc_id) +
1104 sizeof(struct fcnvme_lsdesc_disconn_cmd));
1105
1106 discon_rqst->associd.desc_tag = cpu_to_be32(FCNVME_LSDESC_ASSOC_ID);
1107 discon_rqst->associd.desc_len =
1108 fcnvme_lsdesc_len(
1109 sizeof(struct fcnvme_lsdesc_assoc_id));
1110
1111 discon_rqst->associd.association_id = cpu_to_be64(ctrl->association_id);
1112
1113 discon_rqst->discon_cmd.desc_tag = cpu_to_be32(
1114 FCNVME_LSDESC_DISCONN_CMD);
1115 discon_rqst->discon_cmd.desc_len =
1116 fcnvme_lsdesc_len(
1117 sizeof(struct fcnvme_lsdesc_disconn_cmd));
1118 discon_rqst->discon_cmd.scope = FCNVME_DISCONN_ASSOCIATION;
1119 discon_rqst->discon_cmd.id = cpu_to_be64(ctrl->association_id);
1120
1121 lsreq->rqstaddr = discon_rqst;
1122 lsreq->rqstlen = sizeof(*discon_rqst);
1123 lsreq->rspaddr = discon_acc;
1124 lsreq->rsplen = sizeof(*discon_acc);
1125 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
1126
James Smartc913a8b2017-04-11 11:35:08 -07001127 ret = nvme_fc_send_ls_req_async(ctrl->rport, lsop,
1128 nvme_fc_disconnect_assoc_done);
1129 if (ret)
1130 kfree(lsop);
James Smarte3994412016-12-02 00:28:42 -08001131
1132 /* only meaningful part to terminating the association */
1133 ctrl->association_id = 0;
1134}
1135
1136
1137/* *********************** NVME Ctrl Routines **************************** */
1138
James Smart78a7ac22017-04-23 08:30:07 -07001139static void __nvme_fc_final_op_cleanup(struct request *rq);
James Smartf874d5d2017-06-01 22:54:21 -07001140static void nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg);
James Smarte3994412016-12-02 00:28:42 -08001141
1142static int
1143nvme_fc_reinit_request(void *data, struct request *rq)
1144{
1145 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1146 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
1147
1148 memset(cmdiu, 0, sizeof(*cmdiu));
1149 cmdiu->scsi_id = NVME_CMD_SCSI_ID;
1150 cmdiu->fc_id = NVME_CMD_FC_ID;
1151 cmdiu->iu_len = cpu_to_be16(sizeof(*cmdiu) / sizeof(u32));
1152 memset(&op->rsp_iu, 0, sizeof(op->rsp_iu));
1153
1154 return 0;
1155}
1156
1157static void
1158__nvme_fc_exit_request(struct nvme_fc_ctrl *ctrl,
1159 struct nvme_fc_fcp_op *op)
1160{
1161 fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.rspdma,
1162 sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1163 fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.cmddma,
1164 sizeof(op->cmd_iu), DMA_TO_DEVICE);
1165
1166 atomic_set(&op->state, FCPOP_STATE_UNINIT);
1167}
1168
1169static void
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001170nvme_fc_exit_request(struct blk_mq_tag_set *set, struct request *rq,
1171 unsigned int hctx_idx)
James Smarte3994412016-12-02 00:28:42 -08001172{
1173 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1174
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001175 return __nvme_fc_exit_request(set->driver_data, op);
James Smarte3994412016-12-02 00:28:42 -08001176}
1177
James Smart78a7ac22017-04-23 08:30:07 -07001178static int
1179__nvme_fc_abort_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_fcp_op *op)
1180{
1181 int state;
1182
1183 state = atomic_xchg(&op->state, FCPOP_STATE_ABORTED);
1184 if (state != FCPOP_STATE_ACTIVE) {
1185 atomic_set(&op->state, state);
1186 return -ECANCELED;
1187 }
1188
1189 ctrl->lport->ops->fcp_abort(&ctrl->lport->localport,
1190 &ctrl->rport->remoteport,
1191 op->queue->lldd_handle,
1192 &op->fcp_req);
1193
1194 return 0;
1195}
1196
James Smarte3994412016-12-02 00:28:42 -08001197static void
James Smart78a7ac22017-04-23 08:30:07 -07001198nvme_fc_abort_aen_ops(struct nvme_fc_ctrl *ctrl)
James Smarte3994412016-12-02 00:28:42 -08001199{
1200 struct nvme_fc_fcp_op *aen_op = ctrl->aen_ops;
James Smart78a7ac22017-04-23 08:30:07 -07001201 unsigned long flags;
1202 int i, ret;
James Smarte3994412016-12-02 00:28:42 -08001203
1204 for (i = 0; i < NVME_FC_NR_AEN_COMMANDS; i++, aen_op++) {
James Smart78a7ac22017-04-23 08:30:07 -07001205 if (atomic_read(&aen_op->state) != FCPOP_STATE_ACTIVE)
James Smarte3994412016-12-02 00:28:42 -08001206 continue;
James Smart78a7ac22017-04-23 08:30:07 -07001207
1208 spin_lock_irqsave(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07001209 if (ctrl->flags & FCCTRL_TERMIO) {
1210 ctrl->iocnt++;
1211 aen_op->flags |= FCOP_FLAGS_TERMIO;
1212 }
James Smart78a7ac22017-04-23 08:30:07 -07001213 spin_unlock_irqrestore(&ctrl->lock, flags);
1214
1215 ret = __nvme_fc_abort_op(ctrl, aen_op);
1216 if (ret) {
1217 /*
1218 * if __nvme_fc_abort_op failed the io wasn't
1219 * active. Thus this call path is running in
1220 * parallel to the io complete. Treat as non-error.
1221 */
1222
1223 /* back out the flags/counters */
1224 spin_lock_irqsave(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07001225 if (ctrl->flags & FCCTRL_TERMIO)
1226 ctrl->iocnt--;
James Smart78a7ac22017-04-23 08:30:07 -07001227 aen_op->flags &= ~FCOP_FLAGS_TERMIO;
1228 spin_unlock_irqrestore(&ctrl->lock, flags);
1229 return;
1230 }
James Smarte3994412016-12-02 00:28:42 -08001231 }
1232}
1233
James Smart78a7ac22017-04-23 08:30:07 -07001234static inline int
1235__nvme_fc_fcpop_chk_teardowns(struct nvme_fc_ctrl *ctrl,
1236 struct nvme_fc_fcp_op *op)
1237{
1238 unsigned long flags;
1239 bool complete_rq = false;
1240
1241 spin_lock_irqsave(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07001242 if (unlikely(op->flags & FCOP_FLAGS_TERMIO)) {
1243 if (ctrl->flags & FCCTRL_TERMIO)
1244 ctrl->iocnt--;
1245 }
James Smart78a7ac22017-04-23 08:30:07 -07001246 if (op->flags & FCOP_FLAGS_RELEASED)
1247 complete_rq = true;
1248 else
1249 op->flags |= FCOP_FLAGS_COMPLETE;
1250 spin_unlock_irqrestore(&ctrl->lock, flags);
1251
1252 return complete_rq;
1253}
1254
Christoph Hellwigbaee29a2017-04-21 10:44:06 +02001255static void
James Smarte3994412016-12-02 00:28:42 -08001256nvme_fc_fcpio_done(struct nvmefc_fcp_req *req)
1257{
1258 struct nvme_fc_fcp_op *op = fcp_req_to_fcp_op(req);
1259 struct request *rq = op->rq;
1260 struct nvmefc_fcp_req *freq = &op->fcp_req;
1261 struct nvme_fc_ctrl *ctrl = op->ctrl;
1262 struct nvme_fc_queue *queue = op->queue;
1263 struct nvme_completion *cqe = &op->rsp_iu.cqe;
James Smart458f2802017-04-23 08:30:06 -07001264 struct nvme_command *sqe = &op->cmd_iu.sqe;
Christoph Hellwigd663b692017-04-20 16:02:56 +02001265 __le16 status = cpu_to_le16(NVME_SC_SUCCESS << 1);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001266 union nvme_result result;
James Smartf874d5d2017-06-01 22:54:21 -07001267 bool complete_rq, terminate_assoc = true;
James Smarte3994412016-12-02 00:28:42 -08001268
1269 /*
1270 * WARNING:
1271 * The current linux implementation of a nvme controller
1272 * allocates a single tag set for all io queues and sizes
1273 * the io queues to fully hold all possible tags. Thus, the
1274 * implementation does not reference or care about the sqhd
1275 * value as it never needs to use the sqhd/sqtail pointers
1276 * for submission pacing.
1277 *
1278 * This affects the FC-NVME implementation in two ways:
1279 * 1) As the value doesn't matter, we don't need to waste
1280 * cycles extracting it from ERSPs and stamping it in the
1281 * cases where the transport fabricates CQEs on successful
1282 * completions.
1283 * 2) The FC-NVME implementation requires that delivery of
1284 * ERSP completions are to go back to the nvme layer in order
1285 * relative to the rsn, such that the sqhd value will always
1286 * be "in order" for the nvme layer. As the nvme layer in
1287 * linux doesn't care about sqhd, there's no need to return
1288 * them in order.
1289 *
1290 * Additionally:
1291 * As the core nvme layer in linux currently does not look at
1292 * every field in the cqe - in cases where the FC transport must
1293 * fabricate a CQE, the following fields will not be set as they
1294 * are not referenced:
1295 * cqe.sqid, cqe.sqhd, cqe.command_id
James Smartf874d5d2017-06-01 22:54:21 -07001296 *
1297 * Failure or error of an individual i/o, in a transport
1298 * detected fashion unrelated to the nvme completion status,
1299 * potentially cause the initiator and target sides to get out
1300 * of sync on SQ head/tail (aka outstanding io count allowed).
1301 * Per FC-NVME spec, failure of an individual command requires
1302 * the connection to be terminated, which in turn requires the
1303 * association to be terminated.
James Smarte3994412016-12-02 00:28:42 -08001304 */
1305
1306 fc_dma_sync_single_for_cpu(ctrl->lport->dev, op->fcp_req.rspdma,
1307 sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1308
1309 if (atomic_read(&op->state) == FCPOP_STATE_ABORTED)
Christoph Hellwigd663b692017-04-20 16:02:56 +02001310 status = cpu_to_le16((NVME_SC_ABORT_REQ | NVME_SC_DNR) << 1);
James Smart62eeacb2017-03-23 20:41:27 -07001311 else if (freq->status)
Christoph Hellwigd663b692017-04-20 16:02:56 +02001312 status = cpu_to_le16(NVME_SC_FC_TRANSPORT_ERROR << 1);
James Smarte3994412016-12-02 00:28:42 -08001313
1314 /*
1315 * For the linux implementation, if we have an unsuccesful
1316 * status, they blk-mq layer can typically be called with the
1317 * non-zero status and the content of the cqe isn't important.
1318 */
1319 if (status)
1320 goto done;
1321
1322 /*
1323 * command completed successfully relative to the wire
1324 * protocol. However, validate anything received and
1325 * extract the status and result from the cqe (create it
1326 * where necessary).
1327 */
1328
1329 switch (freq->rcv_rsplen) {
1330
1331 case 0:
1332 case NVME_FC_SIZEOF_ZEROS_RSP:
1333 /*
1334 * No response payload or 12 bytes of payload (which
1335 * should all be zeros) are considered successful and
1336 * no payload in the CQE by the transport.
1337 */
1338 if (freq->transferred_length !=
1339 be32_to_cpu(op->cmd_iu.data_len)) {
Christoph Hellwigd663b692017-04-20 16:02:56 +02001340 status = cpu_to_le16(NVME_SC_FC_TRANSPORT_ERROR << 1);
James Smarte3994412016-12-02 00:28:42 -08001341 goto done;
1342 }
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001343 result.u64 = 0;
James Smarte3994412016-12-02 00:28:42 -08001344 break;
1345
1346 case sizeof(struct nvme_fc_ersp_iu):
1347 /*
1348 * The ERSP IU contains a full completion with CQE.
1349 * Validate ERSP IU and look at cqe.
1350 */
1351 if (unlikely(be16_to_cpu(op->rsp_iu.iu_len) !=
1352 (freq->rcv_rsplen / 4) ||
1353 be32_to_cpu(op->rsp_iu.xfrd_len) !=
1354 freq->transferred_length ||
James Smart726a1082017-03-23 20:41:23 -07001355 op->rsp_iu.status_code ||
James Smart458f2802017-04-23 08:30:06 -07001356 sqe->common.command_id != cqe->command_id)) {
Christoph Hellwigd663b692017-04-20 16:02:56 +02001357 status = cpu_to_le16(NVME_SC_FC_TRANSPORT_ERROR << 1);
James Smarte3994412016-12-02 00:28:42 -08001358 goto done;
1359 }
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001360 result = cqe->result;
Christoph Hellwigd663b692017-04-20 16:02:56 +02001361 status = cqe->status;
James Smarte3994412016-12-02 00:28:42 -08001362 break;
1363
1364 default:
Christoph Hellwigd663b692017-04-20 16:02:56 +02001365 status = cpu_to_le16(NVME_SC_FC_TRANSPORT_ERROR << 1);
James Smarte3994412016-12-02 00:28:42 -08001366 goto done;
1367 }
1368
James Smartf874d5d2017-06-01 22:54:21 -07001369 terminate_assoc = false;
1370
James Smarte3994412016-12-02 00:28:42 -08001371done:
James Smart78a7ac22017-04-23 08:30:07 -07001372 if (op->flags & FCOP_FLAGS_AEN) {
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001373 nvme_complete_async_event(&queue->ctrl->ctrl, status, &result);
James Smart78a7ac22017-04-23 08:30:07 -07001374 complete_rq = __nvme_fc_fcpop_chk_teardowns(ctrl, op);
1375 atomic_set(&op->state, FCPOP_STATE_IDLE);
1376 op->flags = FCOP_FLAGS_AEN; /* clear other flags */
James Smarte3994412016-12-02 00:28:42 -08001377 nvme_fc_ctrl_put(ctrl);
James Smartf874d5d2017-06-01 22:54:21 -07001378 goto check_error;
James Smarte3994412016-12-02 00:28:42 -08001379 }
1380
James Smart78a7ac22017-04-23 08:30:07 -07001381 complete_rq = __nvme_fc_fcpop_chk_teardowns(ctrl, op);
1382 if (!complete_rq) {
1383 if (unlikely(op->flags & FCOP_FLAGS_TERMIO)) {
James Smarte392e1f2017-05-15 17:10:24 -07001384 status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
James Smart78a7ac22017-04-23 08:30:07 -07001385 if (blk_queue_dying(rq->q))
James Smarte392e1f2017-05-15 17:10:24 -07001386 status |= cpu_to_le16(NVME_SC_DNR << 1);
James Smart78a7ac22017-04-23 08:30:07 -07001387 }
1388 nvme_end_request(rq, status, result);
1389 } else
1390 __nvme_fc_final_op_cleanup(rq);
James Smartf874d5d2017-06-01 22:54:21 -07001391
1392check_error:
1393 if (terminate_assoc)
1394 nvme_fc_error_recovery(ctrl, "transport detected io error");
James Smarte3994412016-12-02 00:28:42 -08001395}
1396
1397static int
1398__nvme_fc_init_request(struct nvme_fc_ctrl *ctrl,
1399 struct nvme_fc_queue *queue, struct nvme_fc_fcp_op *op,
1400 struct request *rq, u32 rqno)
1401{
1402 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
1403 int ret = 0;
1404
1405 memset(op, 0, sizeof(*op));
1406 op->fcp_req.cmdaddr = &op->cmd_iu;
1407 op->fcp_req.cmdlen = sizeof(op->cmd_iu);
1408 op->fcp_req.rspaddr = &op->rsp_iu;
1409 op->fcp_req.rsplen = sizeof(op->rsp_iu);
1410 op->fcp_req.done = nvme_fc_fcpio_done;
1411 op->fcp_req.first_sgl = (struct scatterlist *)&op[1];
1412 op->fcp_req.private = &op->fcp_req.first_sgl[SG_CHUNK_SIZE];
1413 op->ctrl = ctrl;
1414 op->queue = queue;
1415 op->rq = rq;
1416 op->rqno = rqno;
1417
1418 cmdiu->scsi_id = NVME_CMD_SCSI_ID;
1419 cmdiu->fc_id = NVME_CMD_FC_ID;
1420 cmdiu->iu_len = cpu_to_be16(sizeof(*cmdiu) / sizeof(u32));
1421
1422 op->fcp_req.cmddma = fc_dma_map_single(ctrl->lport->dev,
1423 &op->cmd_iu, sizeof(op->cmd_iu), DMA_TO_DEVICE);
1424 if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.cmddma)) {
1425 dev_err(ctrl->dev,
1426 "FCP Op failed - cmdiu dma mapping failed.\n");
1427 ret = EFAULT;
1428 goto out_on_error;
1429 }
1430
1431 op->fcp_req.rspdma = fc_dma_map_single(ctrl->lport->dev,
1432 &op->rsp_iu, sizeof(op->rsp_iu),
1433 DMA_FROM_DEVICE);
1434 if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.rspdma)) {
1435 dev_err(ctrl->dev,
1436 "FCP Op failed - rspiu dma mapping failed.\n");
1437 ret = EFAULT;
1438 }
1439
1440 atomic_set(&op->state, FCPOP_STATE_IDLE);
1441out_on_error:
1442 return ret;
1443}
1444
1445static int
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001446nvme_fc_init_request(struct blk_mq_tag_set *set, struct request *rq,
1447 unsigned int hctx_idx, unsigned int numa_node)
James Smarte3994412016-12-02 00:28:42 -08001448{
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001449 struct nvme_fc_ctrl *ctrl = set->driver_data;
James Smarte3994412016-12-02 00:28:42 -08001450 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
Christoph Hellwig76f983c2017-06-13 09:15:20 +02001451 int queue_idx = (set == &ctrl->tag_set) ? hctx_idx + 1 : 0;
1452 struct nvme_fc_queue *queue = &ctrl->queues[queue_idx];
James Smarte3994412016-12-02 00:28:42 -08001453
1454 return __nvme_fc_init_request(ctrl, queue, op, rq, queue->rqcnt++);
1455}
1456
1457static int
1458nvme_fc_init_aen_ops(struct nvme_fc_ctrl *ctrl)
1459{
1460 struct nvme_fc_fcp_op *aen_op;
1461 struct nvme_fc_cmd_iu *cmdiu;
1462 struct nvme_command *sqe;
James Smart61bff8e2017-04-23 08:30:08 -07001463 void *private;
James Smarte3994412016-12-02 00:28:42 -08001464 int i, ret;
1465
1466 aen_op = ctrl->aen_ops;
1467 for (i = 0; i < NVME_FC_NR_AEN_COMMANDS; i++, aen_op++) {
James Smart61bff8e2017-04-23 08:30:08 -07001468 private = kzalloc(ctrl->lport->ops->fcprqst_priv_sz,
1469 GFP_KERNEL);
1470 if (!private)
1471 return -ENOMEM;
1472
James Smarte3994412016-12-02 00:28:42 -08001473 cmdiu = &aen_op->cmd_iu;
1474 sqe = &cmdiu->sqe;
1475 ret = __nvme_fc_init_request(ctrl, &ctrl->queues[0],
1476 aen_op, (struct request *)NULL,
1477 (AEN_CMDID_BASE + i));
James Smart61bff8e2017-04-23 08:30:08 -07001478 if (ret) {
1479 kfree(private);
James Smarte3994412016-12-02 00:28:42 -08001480 return ret;
James Smart61bff8e2017-04-23 08:30:08 -07001481 }
James Smarte3994412016-12-02 00:28:42 -08001482
James Smart78a7ac22017-04-23 08:30:07 -07001483 aen_op->flags = FCOP_FLAGS_AEN;
James Smart61bff8e2017-04-23 08:30:08 -07001484 aen_op->fcp_req.first_sgl = NULL; /* no sg list */
1485 aen_op->fcp_req.private = private;
James Smart78a7ac22017-04-23 08:30:07 -07001486
James Smarte3994412016-12-02 00:28:42 -08001487 memset(sqe, 0, sizeof(*sqe));
1488 sqe->common.opcode = nvme_admin_async_event;
James Smart78a7ac22017-04-23 08:30:07 -07001489 /* Note: core layer may overwrite the sqe.command_id value */
James Smarte3994412016-12-02 00:28:42 -08001490 sqe->common.command_id = AEN_CMDID_BASE + i;
1491 }
1492 return 0;
1493}
1494
James Smart61bff8e2017-04-23 08:30:08 -07001495static void
1496nvme_fc_term_aen_ops(struct nvme_fc_ctrl *ctrl)
1497{
1498 struct nvme_fc_fcp_op *aen_op;
1499 int i;
1500
1501 aen_op = ctrl->aen_ops;
1502 for (i = 0; i < NVME_FC_NR_AEN_COMMANDS; i++, aen_op++) {
1503 if (!aen_op->fcp_req.private)
1504 continue;
1505
1506 __nvme_fc_exit_request(ctrl, aen_op);
1507
1508 kfree(aen_op->fcp_req.private);
1509 aen_op->fcp_req.private = NULL;
1510 }
1511}
James Smarte3994412016-12-02 00:28:42 -08001512
1513static inline void
1514__nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, struct nvme_fc_ctrl *ctrl,
1515 unsigned int qidx)
1516{
1517 struct nvme_fc_queue *queue = &ctrl->queues[qidx];
1518
1519 hctx->driver_data = queue;
1520 queue->hctx = hctx;
1521}
1522
1523static int
1524nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
1525 unsigned int hctx_idx)
1526{
1527 struct nvme_fc_ctrl *ctrl = data;
1528
1529 __nvme_fc_init_hctx(hctx, ctrl, hctx_idx + 1);
1530
1531 return 0;
1532}
1533
1534static int
1535nvme_fc_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
1536 unsigned int hctx_idx)
1537{
1538 struct nvme_fc_ctrl *ctrl = data;
1539
1540 __nvme_fc_init_hctx(hctx, ctrl, hctx_idx);
1541
1542 return 0;
1543}
1544
1545static void
1546nvme_fc_init_queue(struct nvme_fc_ctrl *ctrl, int idx, size_t queue_size)
1547{
1548 struct nvme_fc_queue *queue;
1549
1550 queue = &ctrl->queues[idx];
1551 memset(queue, 0, sizeof(*queue));
1552 queue->ctrl = ctrl;
1553 queue->qnum = idx;
1554 atomic_set(&queue->csn, 1);
1555 queue->dev = ctrl->dev;
1556
1557 if (idx > 0)
1558 queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
1559 else
1560 queue->cmnd_capsule_len = sizeof(struct nvme_command);
1561
1562 queue->queue_size = queue_size;
1563
1564 /*
1565 * Considered whether we should allocate buffers for all SQEs
1566 * and CQEs and dma map them - mapping their respective entries
1567 * into the request structures (kernel vm addr and dma address)
1568 * thus the driver could use the buffers/mappings directly.
1569 * It only makes sense if the LLDD would use them for its
1570 * messaging api. It's very unlikely most adapter api's would use
1571 * a native NVME sqe/cqe. More reasonable if FC-NVME IU payload
1572 * structures were used instead.
1573 */
1574}
1575
1576/*
1577 * This routine terminates a queue at the transport level.
1578 * The transport has already ensured that all outstanding ios on
1579 * the queue have been terminated.
1580 * The transport will send a Disconnect LS request to terminate
1581 * the queue's connection. Termination of the admin queue will also
1582 * terminate the association at the target.
1583 */
1584static void
1585nvme_fc_free_queue(struct nvme_fc_queue *queue)
1586{
1587 if (!test_and_clear_bit(NVME_FC_Q_CONNECTED, &queue->flags))
1588 return;
1589
1590 /*
1591 * Current implementation never disconnects a single queue.
1592 * It always terminates a whole association. So there is never
1593 * a disconnect(queue) LS sent to the target.
1594 */
1595
1596 queue->connection_id = 0;
1597 clear_bit(NVME_FC_Q_CONNECTED, &queue->flags);
1598}
1599
1600static void
1601__nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *ctrl,
1602 struct nvme_fc_queue *queue, unsigned int qidx)
1603{
1604 if (ctrl->lport->ops->delete_queue)
1605 ctrl->lport->ops->delete_queue(&ctrl->lport->localport, qidx,
1606 queue->lldd_handle);
1607 queue->lldd_handle = NULL;
1608}
1609
1610static void
James Smarte3994412016-12-02 00:28:42 -08001611nvme_fc_free_io_queues(struct nvme_fc_ctrl *ctrl)
1612{
1613 int i;
1614
1615 for (i = 1; i < ctrl->queue_count; i++)
1616 nvme_fc_free_queue(&ctrl->queues[i]);
1617}
1618
1619static int
1620__nvme_fc_create_hw_queue(struct nvme_fc_ctrl *ctrl,
1621 struct nvme_fc_queue *queue, unsigned int qidx, u16 qsize)
1622{
1623 int ret = 0;
1624
1625 queue->lldd_handle = NULL;
1626 if (ctrl->lport->ops->create_queue)
1627 ret = ctrl->lport->ops->create_queue(&ctrl->lport->localport,
1628 qidx, qsize, &queue->lldd_handle);
1629
1630 return ret;
1631}
1632
1633static void
1634nvme_fc_delete_hw_io_queues(struct nvme_fc_ctrl *ctrl)
1635{
1636 struct nvme_fc_queue *queue = &ctrl->queues[ctrl->queue_count - 1];
1637 int i;
1638
1639 for (i = ctrl->queue_count - 1; i >= 1; i--, queue--)
1640 __nvme_fc_delete_hw_queue(ctrl, queue, i);
1641}
1642
1643static int
1644nvme_fc_create_hw_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
1645{
1646 struct nvme_fc_queue *queue = &ctrl->queues[1];
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001647 int i, ret;
James Smarte3994412016-12-02 00:28:42 -08001648
1649 for (i = 1; i < ctrl->queue_count; i++, queue++) {
1650 ret = __nvme_fc_create_hw_queue(ctrl, queue, i, qsize);
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001651 if (ret)
1652 goto delete_queues;
James Smarte3994412016-12-02 00:28:42 -08001653 }
1654
1655 return 0;
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001656
1657delete_queues:
1658 for (; i >= 0; i--)
1659 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[i], i);
1660 return ret;
James Smarte3994412016-12-02 00:28:42 -08001661}
1662
1663static int
1664nvme_fc_connect_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
1665{
1666 int i, ret = 0;
1667
1668 for (i = 1; i < ctrl->queue_count; i++) {
1669 ret = nvme_fc_connect_queue(ctrl, &ctrl->queues[i], qsize,
1670 (qsize / 5));
1671 if (ret)
1672 break;
1673 ret = nvmf_connect_io_queue(&ctrl->ctrl, i);
1674 if (ret)
1675 break;
1676 }
1677
1678 return ret;
1679}
1680
1681static void
1682nvme_fc_init_io_queues(struct nvme_fc_ctrl *ctrl)
1683{
1684 int i;
1685
1686 for (i = 1; i < ctrl->queue_count; i++)
1687 nvme_fc_init_queue(ctrl, i, ctrl->ctrl.sqsize);
1688}
1689
1690static void
1691nvme_fc_ctrl_free(struct kref *ref)
1692{
1693 struct nvme_fc_ctrl *ctrl =
1694 container_of(ref, struct nvme_fc_ctrl, ref);
1695 unsigned long flags;
1696
James Smart61bff8e2017-04-23 08:30:08 -07001697 if (ctrl->ctrl.tagset) {
1698 blk_cleanup_queue(ctrl->ctrl.connect_q);
1699 blk_mq_free_tag_set(&ctrl->tag_set);
James Smarte3994412016-12-02 00:28:42 -08001700 }
1701
James Smart61bff8e2017-04-23 08:30:08 -07001702 /* remove from rport list */
1703 spin_lock_irqsave(&ctrl->rport->lock, flags);
1704 list_del(&ctrl->ctrl_list);
1705 spin_unlock_irqrestore(&ctrl->rport->lock, flags);
1706
1707 blk_cleanup_queue(ctrl->ctrl.admin_q);
1708 blk_mq_free_tag_set(&ctrl->admin_tag_set);
1709
1710 kfree(ctrl->queues);
1711
James Smarte3994412016-12-02 00:28:42 -08001712 put_device(ctrl->dev);
1713 nvme_fc_rport_put(ctrl->rport);
1714
James Smarte3994412016-12-02 00:28:42 -08001715 ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
Ewan D. Milnede414472017-04-24 13:24:16 -04001716 if (ctrl->ctrl.opts)
1717 nvmf_free_options(ctrl->ctrl.opts);
James Smarte3994412016-12-02 00:28:42 -08001718 kfree(ctrl);
1719}
1720
1721static void
1722nvme_fc_ctrl_put(struct nvme_fc_ctrl *ctrl)
1723{
1724 kref_put(&ctrl->ref, nvme_fc_ctrl_free);
1725}
1726
1727static int
1728nvme_fc_ctrl_get(struct nvme_fc_ctrl *ctrl)
1729{
1730 return kref_get_unless_zero(&ctrl->ref);
1731}
1732
1733/*
1734 * All accesses from nvme core layer done - can now free the
1735 * controller. Called after last nvme_put_ctrl() call
1736 */
1737static void
James Smart61bff8e2017-04-23 08:30:08 -07001738nvme_fc_nvme_ctrl_freed(struct nvme_ctrl *nctrl)
James Smarte3994412016-12-02 00:28:42 -08001739{
1740 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
1741
1742 WARN_ON(nctrl != &ctrl->ctrl);
1743
James Smart61bff8e2017-04-23 08:30:08 -07001744 nvme_fc_ctrl_put(ctrl);
1745}
James Smarte3994412016-12-02 00:28:42 -08001746
James Smart61bff8e2017-04-23 08:30:08 -07001747static void
1748nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg)
1749{
1750 dev_warn(ctrl->ctrl.device,
1751 "NVME-FC{%d}: transport association error detected: %s\n",
1752 ctrl->cnum, errmsg);
James Smart589ff772017-05-15 17:10:19 -07001753 dev_warn(ctrl->ctrl.device,
James Smart61bff8e2017-04-23 08:30:08 -07001754 "NVME-FC{%d}: resetting controller\n", ctrl->cnum);
James Smarte3994412016-12-02 00:28:42 -08001755
James Smart2952a872017-04-25 15:32:01 -07001756 /* stop the queues on error, cleanup is in reset thread */
1757 if (ctrl->queue_count > 1)
1758 nvme_stop_queues(&ctrl->ctrl);
1759
James Smart61bff8e2017-04-23 08:30:08 -07001760 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RECONNECTING)) {
1761 dev_err(ctrl->ctrl.device,
1762 "NVME-FC{%d}: error_recovery: Couldn't change state "
1763 "to RECONNECTING\n", ctrl->cnum);
1764 return;
James Smarte3994412016-12-02 00:28:42 -08001765 }
1766
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02001767 if (!queue_work(nvme_wq, &ctrl->reset_work))
James Smart61bff8e2017-04-23 08:30:08 -07001768 dev_err(ctrl->ctrl.device,
1769 "NVME-FC{%d}: error_recovery: Failed to schedule "
1770 "reset work\n", ctrl->cnum);
James Smarte3994412016-12-02 00:28:42 -08001771}
1772
Christoph Hellwigbaee29a2017-04-21 10:44:06 +02001773static enum blk_eh_timer_return
James Smarte3994412016-12-02 00:28:42 -08001774nvme_fc_timeout(struct request *rq, bool reserved)
1775{
1776 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1777 struct nvme_fc_ctrl *ctrl = op->ctrl;
1778 int ret;
1779
1780 if (reserved)
1781 return BLK_EH_RESET_TIMER;
1782
1783 ret = __nvme_fc_abort_op(ctrl, op);
1784 if (ret)
1785 /* io wasn't active to abort consider it done */
1786 return BLK_EH_HANDLED;
1787
1788 /*
James Smart61bff8e2017-04-23 08:30:08 -07001789 * we can't individually ABTS an io without affecting the queue,
1790 * thus killing the queue, adn thus the association.
1791 * So resolve by performing a controller reset, which will stop
1792 * the host/io stack, terminate the association on the link,
1793 * and recreate an association on the link.
James Smarte3994412016-12-02 00:28:42 -08001794 */
James Smart61bff8e2017-04-23 08:30:08 -07001795 nvme_fc_error_recovery(ctrl, "io timeout error");
James Smarte3994412016-12-02 00:28:42 -08001796
1797 return BLK_EH_HANDLED;
1798}
1799
1800static int
1801nvme_fc_map_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
1802 struct nvme_fc_fcp_op *op)
1803{
1804 struct nvmefc_fcp_req *freq = &op->fcp_req;
James Smarte3994412016-12-02 00:28:42 -08001805 enum dma_data_direction dir;
1806 int ret;
1807
1808 freq->sg_cnt = 0;
1809
Christoph Hellwigb131c612017-01-13 12:29:12 +01001810 if (!blk_rq_payload_bytes(rq))
James Smarte3994412016-12-02 00:28:42 -08001811 return 0;
1812
1813 freq->sg_table.sgl = freq->first_sgl;
Christoph Hellwig19e420b2017-01-19 16:55:57 +01001814 ret = sg_alloc_table_chained(&freq->sg_table,
1815 blk_rq_nr_phys_segments(rq), freq->sg_table.sgl);
James Smarte3994412016-12-02 00:28:42 -08001816 if (ret)
1817 return -ENOMEM;
1818
1819 op->nents = blk_rq_map_sg(rq->q, rq, freq->sg_table.sgl);
Christoph Hellwig19e420b2017-01-19 16:55:57 +01001820 WARN_ON(op->nents > blk_rq_nr_phys_segments(rq));
James Smarte3994412016-12-02 00:28:42 -08001821 dir = (rq_data_dir(rq) == WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
1822 freq->sg_cnt = fc_dma_map_sg(ctrl->lport->dev, freq->sg_table.sgl,
1823 op->nents, dir);
1824 if (unlikely(freq->sg_cnt <= 0)) {
1825 sg_free_table_chained(&freq->sg_table, true);
1826 freq->sg_cnt = 0;
1827 return -EFAULT;
1828 }
1829
1830 /*
1831 * TODO: blk_integrity_rq(rq) for DIF
1832 */
1833 return 0;
1834}
1835
1836static void
1837nvme_fc_unmap_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
1838 struct nvme_fc_fcp_op *op)
1839{
1840 struct nvmefc_fcp_req *freq = &op->fcp_req;
1841
1842 if (!freq->sg_cnt)
1843 return;
1844
1845 fc_dma_unmap_sg(ctrl->lport->dev, freq->sg_table.sgl, op->nents,
1846 ((rq_data_dir(rq) == WRITE) ?
1847 DMA_TO_DEVICE : DMA_FROM_DEVICE));
1848
1849 nvme_cleanup_cmd(rq);
1850
1851 sg_free_table_chained(&freq->sg_table, true);
1852
1853 freq->sg_cnt = 0;
1854}
1855
1856/*
1857 * In FC, the queue is a logical thing. At transport connect, the target
1858 * creates its "queue" and returns a handle that is to be given to the
1859 * target whenever it posts something to the corresponding SQ. When an
1860 * SQE is sent on a SQ, FC effectively considers the SQE, or rather the
1861 * command contained within the SQE, an io, and assigns a FC exchange
1862 * to it. The SQE and the associated SQ handle are sent in the initial
1863 * CMD IU sents on the exchange. All transfers relative to the io occur
1864 * as part of the exchange. The CQE is the last thing for the io,
1865 * which is transferred (explicitly or implicitly) with the RSP IU
1866 * sent on the exchange. After the CQE is received, the FC exchange is
1867 * terminaed and the Exchange may be used on a different io.
1868 *
1869 * The transport to LLDD api has the transport making a request for a
1870 * new fcp io request to the LLDD. The LLDD then allocates a FC exchange
1871 * resource and transfers the command. The LLDD will then process all
1872 * steps to complete the io. Upon completion, the transport done routine
1873 * is called.
1874 *
1875 * So - while the operation is outstanding to the LLDD, there is a link
1876 * level FC exchange resource that is also outstanding. This must be
1877 * considered in all cleanup operations.
1878 */
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001879static blk_status_t
James Smarte3994412016-12-02 00:28:42 -08001880nvme_fc_start_fcp_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
1881 struct nvme_fc_fcp_op *op, u32 data_len,
1882 enum nvmefc_fcp_datadir io_dir)
1883{
1884 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
1885 struct nvme_command *sqe = &cmdiu->sqe;
1886 u32 csn;
1887 int ret;
1888
James Smart61bff8e2017-04-23 08:30:08 -07001889 /*
1890 * before attempting to send the io, check to see if we believe
1891 * the target device is present
1892 */
1893 if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001894 return BLK_STS_IOERR;
James Smart61bff8e2017-04-23 08:30:08 -07001895
James Smarte3994412016-12-02 00:28:42 -08001896 if (!nvme_fc_ctrl_get(ctrl))
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001897 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08001898
1899 /* format the FC-NVME CMD IU and fcp_req */
1900 cmdiu->connection_id = cpu_to_be64(queue->connection_id);
1901 csn = atomic_inc_return(&queue->csn);
1902 cmdiu->csn = cpu_to_be32(csn);
1903 cmdiu->data_len = cpu_to_be32(data_len);
1904 switch (io_dir) {
1905 case NVMEFC_FCP_WRITE:
1906 cmdiu->flags = FCNVME_CMD_FLAGS_WRITE;
1907 break;
1908 case NVMEFC_FCP_READ:
1909 cmdiu->flags = FCNVME_CMD_FLAGS_READ;
1910 break;
1911 case NVMEFC_FCP_NODATA:
1912 cmdiu->flags = 0;
1913 break;
1914 }
1915 op->fcp_req.payload_length = data_len;
1916 op->fcp_req.io_dir = io_dir;
1917 op->fcp_req.transferred_length = 0;
1918 op->fcp_req.rcv_rsplen = 0;
James Smart62eeacb2017-03-23 20:41:27 -07001919 op->fcp_req.status = NVME_SC_SUCCESS;
James Smarte3994412016-12-02 00:28:42 -08001920 op->fcp_req.sqid = cpu_to_le16(queue->qnum);
1921
1922 /*
1923 * validate per fabric rules, set fields mandated by fabric spec
1924 * as well as those by FC-NVME spec.
1925 */
1926 WARN_ON_ONCE(sqe->common.metadata);
1927 WARN_ON_ONCE(sqe->common.dptr.prp1);
1928 WARN_ON_ONCE(sqe->common.dptr.prp2);
1929 sqe->common.flags |= NVME_CMD_SGL_METABUF;
1930
1931 /*
1932 * format SQE DPTR field per FC-NVME rules
1933 * type=data block descr; subtype=offset;
1934 * offset is currently 0.
1935 */
1936 sqe->rw.dptr.sgl.type = NVME_SGL_FMT_OFFSET;
1937 sqe->rw.dptr.sgl.length = cpu_to_le32(data_len);
1938 sqe->rw.dptr.sgl.addr = 0;
1939
James Smart78a7ac22017-04-23 08:30:07 -07001940 if (!(op->flags & FCOP_FLAGS_AEN)) {
James Smarte3994412016-12-02 00:28:42 -08001941 ret = nvme_fc_map_data(ctrl, op->rq, op);
1942 if (ret < 0) {
James Smarte3994412016-12-02 00:28:42 -08001943 nvme_cleanup_cmd(op->rq);
1944 nvme_fc_ctrl_put(ctrl);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001945 if (ret == -ENOMEM || ret == -EAGAIN)
1946 return BLK_STS_RESOURCE;
1947 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08001948 }
1949 }
1950
1951 fc_dma_sync_single_for_device(ctrl->lport->dev, op->fcp_req.cmddma,
1952 sizeof(op->cmd_iu), DMA_TO_DEVICE);
1953
1954 atomic_set(&op->state, FCPOP_STATE_ACTIVE);
1955
James Smart78a7ac22017-04-23 08:30:07 -07001956 if (!(op->flags & FCOP_FLAGS_AEN))
James Smarte3994412016-12-02 00:28:42 -08001957 blk_mq_start_request(op->rq);
1958
1959 ret = ctrl->lport->ops->fcp_io(&ctrl->lport->localport,
1960 &ctrl->rport->remoteport,
1961 queue->lldd_handle, &op->fcp_req);
1962
1963 if (ret) {
James Smarte3994412016-12-02 00:28:42 -08001964 if (op->rq) { /* normal request */
1965 nvme_fc_unmap_data(ctrl, op->rq, op);
1966 nvme_cleanup_cmd(op->rq);
1967 }
1968 /* else - aen. no cleanup needed */
1969
1970 nvme_fc_ctrl_put(ctrl);
1971
1972 if (ret != -EBUSY)
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001973 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08001974
1975 if (op->rq) {
1976 blk_mq_stop_hw_queues(op->rq->q);
1977 blk_mq_delay_queue(queue->hctx, NVMEFC_QUEUE_DELAY);
1978 }
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001979 return BLK_STS_RESOURCE;
James Smarte3994412016-12-02 00:28:42 -08001980 }
1981
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001982 return BLK_STS_OK;
James Smarte3994412016-12-02 00:28:42 -08001983}
1984
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001985static blk_status_t
James Smarte3994412016-12-02 00:28:42 -08001986nvme_fc_queue_rq(struct blk_mq_hw_ctx *hctx,
1987 const struct blk_mq_queue_data *bd)
1988{
1989 struct nvme_ns *ns = hctx->queue->queuedata;
1990 struct nvme_fc_queue *queue = hctx->driver_data;
1991 struct nvme_fc_ctrl *ctrl = queue->ctrl;
1992 struct request *rq = bd->rq;
1993 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1994 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
1995 struct nvme_command *sqe = &cmdiu->sqe;
1996 enum nvmefc_fcp_datadir io_dir;
1997 u32 data_len;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001998 blk_status_t ret;
James Smarte3994412016-12-02 00:28:42 -08001999
2000 ret = nvme_setup_cmd(ns, rq, sqe);
2001 if (ret)
2002 return ret;
2003
Christoph Hellwigb131c612017-01-13 12:29:12 +01002004 data_len = blk_rq_payload_bytes(rq);
James Smarte3994412016-12-02 00:28:42 -08002005 if (data_len)
2006 io_dir = ((rq_data_dir(rq) == WRITE) ?
2007 NVMEFC_FCP_WRITE : NVMEFC_FCP_READ);
2008 else
2009 io_dir = NVMEFC_FCP_NODATA;
2010
2011 return nvme_fc_start_fcp_op(ctrl, queue, op, data_len, io_dir);
2012}
2013
2014static struct blk_mq_tags *
2015nvme_fc_tagset(struct nvme_fc_queue *queue)
2016{
2017 if (queue->qnum == 0)
2018 return queue->ctrl->admin_tag_set.tags[queue->qnum];
2019
2020 return queue->ctrl->tag_set.tags[queue->qnum - 1];
2021}
2022
2023static int
2024nvme_fc_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
2025
2026{
2027 struct nvme_fc_queue *queue = hctx->driver_data;
2028 struct nvme_fc_ctrl *ctrl = queue->ctrl;
2029 struct request *req;
2030 struct nvme_fc_fcp_op *op;
2031
2032 req = blk_mq_tag_to_rq(nvme_fc_tagset(queue), tag);
James Smart61bff8e2017-04-23 08:30:08 -07002033 if (!req)
James Smarte3994412016-12-02 00:28:42 -08002034 return 0;
James Smarte3994412016-12-02 00:28:42 -08002035
2036 op = blk_mq_rq_to_pdu(req);
2037
2038 if ((atomic_read(&op->state) == FCPOP_STATE_ACTIVE) &&
2039 (ctrl->lport->ops->poll_queue))
2040 ctrl->lport->ops->poll_queue(&ctrl->lport->localport,
2041 queue->lldd_handle);
2042
2043 return ((atomic_read(&op->state) != FCPOP_STATE_ACTIVE));
2044}
2045
2046static void
2047nvme_fc_submit_async_event(struct nvme_ctrl *arg, int aer_idx)
2048{
2049 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(arg);
2050 struct nvme_fc_fcp_op *aen_op;
James Smart61bff8e2017-04-23 08:30:08 -07002051 unsigned long flags;
2052 bool terminating = false;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002053 blk_status_t ret;
James Smarte3994412016-12-02 00:28:42 -08002054
2055 if (aer_idx > NVME_FC_NR_AEN_COMMANDS)
2056 return;
2057
James Smart61bff8e2017-04-23 08:30:08 -07002058 spin_lock_irqsave(&ctrl->lock, flags);
2059 if (ctrl->flags & FCCTRL_TERMIO)
2060 terminating = true;
2061 spin_unlock_irqrestore(&ctrl->lock, flags);
2062
2063 if (terminating)
2064 return;
2065
James Smarte3994412016-12-02 00:28:42 -08002066 aen_op = &ctrl->aen_ops[aer_idx];
2067
2068 ret = nvme_fc_start_fcp_op(ctrl, aen_op->queue, aen_op, 0,
2069 NVMEFC_FCP_NODATA);
2070 if (ret)
2071 dev_err(ctrl->ctrl.device,
2072 "failed async event work [%d]\n", aer_idx);
2073}
2074
2075static void
James Smart78a7ac22017-04-23 08:30:07 -07002076__nvme_fc_final_op_cleanup(struct request *rq)
James Smarte3994412016-12-02 00:28:42 -08002077{
2078 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2079 struct nvme_fc_ctrl *ctrl = op->ctrl;
James Smarte3994412016-12-02 00:28:42 -08002080
James Smart78a7ac22017-04-23 08:30:07 -07002081 atomic_set(&op->state, FCPOP_STATE_IDLE);
2082 op->flags &= ~(FCOP_FLAGS_TERMIO | FCOP_FLAGS_RELEASED |
2083 FCOP_FLAGS_COMPLETE);
James Smarte3994412016-12-02 00:28:42 -08002084
2085 nvme_cleanup_cmd(rq);
James Smarte3994412016-12-02 00:28:42 -08002086 nvme_fc_unmap_data(ctrl, rq, op);
Christoph Hellwig77f02a72017-03-30 13:41:32 +02002087 nvme_complete_rq(rq);
James Smarte3994412016-12-02 00:28:42 -08002088 nvme_fc_ctrl_put(ctrl);
2089
James Smarte3994412016-12-02 00:28:42 -08002090}
2091
James Smart78a7ac22017-04-23 08:30:07 -07002092static void
2093nvme_fc_complete_rq(struct request *rq)
2094{
2095 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2096 struct nvme_fc_ctrl *ctrl = op->ctrl;
2097 unsigned long flags;
2098 bool completed = false;
2099
2100 /*
2101 * the core layer, on controller resets after calling
2102 * nvme_shutdown_ctrl(), calls complete_rq without our
2103 * calling blk_mq_complete_request(), thus there may still
2104 * be live i/o outstanding with the LLDD. Means transport has
2105 * to track complete calls vs fcpio_done calls to know what
2106 * path to take on completes and dones.
2107 */
2108 spin_lock_irqsave(&ctrl->lock, flags);
2109 if (op->flags & FCOP_FLAGS_COMPLETE)
2110 completed = true;
2111 else
2112 op->flags |= FCOP_FLAGS_RELEASED;
2113 spin_unlock_irqrestore(&ctrl->lock, flags);
2114
2115 if (completed)
2116 __nvme_fc_final_op_cleanup(rq);
2117}
2118
James Smarte3994412016-12-02 00:28:42 -08002119/*
2120 * This routine is used by the transport when it needs to find active
2121 * io on a queue that is to be terminated. The transport uses
2122 * blk_mq_tagset_busy_itr() to find the busy requests, which then invoke
2123 * this routine to kill them on a 1 by 1 basis.
2124 *
2125 * As FC allocates FC exchange for each io, the transport must contact
2126 * the LLDD to terminate the exchange, thus releasing the FC exchange.
2127 * After terminating the exchange the LLDD will call the transport's
2128 * normal io done path for the request, but it will have an aborted
2129 * status. The done path will return the io request back to the block
2130 * layer with an error status.
2131 */
2132static void
2133nvme_fc_terminate_exchange(struct request *req, void *data, bool reserved)
2134{
2135 struct nvme_ctrl *nctrl = data;
2136 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2137 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(req);
James Smart78a7ac22017-04-23 08:30:07 -07002138 unsigned long flags;
2139 int status;
James Smarte3994412016-12-02 00:28:42 -08002140
2141 if (!blk_mq_request_started(req))
2142 return;
2143
James Smart78a7ac22017-04-23 08:30:07 -07002144 spin_lock_irqsave(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07002145 if (ctrl->flags & FCCTRL_TERMIO) {
2146 ctrl->iocnt++;
2147 op->flags |= FCOP_FLAGS_TERMIO;
2148 }
James Smart78a7ac22017-04-23 08:30:07 -07002149 spin_unlock_irqrestore(&ctrl->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08002150
James Smart78a7ac22017-04-23 08:30:07 -07002151 status = __nvme_fc_abort_op(ctrl, op);
2152 if (status) {
2153 /*
2154 * if __nvme_fc_abort_op failed the io wasn't
2155 * active. Thus this call path is running in
2156 * parallel to the io complete. Treat as non-error.
2157 */
2158
2159 /* back out the flags/counters */
2160 spin_lock_irqsave(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07002161 if (ctrl->flags & FCCTRL_TERMIO)
2162 ctrl->iocnt--;
James Smart78a7ac22017-04-23 08:30:07 -07002163 op->flags &= ~FCOP_FLAGS_TERMIO;
2164 spin_unlock_irqrestore(&ctrl->lock, flags);
2165 return;
2166 }
2167}
James Smarte3994412016-12-02 00:28:42 -08002168
James Smarte3994412016-12-02 00:28:42 -08002169
James Smart61bff8e2017-04-23 08:30:08 -07002170static const struct blk_mq_ops nvme_fc_mq_ops = {
2171 .queue_rq = nvme_fc_queue_rq,
2172 .complete = nvme_fc_complete_rq,
2173 .init_request = nvme_fc_init_request,
2174 .exit_request = nvme_fc_exit_request,
2175 .reinit_request = nvme_fc_reinit_request,
2176 .init_hctx = nvme_fc_init_hctx,
2177 .poll = nvme_fc_poll,
2178 .timeout = nvme_fc_timeout,
James Smarte3994412016-12-02 00:28:42 -08002179};
2180
2181static int
2182nvme_fc_create_io_queues(struct nvme_fc_ctrl *ctrl)
2183{
2184 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
2185 int ret;
2186
2187 ret = nvme_set_queue_count(&ctrl->ctrl, &opts->nr_io_queues);
2188 if (ret) {
2189 dev_info(ctrl->ctrl.device,
2190 "set_queue_count failed: %d\n", ret);
2191 return ret;
2192 }
2193
2194 ctrl->queue_count = opts->nr_io_queues + 1;
2195 if (!opts->nr_io_queues)
2196 return 0;
2197
James Smarte3994412016-12-02 00:28:42 -08002198 nvme_fc_init_io_queues(ctrl);
2199
2200 memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
2201 ctrl->tag_set.ops = &nvme_fc_mq_ops;
2202 ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
2203 ctrl->tag_set.reserved_tags = 1; /* fabric connect */
2204 ctrl->tag_set.numa_node = NUMA_NO_NODE;
2205 ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
2206 ctrl->tag_set.cmd_size = sizeof(struct nvme_fc_fcp_op) +
2207 (SG_CHUNK_SIZE *
2208 sizeof(struct scatterlist)) +
2209 ctrl->lport->ops->fcprqst_priv_sz;
2210 ctrl->tag_set.driver_data = ctrl;
2211 ctrl->tag_set.nr_hw_queues = ctrl->queue_count - 1;
2212 ctrl->tag_set.timeout = NVME_IO_TIMEOUT;
2213
2214 ret = blk_mq_alloc_tag_set(&ctrl->tag_set);
2215 if (ret)
2216 return ret;
2217
2218 ctrl->ctrl.tagset = &ctrl->tag_set;
2219
2220 ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
2221 if (IS_ERR(ctrl->ctrl.connect_q)) {
2222 ret = PTR_ERR(ctrl->ctrl.connect_q);
2223 goto out_free_tag_set;
2224 }
2225
2226 ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.opts->queue_size);
2227 if (ret)
2228 goto out_cleanup_blk_queue;
2229
2230 ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.opts->queue_size);
2231 if (ret)
2232 goto out_delete_hw_queues;
2233
2234 return 0;
2235
2236out_delete_hw_queues:
2237 nvme_fc_delete_hw_io_queues(ctrl);
2238out_cleanup_blk_queue:
2239 nvme_stop_keep_alive(&ctrl->ctrl);
2240 blk_cleanup_queue(ctrl->ctrl.connect_q);
2241out_free_tag_set:
2242 blk_mq_free_tag_set(&ctrl->tag_set);
2243 nvme_fc_free_io_queues(ctrl);
2244
2245 /* force put free routine to ignore io queues */
2246 ctrl->ctrl.tagset = NULL;
2247
2248 return ret;
2249}
2250
James Smart61bff8e2017-04-23 08:30:08 -07002251static int
2252nvme_fc_reinit_io_queues(struct nvme_fc_ctrl *ctrl)
2253{
2254 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
2255 int ret;
2256
2257 ret = nvme_set_queue_count(&ctrl->ctrl, &opts->nr_io_queues);
2258 if (ret) {
2259 dev_info(ctrl->ctrl.device,
2260 "set_queue_count failed: %d\n", ret);
2261 return ret;
2262 }
2263
2264 /* check for io queues existing */
2265 if (ctrl->queue_count == 1)
2266 return 0;
2267
James Smart61bff8e2017-04-23 08:30:08 -07002268 nvme_fc_init_io_queues(ctrl);
2269
2270 ret = blk_mq_reinit_tagset(&ctrl->tag_set);
2271 if (ret)
2272 goto out_free_io_queues;
2273
2274 ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.opts->queue_size);
2275 if (ret)
2276 goto out_free_io_queues;
2277
2278 ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.opts->queue_size);
2279 if (ret)
2280 goto out_delete_hw_queues;
2281
2282 return 0;
2283
2284out_delete_hw_queues:
2285 nvme_fc_delete_hw_io_queues(ctrl);
2286out_free_io_queues:
2287 nvme_fc_free_io_queues(ctrl);
2288 return ret;
2289}
2290
2291/*
2292 * This routine restarts the controller on the host side, and
2293 * on the link side, recreates the controller association.
2294 */
2295static int
2296nvme_fc_create_association(struct nvme_fc_ctrl *ctrl)
2297{
2298 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
2299 u32 segs;
2300 int ret;
2301 bool changed;
2302
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002303 ++ctrl->ctrl.nr_reconnects;
James Smart61bff8e2017-04-23 08:30:08 -07002304
2305 /*
2306 * Create the admin queue
2307 */
2308
2309 nvme_fc_init_queue(ctrl, 0, NVME_FC_AQ_BLKMQ_DEPTH);
2310
2311 ret = __nvme_fc_create_hw_queue(ctrl, &ctrl->queues[0], 0,
2312 NVME_FC_AQ_BLKMQ_DEPTH);
2313 if (ret)
2314 goto out_free_queue;
2315
2316 ret = nvme_fc_connect_admin_queue(ctrl, &ctrl->queues[0],
2317 NVME_FC_AQ_BLKMQ_DEPTH,
2318 (NVME_FC_AQ_BLKMQ_DEPTH / 4));
2319 if (ret)
2320 goto out_delete_hw_queue;
2321
2322 if (ctrl->ctrl.state != NVME_CTRL_NEW)
2323 blk_mq_start_stopped_hw_queues(ctrl->ctrl.admin_q, true);
2324
2325 ret = nvmf_connect_admin_queue(&ctrl->ctrl);
2326 if (ret)
2327 goto out_disconnect_admin_queue;
2328
2329 /*
2330 * Check controller capabilities
2331 *
2332 * todo:- add code to check if ctrl attributes changed from
2333 * prior connection values
2334 */
2335
2336 ret = nvmf_reg_read64(&ctrl->ctrl, NVME_REG_CAP, &ctrl->cap);
2337 if (ret) {
2338 dev_err(ctrl->ctrl.device,
2339 "prop_get NVME_REG_CAP failed\n");
2340 goto out_disconnect_admin_queue;
2341 }
2342
2343 ctrl->ctrl.sqsize =
2344 min_t(int, NVME_CAP_MQES(ctrl->cap) + 1, ctrl->ctrl.sqsize);
2345
2346 ret = nvme_enable_ctrl(&ctrl->ctrl, ctrl->cap);
2347 if (ret)
2348 goto out_disconnect_admin_queue;
2349
2350 segs = min_t(u32, NVME_FC_MAX_SEGMENTS,
2351 ctrl->lport->ops->max_sgl_segments);
2352 ctrl->ctrl.max_hw_sectors = (segs - 1) << (PAGE_SHIFT - 9);
2353
2354 ret = nvme_init_identify(&ctrl->ctrl);
2355 if (ret)
2356 goto out_disconnect_admin_queue;
2357
2358 /* sanity checks */
2359
2360 /* FC-NVME does not have other data in the capsule */
2361 if (ctrl->ctrl.icdoff) {
2362 dev_err(ctrl->ctrl.device, "icdoff %d is not supported!\n",
2363 ctrl->ctrl.icdoff);
2364 goto out_disconnect_admin_queue;
2365 }
2366
2367 nvme_start_keep_alive(&ctrl->ctrl);
2368
2369 /* FC-NVME supports normal SGL Data Block Descriptors */
2370
2371 if (opts->queue_size > ctrl->ctrl.maxcmd) {
2372 /* warn if maxcmd is lower than queue_size */
2373 dev_warn(ctrl->ctrl.device,
2374 "queue_size %zu > ctrl maxcmd %u, reducing "
2375 "to queue_size\n",
2376 opts->queue_size, ctrl->ctrl.maxcmd);
2377 opts->queue_size = ctrl->ctrl.maxcmd;
2378 }
2379
2380 ret = nvme_fc_init_aen_ops(ctrl);
2381 if (ret)
2382 goto out_term_aen_ops;
2383
2384 /*
2385 * Create the io queues
2386 */
2387
2388 if (ctrl->queue_count > 1) {
2389 if (ctrl->ctrl.state == NVME_CTRL_NEW)
2390 ret = nvme_fc_create_io_queues(ctrl);
2391 else
2392 ret = nvme_fc_reinit_io_queues(ctrl);
2393 if (ret)
2394 goto out_term_aen_ops;
2395 }
2396
2397 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
2398 WARN_ON_ONCE(!changed);
2399
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002400 ctrl->ctrl.nr_reconnects = 0;
James Smart61bff8e2017-04-23 08:30:08 -07002401
James Smart61bff8e2017-04-23 08:30:08 -07002402 if (ctrl->queue_count > 1) {
2403 nvme_start_queues(&ctrl->ctrl);
2404 nvme_queue_scan(&ctrl->ctrl);
2405 nvme_queue_async_events(&ctrl->ctrl);
2406 }
2407
2408 return 0; /* Success */
2409
2410out_term_aen_ops:
2411 nvme_fc_term_aen_ops(ctrl);
2412 nvme_stop_keep_alive(&ctrl->ctrl);
2413out_disconnect_admin_queue:
2414 /* send a Disconnect(association) LS to fc-nvme target */
2415 nvme_fc_xmt_disconnect_assoc(ctrl);
2416out_delete_hw_queue:
2417 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
2418out_free_queue:
2419 nvme_fc_free_queue(&ctrl->queues[0]);
2420
2421 return ret;
2422}
2423
2424/*
2425 * This routine stops operation of the controller on the host side.
2426 * On the host os stack side: Admin and IO queues are stopped,
2427 * outstanding ios on them terminated via FC ABTS.
2428 * On the link side: the association is terminated.
2429 */
2430static void
2431nvme_fc_delete_association(struct nvme_fc_ctrl *ctrl)
2432{
2433 unsigned long flags;
2434
2435 nvme_stop_keep_alive(&ctrl->ctrl);
2436
2437 spin_lock_irqsave(&ctrl->lock, flags);
2438 ctrl->flags |= FCCTRL_TERMIO;
2439 ctrl->iocnt = 0;
2440 spin_unlock_irqrestore(&ctrl->lock, flags);
2441
2442 /*
2443 * If io queues are present, stop them and terminate all outstanding
2444 * ios on them. As FC allocates FC exchange for each io, the
2445 * transport must contact the LLDD to terminate the exchange,
2446 * thus releasing the FC exchange. We use blk_mq_tagset_busy_itr()
2447 * to tell us what io's are busy and invoke a transport routine
2448 * to kill them with the LLDD. After terminating the exchange
2449 * the LLDD will call the transport's normal io done path, but it
2450 * will have an aborted status. The done path will return the
2451 * io requests back to the block layer as part of normal completions
2452 * (but with error status).
2453 */
2454 if (ctrl->queue_count > 1) {
2455 nvme_stop_queues(&ctrl->ctrl);
2456 blk_mq_tagset_busy_iter(&ctrl->tag_set,
2457 nvme_fc_terminate_exchange, &ctrl->ctrl);
2458 }
2459
2460 /*
2461 * Other transports, which don't have link-level contexts bound
2462 * to sqe's, would try to gracefully shutdown the controller by
2463 * writing the registers for shutdown and polling (call
2464 * nvme_shutdown_ctrl()). Given a bunch of i/o was potentially
2465 * just aborted and we will wait on those contexts, and given
2466 * there was no indication of how live the controlelr is on the
2467 * link, don't send more io to create more contexts for the
2468 * shutdown. Let the controller fail via keepalive failure if
2469 * its still present.
2470 */
2471
2472 /*
2473 * clean up the admin queue. Same thing as above.
2474 * use blk_mq_tagset_busy_itr() and the transport routine to
2475 * terminate the exchanges.
2476 */
2477 blk_mq_stop_hw_queues(ctrl->ctrl.admin_q);
2478 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
2479 nvme_fc_terminate_exchange, &ctrl->ctrl);
2480
2481 /* kill the aens as they are a separate path */
2482 nvme_fc_abort_aen_ops(ctrl);
2483
2484 /* wait for all io that had to be aborted */
2485 spin_lock_irqsave(&ctrl->lock, flags);
2486 while (ctrl->iocnt) {
2487 spin_unlock_irqrestore(&ctrl->lock, flags);
2488 msleep(1000);
2489 spin_lock_irqsave(&ctrl->lock, flags);
2490 }
2491 ctrl->flags &= ~FCCTRL_TERMIO;
2492 spin_unlock_irqrestore(&ctrl->lock, flags);
2493
2494 nvme_fc_term_aen_ops(ctrl);
2495
2496 /*
2497 * send a Disconnect(association) LS to fc-nvme target
2498 * Note: could have been sent at top of process, but
2499 * cleaner on link traffic if after the aborts complete.
2500 * Note: if association doesn't exist, association_id will be 0
2501 */
2502 if (ctrl->association_id)
2503 nvme_fc_xmt_disconnect_assoc(ctrl);
2504
2505 if (ctrl->ctrl.tagset) {
2506 nvme_fc_delete_hw_io_queues(ctrl);
2507 nvme_fc_free_io_queues(ctrl);
2508 }
2509
2510 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
2511 nvme_fc_free_queue(&ctrl->queues[0]);
2512}
2513
2514static void
2515nvme_fc_delete_ctrl_work(struct work_struct *work)
2516{
2517 struct nvme_fc_ctrl *ctrl =
2518 container_of(work, struct nvme_fc_ctrl, delete_work);
2519
2520 cancel_work_sync(&ctrl->reset_work);
2521 cancel_delayed_work_sync(&ctrl->connect_work);
2522
2523 /*
2524 * kill the association on the link side. this will block
2525 * waiting for io to terminate
2526 */
2527 nvme_fc_delete_association(ctrl);
2528
2529 /*
2530 * tear down the controller
James Smarta5321aa2017-05-15 17:10:18 -07002531 * After the last reference on the nvme ctrl is removed,
2532 * the transport nvme_fc_nvme_ctrl_freed() callback will be
2533 * invoked. From there, the transport will tear down it's
2534 * logical queues and association.
James Smart61bff8e2017-04-23 08:30:08 -07002535 */
2536 nvme_uninit_ctrl(&ctrl->ctrl);
2537
2538 nvme_put_ctrl(&ctrl->ctrl);
2539}
2540
James Smart5bbecdb2017-05-15 17:10:16 -07002541static bool
2542__nvme_fc_schedule_delete_work(struct nvme_fc_ctrl *ctrl)
2543{
2544 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING))
2545 return true;
2546
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002547 if (!queue_work(nvme_wq, &ctrl->delete_work))
James Smart5bbecdb2017-05-15 17:10:16 -07002548 return true;
2549
2550 return false;
2551}
2552
James Smart61bff8e2017-04-23 08:30:08 -07002553static int
2554__nvme_fc_del_ctrl(struct nvme_fc_ctrl *ctrl)
2555{
James Smart5bbecdb2017-05-15 17:10:16 -07002556 return __nvme_fc_schedule_delete_work(ctrl) ? -EBUSY : 0;
James Smart61bff8e2017-04-23 08:30:08 -07002557}
2558
2559/*
2560 * Request from nvme core layer to delete the controller
2561 */
2562static int
2563nvme_fc_del_nvme_ctrl(struct nvme_ctrl *nctrl)
2564{
2565 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2566 int ret;
2567
2568 if (!kref_get_unless_zero(&ctrl->ctrl.kref))
2569 return -EBUSY;
2570
2571 ret = __nvme_fc_del_ctrl(ctrl);
2572
2573 if (!ret)
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002574 flush_workqueue(nvme_wq);
James Smart61bff8e2017-04-23 08:30:08 -07002575
2576 nvme_put_ctrl(&ctrl->ctrl);
2577
2578 return ret;
2579}
2580
2581static void
James Smart5bbecdb2017-05-15 17:10:16 -07002582nvme_fc_reconnect_or_delete(struct nvme_fc_ctrl *ctrl, int status)
2583{
2584 /* If we are resetting/deleting then do nothing */
2585 if (ctrl->ctrl.state != NVME_CTRL_RECONNECTING) {
2586 WARN_ON_ONCE(ctrl->ctrl.state == NVME_CTRL_NEW ||
2587 ctrl->ctrl.state == NVME_CTRL_LIVE);
2588 return;
2589 }
2590
James Smart589ff772017-05-15 17:10:19 -07002591 dev_info(ctrl->ctrl.device,
James Smart5bbecdb2017-05-15 17:10:16 -07002592 "NVME-FC{%d}: reset: Reconnect attempt failed (%d)\n",
2593 ctrl->cnum, status);
2594
2595 if (nvmf_should_reconnect(&ctrl->ctrl)) {
2596 dev_info(ctrl->ctrl.device,
2597 "NVME-FC{%d}: Reconnect attempt in %d seconds.\n",
2598 ctrl->cnum, ctrl->ctrl.opts->reconnect_delay);
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002599 queue_delayed_work(nvme_wq, &ctrl->connect_work,
James Smart5bbecdb2017-05-15 17:10:16 -07002600 ctrl->ctrl.opts->reconnect_delay * HZ);
2601 } else {
James Smart589ff772017-05-15 17:10:19 -07002602 dev_warn(ctrl->ctrl.device,
James Smart5bbecdb2017-05-15 17:10:16 -07002603 "NVME-FC{%d}: Max reconnect attempts (%d) "
2604 "reached. Removing controller\n",
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002605 ctrl->cnum, ctrl->ctrl.nr_reconnects);
James Smart5bbecdb2017-05-15 17:10:16 -07002606 WARN_ON(__nvme_fc_schedule_delete_work(ctrl));
2607 }
2608}
2609
2610static void
James Smart61bff8e2017-04-23 08:30:08 -07002611nvme_fc_reset_ctrl_work(struct work_struct *work)
2612{
2613 struct nvme_fc_ctrl *ctrl =
2614 container_of(work, struct nvme_fc_ctrl, reset_work);
2615 int ret;
2616
2617 /* will block will waiting for io to terminate */
2618 nvme_fc_delete_association(ctrl);
2619
2620 ret = nvme_fc_create_association(ctrl);
James Smart5bbecdb2017-05-15 17:10:16 -07002621 if (ret)
2622 nvme_fc_reconnect_or_delete(ctrl, ret);
2623 else
James Smart61bff8e2017-04-23 08:30:08 -07002624 dev_info(ctrl->ctrl.device,
2625 "NVME-FC{%d}: controller reset complete\n", ctrl->cnum);
2626}
2627
2628/*
2629 * called by the nvme core layer, for sysfs interface that requests
2630 * a reset of the nvme controller
2631 */
2632static int
2633nvme_fc_reset_nvme_ctrl(struct nvme_ctrl *nctrl)
2634{
2635 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2636
James Smart589ff772017-05-15 17:10:19 -07002637 dev_info(ctrl->ctrl.device,
James Smart61bff8e2017-04-23 08:30:08 -07002638 "NVME-FC{%d}: admin requested controller reset\n", ctrl->cnum);
2639
2640 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING))
2641 return -EBUSY;
2642
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002643 if (!queue_work(nvme_wq, &ctrl->reset_work))
James Smart61bff8e2017-04-23 08:30:08 -07002644 return -EBUSY;
2645
2646 flush_work(&ctrl->reset_work);
2647
2648 return 0;
2649}
2650
2651static const struct nvme_ctrl_ops nvme_fc_ctrl_ops = {
2652 .name = "fc",
2653 .module = THIS_MODULE,
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02002654 .flags = NVME_F_FABRICS,
James Smart61bff8e2017-04-23 08:30:08 -07002655 .reg_read32 = nvmf_reg_read32,
2656 .reg_read64 = nvmf_reg_read64,
2657 .reg_write32 = nvmf_reg_write32,
2658 .reset_ctrl = nvme_fc_reset_nvme_ctrl,
2659 .free_ctrl = nvme_fc_nvme_ctrl_freed,
2660 .submit_async_event = nvme_fc_submit_async_event,
2661 .delete_ctrl = nvme_fc_del_nvme_ctrl,
2662 .get_subsysnqn = nvmf_get_subsysnqn,
2663 .get_address = nvmf_get_address,
2664};
2665
2666static void
2667nvme_fc_connect_ctrl_work(struct work_struct *work)
2668{
2669 int ret;
2670
2671 struct nvme_fc_ctrl *ctrl =
2672 container_of(to_delayed_work(work),
2673 struct nvme_fc_ctrl, connect_work);
2674
2675 ret = nvme_fc_create_association(ctrl);
James Smart5bbecdb2017-05-15 17:10:16 -07002676 if (ret)
2677 nvme_fc_reconnect_or_delete(ctrl, ret);
2678 else
James Smart61bff8e2017-04-23 08:30:08 -07002679 dev_info(ctrl->ctrl.device,
2680 "NVME-FC{%d}: controller reconnect complete\n",
2681 ctrl->cnum);
2682}
2683
2684
2685static const struct blk_mq_ops nvme_fc_admin_mq_ops = {
2686 .queue_rq = nvme_fc_queue_rq,
2687 .complete = nvme_fc_complete_rq,
Christoph Hellwig76f983c2017-06-13 09:15:20 +02002688 .init_request = nvme_fc_init_request,
James Smart61bff8e2017-04-23 08:30:08 -07002689 .exit_request = nvme_fc_exit_request,
2690 .reinit_request = nvme_fc_reinit_request,
2691 .init_hctx = nvme_fc_init_admin_hctx,
2692 .timeout = nvme_fc_timeout,
2693};
2694
James Smarte3994412016-12-02 00:28:42 -08002695
2696static struct nvme_ctrl *
James Smart61bff8e2017-04-23 08:30:08 -07002697nvme_fc_init_ctrl(struct device *dev, struct nvmf_ctrl_options *opts,
James Smarte3994412016-12-02 00:28:42 -08002698 struct nvme_fc_lport *lport, struct nvme_fc_rport *rport)
2699{
2700 struct nvme_fc_ctrl *ctrl;
2701 unsigned long flags;
2702 int ret, idx;
James Smarte3994412016-12-02 00:28:42 -08002703
James Smart85e6a6a2017-05-05 16:13:15 -07002704 if (!(rport->remoteport.port_role &
2705 (FC_PORT_ROLE_NVME_DISCOVERY | FC_PORT_ROLE_NVME_TARGET))) {
2706 ret = -EBADR;
2707 goto out_fail;
2708 }
2709
James Smarte3994412016-12-02 00:28:42 -08002710 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
2711 if (!ctrl) {
2712 ret = -ENOMEM;
2713 goto out_fail;
2714 }
2715
2716 idx = ida_simple_get(&nvme_fc_ctrl_cnt, 0, 0, GFP_KERNEL);
2717 if (idx < 0) {
2718 ret = -ENOSPC;
2719 goto out_free_ctrl;
2720 }
2721
2722 ctrl->ctrl.opts = opts;
2723 INIT_LIST_HEAD(&ctrl->ctrl_list);
James Smarte3994412016-12-02 00:28:42 -08002724 ctrl->lport = lport;
2725 ctrl->rport = rport;
2726 ctrl->dev = lport->dev;
James Smarte3994412016-12-02 00:28:42 -08002727 ctrl->cnum = idx;
2728
James Smarte3994412016-12-02 00:28:42 -08002729 get_device(ctrl->dev);
2730 kref_init(&ctrl->ref);
2731
James Smart61bff8e2017-04-23 08:30:08 -07002732 INIT_WORK(&ctrl->delete_work, nvme_fc_delete_ctrl_work);
2733 INIT_WORK(&ctrl->reset_work, nvme_fc_reset_ctrl_work);
2734 INIT_DELAYED_WORK(&ctrl->connect_work, nvme_fc_connect_ctrl_work);
James Smarte3994412016-12-02 00:28:42 -08002735 spin_lock_init(&ctrl->lock);
2736
2737 /* io queue count */
2738 ctrl->queue_count = min_t(unsigned int,
2739 opts->nr_io_queues,
2740 lport->ops->max_hw_queues);
2741 opts->nr_io_queues = ctrl->queue_count; /* so opts has valid value */
2742 ctrl->queue_count++; /* +1 for admin queue */
2743
2744 ctrl->ctrl.sqsize = opts->queue_size - 1;
2745 ctrl->ctrl.kato = opts->kato;
2746
2747 ret = -ENOMEM;
2748 ctrl->queues = kcalloc(ctrl->queue_count, sizeof(struct nvme_fc_queue),
2749 GFP_KERNEL);
2750 if (!ctrl->queues)
James Smart61bff8e2017-04-23 08:30:08 -07002751 goto out_free_ida;
James Smarte3994412016-12-02 00:28:42 -08002752
James Smart61bff8e2017-04-23 08:30:08 -07002753 memset(&ctrl->admin_tag_set, 0, sizeof(ctrl->admin_tag_set));
2754 ctrl->admin_tag_set.ops = &nvme_fc_admin_mq_ops;
2755 ctrl->admin_tag_set.queue_depth = NVME_FC_AQ_BLKMQ_DEPTH;
2756 ctrl->admin_tag_set.reserved_tags = 2; /* fabric connect + Keep-Alive */
2757 ctrl->admin_tag_set.numa_node = NUMA_NO_NODE;
2758 ctrl->admin_tag_set.cmd_size = sizeof(struct nvme_fc_fcp_op) +
2759 (SG_CHUNK_SIZE *
2760 sizeof(struct scatterlist)) +
2761 ctrl->lport->ops->fcprqst_priv_sz;
2762 ctrl->admin_tag_set.driver_data = ctrl;
2763 ctrl->admin_tag_set.nr_hw_queues = 1;
2764 ctrl->admin_tag_set.timeout = ADMIN_TIMEOUT;
2765
2766 ret = blk_mq_alloc_tag_set(&ctrl->admin_tag_set);
James Smarte3994412016-12-02 00:28:42 -08002767 if (ret)
James Smart61bff8e2017-04-23 08:30:08 -07002768 goto out_free_queues;
James Smarte3994412016-12-02 00:28:42 -08002769
James Smart61bff8e2017-04-23 08:30:08 -07002770 ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
2771 if (IS_ERR(ctrl->ctrl.admin_q)) {
2772 ret = PTR_ERR(ctrl->ctrl.admin_q);
2773 goto out_free_admin_tag_set;
James Smarte3994412016-12-02 00:28:42 -08002774 }
2775
James Smart61bff8e2017-04-23 08:30:08 -07002776 /*
2777 * Would have been nice to init io queues tag set as well.
2778 * However, we require interaction from the controller
2779 * for max io queue count before we can do so.
2780 * Defer this to the connect path.
2781 */
James Smarte3994412016-12-02 00:28:42 -08002782
James Smart61bff8e2017-04-23 08:30:08 -07002783 ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_fc_ctrl_ops, 0);
James Smarte3994412016-12-02 00:28:42 -08002784 if (ret)
James Smart61bff8e2017-04-23 08:30:08 -07002785 goto out_cleanup_admin_q;
James Smarte3994412016-12-02 00:28:42 -08002786
James Smart61bff8e2017-04-23 08:30:08 -07002787 /* at this point, teardown path changes to ref counting on nvme ctrl */
James Smarte3994412016-12-02 00:28:42 -08002788
2789 spin_lock_irqsave(&rport->lock, flags);
2790 list_add_tail(&ctrl->ctrl_list, &rport->ctrl_list);
2791 spin_unlock_irqrestore(&rport->lock, flags);
2792
James Smart61bff8e2017-04-23 08:30:08 -07002793 ret = nvme_fc_create_association(ctrl);
2794 if (ret) {
Ewan D. Milnede414472017-04-24 13:24:16 -04002795 ctrl->ctrl.opts = NULL;
James Smart61bff8e2017-04-23 08:30:08 -07002796 /* initiate nvme ctrl ref counting teardown */
2797 nvme_uninit_ctrl(&ctrl->ctrl);
James Smart24b7f052017-06-05 15:03:42 -07002798 nvme_put_ctrl(&ctrl->ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002799
2800 /* as we're past the point where we transition to the ref
2801 * counting teardown path, if we return a bad pointer here,
2802 * the calling routine, thinking it's prior to the
2803 * transition, will do an rport put. Since the teardown
2804 * path also does a rport put, we do an extra get here to
2805 * so proper order/teardown happens.
2806 */
2807 nvme_fc_rport_get(rport);
2808
2809 if (ret > 0)
2810 ret = -EIO;
2811 return ERR_PTR(ret);
James Smarte3994412016-12-02 00:28:42 -08002812 }
2813
James Smart2cb657b2017-05-15 17:10:22 -07002814 kref_get(&ctrl->ctrl.kref);
2815
James Smart61bff8e2017-04-23 08:30:08 -07002816 dev_info(ctrl->ctrl.device,
2817 "NVME-FC{%d}: new ctrl: NQN \"%s\"\n",
2818 ctrl->cnum, ctrl->ctrl.opts->subsysnqn);
2819
James Smarte3994412016-12-02 00:28:42 -08002820 return &ctrl->ctrl;
2821
James Smart61bff8e2017-04-23 08:30:08 -07002822out_cleanup_admin_q:
2823 blk_cleanup_queue(ctrl->ctrl.admin_q);
2824out_free_admin_tag_set:
2825 blk_mq_free_tag_set(&ctrl->admin_tag_set);
2826out_free_queues:
2827 kfree(ctrl->queues);
James Smarte3994412016-12-02 00:28:42 -08002828out_free_ida:
James Smart61bff8e2017-04-23 08:30:08 -07002829 put_device(ctrl->dev);
James Smarte3994412016-12-02 00:28:42 -08002830 ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
2831out_free_ctrl:
2832 kfree(ctrl);
2833out_fail:
James Smarte3994412016-12-02 00:28:42 -08002834 /* exit via here doesn't follow ctlr ref points */
2835 return ERR_PTR(ret);
2836}
2837
2838enum {
2839 FCT_TRADDR_ERR = 0,
2840 FCT_TRADDR_WWNN = 1 << 0,
2841 FCT_TRADDR_WWPN = 1 << 1,
2842};
2843
2844struct nvmet_fc_traddr {
2845 u64 nn;
2846 u64 pn;
2847};
2848
2849static const match_table_t traddr_opt_tokens = {
2850 { FCT_TRADDR_WWNN, "nn-%s" },
2851 { FCT_TRADDR_WWPN, "pn-%s" },
2852 { FCT_TRADDR_ERR, NULL }
2853};
2854
2855static int
2856nvme_fc_parse_address(struct nvmet_fc_traddr *traddr, char *buf)
2857{
2858 substring_t args[MAX_OPT_ARGS];
2859 char *options, *o, *p;
2860 int token, ret = 0;
2861 u64 token64;
2862
2863 options = o = kstrdup(buf, GFP_KERNEL);
2864 if (!options)
2865 return -ENOMEM;
2866
2867 while ((p = strsep(&o, ":\n")) != NULL) {
2868 if (!*p)
2869 continue;
2870
2871 token = match_token(p, traddr_opt_tokens, args);
2872 switch (token) {
2873 case FCT_TRADDR_WWNN:
2874 if (match_u64(args, &token64)) {
2875 ret = -EINVAL;
2876 goto out;
2877 }
2878 traddr->nn = token64;
2879 break;
2880 case FCT_TRADDR_WWPN:
2881 if (match_u64(args, &token64)) {
2882 ret = -EINVAL;
2883 goto out;
2884 }
2885 traddr->pn = token64;
2886 break;
2887 default:
2888 pr_warn("unknown traddr token or missing value '%s'\n",
2889 p);
2890 ret = -EINVAL;
2891 goto out;
2892 }
2893 }
2894
2895out:
2896 kfree(options);
2897 return ret;
2898}
2899
2900static struct nvme_ctrl *
2901nvme_fc_create_ctrl(struct device *dev, struct nvmf_ctrl_options *opts)
2902{
2903 struct nvme_fc_lport *lport;
2904 struct nvme_fc_rport *rport;
James Smart61bff8e2017-04-23 08:30:08 -07002905 struct nvme_ctrl *ctrl;
James Smarte3994412016-12-02 00:28:42 -08002906 struct nvmet_fc_traddr laddr = { 0L, 0L };
2907 struct nvmet_fc_traddr raddr = { 0L, 0L };
2908 unsigned long flags;
2909 int ret;
2910
2911 ret = nvme_fc_parse_address(&raddr, opts->traddr);
2912 if (ret || !raddr.nn || !raddr.pn)
2913 return ERR_PTR(-EINVAL);
2914
2915 ret = nvme_fc_parse_address(&laddr, opts->host_traddr);
2916 if (ret || !laddr.nn || !laddr.pn)
2917 return ERR_PTR(-EINVAL);
2918
2919 /* find the host and remote ports to connect together */
2920 spin_lock_irqsave(&nvme_fc_lock, flags);
2921 list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
2922 if (lport->localport.node_name != laddr.nn ||
2923 lport->localport.port_name != laddr.pn)
2924 continue;
2925
2926 list_for_each_entry(rport, &lport->endp_list, endp_list) {
2927 if (rport->remoteport.node_name != raddr.nn ||
2928 rport->remoteport.port_name != raddr.pn)
2929 continue;
2930
2931 /* if fail to get reference fall through. Will error */
2932 if (!nvme_fc_rport_get(rport))
2933 break;
2934
2935 spin_unlock_irqrestore(&nvme_fc_lock, flags);
2936
James Smart61bff8e2017-04-23 08:30:08 -07002937 ctrl = nvme_fc_init_ctrl(dev, opts, lport, rport);
2938 if (IS_ERR(ctrl))
2939 nvme_fc_rport_put(rport);
2940 return ctrl;
James Smarte3994412016-12-02 00:28:42 -08002941 }
2942 }
2943 spin_unlock_irqrestore(&nvme_fc_lock, flags);
2944
2945 return ERR_PTR(-ENOENT);
2946}
2947
2948
2949static struct nvmf_transport_ops nvme_fc_transport = {
2950 .name = "fc",
2951 .required_opts = NVMF_OPT_TRADDR | NVMF_OPT_HOST_TRADDR,
James Smart5bbecdb2017-05-15 17:10:16 -07002952 .allowed_opts = NVMF_OPT_RECONNECT_DELAY | NVMF_OPT_CTRL_LOSS_TMO,
James Smarte3994412016-12-02 00:28:42 -08002953 .create_ctrl = nvme_fc_create_ctrl,
2954};
2955
2956static int __init nvme_fc_init_module(void)
2957{
Sagi Grimberg9a6327d2017-06-07 20:31:55 +02002958 return nvmf_register_transport(&nvme_fc_transport);
James Smarte3994412016-12-02 00:28:42 -08002959}
2960
2961static void __exit nvme_fc_exit_module(void)
2962{
2963 /* sanity check - all lports should be removed */
2964 if (!list_empty(&nvme_fc_lport_list))
2965 pr_warn("%s: localport list not empty\n", __func__);
2966
2967 nvmf_unregister_transport(&nvme_fc_transport);
2968
James Smarte3994412016-12-02 00:28:42 -08002969 ida_destroy(&nvme_fc_local_port_cnt);
2970 ida_destroy(&nvme_fc_ctrl_cnt);
2971}
2972
2973module_init(nvme_fc_init_module);
2974module_exit(nvme_fc_exit_module);
2975
2976MODULE_LICENSE("GPL v2");