nvme-multipath: revalidate paths during rescan
[linux-2.6-microblaze.git] / drivers / nvme / host / core.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * NVM Express device driver
4  * Copyright (c) 2011-2014, Intel Corporation.
5  */
6
7 #include <linux/blkdev.h>
8 #include <linux/blk-mq.h>
9 #include <linux/compat.h>
10 #include <linux/delay.h>
11 #include <linux/errno.h>
12 #include <linux/hdreg.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/backing-dev.h>
16 #include <linux/list_sort.h>
17 #include <linux/slab.h>
18 #include <linux/types.h>
19 #include <linux/pr.h>
20 #include <linux/ptrace.h>
21 #include <linux/nvme_ioctl.h>
22 #include <linux/pm_qos.h>
23 #include <asm/unaligned.h>
24
25 #include "nvme.h"
26 #include "fabrics.h"
27
28 #define CREATE_TRACE_POINTS
29 #include "trace.h"
30
31 #define NVME_MINORS             (1U << MINORBITS)
32
33 unsigned int admin_timeout = 60;
34 module_param(admin_timeout, uint, 0644);
35 MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
36 EXPORT_SYMBOL_GPL(admin_timeout);
37
38 unsigned int nvme_io_timeout = 30;
39 module_param_named(io_timeout, nvme_io_timeout, uint, 0644);
40 MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
41 EXPORT_SYMBOL_GPL(nvme_io_timeout);
42
43 static unsigned char shutdown_timeout = 5;
44 module_param(shutdown_timeout, byte, 0644);
45 MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
46
47 static u8 nvme_max_retries = 5;
48 module_param_named(max_retries, nvme_max_retries, byte, 0644);
49 MODULE_PARM_DESC(max_retries, "max number of retries a command may have");
50
51 static unsigned long default_ps_max_latency_us = 100000;
52 module_param(default_ps_max_latency_us, ulong, 0644);
53 MODULE_PARM_DESC(default_ps_max_latency_us,
54                  "max power saving latency for new devices; use PM QOS to change per device");
55
56 static bool force_apst;
57 module_param(force_apst, bool, 0644);
58 MODULE_PARM_DESC(force_apst, "allow APST for newly enumerated devices even if quirked off");
59
60 static unsigned long apst_primary_timeout_ms = 100;
61 module_param(apst_primary_timeout_ms, ulong, 0644);
62 MODULE_PARM_DESC(apst_primary_timeout_ms,
63         "primary APST timeout in ms");
64
65 static unsigned long apst_secondary_timeout_ms = 2000;
66 module_param(apst_secondary_timeout_ms, ulong, 0644);
67 MODULE_PARM_DESC(apst_secondary_timeout_ms,
68         "secondary APST timeout in ms");
69
70 static unsigned long apst_primary_latency_tol_us = 15000;
71 module_param(apst_primary_latency_tol_us, ulong, 0644);
72 MODULE_PARM_DESC(apst_primary_latency_tol_us,
73         "primary APST latency tolerance in us");
74
75 static unsigned long apst_secondary_latency_tol_us = 100000;
76 module_param(apst_secondary_latency_tol_us, ulong, 0644);
77 MODULE_PARM_DESC(apst_secondary_latency_tol_us,
78         "secondary APST latency tolerance in us");
79
80 static bool streams;
81 module_param(streams, bool, 0644);
82 MODULE_PARM_DESC(streams, "turn on support for Streams write directives");
83
84 /*
85  * nvme_wq - hosts nvme related works that are not reset or delete
86  * nvme_reset_wq - hosts nvme reset works
87  * nvme_delete_wq - hosts nvme delete works
88  *
89  * nvme_wq will host works such as scan, aen handling, fw activation,
90  * keep-alive, periodic reconnects etc. nvme_reset_wq
91  * runs reset works which also flush works hosted on nvme_wq for
92  * serialization purposes. nvme_delete_wq host controller deletion
93  * works which flush reset works for serialization.
94  */
95 struct workqueue_struct *nvme_wq;
96 EXPORT_SYMBOL_GPL(nvme_wq);
97
98 struct workqueue_struct *nvme_reset_wq;
99 EXPORT_SYMBOL_GPL(nvme_reset_wq);
100
101 struct workqueue_struct *nvme_delete_wq;
102 EXPORT_SYMBOL_GPL(nvme_delete_wq);
103
104 static LIST_HEAD(nvme_subsystems);
105 static DEFINE_MUTEX(nvme_subsystems_lock);
106
107 static DEFINE_IDA(nvme_instance_ida);
108 static dev_t nvme_ctrl_base_chr_devt;
109 static struct class *nvme_class;
110 static struct class *nvme_subsys_class;
111
112 static DEFINE_IDA(nvme_ns_chr_minor_ida);
113 static dev_t nvme_ns_chr_devt;
114 static struct class *nvme_ns_chr_class;
115
116 static void nvme_put_subsystem(struct nvme_subsystem *subsys);
117 static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
118                                            unsigned nsid);
119
120 /*
121  * Prepare a queue for teardown.
122  *
123  * This must forcibly unquiesce queues to avoid blocking dispatch, and only set
124  * the capacity to 0 after that to avoid blocking dispatchers that may be
125  * holding bd_butex.  This will end buffered writers dirtying pages that can't
126  * be synced.
127  */
128 static void nvme_set_queue_dying(struct nvme_ns *ns)
129 {
130         if (test_and_set_bit(NVME_NS_DEAD, &ns->flags))
131                 return;
132
133         blk_set_queue_dying(ns->queue);
134         blk_mq_unquiesce_queue(ns->queue);
135
136         set_capacity_and_notify(ns->disk, 0);
137 }
138
139 void nvme_queue_scan(struct nvme_ctrl *ctrl)
140 {
141         /*
142          * Only new queue scan work when admin and IO queues are both alive
143          */
144         if (ctrl->state == NVME_CTRL_LIVE && ctrl->tagset)
145                 queue_work(nvme_wq, &ctrl->scan_work);
146 }
147
148 /*
149  * Use this function to proceed with scheduling reset_work for a controller
150  * that had previously been set to the resetting state. This is intended for
151  * code paths that can't be interrupted by other reset attempts. A hot removal
152  * may prevent this from succeeding.
153  */
154 int nvme_try_sched_reset(struct nvme_ctrl *ctrl)
155 {
156         if (ctrl->state != NVME_CTRL_RESETTING)
157                 return -EBUSY;
158         if (!queue_work(nvme_reset_wq, &ctrl->reset_work))
159                 return -EBUSY;
160         return 0;
161 }
162 EXPORT_SYMBOL_GPL(nvme_try_sched_reset);
163
164 static void nvme_failfast_work(struct work_struct *work)
165 {
166         struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
167                         struct nvme_ctrl, failfast_work);
168
169         if (ctrl->state != NVME_CTRL_CONNECTING)
170                 return;
171
172         set_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
173         dev_info(ctrl->device, "failfast expired\n");
174         nvme_kick_requeue_lists(ctrl);
175 }
176
177 static inline void nvme_start_failfast_work(struct nvme_ctrl *ctrl)
178 {
179         if (!ctrl->opts || ctrl->opts->fast_io_fail_tmo == -1)
180                 return;
181
182         schedule_delayed_work(&ctrl->failfast_work,
183                               ctrl->opts->fast_io_fail_tmo * HZ);
184 }
185
186 static inline void nvme_stop_failfast_work(struct nvme_ctrl *ctrl)
187 {
188         if (!ctrl->opts)
189                 return;
190
191         cancel_delayed_work_sync(&ctrl->failfast_work);
192         clear_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
193 }
194
195
196 int nvme_reset_ctrl(struct nvme_ctrl *ctrl)
197 {
198         if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
199                 return -EBUSY;
200         if (!queue_work(nvme_reset_wq, &ctrl->reset_work))
201                 return -EBUSY;
202         return 0;
203 }
204 EXPORT_SYMBOL_GPL(nvme_reset_ctrl);
205
206 int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl)
207 {
208         int ret;
209
210         ret = nvme_reset_ctrl(ctrl);
211         if (!ret) {
212                 flush_work(&ctrl->reset_work);
213                 if (ctrl->state != NVME_CTRL_LIVE)
214                         ret = -ENETRESET;
215         }
216
217         return ret;
218 }
219
220 static void nvme_do_delete_ctrl(struct nvme_ctrl *ctrl)
221 {
222         dev_info(ctrl->device,
223                  "Removing ctrl: NQN \"%s\"\n", ctrl->opts->subsysnqn);
224
225         flush_work(&ctrl->reset_work);
226         nvme_stop_ctrl(ctrl);
227         nvme_remove_namespaces(ctrl);
228         ctrl->ops->delete_ctrl(ctrl);
229         nvme_uninit_ctrl(ctrl);
230 }
231
232 static void nvme_delete_ctrl_work(struct work_struct *work)
233 {
234         struct nvme_ctrl *ctrl =
235                 container_of(work, struct nvme_ctrl, delete_work);
236
237         nvme_do_delete_ctrl(ctrl);
238 }
239
240 int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
241 {
242         if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
243                 return -EBUSY;
244         if (!queue_work(nvme_delete_wq, &ctrl->delete_work))
245                 return -EBUSY;
246         return 0;
247 }
248 EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
249
250 static void nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
251 {
252         /*
253          * Keep a reference until nvme_do_delete_ctrl() complete,
254          * since ->delete_ctrl can free the controller.
255          */
256         nvme_get_ctrl(ctrl);
257         if (nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
258                 nvme_do_delete_ctrl(ctrl);
259         nvme_put_ctrl(ctrl);
260 }
261
262 static blk_status_t nvme_error_status(u16 status)
263 {
264         switch (status & 0x7ff) {
265         case NVME_SC_SUCCESS:
266                 return BLK_STS_OK;
267         case NVME_SC_CAP_EXCEEDED:
268                 return BLK_STS_NOSPC;
269         case NVME_SC_LBA_RANGE:
270         case NVME_SC_CMD_INTERRUPTED:
271         case NVME_SC_NS_NOT_READY:
272                 return BLK_STS_TARGET;
273         case NVME_SC_BAD_ATTRIBUTES:
274         case NVME_SC_ONCS_NOT_SUPPORTED:
275         case NVME_SC_INVALID_OPCODE:
276         case NVME_SC_INVALID_FIELD:
277         case NVME_SC_INVALID_NS:
278                 return BLK_STS_NOTSUPP;
279         case NVME_SC_WRITE_FAULT:
280         case NVME_SC_READ_ERROR:
281         case NVME_SC_UNWRITTEN_BLOCK:
282         case NVME_SC_ACCESS_DENIED:
283         case NVME_SC_READ_ONLY:
284         case NVME_SC_COMPARE_FAILED:
285                 return BLK_STS_MEDIUM;
286         case NVME_SC_GUARD_CHECK:
287         case NVME_SC_APPTAG_CHECK:
288         case NVME_SC_REFTAG_CHECK:
289         case NVME_SC_INVALID_PI:
290                 return BLK_STS_PROTECTION;
291         case NVME_SC_RESERVATION_CONFLICT:
292                 return BLK_STS_NEXUS;
293         case NVME_SC_HOST_PATH_ERROR:
294                 return BLK_STS_TRANSPORT;
295         case NVME_SC_ZONE_TOO_MANY_ACTIVE:
296                 return BLK_STS_ZONE_ACTIVE_RESOURCE;
297         case NVME_SC_ZONE_TOO_MANY_OPEN:
298                 return BLK_STS_ZONE_OPEN_RESOURCE;
299         default:
300                 return BLK_STS_IOERR;
301         }
302 }
303
304 static void nvme_retry_req(struct request *req)
305 {
306         unsigned long delay = 0;
307         u16 crd;
308
309         /* The mask and shift result must be <= 3 */
310         crd = (nvme_req(req)->status & NVME_SC_CRD) >> 11;
311         if (crd)
312                 delay = nvme_req(req)->ctrl->crdt[crd - 1] * 100;
313
314         nvme_req(req)->retries++;
315         blk_mq_requeue_request(req, false);
316         blk_mq_delay_kick_requeue_list(req->q, delay);
317 }
318
319 enum nvme_disposition {
320         COMPLETE,
321         RETRY,
322         FAILOVER,
323 };
324
325 static inline enum nvme_disposition nvme_decide_disposition(struct request *req)
326 {
327         if (likely(nvme_req(req)->status == 0))
328                 return COMPLETE;
329
330         if (blk_noretry_request(req) ||
331             (nvme_req(req)->status & NVME_SC_DNR) ||
332             nvme_req(req)->retries >= nvme_max_retries)
333                 return COMPLETE;
334
335         if (req->cmd_flags & REQ_NVME_MPATH) {
336                 if (nvme_is_path_error(nvme_req(req)->status) ||
337                     blk_queue_dying(req->q))
338                         return FAILOVER;
339         } else {
340                 if (blk_queue_dying(req->q))
341                         return COMPLETE;
342         }
343
344         return RETRY;
345 }
346
347 static inline void nvme_end_req(struct request *req)
348 {
349         blk_status_t status = nvme_error_status(nvme_req(req)->status);
350
351         if (IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
352             req_op(req) == REQ_OP_ZONE_APPEND)
353                 req->__sector = nvme_lba_to_sect(req->q->queuedata,
354                         le64_to_cpu(nvme_req(req)->result.u64));
355
356         nvme_trace_bio_complete(req);
357         blk_mq_end_request(req, status);
358 }
359
360 void nvme_complete_rq(struct request *req)
361 {
362         trace_nvme_complete_rq(req);
363         nvme_cleanup_cmd(req);
364
365         if (nvme_req(req)->ctrl->kas)
366                 nvme_req(req)->ctrl->comp_seen = true;
367
368         switch (nvme_decide_disposition(req)) {
369         case COMPLETE:
370                 nvme_end_req(req);
371                 return;
372         case RETRY:
373                 nvme_retry_req(req);
374                 return;
375         case FAILOVER:
376                 nvme_failover_req(req);
377                 return;
378         }
379 }
380 EXPORT_SYMBOL_GPL(nvme_complete_rq);
381
382 /*
383  * Called to unwind from ->queue_rq on a failed command submission so that the
384  * multipathing code gets called to potentially failover to another path.
385  * The caller needs to unwind all transport specific resource allocations and
386  * must return propagate the return value.
387  */
388 blk_status_t nvme_host_path_error(struct request *req)
389 {
390         nvme_req(req)->status = NVME_SC_HOST_PATH_ERROR;
391         blk_mq_set_request_complete(req);
392         nvme_complete_rq(req);
393         return BLK_STS_OK;
394 }
395 EXPORT_SYMBOL_GPL(nvme_host_path_error);
396
397 bool nvme_cancel_request(struct request *req, void *data, bool reserved)
398 {
399         dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device,
400                                 "Cancelling I/O %d", req->tag);
401
402         /* don't abort one completed request */
403         if (blk_mq_request_completed(req))
404                 return true;
405
406         nvme_req(req)->status = NVME_SC_HOST_ABORTED_CMD;
407         nvme_req(req)->flags |= NVME_REQ_CANCELLED;
408         blk_mq_complete_request(req);
409         return true;
410 }
411 EXPORT_SYMBOL_GPL(nvme_cancel_request);
412
413 void nvme_cancel_tagset(struct nvme_ctrl *ctrl)
414 {
415         if (ctrl->tagset) {
416                 blk_mq_tagset_busy_iter(ctrl->tagset,
417                                 nvme_cancel_request, ctrl);
418                 blk_mq_tagset_wait_completed_request(ctrl->tagset);
419         }
420 }
421 EXPORT_SYMBOL_GPL(nvme_cancel_tagset);
422
423 void nvme_cancel_admin_tagset(struct nvme_ctrl *ctrl)
424 {
425         if (ctrl->admin_tagset) {
426                 blk_mq_tagset_busy_iter(ctrl->admin_tagset,
427                                 nvme_cancel_request, ctrl);
428                 blk_mq_tagset_wait_completed_request(ctrl->admin_tagset);
429         }
430 }
431 EXPORT_SYMBOL_GPL(nvme_cancel_admin_tagset);
432
433 bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
434                 enum nvme_ctrl_state new_state)
435 {
436         enum nvme_ctrl_state old_state;
437         unsigned long flags;
438         bool changed = false;
439
440         spin_lock_irqsave(&ctrl->lock, flags);
441
442         old_state = ctrl->state;
443         switch (new_state) {
444         case NVME_CTRL_LIVE:
445                 switch (old_state) {
446                 case NVME_CTRL_NEW:
447                 case NVME_CTRL_RESETTING:
448                 case NVME_CTRL_CONNECTING:
449                         changed = true;
450                         fallthrough;
451                 default:
452                         break;
453                 }
454                 break;
455         case NVME_CTRL_RESETTING:
456                 switch (old_state) {
457                 case NVME_CTRL_NEW:
458                 case NVME_CTRL_LIVE:
459                         changed = true;
460                         fallthrough;
461                 default:
462                         break;
463                 }
464                 break;
465         case NVME_CTRL_CONNECTING:
466                 switch (old_state) {
467                 case NVME_CTRL_NEW:
468                 case NVME_CTRL_RESETTING:
469                         changed = true;
470                         fallthrough;
471                 default:
472                         break;
473                 }
474                 break;
475         case NVME_CTRL_DELETING:
476                 switch (old_state) {
477                 case NVME_CTRL_LIVE:
478                 case NVME_CTRL_RESETTING:
479                 case NVME_CTRL_CONNECTING:
480                         changed = true;
481                         fallthrough;
482                 default:
483                         break;
484                 }
485                 break;
486         case NVME_CTRL_DELETING_NOIO:
487                 switch (old_state) {
488                 case NVME_CTRL_DELETING:
489                 case NVME_CTRL_DEAD:
490                         changed = true;
491                         fallthrough;
492                 default:
493                         break;
494                 }
495                 break;
496         case NVME_CTRL_DEAD:
497                 switch (old_state) {
498                 case NVME_CTRL_DELETING:
499                         changed = true;
500                         fallthrough;
501                 default:
502                         break;
503                 }
504                 break;
505         default:
506                 break;
507         }
508
509         if (changed) {
510                 ctrl->state = new_state;
511                 wake_up_all(&ctrl->state_wq);
512         }
513
514         spin_unlock_irqrestore(&ctrl->lock, flags);
515         if (!changed)
516                 return false;
517
518         if (ctrl->state == NVME_CTRL_LIVE) {
519                 if (old_state == NVME_CTRL_CONNECTING)
520                         nvme_stop_failfast_work(ctrl);
521                 nvme_kick_requeue_lists(ctrl);
522         } else if (ctrl->state == NVME_CTRL_CONNECTING &&
523                 old_state == NVME_CTRL_RESETTING) {
524                 nvme_start_failfast_work(ctrl);
525         }
526         return changed;
527 }
528 EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
529
530 /*
531  * Returns true for sink states that can't ever transition back to live.
532  */
533 static bool nvme_state_terminal(struct nvme_ctrl *ctrl)
534 {
535         switch (ctrl->state) {
536         case NVME_CTRL_NEW:
537         case NVME_CTRL_LIVE:
538         case NVME_CTRL_RESETTING:
539         case NVME_CTRL_CONNECTING:
540                 return false;
541         case NVME_CTRL_DELETING:
542         case NVME_CTRL_DELETING_NOIO:
543         case NVME_CTRL_DEAD:
544                 return true;
545         default:
546                 WARN_ONCE(1, "Unhandled ctrl state:%d", ctrl->state);
547                 return true;
548         }
549 }
550
551 /*
552  * Waits for the controller state to be resetting, or returns false if it is
553  * not possible to ever transition to that state.
554  */
555 bool nvme_wait_reset(struct nvme_ctrl *ctrl)
556 {
557         wait_event(ctrl->state_wq,
558                    nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING) ||
559                    nvme_state_terminal(ctrl));
560         return ctrl->state == NVME_CTRL_RESETTING;
561 }
562 EXPORT_SYMBOL_GPL(nvme_wait_reset);
563
564 static void nvme_free_ns_head(struct kref *ref)
565 {
566         struct nvme_ns_head *head =
567                 container_of(ref, struct nvme_ns_head, ref);
568
569         nvme_mpath_remove_disk(head);
570         ida_simple_remove(&head->subsys->ns_ida, head->instance);
571         cleanup_srcu_struct(&head->srcu);
572         nvme_put_subsystem(head->subsys);
573         kfree(head);
574 }
575
576 bool nvme_tryget_ns_head(struct nvme_ns_head *head)
577 {
578         return kref_get_unless_zero(&head->ref);
579 }
580
581 void nvme_put_ns_head(struct nvme_ns_head *head)
582 {
583         kref_put(&head->ref, nvme_free_ns_head);
584 }
585
586 static void nvme_free_ns(struct kref *kref)
587 {
588         struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
589
590         put_disk(ns->disk);
591         nvme_put_ns_head(ns->head);
592         nvme_put_ctrl(ns->ctrl);
593         kfree(ns);
594 }
595
596 static inline bool nvme_get_ns(struct nvme_ns *ns)
597 {
598         return kref_get_unless_zero(&ns->kref);
599 }
600
601 void nvme_put_ns(struct nvme_ns *ns)
602 {
603         kref_put(&ns->kref, nvme_free_ns);
604 }
605 EXPORT_SYMBOL_NS_GPL(nvme_put_ns, NVME_TARGET_PASSTHRU);
606
607 static inline void nvme_clear_nvme_request(struct request *req)
608 {
609         nvme_req(req)->status = 0;
610         nvme_req(req)->retries = 0;
611         nvme_req(req)->flags = 0;
612         req->rq_flags |= RQF_DONTPREP;
613 }
614
615 static inline unsigned int nvme_req_op(struct nvme_command *cmd)
616 {
617         return nvme_is_write(cmd) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN;
618 }
619
620 static inline void nvme_init_request(struct request *req,
621                 struct nvme_command *cmd)
622 {
623         if (req->q->queuedata)
624                 req->timeout = NVME_IO_TIMEOUT;
625         else /* no queuedata implies admin queue */
626                 req->timeout = NVME_ADMIN_TIMEOUT;
627
628         /* passthru commands should let the driver set the SGL flags */
629         cmd->common.flags &= ~NVME_CMD_SGL_ALL;
630
631         req->cmd_flags |= REQ_FAILFAST_DRIVER;
632         if (req->mq_hctx->type == HCTX_TYPE_POLL)
633                 req->cmd_flags |= REQ_HIPRI;
634         nvme_clear_nvme_request(req);
635         memcpy(nvme_req(req)->cmd, cmd, sizeof(*cmd));
636 }
637
638 struct request *nvme_alloc_request(struct request_queue *q,
639                 struct nvme_command *cmd, blk_mq_req_flags_t flags)
640 {
641         struct request *req;
642
643         req = blk_mq_alloc_request(q, nvme_req_op(cmd), flags);
644         if (!IS_ERR(req))
645                 nvme_init_request(req, cmd);
646         return req;
647 }
648 EXPORT_SYMBOL_GPL(nvme_alloc_request);
649
650 static struct request *nvme_alloc_request_qid(struct request_queue *q,
651                 struct nvme_command *cmd, blk_mq_req_flags_t flags, int qid)
652 {
653         struct request *req;
654
655         req = blk_mq_alloc_request_hctx(q, nvme_req_op(cmd), flags,
656                         qid ? qid - 1 : 0);
657         if (!IS_ERR(req))
658                 nvme_init_request(req, cmd);
659         return req;
660 }
661
662 /*
663  * For something we're not in a state to send to the device the default action
664  * is to busy it and retry it after the controller state is recovered.  However,
665  * if the controller is deleting or if anything is marked for failfast or
666  * nvme multipath it is immediately failed.
667  *
668  * Note: commands used to initialize the controller will be marked for failfast.
669  * Note: nvme cli/ioctl commands are marked for failfast.
670  */
671 blk_status_t nvme_fail_nonready_command(struct nvme_ctrl *ctrl,
672                 struct request *rq)
673 {
674         if (ctrl->state != NVME_CTRL_DELETING_NOIO &&
675             ctrl->state != NVME_CTRL_DEAD &&
676             !test_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags) &&
677             !blk_noretry_request(rq) && !(rq->cmd_flags & REQ_NVME_MPATH))
678                 return BLK_STS_RESOURCE;
679         return nvme_host_path_error(rq);
680 }
681 EXPORT_SYMBOL_GPL(nvme_fail_nonready_command);
682
683 bool __nvme_check_ready(struct nvme_ctrl *ctrl, struct request *rq,
684                 bool queue_live)
685 {
686         struct nvme_request *req = nvme_req(rq);
687
688         /*
689          * currently we have a problem sending passthru commands
690          * on the admin_q if the controller is not LIVE because we can't
691          * make sure that they are going out after the admin connect,
692          * controller enable and/or other commands in the initialization
693          * sequence. until the controller will be LIVE, fail with
694          * BLK_STS_RESOURCE so that they will be rescheduled.
695          */
696         if (rq->q == ctrl->admin_q && (req->flags & NVME_REQ_USERCMD))
697                 return false;
698
699         if (ctrl->ops->flags & NVME_F_FABRICS) {
700                 /*
701                  * Only allow commands on a live queue, except for the connect
702                  * command, which is require to set the queue live in the
703                  * appropinquate states.
704                  */
705                 switch (ctrl->state) {
706                 case NVME_CTRL_CONNECTING:
707                         if (blk_rq_is_passthrough(rq) && nvme_is_fabrics(req->cmd) &&
708                             req->cmd->fabrics.fctype == nvme_fabrics_type_connect)
709                                 return true;
710                         break;
711                 default:
712                         break;
713                 case NVME_CTRL_DEAD:
714                         return false;
715                 }
716         }
717
718         return queue_live;
719 }
720 EXPORT_SYMBOL_GPL(__nvme_check_ready);
721
722 static int nvme_toggle_streams(struct nvme_ctrl *ctrl, bool enable)
723 {
724         struct nvme_command c = { };
725
726         c.directive.opcode = nvme_admin_directive_send;
727         c.directive.nsid = cpu_to_le32(NVME_NSID_ALL);
728         c.directive.doper = NVME_DIR_SND_ID_OP_ENABLE;
729         c.directive.dtype = NVME_DIR_IDENTIFY;
730         c.directive.tdtype = NVME_DIR_STREAMS;
731         c.directive.endir = enable ? NVME_DIR_ENDIR : 0;
732
733         return nvme_submit_sync_cmd(ctrl->admin_q, &c, NULL, 0);
734 }
735
736 static int nvme_disable_streams(struct nvme_ctrl *ctrl)
737 {
738         return nvme_toggle_streams(ctrl, false);
739 }
740
741 static int nvme_enable_streams(struct nvme_ctrl *ctrl)
742 {
743         return nvme_toggle_streams(ctrl, true);
744 }
745
746 static int nvme_get_stream_params(struct nvme_ctrl *ctrl,
747                                   struct streams_directive_params *s, u32 nsid)
748 {
749         struct nvme_command c = { };
750
751         memset(s, 0, sizeof(*s));
752
753         c.directive.opcode = nvme_admin_directive_recv;
754         c.directive.nsid = cpu_to_le32(nsid);
755         c.directive.numd = cpu_to_le32(nvme_bytes_to_numd(sizeof(*s)));
756         c.directive.doper = NVME_DIR_RCV_ST_OP_PARAM;
757         c.directive.dtype = NVME_DIR_STREAMS;
758
759         return nvme_submit_sync_cmd(ctrl->admin_q, &c, s, sizeof(*s));
760 }
761
762 static int nvme_configure_directives(struct nvme_ctrl *ctrl)
763 {
764         struct streams_directive_params s;
765         int ret;
766
767         if (!(ctrl->oacs & NVME_CTRL_OACS_DIRECTIVES))
768                 return 0;
769         if (!streams)
770                 return 0;
771
772         ret = nvme_enable_streams(ctrl);
773         if (ret)
774                 return ret;
775
776         ret = nvme_get_stream_params(ctrl, &s, NVME_NSID_ALL);
777         if (ret)
778                 goto out_disable_stream;
779
780         ctrl->nssa = le16_to_cpu(s.nssa);
781         if (ctrl->nssa < BLK_MAX_WRITE_HINTS - 1) {
782                 dev_info(ctrl->device, "too few streams (%u) available\n",
783                                         ctrl->nssa);
784                 goto out_disable_stream;
785         }
786
787         ctrl->nr_streams = min_t(u16, ctrl->nssa, BLK_MAX_WRITE_HINTS - 1);
788         dev_info(ctrl->device, "Using %u streams\n", ctrl->nr_streams);
789         return 0;
790
791 out_disable_stream:
792         nvme_disable_streams(ctrl);
793         return ret;
794 }
795
796 /*
797  * Check if 'req' has a write hint associated with it. If it does, assign
798  * a valid namespace stream to the write.
799  */
800 static void nvme_assign_write_stream(struct nvme_ctrl *ctrl,
801                                      struct request *req, u16 *control,
802                                      u32 *dsmgmt)
803 {
804         enum rw_hint streamid = req->write_hint;
805
806         if (streamid == WRITE_LIFE_NOT_SET || streamid == WRITE_LIFE_NONE)
807                 streamid = 0;
808         else {
809                 streamid--;
810                 if (WARN_ON_ONCE(streamid > ctrl->nr_streams))
811                         return;
812
813                 *control |= NVME_RW_DTYPE_STREAMS;
814                 *dsmgmt |= streamid << 16;
815         }
816
817         if (streamid < ARRAY_SIZE(req->q->write_hints))
818                 req->q->write_hints[streamid] += blk_rq_bytes(req) >> 9;
819 }
820
821 static inline void nvme_setup_flush(struct nvme_ns *ns,
822                 struct nvme_command *cmnd)
823 {
824         cmnd->common.opcode = nvme_cmd_flush;
825         cmnd->common.nsid = cpu_to_le32(ns->head->ns_id);
826 }
827
828 static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
829                 struct nvme_command *cmnd)
830 {
831         unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
832         struct nvme_dsm_range *range;
833         struct bio *bio;
834
835         /*
836          * Some devices do not consider the DSM 'Number of Ranges' field when
837          * determining how much data to DMA. Always allocate memory for maximum
838          * number of segments to prevent device reading beyond end of buffer.
839          */
840         static const size_t alloc_size = sizeof(*range) * NVME_DSM_MAX_RANGES;
841
842         range = kzalloc(alloc_size, GFP_ATOMIC | __GFP_NOWARN);
843         if (!range) {
844                 /*
845                  * If we fail allocation our range, fallback to the controller
846                  * discard page. If that's also busy, it's safe to return
847                  * busy, as we know we can make progress once that's freed.
848                  */
849                 if (test_and_set_bit_lock(0, &ns->ctrl->discard_page_busy))
850                         return BLK_STS_RESOURCE;
851
852                 range = page_address(ns->ctrl->discard_page);
853         }
854
855         __rq_for_each_bio(bio, req) {
856                 u64 slba = nvme_sect_to_lba(ns, bio->bi_iter.bi_sector);
857                 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
858
859                 if (n < segments) {
860                         range[n].cattr = cpu_to_le32(0);
861                         range[n].nlb = cpu_to_le32(nlb);
862                         range[n].slba = cpu_to_le64(slba);
863                 }
864                 n++;
865         }
866
867         if (WARN_ON_ONCE(n != segments)) {
868                 if (virt_to_page(range) == ns->ctrl->discard_page)
869                         clear_bit_unlock(0, &ns->ctrl->discard_page_busy);
870                 else
871                         kfree(range);
872                 return BLK_STS_IOERR;
873         }
874
875         cmnd->dsm.opcode = nvme_cmd_dsm;
876         cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id);
877         cmnd->dsm.nr = cpu_to_le32(segments - 1);
878         cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
879
880         req->special_vec.bv_page = virt_to_page(range);
881         req->special_vec.bv_offset = offset_in_page(range);
882         req->special_vec.bv_len = alloc_size;
883         req->rq_flags |= RQF_SPECIAL_PAYLOAD;
884
885         return BLK_STS_OK;
886 }
887
888 static inline blk_status_t nvme_setup_write_zeroes(struct nvme_ns *ns,
889                 struct request *req, struct nvme_command *cmnd)
890 {
891         if (ns->ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
892                 return nvme_setup_discard(ns, req, cmnd);
893
894         cmnd->write_zeroes.opcode = nvme_cmd_write_zeroes;
895         cmnd->write_zeroes.nsid = cpu_to_le32(ns->head->ns_id);
896         cmnd->write_zeroes.slba =
897                 cpu_to_le64(nvme_sect_to_lba(ns, blk_rq_pos(req)));
898         cmnd->write_zeroes.length =
899                 cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
900         if (nvme_ns_has_pi(ns))
901                 cmnd->write_zeroes.control = cpu_to_le16(NVME_RW_PRINFO_PRACT);
902         else
903                 cmnd->write_zeroes.control = 0;
904         return BLK_STS_OK;
905 }
906
907 static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
908                 struct request *req, struct nvme_command *cmnd,
909                 enum nvme_opcode op)
910 {
911         struct nvme_ctrl *ctrl = ns->ctrl;
912         u16 control = 0;
913         u32 dsmgmt = 0;
914
915         if (req->cmd_flags & REQ_FUA)
916                 control |= NVME_RW_FUA;
917         if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
918                 control |= NVME_RW_LR;
919
920         if (req->cmd_flags & REQ_RAHEAD)
921                 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
922
923         cmnd->rw.opcode = op;
924         cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id);
925         cmnd->rw.slba = cpu_to_le64(nvme_sect_to_lba(ns, blk_rq_pos(req)));
926         cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
927
928         if (req_op(req) == REQ_OP_WRITE && ctrl->nr_streams)
929                 nvme_assign_write_stream(ctrl, req, &control, &dsmgmt);
930
931         if (ns->ms) {
932                 /*
933                  * If formated with metadata, the block layer always provides a
934                  * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled.  Else
935                  * we enable the PRACT bit for protection information or set the
936                  * namespace capacity to zero to prevent any I/O.
937                  */
938                 if (!blk_integrity_rq(req)) {
939                         if (WARN_ON_ONCE(!nvme_ns_has_pi(ns)))
940                                 return BLK_STS_NOTSUPP;
941                         control |= NVME_RW_PRINFO_PRACT;
942                 }
943
944                 switch (ns->pi_type) {
945                 case NVME_NS_DPS_PI_TYPE3:
946                         control |= NVME_RW_PRINFO_PRCHK_GUARD;
947                         break;
948                 case NVME_NS_DPS_PI_TYPE1:
949                 case NVME_NS_DPS_PI_TYPE2:
950                         control |= NVME_RW_PRINFO_PRCHK_GUARD |
951                                         NVME_RW_PRINFO_PRCHK_REF;
952                         if (op == nvme_cmd_zone_append)
953                                 control |= NVME_RW_APPEND_PIREMAP;
954                         cmnd->rw.reftag = cpu_to_le32(t10_pi_ref_tag(req));
955                         break;
956                 }
957         }
958
959         cmnd->rw.control = cpu_to_le16(control);
960         cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
961         return 0;
962 }
963
964 void nvme_cleanup_cmd(struct request *req)
965 {
966         if (req->rq_flags & RQF_SPECIAL_PAYLOAD) {
967                 struct nvme_ctrl *ctrl = nvme_req(req)->ctrl;
968
969                 if (req->special_vec.bv_page == ctrl->discard_page)
970                         clear_bit_unlock(0, &ctrl->discard_page_busy);
971                 else
972                         kfree(bvec_virt(&req->special_vec));
973         }
974 }
975 EXPORT_SYMBOL_GPL(nvme_cleanup_cmd);
976
977 blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req)
978 {
979         struct nvme_command *cmd = nvme_req(req)->cmd;
980         blk_status_t ret = BLK_STS_OK;
981
982         if (!(req->rq_flags & RQF_DONTPREP)) {
983                 nvme_clear_nvme_request(req);
984                 memset(cmd, 0, sizeof(*cmd));
985         }
986
987         switch (req_op(req)) {
988         case REQ_OP_DRV_IN:
989         case REQ_OP_DRV_OUT:
990                 /* these are setup prior to execution in nvme_init_request() */
991                 break;
992         case REQ_OP_FLUSH:
993                 nvme_setup_flush(ns, cmd);
994                 break;
995         case REQ_OP_ZONE_RESET_ALL:
996         case REQ_OP_ZONE_RESET:
997                 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_RESET);
998                 break;
999         case REQ_OP_ZONE_OPEN:
1000                 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_OPEN);
1001                 break;
1002         case REQ_OP_ZONE_CLOSE:
1003                 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_CLOSE);
1004                 break;
1005         case REQ_OP_ZONE_FINISH:
1006                 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_FINISH);
1007                 break;
1008         case REQ_OP_WRITE_ZEROES:
1009                 ret = nvme_setup_write_zeroes(ns, req, cmd);
1010                 break;
1011         case REQ_OP_DISCARD:
1012                 ret = nvme_setup_discard(ns, req, cmd);
1013                 break;
1014         case REQ_OP_READ:
1015                 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_read);
1016                 break;
1017         case REQ_OP_WRITE:
1018                 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_write);
1019                 break;
1020         case REQ_OP_ZONE_APPEND:
1021                 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_zone_append);
1022                 break;
1023         default:
1024                 WARN_ON_ONCE(1);
1025                 return BLK_STS_IOERR;
1026         }
1027
1028         nvme_req(req)->genctr++;
1029         cmd->common.command_id = nvme_cid(req);
1030         trace_nvme_setup_cmd(req, cmd);
1031         return ret;
1032 }
1033 EXPORT_SYMBOL_GPL(nvme_setup_cmd);
1034
1035 /*
1036  * Return values:
1037  * 0:  success
1038  * >0: nvme controller's cqe status response
1039  * <0: kernel error in lieu of controller response
1040  */
1041 static int nvme_execute_rq(struct gendisk *disk, struct request *rq,
1042                 bool at_head)
1043 {
1044         blk_status_t status;
1045
1046         status = blk_execute_rq(disk, rq, at_head);
1047         if (nvme_req(rq)->flags & NVME_REQ_CANCELLED)
1048                 return -EINTR;
1049         if (nvme_req(rq)->status)
1050                 return nvme_req(rq)->status;
1051         return blk_status_to_errno(status);
1052 }
1053
1054 /*
1055  * Returns 0 on success.  If the result is negative, it's a Linux error code;
1056  * if the result is positive, it's an NVM Express status code
1057  */
1058 int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1059                 union nvme_result *result, void *buffer, unsigned bufflen,
1060                 unsigned timeout, int qid, int at_head,
1061                 blk_mq_req_flags_t flags)
1062 {
1063         struct request *req;
1064         int ret;
1065
1066         if (qid == NVME_QID_ANY)
1067                 req = nvme_alloc_request(q, cmd, flags);
1068         else
1069                 req = nvme_alloc_request_qid(q, cmd, flags, qid);
1070         if (IS_ERR(req))
1071                 return PTR_ERR(req);
1072
1073         if (timeout)
1074                 req->timeout = timeout;
1075
1076         if (buffer && bufflen) {
1077                 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
1078                 if (ret)
1079                         goto out;
1080         }
1081
1082         ret = nvme_execute_rq(NULL, req, at_head);
1083         if (result && ret >= 0)
1084                 *result = nvme_req(req)->result;
1085  out:
1086         blk_mq_free_request(req);
1087         return ret;
1088 }
1089 EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
1090
1091 int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1092                 void *buffer, unsigned bufflen)
1093 {
1094         return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen, 0,
1095                         NVME_QID_ANY, 0, 0);
1096 }
1097 EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
1098
1099 static u32 nvme_known_admin_effects(u8 opcode)
1100 {
1101         switch (opcode) {
1102         case nvme_admin_format_nvm:
1103                 return NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_NCC |
1104                         NVME_CMD_EFFECTS_CSE_MASK;
1105         case nvme_admin_sanitize_nvm:
1106                 return NVME_CMD_EFFECTS_LBCC | NVME_CMD_EFFECTS_CSE_MASK;
1107         default:
1108                 break;
1109         }
1110         return 0;
1111 }
1112
1113 u32 nvme_command_effects(struct nvme_ctrl *ctrl, struct nvme_ns *ns, u8 opcode)
1114 {
1115         u32 effects = 0;
1116
1117         if (ns) {
1118                 if (ns->head->effects)
1119                         effects = le32_to_cpu(ns->head->effects->iocs[opcode]);
1120                 if (effects & ~(NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC))
1121                         dev_warn_once(ctrl->device,
1122                                 "IO command:%02x has unhandled effects:%08x\n",
1123                                 opcode, effects);
1124                 return 0;
1125         }
1126
1127         if (ctrl->effects)
1128                 effects = le32_to_cpu(ctrl->effects->acs[opcode]);
1129         effects |= nvme_known_admin_effects(opcode);
1130
1131         return effects;
1132 }
1133 EXPORT_SYMBOL_NS_GPL(nvme_command_effects, NVME_TARGET_PASSTHRU);
1134
1135 static u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
1136                                u8 opcode)
1137 {
1138         u32 effects = nvme_command_effects(ctrl, ns, opcode);
1139
1140         /*
1141          * For simplicity, IO to all namespaces is quiesced even if the command
1142          * effects say only one namespace is affected.
1143          */
1144         if (effects & NVME_CMD_EFFECTS_CSE_MASK) {
1145                 mutex_lock(&ctrl->scan_lock);
1146                 mutex_lock(&ctrl->subsys->lock);
1147                 nvme_mpath_start_freeze(ctrl->subsys);
1148                 nvme_mpath_wait_freeze(ctrl->subsys);
1149                 nvme_start_freeze(ctrl);
1150                 nvme_wait_freeze(ctrl);
1151         }
1152         return effects;
1153 }
1154
1155 static void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects)
1156 {
1157         if (effects & NVME_CMD_EFFECTS_CSE_MASK) {
1158                 nvme_unfreeze(ctrl);
1159                 nvme_mpath_unfreeze(ctrl->subsys);
1160                 mutex_unlock(&ctrl->subsys->lock);
1161                 nvme_remove_invalid_namespaces(ctrl, NVME_NSID_ALL);
1162                 mutex_unlock(&ctrl->scan_lock);
1163         }
1164         if (effects & NVME_CMD_EFFECTS_CCC)
1165                 nvme_init_ctrl_finish(ctrl);
1166         if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC)) {
1167                 nvme_queue_scan(ctrl);
1168                 flush_work(&ctrl->scan_work);
1169         }
1170 }
1171
1172 int nvme_execute_passthru_rq(struct request *rq)
1173 {
1174         struct nvme_command *cmd = nvme_req(rq)->cmd;
1175         struct nvme_ctrl *ctrl = nvme_req(rq)->ctrl;
1176         struct nvme_ns *ns = rq->q->queuedata;
1177         struct gendisk *disk = ns ? ns->disk : NULL;
1178         u32 effects;
1179         int  ret;
1180
1181         effects = nvme_passthru_start(ctrl, ns, cmd->common.opcode);
1182         ret = nvme_execute_rq(disk, rq, false);
1183         if (effects) /* nothing to be done for zero cmd effects */
1184                 nvme_passthru_end(ctrl, effects);
1185
1186         return ret;
1187 }
1188 EXPORT_SYMBOL_NS_GPL(nvme_execute_passthru_rq, NVME_TARGET_PASSTHRU);
1189
1190 /*
1191  * Recommended frequency for KATO commands per NVMe 1.4 section 7.12.1:
1192  * 
1193  *   The host should send Keep Alive commands at half of the Keep Alive Timeout
1194  *   accounting for transport roundtrip times [..].
1195  */
1196 static void nvme_queue_keep_alive_work(struct nvme_ctrl *ctrl)
1197 {
1198         queue_delayed_work(nvme_wq, &ctrl->ka_work, ctrl->kato * HZ / 2);
1199 }
1200
1201 static void nvme_keep_alive_end_io(struct request *rq, blk_status_t status)
1202 {
1203         struct nvme_ctrl *ctrl = rq->end_io_data;
1204         unsigned long flags;
1205         bool startka = false;
1206
1207         blk_mq_free_request(rq);
1208
1209         if (status) {
1210                 dev_err(ctrl->device,
1211                         "failed nvme_keep_alive_end_io error=%d\n",
1212                                 status);
1213                 return;
1214         }
1215
1216         ctrl->comp_seen = false;
1217         spin_lock_irqsave(&ctrl->lock, flags);
1218         if (ctrl->state == NVME_CTRL_LIVE ||
1219             ctrl->state == NVME_CTRL_CONNECTING)
1220                 startka = true;
1221         spin_unlock_irqrestore(&ctrl->lock, flags);
1222         if (startka)
1223                 nvme_queue_keep_alive_work(ctrl);
1224 }
1225
1226 static void nvme_keep_alive_work(struct work_struct *work)
1227 {
1228         struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
1229                         struct nvme_ctrl, ka_work);
1230         bool comp_seen = ctrl->comp_seen;
1231         struct request *rq;
1232
1233         if ((ctrl->ctratt & NVME_CTRL_ATTR_TBKAS) && comp_seen) {
1234                 dev_dbg(ctrl->device,
1235                         "reschedule traffic based keep-alive timer\n");
1236                 ctrl->comp_seen = false;
1237                 nvme_queue_keep_alive_work(ctrl);
1238                 return;
1239         }
1240
1241         rq = nvme_alloc_request(ctrl->admin_q, &ctrl->ka_cmd,
1242                                 BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT);
1243         if (IS_ERR(rq)) {
1244                 /* allocation failure, reset the controller */
1245                 dev_err(ctrl->device, "keep-alive failed: %ld\n", PTR_ERR(rq));
1246                 nvme_reset_ctrl(ctrl);
1247                 return;
1248         }
1249
1250         rq->timeout = ctrl->kato * HZ;
1251         rq->end_io_data = ctrl;
1252         blk_execute_rq_nowait(NULL, rq, 0, nvme_keep_alive_end_io);
1253 }
1254
1255 static void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
1256 {
1257         if (unlikely(ctrl->kato == 0))
1258                 return;
1259
1260         nvme_queue_keep_alive_work(ctrl);
1261 }
1262
1263 void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
1264 {
1265         if (unlikely(ctrl->kato == 0))
1266                 return;
1267
1268         cancel_delayed_work_sync(&ctrl->ka_work);
1269 }
1270 EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
1271
1272 /*
1273  * In NVMe 1.0 the CNS field was just a binary controller or namespace
1274  * flag, thus sending any new CNS opcodes has a big chance of not working.
1275  * Qemu unfortunately had that bug after reporting a 1.1 version compliance
1276  * (but not for any later version).
1277  */
1278 static bool nvme_ctrl_limited_cns(struct nvme_ctrl *ctrl)
1279 {
1280         if (ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)
1281                 return ctrl->vs < NVME_VS(1, 2, 0);
1282         return ctrl->vs < NVME_VS(1, 1, 0);
1283 }
1284
1285 static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
1286 {
1287         struct nvme_command c = { };
1288         int error;
1289
1290         /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1291         c.identify.opcode = nvme_admin_identify;
1292         c.identify.cns = NVME_ID_CNS_CTRL;
1293
1294         *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1295         if (!*id)
1296                 return -ENOMEM;
1297
1298         error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1299                         sizeof(struct nvme_id_ctrl));
1300         if (error)
1301                 kfree(*id);
1302         return error;
1303 }
1304
1305 static bool nvme_multi_css(struct nvme_ctrl *ctrl)
1306 {
1307         return (ctrl->ctrl_config & NVME_CC_CSS_MASK) == NVME_CC_CSS_CSI;
1308 }
1309
1310 static int nvme_process_ns_desc(struct nvme_ctrl *ctrl, struct nvme_ns_ids *ids,
1311                 struct nvme_ns_id_desc *cur, bool *csi_seen)
1312 {
1313         const char *warn_str = "ctrl returned bogus length:";
1314         void *data = cur;
1315
1316         switch (cur->nidt) {
1317         case NVME_NIDT_EUI64:
1318                 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
1319                         dev_warn(ctrl->device, "%s %d for NVME_NIDT_EUI64\n",
1320                                  warn_str, cur->nidl);
1321                         return -1;
1322                 }
1323                 memcpy(ids->eui64, data + sizeof(*cur), NVME_NIDT_EUI64_LEN);
1324                 return NVME_NIDT_EUI64_LEN;
1325         case NVME_NIDT_NGUID:
1326                 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
1327                         dev_warn(ctrl->device, "%s %d for NVME_NIDT_NGUID\n",
1328                                  warn_str, cur->nidl);
1329                         return -1;
1330                 }
1331                 memcpy(ids->nguid, data + sizeof(*cur), NVME_NIDT_NGUID_LEN);
1332                 return NVME_NIDT_NGUID_LEN;
1333         case NVME_NIDT_UUID:
1334                 if (cur->nidl != NVME_NIDT_UUID_LEN) {
1335                         dev_warn(ctrl->device, "%s %d for NVME_NIDT_UUID\n",
1336                                  warn_str, cur->nidl);
1337                         return -1;
1338                 }
1339                 uuid_copy(&ids->uuid, data + sizeof(*cur));
1340                 return NVME_NIDT_UUID_LEN;
1341         case NVME_NIDT_CSI:
1342                 if (cur->nidl != NVME_NIDT_CSI_LEN) {
1343                         dev_warn(ctrl->device, "%s %d for NVME_NIDT_CSI\n",
1344                                  warn_str, cur->nidl);
1345                         return -1;
1346                 }
1347                 memcpy(&ids->csi, data + sizeof(*cur), NVME_NIDT_CSI_LEN);
1348                 *csi_seen = true;
1349                 return NVME_NIDT_CSI_LEN;
1350         default:
1351                 /* Skip unknown types */
1352                 return cur->nidl;
1353         }
1354 }
1355
1356 static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl, unsigned nsid,
1357                 struct nvme_ns_ids *ids)
1358 {
1359         struct nvme_command c = { };
1360         bool csi_seen = false;
1361         int status, pos, len;
1362         void *data;
1363
1364         if (ctrl->vs < NVME_VS(1, 3, 0) && !nvme_multi_css(ctrl))
1365                 return 0;
1366         if (ctrl->quirks & NVME_QUIRK_NO_NS_DESC_LIST)
1367                 return 0;
1368
1369         c.identify.opcode = nvme_admin_identify;
1370         c.identify.nsid = cpu_to_le32(nsid);
1371         c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
1372
1373         data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
1374         if (!data)
1375                 return -ENOMEM;
1376
1377         status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
1378                                       NVME_IDENTIFY_DATA_SIZE);
1379         if (status) {
1380                 dev_warn(ctrl->device,
1381                         "Identify Descriptors failed (nsid=%u, status=0x%x)\n",
1382                         nsid, status);
1383                 goto free_data;
1384         }
1385
1386         for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
1387                 struct nvme_ns_id_desc *cur = data + pos;
1388
1389                 if (cur->nidl == 0)
1390                         break;
1391
1392                 len = nvme_process_ns_desc(ctrl, ids, cur, &csi_seen);
1393                 if (len < 0)
1394                         break;
1395
1396                 len += sizeof(*cur);
1397         }
1398
1399         if (nvme_multi_css(ctrl) && !csi_seen) {
1400                 dev_warn(ctrl->device, "Command set not reported for nsid:%d\n",
1401                          nsid);
1402                 status = -EINVAL;
1403         }
1404
1405 free_data:
1406         kfree(data);
1407         return status;
1408 }
1409
1410 static int nvme_identify_ns(struct nvme_ctrl *ctrl, unsigned nsid,
1411                         struct nvme_ns_ids *ids, struct nvme_id_ns **id)
1412 {
1413         struct nvme_command c = { };
1414         int error;
1415
1416         /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1417         c.identify.opcode = nvme_admin_identify;
1418         c.identify.nsid = cpu_to_le32(nsid);
1419         c.identify.cns = NVME_ID_CNS_NS;
1420
1421         *id = kmalloc(sizeof(**id), GFP_KERNEL);
1422         if (!*id)
1423                 return -ENOMEM;
1424
1425         error = nvme_submit_sync_cmd(ctrl->admin_q, &c, *id, sizeof(**id));
1426         if (error) {
1427                 dev_warn(ctrl->device, "Identify namespace failed (%d)\n", error);
1428                 goto out_free_id;
1429         }
1430
1431         error = NVME_SC_INVALID_NS | NVME_SC_DNR;
1432         if ((*id)->ncap == 0) /* namespace not allocated or attached */
1433                 goto out_free_id;
1434
1435         if (ctrl->vs >= NVME_VS(1, 1, 0) &&
1436             !memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
1437                 memcpy(ids->eui64, (*id)->eui64, sizeof(ids->eui64));
1438         if (ctrl->vs >= NVME_VS(1, 2, 0) &&
1439             !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
1440                 memcpy(ids->nguid, (*id)->nguid, sizeof(ids->nguid));
1441
1442         return 0;
1443
1444 out_free_id:
1445         kfree(*id);
1446         return error;
1447 }
1448
1449 static int nvme_features(struct nvme_ctrl *dev, u8 op, unsigned int fid,
1450                 unsigned int dword11, void *buffer, size_t buflen, u32 *result)
1451 {
1452         union nvme_result res = { 0 };
1453         struct nvme_command c = { };
1454         int ret;
1455
1456         c.features.opcode = op;
1457         c.features.fid = cpu_to_le32(fid);
1458         c.features.dword11 = cpu_to_le32(dword11);
1459
1460         ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
1461                         buffer, buflen, 0, NVME_QID_ANY, 0, 0);
1462         if (ret >= 0 && result)
1463                 *result = le32_to_cpu(res.u32);
1464         return ret;
1465 }
1466
1467 int nvme_set_features(struct nvme_ctrl *dev, unsigned int fid,
1468                       unsigned int dword11, void *buffer, size_t buflen,
1469                       u32 *result)
1470 {
1471         return nvme_features(dev, nvme_admin_set_features, fid, dword11, buffer,
1472                              buflen, result);
1473 }
1474 EXPORT_SYMBOL_GPL(nvme_set_features);
1475
1476 int nvme_get_features(struct nvme_ctrl *dev, unsigned int fid,
1477                       unsigned int dword11, void *buffer, size_t buflen,
1478                       u32 *result)
1479 {
1480         return nvme_features(dev, nvme_admin_get_features, fid, dword11, buffer,
1481                              buflen, result);
1482 }
1483 EXPORT_SYMBOL_GPL(nvme_get_features);
1484
1485 int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
1486 {
1487         u32 q_count = (*count - 1) | ((*count - 1) << 16);
1488         u32 result;
1489         int status, nr_io_queues;
1490
1491         status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
1492                         &result);
1493         if (status < 0)
1494                 return status;
1495
1496         /*
1497          * Degraded controllers might return an error when setting the queue
1498          * count.  We still want to be able to bring them online and offer
1499          * access to the admin queue, as that might be only way to fix them up.
1500          */
1501         if (status > 0) {
1502                 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
1503                 *count = 0;
1504         } else {
1505                 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
1506                 *count = min(*count, nr_io_queues);
1507         }
1508
1509         return 0;
1510 }
1511 EXPORT_SYMBOL_GPL(nvme_set_queue_count);
1512
1513 #define NVME_AEN_SUPPORTED \
1514         (NVME_AEN_CFG_NS_ATTR | NVME_AEN_CFG_FW_ACT | \
1515          NVME_AEN_CFG_ANA_CHANGE | NVME_AEN_CFG_DISC_CHANGE)
1516
1517 static void nvme_enable_aen(struct nvme_ctrl *ctrl)
1518 {
1519         u32 result, supported_aens = ctrl->oaes & NVME_AEN_SUPPORTED;
1520         int status;
1521
1522         if (!supported_aens)
1523                 return;
1524
1525         status = nvme_set_features(ctrl, NVME_FEAT_ASYNC_EVENT, supported_aens,
1526                         NULL, 0, &result);
1527         if (status)
1528                 dev_warn(ctrl->device, "Failed to configure AEN (cfg %x)\n",
1529                          supported_aens);
1530
1531         queue_work(nvme_wq, &ctrl->async_event_work);
1532 }
1533
1534 static int nvme_ns_open(struct nvme_ns *ns)
1535 {
1536
1537         /* should never be called due to GENHD_FL_HIDDEN */
1538         if (WARN_ON_ONCE(nvme_ns_head_multipath(ns->head)))
1539                 goto fail;
1540         if (!nvme_get_ns(ns))
1541                 goto fail;
1542         if (!try_module_get(ns->ctrl->ops->module))
1543                 goto fail_put_ns;
1544
1545         return 0;
1546
1547 fail_put_ns:
1548         nvme_put_ns(ns);
1549 fail:
1550         return -ENXIO;
1551 }
1552
1553 static void nvme_ns_release(struct nvme_ns *ns)
1554 {
1555
1556         module_put(ns->ctrl->ops->module);
1557         nvme_put_ns(ns);
1558 }
1559
1560 static int nvme_open(struct block_device *bdev, fmode_t mode)
1561 {
1562         return nvme_ns_open(bdev->bd_disk->private_data);
1563 }
1564
1565 static void nvme_release(struct gendisk *disk, fmode_t mode)
1566 {
1567         nvme_ns_release(disk->private_data);
1568 }
1569
1570 int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1571 {
1572         /* some standard values */
1573         geo->heads = 1 << 6;
1574         geo->sectors = 1 << 5;
1575         geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1576         return 0;
1577 }
1578
1579 #ifdef CONFIG_BLK_DEV_INTEGRITY
1580 static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type,
1581                                 u32 max_integrity_segments)
1582 {
1583         struct blk_integrity integrity = { };
1584
1585         switch (pi_type) {
1586         case NVME_NS_DPS_PI_TYPE3:
1587                 integrity.profile = &t10_pi_type3_crc;
1588                 integrity.tag_size = sizeof(u16) + sizeof(u32);
1589                 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1590                 break;
1591         case NVME_NS_DPS_PI_TYPE1:
1592         case NVME_NS_DPS_PI_TYPE2:
1593                 integrity.profile = &t10_pi_type1_crc;
1594                 integrity.tag_size = sizeof(u16);
1595                 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1596                 break;
1597         default:
1598                 integrity.profile = NULL;
1599                 break;
1600         }
1601         integrity.tuple_size = ms;
1602         blk_integrity_register(disk, &integrity);
1603         blk_queue_max_integrity_segments(disk->queue, max_integrity_segments);
1604 }
1605 #else
1606 static void nvme_init_integrity(struct gendisk *disk, u16 ms, u8 pi_type,
1607                                 u32 max_integrity_segments)
1608 {
1609 }
1610 #endif /* CONFIG_BLK_DEV_INTEGRITY */
1611
1612 static void nvme_config_discard(struct gendisk *disk, struct nvme_ns *ns)
1613 {
1614         struct nvme_ctrl *ctrl = ns->ctrl;
1615         struct request_queue *queue = disk->queue;
1616         u32 size = queue_logical_block_size(queue);
1617
1618         if (ctrl->max_discard_sectors == 0) {
1619                 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, queue);
1620                 return;
1621         }
1622
1623         if (ctrl->nr_streams && ns->sws && ns->sgs)
1624                 size *= ns->sws * ns->sgs;
1625
1626         BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1627                         NVME_DSM_MAX_RANGES);
1628
1629         queue->limits.discard_alignment = 0;
1630         queue->limits.discard_granularity = size;
1631
1632         /* If discard is already enabled, don't reset queue limits */
1633         if (blk_queue_flag_test_and_set(QUEUE_FLAG_DISCARD, queue))
1634                 return;
1635
1636         blk_queue_max_discard_sectors(queue, ctrl->max_discard_sectors);
1637         blk_queue_max_discard_segments(queue, ctrl->max_discard_segments);
1638
1639         if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
1640                 blk_queue_max_write_zeroes_sectors(queue, UINT_MAX);
1641 }
1642
1643 static bool nvme_ns_ids_valid(struct nvme_ns_ids *ids)
1644 {
1645         return !uuid_is_null(&ids->uuid) ||
1646                 memchr_inv(ids->nguid, 0, sizeof(ids->nguid)) ||
1647                 memchr_inv(ids->eui64, 0, sizeof(ids->eui64));
1648 }
1649
1650 static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b)
1651 {
1652         return uuid_equal(&a->uuid, &b->uuid) &&
1653                 memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 &&
1654                 memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0 &&
1655                 a->csi == b->csi;
1656 }
1657
1658 static int nvme_setup_streams_ns(struct nvme_ctrl *ctrl, struct nvme_ns *ns,
1659                                  u32 *phys_bs, u32 *io_opt)
1660 {
1661         struct streams_directive_params s;
1662         int ret;
1663
1664         if (!ctrl->nr_streams)
1665                 return 0;
1666
1667         ret = nvme_get_stream_params(ctrl, &s, ns->head->ns_id);
1668         if (ret)
1669                 return ret;
1670
1671         ns->sws = le32_to_cpu(s.sws);
1672         ns->sgs = le16_to_cpu(s.sgs);
1673
1674         if (ns->sws) {
1675                 *phys_bs = ns->sws * (1 << ns->lba_shift);
1676                 if (ns->sgs)
1677                         *io_opt = *phys_bs * ns->sgs;
1678         }
1679
1680         return 0;
1681 }
1682
1683 static int nvme_configure_metadata(struct nvme_ns *ns, struct nvme_id_ns *id)
1684 {
1685         struct nvme_ctrl *ctrl = ns->ctrl;
1686
1687         /*
1688          * The PI implementation requires the metadata size to be equal to the
1689          * t10 pi tuple size.
1690          */
1691         ns->ms = le16_to_cpu(id->lbaf[id->flbas & NVME_NS_FLBAS_LBA_MASK].ms);
1692         if (ns->ms == sizeof(struct t10_pi_tuple))
1693                 ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1694         else
1695                 ns->pi_type = 0;
1696
1697         ns->features &= ~(NVME_NS_METADATA_SUPPORTED | NVME_NS_EXT_LBAS);
1698         if (!ns->ms || !(ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
1699                 return 0;
1700         if (ctrl->ops->flags & NVME_F_FABRICS) {
1701                 /*
1702                  * The NVMe over Fabrics specification only supports metadata as
1703                  * part of the extended data LBA.  We rely on HCA/HBA support to
1704                  * remap the separate metadata buffer from the block layer.
1705                  */
1706                 if (WARN_ON_ONCE(!(id->flbas & NVME_NS_FLBAS_META_EXT)))
1707                         return -EINVAL;
1708                 if (ctrl->max_integrity_segments)
1709                         ns->features |=
1710                                 (NVME_NS_METADATA_SUPPORTED | NVME_NS_EXT_LBAS);
1711         } else {
1712                 /*
1713                  * For PCIe controllers, we can't easily remap the separate
1714                  * metadata buffer from the block layer and thus require a
1715                  * separate metadata buffer for block layer metadata/PI support.
1716                  * We allow extended LBAs for the passthrough interface, though.
1717                  */
1718                 if (id->flbas & NVME_NS_FLBAS_META_EXT)
1719                         ns->features |= NVME_NS_EXT_LBAS;
1720                 else
1721                         ns->features |= NVME_NS_METADATA_SUPPORTED;
1722         }
1723
1724         return 0;
1725 }
1726
1727 static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1728                 struct request_queue *q)
1729 {
1730         bool vwc = ctrl->vwc & NVME_CTRL_VWC_PRESENT;
1731
1732         if (ctrl->max_hw_sectors) {
1733                 u32 max_segments =
1734                         (ctrl->max_hw_sectors / (NVME_CTRL_PAGE_SIZE >> 9)) + 1;
1735
1736                 max_segments = min_not_zero(max_segments, ctrl->max_segments);
1737                 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
1738                 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
1739         }
1740         blk_queue_virt_boundary(q, NVME_CTRL_PAGE_SIZE - 1);
1741         blk_queue_dma_alignment(q, 7);
1742         blk_queue_write_cache(q, vwc, vwc);
1743 }
1744
1745 static void nvme_update_disk_info(struct gendisk *disk,
1746                 struct nvme_ns *ns, struct nvme_id_ns *id)
1747 {
1748         sector_t capacity = nvme_lba_to_sect(ns, le64_to_cpu(id->nsze));
1749         unsigned short bs = 1 << ns->lba_shift;
1750         u32 atomic_bs, phys_bs, io_opt = 0;
1751
1752         /*
1753          * The block layer can't support LBA sizes larger than the page size
1754          * yet, so catch this early and don't allow block I/O.
1755          */
1756         if (ns->lba_shift > PAGE_SHIFT) {
1757                 capacity = 0;
1758                 bs = (1 << 9);
1759         }
1760
1761         blk_integrity_unregister(disk);
1762
1763         atomic_bs = phys_bs = bs;
1764         nvme_setup_streams_ns(ns->ctrl, ns, &phys_bs, &io_opt);
1765         if (id->nabo == 0) {
1766                 /*
1767                  * Bit 1 indicates whether NAWUPF is defined for this namespace
1768                  * and whether it should be used instead of AWUPF. If NAWUPF ==
1769                  * 0 then AWUPF must be used instead.
1770                  */
1771                 if (id->nsfeat & NVME_NS_FEAT_ATOMICS && id->nawupf)
1772                         atomic_bs = (1 + le16_to_cpu(id->nawupf)) * bs;
1773                 else
1774                         atomic_bs = (1 + ns->ctrl->subsys->awupf) * bs;
1775         }
1776
1777         if (id->nsfeat & NVME_NS_FEAT_IO_OPT) {
1778                 /* NPWG = Namespace Preferred Write Granularity */
1779                 phys_bs = bs * (1 + le16_to_cpu(id->npwg));
1780                 /* NOWS = Namespace Optimal Write Size */
1781                 io_opt = bs * (1 + le16_to_cpu(id->nows));
1782         }
1783
1784         blk_queue_logical_block_size(disk->queue, bs);
1785         /*
1786          * Linux filesystems assume writing a single physical block is
1787          * an atomic operation. Hence limit the physical block size to the
1788          * value of the Atomic Write Unit Power Fail parameter.
1789          */
1790         blk_queue_physical_block_size(disk->queue, min(phys_bs, atomic_bs));
1791         blk_queue_io_min(disk->queue, phys_bs);
1792         blk_queue_io_opt(disk->queue, io_opt);
1793
1794         /*
1795          * Register a metadata profile for PI, or the plain non-integrity NVMe
1796          * metadata masquerading as Type 0 if supported, otherwise reject block
1797          * I/O to namespaces with metadata except when the namespace supports
1798          * PI, as it can strip/insert in that case.
1799          */
1800         if (ns->ms) {
1801                 if (IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY) &&
1802                     (ns->features & NVME_NS_METADATA_SUPPORTED))
1803                         nvme_init_integrity(disk, ns->ms, ns->pi_type,
1804                                             ns->ctrl->max_integrity_segments);
1805                 else if (!nvme_ns_has_pi(ns))
1806                         capacity = 0;
1807         }
1808
1809         set_capacity_and_notify(disk, capacity);
1810
1811         nvme_config_discard(disk, ns);
1812         blk_queue_max_write_zeroes_sectors(disk->queue,
1813                                            ns->ctrl->max_zeroes_sectors);
1814
1815         set_disk_ro(disk, (id->nsattr & NVME_NS_ATTR_RO) ||
1816                 test_bit(NVME_NS_FORCE_RO, &ns->flags));
1817 }
1818
1819 static inline bool nvme_first_scan(struct gendisk *disk)
1820 {
1821         /* nvme_alloc_ns() scans the disk prior to adding it */
1822         return !disk_live(disk);
1823 }
1824
1825 static void nvme_set_chunk_sectors(struct nvme_ns *ns, struct nvme_id_ns *id)
1826 {
1827         struct nvme_ctrl *ctrl = ns->ctrl;
1828         u32 iob;
1829
1830         if ((ctrl->quirks & NVME_QUIRK_STRIPE_SIZE) &&
1831             is_power_of_2(ctrl->max_hw_sectors))
1832                 iob = ctrl->max_hw_sectors;
1833         else
1834                 iob = nvme_lba_to_sect(ns, le16_to_cpu(id->noiob));
1835
1836         if (!iob)
1837                 return;
1838
1839         if (!is_power_of_2(iob)) {
1840                 if (nvme_first_scan(ns->disk))
1841                         pr_warn("%s: ignoring unaligned IO boundary:%u\n",
1842                                 ns->disk->disk_name, iob);
1843                 return;
1844         }
1845
1846         if (blk_queue_is_zoned(ns->disk->queue)) {
1847                 if (nvme_first_scan(ns->disk))
1848                         pr_warn("%s: ignoring zoned namespace IO boundary\n",
1849                                 ns->disk->disk_name);
1850                 return;
1851         }
1852
1853         blk_queue_chunk_sectors(ns->queue, iob);
1854 }
1855
1856 static int nvme_update_ns_info(struct nvme_ns *ns, struct nvme_id_ns *id)
1857 {
1858         unsigned lbaf = id->flbas & NVME_NS_FLBAS_LBA_MASK;
1859         int ret;
1860
1861         blk_mq_freeze_queue(ns->disk->queue);
1862         ns->lba_shift = id->lbaf[lbaf].ds;
1863         nvme_set_queue_limits(ns->ctrl, ns->queue);
1864
1865         ret = nvme_configure_metadata(ns, id);
1866         if (ret)
1867                 goto out_unfreeze;
1868         nvme_set_chunk_sectors(ns, id);
1869         nvme_update_disk_info(ns->disk, ns, id);
1870
1871         if (ns->head->ids.csi == NVME_CSI_ZNS) {
1872                 ret = nvme_update_zone_info(ns, lbaf);
1873                 if (ret)
1874                         goto out_unfreeze;
1875         }
1876
1877         set_bit(NVME_NS_READY, &ns->flags);
1878         blk_mq_unfreeze_queue(ns->disk->queue);
1879
1880         if (blk_queue_is_zoned(ns->queue)) {
1881                 ret = nvme_revalidate_zones(ns);
1882                 if (ret && !nvme_first_scan(ns->disk))
1883                         goto out;
1884         }
1885
1886         if (nvme_ns_head_multipath(ns->head)) {
1887                 blk_mq_freeze_queue(ns->head->disk->queue);
1888                 nvme_update_disk_info(ns->head->disk, ns, id);
1889                 nvme_mpath_revalidate_paths(ns);
1890                 blk_stack_limits(&ns->head->disk->queue->limits,
1891                                  &ns->queue->limits, 0);
1892                 disk_update_readahead(ns->head->disk);
1893                 blk_mq_unfreeze_queue(ns->head->disk->queue);
1894         }
1895         return 0;
1896
1897 out_unfreeze:
1898         blk_mq_unfreeze_queue(ns->disk->queue);
1899 out:
1900         /*
1901          * If probing fails due an unsupported feature, hide the block device,
1902          * but still allow other access.
1903          */
1904         if (ret == -ENODEV) {
1905                 ns->disk->flags |= GENHD_FL_HIDDEN;
1906                 ret = 0;
1907         }
1908         return ret;
1909 }
1910
1911 static char nvme_pr_type(enum pr_type type)
1912 {
1913         switch (type) {
1914         case PR_WRITE_EXCLUSIVE:
1915                 return 1;
1916         case PR_EXCLUSIVE_ACCESS:
1917                 return 2;
1918         case PR_WRITE_EXCLUSIVE_REG_ONLY:
1919                 return 3;
1920         case PR_EXCLUSIVE_ACCESS_REG_ONLY:
1921                 return 4;
1922         case PR_WRITE_EXCLUSIVE_ALL_REGS:
1923                 return 5;
1924         case PR_EXCLUSIVE_ACCESS_ALL_REGS:
1925                 return 6;
1926         default:
1927                 return 0;
1928         }
1929 };
1930
1931 static int nvme_send_ns_head_pr_command(struct block_device *bdev,
1932                 struct nvme_command *c, u8 data[16])
1933 {
1934         struct nvme_ns_head *head = bdev->bd_disk->private_data;
1935         int srcu_idx = srcu_read_lock(&head->srcu);
1936         struct nvme_ns *ns = nvme_find_path(head);
1937         int ret = -EWOULDBLOCK;
1938
1939         if (ns) {
1940                 c->common.nsid = cpu_to_le32(ns->head->ns_id);
1941                 ret = nvme_submit_sync_cmd(ns->queue, c, data, 16);
1942         }
1943         srcu_read_unlock(&head->srcu, srcu_idx);
1944         return ret;
1945 }
1946         
1947 static int nvme_send_ns_pr_command(struct nvme_ns *ns, struct nvme_command *c,
1948                 u8 data[16])
1949 {
1950         c->common.nsid = cpu_to_le32(ns->head->ns_id);
1951         return nvme_submit_sync_cmd(ns->queue, c, data, 16);
1952 }
1953
1954 static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
1955                                 u64 key, u64 sa_key, u8 op)
1956 {
1957         struct nvme_command c = { };
1958         u8 data[16] = { 0, };
1959
1960         put_unaligned_le64(key, &data[0]);
1961         put_unaligned_le64(sa_key, &data[8]);
1962
1963         c.common.opcode = op;
1964         c.common.cdw10 = cpu_to_le32(cdw10);
1965
1966         if (IS_ENABLED(CONFIG_NVME_MULTIPATH) &&
1967             bdev->bd_disk->fops == &nvme_ns_head_ops)
1968                 return nvme_send_ns_head_pr_command(bdev, &c, data);
1969         return nvme_send_ns_pr_command(bdev->bd_disk->private_data, &c, data);
1970 }
1971
1972 static int nvme_pr_register(struct block_device *bdev, u64 old,
1973                 u64 new, unsigned flags)
1974 {
1975         u32 cdw10;
1976
1977         if (flags & ~PR_FL_IGNORE_KEY)
1978                 return -EOPNOTSUPP;
1979
1980         cdw10 = old ? 2 : 0;
1981         cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
1982         cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
1983         return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
1984 }
1985
1986 static int nvme_pr_reserve(struct block_device *bdev, u64 key,
1987                 enum pr_type type, unsigned flags)
1988 {
1989         u32 cdw10;
1990
1991         if (flags & ~PR_FL_IGNORE_KEY)
1992                 return -EOPNOTSUPP;
1993
1994         cdw10 = nvme_pr_type(type) << 8;
1995         cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
1996         return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
1997 }
1998
1999 static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
2000                 enum pr_type type, bool abort)
2001 {
2002         u32 cdw10 = nvme_pr_type(type) << 8 | (abort ? 2 : 1);
2003
2004         return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
2005 }
2006
2007 static int nvme_pr_clear(struct block_device *bdev, u64 key)
2008 {
2009         u32 cdw10 = 1 | (key ? 1 << 3 : 0);
2010
2011         return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register);
2012 }
2013
2014 static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2015 {
2016         u32 cdw10 = nvme_pr_type(type) << 8 | (key ? 1 << 3 : 0);
2017
2018         return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
2019 }
2020
2021 const struct pr_ops nvme_pr_ops = {
2022         .pr_register    = nvme_pr_register,
2023         .pr_reserve     = nvme_pr_reserve,
2024         .pr_release     = nvme_pr_release,
2025         .pr_preempt     = nvme_pr_preempt,
2026         .pr_clear       = nvme_pr_clear,
2027 };
2028
2029 #ifdef CONFIG_BLK_SED_OPAL
2030 int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
2031                 bool send)
2032 {
2033         struct nvme_ctrl *ctrl = data;
2034         struct nvme_command cmd = { };
2035
2036         if (send)
2037                 cmd.common.opcode = nvme_admin_security_send;
2038         else
2039                 cmd.common.opcode = nvme_admin_security_recv;
2040         cmd.common.nsid = 0;
2041         cmd.common.cdw10 = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
2042         cmd.common.cdw11 = cpu_to_le32(len);
2043
2044         return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len, 0,
2045                         NVME_QID_ANY, 1, 0);
2046 }
2047 EXPORT_SYMBOL_GPL(nvme_sec_submit);
2048 #endif /* CONFIG_BLK_SED_OPAL */
2049
2050 #ifdef CONFIG_BLK_DEV_ZONED
2051 static int nvme_report_zones(struct gendisk *disk, sector_t sector,
2052                 unsigned int nr_zones, report_zones_cb cb, void *data)
2053 {
2054         return nvme_ns_report_zones(disk->private_data, sector, nr_zones, cb,
2055                         data);
2056 }
2057 #else
2058 #define nvme_report_zones       NULL
2059 #endif /* CONFIG_BLK_DEV_ZONED */
2060
2061 static const struct block_device_operations nvme_bdev_ops = {
2062         .owner          = THIS_MODULE,
2063         .ioctl          = nvme_ioctl,
2064         .open           = nvme_open,
2065         .release        = nvme_release,
2066         .getgeo         = nvme_getgeo,
2067         .report_zones   = nvme_report_zones,
2068         .pr_ops         = &nvme_pr_ops,
2069 };
2070
2071 static int nvme_wait_ready(struct nvme_ctrl *ctrl, u64 cap, bool enabled)
2072 {
2073         unsigned long timeout =
2074                 ((NVME_CAP_TIMEOUT(cap) + 1) * HZ / 2) + jiffies;
2075         u32 csts, bit = enabled ? NVME_CSTS_RDY : 0;
2076         int ret;
2077
2078         while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
2079                 if (csts == ~0)
2080                         return -ENODEV;
2081                 if ((csts & NVME_CSTS_RDY) == bit)
2082                         break;
2083
2084                 usleep_range(1000, 2000);
2085                 if (fatal_signal_pending(current))
2086                         return -EINTR;
2087                 if (time_after(jiffies, timeout)) {
2088                         dev_err(ctrl->device,
2089                                 "Device not ready; aborting %s, CSTS=0x%x\n",
2090                                 enabled ? "initialisation" : "reset", csts);
2091                         return -ENODEV;
2092                 }
2093         }
2094
2095         return ret;
2096 }
2097
2098 /*
2099  * If the device has been passed off to us in an enabled state, just clear
2100  * the enabled bit.  The spec says we should set the 'shutdown notification
2101  * bits', but doing so may cause the device to complete commands to the
2102  * admin queue ... and we don't know what memory that might be pointing at!
2103  */
2104 int nvme_disable_ctrl(struct nvme_ctrl *ctrl)
2105 {
2106         int ret;
2107
2108         ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
2109         ctrl->ctrl_config &= ~NVME_CC_ENABLE;
2110
2111         ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2112         if (ret)
2113                 return ret;
2114
2115         if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
2116                 msleep(NVME_QUIRK_DELAY_AMOUNT);
2117
2118         return nvme_wait_ready(ctrl, ctrl->cap, false);
2119 }
2120 EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
2121
2122 int nvme_enable_ctrl(struct nvme_ctrl *ctrl)
2123 {
2124         unsigned dev_page_min;
2125         int ret;
2126
2127         ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &ctrl->cap);
2128         if (ret) {
2129                 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
2130                 return ret;
2131         }
2132         dev_page_min = NVME_CAP_MPSMIN(ctrl->cap) + 12;
2133
2134         if (NVME_CTRL_PAGE_SHIFT < dev_page_min) {
2135                 dev_err(ctrl->device,
2136                         "Minimum device page size %u too large for host (%u)\n",
2137                         1 << dev_page_min, 1 << NVME_CTRL_PAGE_SHIFT);
2138                 return -ENODEV;
2139         }
2140
2141         if (NVME_CAP_CSS(ctrl->cap) & NVME_CAP_CSS_CSI)
2142                 ctrl->ctrl_config = NVME_CC_CSS_CSI;
2143         else
2144                 ctrl->ctrl_config = NVME_CC_CSS_NVM;
2145         ctrl->ctrl_config |= (NVME_CTRL_PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT;
2146         ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
2147         ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
2148         ctrl->ctrl_config |= NVME_CC_ENABLE;
2149
2150         ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2151         if (ret)
2152                 return ret;
2153         return nvme_wait_ready(ctrl, ctrl->cap, true);
2154 }
2155 EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
2156
2157 int nvme_shutdown_ctrl(struct nvme_ctrl *ctrl)
2158 {
2159         unsigned long timeout = jiffies + (ctrl->shutdown_timeout * HZ);
2160         u32 csts;
2161         int ret;
2162
2163         ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
2164         ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
2165
2166         ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2167         if (ret)
2168                 return ret;
2169
2170         while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
2171                 if ((csts & NVME_CSTS_SHST_MASK) == NVME_CSTS_SHST_CMPLT)
2172                         break;
2173
2174                 msleep(100);
2175                 if (fatal_signal_pending(current))
2176                         return -EINTR;
2177                 if (time_after(jiffies, timeout)) {
2178                         dev_err(ctrl->device,
2179                                 "Device shutdown incomplete; abort shutdown\n");
2180                         return -ENODEV;
2181                 }
2182         }
2183
2184         return ret;
2185 }
2186 EXPORT_SYMBOL_GPL(nvme_shutdown_ctrl);
2187
2188 static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
2189 {
2190         __le64 ts;
2191         int ret;
2192
2193         if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
2194                 return 0;
2195
2196         ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
2197         ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
2198                         NULL);
2199         if (ret)
2200                 dev_warn_once(ctrl->device,
2201                         "could not set timestamp (%d)\n", ret);
2202         return ret;
2203 }
2204
2205 static int nvme_configure_acre(struct nvme_ctrl *ctrl)
2206 {
2207         struct nvme_feat_host_behavior *host;
2208         int ret;
2209
2210         /* Don't bother enabling the feature if retry delay is not reported */
2211         if (!ctrl->crdt[0])
2212                 return 0;
2213
2214         host = kzalloc(sizeof(*host), GFP_KERNEL);
2215         if (!host)
2216                 return 0;
2217
2218         host->acre = NVME_ENABLE_ACRE;
2219         ret = nvme_set_features(ctrl, NVME_FEAT_HOST_BEHAVIOR, 0,
2220                                 host, sizeof(*host), NULL);
2221         kfree(host);
2222         return ret;
2223 }
2224
2225 /*
2226  * The function checks whether the given total (exlat + enlat) latency of
2227  * a power state allows the latter to be used as an APST transition target.
2228  * It does so by comparing the latency to the primary and secondary latency
2229  * tolerances defined by module params. If there's a match, the corresponding
2230  * timeout value is returned and the matching tolerance index (1 or 2) is
2231  * reported.
2232  */
2233 static bool nvme_apst_get_transition_time(u64 total_latency,
2234                 u64 *transition_time, unsigned *last_index)
2235 {
2236         if (total_latency <= apst_primary_latency_tol_us) {
2237                 if (*last_index == 1)
2238                         return false;
2239                 *last_index = 1;
2240                 *transition_time = apst_primary_timeout_ms;
2241                 return true;
2242         }
2243         if (apst_secondary_timeout_ms &&
2244                 total_latency <= apst_secondary_latency_tol_us) {
2245                 if (*last_index <= 2)
2246                         return false;
2247                 *last_index = 2;
2248                 *transition_time = apst_secondary_timeout_ms;
2249                 return true;
2250         }
2251         return false;
2252 }
2253
2254 /*
2255  * APST (Autonomous Power State Transition) lets us program a table of power
2256  * state transitions that the controller will perform automatically.
2257  *
2258  * Depending on module params, one of the two supported techniques will be used:
2259  *
2260  * - If the parameters provide explicit timeouts and tolerances, they will be
2261  *   used to build a table with up to 2 non-operational states to transition to.
2262  *   The default parameter values were selected based on the values used by
2263  *   Microsoft's and Intel's NVMe drivers. Yet, since we don't implement dynamic
2264  *   regeneration of the APST table in the event of switching between external
2265  *   and battery power, the timeouts and tolerances reflect a compromise
2266  *   between values used by Microsoft for AC and battery scenarios.
2267  * - If not, we'll configure the table with a simple heuristic: we are willing
2268  *   to spend at most 2% of the time transitioning between power states.
2269  *   Therefore, when running in any given state, we will enter the next
2270  *   lower-power non-operational state after waiting 50 * (enlat + exlat)
2271  *   microseconds, as long as that state's exit latency is under the requested
2272  *   maximum latency.
2273  *
2274  * We will not autonomously enter any non-operational state for which the total
2275  * latency exceeds ps_max_latency_us.
2276  *
2277  * Users can set ps_max_latency_us to zero to turn off APST.
2278  */
2279 static int nvme_configure_apst(struct nvme_ctrl *ctrl)
2280 {
2281         struct nvme_feat_auto_pst *table;
2282         unsigned apste = 0;
2283         u64 max_lat_us = 0;
2284         __le64 target = 0;
2285         int max_ps = -1;
2286         int state;
2287         int ret;
2288         unsigned last_lt_index = UINT_MAX;
2289
2290         /*
2291          * If APST isn't supported or if we haven't been initialized yet,
2292          * then don't do anything.
2293          */
2294         if (!ctrl->apsta)
2295                 return 0;
2296
2297         if (ctrl->npss > 31) {
2298                 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
2299                 return 0;
2300         }
2301
2302         table = kzalloc(sizeof(*table), GFP_KERNEL);
2303         if (!table)
2304                 return 0;
2305
2306         if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
2307                 /* Turn off APST. */
2308                 dev_dbg(ctrl->device, "APST disabled\n");
2309                 goto done;
2310         }
2311
2312         /*
2313          * Walk through all states from lowest- to highest-power.
2314          * According to the spec, lower-numbered states use more power.  NPSS,
2315          * despite the name, is the index of the lowest-power state, not the
2316          * number of states.
2317          */
2318         for (state = (int)ctrl->npss; state >= 0; state--) {
2319                 u64 total_latency_us, exit_latency_us, transition_ms;
2320
2321                 if (target)
2322                         table->entries[state] = target;
2323
2324                 /*
2325                  * Don't allow transitions to the deepest state if it's quirked
2326                  * off.
2327                  */
2328                 if (state == ctrl->npss &&
2329                     (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
2330                         continue;
2331
2332                 /*
2333                  * Is this state a useful non-operational state for higher-power
2334                  * states to autonomously transition to?
2335                  */
2336                 if (!(ctrl->psd[state].flags & NVME_PS_FLAGS_NON_OP_STATE))
2337                         continue;
2338
2339                 exit_latency_us = (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
2340                 if (exit_latency_us > ctrl->ps_max_latency_us)
2341                         continue;
2342
2343                 total_latency_us = exit_latency_us +
2344                         le32_to_cpu(ctrl->psd[state].entry_lat);
2345
2346                 /*
2347                  * This state is good. It can be used as the APST idle target
2348                  * for higher power states.
2349                  */
2350                 if (apst_primary_timeout_ms && apst_primary_latency_tol_us) {
2351                         if (!nvme_apst_get_transition_time(total_latency_us,
2352                                         &transition_ms, &last_lt_index))
2353                                 continue;
2354                 } else {
2355                         transition_ms = total_latency_us + 19;
2356                         do_div(transition_ms, 20);
2357                         if (transition_ms > (1 << 24) - 1)
2358                                 transition_ms = (1 << 24) - 1;
2359                 }
2360
2361                 target = cpu_to_le64((state << 3) | (transition_ms << 8));
2362                 if (max_ps == -1)
2363                         max_ps = state;
2364                 if (total_latency_us > max_lat_us)
2365                         max_lat_us = total_latency_us;
2366         }
2367
2368         if (max_ps == -1)
2369                 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
2370         else
2371                 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
2372                         max_ps, max_lat_us, (int)sizeof(*table), table);
2373         apste = 1;
2374
2375 done:
2376         ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
2377                                 table, sizeof(*table), NULL);
2378         if (ret)
2379                 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
2380         kfree(table);
2381         return ret;
2382 }
2383
2384 static void nvme_set_latency_tolerance(struct device *dev, s32 val)
2385 {
2386         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2387         u64 latency;
2388
2389         switch (val) {
2390         case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
2391         case PM_QOS_LATENCY_ANY:
2392                 latency = U64_MAX;
2393                 break;
2394
2395         default:
2396                 latency = val;
2397         }
2398
2399         if (ctrl->ps_max_latency_us != latency) {
2400                 ctrl->ps_max_latency_us = latency;
2401                 if (ctrl->state == NVME_CTRL_LIVE)
2402                         nvme_configure_apst(ctrl);
2403         }
2404 }
2405
2406 struct nvme_core_quirk_entry {
2407         /*
2408          * NVMe model and firmware strings are padded with spaces.  For
2409          * simplicity, strings in the quirk table are padded with NULLs
2410          * instead.
2411          */
2412         u16 vid;
2413         const char *mn;
2414         const char *fr;
2415         unsigned long quirks;
2416 };
2417
2418 static const struct nvme_core_quirk_entry core_quirks[] = {
2419         {
2420                 /*
2421                  * This Toshiba device seems to die using any APST states.  See:
2422                  * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
2423                  */
2424                 .vid = 0x1179,
2425                 .mn = "THNSF5256GPUK TOSHIBA",
2426                 .quirks = NVME_QUIRK_NO_APST,
2427         },
2428         {
2429                 /*
2430                  * This LiteON CL1-3D*-Q11 firmware version has a race
2431                  * condition associated with actions related to suspend to idle
2432                  * LiteON has resolved the problem in future firmware
2433                  */
2434                 .vid = 0x14a4,
2435                 .fr = "22301111",
2436                 .quirks = NVME_QUIRK_SIMPLE_SUSPEND,
2437         }
2438 };
2439
2440 /* match is null-terminated but idstr is space-padded. */
2441 static bool string_matches(const char *idstr, const char *match, size_t len)
2442 {
2443         size_t matchlen;
2444
2445         if (!match)
2446                 return true;
2447
2448         matchlen = strlen(match);
2449         WARN_ON_ONCE(matchlen > len);
2450
2451         if (memcmp(idstr, match, matchlen))
2452                 return false;
2453
2454         for (; matchlen < len; matchlen++)
2455                 if (idstr[matchlen] != ' ')
2456                         return false;
2457
2458         return true;
2459 }
2460
2461 static bool quirk_matches(const struct nvme_id_ctrl *id,
2462                           const struct nvme_core_quirk_entry *q)
2463 {
2464         return q->vid == le16_to_cpu(id->vid) &&
2465                 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
2466                 string_matches(id->fr, q->fr, sizeof(id->fr));
2467 }
2468
2469 static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl,
2470                 struct nvme_id_ctrl *id)
2471 {
2472         size_t nqnlen;
2473         int off;
2474
2475         if(!(ctrl->quirks & NVME_QUIRK_IGNORE_DEV_SUBNQN)) {
2476                 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
2477                 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
2478                         strlcpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE);
2479                         return;
2480                 }
2481
2482                 if (ctrl->vs >= NVME_VS(1, 2, 1))
2483                         dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
2484         }
2485
2486         /* Generate a "fake" NQN per Figure 254 in NVMe 1.3 + ECN 001 */
2487         off = snprintf(subsys->subnqn, NVMF_NQN_SIZE,
2488                         "nqn.2014.08.org.nvmexpress:%04x%04x",
2489                         le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
2490         memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn));
2491         off += sizeof(id->sn);
2492         memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn));
2493         off += sizeof(id->mn);
2494         memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off);
2495 }
2496
2497 static void nvme_release_subsystem(struct device *dev)
2498 {
2499         struct nvme_subsystem *subsys =
2500                 container_of(dev, struct nvme_subsystem, dev);
2501
2502         if (subsys->instance >= 0)
2503                 ida_simple_remove(&nvme_instance_ida, subsys->instance);
2504         kfree(subsys);
2505 }
2506
2507 static void nvme_destroy_subsystem(struct kref *ref)
2508 {
2509         struct nvme_subsystem *subsys =
2510                         container_of(ref, struct nvme_subsystem, ref);
2511
2512         mutex_lock(&nvme_subsystems_lock);
2513         list_del(&subsys->entry);
2514         mutex_unlock(&nvme_subsystems_lock);
2515
2516         ida_destroy(&subsys->ns_ida);
2517         device_del(&subsys->dev);
2518         put_device(&subsys->dev);
2519 }
2520
2521 static void nvme_put_subsystem(struct nvme_subsystem *subsys)
2522 {
2523         kref_put(&subsys->ref, nvme_destroy_subsystem);
2524 }
2525
2526 static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
2527 {
2528         struct nvme_subsystem *subsys;
2529
2530         lockdep_assert_held(&nvme_subsystems_lock);
2531
2532         /*
2533          * Fail matches for discovery subsystems. This results
2534          * in each discovery controller bound to a unique subsystem.
2535          * This avoids issues with validating controller values
2536          * that can only be true when there is a single unique subsystem.
2537          * There may be multiple and completely independent entities
2538          * that provide discovery controllers.
2539          */
2540         if (!strcmp(subsysnqn, NVME_DISC_SUBSYS_NAME))
2541                 return NULL;
2542
2543         list_for_each_entry(subsys, &nvme_subsystems, entry) {
2544                 if (strcmp(subsys->subnqn, subsysnqn))
2545                         continue;
2546                 if (!kref_get_unless_zero(&subsys->ref))
2547                         continue;
2548                 return subsys;
2549         }
2550
2551         return NULL;
2552 }
2553
2554 #define SUBSYS_ATTR_RO(_name, _mode, _show)                     \
2555         struct device_attribute subsys_attr_##_name = \
2556                 __ATTR(_name, _mode, _show, NULL)
2557
2558 static ssize_t nvme_subsys_show_nqn(struct device *dev,
2559                                     struct device_attribute *attr,
2560                                     char *buf)
2561 {
2562         struct nvme_subsystem *subsys =
2563                 container_of(dev, struct nvme_subsystem, dev);
2564
2565         return sysfs_emit(buf, "%s\n", subsys->subnqn);
2566 }
2567 static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn);
2568
2569 #define nvme_subsys_show_str_function(field)                            \
2570 static ssize_t subsys_##field##_show(struct device *dev,                \
2571                             struct device_attribute *attr, char *buf)   \
2572 {                                                                       \
2573         struct nvme_subsystem *subsys =                                 \
2574                 container_of(dev, struct nvme_subsystem, dev);          \
2575         return sysfs_emit(buf, "%.*s\n",                                \
2576                            (int)sizeof(subsys->field), subsys->field);  \
2577 }                                                                       \
2578 static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show);
2579
2580 nvme_subsys_show_str_function(model);
2581 nvme_subsys_show_str_function(serial);
2582 nvme_subsys_show_str_function(firmware_rev);
2583
2584 static struct attribute *nvme_subsys_attrs[] = {
2585         &subsys_attr_model.attr,
2586         &subsys_attr_serial.attr,
2587         &subsys_attr_firmware_rev.attr,
2588         &subsys_attr_subsysnqn.attr,
2589 #ifdef CONFIG_NVME_MULTIPATH
2590         &subsys_attr_iopolicy.attr,
2591 #endif
2592         NULL,
2593 };
2594
2595 static const struct attribute_group nvme_subsys_attrs_group = {
2596         .attrs = nvme_subsys_attrs,
2597 };
2598
2599 static const struct attribute_group *nvme_subsys_attrs_groups[] = {
2600         &nvme_subsys_attrs_group,
2601         NULL,
2602 };
2603
2604 static inline bool nvme_discovery_ctrl(struct nvme_ctrl *ctrl)
2605 {
2606         return ctrl->opts && ctrl->opts->discovery_nqn;
2607 }
2608
2609 static bool nvme_validate_cntlid(struct nvme_subsystem *subsys,
2610                 struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2611 {
2612         struct nvme_ctrl *tmp;
2613
2614         lockdep_assert_held(&nvme_subsystems_lock);
2615
2616         list_for_each_entry(tmp, &subsys->ctrls, subsys_entry) {
2617                 if (nvme_state_terminal(tmp))
2618                         continue;
2619
2620                 if (tmp->cntlid == ctrl->cntlid) {
2621                         dev_err(ctrl->device,
2622                                 "Duplicate cntlid %u with %s, rejecting\n",
2623                                 ctrl->cntlid, dev_name(tmp->device));
2624                         return false;
2625                 }
2626
2627                 if ((id->cmic & NVME_CTRL_CMIC_MULTI_CTRL) ||
2628                     nvme_discovery_ctrl(ctrl))
2629                         continue;
2630
2631                 dev_err(ctrl->device,
2632                         "Subsystem does not support multiple controllers\n");
2633                 return false;
2634         }
2635
2636         return true;
2637 }
2638
2639 static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2640 {
2641         struct nvme_subsystem *subsys, *found;
2642         int ret;
2643
2644         subsys = kzalloc(sizeof(*subsys), GFP_KERNEL);
2645         if (!subsys)
2646                 return -ENOMEM;
2647
2648         subsys->instance = -1;
2649         mutex_init(&subsys->lock);
2650         kref_init(&subsys->ref);
2651         INIT_LIST_HEAD(&subsys->ctrls);
2652         INIT_LIST_HEAD(&subsys->nsheads);
2653         nvme_init_subnqn(subsys, ctrl, id);
2654         memcpy(subsys->serial, id->sn, sizeof(subsys->serial));
2655         memcpy(subsys->model, id->mn, sizeof(subsys->model));
2656         memcpy(subsys->firmware_rev, id->fr, sizeof(subsys->firmware_rev));
2657         subsys->vendor_id = le16_to_cpu(id->vid);
2658         subsys->cmic = id->cmic;
2659         subsys->awupf = le16_to_cpu(id->awupf);
2660 #ifdef CONFIG_NVME_MULTIPATH
2661         subsys->iopolicy = NVME_IOPOLICY_NUMA;
2662 #endif
2663
2664         subsys->dev.class = nvme_subsys_class;
2665         subsys->dev.release = nvme_release_subsystem;
2666         subsys->dev.groups = nvme_subsys_attrs_groups;
2667         dev_set_name(&subsys->dev, "nvme-subsys%d", ctrl->instance);
2668         device_initialize(&subsys->dev);
2669
2670         mutex_lock(&nvme_subsystems_lock);
2671         found = __nvme_find_get_subsystem(subsys->subnqn);
2672         if (found) {
2673                 put_device(&subsys->dev);
2674                 subsys = found;
2675
2676                 if (!nvme_validate_cntlid(subsys, ctrl, id)) {
2677                         ret = -EINVAL;
2678                         goto out_put_subsystem;
2679                 }
2680         } else {
2681                 ret = device_add(&subsys->dev);
2682                 if (ret) {
2683                         dev_err(ctrl->device,
2684                                 "failed to register subsystem device.\n");
2685                         put_device(&subsys->dev);
2686                         goto out_unlock;
2687                 }
2688                 ida_init(&subsys->ns_ida);
2689                 list_add_tail(&subsys->entry, &nvme_subsystems);
2690         }
2691
2692         ret = sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj,
2693                                 dev_name(ctrl->device));
2694         if (ret) {
2695                 dev_err(ctrl->device,
2696                         "failed to create sysfs link from subsystem.\n");
2697                 goto out_put_subsystem;
2698         }
2699
2700         if (!found)
2701                 subsys->instance = ctrl->instance;
2702         ctrl->subsys = subsys;
2703         list_add_tail(&ctrl->subsys_entry, &subsys->ctrls);
2704         mutex_unlock(&nvme_subsystems_lock);
2705         return 0;
2706
2707 out_put_subsystem:
2708         nvme_put_subsystem(subsys);
2709 out_unlock:
2710         mutex_unlock(&nvme_subsystems_lock);
2711         return ret;
2712 }
2713
2714 int nvme_get_log(struct nvme_ctrl *ctrl, u32 nsid, u8 log_page, u8 lsp, u8 csi,
2715                 void *log, size_t size, u64 offset)
2716 {
2717         struct nvme_command c = { };
2718         u32 dwlen = nvme_bytes_to_numd(size);
2719
2720         c.get_log_page.opcode = nvme_admin_get_log_page;
2721         c.get_log_page.nsid = cpu_to_le32(nsid);
2722         c.get_log_page.lid = log_page;
2723         c.get_log_page.lsp = lsp;
2724         c.get_log_page.numdl = cpu_to_le16(dwlen & ((1 << 16) - 1));
2725         c.get_log_page.numdu = cpu_to_le16(dwlen >> 16);
2726         c.get_log_page.lpol = cpu_to_le32(lower_32_bits(offset));
2727         c.get_log_page.lpou = cpu_to_le32(upper_32_bits(offset));
2728         c.get_log_page.csi = csi;
2729
2730         return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size);
2731 }
2732
2733 static int nvme_get_effects_log(struct nvme_ctrl *ctrl, u8 csi,
2734                                 struct nvme_effects_log **log)
2735 {
2736         struct nvme_effects_log *cel = xa_load(&ctrl->cels, csi);
2737         int ret;
2738
2739         if (cel)
2740                 goto out;
2741
2742         cel = kzalloc(sizeof(*cel), GFP_KERNEL);
2743         if (!cel)
2744                 return -ENOMEM;
2745
2746         ret = nvme_get_log(ctrl, 0x00, NVME_LOG_CMD_EFFECTS, 0, csi,
2747                         cel, sizeof(*cel), 0);
2748         if (ret) {
2749                 kfree(cel);
2750                 return ret;
2751         }
2752
2753         xa_store(&ctrl->cels, csi, cel, GFP_KERNEL);
2754 out:
2755         *log = cel;
2756         return 0;
2757 }
2758
2759 static inline u32 nvme_mps_to_sectors(struct nvme_ctrl *ctrl, u32 units)
2760 {
2761         u32 page_shift = NVME_CAP_MPSMIN(ctrl->cap) + 12, val;
2762
2763         if (check_shl_overflow(1U, units + page_shift - 9, &val))
2764                 return UINT_MAX;
2765         return val;
2766 }
2767
2768 static int nvme_init_non_mdts_limits(struct nvme_ctrl *ctrl)
2769 {
2770         struct nvme_command c = { };
2771         struct nvme_id_ctrl_nvm *id;
2772         int ret;
2773
2774         if (ctrl->oncs & NVME_CTRL_ONCS_DSM) {
2775                 ctrl->max_discard_sectors = UINT_MAX;
2776                 ctrl->max_discard_segments = NVME_DSM_MAX_RANGES;
2777         } else {
2778                 ctrl->max_discard_sectors = 0;
2779                 ctrl->max_discard_segments = 0;
2780         }
2781
2782         /*
2783          * Even though NVMe spec explicitly states that MDTS is not applicable
2784          * to the write-zeroes, we are cautious and limit the size to the
2785          * controllers max_hw_sectors value, which is based on the MDTS field
2786          * and possibly other limiting factors.
2787          */
2788         if ((ctrl->oncs & NVME_CTRL_ONCS_WRITE_ZEROES) &&
2789             !(ctrl->quirks & NVME_QUIRK_DISABLE_WRITE_ZEROES))
2790                 ctrl->max_zeroes_sectors = ctrl->max_hw_sectors;
2791         else
2792                 ctrl->max_zeroes_sectors = 0;
2793
2794         if (nvme_ctrl_limited_cns(ctrl))
2795                 return 0;
2796
2797         id = kzalloc(sizeof(*id), GFP_KERNEL);
2798         if (!id)
2799                 return 0;
2800
2801         c.identify.opcode = nvme_admin_identify;
2802         c.identify.cns = NVME_ID_CNS_CS_CTRL;
2803         c.identify.csi = NVME_CSI_NVM;
2804
2805         ret = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
2806         if (ret)
2807                 goto free_data;
2808
2809         if (id->dmrl)
2810                 ctrl->max_discard_segments = id->dmrl;
2811         if (id->dmrsl)
2812                 ctrl->max_discard_sectors = le32_to_cpu(id->dmrsl);
2813         if (id->wzsl)
2814                 ctrl->max_zeroes_sectors = nvme_mps_to_sectors(ctrl, id->wzsl);
2815
2816 free_data:
2817         kfree(id);
2818         return ret;
2819 }
2820
2821 static int nvme_init_identify(struct nvme_ctrl *ctrl)
2822 {
2823         struct nvme_id_ctrl *id;
2824         u32 max_hw_sectors;
2825         bool prev_apst_enabled;
2826         int ret;
2827
2828         ret = nvme_identify_ctrl(ctrl, &id);
2829         if (ret) {
2830                 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
2831                 return -EIO;
2832         }
2833
2834         if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
2835                 ret = nvme_get_effects_log(ctrl, NVME_CSI_NVM, &ctrl->effects);
2836                 if (ret < 0)
2837                         goto out_free;
2838         }
2839
2840         if (!(ctrl->ops->flags & NVME_F_FABRICS))
2841                 ctrl->cntlid = le16_to_cpu(id->cntlid);
2842
2843         if (!ctrl->identified) {
2844                 unsigned int i;
2845
2846                 ret = nvme_init_subsystem(ctrl, id);
2847                 if (ret)
2848                         goto out_free;
2849
2850                 /*
2851                  * Check for quirks.  Quirk can depend on firmware version,
2852                  * so, in principle, the set of quirks present can change
2853                  * across a reset.  As a possible future enhancement, we
2854                  * could re-scan for quirks every time we reinitialize
2855                  * the device, but we'd have to make sure that the driver
2856                  * behaves intelligently if the quirks change.
2857                  */
2858                 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
2859                         if (quirk_matches(id, &core_quirks[i]))
2860                                 ctrl->quirks |= core_quirks[i].quirks;
2861                 }
2862         }
2863
2864         if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
2865                 dev_warn(ctrl->device, "forcibly allowing all power states due to nvme_core.force_apst -- use at your own risk\n");
2866                 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
2867         }
2868
2869         ctrl->crdt[0] = le16_to_cpu(id->crdt1);
2870         ctrl->crdt[1] = le16_to_cpu(id->crdt2);
2871         ctrl->crdt[2] = le16_to_cpu(id->crdt3);
2872
2873         ctrl->oacs = le16_to_cpu(id->oacs);
2874         ctrl->oncs = le16_to_cpu(id->oncs);
2875         ctrl->mtfa = le16_to_cpu(id->mtfa);
2876         ctrl->oaes = le32_to_cpu(id->oaes);
2877         ctrl->wctemp = le16_to_cpu(id->wctemp);
2878         ctrl->cctemp = le16_to_cpu(id->cctemp);
2879
2880         atomic_set(&ctrl->abort_limit, id->acl + 1);
2881         ctrl->vwc = id->vwc;
2882         if (id->mdts)
2883                 max_hw_sectors = nvme_mps_to_sectors(ctrl, id->mdts);
2884         else
2885                 max_hw_sectors = UINT_MAX;
2886         ctrl->max_hw_sectors =
2887                 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
2888
2889         nvme_set_queue_limits(ctrl, ctrl->admin_q);
2890         ctrl->sgls = le32_to_cpu(id->sgls);
2891         ctrl->kas = le16_to_cpu(id->kas);
2892         ctrl->max_namespaces = le32_to_cpu(id->mnan);
2893         ctrl->ctratt = le32_to_cpu(id->ctratt);
2894
2895         if (id->rtd3e) {
2896                 /* us -> s */
2897                 u32 transition_time = le32_to_cpu(id->rtd3e) / USEC_PER_SEC;
2898
2899                 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
2900                                                  shutdown_timeout, 60);
2901
2902                 if (ctrl->shutdown_timeout != shutdown_timeout)
2903                         dev_info(ctrl->device,
2904                                  "Shutdown timeout set to %u seconds\n",
2905                                  ctrl->shutdown_timeout);
2906         } else
2907                 ctrl->shutdown_timeout = shutdown_timeout;
2908
2909         ctrl->npss = id->npss;
2910         ctrl->apsta = id->apsta;
2911         prev_apst_enabled = ctrl->apst_enabled;
2912         if (ctrl->quirks & NVME_QUIRK_NO_APST) {
2913                 if (force_apst && id->apsta) {
2914                         dev_warn(ctrl->device, "forcibly allowing APST due to nvme_core.force_apst -- use at your own risk\n");
2915                         ctrl->apst_enabled = true;
2916                 } else {
2917                         ctrl->apst_enabled = false;
2918                 }
2919         } else {
2920                 ctrl->apst_enabled = id->apsta;
2921         }
2922         memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
2923
2924         if (ctrl->ops->flags & NVME_F_FABRICS) {
2925                 ctrl->icdoff = le16_to_cpu(id->icdoff);
2926                 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
2927                 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
2928                 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
2929
2930                 /*
2931                  * In fabrics we need to verify the cntlid matches the
2932                  * admin connect
2933                  */
2934                 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
2935                         dev_err(ctrl->device,
2936                                 "Mismatching cntlid: Connect %u vs Identify "
2937                                 "%u, rejecting\n",
2938                                 ctrl->cntlid, le16_to_cpu(id->cntlid));
2939                         ret = -EINVAL;
2940                         goto out_free;
2941                 }
2942
2943                 if (!nvme_discovery_ctrl(ctrl) && !ctrl->kas) {
2944                         dev_err(ctrl->device,
2945                                 "keep-alive support is mandatory for fabrics\n");
2946                         ret = -EINVAL;
2947                         goto out_free;
2948                 }
2949         } else {
2950                 ctrl->hmpre = le32_to_cpu(id->hmpre);
2951                 ctrl->hmmin = le32_to_cpu(id->hmmin);
2952                 ctrl->hmminds = le32_to_cpu(id->hmminds);
2953                 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
2954         }
2955
2956         ret = nvme_mpath_init_identify(ctrl, id);
2957         if (ret < 0)
2958                 goto out_free;
2959
2960         if (ctrl->apst_enabled && !prev_apst_enabled)
2961                 dev_pm_qos_expose_latency_tolerance(ctrl->device);
2962         else if (!ctrl->apst_enabled && prev_apst_enabled)
2963                 dev_pm_qos_hide_latency_tolerance(ctrl->device);
2964
2965 out_free:
2966         kfree(id);
2967         return ret;
2968 }
2969
2970 /*
2971  * Initialize the cached copies of the Identify data and various controller
2972  * register in our nvme_ctrl structure.  This should be called as soon as
2973  * the admin queue is fully up and running.
2974  */
2975 int nvme_init_ctrl_finish(struct nvme_ctrl *ctrl)
2976 {
2977         int ret;
2978
2979         ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
2980         if (ret) {
2981                 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
2982                 return ret;
2983         }
2984
2985         ctrl->sqsize = min_t(u16, NVME_CAP_MQES(ctrl->cap), ctrl->sqsize);
2986
2987         if (ctrl->vs >= NVME_VS(1, 1, 0))
2988                 ctrl->subsystem = NVME_CAP_NSSRC(ctrl->cap);
2989
2990         ret = nvme_init_identify(ctrl);
2991         if (ret)
2992                 return ret;
2993
2994         ret = nvme_init_non_mdts_limits(ctrl);
2995         if (ret < 0)
2996                 return ret;
2997
2998         ret = nvme_configure_apst(ctrl);
2999         if (ret < 0)
3000                 return ret;
3001
3002         ret = nvme_configure_timestamp(ctrl);
3003         if (ret < 0)
3004                 return ret;
3005
3006         ret = nvme_configure_directives(ctrl);
3007         if (ret < 0)
3008                 return ret;
3009
3010         ret = nvme_configure_acre(ctrl);
3011         if (ret < 0)
3012                 return ret;
3013
3014         if (!ctrl->identified && !nvme_discovery_ctrl(ctrl)) {
3015                 ret = nvme_hwmon_init(ctrl);
3016                 if (ret < 0)
3017                         return ret;
3018         }
3019
3020         ctrl->identified = true;
3021
3022         return 0;
3023 }
3024 EXPORT_SYMBOL_GPL(nvme_init_ctrl_finish);
3025
3026 static int nvme_dev_open(struct inode *inode, struct file *file)
3027 {
3028         struct nvme_ctrl *ctrl =
3029                 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
3030
3031         switch (ctrl->state) {
3032         case NVME_CTRL_LIVE:
3033                 break;
3034         default:
3035                 return -EWOULDBLOCK;
3036         }
3037
3038         nvme_get_ctrl(ctrl);
3039         if (!try_module_get(ctrl->ops->module)) {
3040                 nvme_put_ctrl(ctrl);
3041                 return -EINVAL;
3042         }
3043
3044         file->private_data = ctrl;
3045         return 0;
3046 }
3047
3048 static int nvme_dev_release(struct inode *inode, struct file *file)
3049 {
3050         struct nvme_ctrl *ctrl =
3051                 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
3052
3053         module_put(ctrl->ops->module);
3054         nvme_put_ctrl(ctrl);
3055         return 0;
3056 }
3057
3058 static const struct file_operations nvme_dev_fops = {
3059         .owner          = THIS_MODULE,
3060         .open           = nvme_dev_open,
3061         .release        = nvme_dev_release,
3062         .unlocked_ioctl = nvme_dev_ioctl,
3063         .compat_ioctl   = compat_ptr_ioctl,
3064 };
3065
3066 static ssize_t nvme_sysfs_reset(struct device *dev,
3067                                 struct device_attribute *attr, const char *buf,
3068                                 size_t count)
3069 {
3070         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3071         int ret;
3072
3073         ret = nvme_reset_ctrl_sync(ctrl);
3074         if (ret < 0)
3075                 return ret;
3076         return count;
3077 }
3078 static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
3079
3080 static ssize_t nvme_sysfs_rescan(struct device *dev,
3081                                 struct device_attribute *attr, const char *buf,
3082                                 size_t count)
3083 {
3084         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3085
3086         nvme_queue_scan(ctrl);
3087         return count;
3088 }
3089 static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
3090
3091 static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev)
3092 {
3093         struct gendisk *disk = dev_to_disk(dev);
3094
3095         if (disk->fops == &nvme_bdev_ops)
3096                 return nvme_get_ns_from_dev(dev)->head;
3097         else
3098                 return disk->private_data;
3099 }
3100
3101 static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
3102                 char *buf)
3103 {
3104         struct nvme_ns_head *head = dev_to_ns_head(dev);
3105         struct nvme_ns_ids *ids = &head->ids;
3106         struct nvme_subsystem *subsys = head->subsys;
3107         int serial_len = sizeof(subsys->serial);
3108         int model_len = sizeof(subsys->model);
3109
3110         if (!uuid_is_null(&ids->uuid))
3111                 return sysfs_emit(buf, "uuid.%pU\n", &ids->uuid);
3112
3113         if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
3114                 return sysfs_emit(buf, "eui.%16phN\n", ids->nguid);
3115
3116         if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
3117                 return sysfs_emit(buf, "eui.%8phN\n", ids->eui64);
3118
3119         while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' ||
3120                                   subsys->serial[serial_len - 1] == '\0'))
3121                 serial_len--;
3122         while (model_len > 0 && (subsys->model[model_len - 1] == ' ' ||
3123                                  subsys->model[model_len - 1] == '\0'))
3124                 model_len--;
3125
3126         return sysfs_emit(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id,
3127                 serial_len, subsys->serial, model_len, subsys->model,
3128                 head->ns_id);
3129 }
3130 static DEVICE_ATTR_RO(wwid);
3131
3132 static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
3133                 char *buf)
3134 {
3135         return sysfs_emit(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid);
3136 }
3137 static DEVICE_ATTR_RO(nguid);
3138
3139 static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
3140                 char *buf)
3141 {
3142         struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
3143
3144         /* For backward compatibility expose the NGUID to userspace if
3145          * we have no UUID set
3146          */
3147         if (uuid_is_null(&ids->uuid)) {
3148                 printk_ratelimited(KERN_WARNING
3149                                    "No UUID available providing old NGUID\n");
3150                 return sysfs_emit(buf, "%pU\n", ids->nguid);
3151         }
3152         return sysfs_emit(buf, "%pU\n", &ids->uuid);
3153 }
3154 static DEVICE_ATTR_RO(uuid);
3155
3156 static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
3157                 char *buf)
3158 {
3159         return sysfs_emit(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64);
3160 }
3161 static DEVICE_ATTR_RO(eui);
3162
3163 static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
3164                 char *buf)
3165 {
3166         return sysfs_emit(buf, "%d\n", dev_to_ns_head(dev)->ns_id);
3167 }
3168 static DEVICE_ATTR_RO(nsid);
3169
3170 static struct attribute *nvme_ns_id_attrs[] = {
3171         &dev_attr_wwid.attr,
3172         &dev_attr_uuid.attr,
3173         &dev_attr_nguid.attr,
3174         &dev_attr_eui.attr,
3175         &dev_attr_nsid.attr,
3176 #ifdef CONFIG_NVME_MULTIPATH
3177         &dev_attr_ana_grpid.attr,
3178         &dev_attr_ana_state.attr,
3179 #endif
3180         NULL,
3181 };
3182
3183 static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj,
3184                 struct attribute *a, int n)
3185 {
3186         struct device *dev = container_of(kobj, struct device, kobj);
3187         struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
3188
3189         if (a == &dev_attr_uuid.attr) {
3190                 if (uuid_is_null(&ids->uuid) &&
3191                     !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
3192                         return 0;
3193         }
3194         if (a == &dev_attr_nguid.attr) {
3195                 if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
3196                         return 0;
3197         }
3198         if (a == &dev_attr_eui.attr) {
3199                 if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
3200                         return 0;
3201         }
3202 #ifdef CONFIG_NVME_MULTIPATH
3203         if (a == &dev_attr_ana_grpid.attr || a == &dev_attr_ana_state.attr) {
3204                 if (dev_to_disk(dev)->fops != &nvme_bdev_ops) /* per-path attr */
3205                         return 0;
3206                 if (!nvme_ctrl_use_ana(nvme_get_ns_from_dev(dev)->ctrl))
3207                         return 0;
3208         }
3209 #endif
3210         return a->mode;
3211 }
3212
3213 static const struct attribute_group nvme_ns_id_attr_group = {
3214         .attrs          = nvme_ns_id_attrs,
3215         .is_visible     = nvme_ns_id_attrs_are_visible,
3216 };
3217
3218 const struct attribute_group *nvme_ns_id_attr_groups[] = {
3219         &nvme_ns_id_attr_group,
3220         NULL,
3221 };
3222
3223 #define nvme_show_str_function(field)                                           \
3224 static ssize_t  field##_show(struct device *dev,                                \
3225                             struct device_attribute *attr, char *buf)           \
3226 {                                                                               \
3227         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);                          \
3228         return sysfs_emit(buf, "%.*s\n",                                        \
3229                 (int)sizeof(ctrl->subsys->field), ctrl->subsys->field);         \
3230 }                                                                               \
3231 static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
3232
3233 nvme_show_str_function(model);
3234 nvme_show_str_function(serial);
3235 nvme_show_str_function(firmware_rev);
3236
3237 #define nvme_show_int_function(field)                                           \
3238 static ssize_t  field##_show(struct device *dev,                                \
3239                             struct device_attribute *attr, char *buf)           \
3240 {                                                                               \
3241         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);                          \
3242         return sysfs_emit(buf, "%d\n", ctrl->field);                            \
3243 }                                                                               \
3244 static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
3245
3246 nvme_show_int_function(cntlid);
3247 nvme_show_int_function(numa_node);
3248 nvme_show_int_function(queue_count);
3249 nvme_show_int_function(sqsize);
3250 nvme_show_int_function(kato);
3251
3252 static ssize_t nvme_sysfs_delete(struct device *dev,
3253                                 struct device_attribute *attr, const char *buf,
3254                                 size_t count)
3255 {
3256         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3257
3258         if (device_remove_file_self(dev, attr))
3259                 nvme_delete_ctrl_sync(ctrl);
3260         return count;
3261 }
3262 static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
3263
3264 static ssize_t nvme_sysfs_show_transport(struct device *dev,
3265                                          struct device_attribute *attr,
3266                                          char *buf)
3267 {
3268         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3269
3270         return sysfs_emit(buf, "%s\n", ctrl->ops->name);
3271 }
3272 static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
3273
3274 static ssize_t nvme_sysfs_show_state(struct device *dev,
3275                                      struct device_attribute *attr,
3276                                      char *buf)
3277 {
3278         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3279         static const char *const state_name[] = {
3280                 [NVME_CTRL_NEW]         = "new",
3281                 [NVME_CTRL_LIVE]        = "live",
3282                 [NVME_CTRL_RESETTING]   = "resetting",
3283                 [NVME_CTRL_CONNECTING]  = "connecting",
3284                 [NVME_CTRL_DELETING]    = "deleting",
3285                 [NVME_CTRL_DELETING_NOIO]= "deleting (no IO)",
3286                 [NVME_CTRL_DEAD]        = "dead",
3287         };
3288
3289         if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
3290             state_name[ctrl->state])
3291                 return sysfs_emit(buf, "%s\n", state_name[ctrl->state]);
3292
3293         return sysfs_emit(buf, "unknown state\n");
3294 }
3295
3296 static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
3297
3298 static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
3299                                          struct device_attribute *attr,
3300                                          char *buf)
3301 {
3302         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3303
3304         return sysfs_emit(buf, "%s\n", ctrl->subsys->subnqn);
3305 }
3306 static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
3307
3308 static ssize_t nvme_sysfs_show_hostnqn(struct device *dev,
3309                                         struct device_attribute *attr,
3310                                         char *buf)
3311 {
3312         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3313
3314         return sysfs_emit(buf, "%s\n", ctrl->opts->host->nqn);
3315 }
3316 static DEVICE_ATTR(hostnqn, S_IRUGO, nvme_sysfs_show_hostnqn, NULL);
3317
3318 static ssize_t nvme_sysfs_show_hostid(struct device *dev,
3319                                         struct device_attribute *attr,
3320                                         char *buf)
3321 {
3322         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3323
3324         return sysfs_emit(buf, "%pU\n", &ctrl->opts->host->id);
3325 }
3326 static DEVICE_ATTR(hostid, S_IRUGO, nvme_sysfs_show_hostid, NULL);
3327
3328 static ssize_t nvme_sysfs_show_address(struct device *dev,
3329                                          struct device_attribute *attr,
3330                                          char *buf)
3331 {
3332         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3333
3334         return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
3335 }
3336 static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
3337
3338 static ssize_t nvme_ctrl_loss_tmo_show(struct device *dev,
3339                 struct device_attribute *attr, char *buf)
3340 {
3341         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3342         struct nvmf_ctrl_options *opts = ctrl->opts;
3343
3344         if (ctrl->opts->max_reconnects == -1)
3345                 return sysfs_emit(buf, "off\n");
3346         return sysfs_emit(buf, "%d\n",
3347                           opts->max_reconnects * opts->reconnect_delay);
3348 }
3349
3350 static ssize_t nvme_ctrl_loss_tmo_store(struct device *dev,
3351                 struct device_attribute *attr, const char *buf, size_t count)
3352 {
3353         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3354         struct nvmf_ctrl_options *opts = ctrl->opts;
3355         int ctrl_loss_tmo, err;
3356
3357         err = kstrtoint(buf, 10, &ctrl_loss_tmo);
3358         if (err)
3359                 return -EINVAL;
3360
3361         if (ctrl_loss_tmo < 0)
3362                 opts->max_reconnects = -1;
3363         else
3364                 opts->max_reconnects = DIV_ROUND_UP(ctrl_loss_tmo,
3365                                                 opts->reconnect_delay);
3366         return count;
3367 }
3368 static DEVICE_ATTR(ctrl_loss_tmo, S_IRUGO | S_IWUSR,
3369         nvme_ctrl_loss_tmo_show, nvme_ctrl_loss_tmo_store);
3370
3371 static ssize_t nvme_ctrl_reconnect_delay_show(struct device *dev,
3372                 struct device_attribute *attr, char *buf)
3373 {
3374         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3375
3376         if (ctrl->opts->reconnect_delay == -1)
3377                 return sysfs_emit(buf, "off\n");
3378         return sysfs_emit(buf, "%d\n", ctrl->opts->reconnect_delay);
3379 }
3380
3381 static ssize_t nvme_ctrl_reconnect_delay_store(struct device *dev,
3382                 struct device_attribute *attr, const char *buf, size_t count)
3383 {
3384         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3385         unsigned int v;
3386         int err;
3387
3388         err = kstrtou32(buf, 10, &v);
3389         if (err)
3390                 return err;
3391
3392         ctrl->opts->reconnect_delay = v;
3393         return count;
3394 }
3395 static DEVICE_ATTR(reconnect_delay, S_IRUGO | S_IWUSR,
3396         nvme_ctrl_reconnect_delay_show, nvme_ctrl_reconnect_delay_store);
3397
3398 static ssize_t nvme_ctrl_fast_io_fail_tmo_show(struct device *dev,
3399                 struct device_attribute *attr, char *buf)
3400 {
3401         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3402
3403         if (ctrl->opts->fast_io_fail_tmo == -1)
3404                 return sysfs_emit(buf, "off\n");
3405         return sysfs_emit(buf, "%d\n", ctrl->opts->fast_io_fail_tmo);
3406 }
3407
3408 static ssize_t nvme_ctrl_fast_io_fail_tmo_store(struct device *dev,
3409                 struct device_attribute *attr, const char *buf, size_t count)
3410 {
3411         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3412         struct nvmf_ctrl_options *opts = ctrl->opts;
3413         int fast_io_fail_tmo, err;
3414
3415         err = kstrtoint(buf, 10, &fast_io_fail_tmo);
3416         if (err)
3417                 return -EINVAL;
3418
3419         if (fast_io_fail_tmo < 0)
3420                 opts->fast_io_fail_tmo = -1;
3421         else
3422                 opts->fast_io_fail_tmo = fast_io_fail_tmo;
3423         return count;
3424 }
3425 static DEVICE_ATTR(fast_io_fail_tmo, S_IRUGO | S_IWUSR,
3426         nvme_ctrl_fast_io_fail_tmo_show, nvme_ctrl_fast_io_fail_tmo_store);
3427
3428 static struct attribute *nvme_dev_attrs[] = {
3429         &dev_attr_reset_controller.attr,
3430         &dev_attr_rescan_controller.attr,
3431         &dev_attr_model.attr,
3432         &dev_attr_serial.attr,
3433         &dev_attr_firmware_rev.attr,
3434         &dev_attr_cntlid.attr,
3435         &dev_attr_delete_controller.attr,
3436         &dev_attr_transport.attr,
3437         &dev_attr_subsysnqn.attr,
3438         &dev_attr_address.attr,
3439         &dev_attr_state.attr,
3440         &dev_attr_numa_node.attr,
3441         &dev_attr_queue_count.attr,
3442         &dev_attr_sqsize.attr,
3443         &dev_attr_hostnqn.attr,
3444         &dev_attr_hostid.attr,
3445         &dev_attr_ctrl_loss_tmo.attr,
3446         &dev_attr_reconnect_delay.attr,
3447         &dev_attr_fast_io_fail_tmo.attr,
3448         &dev_attr_kato.attr,
3449         NULL
3450 };
3451
3452 static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
3453                 struct attribute *a, int n)
3454 {
3455         struct device *dev = container_of(kobj, struct device, kobj);
3456         struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3457
3458         if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
3459                 return 0;
3460         if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
3461                 return 0;
3462         if (a == &dev_attr_hostnqn.attr && !ctrl->opts)
3463                 return 0;
3464         if (a == &dev_attr_hostid.attr && !ctrl->opts)
3465                 return 0;
3466         if (a == &dev_attr_ctrl_loss_tmo.attr && !ctrl->opts)
3467                 return 0;
3468         if (a == &dev_attr_reconnect_delay.attr && !ctrl->opts)
3469                 return 0;
3470         if (a == &dev_attr_fast_io_fail_tmo.attr && !ctrl->opts)
3471                 return 0;
3472
3473         return a->mode;
3474 }
3475
3476 static const struct attribute_group nvme_dev_attrs_group = {
3477         .attrs          = nvme_dev_attrs,
3478         .is_visible     = nvme_dev_attrs_are_visible,
3479 };
3480
3481 static const struct attribute_group *nvme_dev_attr_groups[] = {
3482         &nvme_dev_attrs_group,
3483         NULL,
3484 };
3485
3486 static struct nvme_ns_head *nvme_find_ns_head(struct nvme_subsystem *subsys,
3487                 unsigned nsid)
3488 {
3489         struct nvme_ns_head *h;
3490
3491         lockdep_assert_held(&subsys->lock);
3492
3493         list_for_each_entry(h, &subsys->nsheads, entry) {
3494                 if (h->ns_id == nsid && nvme_tryget_ns_head(h))
3495                         return h;
3496         }
3497
3498         return NULL;
3499 }
3500
3501 static int __nvme_check_ids(struct nvme_subsystem *subsys,
3502                 struct nvme_ns_head *new)
3503 {
3504         struct nvme_ns_head *h;
3505
3506         lockdep_assert_held(&subsys->lock);
3507
3508         list_for_each_entry(h, &subsys->nsheads, entry) {
3509                 if (nvme_ns_ids_valid(&new->ids) &&
3510                     nvme_ns_ids_equal(&new->ids, &h->ids))
3511                         return -EINVAL;
3512         }
3513
3514         return 0;
3515 }
3516
3517 void nvme_cdev_del(struct cdev *cdev, struct device *cdev_device)
3518 {
3519         cdev_device_del(cdev, cdev_device);
3520         ida_simple_remove(&nvme_ns_chr_minor_ida, MINOR(cdev_device->devt));
3521 }
3522
3523 int nvme_cdev_add(struct cdev *cdev, struct device *cdev_device,
3524                 const struct file_operations *fops, struct module *owner)
3525 {
3526         int minor, ret;
3527
3528         minor = ida_simple_get(&nvme_ns_chr_minor_ida, 0, 0, GFP_KERNEL);
3529         if (minor < 0)
3530                 return minor;
3531         cdev_device->devt = MKDEV(MAJOR(nvme_ns_chr_devt), minor);
3532         cdev_device->class = nvme_ns_chr_class;
3533         device_initialize(cdev_device);
3534         cdev_init(cdev, fops);
3535         cdev->owner = owner;
3536         ret = cdev_device_add(cdev, cdev_device);
3537         if (ret) {
3538                 put_device(cdev_device);
3539                 ida_simple_remove(&nvme_ns_chr_minor_ida, minor);
3540         }
3541         return ret;
3542 }
3543
3544 static int nvme_ns_chr_open(struct inode *inode, struct file *file)
3545 {
3546         return nvme_ns_open(container_of(inode->i_cdev, struct nvme_ns, cdev));
3547 }
3548
3549 static int nvme_ns_chr_release(struct inode *inode, struct file *file)
3550 {
3551         nvme_ns_release(container_of(inode->i_cdev, struct nvme_ns, cdev));
3552         return 0;
3553 }
3554
3555 static const struct file_operations nvme_ns_chr_fops = {
3556         .owner          = THIS_MODULE,
3557         .open           = nvme_ns_chr_open,
3558         .release        = nvme_ns_chr_release,
3559         .unlocked_ioctl = nvme_ns_chr_ioctl,
3560         .compat_ioctl   = compat_ptr_ioctl,
3561 };
3562
3563 static int nvme_add_ns_cdev(struct nvme_ns *ns)
3564 {
3565         int ret;
3566
3567         ns->cdev_device.parent = ns->ctrl->device;
3568         ret = dev_set_name(&ns->cdev_device, "ng%dn%d",
3569                            ns->ctrl->instance, ns->head->instance);
3570         if (ret)
3571                 return ret;
3572         ret = nvme_cdev_add(&ns->cdev, &ns->cdev_device, &nvme_ns_chr_fops,
3573                             ns->ctrl->ops->module);
3574         if (ret)
3575                 kfree_const(ns->cdev_device.kobj.name);
3576         return ret;
3577 }
3578
3579 static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl,
3580                 unsigned nsid, struct nvme_ns_ids *ids)
3581 {
3582         struct nvme_ns_head *head;
3583         size_t size = sizeof(*head);
3584         int ret = -ENOMEM;
3585
3586 #ifdef CONFIG_NVME_MULTIPATH
3587         size += num_possible_nodes() * sizeof(struct nvme_ns *);
3588 #endif
3589
3590         head = kzalloc(size, GFP_KERNEL);
3591         if (!head)
3592                 goto out;
3593         ret = ida_simple_get(&ctrl->subsys->ns_ida, 1, 0, GFP_KERNEL);
3594         if (ret < 0)
3595                 goto out_free_head;
3596         head->instance = ret;
3597         INIT_LIST_HEAD(&head->list);
3598         ret = init_srcu_struct(&head->srcu);
3599         if (ret)
3600                 goto out_ida_remove;
3601         head->subsys = ctrl->subsys;
3602         head->ns_id = nsid;
3603         head->ids = *ids;
3604         kref_init(&head->ref);
3605
3606         ret = __nvme_check_ids(ctrl->subsys, head);
3607         if (ret) {
3608                 dev_err(ctrl->device,
3609                         "duplicate IDs for nsid %d\n", nsid);
3610                 goto out_cleanup_srcu;
3611         }
3612
3613         if (head->ids.csi) {
3614                 ret = nvme_get_effects_log(ctrl, head->ids.csi, &head->effects);
3615                 if (ret)
3616                         goto out_cleanup_srcu;
3617         } else
3618                 head->effects = ctrl->effects;
3619
3620         ret = nvme_mpath_alloc_disk(ctrl, head);
3621         if (ret)
3622                 goto out_cleanup_srcu;
3623
3624         list_add_tail(&head->entry, &ctrl->subsys->nsheads);
3625
3626         kref_get(&ctrl->subsys->ref);
3627
3628         return head;
3629 out_cleanup_srcu:
3630         cleanup_srcu_struct(&head->srcu);
3631 out_ida_remove:
3632         ida_simple_remove(&ctrl->subsys->ns_ida, head->instance);
3633 out_free_head:
3634         kfree(head);
3635 out:
3636         if (ret > 0)
3637                 ret = blk_status_to_errno(nvme_error_status(ret));
3638         return ERR_PTR(ret);
3639 }
3640
3641 static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
3642                 struct nvme_ns_ids *ids, bool is_shared)
3643 {
3644         struct nvme_ctrl *ctrl = ns->ctrl;
3645         struct nvme_ns_head *head = NULL;
3646         int ret = 0;
3647
3648         mutex_lock(&ctrl->subsys->lock);
3649         head = nvme_find_ns_head(ctrl->subsys, nsid);
3650         if (!head) {
3651                 head = nvme_alloc_ns_head(ctrl, nsid, ids);
3652                 if (IS_ERR(head)) {
3653                         ret = PTR_ERR(head);
3654                         goto out_unlock;
3655                 }
3656                 head->shared = is_shared;
3657         } else {
3658                 ret = -EINVAL;
3659                 if (!is_shared || !head->shared) {
3660                         dev_err(ctrl->device,
3661                                 "Duplicate unshared namespace %d\n", nsid);
3662                         goto out_put_ns_head;
3663                 }
3664                 if (!nvme_ns_ids_equal(&head->ids, ids)) {
3665                         dev_err(ctrl->device,
3666                                 "IDs don't match for shared namespace %d\n",
3667                                         nsid);
3668                         goto out_put_ns_head;
3669                 }
3670         }
3671
3672         list_add_tail_rcu(&ns->siblings, &head->list);
3673         ns->head = head;
3674         mutex_unlock(&ctrl->subsys->lock);
3675         return 0;
3676
3677 out_put_ns_head:
3678         nvme_put_ns_head(head);
3679 out_unlock:
3680         mutex_unlock(&ctrl->subsys->lock);
3681         return ret;
3682 }
3683
3684 static int ns_cmp(void *priv, const struct list_head *a,
3685                 const struct list_head *b)
3686 {
3687         struct nvme_ns *nsa = container_of(a, struct nvme_ns, list);
3688         struct nvme_ns *nsb = container_of(b, struct nvme_ns, list);
3689
3690         return nsa->head->ns_id - nsb->head->ns_id;
3691 }
3692
3693 struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
3694 {
3695         struct nvme_ns *ns, *ret = NULL;
3696
3697         down_read(&ctrl->namespaces_rwsem);
3698         list_for_each_entry(ns, &ctrl->namespaces, list) {
3699                 if (ns->head->ns_id == nsid) {
3700                         if (!nvme_get_ns(ns))
3701                                 continue;
3702                         ret = ns;
3703                         break;
3704                 }
3705                 if (ns->head->ns_id > nsid)
3706                         break;
3707         }
3708         up_read(&ctrl->namespaces_rwsem);
3709         return ret;
3710 }
3711 EXPORT_SYMBOL_NS_GPL(nvme_find_get_ns, NVME_TARGET_PASSTHRU);
3712
3713 static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid,
3714                 struct nvme_ns_ids *ids)
3715 {
3716         struct nvme_ns *ns;
3717         struct gendisk *disk;
3718         struct nvme_id_ns *id;
3719         int node = ctrl->numa_node;
3720
3721         if (nvme_identify_ns(ctrl, nsid, ids, &id))
3722                 return;
3723
3724         ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
3725         if (!ns)
3726                 goto out_free_id;
3727
3728         disk = blk_mq_alloc_disk(ctrl->tagset, ns);
3729         if (IS_ERR(disk))
3730                 goto out_free_ns;
3731         disk->fops = &nvme_bdev_ops;
3732         disk->private_data = ns;
3733
3734         ns->disk = disk;
3735         ns->queue = disk->queue;
3736
3737         if (ctrl->opts && ctrl->opts->data_digest)
3738                 blk_queue_flag_set(QUEUE_FLAG_STABLE_WRITES, ns->queue);
3739
3740         blk_queue_flag_set(QUEUE_FLAG_NONROT, ns->queue);
3741         if (ctrl->ops->flags & NVME_F_PCI_P2PDMA)
3742                 blk_queue_flag_set(QUEUE_FLAG_PCI_P2PDMA, ns->queue);
3743
3744         ns->ctrl = ctrl;
3745         kref_init(&ns->kref);
3746
3747         if (nvme_init_ns_head(ns, nsid, ids, id->nmic & NVME_NS_NMIC_SHARED))
3748                 goto out_cleanup_disk;
3749
3750         /*
3751          * Without the multipath code enabled, multiple controller per
3752          * subsystems are visible as devices and thus we cannot use the
3753          * subsystem instance.
3754          */
3755         if (!nvme_mpath_set_disk_name(ns, disk->disk_name, &disk->flags))
3756                 sprintf(disk->disk_name, "nvme%dn%d", ctrl->instance,
3757                         ns->head->instance);
3758
3759         if (nvme_update_ns_info(ns, id))
3760                 goto out_unlink_ns;
3761
3762         down_write(&ctrl->namespaces_rwsem);
3763         list_add_tail(&ns->list, &ctrl->namespaces);
3764         up_write(&ctrl->namespaces_rwsem);
3765
3766         nvme_get_ctrl(ctrl);
3767
3768         device_add_disk(ctrl->device, ns->disk, nvme_ns_id_attr_groups);
3769         if (!nvme_ns_head_multipath(ns->head))
3770                 nvme_add_ns_cdev(ns);
3771
3772         nvme_mpath_add_disk(ns, id);
3773         nvme_fault_inject_init(&ns->fault_inject, ns->disk->disk_name);
3774         kfree(id);
3775
3776         return;
3777
3778  out_unlink_ns:
3779         mutex_lock(&ctrl->subsys->lock);
3780         list_del_rcu(&ns->siblings);
3781         if (list_empty(&ns->head->list))
3782                 list_del_init(&ns->head->entry);
3783         mutex_unlock(&ctrl->subsys->lock);
3784         nvme_put_ns_head(ns->head);
3785  out_cleanup_disk:
3786         blk_cleanup_disk(disk);
3787  out_free_ns:
3788         kfree(ns);
3789  out_free_id:
3790         kfree(id);
3791 }
3792
3793 static void nvme_ns_remove(struct nvme_ns *ns)
3794 {
3795         bool last_path = false;
3796
3797         if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
3798                 return;
3799
3800         clear_bit(NVME_NS_READY, &ns->flags);
3801         set_capacity(ns->disk, 0);
3802         nvme_fault_inject_fini(&ns->fault_inject);
3803
3804         mutex_lock(&ns->ctrl->subsys->lock);
3805         list_del_rcu(&ns->siblings);
3806         mutex_unlock(&ns->ctrl->subsys->lock);
3807
3808         synchronize_rcu(); /* guarantee not available in head->list */
3809         nvme_mpath_clear_current_path(ns);
3810         synchronize_srcu(&ns->head->srcu); /* wait for concurrent submissions */
3811
3812         if (!nvme_ns_head_multipath(ns->head))
3813                 nvme_cdev_del(&ns->cdev, &ns->cdev_device);
3814         del_gendisk(ns->disk);
3815         blk_cleanup_queue(ns->queue);
3816         if (blk_get_integrity(ns->disk))
3817                 blk_integrity_unregister(ns->disk);
3818
3819         down_write(&ns->ctrl->namespaces_rwsem);
3820         list_del_init(&ns->list);
3821         up_write(&ns->ctrl->namespaces_rwsem);
3822
3823         /* Synchronize with nvme_init_ns_head() */
3824         mutex_lock(&ns->head->subsys->lock);
3825         if (list_empty(&ns->head->list)) {
3826                 list_del_init(&ns->head->entry);
3827                 last_path = true;
3828         }
3829         mutex_unlock(&ns->head->subsys->lock);
3830         if (last_path)
3831                 nvme_mpath_shutdown_disk(ns->head);
3832         nvme_put_ns(ns);
3833 }
3834
3835 static void nvme_ns_remove_by_nsid(struct nvme_ctrl *ctrl, u32 nsid)
3836 {
3837         struct nvme_ns *ns = nvme_find_get_ns(ctrl, nsid);
3838
3839         if (ns) {
3840                 nvme_ns_remove(ns);
3841                 nvme_put_ns(ns);
3842         }
3843 }
3844
3845 static void nvme_validate_ns(struct nvme_ns *ns, struct nvme_ns_ids *ids)
3846 {
3847         struct nvme_id_ns *id;
3848         int ret = NVME_SC_INVALID_NS | NVME_SC_DNR;
3849
3850         if (test_bit(NVME_NS_DEAD, &ns->flags))
3851                 goto out;
3852
3853         ret = nvme_identify_ns(ns->ctrl, ns->head->ns_id, ids, &id);
3854         if (ret)
3855                 goto out;
3856
3857         ret = NVME_SC_INVALID_NS | NVME_SC_DNR;
3858         if (!nvme_ns_ids_equal(&ns->head->ids, ids)) {
3859                 dev_err(ns->ctrl->device,
3860                         "identifiers changed for nsid %d\n", ns->head->ns_id);
3861                 goto out_free_id;
3862         }
3863
3864         ret = nvme_update_ns_info(ns, id);
3865
3866 out_free_id:
3867         kfree(id);
3868 out:
3869         /*
3870          * Only remove the namespace if we got a fatal error back from the
3871          * device, otherwise ignore the error and just move on.
3872          *
3873          * TODO: we should probably schedule a delayed retry here.
3874          */
3875         if (ret > 0 && (ret & NVME_SC_DNR))
3876                 nvme_ns_remove(ns);
3877 }
3878
3879 static void nvme_validate_or_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid)
3880 {
3881         struct nvme_ns_ids ids = { };
3882         struct nvme_ns *ns;
3883
3884         if (nvme_identify_ns_descs(ctrl, nsid, &ids))
3885                 return;
3886
3887         ns = nvme_find_get_ns(ctrl, nsid);
3888         if (ns) {
3889                 nvme_validate_ns(ns, &ids);
3890                 nvme_put_ns(ns);
3891                 return;
3892         }
3893
3894         switch (ids.csi) {
3895         case NVME_CSI_NVM:
3896                 nvme_alloc_ns(ctrl, nsid, &ids);
3897                 break;
3898         case NVME_CSI_ZNS:
3899                 if (!IS_ENABLED(CONFIG_BLK_DEV_ZONED)) {
3900                         dev_warn(ctrl->device,
3901                                 "nsid %u not supported without CONFIG_BLK_DEV_ZONED\n",
3902                                 nsid);
3903                         break;
3904                 }
3905                 if (!nvme_multi_css(ctrl)) {
3906                         dev_warn(ctrl->device,
3907                                 "command set not reported for nsid: %d\n",
3908                                 nsid);
3909                         break;
3910                 }
3911                 nvme_alloc_ns(ctrl, nsid, &ids);
3912                 break;
3913         default:
3914                 dev_warn(ctrl->device, "unknown csi %u for nsid %u\n",
3915                         ids.csi, nsid);
3916                 break;
3917         }
3918 }
3919
3920 static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
3921                                         unsigned nsid)
3922 {
3923         struct nvme_ns *ns, *next;
3924         LIST_HEAD(rm_list);
3925
3926         down_write(&ctrl->namespaces_rwsem);
3927         list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
3928                 if (ns->head->ns_id > nsid || test_bit(NVME_NS_DEAD, &ns->flags))
3929                         list_move_tail(&ns->list, &rm_list);
3930         }
3931         up_write(&ctrl->namespaces_rwsem);
3932
3933         list_for_each_entry_safe(ns, next, &rm_list, list)
3934                 nvme_ns_remove(ns);
3935
3936 }
3937
3938 static int nvme_scan_ns_list(struct nvme_ctrl *ctrl)
3939 {
3940         const int nr_entries = NVME_IDENTIFY_DATA_SIZE / sizeof(__le32);
3941         __le32 *ns_list;
3942         u32 prev = 0;
3943         int ret = 0, i;
3944
3945         if (nvme_ctrl_limited_cns(ctrl))
3946                 return -EOPNOTSUPP;
3947
3948         ns_list = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
3949         if (!ns_list)
3950                 return -ENOMEM;
3951
3952         for (;;) {
3953                 struct nvme_command cmd = {
3954                         .identify.opcode        = nvme_admin_identify,
3955                         .identify.cns           = NVME_ID_CNS_NS_ACTIVE_LIST,
3956                         .identify.nsid          = cpu_to_le32(prev),
3957                 };
3958
3959                 ret = nvme_submit_sync_cmd(ctrl->admin_q, &cmd, ns_list,
3960                                             NVME_IDENTIFY_DATA_SIZE);
3961                 if (ret) {
3962                         dev_warn(ctrl->device,
3963                                 "Identify NS List failed (status=0x%x)\n", ret);
3964                         goto free;
3965                 }
3966
3967                 for (i = 0; i < nr_entries; i++) {
3968                         u32 nsid = le32_to_cpu(ns_list[i]);
3969
3970                         if (!nsid)      /* end of the list? */
3971                                 goto out;
3972                         nvme_validate_or_alloc_ns(ctrl, nsid);
3973                         while (++prev < nsid)
3974                                 nvme_ns_remove_by_nsid(ctrl, prev);
3975                 }
3976         }
3977  out:
3978         nvme_remove_invalid_namespaces(ctrl, prev);
3979  free:
3980         kfree(ns_list);
3981         return ret;
3982 }
3983
3984 static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl)
3985 {
3986         struct nvme_id_ctrl *id;
3987         u32 nn, i;
3988
3989         if (nvme_identify_ctrl(ctrl, &id))
3990                 return;
3991         nn = le32_to_cpu(id->nn);
3992         kfree(id);
3993
3994         for (i = 1; i <= nn; i++)
3995                 nvme_validate_or_alloc_ns(ctrl, i);
3996
3997         nvme_remove_invalid_namespaces(ctrl, nn);
3998 }
3999
4000 static void nvme_clear_changed_ns_log(struct nvme_ctrl *ctrl)
4001 {
4002         size_t log_size = NVME_MAX_CHANGED_NAMESPACES * sizeof(__le32);
4003         __le32 *log;
4004         int error;
4005
4006         log = kzalloc(log_size, GFP_KERNEL);
4007         if (!log)
4008                 return;
4009
4010         /*
4011          * We need to read the log to clear the AEN, but we don't want to rely
4012          * on it for the changed namespace information as userspace could have
4013          * raced with us in reading the log page, which could cause us to miss
4014          * updates.
4015          */
4016         error = nvme_get_log(ctrl, NVME_NSID_ALL, NVME_LOG_CHANGED_NS, 0,
4017                         NVME_CSI_NVM, log, log_size, 0);
4018         if (error)
4019                 dev_warn(ctrl->device,
4020                         "reading changed ns log failed: %d\n", error);
4021
4022         kfree(log);
4023 }
4024
4025 static void nvme_scan_work(struct work_struct *work)
4026 {
4027         struct nvme_ctrl *ctrl =
4028                 container_of(work, struct nvme_ctrl, scan_work);
4029
4030         /* No tagset on a live ctrl means IO queues could not created */
4031         if (ctrl->state != NVME_CTRL_LIVE || !ctrl->tagset)
4032                 return;
4033
4034         if (test_and_clear_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events)) {
4035                 dev_info(ctrl->device, "rescanning namespaces.\n");
4036                 nvme_clear_changed_ns_log(ctrl);
4037         }
4038
4039         mutex_lock(&ctrl->scan_lock);
4040         if (nvme_scan_ns_list(ctrl) != 0)
4041                 nvme_scan_ns_sequential(ctrl);
4042         mutex_unlock(&ctrl->scan_lock);
4043
4044         down_write(&ctrl->namespaces_rwsem);
4045         list_sort(NULL, &ctrl->namespaces, ns_cmp);
4046         up_write(&ctrl->namespaces_rwsem);
4047 }
4048
4049 /*
4050  * This function iterates the namespace list unlocked to allow recovery from
4051  * controller failure. It is up to the caller to ensure the namespace list is
4052  * not modified by scan work while this function is executing.
4053  */
4054 void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
4055 {
4056         struct nvme_ns *ns, *next;
4057         LIST_HEAD(ns_list);
4058
4059         /*
4060          * make sure to requeue I/O to all namespaces as these
4061          * might result from the scan itself and must complete
4062          * for the scan_work to make progress
4063          */
4064         nvme_mpath_clear_ctrl_paths(ctrl);
4065
4066         /* prevent racing with ns scanning */
4067         flush_work(&ctrl->scan_work);
4068
4069         /*
4070          * The dead states indicates the controller was not gracefully
4071          * disconnected. In that case, we won't be able to flush any data while
4072          * removing the namespaces' disks; fail all the queues now to avoid
4073          * potentially having to clean up the failed sync later.
4074          */
4075         if (ctrl->state == NVME_CTRL_DEAD)
4076                 nvme_kill_queues(ctrl);
4077
4078         /* this is a no-op when called from the controller reset handler */
4079         nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING_NOIO);
4080
4081         down_write(&ctrl->namespaces_rwsem);
4082         list_splice_init(&ctrl->namespaces, &ns_list);
4083         up_write(&ctrl->namespaces_rwsem);
4084
4085         list_for_each_entry_safe(ns, next, &ns_list, list)
4086                 nvme_ns_remove(ns);
4087 }
4088 EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
4089
4090 static int nvme_class_uevent(struct device *dev, struct kobj_uevent_env *env)
4091 {
4092         struct nvme_ctrl *ctrl =
4093                 container_of(dev, struct nvme_ctrl, ctrl_device);
4094         struct nvmf_ctrl_options *opts = ctrl->opts;
4095         int ret;
4096
4097         ret = add_uevent_var(env, "NVME_TRTYPE=%s", ctrl->ops->name);
4098         if (ret)
4099                 return ret;
4100
4101         if (opts) {
4102                 ret = add_uevent_var(env, "NVME_TRADDR=%s", opts->traddr);
4103                 if (ret)
4104                         return ret;
4105
4106                 ret = add_uevent_var(env, "NVME_TRSVCID=%s",
4107                                 opts->trsvcid ?: "none");
4108                 if (ret)
4109                         return ret;
4110
4111                 ret = add_uevent_var(env, "NVME_HOST_TRADDR=%s",
4112                                 opts->host_traddr ?: "none");
4113                 if (ret)
4114                         return ret;
4115
4116                 ret = add_uevent_var(env, "NVME_HOST_IFACE=%s",
4117                                 opts->host_iface ?: "none");
4118         }
4119         return ret;
4120 }
4121
4122 static void nvme_aen_uevent(struct nvme_ctrl *ctrl)
4123 {
4124         char *envp[2] = { NULL, NULL };
4125         u32 aen_result = ctrl->aen_result;
4126
4127         ctrl->aen_result = 0;
4128         if (!aen_result)
4129                 return;
4130
4131         envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result);
4132         if (!envp[0])
4133                 return;
4134         kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
4135         kfree(envp[0]);
4136 }
4137
4138 static void nvme_async_event_work(struct work_struct *work)
4139 {
4140         struct nvme_ctrl *ctrl =
4141                 container_of(work, struct nvme_ctrl, async_event_work);
4142
4143         nvme_aen_uevent(ctrl);
4144         ctrl->ops->submit_async_event(ctrl);
4145 }
4146
4147 static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
4148 {
4149
4150         u32 csts;
4151
4152         if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
4153                 return false;
4154
4155         if (csts == ~0)
4156                 return false;
4157
4158         return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
4159 }
4160
4161 static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
4162 {
4163         struct nvme_fw_slot_info_log *log;
4164
4165         log = kmalloc(sizeof(*log), GFP_KERNEL);
4166         if (!log)
4167                 return;
4168
4169         if (nvme_get_log(ctrl, NVME_NSID_ALL, NVME_LOG_FW_SLOT, 0, NVME_CSI_NVM,
4170                         log, sizeof(*log), 0))
4171                 dev_warn(ctrl->device, "Get FW SLOT INFO log error\n");
4172         kfree(log);
4173 }
4174
4175 static void nvme_fw_act_work(struct work_struct *work)
4176 {
4177         struct nvme_ctrl *ctrl = container_of(work,
4178                                 struct nvme_ctrl, fw_act_work);
4179         unsigned long fw_act_timeout;
4180
4181         if (ctrl->mtfa)
4182                 fw_act_timeout = jiffies +
4183                                 msecs_to_jiffies(ctrl->mtfa * 100);
4184         else
4185                 fw_act_timeout = jiffies +
4186                                 msecs_to_jiffies(admin_timeout * 1000);
4187
4188         nvme_stop_queues(ctrl);
4189         while (nvme_ctrl_pp_status(ctrl)) {
4190                 if (time_after(jiffies, fw_act_timeout)) {
4191                         dev_warn(ctrl->device,
4192                                 "Fw activation timeout, reset controller\n");
4193                         nvme_try_sched_reset(ctrl);
4194                         return;
4195                 }
4196                 msleep(100);
4197         }
4198
4199         if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_LIVE))
4200                 return;
4201
4202         nvme_start_queues(ctrl);
4203         /* read FW slot information to clear the AER */
4204         nvme_get_fw_slot_info(ctrl);
4205 }
4206
4207 static void nvme_handle_aen_notice(struct nvme_ctrl *ctrl, u32 result)
4208 {
4209         u32 aer_notice_type = (result & 0xff00) >> 8;
4210
4211         trace_nvme_async_event(ctrl, aer_notice_type);
4212
4213         switch (aer_notice_type) {
4214         case NVME_AER_NOTICE_NS_CHANGED:
4215                 set_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events);
4216                 nvme_queue_scan(ctrl);
4217                 break;
4218         case NVME_AER_NOTICE_FW_ACT_STARTING:
4219                 /*
4220                  * We are (ab)using the RESETTING state to prevent subsequent
4221                  * recovery actions from interfering with the controller's
4222                  * firmware activation.
4223                  */
4224                 if (nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
4225                         queue_work(nvme_wq, &ctrl->fw_act_work);
4226                 break;
4227 #ifdef CONFIG_NVME_MULTIPATH
4228         case NVME_AER_NOTICE_ANA:
4229                 if (!ctrl->ana_log_buf)
4230                         break;
4231                 queue_work(nvme_wq, &ctrl->ana_work);
4232                 break;
4233 #endif
4234         case NVME_AER_NOTICE_DISC_CHANGED:
4235                 ctrl->aen_result = result;
4236                 break;
4237         default:
4238                 dev_warn(ctrl->device, "async event result %08x\n", result);
4239         }
4240 }
4241
4242 void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
4243                 volatile union nvme_result *res)
4244 {
4245         u32 result = le32_to_cpu(res->u32);
4246         u32 aer_type = result & 0x07;
4247
4248         if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS)
4249                 return;
4250
4251         switch (aer_type) {
4252         case NVME_AER_NOTICE:
4253                 nvme_handle_aen_notice(ctrl, result);
4254                 break;
4255         case NVME_AER_ERROR:
4256         case NVME_AER_SMART:
4257         case NVME_AER_CSS:
4258         case NVME_AER_VS:
4259                 trace_nvme_async_event(ctrl, aer_type);
4260                 ctrl->aen_result = result;
4261                 break;
4262         default:
4263                 break;
4264         }
4265         queue_work(nvme_wq, &ctrl->async_event_work);
4266 }
4267 EXPORT_SYMBOL_GPL(nvme_complete_async_event);
4268
4269 void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
4270 {
4271         nvme_mpath_stop(ctrl);
4272         nvme_stop_keep_alive(ctrl);
4273         nvme_stop_failfast_work(ctrl);
4274         flush_work(&ctrl->async_event_work);
4275         cancel_work_sync(&ctrl->fw_act_work);
4276 }
4277 EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
4278
4279 void nvme_start_ctrl(struct nvme_ctrl *ctrl)
4280 {
4281         nvme_start_keep_alive(ctrl);
4282
4283         nvme_enable_aen(ctrl);
4284
4285         if (ctrl->queue_count > 1) {
4286                 nvme_queue_scan(ctrl);
4287                 nvme_start_queues(ctrl);
4288         }
4289 }
4290 EXPORT_SYMBOL_GPL(nvme_start_ctrl);
4291
4292 void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
4293 {
4294         nvme_hwmon_exit(ctrl);
4295         nvme_fault_inject_fini(&ctrl->fault_inject);
4296         dev_pm_qos_hide_latency_tolerance(ctrl->device);
4297         cdev_device_del(&ctrl->cdev, ctrl->device);
4298         nvme_put_ctrl(ctrl);
4299 }
4300 EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
4301
4302 static void nvme_free_cels(struct nvme_ctrl *ctrl)
4303 {
4304         struct nvme_effects_log *cel;
4305         unsigned long i;
4306
4307         xa_for_each(&ctrl->cels, i, cel) {
4308                 xa_erase(&ctrl->cels, i);
4309                 kfree(cel);
4310         }
4311
4312         xa_destroy(&ctrl->cels);
4313 }
4314
4315 static void nvme_free_ctrl(struct device *dev)
4316 {
4317         struct nvme_ctrl *ctrl =
4318                 container_of(dev, struct nvme_ctrl, ctrl_device);
4319         struct nvme_subsystem *subsys = ctrl->subsys;
4320
4321         if (!subsys || ctrl->instance != subsys->instance)
4322                 ida_simple_remove(&nvme_instance_ida, ctrl->instance);
4323
4324         nvme_free_cels(ctrl);
4325         nvme_mpath_uninit(ctrl);
4326         __free_page(ctrl->discard_page);
4327
4328         if (subsys) {
4329                 mutex_lock(&nvme_subsystems_lock);
4330                 list_del(&ctrl->subsys_entry);
4331                 sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device));
4332                 mutex_unlock(&nvme_subsystems_lock);
4333         }
4334
4335         ctrl->ops->free_ctrl(ctrl);
4336
4337         if (subsys)
4338                 nvme_put_subsystem(subsys);
4339 }
4340
4341 /*
4342  * Initialize a NVMe controller structures.  This needs to be called during
4343  * earliest initialization so that we have the initialized structured around
4344  * during probing.
4345  */
4346 int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
4347                 const struct nvme_ctrl_ops *ops, unsigned long quirks)
4348 {
4349         int ret;
4350
4351         ctrl->state = NVME_CTRL_NEW;
4352         clear_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
4353         spin_lock_init(&ctrl->lock);
4354         mutex_init(&ctrl->scan_lock);
4355         INIT_LIST_HEAD(&ctrl->namespaces);
4356         xa_init(&ctrl->cels);
4357         init_rwsem(&ctrl->namespaces_rwsem);
4358         ctrl->dev = dev;
4359         ctrl->ops = ops;
4360         ctrl->quirks = quirks;
4361         ctrl->numa_node = NUMA_NO_NODE;
4362         INIT_WORK(&ctrl->scan_work, nvme_scan_work);
4363         INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
4364         INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
4365         INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
4366         init_waitqueue_head(&ctrl->state_wq);
4367
4368         INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
4369         INIT_DELAYED_WORK(&ctrl->failfast_work, nvme_failfast_work);
4370         memset(&ctrl->ka_cmd, 0, sizeof(ctrl->ka_cmd));
4371         ctrl->ka_cmd.common.opcode = nvme_admin_keep_alive;
4372
4373         BUILD_BUG_ON(NVME_DSM_MAX_RANGES * sizeof(struct nvme_dsm_range) >
4374                         PAGE_SIZE);
4375         ctrl->discard_page = alloc_page(GFP_KERNEL);
4376         if (!ctrl->discard_page) {
4377                 ret = -ENOMEM;
4378                 goto out;
4379         }
4380
4381         ret = ida_simple_get(&nvme_instance_ida, 0, 0, GFP_KERNEL);
4382         if (ret < 0)
4383                 goto out;
4384         ctrl->instance = ret;
4385
4386         device_initialize(&ctrl->ctrl_device);
4387         ctrl->device = &ctrl->ctrl_device;
4388         ctrl->device->devt = MKDEV(MAJOR(nvme_ctrl_base_chr_devt),
4389                         ctrl->instance);
4390         ctrl->device->class = nvme_class;
4391         ctrl->device->parent = ctrl->dev;
4392         ctrl->device->groups = nvme_dev_attr_groups;
4393         ctrl->device->release = nvme_free_ctrl;
4394         dev_set_drvdata(ctrl->device, ctrl);
4395         ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
4396         if (ret)
4397                 goto out_release_instance;
4398
4399         nvme_get_ctrl(ctrl);
4400         cdev_init(&ctrl->cdev, &nvme_dev_fops);
4401         ctrl->cdev.owner = ops->module;
4402         ret = cdev_device_add(&ctrl->cdev, ctrl->device);
4403         if (ret)
4404                 goto out_free_name;
4405
4406         /*
4407          * Initialize latency tolerance controls.  The sysfs files won't
4408          * be visible to userspace unless the device actually supports APST.
4409          */
4410         ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
4411         dev_pm_qos_update_user_latency_tolerance(ctrl->device,
4412                 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
4413
4414         nvme_fault_inject_init(&ctrl->fault_inject, dev_name(ctrl->device));
4415         nvme_mpath_init_ctrl(ctrl);
4416
4417         return 0;
4418 out_free_name:
4419         nvme_put_ctrl(ctrl);
4420         kfree_const(ctrl->device->kobj.name);
4421 out_release_instance:
4422         ida_simple_remove(&nvme_instance_ida, ctrl->instance);
4423 out:
4424         if (ctrl->discard_page)
4425                 __free_page(ctrl->discard_page);
4426         return ret;
4427 }
4428 EXPORT_SYMBOL_GPL(nvme_init_ctrl);
4429
4430 /**
4431  * nvme_kill_queues(): Ends all namespace queues
4432  * @ctrl: the dead controller that needs to end
4433  *
4434  * Call this function when the driver determines it is unable to get the
4435  * controller in a state capable of servicing IO.
4436  */
4437 void nvme_kill_queues(struct nvme_ctrl *ctrl)
4438 {
4439         struct nvme_ns *ns;
4440
4441         down_read(&ctrl->namespaces_rwsem);
4442
4443         /* Forcibly unquiesce queues to avoid blocking dispatch */
4444         if (ctrl->admin_q && !blk_queue_dying(ctrl->admin_q))
4445                 blk_mq_unquiesce_queue(ctrl->admin_q);
4446
4447         list_for_each_entry(ns, &ctrl->namespaces, list)
4448                 nvme_set_queue_dying(ns);
4449
4450         up_read(&ctrl->namespaces_rwsem);
4451 }
4452 EXPORT_SYMBOL_GPL(nvme_kill_queues);
4453
4454 void nvme_unfreeze(struct nvme_ctrl *ctrl)
4455 {
4456         struct nvme_ns *ns;
4457
4458         down_read(&ctrl->namespaces_rwsem);
4459         list_for_each_entry(ns, &ctrl->namespaces, list)
4460                 blk_mq_unfreeze_queue(ns->queue);
4461         up_read(&ctrl->namespaces_rwsem);
4462 }
4463 EXPORT_SYMBOL_GPL(nvme_unfreeze);
4464
4465 int nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
4466 {
4467         struct nvme_ns *ns;
4468
4469         down_read(&ctrl->namespaces_rwsem);
4470         list_for_each_entry(ns, &ctrl->namespaces, list) {
4471                 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
4472                 if (timeout <= 0)
4473                         break;
4474         }
4475         up_read(&ctrl->namespaces_rwsem);
4476         return timeout;
4477 }
4478 EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
4479
4480 void nvme_wait_freeze(struct nvme_ctrl *ctrl)
4481 {
4482         struct nvme_ns *ns;
4483
4484         down_read(&ctrl->namespaces_rwsem);
4485         list_for_each_entry(ns, &ctrl->namespaces, list)
4486                 blk_mq_freeze_queue_wait(ns->queue);
4487         up_read(&ctrl->namespaces_rwsem);
4488 }
4489 EXPORT_SYMBOL_GPL(nvme_wait_freeze);
4490
4491 void nvme_start_freeze(struct nvme_ctrl *ctrl)
4492 {
4493         struct nvme_ns *ns;
4494
4495         down_read(&ctrl->namespaces_rwsem);
4496         list_for_each_entry(ns, &ctrl->namespaces, list)
4497                 blk_freeze_queue_start(ns->queue);
4498         up_read(&ctrl->namespaces_rwsem);
4499 }
4500 EXPORT_SYMBOL_GPL(nvme_start_freeze);
4501
4502 void nvme_stop_queues(struct nvme_ctrl *ctrl)
4503 {
4504         struct nvme_ns *ns;
4505
4506         down_read(&ctrl->namespaces_rwsem);
4507         list_for_each_entry(ns, &ctrl->namespaces, list)
4508                 blk_mq_quiesce_queue(ns->queue);
4509         up_read(&ctrl->namespaces_rwsem);
4510 }
4511 EXPORT_SYMBOL_GPL(nvme_stop_queues);
4512
4513 void nvme_start_queues(struct nvme_ctrl *ctrl)
4514 {
4515         struct nvme_ns *ns;
4516
4517         down_read(&ctrl->namespaces_rwsem);
4518         list_for_each_entry(ns, &ctrl->namespaces, list)
4519                 blk_mq_unquiesce_queue(ns->queue);
4520         up_read(&ctrl->namespaces_rwsem);
4521 }
4522 EXPORT_SYMBOL_GPL(nvme_start_queues);
4523
4524 void nvme_sync_io_queues(struct nvme_ctrl *ctrl)
4525 {
4526         struct nvme_ns *ns;
4527
4528         down_read(&ctrl->namespaces_rwsem);
4529         list_for_each_entry(ns, &ctrl->namespaces, list)
4530                 blk_sync_queue(ns->queue);
4531         up_read(&ctrl->namespaces_rwsem);
4532 }
4533 EXPORT_SYMBOL_GPL(nvme_sync_io_queues);
4534
4535 void nvme_sync_queues(struct nvme_ctrl *ctrl)
4536 {
4537         nvme_sync_io_queues(ctrl);
4538         if (ctrl->admin_q)
4539                 blk_sync_queue(ctrl->admin_q);
4540 }
4541 EXPORT_SYMBOL_GPL(nvme_sync_queues);
4542
4543 struct nvme_ctrl *nvme_ctrl_from_file(struct file *file)
4544 {
4545         if (file->f_op != &nvme_dev_fops)
4546                 return NULL;
4547         return file->private_data;
4548 }
4549 EXPORT_SYMBOL_NS_GPL(nvme_ctrl_from_file, NVME_TARGET_PASSTHRU);
4550
4551 /*
4552  * Check we didn't inadvertently grow the command structure sizes:
4553  */
4554 static inline void _nvme_check_size(void)
4555 {
4556         BUILD_BUG_ON(sizeof(struct nvme_common_command) != 64);
4557         BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
4558         BUILD_BUG_ON(sizeof(struct nvme_identify) != 64);
4559         BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
4560         BUILD_BUG_ON(sizeof(struct nvme_download_firmware) != 64);
4561         BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
4562         BUILD_BUG_ON(sizeof(struct nvme_dsm_cmd) != 64);
4563         BUILD_BUG_ON(sizeof(struct nvme_write_zeroes_cmd) != 64);
4564         BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
4565         BUILD_BUG_ON(sizeof(struct nvme_get_log_page_command) != 64);
4566         BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
4567         BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != NVME_IDENTIFY_DATA_SIZE);
4568         BUILD_BUG_ON(sizeof(struct nvme_id_ns) != NVME_IDENTIFY_DATA_SIZE);
4569         BUILD_BUG_ON(sizeof(struct nvme_id_ns_zns) != NVME_IDENTIFY_DATA_SIZE);
4570         BUILD_BUG_ON(sizeof(struct nvme_id_ctrl_zns) != NVME_IDENTIFY_DATA_SIZE);
4571         BUILD_BUG_ON(sizeof(struct nvme_id_ctrl_nvm) != NVME_IDENTIFY_DATA_SIZE);
4572         BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
4573         BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
4574         BUILD_BUG_ON(sizeof(struct nvme_dbbuf) != 64);
4575         BUILD_BUG_ON(sizeof(struct nvme_directive_cmd) != 64);
4576 }
4577
4578
4579 static int __init nvme_core_init(void)
4580 {
4581         int result = -ENOMEM;
4582
4583         _nvme_check_size();
4584
4585         nvme_wq = alloc_workqueue("nvme-wq",
4586                         WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
4587         if (!nvme_wq)
4588                 goto out;
4589
4590         nvme_reset_wq = alloc_workqueue("nvme-reset-wq",
4591                         WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
4592         if (!nvme_reset_wq)
4593                 goto destroy_wq;
4594
4595         nvme_delete_wq = alloc_workqueue("nvme-delete-wq",
4596                         WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
4597         if (!nvme_delete_wq)
4598                 goto destroy_reset_wq;
4599
4600         result = alloc_chrdev_region(&nvme_ctrl_base_chr_devt, 0,
4601                         NVME_MINORS, "nvme");
4602         if (result < 0)
4603                 goto destroy_delete_wq;
4604
4605         nvme_class = class_create(THIS_MODULE, "nvme");
4606         if (IS_ERR(nvme_class)) {
4607                 result = PTR_ERR(nvme_class);
4608                 goto unregister_chrdev;
4609         }
4610         nvme_class->dev_uevent = nvme_class_uevent;
4611
4612         nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem");
4613         if (IS_ERR(nvme_subsys_class)) {
4614                 result = PTR_ERR(nvme_subsys_class);
4615                 goto destroy_class;
4616         }
4617
4618         result = alloc_chrdev_region(&nvme_ns_chr_devt, 0, NVME_MINORS,
4619                                      "nvme-generic");
4620         if (result < 0)
4621                 goto destroy_subsys_class;
4622
4623         nvme_ns_chr_class = class_create(THIS_MODULE, "nvme-generic");
4624         if (IS_ERR(nvme_ns_chr_class)) {
4625                 result = PTR_ERR(nvme_ns_chr_class);
4626                 goto unregister_generic_ns;
4627         }
4628
4629         return 0;
4630
4631 unregister_generic_ns:
4632         unregister_chrdev_region(nvme_ns_chr_devt, NVME_MINORS);
4633 destroy_subsys_class:
4634         class_destroy(nvme_subsys_class);
4635 destroy_class:
4636         class_destroy(nvme_class);
4637 unregister_chrdev:
4638         unregister_chrdev_region(nvme_ctrl_base_chr_devt, NVME_MINORS);
4639 destroy_delete_wq:
4640         destroy_workqueue(nvme_delete_wq);
4641 destroy_reset_wq:
4642         destroy_workqueue(nvme_reset_wq);
4643 destroy_wq:
4644         destroy_workqueue(nvme_wq);
4645 out:
4646         return result;
4647 }
4648
4649 static void __exit nvme_core_exit(void)
4650 {
4651         class_destroy(nvme_ns_chr_class);
4652         class_destroy(nvme_subsys_class);
4653         class_destroy(nvme_class);
4654         unregister_chrdev_region(nvme_ns_chr_devt, NVME_MINORS);
4655         unregister_chrdev_region(nvme_ctrl_base_chr_devt, NVME_MINORS);
4656         destroy_workqueue(nvme_delete_wq);
4657         destroy_workqueue(nvme_reset_wq);
4658         destroy_workqueue(nvme_wq);
4659         ida_destroy(&nvme_ns_chr_minor_ida);
4660         ida_destroy(&nvme_instance_ida);
4661 }
4662
4663 MODULE_LICENSE("GPL");
4664 MODULE_VERSION("1.0");
4665 module_init(nvme_core_init);
4666 module_exit(nvme_core_exit);