blob: b528a2f5826cbfe19b22aadd7e09e1ceff512cb6 [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
James Smarte3994412016-12-02 00:28:42 -080033enum nvme_fc_queue_flags {
Jens Axboe26c0a262017-11-24 10:12:33 -070034 NVME_FC_Q_CONNECTED = 0,
35 NVME_FC_Q_LIVE,
James Smarte3994412016-12-02 00:28:42 -080036};
37
James Smartac7fe822017-10-25 16:43:15 -070038#define NVME_FC_DEFAULT_DEV_LOSS_TMO 60 /* seconds */
39
James Smarte3994412016-12-02 00:28:42 -080040struct nvme_fc_queue {
41 struct nvme_fc_ctrl *ctrl;
42 struct device *dev;
43 struct blk_mq_hw_ctx *hctx;
44 void *lldd_handle;
James Smarte3994412016-12-02 00:28:42 -080045 size_t cmnd_capsule_len;
46 u32 qnum;
47 u32 rqcnt;
48 u32 seqno;
49
50 u64 connection_id;
51 atomic_t csn;
52
53 unsigned long flags;
54} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
55
James Smart8d64daf2017-04-11 11:35:09 -070056enum nvme_fcop_flags {
57 FCOP_FLAGS_TERMIO = (1 << 0),
James Smartc3aedd22018-02-06 06:48:30 -080058 FCOP_FLAGS_AEN = (1 << 1),
James Smart8d64daf2017-04-11 11:35:09 -070059};
60
James Smarte3994412016-12-02 00:28:42 -080061struct nvmefc_ls_req_op {
62 struct nvmefc_ls_req ls_req;
63
James Smartc913a8b2017-04-11 11:35:08 -070064 struct nvme_fc_rport *rport;
James Smarte3994412016-12-02 00:28:42 -080065 struct nvme_fc_queue *queue;
66 struct request *rq;
James Smart8d64daf2017-04-11 11:35:09 -070067 u32 flags;
James Smarte3994412016-12-02 00:28:42 -080068
69 int ls_error;
70 struct completion ls_done;
James Smartc913a8b2017-04-11 11:35:08 -070071 struct list_head lsreq_list; /* rport->ls_req_list */
James Smarte3994412016-12-02 00:28:42 -080072 bool req_queued;
73};
74
75enum nvme_fcpop_state {
76 FCPOP_STATE_UNINIT = 0,
77 FCPOP_STATE_IDLE = 1,
78 FCPOP_STATE_ACTIVE = 2,
79 FCPOP_STATE_ABORTED = 3,
James Smart78a7ac22017-04-23 08:30:07 -070080 FCPOP_STATE_COMPLETE = 4,
James Smarte3994412016-12-02 00:28:42 -080081};
82
83struct nvme_fc_fcp_op {
84 struct nvme_request nreq; /*
85 * nvme/host/core.c
86 * requires this to be
87 * the 1st element in the
88 * private structure
89 * associated with the
90 * request.
91 */
92 struct nvmefc_fcp_req fcp_req;
93
94 struct nvme_fc_ctrl *ctrl;
95 struct nvme_fc_queue *queue;
96 struct request *rq;
97
98 atomic_t state;
James Smart78a7ac22017-04-23 08:30:07 -070099 u32 flags;
James Smarte3994412016-12-02 00:28:42 -0800100 u32 rqno;
101 u32 nents;
102
103 struct nvme_fc_cmd_iu cmd_iu;
104 struct nvme_fc_ersp_iu rsp_iu;
105};
106
107struct nvme_fc_lport {
108 struct nvme_fc_local_port localport;
109
110 struct ida endp_cnt;
111 struct list_head port_list; /* nvme_fc_port_list */
112 struct list_head endp_list;
113 struct device *dev; /* physical device for dma */
114 struct nvme_fc_port_template *ops;
115 struct kref ref;
James Smart158bfb82017-11-03 08:13:17 -0700116 atomic_t act_rport_cnt;
James Smarte3994412016-12-02 00:28:42 -0800117} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
118
119struct nvme_fc_rport {
120 struct nvme_fc_remote_port remoteport;
121
122 struct list_head endp_list; /* for lport->endp_list */
123 struct list_head ctrl_list;
James Smartc913a8b2017-04-11 11:35:08 -0700124 struct list_head ls_req_list;
125 struct device *dev; /* physical device for dma */
126 struct nvme_fc_lport *lport;
James Smarte3994412016-12-02 00:28:42 -0800127 spinlock_t lock;
128 struct kref ref;
James Smart158bfb82017-11-03 08:13:17 -0700129 atomic_t act_ctrl_cnt;
James Smart2b632972017-10-25 16:43:17 -0700130 unsigned long dev_loss_end;
James Smarte3994412016-12-02 00:28:42 -0800131} __aligned(sizeof(u64)); /* alignment for other things alloc'd with */
132
James Smart61bff8e2017-04-23 08:30:08 -0700133enum nvme_fcctrl_flags {
134 FCCTRL_TERMIO = (1 << 0),
James Smarte3994412016-12-02 00:28:42 -0800135};
136
137struct nvme_fc_ctrl {
138 spinlock_t lock;
139 struct nvme_fc_queue *queues;
James Smarte3994412016-12-02 00:28:42 -0800140 struct device *dev;
141 struct nvme_fc_lport *lport;
142 struct nvme_fc_rport *rport;
143 u32 cnum;
144
James Smart4c984152018-06-13 14:07:37 -0700145 bool ioq_live;
James Smart158bfb82017-11-03 08:13:17 -0700146 bool assoc_active;
James Smarte3994412016-12-02 00:28:42 -0800147 u64 association_id;
148
James Smarte3994412016-12-02 00:28:42 -0800149 struct list_head ctrl_list; /* rport->ctrl_list */
James Smarte3994412016-12-02 00:28:42 -0800150
151 struct blk_mq_tag_set admin_tag_set;
152 struct blk_mq_tag_set tag_set;
153
James Smart61bff8e2017-04-23 08:30:08 -0700154 struct delayed_work connect_work;
James Smart61bff8e2017-04-23 08:30:08 -0700155
James Smarte3994412016-12-02 00:28:42 -0800156 struct kref ref;
James Smart61bff8e2017-04-23 08:30:08 -0700157 u32 flags;
158 u32 iocnt;
James Smart36715cf2017-05-22 15:28:42 -0700159 wait_queue_head_t ioabort_wait;
James Smarte3994412016-12-02 00:28:42 -0800160
Keith Busch38dabe22017-11-07 15:13:10 -0700161 struct nvme_fc_fcp_op aen_ops[NVME_NR_AEN_COMMANDS];
James Smarte3994412016-12-02 00:28:42 -0800162
163 struct nvme_ctrl ctrl;
164};
165
166static inline struct nvme_fc_ctrl *
167to_fc_ctrl(struct nvme_ctrl *ctrl)
168{
169 return container_of(ctrl, struct nvme_fc_ctrl, ctrl);
170}
171
172static inline struct nvme_fc_lport *
173localport_to_lport(struct nvme_fc_local_port *portptr)
174{
175 return container_of(portptr, struct nvme_fc_lport, localport);
176}
177
178static inline struct nvme_fc_rport *
179remoteport_to_rport(struct nvme_fc_remote_port *portptr)
180{
181 return container_of(portptr, struct nvme_fc_rport, remoteport);
182}
183
184static inline struct nvmefc_ls_req_op *
185ls_req_to_lsop(struct nvmefc_ls_req *lsreq)
186{
187 return container_of(lsreq, struct nvmefc_ls_req_op, ls_req);
188}
189
190static inline struct nvme_fc_fcp_op *
191fcp_req_to_fcp_op(struct nvmefc_fcp_req *fcpreq)
192{
193 return container_of(fcpreq, struct nvme_fc_fcp_op, fcp_req);
194}
195
196
197
198/* *************************** Globals **************************** */
199
200
201static DEFINE_SPINLOCK(nvme_fc_lock);
202
203static LIST_HEAD(nvme_fc_lport_list);
204static DEFINE_IDA(nvme_fc_local_port_cnt);
205static DEFINE_IDA(nvme_fc_ctrl_cnt);
206
James Smarte3994412016-12-02 00:28:42 -0800207
208
James Smart5f568552017-09-14 10:38:41 -0700209/*
210 * These items are short-term. They will eventually be moved into
211 * a generic FC class. See comments in module init.
212 */
213static struct class *fc_class;
214static struct device *fc_udev_device;
215
James Smarte3994412016-12-02 00:28:42 -0800216
217/* *********************** FC-NVME Port Management ************************ */
218
James Smarte3994412016-12-02 00:28:42 -0800219static void __nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *,
220 struct nvme_fc_queue *, unsigned int);
221
James Smart5533d422017-07-31 13:20:30 -0700222static void
223nvme_fc_free_lport(struct kref *ref)
224{
225 struct nvme_fc_lport *lport =
226 container_of(ref, struct nvme_fc_lport, ref);
227 unsigned long flags;
228
229 WARN_ON(lport->localport.port_state != FC_OBJSTATE_DELETED);
230 WARN_ON(!list_empty(&lport->endp_list));
231
232 /* remove from transport list */
233 spin_lock_irqsave(&nvme_fc_lock, flags);
234 list_del(&lport->port_list);
235 spin_unlock_irqrestore(&nvme_fc_lock, flags);
236
James Smart5533d422017-07-31 13:20:30 -0700237 ida_simple_remove(&nvme_fc_local_port_cnt, lport->localport.port_num);
238 ida_destroy(&lport->endp_cnt);
239
240 put_device(lport->dev);
241
242 kfree(lport);
243}
244
245static void
246nvme_fc_lport_put(struct nvme_fc_lport *lport)
247{
248 kref_put(&lport->ref, nvme_fc_free_lport);
249}
250
251static int
252nvme_fc_lport_get(struct nvme_fc_lport *lport)
253{
254 return kref_get_unless_zero(&lport->ref);
255}
256
257
258static struct nvme_fc_lport *
James Smartc5760f32017-11-03 08:13:16 -0700259nvme_fc_attach_to_unreg_lport(struct nvme_fc_port_info *pinfo,
260 struct nvme_fc_port_template *ops,
261 struct device *dev)
James Smart5533d422017-07-31 13:20:30 -0700262{
263 struct nvme_fc_lport *lport;
264 unsigned long flags;
265
266 spin_lock_irqsave(&nvme_fc_lock, flags);
267
268 list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
269 if (lport->localport.node_name != pinfo->node_name ||
270 lport->localport.port_name != pinfo->port_name)
271 continue;
272
James Smartc5760f32017-11-03 08:13:16 -0700273 if (lport->dev != dev) {
274 lport = ERR_PTR(-EXDEV);
275 goto out_done;
276 }
277
James Smart5533d422017-07-31 13:20:30 -0700278 if (lport->localport.port_state != FC_OBJSTATE_DELETED) {
279 lport = ERR_PTR(-EEXIST);
280 goto out_done;
281 }
282
283 if (!nvme_fc_lport_get(lport)) {
284 /*
285 * fails if ref cnt already 0. If so,
286 * act as if lport already deleted
287 */
288 lport = NULL;
289 goto out_done;
290 }
291
292 /* resume the lport */
293
James Smartc5760f32017-11-03 08:13:16 -0700294 lport->ops = ops;
James Smart5533d422017-07-31 13:20:30 -0700295 lport->localport.port_role = pinfo->port_role;
296 lport->localport.port_id = pinfo->port_id;
297 lport->localport.port_state = FC_OBJSTATE_ONLINE;
298
299 spin_unlock_irqrestore(&nvme_fc_lock, flags);
300
301 return lport;
302 }
303
304 lport = NULL;
305
306out_done:
307 spin_unlock_irqrestore(&nvme_fc_lock, flags);
308
309 return lport;
310}
James Smarte3994412016-12-02 00:28:42 -0800311
312/**
313 * nvme_fc_register_localport - transport entry point called by an
314 * LLDD to register the existence of a NVME
315 * host FC port.
316 * @pinfo: pointer to information about the port to be registered
317 * @template: LLDD entrypoints and operational parameters for the port
318 * @dev: physical hardware device node port corresponds to. Will be
319 * used for DMA mappings
320 * @lport_p: pointer to a local port pointer. Upon success, the routine
321 * will allocate a nvme_fc_local_port structure and place its
322 * address in the local port pointer. Upon failure, local port
323 * pointer will be set to 0.
324 *
325 * Returns:
326 * a completion status. Must be 0 upon success; a negative errno
327 * (ex: -ENXIO) upon failure.
328 */
329int
330nvme_fc_register_localport(struct nvme_fc_port_info *pinfo,
331 struct nvme_fc_port_template *template,
332 struct device *dev,
333 struct nvme_fc_local_port **portptr)
334{
335 struct nvme_fc_lport *newrec;
336 unsigned long flags;
337 int ret, idx;
338
339 if (!template->localport_delete || !template->remoteport_delete ||
340 !template->ls_req || !template->fcp_io ||
341 !template->ls_abort || !template->fcp_abort ||
342 !template->max_hw_queues || !template->max_sgl_segments ||
343 !template->max_dif_sgl_segments || !template->dma_boundary) {
344 ret = -EINVAL;
345 goto out_reghost_failed;
346 }
347
James Smart5533d422017-07-31 13:20:30 -0700348 /*
349 * look to see if there is already a localport that had been
350 * deregistered and in the process of waiting for all the
351 * references to fully be removed. If the references haven't
352 * expired, we can simply re-enable the localport. Remoteports
353 * and controller reconnections should resume naturally.
354 */
James Smartc5760f32017-11-03 08:13:16 -0700355 newrec = nvme_fc_attach_to_unreg_lport(pinfo, template, dev);
James Smart5533d422017-07-31 13:20:30 -0700356
357 /* found an lport, but something about its state is bad */
358 if (IS_ERR(newrec)) {
359 ret = PTR_ERR(newrec);
360 goto out_reghost_failed;
361
362 /* found existing lport, which was resumed */
363 } else if (newrec) {
364 *portptr = &newrec->localport;
365 return 0;
366 }
367
368 /* nothing found - allocate a new localport struct */
369
James Smarte3994412016-12-02 00:28:42 -0800370 newrec = kmalloc((sizeof(*newrec) + template->local_priv_sz),
371 GFP_KERNEL);
372 if (!newrec) {
373 ret = -ENOMEM;
374 goto out_reghost_failed;
375 }
376
377 idx = ida_simple_get(&nvme_fc_local_port_cnt, 0, 0, GFP_KERNEL);
378 if (idx < 0) {
379 ret = -ENOSPC;
380 goto out_fail_kfree;
381 }
382
383 if (!get_device(dev) && dev) {
384 ret = -ENODEV;
385 goto out_ida_put;
386 }
387
388 INIT_LIST_HEAD(&newrec->port_list);
389 INIT_LIST_HEAD(&newrec->endp_list);
390 kref_init(&newrec->ref);
James Smart158bfb82017-11-03 08:13:17 -0700391 atomic_set(&newrec->act_rport_cnt, 0);
James Smarte3994412016-12-02 00:28:42 -0800392 newrec->ops = template;
393 newrec->dev = dev;
394 ida_init(&newrec->endp_cnt);
395 newrec->localport.private = &newrec[1];
396 newrec->localport.node_name = pinfo->node_name;
397 newrec->localport.port_name = pinfo->port_name;
398 newrec->localport.port_role = pinfo->port_role;
399 newrec->localport.port_id = pinfo->port_id;
400 newrec->localport.port_state = FC_OBJSTATE_ONLINE;
401 newrec->localport.port_num = idx;
402
403 spin_lock_irqsave(&nvme_fc_lock, flags);
404 list_add_tail(&newrec->port_list, &nvme_fc_lport_list);
405 spin_unlock_irqrestore(&nvme_fc_lock, flags);
406
407 if (dev)
408 dma_set_seg_boundary(dev, template->dma_boundary);
409
410 *portptr = &newrec->localport;
411 return 0;
412
413out_ida_put:
414 ida_simple_remove(&nvme_fc_local_port_cnt, idx);
415out_fail_kfree:
416 kfree(newrec);
417out_reghost_failed:
418 *portptr = NULL;
419
420 return ret;
421}
422EXPORT_SYMBOL_GPL(nvme_fc_register_localport);
423
James Smarte3994412016-12-02 00:28:42 -0800424/**
425 * nvme_fc_unregister_localport - transport entry point called by an
426 * LLDD to deregister/remove a previously
427 * registered a NVME host FC port.
428 * @localport: pointer to the (registered) local port that is to be
429 * deregistered.
430 *
431 * Returns:
432 * a completion status. Must be 0 upon success; a negative errno
433 * (ex: -ENXIO) upon failure.
434 */
435int
436nvme_fc_unregister_localport(struct nvme_fc_local_port *portptr)
437{
438 struct nvme_fc_lport *lport = localport_to_lport(portptr);
439 unsigned long flags;
440
441 if (!portptr)
442 return -EINVAL;
443
444 spin_lock_irqsave(&nvme_fc_lock, flags);
445
446 if (portptr->port_state != FC_OBJSTATE_ONLINE) {
447 spin_unlock_irqrestore(&nvme_fc_lock, flags);
448 return -EINVAL;
449 }
450 portptr->port_state = FC_OBJSTATE_DELETED;
451
452 spin_unlock_irqrestore(&nvme_fc_lock, flags);
453
James Smart158bfb82017-11-03 08:13:17 -0700454 if (atomic_read(&lport->act_rport_cnt) == 0)
455 lport->ops->localport_delete(&lport->localport);
456
James Smarte3994412016-12-02 00:28:42 -0800457 nvme_fc_lport_put(lport);
458
459 return 0;
460}
461EXPORT_SYMBOL_GPL(nvme_fc_unregister_localport);
462
James Smarteaefd5a2017-09-14 10:38:42 -0700463/*
464 * TRADDR strings, per FC-NVME are fixed format:
465 * "nn-0x<16hexdigits>:pn-0x<16hexdigits>" - 43 characters
466 * udev event will only differ by prefix of what field is
467 * being specified:
468 * "NVMEFC_HOST_TRADDR=" or "NVMEFC_TRADDR=" - 19 max characters
469 * 19 + 43 + null_fudge = 64 characters
470 */
471#define FCNVME_TRADDR_LENGTH 64
472
473static void
474nvme_fc_signal_discovery_scan(struct nvme_fc_lport *lport,
475 struct nvme_fc_rport *rport)
476{
477 char hostaddr[FCNVME_TRADDR_LENGTH]; /* NVMEFC_HOST_TRADDR=...*/
478 char tgtaddr[FCNVME_TRADDR_LENGTH]; /* NVMEFC_TRADDR=...*/
479 char *envp[4] = { "FC_EVENT=nvmediscovery", hostaddr, tgtaddr, NULL };
480
481 if (!(rport->remoteport.port_role & FC_PORT_ROLE_NVME_DISCOVERY))
482 return;
483
484 snprintf(hostaddr, sizeof(hostaddr),
485 "NVMEFC_HOST_TRADDR=nn-0x%016llx:pn-0x%016llx",
486 lport->localport.node_name, lport->localport.port_name);
487 snprintf(tgtaddr, sizeof(tgtaddr),
488 "NVMEFC_TRADDR=nn-0x%016llx:pn-0x%016llx",
489 rport->remoteport.node_name, rport->remoteport.port_name);
490 kobject_uevent_env(&fc_udev_device->kobj, KOBJ_CHANGE, envp);
491}
492
James Smart469d0ef2017-09-26 21:50:45 -0700493static void
494nvme_fc_free_rport(struct kref *ref)
495{
496 struct nvme_fc_rport *rport =
497 container_of(ref, struct nvme_fc_rport, ref);
498 struct nvme_fc_lport *lport =
499 localport_to_lport(rport->remoteport.localport);
500 unsigned long flags;
501
502 WARN_ON(rport->remoteport.port_state != FC_OBJSTATE_DELETED);
503 WARN_ON(!list_empty(&rport->ctrl_list));
504
505 /* remove from lport list */
506 spin_lock_irqsave(&nvme_fc_lock, flags);
507 list_del(&rport->endp_list);
508 spin_unlock_irqrestore(&nvme_fc_lock, flags);
509
James Smart469d0ef2017-09-26 21:50:45 -0700510 ida_simple_remove(&lport->endp_cnt, rport->remoteport.port_num);
511
512 kfree(rport);
513
514 nvme_fc_lport_put(lport);
515}
516
517static void
518nvme_fc_rport_put(struct nvme_fc_rport *rport)
519{
520 kref_put(&rport->ref, nvme_fc_free_rport);
521}
522
523static int
524nvme_fc_rport_get(struct nvme_fc_rport *rport)
525{
526 return kref_get_unless_zero(&rport->ref);
527}
528
James Smart2b632972017-10-25 16:43:17 -0700529static void
530nvme_fc_resume_controller(struct nvme_fc_ctrl *ctrl)
531{
532 switch (ctrl->ctrl.state) {
533 case NVME_CTRL_NEW:
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200534 case NVME_CTRL_CONNECTING:
James Smart2b632972017-10-25 16:43:17 -0700535 /*
536 * As all reconnects were suppressed, schedule a
537 * connect.
538 */
539 dev_info(ctrl->ctrl.device,
540 "NVME-FC{%d}: connectivity re-established. "
541 "Attempting reconnect\n", ctrl->cnum);
542
543 queue_delayed_work(nvme_wq, &ctrl->connect_work, 0);
544 break;
545
546 case NVME_CTRL_RESETTING:
547 /*
548 * Controller is already in the process of terminating the
549 * association. No need to do anything further. The reconnect
550 * step will naturally occur after the reset completes.
551 */
552 break;
553
554 default:
555 /* no action to take - let it delete */
556 break;
557 }
558}
559
560static struct nvme_fc_rport *
561nvme_fc_attach_to_suspended_rport(struct nvme_fc_lport *lport,
562 struct nvme_fc_port_info *pinfo)
563{
564 struct nvme_fc_rport *rport;
565 struct nvme_fc_ctrl *ctrl;
566 unsigned long flags;
567
568 spin_lock_irqsave(&nvme_fc_lock, flags);
569
570 list_for_each_entry(rport, &lport->endp_list, endp_list) {
571 if (rport->remoteport.node_name != pinfo->node_name ||
572 rport->remoteport.port_name != pinfo->port_name)
573 continue;
574
575 if (!nvme_fc_rport_get(rport)) {
576 rport = ERR_PTR(-ENOLCK);
577 goto out_done;
578 }
579
580 spin_unlock_irqrestore(&nvme_fc_lock, flags);
581
582 spin_lock_irqsave(&rport->lock, flags);
583
584 /* has it been unregistered */
585 if (rport->remoteport.port_state != FC_OBJSTATE_DELETED) {
586 /* means lldd called us twice */
587 spin_unlock_irqrestore(&rport->lock, flags);
588 nvme_fc_rport_put(rport);
589 return ERR_PTR(-ESTALE);
590 }
591
James Smart0cdd5fc2018-03-05 20:55:49 -0800592 rport->remoteport.port_role = pinfo->port_role;
593 rport->remoteport.port_id = pinfo->port_id;
James Smart2b632972017-10-25 16:43:17 -0700594 rport->remoteport.port_state = FC_OBJSTATE_ONLINE;
595 rport->dev_loss_end = 0;
596
597 /*
598 * kick off a reconnect attempt on all associations to the
599 * remote port. A successful reconnects will resume i/o.
600 */
601 list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list)
602 nvme_fc_resume_controller(ctrl);
603
604 spin_unlock_irqrestore(&rport->lock, flags);
605
606 return rport;
607 }
608
609 rport = NULL;
610
611out_done:
612 spin_unlock_irqrestore(&nvme_fc_lock, flags);
613
614 return rport;
615}
616
617static inline void
618__nvme_fc_set_dev_loss_tmo(struct nvme_fc_rport *rport,
619 struct nvme_fc_port_info *pinfo)
620{
621 if (pinfo->dev_loss_tmo)
622 rport->remoteport.dev_loss_tmo = pinfo->dev_loss_tmo;
623 else
624 rport->remoteport.dev_loss_tmo = NVME_FC_DEFAULT_DEV_LOSS_TMO;
625}
626
James Smarte3994412016-12-02 00:28:42 -0800627/**
628 * nvme_fc_register_remoteport - transport entry point called by an
629 * LLDD to register the existence of a NVME
630 * subsystem FC port on its fabric.
631 * @localport: pointer to the (registered) local port that the remote
632 * subsystem port is connected to.
633 * @pinfo: pointer to information about the port to be registered
634 * @rport_p: pointer to a remote port pointer. Upon success, the routine
635 * will allocate a nvme_fc_remote_port structure and place its
636 * address in the remote port pointer. Upon failure, remote port
637 * pointer will be set to 0.
638 *
639 * Returns:
640 * a completion status. Must be 0 upon success; a negative errno
641 * (ex: -ENXIO) upon failure.
642 */
643int
644nvme_fc_register_remoteport(struct nvme_fc_local_port *localport,
645 struct nvme_fc_port_info *pinfo,
646 struct nvme_fc_remote_port **portptr)
647{
648 struct nvme_fc_lport *lport = localport_to_lport(localport);
649 struct nvme_fc_rport *newrec;
650 unsigned long flags;
651 int ret, idx;
652
James Smart2b632972017-10-25 16:43:17 -0700653 if (!nvme_fc_lport_get(lport)) {
654 ret = -ESHUTDOWN;
655 goto out_reghost_failed;
656 }
657
658 /*
659 * look to see if there is already a remoteport that is waiting
660 * for a reconnect (within dev_loss_tmo) with the same WWN's.
661 * If so, transition to it and reconnect.
662 */
663 newrec = nvme_fc_attach_to_suspended_rport(lport, pinfo);
664
665 /* found an rport, but something about its state is bad */
666 if (IS_ERR(newrec)) {
667 ret = PTR_ERR(newrec);
668 goto out_lport_put;
669
670 /* found existing rport, which was resumed */
671 } else if (newrec) {
672 nvme_fc_lport_put(lport);
673 __nvme_fc_set_dev_loss_tmo(newrec, pinfo);
674 nvme_fc_signal_discovery_scan(lport, newrec);
675 *portptr = &newrec->remoteport;
676 return 0;
677 }
678
679 /* nothing found - allocate a new remoteport struct */
680
James Smarte3994412016-12-02 00:28:42 -0800681 newrec = kmalloc((sizeof(*newrec) + lport->ops->remote_priv_sz),
682 GFP_KERNEL);
683 if (!newrec) {
684 ret = -ENOMEM;
James Smart2b632972017-10-25 16:43:17 -0700685 goto out_lport_put;
James Smarte3994412016-12-02 00:28:42 -0800686 }
687
688 idx = ida_simple_get(&lport->endp_cnt, 0, 0, GFP_KERNEL);
689 if (idx < 0) {
690 ret = -ENOSPC;
James Smart2b632972017-10-25 16:43:17 -0700691 goto out_kfree_rport;
James Smarte3994412016-12-02 00:28:42 -0800692 }
693
694 INIT_LIST_HEAD(&newrec->endp_list);
695 INIT_LIST_HEAD(&newrec->ctrl_list);
James Smartc913a8b2017-04-11 11:35:08 -0700696 INIT_LIST_HEAD(&newrec->ls_req_list);
James Smarte3994412016-12-02 00:28:42 -0800697 kref_init(&newrec->ref);
James Smart158bfb82017-11-03 08:13:17 -0700698 atomic_set(&newrec->act_ctrl_cnt, 0);
James Smarte3994412016-12-02 00:28:42 -0800699 spin_lock_init(&newrec->lock);
700 newrec->remoteport.localport = &lport->localport;
James Smartc913a8b2017-04-11 11:35:08 -0700701 newrec->dev = lport->dev;
702 newrec->lport = lport;
James Smarte3994412016-12-02 00:28:42 -0800703 newrec->remoteport.private = &newrec[1];
704 newrec->remoteport.port_role = pinfo->port_role;
705 newrec->remoteport.node_name = pinfo->node_name;
706 newrec->remoteport.port_name = pinfo->port_name;
707 newrec->remoteport.port_id = pinfo->port_id;
708 newrec->remoteport.port_state = FC_OBJSTATE_ONLINE;
709 newrec->remoteport.port_num = idx;
James Smart2b632972017-10-25 16:43:17 -0700710 __nvme_fc_set_dev_loss_tmo(newrec, pinfo);
James Smarte3994412016-12-02 00:28:42 -0800711
712 spin_lock_irqsave(&nvme_fc_lock, flags);
713 list_add_tail(&newrec->endp_list, &lport->endp_list);
714 spin_unlock_irqrestore(&nvme_fc_lock, flags);
715
James Smarteaefd5a2017-09-14 10:38:42 -0700716 nvme_fc_signal_discovery_scan(lport, newrec);
717
James Smarte3994412016-12-02 00:28:42 -0800718 *portptr = &newrec->remoteport;
719 return 0;
720
James Smarte3994412016-12-02 00:28:42 -0800721out_kfree_rport:
722 kfree(newrec);
James Smart2b632972017-10-25 16:43:17 -0700723out_lport_put:
724 nvme_fc_lport_put(lport);
James Smarte3994412016-12-02 00:28:42 -0800725out_reghost_failed:
726 *portptr = NULL;
727 return ret;
James Smarte3994412016-12-02 00:28:42 -0800728}
729EXPORT_SYMBOL_GPL(nvme_fc_register_remoteport);
730
James Smart8d64daf2017-04-11 11:35:09 -0700731static int
732nvme_fc_abort_lsops(struct nvme_fc_rport *rport)
733{
734 struct nvmefc_ls_req_op *lsop;
735 unsigned long flags;
736
737restart:
738 spin_lock_irqsave(&rport->lock, flags);
739
740 list_for_each_entry(lsop, &rport->ls_req_list, lsreq_list) {
741 if (!(lsop->flags & FCOP_FLAGS_TERMIO)) {
742 lsop->flags |= FCOP_FLAGS_TERMIO;
743 spin_unlock_irqrestore(&rport->lock, flags);
744 rport->lport->ops->ls_abort(&rport->lport->localport,
745 &rport->remoteport,
746 &lsop->ls_req);
747 goto restart;
748 }
749 }
750 spin_unlock_irqrestore(&rport->lock, flags);
751
752 return 0;
753}
754
James Smart2b632972017-10-25 16:43:17 -0700755static void
756nvme_fc_ctrl_connectivity_loss(struct nvme_fc_ctrl *ctrl)
757{
758 dev_info(ctrl->ctrl.device,
759 "NVME-FC{%d}: controller connectivity lost. Awaiting "
760 "Reconnect", ctrl->cnum);
761
762 switch (ctrl->ctrl.state) {
763 case NVME_CTRL_NEW:
764 case NVME_CTRL_LIVE:
765 /*
766 * Schedule a controller reset. The reset will terminate the
767 * association and schedule the reconnect timer. Reconnects
768 * will be attempted until either the ctlr_loss_tmo
769 * (max_retries * connect_delay) expires or the remoteport's
770 * dev_loss_tmo expires.
771 */
772 if (nvme_reset_ctrl(&ctrl->ctrl)) {
773 dev_warn(ctrl->ctrl.device,
Max Gurtovoy77d06122018-03-11 17:46:06 +0200774 "NVME-FC{%d}: Couldn't schedule reset.\n",
James Smart2b632972017-10-25 16:43:17 -0700775 ctrl->cnum);
776 nvme_delete_ctrl(&ctrl->ctrl);
777 }
778 break;
779
Max Gurtovoyad6a0a52018-01-31 18:31:24 +0200780 case NVME_CTRL_CONNECTING:
James Smart2b632972017-10-25 16:43:17 -0700781 /*
782 * The association has already been terminated and the
783 * controller is attempting reconnects. No need to do anything
784 * futher. Reconnects will be attempted until either the
785 * ctlr_loss_tmo (max_retries * connect_delay) expires or the
786 * remoteport's dev_loss_tmo expires.
787 */
788 break;
789
790 case NVME_CTRL_RESETTING:
791 /*
792 * Controller is already in the process of terminating the
793 * association. No need to do anything further. The reconnect
794 * step will kick in naturally after the association is
795 * terminated.
796 */
797 break;
798
799 case NVME_CTRL_DELETING:
800 default:
801 /* no action to take - let it delete */
802 break;
803 }
804}
805
James Smarte3994412016-12-02 00:28:42 -0800806/**
807 * nvme_fc_unregister_remoteport - transport entry point called by an
808 * LLDD to deregister/remove a previously
809 * registered a NVME subsystem FC port.
810 * @remoteport: pointer to the (registered) remote port that is to be
811 * deregistered.
812 *
813 * Returns:
814 * a completion status. Must be 0 upon success; a negative errno
815 * (ex: -ENXIO) upon failure.
816 */
817int
818nvme_fc_unregister_remoteport(struct nvme_fc_remote_port *portptr)
819{
820 struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
821 struct nvme_fc_ctrl *ctrl;
822 unsigned long flags;
823
824 if (!portptr)
825 return -EINVAL;
826
827 spin_lock_irqsave(&rport->lock, flags);
828
829 if (portptr->port_state != FC_OBJSTATE_ONLINE) {
830 spin_unlock_irqrestore(&rport->lock, flags);
831 return -EINVAL;
832 }
833 portptr->port_state = FC_OBJSTATE_DELETED;
834
James Smart2b632972017-10-25 16:43:17 -0700835 rport->dev_loss_end = jiffies + (portptr->dev_loss_tmo * HZ);
836
837 list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
838 /* if dev_loss_tmo==0, dev loss is immediate */
839 if (!portptr->dev_loss_tmo) {
840 dev_warn(ctrl->ctrl.device,
Max Gurtovoy77d06122018-03-11 17:46:06 +0200841 "NVME-FC{%d}: controller connectivity lost.\n",
James Smart2b632972017-10-25 16:43:17 -0700842 ctrl->cnum);
843 nvme_delete_ctrl(&ctrl->ctrl);
844 } else
845 nvme_fc_ctrl_connectivity_loss(ctrl);
846 }
James Smarte3994412016-12-02 00:28:42 -0800847
848 spin_unlock_irqrestore(&rport->lock, flags);
849
James Smart8d64daf2017-04-11 11:35:09 -0700850 nvme_fc_abort_lsops(rport);
851
James Smart158bfb82017-11-03 08:13:17 -0700852 if (atomic_read(&rport->act_ctrl_cnt) == 0)
853 rport->lport->ops->remoteport_delete(portptr);
854
James Smart2b632972017-10-25 16:43:17 -0700855 /*
856 * release the reference, which will allow, if all controllers
857 * go away, which should only occur after dev_loss_tmo occurs,
858 * for the rport to be torn down.
859 */
James Smarte3994412016-12-02 00:28:42 -0800860 nvme_fc_rport_put(rport);
James Smart2b632972017-10-25 16:43:17 -0700861
James Smarte3994412016-12-02 00:28:42 -0800862 return 0;
863}
864EXPORT_SYMBOL_GPL(nvme_fc_unregister_remoteport);
865
James Smarteaefd5a2017-09-14 10:38:42 -0700866/**
867 * nvme_fc_rescan_remoteport - transport entry point called by an
868 * LLDD to request a nvme device rescan.
869 * @remoteport: pointer to the (registered) remote port that is to be
870 * rescanned.
871 *
872 * Returns: N/A
873 */
874void
875nvme_fc_rescan_remoteport(struct nvme_fc_remote_port *remoteport)
876{
877 struct nvme_fc_rport *rport = remoteport_to_rport(remoteport);
878
879 nvme_fc_signal_discovery_scan(rport->lport, rport);
880}
881EXPORT_SYMBOL_GPL(nvme_fc_rescan_remoteport);
882
James Smartac7fe822017-10-25 16:43:15 -0700883int
884nvme_fc_set_remoteport_devloss(struct nvme_fc_remote_port *portptr,
885 u32 dev_loss_tmo)
886{
887 struct nvme_fc_rport *rport = remoteport_to_rport(portptr);
James Smartac7fe822017-10-25 16:43:15 -0700888 unsigned long flags;
889
890 spin_lock_irqsave(&rport->lock, flags);
891
892 if (portptr->port_state != FC_OBJSTATE_ONLINE) {
893 spin_unlock_irqrestore(&rport->lock, flags);
894 return -EINVAL;
895 }
896
897 /* a dev_loss_tmo of 0 (immediate) is allowed to be set */
898 rport->remoteport.dev_loss_tmo = dev_loss_tmo;
899
900 spin_unlock_irqrestore(&rport->lock, flags);
901
902 return 0;
903}
904EXPORT_SYMBOL_GPL(nvme_fc_set_remoteport_devloss);
905
James Smarte3994412016-12-02 00:28:42 -0800906
907/* *********************** FC-NVME DMA Handling **************************** */
908
909/*
910 * The fcloop device passes in a NULL device pointer. Real LLD's will
911 * pass in a valid device pointer. If NULL is passed to the dma mapping
912 * routines, depending on the platform, it may or may not succeed, and
913 * may crash.
914 *
915 * As such:
916 * Wrapper all the dma routines and check the dev pointer.
917 *
918 * If simple mappings (return just a dma address, we'll noop them,
919 * returning a dma address of 0.
920 *
921 * On more complex mappings (dma_map_sg), a pseudo routine fills
922 * in the scatter list, setting all dma addresses to 0.
923 */
924
925static inline dma_addr_t
926fc_dma_map_single(struct device *dev, void *ptr, size_t size,
927 enum dma_data_direction dir)
928{
929 return dev ? dma_map_single(dev, ptr, size, dir) : (dma_addr_t)0L;
930}
931
932static inline int
933fc_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
934{
935 return dev ? dma_mapping_error(dev, dma_addr) : 0;
936}
937
938static inline void
939fc_dma_unmap_single(struct device *dev, dma_addr_t addr, size_t size,
940 enum dma_data_direction dir)
941{
942 if (dev)
943 dma_unmap_single(dev, addr, size, dir);
944}
945
946static inline void
947fc_dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size,
948 enum dma_data_direction dir)
949{
950 if (dev)
951 dma_sync_single_for_cpu(dev, addr, size, dir);
952}
953
954static inline void
955fc_dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size,
956 enum dma_data_direction dir)
957{
958 if (dev)
959 dma_sync_single_for_device(dev, addr, size, dir);
960}
961
962/* pseudo dma_map_sg call */
963static int
964fc_map_sg(struct scatterlist *sg, int nents)
965{
966 struct scatterlist *s;
967 int i;
968
969 WARN_ON(nents == 0 || sg[0].length == 0);
970
971 for_each_sg(sg, s, nents, i) {
972 s->dma_address = 0L;
973#ifdef CONFIG_NEED_SG_DMA_LENGTH
974 s->dma_length = s->length;
975#endif
976 }
977 return nents;
978}
979
980static inline int
981fc_dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
982 enum dma_data_direction dir)
983{
984 return dev ? dma_map_sg(dev, sg, nents, dir) : fc_map_sg(sg, nents);
985}
986
987static inline void
988fc_dma_unmap_sg(struct device *dev, struct scatterlist *sg, int nents,
989 enum dma_data_direction dir)
990{
991 if (dev)
992 dma_unmap_sg(dev, sg, nents, dir);
993}
994
James Smarte3994412016-12-02 00:28:42 -0800995/* *********************** FC-NVME LS Handling **************************** */
996
997static void nvme_fc_ctrl_put(struct nvme_fc_ctrl *);
998static int nvme_fc_ctrl_get(struct nvme_fc_ctrl *);
999
1000
1001static void
James Smartc913a8b2017-04-11 11:35:08 -07001002__nvme_fc_finish_ls_req(struct nvmefc_ls_req_op *lsop)
James Smarte3994412016-12-02 00:28:42 -08001003{
James Smartc913a8b2017-04-11 11:35:08 -07001004 struct nvme_fc_rport *rport = lsop->rport;
James Smarte3994412016-12-02 00:28:42 -08001005 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1006 unsigned long flags;
1007
James Smartc913a8b2017-04-11 11:35:08 -07001008 spin_lock_irqsave(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08001009
1010 if (!lsop->req_queued) {
James Smartc913a8b2017-04-11 11:35:08 -07001011 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08001012 return;
1013 }
1014
1015 list_del(&lsop->lsreq_list);
1016
1017 lsop->req_queued = false;
1018
James Smartc913a8b2017-04-11 11:35:08 -07001019 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08001020
James Smartc913a8b2017-04-11 11:35:08 -07001021 fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
James Smarte3994412016-12-02 00:28:42 -08001022 (lsreq->rqstlen + lsreq->rsplen),
1023 DMA_BIDIRECTIONAL);
1024
James Smartc913a8b2017-04-11 11:35:08 -07001025 nvme_fc_rport_put(rport);
James Smarte3994412016-12-02 00:28:42 -08001026}
1027
1028static int
James Smartc913a8b2017-04-11 11:35:08 -07001029__nvme_fc_send_ls_req(struct nvme_fc_rport *rport,
James Smarte3994412016-12-02 00:28:42 -08001030 struct nvmefc_ls_req_op *lsop,
1031 void (*done)(struct nvmefc_ls_req *req, int status))
1032{
1033 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1034 unsigned long flags;
James Smartc913a8b2017-04-11 11:35:08 -07001035 int ret = 0;
James Smarte3994412016-12-02 00:28:42 -08001036
James Smartc913a8b2017-04-11 11:35:08 -07001037 if (rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
1038 return -ECONNREFUSED;
1039
1040 if (!nvme_fc_rport_get(rport))
James Smarte3994412016-12-02 00:28:42 -08001041 return -ESHUTDOWN;
1042
1043 lsreq->done = done;
James Smartc913a8b2017-04-11 11:35:08 -07001044 lsop->rport = rport;
James Smarte3994412016-12-02 00:28:42 -08001045 lsop->req_queued = false;
1046 INIT_LIST_HEAD(&lsop->lsreq_list);
1047 init_completion(&lsop->ls_done);
1048
James Smartc913a8b2017-04-11 11:35:08 -07001049 lsreq->rqstdma = fc_dma_map_single(rport->dev, lsreq->rqstaddr,
James Smarte3994412016-12-02 00:28:42 -08001050 lsreq->rqstlen + lsreq->rsplen,
1051 DMA_BIDIRECTIONAL);
James Smartc913a8b2017-04-11 11:35:08 -07001052 if (fc_dma_mapping_error(rport->dev, lsreq->rqstdma)) {
1053 ret = -EFAULT;
1054 goto out_putrport;
James Smarte3994412016-12-02 00:28:42 -08001055 }
1056 lsreq->rspdma = lsreq->rqstdma + lsreq->rqstlen;
1057
James Smartc913a8b2017-04-11 11:35:08 -07001058 spin_lock_irqsave(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08001059
James Smartc913a8b2017-04-11 11:35:08 -07001060 list_add_tail(&lsop->lsreq_list, &rport->ls_req_list);
James Smarte3994412016-12-02 00:28:42 -08001061
1062 lsop->req_queued = true;
1063
James Smartc913a8b2017-04-11 11:35:08 -07001064 spin_unlock_irqrestore(&rport->lock, flags);
James Smarte3994412016-12-02 00:28:42 -08001065
James Smartc913a8b2017-04-11 11:35:08 -07001066 ret = rport->lport->ops->ls_req(&rport->lport->localport,
1067 &rport->remoteport, lsreq);
James Smarte3994412016-12-02 00:28:42 -08001068 if (ret)
James Smartc913a8b2017-04-11 11:35:08 -07001069 goto out_unlink;
1070
1071 return 0;
1072
1073out_unlink:
1074 lsop->ls_error = ret;
1075 spin_lock_irqsave(&rport->lock, flags);
1076 lsop->req_queued = false;
1077 list_del(&lsop->lsreq_list);
1078 spin_unlock_irqrestore(&rport->lock, flags);
1079 fc_dma_unmap_single(rport->dev, lsreq->rqstdma,
1080 (lsreq->rqstlen + lsreq->rsplen),
1081 DMA_BIDIRECTIONAL);
1082out_putrport:
1083 nvme_fc_rport_put(rport);
James Smarte3994412016-12-02 00:28:42 -08001084
1085 return ret;
1086}
1087
1088static void
1089nvme_fc_send_ls_req_done(struct nvmefc_ls_req *lsreq, int status)
1090{
1091 struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
1092
1093 lsop->ls_error = status;
1094 complete(&lsop->ls_done);
1095}
1096
1097static int
James Smartc913a8b2017-04-11 11:35:08 -07001098nvme_fc_send_ls_req(struct nvme_fc_rport *rport, struct nvmefc_ls_req_op *lsop)
James Smarte3994412016-12-02 00:28:42 -08001099{
1100 struct nvmefc_ls_req *lsreq = &lsop->ls_req;
1101 struct fcnvme_ls_rjt *rjt = lsreq->rspaddr;
1102 int ret;
1103
James Smartc913a8b2017-04-11 11:35:08 -07001104 ret = __nvme_fc_send_ls_req(rport, lsop, nvme_fc_send_ls_req_done);
James Smarte3994412016-12-02 00:28:42 -08001105
James Smartc913a8b2017-04-11 11:35:08 -07001106 if (!ret) {
James Smarte3994412016-12-02 00:28:42 -08001107 /*
1108 * No timeout/not interruptible as we need the struct
1109 * to exist until the lldd calls us back. Thus mandate
1110 * wait until driver calls back. lldd responsible for
1111 * the timeout action
1112 */
1113 wait_for_completion(&lsop->ls_done);
1114
James Smartc913a8b2017-04-11 11:35:08 -07001115 __nvme_fc_finish_ls_req(lsop);
James Smarte3994412016-12-02 00:28:42 -08001116
James Smartc913a8b2017-04-11 11:35:08 -07001117 ret = lsop->ls_error;
James Smarte3994412016-12-02 00:28:42 -08001118 }
1119
James Smartc913a8b2017-04-11 11:35:08 -07001120 if (ret)
1121 return ret;
1122
James Smarte3994412016-12-02 00:28:42 -08001123 /* ACC or RJT payload ? */
1124 if (rjt->w0.ls_cmd == FCNVME_LS_RJT)
1125 return -ENXIO;
1126
1127 return 0;
1128}
1129
James Smartc913a8b2017-04-11 11:35:08 -07001130static int
1131nvme_fc_send_ls_req_async(struct nvme_fc_rport *rport,
James Smarte3994412016-12-02 00:28:42 -08001132 struct nvmefc_ls_req_op *lsop,
1133 void (*done)(struct nvmefc_ls_req *req, int status))
1134{
James Smarte3994412016-12-02 00:28:42 -08001135 /* don't wait for completion */
1136
James Smartc913a8b2017-04-11 11:35:08 -07001137 return __nvme_fc_send_ls_req(rport, lsop, done);
James Smarte3994412016-12-02 00:28:42 -08001138}
1139
1140/* Validation Error indexes into the string table below */
1141enum {
1142 VERR_NO_ERROR = 0,
1143 VERR_LSACC = 1,
1144 VERR_LSDESC_RQST = 2,
1145 VERR_LSDESC_RQST_LEN = 3,
1146 VERR_ASSOC_ID = 4,
1147 VERR_ASSOC_ID_LEN = 5,
1148 VERR_CONN_ID = 6,
1149 VERR_CONN_ID_LEN = 7,
1150 VERR_CR_ASSOC = 8,
1151 VERR_CR_ASSOC_ACC_LEN = 9,
1152 VERR_CR_CONN = 10,
1153 VERR_CR_CONN_ACC_LEN = 11,
1154 VERR_DISCONN = 12,
1155 VERR_DISCONN_ACC_LEN = 13,
1156};
1157
1158static char *validation_errors[] = {
1159 "OK",
1160 "Not LS_ACC",
1161 "Not LSDESC_RQST",
1162 "Bad LSDESC_RQST Length",
1163 "Not Association ID",
1164 "Bad Association ID Length",
1165 "Not Connection ID",
1166 "Bad Connection ID Length",
1167 "Not CR_ASSOC Rqst",
1168 "Bad CR_ASSOC ACC Length",
1169 "Not CR_CONN Rqst",
1170 "Bad CR_CONN ACC Length",
1171 "Not Disconnect Rqst",
1172 "Bad Disconnect ACC Length",
1173};
1174
1175static int
1176nvme_fc_connect_admin_queue(struct nvme_fc_ctrl *ctrl,
1177 struct nvme_fc_queue *queue, u16 qsize, u16 ersp_ratio)
1178{
1179 struct nvmefc_ls_req_op *lsop;
1180 struct nvmefc_ls_req *lsreq;
1181 struct fcnvme_ls_cr_assoc_rqst *assoc_rqst;
1182 struct fcnvme_ls_cr_assoc_acc *assoc_acc;
1183 int ret, fcret = 0;
1184
1185 lsop = kzalloc((sizeof(*lsop) +
1186 ctrl->lport->ops->lsrqst_priv_sz +
1187 sizeof(*assoc_rqst) + sizeof(*assoc_acc)), GFP_KERNEL);
1188 if (!lsop) {
1189 ret = -ENOMEM;
1190 goto out_no_memory;
1191 }
1192 lsreq = &lsop->ls_req;
1193
1194 lsreq->private = (void *)&lsop[1];
1195 assoc_rqst = (struct fcnvme_ls_cr_assoc_rqst *)
1196 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
1197 assoc_acc = (struct fcnvme_ls_cr_assoc_acc *)&assoc_rqst[1];
1198
1199 assoc_rqst->w0.ls_cmd = FCNVME_LS_CREATE_ASSOCIATION;
1200 assoc_rqst->desc_list_len =
1201 cpu_to_be32(sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
1202
1203 assoc_rqst->assoc_cmd.desc_tag =
1204 cpu_to_be32(FCNVME_LSDESC_CREATE_ASSOC_CMD);
1205 assoc_rqst->assoc_cmd.desc_len =
1206 fcnvme_lsdesc_len(
1207 sizeof(struct fcnvme_lsdesc_cr_assoc_cmd));
1208
1209 assoc_rqst->assoc_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
James Smartd157e532018-03-07 15:59:36 -08001210 assoc_rqst->assoc_cmd.sqsize = cpu_to_be16(qsize - 1);
James Smarte3994412016-12-02 00:28:42 -08001211 /* Linux supports only Dynamic controllers */
1212 assoc_rqst->assoc_cmd.cntlid = cpu_to_be16(0xffff);
Christoph Hellwig8e412262017-05-17 09:54:27 +02001213 uuid_copy(&assoc_rqst->assoc_cmd.hostid, &ctrl->ctrl.opts->host->id);
James Smarte3994412016-12-02 00:28:42 -08001214 strncpy(assoc_rqst->assoc_cmd.hostnqn, ctrl->ctrl.opts->host->nqn,
1215 min(FCNVME_ASSOC_HOSTNQN_LEN, NVMF_NQN_SIZE));
1216 strncpy(assoc_rqst->assoc_cmd.subnqn, ctrl->ctrl.opts->subsysnqn,
1217 min(FCNVME_ASSOC_SUBNQN_LEN, NVMF_NQN_SIZE));
1218
1219 lsop->queue = queue;
1220 lsreq->rqstaddr = assoc_rqst;
1221 lsreq->rqstlen = sizeof(*assoc_rqst);
1222 lsreq->rspaddr = assoc_acc;
1223 lsreq->rsplen = sizeof(*assoc_acc);
1224 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
1225
James Smartc913a8b2017-04-11 11:35:08 -07001226 ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
James Smarte3994412016-12-02 00:28:42 -08001227 if (ret)
1228 goto out_free_buffer;
1229
1230 /* process connect LS completion */
1231
1232 /* validate the ACC response */
1233 if (assoc_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
1234 fcret = VERR_LSACC;
James Smartf77fc872017-03-23 20:41:25 -07001235 else if (assoc_acc->hdr.desc_list_len !=
James Smarte3994412016-12-02 00:28:42 -08001236 fcnvme_lsdesc_len(
1237 sizeof(struct fcnvme_ls_cr_assoc_acc)))
1238 fcret = VERR_CR_ASSOC_ACC_LEN;
James Smartf77fc872017-03-23 20:41:25 -07001239 else if (assoc_acc->hdr.rqst.desc_tag !=
1240 cpu_to_be32(FCNVME_LSDESC_RQST))
James Smarte3994412016-12-02 00:28:42 -08001241 fcret = VERR_LSDESC_RQST;
1242 else if (assoc_acc->hdr.rqst.desc_len !=
1243 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
1244 fcret = VERR_LSDESC_RQST_LEN;
1245 else if (assoc_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_ASSOCIATION)
1246 fcret = VERR_CR_ASSOC;
1247 else if (assoc_acc->associd.desc_tag !=
1248 cpu_to_be32(FCNVME_LSDESC_ASSOC_ID))
1249 fcret = VERR_ASSOC_ID;
1250 else if (assoc_acc->associd.desc_len !=
1251 fcnvme_lsdesc_len(
1252 sizeof(struct fcnvme_lsdesc_assoc_id)))
1253 fcret = VERR_ASSOC_ID_LEN;
1254 else if (assoc_acc->connectid.desc_tag !=
1255 cpu_to_be32(FCNVME_LSDESC_CONN_ID))
1256 fcret = VERR_CONN_ID;
1257 else if (assoc_acc->connectid.desc_len !=
1258 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
1259 fcret = VERR_CONN_ID_LEN;
1260
1261 if (fcret) {
1262 ret = -EBADF;
1263 dev_err(ctrl->dev,
1264 "q %d connect failed: %s\n",
1265 queue->qnum, validation_errors[fcret]);
1266 } else {
1267 ctrl->association_id =
1268 be64_to_cpu(assoc_acc->associd.association_id);
1269 queue->connection_id =
1270 be64_to_cpu(assoc_acc->connectid.connection_id);
1271 set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
1272 }
1273
1274out_free_buffer:
1275 kfree(lsop);
1276out_no_memory:
1277 if (ret)
1278 dev_err(ctrl->dev,
1279 "queue %d connect admin queue failed (%d).\n",
1280 queue->qnum, ret);
1281 return ret;
1282}
1283
1284static int
1285nvme_fc_connect_queue(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
1286 u16 qsize, u16 ersp_ratio)
1287{
1288 struct nvmefc_ls_req_op *lsop;
1289 struct nvmefc_ls_req *lsreq;
1290 struct fcnvme_ls_cr_conn_rqst *conn_rqst;
1291 struct fcnvme_ls_cr_conn_acc *conn_acc;
1292 int ret, fcret = 0;
1293
1294 lsop = kzalloc((sizeof(*lsop) +
1295 ctrl->lport->ops->lsrqst_priv_sz +
1296 sizeof(*conn_rqst) + sizeof(*conn_acc)), GFP_KERNEL);
1297 if (!lsop) {
1298 ret = -ENOMEM;
1299 goto out_no_memory;
1300 }
1301 lsreq = &lsop->ls_req;
1302
1303 lsreq->private = (void *)&lsop[1];
1304 conn_rqst = (struct fcnvme_ls_cr_conn_rqst *)
1305 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
1306 conn_acc = (struct fcnvme_ls_cr_conn_acc *)&conn_rqst[1];
1307
1308 conn_rqst->w0.ls_cmd = FCNVME_LS_CREATE_CONNECTION;
1309 conn_rqst->desc_list_len = cpu_to_be32(
1310 sizeof(struct fcnvme_lsdesc_assoc_id) +
1311 sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
1312
1313 conn_rqst->associd.desc_tag = cpu_to_be32(FCNVME_LSDESC_ASSOC_ID);
1314 conn_rqst->associd.desc_len =
1315 fcnvme_lsdesc_len(
1316 sizeof(struct fcnvme_lsdesc_assoc_id));
1317 conn_rqst->associd.association_id = cpu_to_be64(ctrl->association_id);
1318 conn_rqst->connect_cmd.desc_tag =
1319 cpu_to_be32(FCNVME_LSDESC_CREATE_CONN_CMD);
1320 conn_rqst->connect_cmd.desc_len =
1321 fcnvme_lsdesc_len(
1322 sizeof(struct fcnvme_lsdesc_cr_conn_cmd));
1323 conn_rqst->connect_cmd.ersp_ratio = cpu_to_be16(ersp_ratio);
1324 conn_rqst->connect_cmd.qid = cpu_to_be16(queue->qnum);
James Smartd157e532018-03-07 15:59:36 -08001325 conn_rqst->connect_cmd.sqsize = cpu_to_be16(qsize - 1);
James Smarte3994412016-12-02 00:28:42 -08001326
1327 lsop->queue = queue;
1328 lsreq->rqstaddr = conn_rqst;
1329 lsreq->rqstlen = sizeof(*conn_rqst);
1330 lsreq->rspaddr = conn_acc;
1331 lsreq->rsplen = sizeof(*conn_acc);
1332 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
1333
James Smartc913a8b2017-04-11 11:35:08 -07001334 ret = nvme_fc_send_ls_req(ctrl->rport, lsop);
James Smarte3994412016-12-02 00:28:42 -08001335 if (ret)
1336 goto out_free_buffer;
1337
1338 /* process connect LS completion */
1339
1340 /* validate the ACC response */
1341 if (conn_acc->hdr.w0.ls_cmd != FCNVME_LS_ACC)
1342 fcret = VERR_LSACC;
James Smartf77fc872017-03-23 20:41:25 -07001343 else if (conn_acc->hdr.desc_list_len !=
James Smarte3994412016-12-02 00:28:42 -08001344 fcnvme_lsdesc_len(sizeof(struct fcnvme_ls_cr_conn_acc)))
1345 fcret = VERR_CR_CONN_ACC_LEN;
James Smartf77fc872017-03-23 20:41:25 -07001346 else if (conn_acc->hdr.rqst.desc_tag != cpu_to_be32(FCNVME_LSDESC_RQST))
James Smarte3994412016-12-02 00:28:42 -08001347 fcret = VERR_LSDESC_RQST;
1348 else if (conn_acc->hdr.rqst.desc_len !=
1349 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_rqst)))
1350 fcret = VERR_LSDESC_RQST_LEN;
1351 else if (conn_acc->hdr.rqst.w0.ls_cmd != FCNVME_LS_CREATE_CONNECTION)
1352 fcret = VERR_CR_CONN;
1353 else if (conn_acc->connectid.desc_tag !=
1354 cpu_to_be32(FCNVME_LSDESC_CONN_ID))
1355 fcret = VERR_CONN_ID;
1356 else if (conn_acc->connectid.desc_len !=
1357 fcnvme_lsdesc_len(sizeof(struct fcnvme_lsdesc_conn_id)))
1358 fcret = VERR_CONN_ID_LEN;
1359
1360 if (fcret) {
1361 ret = -EBADF;
1362 dev_err(ctrl->dev,
1363 "q %d connect failed: %s\n",
1364 queue->qnum, validation_errors[fcret]);
1365 } else {
1366 queue->connection_id =
1367 be64_to_cpu(conn_acc->connectid.connection_id);
1368 set_bit(NVME_FC_Q_CONNECTED, &queue->flags);
1369 }
1370
1371out_free_buffer:
1372 kfree(lsop);
1373out_no_memory:
1374 if (ret)
1375 dev_err(ctrl->dev,
1376 "queue %d connect command failed (%d).\n",
1377 queue->qnum, ret);
1378 return ret;
1379}
1380
1381static void
1382nvme_fc_disconnect_assoc_done(struct nvmefc_ls_req *lsreq, int status)
1383{
1384 struct nvmefc_ls_req_op *lsop = ls_req_to_lsop(lsreq);
James Smarte3994412016-12-02 00:28:42 -08001385
James Smartc913a8b2017-04-11 11:35:08 -07001386 __nvme_fc_finish_ls_req(lsop);
James Smarte3994412016-12-02 00:28:42 -08001387
1388 /* fc-nvme iniator doesn't care about success or failure of cmd */
1389
1390 kfree(lsop);
1391}
1392
1393/*
1394 * This routine sends a FC-NVME LS to disconnect (aka terminate)
1395 * the FC-NVME Association. Terminating the association also
1396 * terminates the FC-NVME connections (per queue, both admin and io
1397 * queues) that are part of the association. E.g. things are torn
1398 * down, and the related FC-NVME Association ID and Connection IDs
1399 * become invalid.
1400 *
1401 * The behavior of the fc-nvme initiator is such that it's
1402 * understanding of the association and connections will implicitly
1403 * be torn down. The action is implicit as it may be due to a loss of
1404 * connectivity with the fc-nvme target, so you may never get a
1405 * response even if you tried. As such, the action of this routine
1406 * is to asynchronously send the LS, ignore any results of the LS, and
1407 * continue on with terminating the association. If the fc-nvme target
1408 * is present and receives the LS, it too can tear down.
1409 */
1410static void
1411nvme_fc_xmt_disconnect_assoc(struct nvme_fc_ctrl *ctrl)
1412{
1413 struct fcnvme_ls_disconnect_rqst *discon_rqst;
1414 struct fcnvme_ls_disconnect_acc *discon_acc;
1415 struct nvmefc_ls_req_op *lsop;
1416 struct nvmefc_ls_req *lsreq;
James Smartc913a8b2017-04-11 11:35:08 -07001417 int ret;
James Smarte3994412016-12-02 00:28:42 -08001418
1419 lsop = kzalloc((sizeof(*lsop) +
1420 ctrl->lport->ops->lsrqst_priv_sz +
1421 sizeof(*discon_rqst) + sizeof(*discon_acc)),
1422 GFP_KERNEL);
1423 if (!lsop)
1424 /* couldn't sent it... too bad */
1425 return;
1426
1427 lsreq = &lsop->ls_req;
1428
1429 lsreq->private = (void *)&lsop[1];
1430 discon_rqst = (struct fcnvme_ls_disconnect_rqst *)
1431 (lsreq->private + ctrl->lport->ops->lsrqst_priv_sz);
1432 discon_acc = (struct fcnvme_ls_disconnect_acc *)&discon_rqst[1];
1433
1434 discon_rqst->w0.ls_cmd = FCNVME_LS_DISCONNECT;
1435 discon_rqst->desc_list_len = cpu_to_be32(
1436 sizeof(struct fcnvme_lsdesc_assoc_id) +
1437 sizeof(struct fcnvme_lsdesc_disconn_cmd));
1438
1439 discon_rqst->associd.desc_tag = cpu_to_be32(FCNVME_LSDESC_ASSOC_ID);
1440 discon_rqst->associd.desc_len =
1441 fcnvme_lsdesc_len(
1442 sizeof(struct fcnvme_lsdesc_assoc_id));
1443
1444 discon_rqst->associd.association_id = cpu_to_be64(ctrl->association_id);
1445
1446 discon_rqst->discon_cmd.desc_tag = cpu_to_be32(
1447 FCNVME_LSDESC_DISCONN_CMD);
1448 discon_rqst->discon_cmd.desc_len =
1449 fcnvme_lsdesc_len(
1450 sizeof(struct fcnvme_lsdesc_disconn_cmd));
1451 discon_rqst->discon_cmd.scope = FCNVME_DISCONN_ASSOCIATION;
1452 discon_rqst->discon_cmd.id = cpu_to_be64(ctrl->association_id);
1453
1454 lsreq->rqstaddr = discon_rqst;
1455 lsreq->rqstlen = sizeof(*discon_rqst);
1456 lsreq->rspaddr = discon_acc;
1457 lsreq->rsplen = sizeof(*discon_acc);
1458 lsreq->timeout = NVME_FC_CONNECT_TIMEOUT_SEC;
1459
James Smartc913a8b2017-04-11 11:35:08 -07001460 ret = nvme_fc_send_ls_req_async(ctrl->rport, lsop,
1461 nvme_fc_disconnect_assoc_done);
1462 if (ret)
1463 kfree(lsop);
James Smarte3994412016-12-02 00:28:42 -08001464
1465 /* only meaningful part to terminating the association */
1466 ctrl->association_id = 0;
1467}
1468
1469
1470/* *********************** NVME Ctrl Routines **************************** */
1471
James Smartf874d5d2017-06-01 22:54:21 -07001472static void nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg);
James Smarte3994412016-12-02 00:28:42 -08001473
James Smarte3994412016-12-02 00:28:42 -08001474static void
1475__nvme_fc_exit_request(struct nvme_fc_ctrl *ctrl,
1476 struct nvme_fc_fcp_op *op)
1477{
1478 fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.rspdma,
1479 sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1480 fc_dma_unmap_single(ctrl->lport->dev, op->fcp_req.cmddma,
1481 sizeof(op->cmd_iu), DMA_TO_DEVICE);
1482
1483 atomic_set(&op->state, FCPOP_STATE_UNINIT);
1484}
1485
1486static void
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001487nvme_fc_exit_request(struct blk_mq_tag_set *set, struct request *rq,
1488 unsigned int hctx_idx)
James Smarte3994412016-12-02 00:28:42 -08001489{
1490 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
1491
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001492 return __nvme_fc_exit_request(set->driver_data, op);
James Smarte3994412016-12-02 00:28:42 -08001493}
1494
James Smart78a7ac22017-04-23 08:30:07 -07001495static int
1496__nvme_fc_abort_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_fcp_op *op)
1497{
James Smart3efd6e82018-02-06 06:48:29 -08001498 unsigned long flags;
1499 int opstate;
James Smart78a7ac22017-04-23 08:30:07 -07001500
James Smart3efd6e82018-02-06 06:48:29 -08001501 spin_lock_irqsave(&ctrl->lock, flags);
1502 opstate = atomic_xchg(&op->state, FCPOP_STATE_ABORTED);
1503 if (opstate != FCPOP_STATE_ACTIVE)
1504 atomic_set(&op->state, opstate);
1505 else if (ctrl->flags & FCCTRL_TERMIO)
1506 ctrl->iocnt++;
1507 spin_unlock_irqrestore(&ctrl->lock, flags);
1508
1509 if (opstate != FCPOP_STATE_ACTIVE)
James Smart78a7ac22017-04-23 08:30:07 -07001510 return -ECANCELED;
James Smart78a7ac22017-04-23 08:30:07 -07001511
1512 ctrl->lport->ops->fcp_abort(&ctrl->lport->localport,
1513 &ctrl->rport->remoteport,
1514 op->queue->lldd_handle,
1515 &op->fcp_req);
1516
1517 return 0;
1518}
1519
James Smarte3994412016-12-02 00:28:42 -08001520static void
James Smart78a7ac22017-04-23 08:30:07 -07001521nvme_fc_abort_aen_ops(struct nvme_fc_ctrl *ctrl)
James Smarte3994412016-12-02 00:28:42 -08001522{
1523 struct nvme_fc_fcp_op *aen_op = ctrl->aen_ops;
James Smart3efd6e82018-02-06 06:48:29 -08001524 int i;
James Smarte3994412016-12-02 00:28:42 -08001525
James Smart3efd6e82018-02-06 06:48:29 -08001526 for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++)
1527 __nvme_fc_abort_op(ctrl, aen_op);
James Smarte3994412016-12-02 00:28:42 -08001528}
1529
James Smartc3aedd22018-02-06 06:48:30 -08001530static inline void
James Smart78a7ac22017-04-23 08:30:07 -07001531__nvme_fc_fcpop_chk_teardowns(struct nvme_fc_ctrl *ctrl,
James Smart3efd6e82018-02-06 06:48:29 -08001532 struct nvme_fc_fcp_op *op, int opstate)
James Smart78a7ac22017-04-23 08:30:07 -07001533{
1534 unsigned long flags;
James Smart78a7ac22017-04-23 08:30:07 -07001535
James Smartc3aedd22018-02-06 06:48:30 -08001536 if (opstate == FCPOP_STATE_ABORTED) {
1537 spin_lock_irqsave(&ctrl->lock, flags);
1538 if (ctrl->flags & FCCTRL_TERMIO) {
1539 if (!--ctrl->iocnt)
1540 wake_up(&ctrl->ioabort_wait);
1541 }
1542 spin_unlock_irqrestore(&ctrl->lock, flags);
James Smart61bff8e2017-04-23 08:30:08 -07001543 }
James Smart78a7ac22017-04-23 08:30:07 -07001544}
1545
Christoph Hellwigbaee29a2017-04-21 10:44:06 +02001546static void
James Smarte3994412016-12-02 00:28:42 -08001547nvme_fc_fcpio_done(struct nvmefc_fcp_req *req)
1548{
1549 struct nvme_fc_fcp_op *op = fcp_req_to_fcp_op(req);
1550 struct request *rq = op->rq;
1551 struct nvmefc_fcp_req *freq = &op->fcp_req;
1552 struct nvme_fc_ctrl *ctrl = op->ctrl;
1553 struct nvme_fc_queue *queue = op->queue;
1554 struct nvme_completion *cqe = &op->rsp_iu.cqe;
James Smart458f2802017-04-23 08:30:06 -07001555 struct nvme_command *sqe = &op->cmd_iu.sqe;
Christoph Hellwigd663b692017-04-20 16:02:56 +02001556 __le16 status = cpu_to_le16(NVME_SC_SUCCESS << 1);
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001557 union nvme_result result;
James Smart0a02e392017-10-19 16:11:38 -07001558 bool terminate_assoc = true;
James Smart3efd6e82018-02-06 06:48:29 -08001559 int opstate;
James Smarte3994412016-12-02 00:28:42 -08001560
1561 /*
1562 * WARNING:
1563 * The current linux implementation of a nvme controller
1564 * allocates a single tag set for all io queues and sizes
1565 * the io queues to fully hold all possible tags. Thus, the
1566 * implementation does not reference or care about the sqhd
1567 * value as it never needs to use the sqhd/sqtail pointers
1568 * for submission pacing.
1569 *
1570 * This affects the FC-NVME implementation in two ways:
1571 * 1) As the value doesn't matter, we don't need to waste
1572 * cycles extracting it from ERSPs and stamping it in the
1573 * cases where the transport fabricates CQEs on successful
1574 * completions.
1575 * 2) The FC-NVME implementation requires that delivery of
1576 * ERSP completions are to go back to the nvme layer in order
1577 * relative to the rsn, such that the sqhd value will always
1578 * be "in order" for the nvme layer. As the nvme layer in
1579 * linux doesn't care about sqhd, there's no need to return
1580 * them in order.
1581 *
1582 * Additionally:
1583 * As the core nvme layer in linux currently does not look at
1584 * every field in the cqe - in cases where the FC transport must
1585 * fabricate a CQE, the following fields will not be set as they
1586 * are not referenced:
1587 * cqe.sqid, cqe.sqhd, cqe.command_id
James Smartf874d5d2017-06-01 22:54:21 -07001588 *
1589 * Failure or error of an individual i/o, in a transport
1590 * detected fashion unrelated to the nvme completion status,
1591 * potentially cause the initiator and target sides to get out
1592 * of sync on SQ head/tail (aka outstanding io count allowed).
1593 * Per FC-NVME spec, failure of an individual command requires
1594 * the connection to be terminated, which in turn requires the
1595 * association to be terminated.
James Smarte3994412016-12-02 00:28:42 -08001596 */
1597
James Smart3efd6e82018-02-06 06:48:29 -08001598 opstate = atomic_xchg(&op->state, FCPOP_STATE_COMPLETE);
1599
James Smarte3994412016-12-02 00:28:42 -08001600 fc_dma_sync_single_for_cpu(ctrl->lport->dev, op->fcp_req.rspdma,
1601 sizeof(op->rsp_iu), DMA_FROM_DEVICE);
1602
James Smart3efd6e82018-02-06 06:48:29 -08001603 if (opstate == FCPOP_STATE_ABORTED)
James Smart0a02e392017-10-19 16:11:38 -07001604 status = cpu_to_le16(NVME_SC_ABORT_REQ << 1);
James Smart62eeacb2017-03-23 20:41:27 -07001605 else if (freq->status)
James Smart56b71032017-09-07 16:27:26 -07001606 status = cpu_to_le16(NVME_SC_INTERNAL << 1);
James Smarte3994412016-12-02 00:28:42 -08001607
1608 /*
1609 * For the linux implementation, if we have an unsuccesful
1610 * status, they blk-mq layer can typically be called with the
1611 * non-zero status and the content of the cqe isn't important.
1612 */
1613 if (status)
1614 goto done;
1615
1616 /*
1617 * command completed successfully relative to the wire
1618 * protocol. However, validate anything received and
1619 * extract the status and result from the cqe (create it
1620 * where necessary).
1621 */
1622
1623 switch (freq->rcv_rsplen) {
1624
1625 case 0:
1626 case NVME_FC_SIZEOF_ZEROS_RSP:
1627 /*
1628 * No response payload or 12 bytes of payload (which
1629 * should all be zeros) are considered successful and
1630 * no payload in the CQE by the transport.
1631 */
1632 if (freq->transferred_length !=
1633 be32_to_cpu(op->cmd_iu.data_len)) {
James Smart56b71032017-09-07 16:27:26 -07001634 status = cpu_to_le16(NVME_SC_INTERNAL << 1);
James Smarte3994412016-12-02 00:28:42 -08001635 goto done;
1636 }
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001637 result.u64 = 0;
James Smarte3994412016-12-02 00:28:42 -08001638 break;
1639
1640 case sizeof(struct nvme_fc_ersp_iu):
1641 /*
1642 * The ERSP IU contains a full completion with CQE.
1643 * Validate ERSP IU and look at cqe.
1644 */
1645 if (unlikely(be16_to_cpu(op->rsp_iu.iu_len) !=
1646 (freq->rcv_rsplen / 4) ||
1647 be32_to_cpu(op->rsp_iu.xfrd_len) !=
1648 freq->transferred_length ||
James Smart726a1082017-03-23 20:41:23 -07001649 op->rsp_iu.status_code ||
James Smart458f2802017-04-23 08:30:06 -07001650 sqe->common.command_id != cqe->command_id)) {
James Smart56b71032017-09-07 16:27:26 -07001651 status = cpu_to_le16(NVME_SC_INTERNAL << 1);
James Smarte3994412016-12-02 00:28:42 -08001652 goto done;
1653 }
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001654 result = cqe->result;
Christoph Hellwigd663b692017-04-20 16:02:56 +02001655 status = cqe->status;
James Smarte3994412016-12-02 00:28:42 -08001656 break;
1657
1658 default:
James Smart56b71032017-09-07 16:27:26 -07001659 status = cpu_to_le16(NVME_SC_INTERNAL << 1);
James Smarte3994412016-12-02 00:28:42 -08001660 goto done;
1661 }
1662
James Smartf874d5d2017-06-01 22:54:21 -07001663 terminate_assoc = false;
1664
James Smarte3994412016-12-02 00:28:42 -08001665done:
James Smart78a7ac22017-04-23 08:30:07 -07001666 if (op->flags & FCOP_FLAGS_AEN) {
Christoph Hellwig27fa9bc2017-04-20 16:02:57 +02001667 nvme_complete_async_event(&queue->ctrl->ctrl, status, &result);
James Smart3efd6e82018-02-06 06:48:29 -08001668 __nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
James Smart78a7ac22017-04-23 08:30:07 -07001669 atomic_set(&op->state, FCPOP_STATE_IDLE);
1670 op->flags = FCOP_FLAGS_AEN; /* clear other flags */
James Smarte3994412016-12-02 00:28:42 -08001671 nvme_fc_ctrl_put(ctrl);
James Smartf874d5d2017-06-01 22:54:21 -07001672 goto check_error;
James Smarte3994412016-12-02 00:28:42 -08001673 }
1674
James Smartc3aedd22018-02-06 06:48:30 -08001675 __nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
1676 nvme_end_request(rq, status, result);
James Smartf874d5d2017-06-01 22:54:21 -07001677
1678check_error:
1679 if (terminate_assoc)
1680 nvme_fc_error_recovery(ctrl, "transport detected io error");
James Smarte3994412016-12-02 00:28:42 -08001681}
1682
1683static int
1684__nvme_fc_init_request(struct nvme_fc_ctrl *ctrl,
1685 struct nvme_fc_queue *queue, struct nvme_fc_fcp_op *op,
1686 struct request *rq, u32 rqno)
1687{
1688 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
1689 int ret = 0;
1690
1691 memset(op, 0, sizeof(*op));
1692 op->fcp_req.cmdaddr = &op->cmd_iu;
1693 op->fcp_req.cmdlen = sizeof(op->cmd_iu);
1694 op->fcp_req.rspaddr = &op->rsp_iu;
1695 op->fcp_req.rsplen = sizeof(op->rsp_iu);
1696 op->fcp_req.done = nvme_fc_fcpio_done;
1697 op->fcp_req.first_sgl = (struct scatterlist *)&op[1];
1698 op->fcp_req.private = &op->fcp_req.first_sgl[SG_CHUNK_SIZE];
1699 op->ctrl = ctrl;
1700 op->queue = queue;
1701 op->rq = rq;
1702 op->rqno = rqno;
1703
1704 cmdiu->scsi_id = NVME_CMD_SCSI_ID;
1705 cmdiu->fc_id = NVME_CMD_FC_ID;
1706 cmdiu->iu_len = cpu_to_be16(sizeof(*cmdiu) / sizeof(u32));
1707
1708 op->fcp_req.cmddma = fc_dma_map_single(ctrl->lport->dev,
1709 &op->cmd_iu, sizeof(op->cmd_iu), DMA_TO_DEVICE);
1710 if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.cmddma)) {
1711 dev_err(ctrl->dev,
1712 "FCP Op failed - cmdiu dma mapping failed.\n");
1713 ret = EFAULT;
1714 goto out_on_error;
1715 }
1716
1717 op->fcp_req.rspdma = fc_dma_map_single(ctrl->lport->dev,
1718 &op->rsp_iu, sizeof(op->rsp_iu),
1719 DMA_FROM_DEVICE);
1720 if (fc_dma_mapping_error(ctrl->lport->dev, op->fcp_req.rspdma)) {
1721 dev_err(ctrl->dev,
1722 "FCP Op failed - rspiu dma mapping failed.\n");
1723 ret = EFAULT;
1724 }
1725
1726 atomic_set(&op->state, FCPOP_STATE_IDLE);
1727out_on_error:
1728 return ret;
1729}
1730
1731static int
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001732nvme_fc_init_request(struct blk_mq_tag_set *set, struct request *rq,
1733 unsigned int hctx_idx, unsigned int numa_node)
James Smarte3994412016-12-02 00:28:42 -08001734{
Christoph Hellwigd6296d32017-05-01 10:19:08 -06001735 struct nvme_fc_ctrl *ctrl = set->driver_data;
James Smarte3994412016-12-02 00:28:42 -08001736 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
Christoph Hellwig76f983c2017-06-13 09:15:20 +02001737 int queue_idx = (set == &ctrl->tag_set) ? hctx_idx + 1 : 0;
1738 struct nvme_fc_queue *queue = &ctrl->queues[queue_idx];
James Smarte3994412016-12-02 00:28:42 -08001739
1740 return __nvme_fc_init_request(ctrl, queue, op, rq, queue->rqcnt++);
1741}
1742
1743static int
1744nvme_fc_init_aen_ops(struct nvme_fc_ctrl *ctrl)
1745{
1746 struct nvme_fc_fcp_op *aen_op;
1747 struct nvme_fc_cmd_iu *cmdiu;
1748 struct nvme_command *sqe;
James Smart61bff8e2017-04-23 08:30:08 -07001749 void *private;
James Smarte3994412016-12-02 00:28:42 -08001750 int i, ret;
1751
1752 aen_op = ctrl->aen_ops;
Keith Busch38dabe22017-11-07 15:13:10 -07001753 for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++) {
James Smart61bff8e2017-04-23 08:30:08 -07001754 private = kzalloc(ctrl->lport->ops->fcprqst_priv_sz,
1755 GFP_KERNEL);
1756 if (!private)
1757 return -ENOMEM;
1758
James Smarte3994412016-12-02 00:28:42 -08001759 cmdiu = &aen_op->cmd_iu;
1760 sqe = &cmdiu->sqe;
1761 ret = __nvme_fc_init_request(ctrl, &ctrl->queues[0],
1762 aen_op, (struct request *)NULL,
Keith Busch38dabe22017-11-07 15:13:10 -07001763 (NVME_AQ_BLK_MQ_DEPTH + i));
James Smart61bff8e2017-04-23 08:30:08 -07001764 if (ret) {
1765 kfree(private);
James Smarte3994412016-12-02 00:28:42 -08001766 return ret;
James Smart61bff8e2017-04-23 08:30:08 -07001767 }
James Smarte3994412016-12-02 00:28:42 -08001768
James Smart78a7ac22017-04-23 08:30:07 -07001769 aen_op->flags = FCOP_FLAGS_AEN;
James Smart61bff8e2017-04-23 08:30:08 -07001770 aen_op->fcp_req.first_sgl = NULL; /* no sg list */
1771 aen_op->fcp_req.private = private;
James Smart78a7ac22017-04-23 08:30:07 -07001772
James Smarte3994412016-12-02 00:28:42 -08001773 memset(sqe, 0, sizeof(*sqe));
1774 sqe->common.opcode = nvme_admin_async_event;
James Smart78a7ac22017-04-23 08:30:07 -07001775 /* Note: core layer may overwrite the sqe.command_id value */
Keith Busch38dabe22017-11-07 15:13:10 -07001776 sqe->common.command_id = NVME_AQ_BLK_MQ_DEPTH + i;
James Smarte3994412016-12-02 00:28:42 -08001777 }
1778 return 0;
1779}
1780
James Smart61bff8e2017-04-23 08:30:08 -07001781static void
1782nvme_fc_term_aen_ops(struct nvme_fc_ctrl *ctrl)
1783{
1784 struct nvme_fc_fcp_op *aen_op;
1785 int i;
1786
1787 aen_op = ctrl->aen_ops;
Keith Busch38dabe22017-11-07 15:13:10 -07001788 for (i = 0; i < NVME_NR_AEN_COMMANDS; i++, aen_op++) {
James Smart61bff8e2017-04-23 08:30:08 -07001789 if (!aen_op->fcp_req.private)
1790 continue;
1791
1792 __nvme_fc_exit_request(ctrl, aen_op);
1793
1794 kfree(aen_op->fcp_req.private);
1795 aen_op->fcp_req.private = NULL;
1796 }
1797}
James Smarte3994412016-12-02 00:28:42 -08001798
1799static inline void
1800__nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, struct nvme_fc_ctrl *ctrl,
1801 unsigned int qidx)
1802{
1803 struct nvme_fc_queue *queue = &ctrl->queues[qidx];
1804
1805 hctx->driver_data = queue;
1806 queue->hctx = hctx;
1807}
1808
1809static int
1810nvme_fc_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
1811 unsigned int hctx_idx)
1812{
1813 struct nvme_fc_ctrl *ctrl = data;
1814
1815 __nvme_fc_init_hctx(hctx, ctrl, hctx_idx + 1);
1816
1817 return 0;
1818}
1819
1820static int
1821nvme_fc_init_admin_hctx(struct blk_mq_hw_ctx *hctx, void *data,
1822 unsigned int hctx_idx)
1823{
1824 struct nvme_fc_ctrl *ctrl = data;
1825
1826 __nvme_fc_init_hctx(hctx, ctrl, hctx_idx);
1827
1828 return 0;
1829}
1830
1831static void
Keith Busch08e15072017-11-07 15:13:11 -07001832nvme_fc_init_queue(struct nvme_fc_ctrl *ctrl, int idx)
James Smarte3994412016-12-02 00:28:42 -08001833{
1834 struct nvme_fc_queue *queue;
1835
1836 queue = &ctrl->queues[idx];
1837 memset(queue, 0, sizeof(*queue));
1838 queue->ctrl = ctrl;
1839 queue->qnum = idx;
1840 atomic_set(&queue->csn, 1);
1841 queue->dev = ctrl->dev;
1842
1843 if (idx > 0)
1844 queue->cmnd_capsule_len = ctrl->ctrl.ioccsz * 16;
1845 else
1846 queue->cmnd_capsule_len = sizeof(struct nvme_command);
1847
James Smarte3994412016-12-02 00:28:42 -08001848 /*
1849 * Considered whether we should allocate buffers for all SQEs
1850 * and CQEs and dma map them - mapping their respective entries
1851 * into the request structures (kernel vm addr and dma address)
1852 * thus the driver could use the buffers/mappings directly.
1853 * It only makes sense if the LLDD would use them for its
1854 * messaging api. It's very unlikely most adapter api's would use
1855 * a native NVME sqe/cqe. More reasonable if FC-NVME IU payload
1856 * structures were used instead.
1857 */
1858}
1859
1860/*
1861 * This routine terminates a queue at the transport level.
1862 * The transport has already ensured that all outstanding ios on
1863 * the queue have been terminated.
1864 * The transport will send a Disconnect LS request to terminate
1865 * the queue's connection. Termination of the admin queue will also
1866 * terminate the association at the target.
1867 */
1868static void
1869nvme_fc_free_queue(struct nvme_fc_queue *queue)
1870{
1871 if (!test_and_clear_bit(NVME_FC_Q_CONNECTED, &queue->flags))
1872 return;
1873
Sagi Grimberg9e0ed162017-10-24 15:25:21 +03001874 clear_bit(NVME_FC_Q_LIVE, &queue->flags);
James Smarte3994412016-12-02 00:28:42 -08001875 /*
1876 * Current implementation never disconnects a single queue.
1877 * It always terminates a whole association. So there is never
1878 * a disconnect(queue) LS sent to the target.
1879 */
1880
1881 queue->connection_id = 0;
James Smart3e493c02018-06-13 14:07:38 -07001882 atomic_set(&queue->csn, 1);
James Smarte3994412016-12-02 00:28:42 -08001883}
1884
1885static void
1886__nvme_fc_delete_hw_queue(struct nvme_fc_ctrl *ctrl,
1887 struct nvme_fc_queue *queue, unsigned int qidx)
1888{
1889 if (ctrl->lport->ops->delete_queue)
1890 ctrl->lport->ops->delete_queue(&ctrl->lport->localport, qidx,
1891 queue->lldd_handle);
1892 queue->lldd_handle = NULL;
1893}
1894
1895static void
James Smarte3994412016-12-02 00:28:42 -08001896nvme_fc_free_io_queues(struct nvme_fc_ctrl *ctrl)
1897{
1898 int i;
1899
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001900 for (i = 1; i < ctrl->ctrl.queue_count; i++)
James Smarte3994412016-12-02 00:28:42 -08001901 nvme_fc_free_queue(&ctrl->queues[i]);
1902}
1903
1904static int
1905__nvme_fc_create_hw_queue(struct nvme_fc_ctrl *ctrl,
1906 struct nvme_fc_queue *queue, unsigned int qidx, u16 qsize)
1907{
1908 int ret = 0;
1909
1910 queue->lldd_handle = NULL;
1911 if (ctrl->lport->ops->create_queue)
1912 ret = ctrl->lport->ops->create_queue(&ctrl->lport->localport,
1913 qidx, qsize, &queue->lldd_handle);
1914
1915 return ret;
1916}
1917
1918static void
1919nvme_fc_delete_hw_io_queues(struct nvme_fc_ctrl *ctrl)
1920{
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001921 struct nvme_fc_queue *queue = &ctrl->queues[ctrl->ctrl.queue_count - 1];
James Smarte3994412016-12-02 00:28:42 -08001922 int i;
1923
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001924 for (i = ctrl->ctrl.queue_count - 1; i >= 1; i--, queue--)
James Smarte3994412016-12-02 00:28:42 -08001925 __nvme_fc_delete_hw_queue(ctrl, queue, i);
1926}
1927
1928static int
1929nvme_fc_create_hw_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
1930{
1931 struct nvme_fc_queue *queue = &ctrl->queues[1];
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001932 int i, ret;
James Smarte3994412016-12-02 00:28:42 -08001933
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001934 for (i = 1; i < ctrl->ctrl.queue_count; i++, queue++) {
James Smarte3994412016-12-02 00:28:42 -08001935 ret = __nvme_fc_create_hw_queue(ctrl, queue, i, qsize);
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001936 if (ret)
1937 goto delete_queues;
James Smarte3994412016-12-02 00:28:42 -08001938 }
1939
1940 return 0;
Johannes Thumshirn17a1ec02016-12-15 14:20:48 +01001941
1942delete_queues:
1943 for (; i >= 0; i--)
1944 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[i], i);
1945 return ret;
James Smarte3994412016-12-02 00:28:42 -08001946}
1947
1948static int
1949nvme_fc_connect_io_queues(struct nvme_fc_ctrl *ctrl, u16 qsize)
1950{
1951 int i, ret = 0;
1952
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001953 for (i = 1; i < ctrl->ctrl.queue_count; i++) {
James Smarte3994412016-12-02 00:28:42 -08001954 ret = nvme_fc_connect_queue(ctrl, &ctrl->queues[i], qsize,
1955 (qsize / 5));
1956 if (ret)
1957 break;
1958 ret = nvmf_connect_io_queue(&ctrl->ctrl, i);
1959 if (ret)
1960 break;
Sagi Grimberg9e0ed162017-10-24 15:25:21 +03001961
1962 set_bit(NVME_FC_Q_LIVE, &ctrl->queues[i].flags);
James Smarte3994412016-12-02 00:28:42 -08001963 }
1964
1965 return ret;
1966}
1967
1968static void
1969nvme_fc_init_io_queues(struct nvme_fc_ctrl *ctrl)
1970{
1971 int i;
1972
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03001973 for (i = 1; i < ctrl->ctrl.queue_count; i++)
Keith Busch08e15072017-11-07 15:13:11 -07001974 nvme_fc_init_queue(ctrl, i);
James Smarte3994412016-12-02 00:28:42 -08001975}
1976
1977static void
1978nvme_fc_ctrl_free(struct kref *ref)
1979{
1980 struct nvme_fc_ctrl *ctrl =
1981 container_of(ref, struct nvme_fc_ctrl, ref);
1982 unsigned long flags;
1983
James Smart61bff8e2017-04-23 08:30:08 -07001984 if (ctrl->ctrl.tagset) {
1985 blk_cleanup_queue(ctrl->ctrl.connect_q);
1986 blk_mq_free_tag_set(&ctrl->tag_set);
James Smarte3994412016-12-02 00:28:42 -08001987 }
1988
James Smart61bff8e2017-04-23 08:30:08 -07001989 /* remove from rport list */
1990 spin_lock_irqsave(&ctrl->rport->lock, flags);
1991 list_del(&ctrl->ctrl_list);
1992 spin_unlock_irqrestore(&ctrl->rport->lock, flags);
1993
Sagi Grimbergf9c5af52017-07-02 15:39:34 +03001994 blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
James Smart61bff8e2017-04-23 08:30:08 -07001995 blk_cleanup_queue(ctrl->ctrl.admin_q);
1996 blk_mq_free_tag_set(&ctrl->admin_tag_set);
1997
1998 kfree(ctrl->queues);
1999
James Smarte3994412016-12-02 00:28:42 -08002000 put_device(ctrl->dev);
2001 nvme_fc_rport_put(ctrl->rport);
2002
James Smarte3994412016-12-02 00:28:42 -08002003 ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
Ewan D. Milnede414472017-04-24 13:24:16 -04002004 if (ctrl->ctrl.opts)
2005 nvmf_free_options(ctrl->ctrl.opts);
James Smarte3994412016-12-02 00:28:42 -08002006 kfree(ctrl);
2007}
2008
2009static void
2010nvme_fc_ctrl_put(struct nvme_fc_ctrl *ctrl)
2011{
2012 kref_put(&ctrl->ref, nvme_fc_ctrl_free);
2013}
2014
2015static int
2016nvme_fc_ctrl_get(struct nvme_fc_ctrl *ctrl)
2017{
2018 return kref_get_unless_zero(&ctrl->ref);
2019}
2020
2021/*
2022 * All accesses from nvme core layer done - can now free the
2023 * controller. Called after last nvme_put_ctrl() call
2024 */
2025static void
James Smart61bff8e2017-04-23 08:30:08 -07002026nvme_fc_nvme_ctrl_freed(struct nvme_ctrl *nctrl)
James Smarte3994412016-12-02 00:28:42 -08002027{
2028 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2029
2030 WARN_ON(nctrl != &ctrl->ctrl);
2031
James Smart61bff8e2017-04-23 08:30:08 -07002032 nvme_fc_ctrl_put(ctrl);
2033}
James Smarte3994412016-12-02 00:28:42 -08002034
James Smart61bff8e2017-04-23 08:30:08 -07002035static void
2036nvme_fc_error_recovery(struct nvme_fc_ctrl *ctrl, char *errmsg)
2037{
James Smart69fa9642017-06-21 17:43:21 -07002038 /* only proceed if in LIVE state - e.g. on first error */
2039 if (ctrl->ctrl.state != NVME_CTRL_LIVE)
2040 return;
2041
James Smart61bff8e2017-04-23 08:30:08 -07002042 dev_warn(ctrl->ctrl.device,
2043 "NVME-FC{%d}: transport association error detected: %s\n",
2044 ctrl->cnum, errmsg);
James Smart589ff772017-05-15 17:10:19 -07002045 dev_warn(ctrl->ctrl.device,
James Smart61bff8e2017-04-23 08:30:08 -07002046 "NVME-FC{%d}: resetting controller\n", ctrl->cnum);
James Smarte3994412016-12-02 00:28:42 -08002047
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002048 nvme_reset_ctrl(&ctrl->ctrl);
James Smarte3994412016-12-02 00:28:42 -08002049}
2050
Christoph Hellwigbaee29a2017-04-21 10:44:06 +02002051static enum blk_eh_timer_return
James Smarte3994412016-12-02 00:28:42 -08002052nvme_fc_timeout(struct request *rq, bool reserved)
2053{
2054 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2055 struct nvme_fc_ctrl *ctrl = op->ctrl;
James Smarte3994412016-12-02 00:28:42 -08002056
2057 /*
James Smart61bff8e2017-04-23 08:30:08 -07002058 * we can't individually ABTS an io without affecting the queue,
James Smart041018c2018-03-12 09:32:22 -07002059 * thus killing the queue, and thus the association.
James Smart61bff8e2017-04-23 08:30:08 -07002060 * So resolve by performing a controller reset, which will stop
2061 * the host/io stack, terminate the association on the link,
2062 * and recreate an association on the link.
James Smarte3994412016-12-02 00:28:42 -08002063 */
James Smart61bff8e2017-04-23 08:30:08 -07002064 nvme_fc_error_recovery(ctrl, "io timeout error");
James Smarte3994412016-12-02 00:28:42 -08002065
James Smart134aedc2017-10-19 16:11:39 -07002066 /*
2067 * the io abort has been initiated. Have the reset timer
2068 * restarted and the abort completion will complete the io
2069 * shortly. Avoids a synchronous wait while the abort finishes.
2070 */
2071 return BLK_EH_RESET_TIMER;
James Smarte3994412016-12-02 00:28:42 -08002072}
2073
2074static int
2075nvme_fc_map_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
2076 struct nvme_fc_fcp_op *op)
2077{
2078 struct nvmefc_fcp_req *freq = &op->fcp_req;
James Smarte3994412016-12-02 00:28:42 -08002079 enum dma_data_direction dir;
2080 int ret;
2081
2082 freq->sg_cnt = 0;
2083
Christoph Hellwigb131c612017-01-13 12:29:12 +01002084 if (!blk_rq_payload_bytes(rq))
James Smarte3994412016-12-02 00:28:42 -08002085 return 0;
2086
2087 freq->sg_table.sgl = freq->first_sgl;
Christoph Hellwig19e420b2017-01-19 16:55:57 +01002088 ret = sg_alloc_table_chained(&freq->sg_table,
2089 blk_rq_nr_phys_segments(rq), freq->sg_table.sgl);
James Smarte3994412016-12-02 00:28:42 -08002090 if (ret)
2091 return -ENOMEM;
2092
2093 op->nents = blk_rq_map_sg(rq->q, rq, freq->sg_table.sgl);
Christoph Hellwig19e420b2017-01-19 16:55:57 +01002094 WARN_ON(op->nents > blk_rq_nr_phys_segments(rq));
James Smarte3994412016-12-02 00:28:42 -08002095 dir = (rq_data_dir(rq) == WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE;
2096 freq->sg_cnt = fc_dma_map_sg(ctrl->lport->dev, freq->sg_table.sgl,
2097 op->nents, dir);
2098 if (unlikely(freq->sg_cnt <= 0)) {
2099 sg_free_table_chained(&freq->sg_table, true);
2100 freq->sg_cnt = 0;
2101 return -EFAULT;
2102 }
2103
2104 /*
2105 * TODO: blk_integrity_rq(rq) for DIF
2106 */
2107 return 0;
2108}
2109
2110static void
2111nvme_fc_unmap_data(struct nvme_fc_ctrl *ctrl, struct request *rq,
2112 struct nvme_fc_fcp_op *op)
2113{
2114 struct nvmefc_fcp_req *freq = &op->fcp_req;
2115
2116 if (!freq->sg_cnt)
2117 return;
2118
2119 fc_dma_unmap_sg(ctrl->lport->dev, freq->sg_table.sgl, op->nents,
2120 ((rq_data_dir(rq) == WRITE) ?
2121 DMA_TO_DEVICE : DMA_FROM_DEVICE));
2122
2123 nvme_cleanup_cmd(rq);
2124
2125 sg_free_table_chained(&freq->sg_table, true);
2126
2127 freq->sg_cnt = 0;
2128}
2129
2130/*
2131 * In FC, the queue is a logical thing. At transport connect, the target
2132 * creates its "queue" and returns a handle that is to be given to the
2133 * target whenever it posts something to the corresponding SQ. When an
2134 * SQE is sent on a SQ, FC effectively considers the SQE, or rather the
2135 * command contained within the SQE, an io, and assigns a FC exchange
2136 * to it. The SQE and the associated SQ handle are sent in the initial
2137 * CMD IU sents on the exchange. All transfers relative to the io occur
2138 * as part of the exchange. The CQE is the last thing for the io,
2139 * which is transferred (explicitly or implicitly) with the RSP IU
2140 * sent on the exchange. After the CQE is received, the FC exchange is
2141 * terminaed and the Exchange may be used on a different io.
2142 *
2143 * The transport to LLDD api has the transport making a request for a
2144 * new fcp io request to the LLDD. The LLDD then allocates a FC exchange
2145 * resource and transfers the command. The LLDD will then process all
2146 * steps to complete the io. Upon completion, the transport done routine
2147 * is called.
2148 *
2149 * So - while the operation is outstanding to the LLDD, there is a link
2150 * level FC exchange resource that is also outstanding. This must be
2151 * considered in all cleanup operations.
2152 */
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002153static blk_status_t
James Smarte3994412016-12-02 00:28:42 -08002154nvme_fc_start_fcp_op(struct nvme_fc_ctrl *ctrl, struct nvme_fc_queue *queue,
2155 struct nvme_fc_fcp_op *op, u32 data_len,
2156 enum nvmefc_fcp_datadir io_dir)
2157{
2158 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
2159 struct nvme_command *sqe = &cmdiu->sqe;
2160 u32 csn;
James Smartb12740d2018-02-28 14:49:10 -08002161 int ret, opstate;
James Smarte3994412016-12-02 00:28:42 -08002162
James Smart61bff8e2017-04-23 08:30:08 -07002163 /*
2164 * before attempting to send the io, check to see if we believe
2165 * the target device is present
2166 */
2167 if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
Ming Lei86ff7c22018-01-30 22:04:57 -05002168 return BLK_STS_RESOURCE;
James Smart61bff8e2017-04-23 08:30:08 -07002169
James Smarte3994412016-12-02 00:28:42 -08002170 if (!nvme_fc_ctrl_get(ctrl))
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002171 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08002172
2173 /* format the FC-NVME CMD IU and fcp_req */
2174 cmdiu->connection_id = cpu_to_be64(queue->connection_id);
2175 csn = atomic_inc_return(&queue->csn);
2176 cmdiu->csn = cpu_to_be32(csn);
2177 cmdiu->data_len = cpu_to_be32(data_len);
2178 switch (io_dir) {
2179 case NVMEFC_FCP_WRITE:
2180 cmdiu->flags = FCNVME_CMD_FLAGS_WRITE;
2181 break;
2182 case NVMEFC_FCP_READ:
2183 cmdiu->flags = FCNVME_CMD_FLAGS_READ;
2184 break;
2185 case NVMEFC_FCP_NODATA:
2186 cmdiu->flags = 0;
2187 break;
2188 }
2189 op->fcp_req.payload_length = data_len;
2190 op->fcp_req.io_dir = io_dir;
2191 op->fcp_req.transferred_length = 0;
2192 op->fcp_req.rcv_rsplen = 0;
James Smart62eeacb2017-03-23 20:41:27 -07002193 op->fcp_req.status = NVME_SC_SUCCESS;
James Smarte3994412016-12-02 00:28:42 -08002194 op->fcp_req.sqid = cpu_to_le16(queue->qnum);
2195
2196 /*
2197 * validate per fabric rules, set fields mandated by fabric spec
2198 * as well as those by FC-NVME spec.
2199 */
2200 WARN_ON_ONCE(sqe->common.metadata);
James Smarte3994412016-12-02 00:28:42 -08002201 sqe->common.flags |= NVME_CMD_SGL_METABUF;
2202
2203 /*
James Smartd9d34c02017-09-07 13:20:24 -07002204 * format SQE DPTR field per FC-NVME rules:
2205 * type=0x5 Transport SGL Data Block Descriptor
2206 * subtype=0xA Transport-specific value
2207 * address=0
2208 * length=length of the data series
James Smarte3994412016-12-02 00:28:42 -08002209 */
James Smartd9d34c02017-09-07 13:20:24 -07002210 sqe->rw.dptr.sgl.type = (NVME_TRANSPORT_SGL_DATA_DESC << 4) |
2211 NVME_SGL_FMT_TRANSPORT_A;
James Smarte3994412016-12-02 00:28:42 -08002212 sqe->rw.dptr.sgl.length = cpu_to_le32(data_len);
2213 sqe->rw.dptr.sgl.addr = 0;
2214
James Smart78a7ac22017-04-23 08:30:07 -07002215 if (!(op->flags & FCOP_FLAGS_AEN)) {
James Smarte3994412016-12-02 00:28:42 -08002216 ret = nvme_fc_map_data(ctrl, op->rq, op);
2217 if (ret < 0) {
James Smarte3994412016-12-02 00:28:42 -08002218 nvme_cleanup_cmd(op->rq);
2219 nvme_fc_ctrl_put(ctrl);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002220 if (ret == -ENOMEM || ret == -EAGAIN)
2221 return BLK_STS_RESOURCE;
2222 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08002223 }
2224 }
2225
2226 fc_dma_sync_single_for_device(ctrl->lport->dev, op->fcp_req.cmddma,
2227 sizeof(op->cmd_iu), DMA_TO_DEVICE);
2228
2229 atomic_set(&op->state, FCPOP_STATE_ACTIVE);
2230
James Smart78a7ac22017-04-23 08:30:07 -07002231 if (!(op->flags & FCOP_FLAGS_AEN))
James Smarte3994412016-12-02 00:28:42 -08002232 blk_mq_start_request(op->rq);
2233
2234 ret = ctrl->lport->ops->fcp_io(&ctrl->lport->localport,
2235 &ctrl->rport->remoteport,
2236 queue->lldd_handle, &op->fcp_req);
2237
2238 if (ret) {
James Smartb12740d2018-02-28 14:49:10 -08002239 opstate = atomic_xchg(&op->state, FCPOP_STATE_COMPLETE);
2240 __nvme_fc_fcpop_chk_teardowns(ctrl, op, opstate);
2241
James Smart8b25f352017-07-18 14:29:34 -07002242 if (!(op->flags & FCOP_FLAGS_AEN))
James Smarte3994412016-12-02 00:28:42 -08002243 nvme_fc_unmap_data(ctrl, op->rq, op);
James Smarte3994412016-12-02 00:28:42 -08002244
2245 nvme_fc_ctrl_put(ctrl);
2246
James Smart8b25f352017-07-18 14:29:34 -07002247 if (ctrl->rport->remoteport.port_state == FC_OBJSTATE_ONLINE &&
2248 ret != -EBUSY)
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002249 return BLK_STS_IOERR;
James Smarte3994412016-12-02 00:28:42 -08002250
Ming Lei86ff7c22018-01-30 22:04:57 -05002251 return BLK_STS_RESOURCE;
James Smarte3994412016-12-02 00:28:42 -08002252 }
2253
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002254 return BLK_STS_OK;
James Smarte3994412016-12-02 00:28:42 -08002255}
2256
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002257static blk_status_t
James Smarte3994412016-12-02 00:28:42 -08002258nvme_fc_queue_rq(struct blk_mq_hw_ctx *hctx,
2259 const struct blk_mq_queue_data *bd)
2260{
2261 struct nvme_ns *ns = hctx->queue->queuedata;
2262 struct nvme_fc_queue *queue = hctx->driver_data;
2263 struct nvme_fc_ctrl *ctrl = queue->ctrl;
2264 struct request *rq = bd->rq;
2265 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2266 struct nvme_fc_cmd_iu *cmdiu = &op->cmd_iu;
2267 struct nvme_command *sqe = &cmdiu->sqe;
2268 enum nvmefc_fcp_datadir io_dir;
Christoph Hellwig3bc32bb2018-06-11 17:34:06 +02002269 bool queue_ready = test_bit(NVME_FC_Q_LIVE, &queue->flags);
James Smarte3994412016-12-02 00:28:42 -08002270 u32 data_len;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002271 blk_status_t ret;
James Smarte3994412016-12-02 00:28:42 -08002272
Christoph Hellwig3bc32bb2018-06-11 17:34:06 +02002273 if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE ||
2274 !nvmf_check_ready(&queue->ctrl->ctrl, rq, queue_ready))
2275 return nvmf_fail_nonready_command(rq);
Sagi Grimberg9e0ed162017-10-24 15:25:21 +03002276
James Smarte3994412016-12-02 00:28:42 -08002277 ret = nvme_setup_cmd(ns, rq, sqe);
2278 if (ret)
2279 return ret;
2280
Christoph Hellwigb131c612017-01-13 12:29:12 +01002281 data_len = blk_rq_payload_bytes(rq);
James Smarte3994412016-12-02 00:28:42 -08002282 if (data_len)
2283 io_dir = ((rq_data_dir(rq) == WRITE) ?
2284 NVMEFC_FCP_WRITE : NVMEFC_FCP_READ);
2285 else
2286 io_dir = NVMEFC_FCP_NODATA;
2287
2288 return nvme_fc_start_fcp_op(ctrl, queue, op, data_len, io_dir);
2289}
2290
2291static struct blk_mq_tags *
2292nvme_fc_tagset(struct nvme_fc_queue *queue)
2293{
2294 if (queue->qnum == 0)
2295 return queue->ctrl->admin_tag_set.tags[queue->qnum];
2296
2297 return queue->ctrl->tag_set.tags[queue->qnum - 1];
2298}
2299
2300static int
2301nvme_fc_poll(struct blk_mq_hw_ctx *hctx, unsigned int tag)
2302
2303{
2304 struct nvme_fc_queue *queue = hctx->driver_data;
2305 struct nvme_fc_ctrl *ctrl = queue->ctrl;
2306 struct request *req;
2307 struct nvme_fc_fcp_op *op;
2308
2309 req = blk_mq_tag_to_rq(nvme_fc_tagset(queue), tag);
James Smart61bff8e2017-04-23 08:30:08 -07002310 if (!req)
James Smarte3994412016-12-02 00:28:42 -08002311 return 0;
James Smarte3994412016-12-02 00:28:42 -08002312
2313 op = blk_mq_rq_to_pdu(req);
2314
2315 if ((atomic_read(&op->state) == FCPOP_STATE_ACTIVE) &&
2316 (ctrl->lport->ops->poll_queue))
2317 ctrl->lport->ops->poll_queue(&ctrl->lport->localport,
2318 queue->lldd_handle);
2319
2320 return ((atomic_read(&op->state) != FCPOP_STATE_ACTIVE));
2321}
2322
2323static void
Keith Buschad22c352017-11-07 15:13:12 -07002324nvme_fc_submit_async_event(struct nvme_ctrl *arg)
James Smarte3994412016-12-02 00:28:42 -08002325{
2326 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(arg);
2327 struct nvme_fc_fcp_op *aen_op;
James Smart61bff8e2017-04-23 08:30:08 -07002328 unsigned long flags;
2329 bool terminating = false;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02002330 blk_status_t ret;
James Smarte3994412016-12-02 00:28:42 -08002331
James Smart61bff8e2017-04-23 08:30:08 -07002332 spin_lock_irqsave(&ctrl->lock, flags);
2333 if (ctrl->flags & FCCTRL_TERMIO)
2334 terminating = true;
2335 spin_unlock_irqrestore(&ctrl->lock, flags);
2336
2337 if (terminating)
2338 return;
2339
Keith Buschad22c352017-11-07 15:13:12 -07002340 aen_op = &ctrl->aen_ops[0];
James Smarte3994412016-12-02 00:28:42 -08002341
2342 ret = nvme_fc_start_fcp_op(ctrl, aen_op->queue, aen_op, 0,
2343 NVMEFC_FCP_NODATA);
2344 if (ret)
2345 dev_err(ctrl->ctrl.device,
Keith Buschad22c352017-11-07 15:13:12 -07002346 "failed async event work\n");
James Smarte3994412016-12-02 00:28:42 -08002347}
2348
2349static void
James Smartc3aedd22018-02-06 06:48:30 -08002350nvme_fc_complete_rq(struct request *rq)
James Smarte3994412016-12-02 00:28:42 -08002351{
2352 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(rq);
2353 struct nvme_fc_ctrl *ctrl = op->ctrl;
James Smarte3994412016-12-02 00:28:42 -08002354
James Smart78a7ac22017-04-23 08:30:07 -07002355 atomic_set(&op->state, FCPOP_STATE_IDLE);
James Smarte3994412016-12-02 00:28:42 -08002356
James Smarte3994412016-12-02 00:28:42 -08002357 nvme_fc_unmap_data(ctrl, rq, op);
Christoph Hellwig77f02a72017-03-30 13:41:32 +02002358 nvme_complete_rq(rq);
James Smarte3994412016-12-02 00:28:42 -08002359 nvme_fc_ctrl_put(ctrl);
James Smart78a7ac22017-04-23 08:30:07 -07002360}
2361
James Smarte3994412016-12-02 00:28:42 -08002362/*
2363 * This routine is used by the transport when it needs to find active
2364 * io on a queue that is to be terminated. The transport uses
2365 * blk_mq_tagset_busy_itr() to find the busy requests, which then invoke
2366 * this routine to kill them on a 1 by 1 basis.
2367 *
2368 * As FC allocates FC exchange for each io, the transport must contact
2369 * the LLDD to terminate the exchange, thus releasing the FC exchange.
2370 * After terminating the exchange the LLDD will call the transport's
2371 * normal io done path for the request, but it will have an aborted
2372 * status. The done path will return the io request back to the block
2373 * layer with an error status.
2374 */
2375static void
2376nvme_fc_terminate_exchange(struct request *req, void *data, bool reserved)
2377{
2378 struct nvme_ctrl *nctrl = data;
2379 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
2380 struct nvme_fc_fcp_op *op = blk_mq_rq_to_pdu(req);
James Smarte3994412016-12-02 00:28:42 -08002381
James Smart3efd6e82018-02-06 06:48:29 -08002382 __nvme_fc_abort_op(ctrl, op);
James Smart78a7ac22017-04-23 08:30:07 -07002383}
James Smarte3994412016-12-02 00:28:42 -08002384
James Smarte3994412016-12-02 00:28:42 -08002385
James Smart61bff8e2017-04-23 08:30:08 -07002386static const struct blk_mq_ops nvme_fc_mq_ops = {
2387 .queue_rq = nvme_fc_queue_rq,
2388 .complete = nvme_fc_complete_rq,
2389 .init_request = nvme_fc_init_request,
2390 .exit_request = nvme_fc_exit_request,
James Smart61bff8e2017-04-23 08:30:08 -07002391 .init_hctx = nvme_fc_init_hctx,
2392 .poll = nvme_fc_poll,
2393 .timeout = nvme_fc_timeout,
James Smarte3994412016-12-02 00:28:42 -08002394};
2395
2396static int
2397nvme_fc_create_io_queues(struct nvme_fc_ctrl *ctrl)
2398{
2399 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
Sagi Grimberg73141832017-06-29 11:16:49 +03002400 unsigned int nr_io_queues;
James Smarte3994412016-12-02 00:28:42 -08002401 int ret;
2402
Sagi Grimberg73141832017-06-29 11:16:49 +03002403 nr_io_queues = min(min(opts->nr_io_queues, num_online_cpus()),
2404 ctrl->lport->ops->max_hw_queues);
2405 ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
James Smarte3994412016-12-02 00:28:42 -08002406 if (ret) {
2407 dev_info(ctrl->ctrl.device,
2408 "set_queue_count failed: %d\n", ret);
2409 return ret;
2410 }
2411
Sagi Grimberg73141832017-06-29 11:16:49 +03002412 ctrl->ctrl.queue_count = nr_io_queues + 1;
2413 if (!nr_io_queues)
James Smarte3994412016-12-02 00:28:42 -08002414 return 0;
2415
James Smarte3994412016-12-02 00:28:42 -08002416 nvme_fc_init_io_queues(ctrl);
2417
2418 memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
2419 ctrl->tag_set.ops = &nvme_fc_mq_ops;
2420 ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
2421 ctrl->tag_set.reserved_tags = 1; /* fabric connect */
2422 ctrl->tag_set.numa_node = NUMA_NO_NODE;
2423 ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
2424 ctrl->tag_set.cmd_size = sizeof(struct nvme_fc_fcp_op) +
2425 (SG_CHUNK_SIZE *
2426 sizeof(struct scatterlist)) +
2427 ctrl->lport->ops->fcprqst_priv_sz;
2428 ctrl->tag_set.driver_data = ctrl;
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002429 ctrl->tag_set.nr_hw_queues = ctrl->ctrl.queue_count - 1;
James Smarte3994412016-12-02 00:28:42 -08002430 ctrl->tag_set.timeout = NVME_IO_TIMEOUT;
2431
2432 ret = blk_mq_alloc_tag_set(&ctrl->tag_set);
2433 if (ret)
2434 return ret;
2435
2436 ctrl->ctrl.tagset = &ctrl->tag_set;
2437
2438 ctrl->ctrl.connect_q = blk_mq_init_queue(&ctrl->tag_set);
2439 if (IS_ERR(ctrl->ctrl.connect_q)) {
2440 ret = PTR_ERR(ctrl->ctrl.connect_q);
2441 goto out_free_tag_set;
2442 }
2443
James Smartd157e532018-03-07 15:59:36 -08002444 ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
James Smarte3994412016-12-02 00:28:42 -08002445 if (ret)
2446 goto out_cleanup_blk_queue;
2447
James Smartd157e532018-03-07 15:59:36 -08002448 ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
James Smarte3994412016-12-02 00:28:42 -08002449 if (ret)
2450 goto out_delete_hw_queues;
2451
James Smart4c984152018-06-13 14:07:37 -07002452 ctrl->ioq_live = true;
2453
James Smarte3994412016-12-02 00:28:42 -08002454 return 0;
2455
2456out_delete_hw_queues:
2457 nvme_fc_delete_hw_io_queues(ctrl);
2458out_cleanup_blk_queue:
James Smarte3994412016-12-02 00:28:42 -08002459 blk_cleanup_queue(ctrl->ctrl.connect_q);
2460out_free_tag_set:
2461 blk_mq_free_tag_set(&ctrl->tag_set);
2462 nvme_fc_free_io_queues(ctrl);
2463
2464 /* force put free routine to ignore io queues */
2465 ctrl->ctrl.tagset = NULL;
2466
2467 return ret;
2468}
2469
James Smart61bff8e2017-04-23 08:30:08 -07002470static int
James Smart3e493c02018-06-13 14:07:38 -07002471nvme_fc_recreate_io_queues(struct nvme_fc_ctrl *ctrl)
James Smart61bff8e2017-04-23 08:30:08 -07002472{
2473 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
Sagi Grimberg73141832017-06-29 11:16:49 +03002474 unsigned int nr_io_queues;
James Smart61bff8e2017-04-23 08:30:08 -07002475 int ret;
2476
Sagi Grimberg73141832017-06-29 11:16:49 +03002477 nr_io_queues = min(min(opts->nr_io_queues, num_online_cpus()),
2478 ctrl->lport->ops->max_hw_queues);
2479 ret = nvme_set_queue_count(&ctrl->ctrl, &nr_io_queues);
James Smart61bff8e2017-04-23 08:30:08 -07002480 if (ret) {
2481 dev_info(ctrl->ctrl.device,
2482 "set_queue_count failed: %d\n", ret);
2483 return ret;
2484 }
2485
Sagi Grimberg73141832017-06-29 11:16:49 +03002486 ctrl->ctrl.queue_count = nr_io_queues + 1;
James Smart61bff8e2017-04-23 08:30:08 -07002487 /* check for io queues existing */
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002488 if (ctrl->ctrl.queue_count == 1)
James Smart61bff8e2017-04-23 08:30:08 -07002489 return 0;
2490
James Smartd157e532018-03-07 15:59:36 -08002491 ret = nvme_fc_create_hw_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
James Smart61bff8e2017-04-23 08:30:08 -07002492 if (ret)
2493 goto out_free_io_queues;
2494
James Smartd157e532018-03-07 15:59:36 -08002495 ret = nvme_fc_connect_io_queues(ctrl, ctrl->ctrl.sqsize + 1);
James Smart61bff8e2017-04-23 08:30:08 -07002496 if (ret)
2497 goto out_delete_hw_queues;
2498
Sagi Grimbergcda5fd12017-06-29 11:20:10 +03002499 blk_mq_update_nr_hw_queues(&ctrl->tag_set, nr_io_queues);
2500
James Smart61bff8e2017-04-23 08:30:08 -07002501 return 0;
2502
2503out_delete_hw_queues:
2504 nvme_fc_delete_hw_io_queues(ctrl);
2505out_free_io_queues:
2506 nvme_fc_free_io_queues(ctrl);
2507 return ret;
2508}
2509
James Smart158bfb82017-11-03 08:13:17 -07002510static void
2511nvme_fc_rport_active_on_lport(struct nvme_fc_rport *rport)
2512{
2513 struct nvme_fc_lport *lport = rport->lport;
2514
2515 atomic_inc(&lport->act_rport_cnt);
2516}
2517
2518static void
2519nvme_fc_rport_inactive_on_lport(struct nvme_fc_rport *rport)
2520{
2521 struct nvme_fc_lport *lport = rport->lport;
2522 u32 cnt;
2523
2524 cnt = atomic_dec_return(&lport->act_rport_cnt);
2525 if (cnt == 0 && lport->localport.port_state == FC_OBJSTATE_DELETED)
2526 lport->ops->localport_delete(&lport->localport);
2527}
2528
2529static int
2530nvme_fc_ctlr_active_on_rport(struct nvme_fc_ctrl *ctrl)
2531{
2532 struct nvme_fc_rport *rport = ctrl->rport;
2533 u32 cnt;
2534
2535 if (ctrl->assoc_active)
2536 return 1;
2537
2538 ctrl->assoc_active = true;
2539 cnt = atomic_inc_return(&rport->act_ctrl_cnt);
2540 if (cnt == 1)
2541 nvme_fc_rport_active_on_lport(rport);
2542
2543 return 0;
2544}
2545
2546static int
2547nvme_fc_ctlr_inactive_on_rport(struct nvme_fc_ctrl *ctrl)
2548{
2549 struct nvme_fc_rport *rport = ctrl->rport;
2550 struct nvme_fc_lport *lport = rport->lport;
2551 u32 cnt;
2552
2553 /* ctrl->assoc_active=false will be set independently */
2554
2555 cnt = atomic_dec_return(&rport->act_ctrl_cnt);
2556 if (cnt == 0) {
2557 if (rport->remoteport.port_state == FC_OBJSTATE_DELETED)
2558 lport->ops->remoteport_delete(&rport->remoteport);
2559 nvme_fc_rport_inactive_on_lport(rport);
2560 }
2561
2562 return 0;
2563}
2564
James Smart61bff8e2017-04-23 08:30:08 -07002565/*
2566 * This routine restarts the controller on the host side, and
2567 * on the link side, recreates the controller association.
2568 */
2569static int
2570nvme_fc_create_association(struct nvme_fc_ctrl *ctrl)
2571{
2572 struct nvmf_ctrl_options *opts = ctrl->ctrl.opts;
James Smart61bff8e2017-04-23 08:30:08 -07002573 int ret;
2574 bool changed;
2575
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002576 ++ctrl->ctrl.nr_reconnects;
James Smart61bff8e2017-04-23 08:30:08 -07002577
James Smart96e24802017-10-25 16:43:16 -07002578 if (ctrl->rport->remoteport.port_state != FC_OBJSTATE_ONLINE)
2579 return -ENODEV;
2580
James Smart158bfb82017-11-03 08:13:17 -07002581 if (nvme_fc_ctlr_active_on_rport(ctrl))
2582 return -ENOTUNIQ;
2583
James Smart61bff8e2017-04-23 08:30:08 -07002584 /*
2585 * Create the admin queue
2586 */
2587
James Smart61bff8e2017-04-23 08:30:08 -07002588 ret = __nvme_fc_create_hw_queue(ctrl, &ctrl->queues[0], 0,
James Smartd157e532018-03-07 15:59:36 -08002589 NVME_AQ_DEPTH);
James Smart61bff8e2017-04-23 08:30:08 -07002590 if (ret)
2591 goto out_free_queue;
2592
2593 ret = nvme_fc_connect_admin_queue(ctrl, &ctrl->queues[0],
James Smartd157e532018-03-07 15:59:36 -08002594 NVME_AQ_DEPTH, (NVME_AQ_DEPTH / 4));
James Smart61bff8e2017-04-23 08:30:08 -07002595 if (ret)
2596 goto out_delete_hw_queue;
2597
James Smart4c984152018-06-13 14:07:37 -07002598 blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
James Smart61bff8e2017-04-23 08:30:08 -07002599
2600 ret = nvmf_connect_admin_queue(&ctrl->ctrl);
2601 if (ret)
2602 goto out_disconnect_admin_queue;
2603
Sagi Grimberg9e0ed162017-10-24 15:25:21 +03002604 set_bit(NVME_FC_Q_LIVE, &ctrl->queues[0].flags);
2605
James Smart61bff8e2017-04-23 08:30:08 -07002606 /*
2607 * Check controller capabilities
2608 *
2609 * todo:- add code to check if ctrl attributes changed from
2610 * prior connection values
2611 */
2612
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002613 ret = nvmf_reg_read64(&ctrl->ctrl, NVME_REG_CAP, &ctrl->ctrl.cap);
James Smart61bff8e2017-04-23 08:30:08 -07002614 if (ret) {
2615 dev_err(ctrl->ctrl.device,
2616 "prop_get NVME_REG_CAP failed\n");
2617 goto out_disconnect_admin_queue;
2618 }
2619
2620 ctrl->ctrl.sqsize =
James Smartd157e532018-03-07 15:59:36 -08002621 min_t(int, NVME_CAP_MQES(ctrl->ctrl.cap), ctrl->ctrl.sqsize);
James Smart61bff8e2017-04-23 08:30:08 -07002622
Sagi Grimberg20d0dfe2017-06-27 22:16:38 +03002623 ret = nvme_enable_ctrl(&ctrl->ctrl, ctrl->ctrl.cap);
James Smart61bff8e2017-04-23 08:30:08 -07002624 if (ret)
2625 goto out_disconnect_admin_queue;
2626
James Smartecad0d22017-10-23 15:11:36 -07002627 ctrl->ctrl.max_hw_sectors =
2628 (ctrl->lport->ops->max_sgl_segments - 1) << (PAGE_SHIFT - 9);
James Smart61bff8e2017-04-23 08:30:08 -07002629
2630 ret = nvme_init_identify(&ctrl->ctrl);
2631 if (ret)
2632 goto out_disconnect_admin_queue;
2633
2634 /* sanity checks */
2635
2636 /* FC-NVME does not have other data in the capsule */
2637 if (ctrl->ctrl.icdoff) {
2638 dev_err(ctrl->ctrl.device, "icdoff %d is not supported!\n",
2639 ctrl->ctrl.icdoff);
2640 goto out_disconnect_admin_queue;
2641 }
2642
James Smart61bff8e2017-04-23 08:30:08 -07002643 /* FC-NVME supports normal SGL Data Block Descriptors */
2644
2645 if (opts->queue_size > ctrl->ctrl.maxcmd) {
2646 /* warn if maxcmd is lower than queue_size */
2647 dev_warn(ctrl->ctrl.device,
2648 "queue_size %zu > ctrl maxcmd %u, reducing "
2649 "to queue_size\n",
2650 opts->queue_size, ctrl->ctrl.maxcmd);
2651 opts->queue_size = ctrl->ctrl.maxcmd;
2652 }
2653
James Smartd157e532018-03-07 15:59:36 -08002654 if (opts->queue_size > ctrl->ctrl.sqsize + 1) {
2655 /* warn if sqsize is lower than queue_size */
2656 dev_warn(ctrl->ctrl.device,
2657 "queue_size %zu > ctrl sqsize %u, clamping down\n",
2658 opts->queue_size, ctrl->ctrl.sqsize + 1);
2659 opts->queue_size = ctrl->ctrl.sqsize + 1;
2660 }
2661
James Smart61bff8e2017-04-23 08:30:08 -07002662 ret = nvme_fc_init_aen_ops(ctrl);
2663 if (ret)
2664 goto out_term_aen_ops;
2665
2666 /*
2667 * Create the io queues
2668 */
2669
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002670 if (ctrl->ctrl.queue_count > 1) {
James Smart4c984152018-06-13 14:07:37 -07002671 if (!ctrl->ioq_live)
James Smart61bff8e2017-04-23 08:30:08 -07002672 ret = nvme_fc_create_io_queues(ctrl);
2673 else
James Smart3e493c02018-06-13 14:07:38 -07002674 ret = nvme_fc_recreate_io_queues(ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002675 if (ret)
2676 goto out_term_aen_ops;
2677 }
2678
2679 changed = nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_LIVE);
James Smart61bff8e2017-04-23 08:30:08 -07002680
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002681 ctrl->ctrl.nr_reconnects = 0;
James Smart61bff8e2017-04-23 08:30:08 -07002682
James Smart44c6ec72017-10-25 16:43:14 -07002683 if (changed)
2684 nvme_start_ctrl(&ctrl->ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002685
2686 return 0; /* Success */
2687
2688out_term_aen_ops:
2689 nvme_fc_term_aen_ops(ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002690out_disconnect_admin_queue:
2691 /* send a Disconnect(association) LS to fc-nvme target */
2692 nvme_fc_xmt_disconnect_assoc(ctrl);
2693out_delete_hw_queue:
2694 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
2695out_free_queue:
2696 nvme_fc_free_queue(&ctrl->queues[0]);
James Smart158bfb82017-11-03 08:13:17 -07002697 ctrl->assoc_active = false;
2698 nvme_fc_ctlr_inactive_on_rport(ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002699
2700 return ret;
2701}
2702
2703/*
2704 * This routine stops operation of the controller on the host side.
2705 * On the host os stack side: Admin and IO queues are stopped,
2706 * outstanding ios on them terminated via FC ABTS.
2707 * On the link side: the association is terminated.
2708 */
2709static void
2710nvme_fc_delete_association(struct nvme_fc_ctrl *ctrl)
2711{
2712 unsigned long flags;
2713
James Smart158bfb82017-11-03 08:13:17 -07002714 if (!ctrl->assoc_active)
2715 return;
2716 ctrl->assoc_active = false;
2717
James Smart61bff8e2017-04-23 08:30:08 -07002718 spin_lock_irqsave(&ctrl->lock, flags);
2719 ctrl->flags |= FCCTRL_TERMIO;
2720 ctrl->iocnt = 0;
2721 spin_unlock_irqrestore(&ctrl->lock, flags);
2722
2723 /*
2724 * If io queues are present, stop them and terminate all outstanding
2725 * ios on them. As FC allocates FC exchange for each io, the
2726 * transport must contact the LLDD to terminate the exchange,
2727 * thus releasing the FC exchange. We use blk_mq_tagset_busy_itr()
2728 * to tell us what io's are busy and invoke a transport routine
2729 * to kill them with the LLDD. After terminating the exchange
2730 * the LLDD will call the transport's normal io done path, but it
2731 * will have an aborted status. The done path will return the
2732 * io requests back to the block layer as part of normal completions
2733 * (but with error status).
2734 */
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03002735 if (ctrl->ctrl.queue_count > 1) {
James Smart61bff8e2017-04-23 08:30:08 -07002736 nvme_stop_queues(&ctrl->ctrl);
2737 blk_mq_tagset_busy_iter(&ctrl->tag_set,
2738 nvme_fc_terminate_exchange, &ctrl->ctrl);
2739 }
2740
2741 /*
2742 * Other transports, which don't have link-level contexts bound
2743 * to sqe's, would try to gracefully shutdown the controller by
2744 * writing the registers for shutdown and polling (call
2745 * nvme_shutdown_ctrl()). Given a bunch of i/o was potentially
2746 * just aborted and we will wait on those contexts, and given
2747 * there was no indication of how live the controlelr is on the
2748 * link, don't send more io to create more contexts for the
2749 * shutdown. Let the controller fail via keepalive failure if
2750 * its still present.
2751 */
2752
2753 /*
2754 * clean up the admin queue. Same thing as above.
2755 * use blk_mq_tagset_busy_itr() and the transport routine to
2756 * terminate the exchanges.
2757 */
James Smart4c984152018-06-13 14:07:37 -07002758 blk_mq_quiesce_queue(ctrl->ctrl.admin_q);
James Smart61bff8e2017-04-23 08:30:08 -07002759 blk_mq_tagset_busy_iter(&ctrl->admin_tag_set,
2760 nvme_fc_terminate_exchange, &ctrl->ctrl);
2761
2762 /* kill the aens as they are a separate path */
2763 nvme_fc_abort_aen_ops(ctrl);
2764
2765 /* wait for all io that had to be aborted */
James Smart8a82dbf2017-10-09 13:39:44 -07002766 spin_lock_irq(&ctrl->lock);
James Smart36715cf2017-05-22 15:28:42 -07002767 wait_event_lock_irq(ctrl->ioabort_wait, ctrl->iocnt == 0, ctrl->lock);
James Smart61bff8e2017-04-23 08:30:08 -07002768 ctrl->flags &= ~FCCTRL_TERMIO;
James Smart8a82dbf2017-10-09 13:39:44 -07002769 spin_unlock_irq(&ctrl->lock);
James Smart61bff8e2017-04-23 08:30:08 -07002770
2771 nvme_fc_term_aen_ops(ctrl);
2772
2773 /*
2774 * send a Disconnect(association) LS to fc-nvme target
2775 * Note: could have been sent at top of process, but
2776 * cleaner on link traffic if after the aborts complete.
2777 * Note: if association doesn't exist, association_id will be 0
2778 */
2779 if (ctrl->association_id)
2780 nvme_fc_xmt_disconnect_assoc(ctrl);
2781
2782 if (ctrl->ctrl.tagset) {
2783 nvme_fc_delete_hw_io_queues(ctrl);
2784 nvme_fc_free_io_queues(ctrl);
2785 }
2786
2787 __nvme_fc_delete_hw_queue(ctrl, &ctrl->queues[0], 0);
2788 nvme_fc_free_queue(&ctrl->queues[0]);
James Smart158bfb82017-11-03 08:13:17 -07002789
James Smartd625d052018-01-11 14:29:22 -08002790 /* re-enable the admin_q so anything new can fast fail */
2791 blk_mq_unquiesce_queue(ctrl->ctrl.admin_q);
2792
James Smart158bfb82017-11-03 08:13:17 -07002793 nvme_fc_ctlr_inactive_on_rport(ctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002794}
2795
2796static void
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002797nvme_fc_delete_ctrl(struct nvme_ctrl *nctrl)
James Smart61bff8e2017-04-23 08:30:08 -07002798{
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002799 struct nvme_fc_ctrl *ctrl = to_fc_ctrl(nctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002800
James Smart61bff8e2017-04-23 08:30:08 -07002801 cancel_delayed_work_sync(&ctrl->connect_work);
James Smart61bff8e2017-04-23 08:30:08 -07002802 /*
2803 * kill the association on the link side. this will block
2804 * waiting for io to terminate
2805 */
2806 nvme_fc_delete_association(ctrl);
James Smart0fd997d2018-01-11 15:21:38 -08002807
2808 /* resume the io queues so that things will fast fail */
2809 nvme_start_queues(nctrl);
James Smart61bff8e2017-04-23 08:30:08 -07002810}
2811
2812static void
James Smart5bbecdb2017-05-15 17:10:16 -07002813nvme_fc_reconnect_or_delete(struct nvme_fc_ctrl *ctrl, int status)
2814{
James Smart2b632972017-10-25 16:43:17 -07002815 struct nvme_fc_rport *rport = ctrl->rport;
2816 struct nvme_fc_remote_port *portptr = &rport->remoteport;
2817 unsigned long recon_delay = ctrl->ctrl.opts->reconnect_delay * HZ;
2818 bool recon = true;
2819
Max Gurtovoyad6a0a52018-01-31 18:31:24 +02002820 if (ctrl->ctrl.state != NVME_CTRL_CONNECTING)
James Smart5bbecdb2017-05-15 17:10:16 -07002821 return;
James Smart5bbecdb2017-05-15 17:10:16 -07002822
James Smart2b632972017-10-25 16:43:17 -07002823 if (portptr->port_state == FC_OBJSTATE_ONLINE)
James Smart5bbecdb2017-05-15 17:10:16 -07002824 dev_info(ctrl->ctrl.device,
James Smart2b632972017-10-25 16:43:17 -07002825 "NVME-FC{%d}: reset: Reconnect attempt failed (%d)\n",
2826 ctrl->cnum, status);
2827 else if (time_after_eq(jiffies, rport->dev_loss_end))
2828 recon = false;
2829
2830 if (recon && nvmf_should_reconnect(&ctrl->ctrl)) {
2831 if (portptr->port_state == FC_OBJSTATE_ONLINE)
2832 dev_info(ctrl->ctrl.device,
2833 "NVME-FC{%d}: Reconnect attempt in %ld "
2834 "seconds\n",
2835 ctrl->cnum, recon_delay / HZ);
2836 else if (time_after(jiffies + recon_delay, rport->dev_loss_end))
2837 recon_delay = rport->dev_loss_end - jiffies;
2838
2839 queue_delayed_work(nvme_wq, &ctrl->connect_work, recon_delay);
James Smart5bbecdb2017-05-15 17:10:16 -07002840 } else {
James Smart2b632972017-10-25 16:43:17 -07002841 if (portptr->port_state == FC_OBJSTATE_ONLINE)
2842 dev_warn(ctrl->ctrl.device,
James Smart5bbecdb2017-05-15 17:10:16 -07002843 "NVME-FC{%d}: Max reconnect attempts (%d) "
Max Gurtovoy77d06122018-03-11 17:46:06 +02002844 "reached.\n",
Sagi Grimbergfdf9dfa2017-05-04 13:33:15 +03002845 ctrl->cnum, ctrl->ctrl.nr_reconnects);
James Smart2b632972017-10-25 16:43:17 -07002846 else
2847 dev_warn(ctrl->ctrl.device,
2848 "NVME-FC{%d}: dev_loss_tmo (%d) expired "
Max Gurtovoy77d06122018-03-11 17:46:06 +02002849 "while waiting for remoteport connectivity.\n",
2850 ctrl->cnum, portptr->dev_loss_tmo);
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002851 WARN_ON(nvme_delete_ctrl(&ctrl->ctrl));
James Smart5bbecdb2017-05-15 17:10:16 -07002852 }
2853}
2854
2855static void
James Smart61bff8e2017-04-23 08:30:08 -07002856nvme_fc_reset_ctrl_work(struct work_struct *work)
2857{
2858 struct nvme_fc_ctrl *ctrl =
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02002859 container_of(work, struct nvme_fc_ctrl, ctrl.reset_work);
James Smart61bff8e2017-04-23 08:30:08 -07002860 int ret;
2861
Sagi Grimbergd09f2b42017-07-02 10:56:43 +03002862 nvme_stop_ctrl(&ctrl->ctrl);
James Smart44c6ec72017-10-25 16:43:14 -07002863
James Smart61bff8e2017-04-23 08:30:08 -07002864 /* will block will waiting for io to terminate */
2865 nvme_fc_delete_association(ctrl);
2866
Max Gurtovoyad6a0a52018-01-31 18:31:24 +02002867 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
James Smart44c6ec72017-10-25 16:43:14 -07002868 dev_err(ctrl->ctrl.device,
2869 "NVME-FC{%d}: error_recovery: Couldn't change state "
Max Gurtovoyad6a0a52018-01-31 18:31:24 +02002870 "to CONNECTING\n", ctrl->cnum);
James Smart44c6ec72017-10-25 16:43:14 -07002871 return;
2872 }
2873
James Smart2b632972017-10-25 16:43:17 -07002874 if (ctrl->rport->remoteport.port_state == FC_OBJSTATE_ONLINE)
James Smart96e24802017-10-25 16:43:16 -07002875 ret = nvme_fc_create_association(ctrl);
James Smart2b632972017-10-25 16:43:17 -07002876 else
2877 ret = -ENOTCONN;
2878
James Smart5bbecdb2017-05-15 17:10:16 -07002879 if (ret)
2880 nvme_fc_reconnect_or_delete(ctrl, ret);
2881 else
James Smart61bff8e2017-04-23 08:30:08 -07002882 dev_info(ctrl->ctrl.device,
James Smart2b632972017-10-25 16:43:17 -07002883 "NVME-FC{%d}: controller reset complete\n",
2884 ctrl->cnum);
James Smart61bff8e2017-04-23 08:30:08 -07002885}
2886
James Smart61bff8e2017-04-23 08:30:08 -07002887static const struct nvme_ctrl_ops nvme_fc_ctrl_ops = {
2888 .name = "fc",
2889 .module = THIS_MODULE,
Christoph Hellwigd3d5b872017-05-20 15:14:44 +02002890 .flags = NVME_F_FABRICS,
James Smart61bff8e2017-04-23 08:30:08 -07002891 .reg_read32 = nvmf_reg_read32,
2892 .reg_read64 = nvmf_reg_read64,
2893 .reg_write32 = nvmf_reg_write32,
James Smart61bff8e2017-04-23 08:30:08 -07002894 .free_ctrl = nvme_fc_nvme_ctrl_freed,
2895 .submit_async_event = nvme_fc_submit_async_event,
Christoph Hellwigc5017e82017-10-29 10:44:29 +02002896 .delete_ctrl = nvme_fc_delete_ctrl,
James Smart61bff8e2017-04-23 08:30:08 -07002897 .get_address = nvmf_get_address,
2898};
2899
2900static void
2901nvme_fc_connect_ctrl_work(struct work_struct *work)
2902{
2903 int ret;
2904
2905 struct nvme_fc_ctrl *ctrl =
2906 container_of(to_delayed_work(work),
2907 struct nvme_fc_ctrl, connect_work);
2908
2909 ret = nvme_fc_create_association(ctrl);
James Smart5bbecdb2017-05-15 17:10:16 -07002910 if (ret)
2911 nvme_fc_reconnect_or_delete(ctrl, ret);
2912 else
James Smart61bff8e2017-04-23 08:30:08 -07002913 dev_info(ctrl->ctrl.device,
James Smart4c984152018-06-13 14:07:37 -07002914 "NVME-FC{%d}: controller connect complete\n",
James Smart61bff8e2017-04-23 08:30:08 -07002915 ctrl->cnum);
2916}
2917
2918
2919static const struct blk_mq_ops nvme_fc_admin_mq_ops = {
2920 .queue_rq = nvme_fc_queue_rq,
2921 .complete = nvme_fc_complete_rq,
Christoph Hellwig76f983c2017-06-13 09:15:20 +02002922 .init_request = nvme_fc_init_request,
James Smart61bff8e2017-04-23 08:30:08 -07002923 .exit_request = nvme_fc_exit_request,
James Smart61bff8e2017-04-23 08:30:08 -07002924 .init_hctx = nvme_fc_init_admin_hctx,
2925 .timeout = nvme_fc_timeout,
2926};
2927
James Smarte3994412016-12-02 00:28:42 -08002928
James Smart56d5f4f2017-10-20 16:17:08 -07002929/*
2930 * Fails a controller request if it matches an existing controller
2931 * (association) with the same tuple:
2932 * <Host NQN, Host ID, local FC port, remote FC port, SUBSYS NQN>
2933 *
2934 * The ports don't need to be compared as they are intrinsically
2935 * already matched by the port pointers supplied.
2936 */
2937static bool
2938nvme_fc_existing_controller(struct nvme_fc_rport *rport,
2939 struct nvmf_ctrl_options *opts)
2940{
2941 struct nvme_fc_ctrl *ctrl;
2942 unsigned long flags;
2943 bool found = false;
2944
2945 spin_lock_irqsave(&rport->lock, flags);
2946 list_for_each_entry(ctrl, &rport->ctrl_list, ctrl_list) {
2947 found = nvmf_ctlr_matches_baseopts(&ctrl->ctrl, opts);
2948 if (found)
2949 break;
2950 }
2951 spin_unlock_irqrestore(&rport->lock, flags);
2952
2953 return found;
2954}
2955
James Smarte3994412016-12-02 00:28:42 -08002956static struct nvme_ctrl *
James Smart61bff8e2017-04-23 08:30:08 -07002957nvme_fc_init_ctrl(struct device *dev, struct nvmf_ctrl_options *opts,
James Smarte3994412016-12-02 00:28:42 -08002958 struct nvme_fc_lport *lport, struct nvme_fc_rport *rport)
2959{
2960 struct nvme_fc_ctrl *ctrl;
2961 unsigned long flags;
James Smart4c984152018-06-13 14:07:37 -07002962 int ret, idx;
James Smarte3994412016-12-02 00:28:42 -08002963
James Smart85e6a6a2017-05-05 16:13:15 -07002964 if (!(rport->remoteport.port_role &
2965 (FC_PORT_ROLE_NVME_DISCOVERY | FC_PORT_ROLE_NVME_TARGET))) {
2966 ret = -EBADR;
2967 goto out_fail;
2968 }
2969
James Smart56d5f4f2017-10-20 16:17:08 -07002970 if (!opts->duplicate_connect &&
2971 nvme_fc_existing_controller(rport, opts)) {
2972 ret = -EALREADY;
2973 goto out_fail;
2974 }
2975
James Smarte3994412016-12-02 00:28:42 -08002976 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
2977 if (!ctrl) {
2978 ret = -ENOMEM;
2979 goto out_fail;
2980 }
2981
2982 idx = ida_simple_get(&nvme_fc_ctrl_cnt, 0, 0, GFP_KERNEL);
2983 if (idx < 0) {
2984 ret = -ENOSPC;
2985 goto out_free_ctrl;
2986 }
2987
2988 ctrl->ctrl.opts = opts;
James Smart4c984152018-06-13 14:07:37 -07002989 ctrl->ctrl.nr_reconnects = 0;
James Smarte3994412016-12-02 00:28:42 -08002990 INIT_LIST_HEAD(&ctrl->ctrl_list);
James Smarte3994412016-12-02 00:28:42 -08002991 ctrl->lport = lport;
2992 ctrl->rport = rport;
2993 ctrl->dev = lport->dev;
James Smarte3994412016-12-02 00:28:42 -08002994 ctrl->cnum = idx;
James Smart4c984152018-06-13 14:07:37 -07002995 ctrl->ioq_live = false;
James Smart158bfb82017-11-03 08:13:17 -07002996 ctrl->assoc_active = false;
James Smart8a82dbf2017-10-09 13:39:44 -07002997 init_waitqueue_head(&ctrl->ioabort_wait);
James Smarte3994412016-12-02 00:28:42 -08002998
James Smarte3994412016-12-02 00:28:42 -08002999 get_device(ctrl->dev);
3000 kref_init(&ctrl->ref);
3001
Christoph Hellwigd86c4d82017-06-15 15:41:08 +02003002 INIT_WORK(&ctrl->ctrl.reset_work, nvme_fc_reset_ctrl_work);
James Smart61bff8e2017-04-23 08:30:08 -07003003 INIT_DELAYED_WORK(&ctrl->connect_work, nvme_fc_connect_ctrl_work);
James Smarte3994412016-12-02 00:28:42 -08003004 spin_lock_init(&ctrl->lock);
3005
3006 /* io queue count */
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03003007 ctrl->ctrl.queue_count = min_t(unsigned int,
James Smarte3994412016-12-02 00:28:42 -08003008 opts->nr_io_queues,
3009 lport->ops->max_hw_queues);
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03003010 ctrl->ctrl.queue_count++; /* +1 for admin queue */
James Smarte3994412016-12-02 00:28:42 -08003011
3012 ctrl->ctrl.sqsize = opts->queue_size - 1;
3013 ctrl->ctrl.kato = opts->kato;
James Smart4c984152018-06-13 14:07:37 -07003014 ctrl->ctrl.cntlid = 0xffff;
James Smarte3994412016-12-02 00:28:42 -08003015
3016 ret = -ENOMEM;
Sagi Grimbergd858e5f2017-04-24 10:58:29 +03003017 ctrl->queues = kcalloc(ctrl->ctrl.queue_count,
3018 sizeof(struct nvme_fc_queue), GFP_KERNEL);
James Smarte3994412016-12-02 00:28:42 -08003019 if (!ctrl->queues)
James Smart61bff8e2017-04-23 08:30:08 -07003020 goto out_free_ida;
James Smarte3994412016-12-02 00:28:42 -08003021
James Smart3e493c02018-06-13 14:07:38 -07003022 nvme_fc_init_queue(ctrl, 0);
3023
James Smart61bff8e2017-04-23 08:30:08 -07003024 memset(&ctrl->admin_tag_set, 0, sizeof(ctrl->admin_tag_set));
3025 ctrl->admin_tag_set.ops = &nvme_fc_admin_mq_ops;
Keith Busch38dabe22017-11-07 15:13:10 -07003026 ctrl->admin_tag_set.queue_depth = NVME_AQ_MQ_TAG_DEPTH;
James Smart61bff8e2017-04-23 08:30:08 -07003027 ctrl->admin_tag_set.reserved_tags = 2; /* fabric connect + Keep-Alive */
3028 ctrl->admin_tag_set.numa_node = NUMA_NO_NODE;
3029 ctrl->admin_tag_set.cmd_size = sizeof(struct nvme_fc_fcp_op) +
3030 (SG_CHUNK_SIZE *
3031 sizeof(struct scatterlist)) +
3032 ctrl->lport->ops->fcprqst_priv_sz;
3033 ctrl->admin_tag_set.driver_data = ctrl;
3034 ctrl->admin_tag_set.nr_hw_queues = 1;
3035 ctrl->admin_tag_set.timeout = ADMIN_TIMEOUT;
Israel Rukshin5a22e2b2017-10-18 12:38:25 +00003036 ctrl->admin_tag_set.flags = BLK_MQ_F_NO_SCHED;
James Smart61bff8e2017-04-23 08:30:08 -07003037
3038 ret = blk_mq_alloc_tag_set(&ctrl->admin_tag_set);
James Smarte3994412016-12-02 00:28:42 -08003039 if (ret)
James Smart61bff8e2017-04-23 08:30:08 -07003040 goto out_free_queues;
Sagi Grimberg34b6c232017-07-10 09:22:29 +03003041 ctrl->ctrl.admin_tagset = &ctrl->admin_tag_set;
James Smarte3994412016-12-02 00:28:42 -08003042
James Smart61bff8e2017-04-23 08:30:08 -07003043 ctrl->ctrl.admin_q = blk_mq_init_queue(&ctrl->admin_tag_set);
3044 if (IS_ERR(ctrl->ctrl.admin_q)) {
3045 ret = PTR_ERR(ctrl->ctrl.admin_q);
3046 goto out_free_admin_tag_set;
James Smarte3994412016-12-02 00:28:42 -08003047 }
3048
James Smart61bff8e2017-04-23 08:30:08 -07003049 /*
3050 * Would have been nice to init io queues tag set as well.
3051 * However, we require interaction from the controller
3052 * for max io queue count before we can do so.
3053 * Defer this to the connect path.
3054 */
James Smarte3994412016-12-02 00:28:42 -08003055
James Smart61bff8e2017-04-23 08:30:08 -07003056 ret = nvme_init_ctrl(&ctrl->ctrl, dev, &nvme_fc_ctrl_ops, 0);
James Smarte3994412016-12-02 00:28:42 -08003057 if (ret)
James Smart61bff8e2017-04-23 08:30:08 -07003058 goto out_cleanup_admin_q;
James Smarte3994412016-12-02 00:28:42 -08003059
James Smart61bff8e2017-04-23 08:30:08 -07003060 /* at this point, teardown path changes to ref counting on nvme ctrl */
James Smarte3994412016-12-02 00:28:42 -08003061
3062 spin_lock_irqsave(&rport->lock, flags);
3063 list_add_tail(&ctrl->ctrl_list, &rport->ctrl_list);
3064 spin_unlock_irqrestore(&rport->lock, flags);
3065
James Smart4c984152018-06-13 14:07:37 -07003066 if (!nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_RESETTING) ||
3067 !nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_CONNECTING)) {
James Smart17c4dc62017-10-09 16:39:22 -07003068 dev_err(ctrl->ctrl.device,
James Smart4c984152018-06-13 14:07:37 -07003069 "NVME-FC{%d}: failed to init ctrl state\n", ctrl->cnum);
3070 goto fail_ctrl;
James Smarte3994412016-12-02 00:28:42 -08003071 }
3072
Christoph Hellwigd22524a2017-10-18 13:25:42 +02003073 nvme_get_ctrl(&ctrl->ctrl);
James Smart2cb657b2017-05-15 17:10:22 -07003074
James Smart4c984152018-06-13 14:07:37 -07003075 if (!queue_delayed_work(nvme_wq, &ctrl->connect_work, 0)) {
3076 nvme_put_ctrl(&ctrl->ctrl);
3077 dev_err(ctrl->ctrl.device,
3078 "NVME-FC{%d}: failed to schedule initial connect\n",
3079 ctrl->cnum);
3080 goto fail_ctrl;
3081 }
3082
3083 flush_delayed_work(&ctrl->connect_work);
3084
James Smart61bff8e2017-04-23 08:30:08 -07003085 dev_info(ctrl->ctrl.device,
3086 "NVME-FC{%d}: new ctrl: NQN \"%s\"\n",
3087 ctrl->cnum, ctrl->ctrl.opts->subsysnqn);
3088
James Smarte3994412016-12-02 00:28:42 -08003089 return &ctrl->ctrl;
3090
James Smart4c984152018-06-13 14:07:37 -07003091fail_ctrl:
3092 nvme_change_ctrl_state(&ctrl->ctrl, NVME_CTRL_DELETING);
3093 cancel_work_sync(&ctrl->ctrl.reset_work);
3094 cancel_delayed_work_sync(&ctrl->connect_work);
3095
3096 ctrl->ctrl.opts = NULL;
3097
3098 /* initiate nvme ctrl ref counting teardown */
3099 nvme_uninit_ctrl(&ctrl->ctrl);
3100
3101 /* Remove core ctrl ref. */
3102 nvme_put_ctrl(&ctrl->ctrl);
3103
3104 /* as we're past the point where we transition to the ref
3105 * counting teardown path, if we return a bad pointer here,
3106 * the calling routine, thinking it's prior to the
3107 * transition, will do an rport put. Since the teardown
3108 * path also does a rport put, we do an extra get here to
3109 * so proper order/teardown happens.
3110 */
3111 nvme_fc_rport_get(rport);
3112
3113 return ERR_PTR(-EIO);
3114
James Smart61bff8e2017-04-23 08:30:08 -07003115out_cleanup_admin_q:
3116 blk_cleanup_queue(ctrl->ctrl.admin_q);
3117out_free_admin_tag_set:
3118 blk_mq_free_tag_set(&ctrl->admin_tag_set);
3119out_free_queues:
3120 kfree(ctrl->queues);
James Smarte3994412016-12-02 00:28:42 -08003121out_free_ida:
James Smart61bff8e2017-04-23 08:30:08 -07003122 put_device(ctrl->dev);
James Smarte3994412016-12-02 00:28:42 -08003123 ida_simple_remove(&nvme_fc_ctrl_cnt, ctrl->cnum);
3124out_free_ctrl:
3125 kfree(ctrl);
3126out_fail:
James Smarte3994412016-12-02 00:28:42 -08003127 /* exit via here doesn't follow ctlr ref points */
3128 return ERR_PTR(ret);
3129}
3130
James Smarte3994412016-12-02 00:28:42 -08003131
3132struct nvmet_fc_traddr {
3133 u64 nn;
3134 u64 pn;
3135};
3136
James Smarte3994412016-12-02 00:28:42 -08003137static int
James Smart9c5358e2017-07-17 13:59:39 -07003138__nvme_fc_parse_u64(substring_t *sstr, u64 *val)
James Smarte3994412016-12-02 00:28:42 -08003139{
James Smarte3994412016-12-02 00:28:42 -08003140 u64 token64;
3141
James Smart9c5358e2017-07-17 13:59:39 -07003142 if (match_u64(sstr, &token64))
3143 return -EINVAL;
3144 *val = token64;
James Smarte3994412016-12-02 00:28:42 -08003145
James Smart9c5358e2017-07-17 13:59:39 -07003146 return 0;
3147}
James Smarte3994412016-12-02 00:28:42 -08003148
James Smart9c5358e2017-07-17 13:59:39 -07003149/*
3150 * This routine validates and extracts the WWN's from the TRADDR string.
3151 * As kernel parsers need the 0x to determine number base, universally
3152 * build string to parse with 0x prefix before parsing name strings.
3153 */
3154static int
3155nvme_fc_parse_traddr(struct nvmet_fc_traddr *traddr, char *buf, size_t blen)
3156{
3157 char name[2 + NVME_FC_TRADDR_HEXNAMELEN + 1];
3158 substring_t wwn = { name, &name[sizeof(name)-1] };
3159 int nnoffset, pnoffset;
James Smarte3994412016-12-02 00:28:42 -08003160
James Smart9c5358e2017-07-17 13:59:39 -07003161 /* validate it string one of the 2 allowed formats */
3162 if (strnlen(buf, blen) == NVME_FC_TRADDR_MAXLENGTH &&
3163 !strncmp(buf, "nn-0x", NVME_FC_TRADDR_OXNNLEN) &&
3164 !strncmp(&buf[NVME_FC_TRADDR_MAX_PN_OFFSET],
3165 "pn-0x", NVME_FC_TRADDR_OXNNLEN)) {
3166 nnoffset = NVME_FC_TRADDR_OXNNLEN;
3167 pnoffset = NVME_FC_TRADDR_MAX_PN_OFFSET +
3168 NVME_FC_TRADDR_OXNNLEN;
3169 } else if ((strnlen(buf, blen) == NVME_FC_TRADDR_MINLENGTH &&
3170 !strncmp(buf, "nn-", NVME_FC_TRADDR_NNLEN) &&
3171 !strncmp(&buf[NVME_FC_TRADDR_MIN_PN_OFFSET],
3172 "pn-", NVME_FC_TRADDR_NNLEN))) {
3173 nnoffset = NVME_FC_TRADDR_NNLEN;
3174 pnoffset = NVME_FC_TRADDR_MIN_PN_OFFSET + NVME_FC_TRADDR_NNLEN;
3175 } else
3176 goto out_einval;
3177
3178 name[0] = '0';
3179 name[1] = 'x';
3180 name[2 + NVME_FC_TRADDR_HEXNAMELEN] = 0;
3181
3182 memcpy(&name[2], &buf[nnoffset], NVME_FC_TRADDR_HEXNAMELEN);
3183 if (__nvme_fc_parse_u64(&wwn, &traddr->nn))
3184 goto out_einval;
3185
3186 memcpy(&name[2], &buf[pnoffset], NVME_FC_TRADDR_HEXNAMELEN);
3187 if (__nvme_fc_parse_u64(&wwn, &traddr->pn))
3188 goto out_einval;
3189
3190 return 0;
3191
3192out_einval:
3193 pr_warn("%s: bad traddr string\n", __func__);
3194 return -EINVAL;
James Smarte3994412016-12-02 00:28:42 -08003195}
3196
3197static struct nvme_ctrl *
3198nvme_fc_create_ctrl(struct device *dev, struct nvmf_ctrl_options *opts)
3199{
3200 struct nvme_fc_lport *lport;
3201 struct nvme_fc_rport *rport;
James Smart61bff8e2017-04-23 08:30:08 -07003202 struct nvme_ctrl *ctrl;
James Smarte3994412016-12-02 00:28:42 -08003203 struct nvmet_fc_traddr laddr = { 0L, 0L };
3204 struct nvmet_fc_traddr raddr = { 0L, 0L };
3205 unsigned long flags;
3206 int ret;
3207
James Smart9c5358e2017-07-17 13:59:39 -07003208 ret = nvme_fc_parse_traddr(&raddr, opts->traddr, NVMF_TRADDR_SIZE);
James Smarte3994412016-12-02 00:28:42 -08003209 if (ret || !raddr.nn || !raddr.pn)
3210 return ERR_PTR(-EINVAL);
3211
James Smart9c5358e2017-07-17 13:59:39 -07003212 ret = nvme_fc_parse_traddr(&laddr, opts->host_traddr, NVMF_TRADDR_SIZE);
James Smarte3994412016-12-02 00:28:42 -08003213 if (ret || !laddr.nn || !laddr.pn)
3214 return ERR_PTR(-EINVAL);
3215
3216 /* find the host and remote ports to connect together */
3217 spin_lock_irqsave(&nvme_fc_lock, flags);
3218 list_for_each_entry(lport, &nvme_fc_lport_list, port_list) {
3219 if (lport->localport.node_name != laddr.nn ||
3220 lport->localport.port_name != laddr.pn)
3221 continue;
3222
3223 list_for_each_entry(rport, &lport->endp_list, endp_list) {
3224 if (rport->remoteport.node_name != raddr.nn ||
3225 rport->remoteport.port_name != raddr.pn)
3226 continue;
3227
3228 /* if fail to get reference fall through. Will error */
3229 if (!nvme_fc_rport_get(rport))
3230 break;
3231
3232 spin_unlock_irqrestore(&nvme_fc_lock, flags);
3233
James Smart61bff8e2017-04-23 08:30:08 -07003234 ctrl = nvme_fc_init_ctrl(dev, opts, lport, rport);
3235 if (IS_ERR(ctrl))
3236 nvme_fc_rport_put(rport);
3237 return ctrl;
James Smarte3994412016-12-02 00:28:42 -08003238 }
3239 }
3240 spin_unlock_irqrestore(&nvme_fc_lock, flags);
3241
Johannes Thumshirn4fb135a2018-04-19 19:43:42 +02003242 pr_warn("%s: %s - %s combination not found\n",
3243 __func__, opts->traddr, opts->host_traddr);
James Smarte3994412016-12-02 00:28:42 -08003244 return ERR_PTR(-ENOENT);
3245}
3246
3247
3248static struct nvmf_transport_ops nvme_fc_transport = {
3249 .name = "fc",
Roy Shterman0de5cd32017-12-25 14:18:30 +02003250 .module = THIS_MODULE,
James Smarte3994412016-12-02 00:28:42 -08003251 .required_opts = NVMF_OPT_TRADDR | NVMF_OPT_HOST_TRADDR,
James Smart5bbecdb2017-05-15 17:10:16 -07003252 .allowed_opts = NVMF_OPT_RECONNECT_DELAY | NVMF_OPT_CTRL_LOSS_TMO,
James Smarte3994412016-12-02 00:28:42 -08003253 .create_ctrl = nvme_fc_create_ctrl,
3254};
3255
3256static int __init nvme_fc_init_module(void)
3257{
James Smart5f568552017-09-14 10:38:41 -07003258 int ret;
3259
3260 /*
3261 * NOTE:
3262 * It is expected that in the future the kernel will combine
3263 * the FC-isms that are currently under scsi and now being
3264 * added to by NVME into a new standalone FC class. The SCSI
3265 * and NVME protocols and their devices would be under this
3266 * new FC class.
3267 *
3268 * As we need something to post FC-specific udev events to,
3269 * specifically for nvme probe events, start by creating the
3270 * new device class. When the new standalone FC class is
3271 * put in place, this code will move to a more generic
3272 * location for the class.
3273 */
3274 fc_class = class_create(THIS_MODULE, "fc");
3275 if (IS_ERR(fc_class)) {
3276 pr_err("couldn't register class fc\n");
3277 return PTR_ERR(fc_class);
3278 }
3279
3280 /*
3281 * Create a device for the FC-centric udev events
3282 */
3283 fc_udev_device = device_create(fc_class, NULL, MKDEV(0, 0), NULL,
3284 "fc_udev_device");
3285 if (IS_ERR(fc_udev_device)) {
3286 pr_err("couldn't create fc_udev device!\n");
3287 ret = PTR_ERR(fc_udev_device);
3288 goto out_destroy_class;
3289 }
3290
3291 ret = nvmf_register_transport(&nvme_fc_transport);
3292 if (ret)
3293 goto out_destroy_device;
3294
3295 return 0;
3296
3297out_destroy_device:
3298 device_destroy(fc_class, MKDEV(0, 0));
3299out_destroy_class:
3300 class_destroy(fc_class);
3301 return ret;
James Smarte3994412016-12-02 00:28:42 -08003302}
3303
3304static void __exit nvme_fc_exit_module(void)
3305{
3306 /* sanity check - all lports should be removed */
3307 if (!list_empty(&nvme_fc_lport_list))
3308 pr_warn("%s: localport list not empty\n", __func__);
3309
3310 nvmf_unregister_transport(&nvme_fc_transport);
3311
James Smarte3994412016-12-02 00:28:42 -08003312 ida_destroy(&nvme_fc_local_port_cnt);
3313 ida_destroy(&nvme_fc_ctrl_cnt);
James Smart5f568552017-09-14 10:38:41 -07003314
3315 device_destroy(fc_class, MKDEV(0, 0));
3316 class_destroy(fc_class);
James Smarte3994412016-12-02 00:28:42 -08003317}
3318
3319module_init(nvme_fc_init_module);
3320module_exit(nvme_fc_exit_module);
3321
3322MODULE_LICENSE("GPL v2");