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