Merge tag 'soc-dt-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-block.git] / drivers / nvme / host / core.c
CommitLineData
bc50ad75 1// SPDX-License-Identifier: GPL-2.0
21d34711
CH
2/*
3 * NVM Express device driver
4 * Copyright (c) 2011-2014, Intel Corporation.
21d34711
CH
5 */
6
7#include <linux/blkdev.h>
8#include <linux/blk-mq.h>
fe45e630 9#include <linux/blk-integrity.h>
c95b708d 10#include <linux/compat.h>
5fd4ce1b 11#include <linux/delay.h>
21d34711 12#include <linux/errno.h>
1673f1f0 13#include <linux/hdreg.h>
21d34711 14#include <linux/kernel.h>
5bae7f73 15#include <linux/module.h>
958f2a0f 16#include <linux/backing-dev.h>
21d34711
CH
17#include <linux/slab.h>
18#include <linux/types.h>
1673f1f0
CH
19#include <linux/pr.h>
20#include <linux/ptrace.h>
21#include <linux/nvme_ioctl.h>
c5552fde 22#include <linux/pm_qos.h>
1673f1f0 23#include <asm/unaligned.h>
21d34711
CH
24
25#include "nvme.h"
038bd4cb 26#include "fabrics.h"
f50fff73 27#include <linux/nvme-auth.h>
21d34711 28
35fe0d12
HR
29#define CREATE_TRACE_POINTS
30#include "trace.h"
31
f3ca80fc
CH
32#define NVME_MINORS (1U << MINORBITS)
33
1a893c2b
CH
34struct nvme_ns_info {
35 struct nvme_ns_ids ids;
36 u32 nsid;
37 __le32 anagrpid;
38 bool is_shared;
1e4ea66a 39 bool is_readonly;
1a893c2b 40 bool is_ready;
0dd6fff2 41 bool is_removed;
1a893c2b
CH
42};
43
8ae4e447
MO
44unsigned int admin_timeout = 60;
45module_param(admin_timeout, uint, 0644);
ba0ba7d3 46MODULE_PARM_DESC(admin_timeout, "timeout in seconds for admin commands");
576d55d6 47EXPORT_SYMBOL_GPL(admin_timeout);
ba0ba7d3 48
8ae4e447
MO
49unsigned int nvme_io_timeout = 30;
50module_param_named(io_timeout, nvme_io_timeout, uint, 0644);
ba0ba7d3 51MODULE_PARM_DESC(io_timeout, "timeout in seconds for I/O");
576d55d6 52EXPORT_SYMBOL_GPL(nvme_io_timeout);
ba0ba7d3 53
b3b1b0b0 54static unsigned char shutdown_timeout = 5;
ba0ba7d3
ML
55module_param(shutdown_timeout, byte, 0644);
56MODULE_PARM_DESC(shutdown_timeout, "timeout in seconds for controller shutdown");
57
44e44b29
CH
58static u8 nvme_max_retries = 5;
59module_param_named(max_retries, nvme_max_retries, byte, 0644);
f80ec966 60MODULE_PARM_DESC(max_retries, "max number of retries a command may have");
5bae7f73 61
9947d6a0 62static unsigned long default_ps_max_latency_us = 100000;
c5552fde
AL
63module_param(default_ps_max_latency_us, ulong, 0644);
64MODULE_PARM_DESC(default_ps_max_latency_us,
65 "max power saving latency for new devices; use PM QOS to change per device");
66
c35e30b4
AL
67static bool force_apst;
68module_param(force_apst, bool, 0644);
69MODULE_PARM_DESC(force_apst, "allow APST for newly enumerated devices even if quirked off");
70
ebd8a93a
AB
71static unsigned long apst_primary_timeout_ms = 100;
72module_param(apst_primary_timeout_ms, ulong, 0644);
73MODULE_PARM_DESC(apst_primary_timeout_ms,
74 "primary APST timeout in ms");
75
76static unsigned long apst_secondary_timeout_ms = 2000;
77module_param(apst_secondary_timeout_ms, ulong, 0644);
78MODULE_PARM_DESC(apst_secondary_timeout_ms,
79 "secondary APST timeout in ms");
80
81static unsigned long apst_primary_latency_tol_us = 15000;
82module_param(apst_primary_latency_tol_us, ulong, 0644);
83MODULE_PARM_DESC(apst_primary_latency_tol_us,
84 "primary APST latency tolerance in us");
85
86static unsigned long apst_secondary_latency_tol_us = 100000;
87module_param(apst_secondary_latency_tol_us, ulong, 0644);
88MODULE_PARM_DESC(apst_secondary_latency_tol_us,
89 "secondary APST latency tolerance in us");
90
b227c59b
RS
91/*
92 * nvme_wq - hosts nvme related works that are not reset or delete
93 * nvme_reset_wq - hosts nvme reset works
94 * nvme_delete_wq - hosts nvme delete works
95 *
97b2512a
NK
96 * nvme_wq will host works such as scan, aen handling, fw activation,
97 * keep-alive, periodic reconnects etc. nvme_reset_wq
b227c59b
RS
98 * runs reset works which also flush works hosted on nvme_wq for
99 * serialization purposes. nvme_delete_wq host controller deletion
100 * works which flush reset works for serialization.
101 */
9a6327d2
SG
102struct workqueue_struct *nvme_wq;
103EXPORT_SYMBOL_GPL(nvme_wq);
104
b227c59b
RS
105struct workqueue_struct *nvme_reset_wq;
106EXPORT_SYMBOL_GPL(nvme_reset_wq);
107
108struct workqueue_struct *nvme_delete_wq;
109EXPORT_SYMBOL_GPL(nvme_delete_wq);
110
ab9e00cc
CH
111static LIST_HEAD(nvme_subsystems);
112static DEFINE_MUTEX(nvme_subsystems_lock);
1673f1f0 113
9843f685 114static DEFINE_IDA(nvme_instance_ida);
f68abd9c 115static dev_t nvme_ctrl_base_chr_devt;
f3ca80fc 116static struct class *nvme_class;
ab9e00cc 117static struct class *nvme_subsys_class;
f3ca80fc 118
2637baed
MI
119static DEFINE_IDA(nvme_ns_chr_minor_ida);
120static dev_t nvme_ns_chr_devt;
121static struct class *nvme_ns_chr_class;
122
12d9f070 123static void nvme_put_subsystem(struct nvme_subsystem *subsys);
cf39a6bc
SB
124static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
125 unsigned nsid);
b58da2d2
TS
126static void nvme_update_keep_alive(struct nvme_ctrl *ctrl,
127 struct nvme_command *cmd);
cf39a6bc 128
2405252a 129void nvme_queue_scan(struct nvme_ctrl *ctrl)
50e8d8ee
CH
130{
131 /*
132 * Only new queue scan work when admin and IO queues are both alive
133 */
5d02a5c1 134 if (ctrl->state == NVME_CTRL_LIVE && ctrl->tagset)
50e8d8ee
CH
135 queue_work(nvme_wq, &ctrl->scan_work);
136}
137
4c75f877
KB
138/*
139 * Use this function to proceed with scheduling reset_work for a controller
140 * that had previously been set to the resetting state. This is intended for
141 * code paths that can't be interrupted by other reset attempts. A hot removal
142 * may prevent this from succeeding.
143 */
c1ac9a4b 144int nvme_try_sched_reset(struct nvme_ctrl *ctrl)
4c75f877
KB
145{
146 if (ctrl->state != NVME_CTRL_RESETTING)
147 return -EBUSY;
148 if (!queue_work(nvme_reset_wq, &ctrl->reset_work))
149 return -EBUSY;
150 return 0;
151}
c1ac9a4b 152EXPORT_SYMBOL_GPL(nvme_try_sched_reset);
4c75f877 153
8c4dfea9
VG
154static void nvme_failfast_work(struct work_struct *work)
155{
156 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
157 struct nvme_ctrl, failfast_work);
158
159 if (ctrl->state != NVME_CTRL_CONNECTING)
160 return;
161
162 set_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
163 dev_info(ctrl->device, "failfast expired\n");
164 nvme_kick_requeue_lists(ctrl);
165}
166
167static inline void nvme_start_failfast_work(struct nvme_ctrl *ctrl)
168{
169 if (!ctrl->opts || ctrl->opts->fast_io_fail_tmo == -1)
170 return;
171
172 schedule_delayed_work(&ctrl->failfast_work,
173 ctrl->opts->fast_io_fail_tmo * HZ);
174}
175
176static inline void nvme_stop_failfast_work(struct nvme_ctrl *ctrl)
177{
178 if (!ctrl->opts)
179 return;
180
181 cancel_delayed_work_sync(&ctrl->failfast_work);
182 clear_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
183}
184
185
d86c4d8e
CH
186int nvme_reset_ctrl(struct nvme_ctrl *ctrl)
187{
188 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING))
189 return -EBUSY;
b227c59b 190 if (!queue_work(nvme_reset_wq, &ctrl->reset_work))
d86c4d8e
CH
191 return -EBUSY;
192 return 0;
193}
194EXPORT_SYMBOL_GPL(nvme_reset_ctrl);
195
2405252a 196int nvme_reset_ctrl_sync(struct nvme_ctrl *ctrl)
d86c4d8e
CH
197{
198 int ret;
199
200 ret = nvme_reset_ctrl(ctrl);
8000d1fd 201 if (!ret) {
d86c4d8e 202 flush_work(&ctrl->reset_work);
5d02a5c1 203 if (ctrl->state != NVME_CTRL_LIVE)
8000d1fd
NC
204 ret = -ENETRESET;
205 }
206
d86c4d8e
CH
207 return ret;
208}
209
a686ed75 210static void nvme_do_delete_ctrl(struct nvme_ctrl *ctrl)
c5017e85 211{
77d0612d 212 dev_info(ctrl->device,
e5ea42fa 213 "Removing ctrl: NQN \"%s\"\n", nvmf_ctrl_subsysnqn(ctrl));
77d0612d 214
4054637c 215 flush_work(&ctrl->reset_work);
6cd53d14
CH
216 nvme_stop_ctrl(ctrl);
217 nvme_remove_namespaces(ctrl);
c5017e85 218 ctrl->ops->delete_ctrl(ctrl);
6cd53d14 219 nvme_uninit_ctrl(ctrl);
c5017e85
CH
220}
221
a686ed75
BVA
222static void nvme_delete_ctrl_work(struct work_struct *work)
223{
224 struct nvme_ctrl *ctrl =
225 container_of(work, struct nvme_ctrl, delete_work);
226
227 nvme_do_delete_ctrl(ctrl);
228}
229
c5017e85
CH
230int nvme_delete_ctrl(struct nvme_ctrl *ctrl)
231{
232 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
233 return -EBUSY;
b227c59b 234 if (!queue_work(nvme_delete_wq, &ctrl->delete_work))
c5017e85
CH
235 return -EBUSY;
236 return 0;
237}
238EXPORT_SYMBOL_GPL(nvme_delete_ctrl);
239
6721c18a 240static void nvme_delete_ctrl_sync(struct nvme_ctrl *ctrl)
c5017e85 241{
c5017e85 242 /*
01fc08ff
YY
243 * Keep a reference until nvme_do_delete_ctrl() complete,
244 * since ->delete_ctrl can free the controller.
c5017e85
CH
245 */
246 nvme_get_ctrl(ctrl);
6721c18a 247 if (nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING))
b9c77583 248 nvme_do_delete_ctrl(ctrl);
c5017e85 249 nvme_put_ctrl(ctrl);
c5017e85 250}
c5017e85 251
2f9c1736 252static blk_status_t nvme_error_status(u16 status)
27fa9bc5 253{
2f9c1736 254 switch (status & 0x7ff) {
27fa9bc5 255 case NVME_SC_SUCCESS:
2a842aca 256 return BLK_STS_OK;
27fa9bc5 257 case NVME_SC_CAP_EXCEEDED:
2a842aca 258 return BLK_STS_NOSPC;
e96fef2c 259 case NVME_SC_LBA_RANGE:
35038bff
KB
260 case NVME_SC_CMD_INTERRUPTED:
261 case NVME_SC_NS_NOT_READY:
e96fef2c
KB
262 return BLK_STS_TARGET;
263 case NVME_SC_BAD_ATTRIBUTES:
e02ab023 264 case NVME_SC_ONCS_NOT_SUPPORTED:
e96fef2c
KB
265 case NVME_SC_INVALID_OPCODE:
266 case NVME_SC_INVALID_FIELD:
267 case NVME_SC_INVALID_NS:
2a842aca 268 return BLK_STS_NOTSUPP;
e02ab023
JG
269 case NVME_SC_WRITE_FAULT:
270 case NVME_SC_READ_ERROR:
271 case NVME_SC_UNWRITTEN_BLOCK:
a751da33
CH
272 case NVME_SC_ACCESS_DENIED:
273 case NVME_SC_READ_ONLY:
e96fef2c 274 case NVME_SC_COMPARE_FAILED:
2a842aca 275 return BLK_STS_MEDIUM;
a751da33
CH
276 case NVME_SC_GUARD_CHECK:
277 case NVME_SC_APPTAG_CHECK:
278 case NVME_SC_REFTAG_CHECK:
279 case NVME_SC_INVALID_PI:
280 return BLK_STS_PROTECTION;
281 case NVME_SC_RESERVATION_CONFLICT:
282 return BLK_STS_NEXUS;
1c0d12c0
SG
283 case NVME_SC_HOST_PATH_ERROR:
284 return BLK_STS_TRANSPORT;
afaf5c6c
KB
285 case NVME_SC_ZONE_TOO_MANY_ACTIVE:
286 return BLK_STS_ZONE_ACTIVE_RESOURCE;
287 case NVME_SC_ZONE_TOO_MANY_OPEN:
288 return BLK_STS_ZONE_OPEN_RESOURCE;
2a842aca
CH
289 default:
290 return BLK_STS_IOERR;
27fa9bc5
CH
291 }
292}
27fa9bc5 293
49cd84b6
KB
294static void nvme_retry_req(struct request *req)
295{
49cd84b6
KB
296 unsigned long delay = 0;
297 u16 crd;
298
299 /* The mask and shift result must be <= 3 */
300 crd = (nvme_req(req)->status & NVME_SC_CRD) >> 11;
f9063a53
MI
301 if (crd)
302 delay = nvme_req(req)->ctrl->crdt[crd - 1] * 100;
49cd84b6
KB
303
304 nvme_req(req)->retries++;
305 blk_mq_requeue_request(req, false);
306 blk_mq_delay_kick_requeue_list(req->q, delay);
307}
308
bd83fe6f
AA
309static void nvme_log_error(struct request *req)
310{
311 struct nvme_ns *ns = req->q->queuedata;
312 struct nvme_request *nr = nvme_req(req);
313
314 if (ns) {
315 pr_err_ratelimited("%s: %s(0x%x) @ LBA %llu, %llu blocks, %s (sct 0x%x / sc 0x%x) %s%s\n",
316 ns->disk ? ns->disk->disk_name : "?",
317 nvme_get_opcode_str(nr->cmd->common.opcode),
318 nr->cmd->common.opcode,
319 (unsigned long long)nvme_sect_to_lba(ns, blk_rq_pos(req)),
320 (unsigned long long)blk_rq_bytes(req) >> ns->lba_shift,
321 nvme_get_error_status_str(nr->status),
322 nr->status >> 8 & 7, /* Status Code Type */
323 nr->status & 0xff, /* Status Code */
324 nr->status & NVME_SC_MORE ? "MORE " : "",
325 nr->status & NVME_SC_DNR ? "DNR " : "");
326 return;
327 }
328
329 pr_err_ratelimited("%s: %s(0x%x), %s (sct 0x%x / sc 0x%x) %s%s\n",
330 dev_name(nr->ctrl->device),
331 nvme_get_admin_opcode_str(nr->cmd->common.opcode),
332 nr->cmd->common.opcode,
333 nvme_get_error_status_str(nr->status),
334 nr->status >> 8 & 7, /* Status Code Type */
335 nr->status & 0xff, /* Status Code */
336 nr->status & NVME_SC_MORE ? "MORE " : "",
337 nr->status & NVME_SC_DNR ? "DNR " : "");
338}
339
5ddaabe8
CH
340enum nvme_disposition {
341 COMPLETE,
342 RETRY,
343 FAILOVER,
f50fff73 344 AUTHENTICATE,
5ddaabe8
CH
345};
346
347static inline enum nvme_disposition nvme_decide_disposition(struct request *req)
77f02a7a 348{
5ddaabe8
CH
349 if (likely(nvme_req(req)->status == 0))
350 return COMPLETE;
908e4564 351
f50fff73
HR
352 if ((nvme_req(req)->status & 0x7ff) == NVME_SC_AUTH_REQUIRED)
353 return AUTHENTICATE;
354
5ddaabe8
CH
355 if (blk_noretry_request(req) ||
356 (nvme_req(req)->status & NVME_SC_DNR) ||
357 nvme_req(req)->retries >= nvme_max_retries)
358 return COMPLETE;
ca5554a6 359
5ddaabe8 360 if (req->cmd_flags & REQ_NVME_MPATH) {
5eac5f33
CL
361 if (nvme_is_path_error(nvme_req(req)->status) ||
362 blk_queue_dying(req->q))
5ddaabe8 363 return FAILOVER;
5eac5f33
CL
364 } else {
365 if (blk_queue_dying(req->q))
366 return COMPLETE;
5ddaabe8 367 }
16686f3a 368
5ddaabe8
CH
369 return RETRY;
370}
6e3ca03e 371
c234a653 372static inline void nvme_end_req_zoned(struct request *req)
5ddaabe8 373{
5ddaabe8
CH
374 if (IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
375 req_op(req) == REQ_OP_ZONE_APPEND)
240e6ee2
KB
376 req->__sector = nvme_lba_to_sect(req->q->queuedata,
377 le64_to_cpu(nvme_req(req)->result.u64));
c234a653
JA
378}
379
380static inline void nvme_end_req(struct request *req)
381{
382 blk_status_t status = nvme_error_status(nvme_req(req)->status);
35fe0d12 383
b42b6f44 384 if (unlikely(nvme_req(req)->status && !(req->rq_flags & RQF_QUIET)))
bd83fe6f 385 nvme_log_error(req);
c234a653 386 nvme_end_req_zoned(req);
2b59787a 387 nvme_trace_bio_complete(req);
d4d957b5
SG
388 if (req->cmd_flags & REQ_NVME_MPATH)
389 nvme_mpath_end_request(req);
908e4564 390 blk_mq_end_request(req, status);
77f02a7a 391}
5ddaabe8
CH
392
393void nvme_complete_rq(struct request *req)
394{
f50fff73
HR
395 struct nvme_ctrl *ctrl = nvme_req(req)->ctrl;
396
5ddaabe8
CH
397 trace_nvme_complete_rq(req);
398 nvme_cleanup_cmd(req);
399
f50fff73
HR
400 if (ctrl->kas)
401 ctrl->comp_seen = true;
5ddaabe8
CH
402
403 switch (nvme_decide_disposition(req)) {
404 case COMPLETE:
405 nvme_end_req(req);
406 return;
407 case RETRY:
408 nvme_retry_req(req);
409 return;
410 case FAILOVER:
411 nvme_failover_req(req);
412 return;
f50fff73
HR
413 case AUTHENTICATE:
414#ifdef CONFIG_NVME_AUTH
415 queue_work(nvme_wq, &ctrl->dhchap_auth_work);
416 nvme_retry_req(req);
417#else
418 nvme_end_req(req);
419#endif
420 return;
5ddaabe8
CH
421 }
422}
77f02a7a
CH
423EXPORT_SYMBOL_GPL(nvme_complete_rq);
424
c234a653
JA
425void nvme_complete_batch_req(struct request *req)
426{
00e757b6 427 trace_nvme_complete_rq(req);
c234a653
JA
428 nvme_cleanup_cmd(req);
429 nvme_end_req_zoned(req);
430}
431EXPORT_SYMBOL_GPL(nvme_complete_batch_req);
432
dda3248e
CL
433/*
434 * Called to unwind from ->queue_rq on a failed command submission so that the
435 * multipathing code gets called to potentially failover to another path.
436 * The caller needs to unwind all transport specific resource allocations and
437 * must return propagate the return value.
438 */
439blk_status_t nvme_host_path_error(struct request *req)
440{
441 nvme_req(req)->status = NVME_SC_HOST_PATH_ERROR;
442 blk_mq_set_request_complete(req);
443 nvme_complete_rq(req);
444 return BLK_STS_OK;
445}
446EXPORT_SYMBOL_GPL(nvme_host_path_error);
447
2dd6532e 448bool nvme_cancel_request(struct request *req, void *data)
c55a2fd4 449{
c55a2fd4
ML
450 dev_dbg_ratelimited(((struct nvme_ctrl *) data)->device,
451 "Cancelling I/O %d", req->tag);
452
78ca4072
ML
453 /* don't abort one completed request */
454 if (blk_mq_request_completed(req))
455 return true;
456
2dc3947b 457 nvme_req(req)->status = NVME_SC_HOST_ABORTED_CMD;
d3589381 458 nvme_req(req)->flags |= NVME_REQ_CANCELLED;
15f73f5b 459 blk_mq_complete_request(req);
7baa8572 460 return true;
c55a2fd4
ML
461}
462EXPORT_SYMBOL_GPL(nvme_cancel_request);
463
25479069
CL
464void nvme_cancel_tagset(struct nvme_ctrl *ctrl)
465{
466 if (ctrl->tagset) {
467 blk_mq_tagset_busy_iter(ctrl->tagset,
468 nvme_cancel_request, ctrl);
469 blk_mq_tagset_wait_completed_request(ctrl->tagset);
470 }
471}
472EXPORT_SYMBOL_GPL(nvme_cancel_tagset);
473
474void nvme_cancel_admin_tagset(struct nvme_ctrl *ctrl)
475{
476 if (ctrl->admin_tagset) {
477 blk_mq_tagset_busy_iter(ctrl->admin_tagset,
478 nvme_cancel_request, ctrl);
479 blk_mq_tagset_wait_completed_request(ctrl->admin_tagset);
480 }
481}
482EXPORT_SYMBOL_GPL(nvme_cancel_admin_tagset);
483
bb8d261e
CH
484bool nvme_change_ctrl_state(struct nvme_ctrl *ctrl,
485 enum nvme_ctrl_state new_state)
486{
f6b6a28e 487 enum nvme_ctrl_state old_state;
0a72bbba 488 unsigned long flags;
bb8d261e
CH
489 bool changed = false;
490
0a72bbba 491 spin_lock_irqsave(&ctrl->lock, flags);
f6b6a28e
GKB
492
493 old_state = ctrl->state;
bb8d261e
CH
494 switch (new_state) {
495 case NVME_CTRL_LIVE:
496 switch (old_state) {
7d2e8008 497 case NVME_CTRL_NEW:
bb8d261e 498 case NVME_CTRL_RESETTING:
ad6a0a52 499 case NVME_CTRL_CONNECTING:
bb8d261e 500 changed = true;
df561f66 501 fallthrough;
bb8d261e
CH
502 default:
503 break;
504 }
505 break;
506 case NVME_CTRL_RESETTING:
507 switch (old_state) {
508 case NVME_CTRL_NEW:
def61eca 509 case NVME_CTRL_LIVE:
def61eca 510 changed = true;
df561f66 511 fallthrough;
def61eca
CH
512 default:
513 break;
514 }
515 break;
ad6a0a52 516 case NVME_CTRL_CONNECTING:
def61eca 517 switch (old_state) {
b754a32c 518 case NVME_CTRL_NEW:
3cec7f9d 519 case NVME_CTRL_RESETTING:
bb8d261e 520 changed = true;
df561f66 521 fallthrough;
bb8d261e
CH
522 default:
523 break;
524 }
525 break;
526 case NVME_CTRL_DELETING:
527 switch (old_state) {
528 case NVME_CTRL_LIVE:
529 case NVME_CTRL_RESETTING:
ad6a0a52 530 case NVME_CTRL_CONNECTING:
bb8d261e 531 changed = true;
df561f66 532 fallthrough;
bb8d261e
CH
533 default:
534 break;
535 }
536 break;
ecca390e
SG
537 case NVME_CTRL_DELETING_NOIO:
538 switch (old_state) {
539 case NVME_CTRL_DELETING:
540 case NVME_CTRL_DEAD:
541 changed = true;
df561f66 542 fallthrough;
ecca390e
SG
543 default:
544 break;
545 }
546 break;
0ff9d4e1
KB
547 case NVME_CTRL_DEAD:
548 switch (old_state) {
549 case NVME_CTRL_DELETING:
550 changed = true;
df561f66 551 fallthrough;
0ff9d4e1
KB
552 default:
553 break;
554 }
555 break;
bb8d261e
CH
556 default:
557 break;
558 }
bb8d261e 559
c1ac9a4b 560 if (changed) {
bb8d261e 561 ctrl->state = new_state;
c1ac9a4b
KB
562 wake_up_all(&ctrl->state_wq);
563 }
bb8d261e 564
0a72bbba 565 spin_unlock_irqrestore(&ctrl->lock, flags);
8c4dfea9
VG
566 if (!changed)
567 return false;
568
569 if (ctrl->state == NVME_CTRL_LIVE) {
570 if (old_state == NVME_CTRL_CONNECTING)
571 nvme_stop_failfast_work(ctrl);
32acab31 572 nvme_kick_requeue_lists(ctrl);
8c4dfea9
VG
573 } else if (ctrl->state == NVME_CTRL_CONNECTING &&
574 old_state == NVME_CTRL_RESETTING) {
575 nvme_start_failfast_work(ctrl);
576 }
bb8d261e
CH
577 return changed;
578}
579EXPORT_SYMBOL_GPL(nvme_change_ctrl_state);
580
c1ac9a4b
KB
581/*
582 * Returns true for sink states that can't ever transition back to live.
583 */
584static bool nvme_state_terminal(struct nvme_ctrl *ctrl)
585{
586 switch (ctrl->state) {
587 case NVME_CTRL_NEW:
588 case NVME_CTRL_LIVE:
589 case NVME_CTRL_RESETTING:
590 case NVME_CTRL_CONNECTING:
591 return false;
592 case NVME_CTRL_DELETING:
ecca390e 593 case NVME_CTRL_DELETING_NOIO:
c1ac9a4b
KB
594 case NVME_CTRL_DEAD:
595 return true;
596 default:
597 WARN_ONCE(1, "Unhandled ctrl state:%d", ctrl->state);
598 return true;
599 }
600}
601
602/*
603 * Waits for the controller state to be resetting, or returns false if it is
604 * not possible to ever transition to that state.
605 */
606bool nvme_wait_reset(struct nvme_ctrl *ctrl)
607{
608 wait_event(ctrl->state_wq,
609 nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING) ||
610 nvme_state_terminal(ctrl));
611 return ctrl->state == NVME_CTRL_RESETTING;
612}
613EXPORT_SYMBOL_GPL(nvme_wait_reset);
614
ed754e5d
CH
615static void nvme_free_ns_head(struct kref *ref)
616{
617 struct nvme_ns_head *head =
618 container_of(ref, struct nvme_ns_head, ref);
619
32acab31 620 nvme_mpath_remove_disk(head);
8b850475 621 ida_free(&head->subsys->ns_ida, head->instance);
f5ad3991 622 cleanup_srcu_struct(&head->srcu);
12d9f070 623 nvme_put_subsystem(head->subsys);
ed754e5d
CH
624 kfree(head);
625}
626
1496bd49 627bool nvme_tryget_ns_head(struct nvme_ns_head *head)
871ca3ef
CH
628{
629 return kref_get_unless_zero(&head->ref);
630}
631
1496bd49 632void nvme_put_ns_head(struct nvme_ns_head *head)
ed754e5d
CH
633{
634 kref_put(&head->ref, nvme_free_ns_head);
635}
636
1673f1f0
CH
637static void nvme_free_ns(struct kref *kref)
638{
639 struct nvme_ns *ns = container_of(kref, struct nvme_ns, kref);
640
1673f1f0 641 put_disk(ns->disk);
ed754e5d 642 nvme_put_ns_head(ns->head);
075790eb 643 nvme_put_ctrl(ns->ctrl);
1673f1f0
CH
644 kfree(ns);
645}
646
4c74d1f8
KJ
647static inline bool nvme_get_ns(struct nvme_ns *ns)
648{
649 return kref_get_unless_zero(&ns->kref);
650}
651
24493b8b 652void nvme_put_ns(struct nvme_ns *ns)
1673f1f0
CH
653{
654 kref_put(&ns->kref, nvme_free_ns);
655}
24493b8b 656EXPORT_SYMBOL_NS_GPL(nvme_put_ns, NVME_TARGET_PASSTHRU);
1673f1f0 657
bb06ec31
JS
658static inline void nvme_clear_nvme_request(struct request *req)
659{
ae5e6886 660 nvme_req(req)->status = 0;
c03fd85d
CK
661 nvme_req(req)->retries = 0;
662 nvme_req(req)->flags = 0;
663 req->rq_flags |= RQF_DONTPREP;
bb06ec31
JS
664}
665
e559398f
CH
666/* initialize a passthrough request */
667void nvme_init_request(struct request *req, struct nvme_command *cmd)
39dfe844 668{
0d2e7c84
CK
669 if (req->q->queuedata)
670 req->timeout = NVME_IO_TIMEOUT;
671 else /* no queuedata implies admin queue */
dc96f938 672 req->timeout = NVME_ADMIN_TIMEOUT;
21d34711 673
f4b9e6c9
KB
674 /* passthru commands should let the driver set the SGL flags */
675 cmd->common.flags &= ~NVME_CMD_SGL_ALL;
676
21d34711 677 req->cmd_flags |= REQ_FAILFAST_DRIVER;
be42a33b 678 if (req->mq_hctx->type == HCTX_TYPE_POLL)
6ce913fe 679 req->cmd_flags |= REQ_POLLED;
bb06ec31 680 nvme_clear_nvme_request(req);
d7ac8dca 681 req->rq_flags |= RQF_QUIET;
f4b9e6c9 682 memcpy(nvme_req(req)->cmd, cmd, sizeof(*cmd));
39dfe844 683}
e559398f 684EXPORT_SYMBOL_GPL(nvme_init_request);
39dfe844 685
a9715744
TC
686/*
687 * For something we're not in a state to send to the device the default action
688 * is to busy it and retry it after the controller state is recovered. However,
689 * if the controller is deleting or if anything is marked for failfast or
690 * nvme multipath it is immediately failed.
691 *
692 * Note: commands used to initialize the controller will be marked for failfast.
693 * Note: nvme cli/ioctl commands are marked for failfast.
694 */
695blk_status_t nvme_fail_nonready_command(struct nvme_ctrl *ctrl,
696 struct request *rq)
697{
698 if (ctrl->state != NVME_CTRL_DELETING_NOIO &&
8b77fa6f 699 ctrl->state != NVME_CTRL_DELETING &&
a9715744
TC
700 ctrl->state != NVME_CTRL_DEAD &&
701 !test_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags) &&
702 !blk_noretry_request(rq) && !(rq->cmd_flags & REQ_NVME_MPATH))
703 return BLK_STS_RESOURCE;
704 return nvme_host_path_error(rq);
705}
706EXPORT_SYMBOL_GPL(nvme_fail_nonready_command);
707
708bool __nvme_check_ready(struct nvme_ctrl *ctrl, struct request *rq,
709 bool queue_live)
710{
711 struct nvme_request *req = nvme_req(rq);
712
713 /*
714 * currently we have a problem sending passthru commands
715 * on the admin_q if the controller is not LIVE because we can't
716 * make sure that they are going out after the admin connect,
717 * controller enable and/or other commands in the initialization
718 * sequence. until the controller will be LIVE, fail with
719 * BLK_STS_RESOURCE so that they will be rescheduled.
720 */
721 if (rq->q == ctrl->admin_q && (req->flags & NVME_REQ_USERCMD))
722 return false;
723
724 if (ctrl->ops->flags & NVME_F_FABRICS) {
725 /*
726 * Only allow commands on a live queue, except for the connect
727 * command, which is require to set the queue live in the
728 * appropinquate states.
729 */
730 switch (ctrl->state) {
731 case NVME_CTRL_CONNECTING:
732 if (blk_rq_is_passthrough(rq) && nvme_is_fabrics(req->cmd) &&
f50fff73
HR
733 (req->cmd->fabrics.fctype == nvme_fabrics_type_connect ||
734 req->cmd->fabrics.fctype == nvme_fabrics_type_auth_send ||
735 req->cmd->fabrics.fctype == nvme_fabrics_type_auth_receive))
a9715744
TC
736 return true;
737 break;
738 default:
739 break;
740 case NVME_CTRL_DEAD:
741 return false;
742 }
743 }
744
745 return queue_live;
746}
747EXPORT_SYMBOL_GPL(__nvme_check_ready);
748
8093f7ca
ML
749static inline void nvme_setup_flush(struct nvme_ns *ns,
750 struct nvme_command *cmnd)
751{
9c3d2929 752 memset(cmnd, 0, sizeof(*cmnd));
8093f7ca 753 cmnd->common.opcode = nvme_cmd_flush;
ed754e5d 754 cmnd->common.nsid = cpu_to_le32(ns->head->ns_id);
8093f7ca
ML
755}
756
fc17b653 757static blk_status_t nvme_setup_discard(struct nvme_ns *ns, struct request *req,
8093f7ca
ML
758 struct nvme_command *cmnd)
759{
b35ba01e 760 unsigned short segments = blk_rq_nr_discard_segments(req), n = 0;
8093f7ca 761 struct nvme_dsm_range *range;
b35ba01e 762 struct bio *bio;
8093f7ca 763
530436c4
EH
764 /*
765 * Some devices do not consider the DSM 'Number of Ranges' field when
766 * determining how much data to DMA. Always allocate memory for maximum
767 * number of segments to prevent device reading beyond end of buffer.
768 */
769 static const size_t alloc_size = sizeof(*range) * NVME_DSM_MAX_RANGES;
770
771 range = kzalloc(alloc_size, GFP_ATOMIC | __GFP_NOWARN);
cb5b7262
JA
772 if (!range) {
773 /*
774 * If we fail allocation our range, fallback to the controller
775 * discard page. If that's also busy, it's safe to return
776 * busy, as we know we can make progress once that's freed.
777 */
778 if (test_and_set_bit_lock(0, &ns->ctrl->discard_page_busy))
779 return BLK_STS_RESOURCE;
780
781 range = page_address(ns->ctrl->discard_page);
782 }
8093f7ca 783
37f0dc2e
ML
784 if (queue_max_discard_segments(req->q) == 1) {
785 u64 slba = nvme_sect_to_lba(ns, blk_rq_pos(req));
786 u32 nlb = blk_rq_sectors(req) >> (ns->lba_shift - 9);
787
788 range[0].cattr = cpu_to_le32(0);
789 range[0].nlb = cpu_to_le32(nlb);
790 range[0].slba = cpu_to_le64(slba);
791 n = 1;
792 } else {
793 __rq_for_each_bio(bio, req) {
794 u64 slba = nvme_sect_to_lba(ns, bio->bi_iter.bi_sector);
795 u32 nlb = bio->bi_iter.bi_size >> ns->lba_shift;
796
797 if (n < segments) {
798 range[n].cattr = cpu_to_le32(0);
799 range[n].nlb = cpu_to_le32(nlb);
800 range[n].slba = cpu_to_le64(slba);
801 }
802 n++;
8cb6af7b 803 }
b35ba01e
CH
804 }
805
806 if (WARN_ON_ONCE(n != segments)) {
cb5b7262
JA
807 if (virt_to_page(range) == ns->ctrl->discard_page)
808 clear_bit_unlock(0, &ns->ctrl->discard_page_busy);
809 else
810 kfree(range);
fc17b653 811 return BLK_STS_IOERR;
b35ba01e 812 }
8093f7ca 813
9c3d2929 814 memset(cmnd, 0, sizeof(*cmnd));
8093f7ca 815 cmnd->dsm.opcode = nvme_cmd_dsm;
ed754e5d 816 cmnd->dsm.nsid = cpu_to_le32(ns->head->ns_id);
f1dd03a8 817 cmnd->dsm.nr = cpu_to_le32(segments - 1);
8093f7ca
ML
818 cmnd->dsm.attributes = cpu_to_le32(NVME_DSMGMT_AD);
819
4bee16da 820 bvec_set_virt(&req->special_vec, range, alloc_size);
f9d03f96 821 req->rq_flags |= RQF_SPECIAL_PAYLOAD;
8093f7ca 822
fc17b653 823 return BLK_STS_OK;
8093f7ca 824}
8093f7ca 825
4020aad8
KB
826static void nvme_set_ref_tag(struct nvme_ns *ns, struct nvme_command *cmnd,
827 struct request *req)
828{
829 u32 upper, lower;
830 u64 ref48;
831
832 /* both rw and write zeroes share the same reftag format */
833 switch (ns->guard_type) {
834 case NVME_NVM_NS_16B_GUARD:
835 cmnd->rw.reftag = cpu_to_le32(t10_pi_ref_tag(req));
836 break;
837 case NVME_NVM_NS_64B_GUARD:
838 ref48 = ext_pi_ref_tag(req);
839 lower = lower_32_bits(ref48);
840 upper = upper_32_bits(ref48);
841
842 cmnd->rw.reftag = cpu_to_le32(lower);
843 cmnd->rw.cdw3 = cpu_to_le32(upper);
844 break;
845 default:
846 break;
847 }
848}
849
6e02318e
CK
850static inline blk_status_t nvme_setup_write_zeroes(struct nvme_ns *ns,
851 struct request *req, struct nvme_command *cmnd)
852{
9c3d2929
JA
853 memset(cmnd, 0, sizeof(*cmnd));
854
6e02318e
CK
855 if (ns->ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
856 return nvme_setup_discard(ns, req, cmnd);
857
858 cmnd->write_zeroes.opcode = nvme_cmd_write_zeroes;
859 cmnd->write_zeroes.nsid = cpu_to_le32(ns->head->ns_id);
860 cmnd->write_zeroes.slba =
314d48dd 861 cpu_to_le64(nvme_sect_to_lba(ns, blk_rq_pos(req)));
6e02318e
CK
862 cmnd->write_zeroes.length =
863 cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
00b33cf3 864
1b96f862
CH
865 if (!(req->cmd_flags & REQ_NOUNMAP) && (ns->features & NVME_NS_DEAC))
866 cmnd->write_zeroes.control |= cpu_to_le16(NVME_WZ_DEAC);
867
00b33cf3 868 if (nvme_ns_has_pi(ns)) {
1b96f862 869 cmnd->write_zeroes.control |= cpu_to_le16(NVME_RW_PRINFO_PRACT);
00b33cf3
KJ
870
871 switch (ns->pi_type) {
872 case NVME_NS_DPS_PI_TYPE1:
873 case NVME_NS_DPS_PI_TYPE2:
4020aad8 874 nvme_set_ref_tag(ns, cmnd, req);
00b33cf3
KJ
875 break;
876 }
877 }
878
6e02318e
CK
879 return BLK_STS_OK;
880}
881
ebe6d874 882static inline blk_status_t nvme_setup_rw(struct nvme_ns *ns,
240e6ee2
KB
883 struct request *req, struct nvme_command *cmnd,
884 enum nvme_opcode op)
8093f7ca
ML
885{
886 u16 control = 0;
887 u32 dsmgmt = 0;
888
889 if (req->cmd_flags & REQ_FUA)
890 control |= NVME_RW_FUA;
891 if (req->cmd_flags & (REQ_FAILFAST_DEV | REQ_RAHEAD))
892 control |= NVME_RW_LR;
893
894 if (req->cmd_flags & REQ_RAHEAD)
895 dsmgmt |= NVME_RW_DSM_FREQ_PREFETCH;
896
240e6ee2 897 cmnd->rw.opcode = op;
a9a7e30f 898 cmnd->rw.flags = 0;
ed754e5d 899 cmnd->rw.nsid = cpu_to_le32(ns->head->ns_id);
4020aad8
KB
900 cmnd->rw.cdw2 = 0;
901 cmnd->rw.cdw3 = 0;
a9a7e30f 902 cmnd->rw.metadata = 0;
314d48dd 903 cmnd->rw.slba = cpu_to_le64(nvme_sect_to_lba(ns, blk_rq_pos(req)));
8093f7ca 904 cmnd->rw.length = cpu_to_le16((blk_rq_bytes(req) >> ns->lba_shift) - 1);
a9a7e30f
JA
905 cmnd->rw.reftag = 0;
906 cmnd->rw.apptag = 0;
907 cmnd->rw.appmask = 0;
8093f7ca
ML
908
909 if (ns->ms) {
715ea9e0
CH
910 /*
911 * If formated with metadata, the block layer always provides a
912 * metadata buffer if CONFIG_BLK_DEV_INTEGRITY is enabled. Else
913 * we enable the PRACT bit for protection information or set the
914 * namespace capacity to zero to prevent any I/O.
915 */
916 if (!blk_integrity_rq(req)) {
917 if (WARN_ON_ONCE(!nvme_ns_has_pi(ns)))
918 return BLK_STS_NOTSUPP;
919 control |= NVME_RW_PRINFO_PRACT;
920 }
921
8093f7ca
ML
922 switch (ns->pi_type) {
923 case NVME_NS_DPS_PI_TYPE3:
924 control |= NVME_RW_PRINFO_PRCHK_GUARD;
925 break;
926 case NVME_NS_DPS_PI_TYPE1:
927 case NVME_NS_DPS_PI_TYPE2:
928 control |= NVME_RW_PRINFO_PRCHK_GUARD |
929 NVME_RW_PRINFO_PRCHK_REF;
240e6ee2
KB
930 if (op == nvme_cmd_zone_append)
931 control |= NVME_RW_APPEND_PIREMAP;
4020aad8 932 nvme_set_ref_tag(ns, cmnd, req);
8093f7ca
ML
933 break;
934 }
8093f7ca
ML
935 }
936
937 cmnd->rw.control = cpu_to_le16(control);
938 cmnd->rw.dsmgmt = cpu_to_le32(dsmgmt);
ebe6d874 939 return 0;
8093f7ca
ML
940}
941
f7f1fc36
MG
942void nvme_cleanup_cmd(struct request *req)
943{
f7f1fc36 944 if (req->rq_flags & RQF_SPECIAL_PAYLOAD) {
fc97e942 945 struct nvme_ctrl *ctrl = nvme_req(req)->ctrl;
cb5b7262 946
3973e15f 947 if (req->special_vec.bv_page == ctrl->discard_page)
fc97e942 948 clear_bit_unlock(0, &ctrl->discard_page_busy);
cb5b7262 949 else
3973e15f 950 kfree(bvec_virt(&req->special_vec));
f7f1fc36
MG
951 }
952}
953EXPORT_SYMBOL_GPL(nvme_cleanup_cmd);
954
f4b9e6c9 955blk_status_t nvme_setup_cmd(struct nvme_ns *ns, struct request *req)
8093f7ca 956{
f4b9e6c9 957 struct nvme_command *cmd = nvme_req(req)->cmd;
fc17b653 958 blk_status_t ret = BLK_STS_OK;
8093f7ca 959
9c3d2929 960 if (!(req->rq_flags & RQF_DONTPREP))
c03fd85d 961 nvme_clear_nvme_request(req);
987f699a 962
aebf526b
CH
963 switch (req_op(req)) {
964 case REQ_OP_DRV_IN:
965 case REQ_OP_DRV_OUT:
f4b9e6c9 966 /* these are setup prior to execution in nvme_init_request() */
aebf526b
CH
967 break;
968 case REQ_OP_FLUSH:
8093f7ca 969 nvme_setup_flush(ns, cmd);
aebf526b 970 break;
240e6ee2
KB
971 case REQ_OP_ZONE_RESET_ALL:
972 case REQ_OP_ZONE_RESET:
973 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_RESET);
974 break;
975 case REQ_OP_ZONE_OPEN:
976 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_OPEN);
977 break;
978 case REQ_OP_ZONE_CLOSE:
979 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_CLOSE);
980 break;
981 case REQ_OP_ZONE_FINISH:
982 ret = nvme_setup_zone_mgmt_send(ns, req, cmd, NVME_ZONE_FINISH);
983 break;
e850fd16 984 case REQ_OP_WRITE_ZEROES:
6e02318e
CK
985 ret = nvme_setup_write_zeroes(ns, req, cmd);
986 break;
aebf526b 987 case REQ_OP_DISCARD:
8093f7ca 988 ret = nvme_setup_discard(ns, req, cmd);
aebf526b
CH
989 break;
990 case REQ_OP_READ:
240e6ee2
KB
991 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_read);
992 break;
aebf526b 993 case REQ_OP_WRITE:
240e6ee2
KB
994 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_write);
995 break;
996 case REQ_OP_ZONE_APPEND:
997 ret = nvme_setup_rw(ns, req, cmd, nvme_cmd_zone_append);
aebf526b
CH
998 break;
999 default:
1000 WARN_ON_ONCE(1);
fc17b653 1001 return BLK_STS_IOERR;
aebf526b 1002 }
8093f7ca 1003
e7006de6 1004 cmd->common.command_id = nvme_cid(req);
5d87eb94 1005 trace_nvme_setup_cmd(req, cmd);
8093f7ca
ML
1006 return ret;
1007}
1008EXPORT_SYMBOL_GPL(nvme_setup_cmd);
1009
ae5e6886
KB
1010/*
1011 * Return values:
1012 * 0: success
1013 * >0: nvme controller's cqe status response
1014 * <0: kernel error in lieu of controller response
1015 */
62281b9e 1016int nvme_execute_rq(struct request *rq, bool at_head)
ae5e6886
KB
1017{
1018 blk_status_t status;
1019
b84ba30b 1020 status = blk_execute_rq(rq, at_head);
ae5e6886
KB
1021 if (nvme_req(rq)->flags & NVME_REQ_CANCELLED)
1022 return -EINTR;
1023 if (nvme_req(rq)->status)
1024 return nvme_req(rq)->status;
1025 return blk_status_to_errno(status);
1026}
62281b9e 1027EXPORT_SYMBOL_NS_GPL(nvme_execute_rq, NVME_TARGET_PASSTHRU);
ae5e6886 1028
4160982e
CH
1029/*
1030 * Returns 0 on success. If the result is negative, it's a Linux error code;
1031 * if the result is positive, it's an NVM Express status code
1032 */
1033int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
d49187e9 1034 union nvme_result *result, void *buffer, unsigned bufflen,
6b46fa02 1035 int qid, int at_head, blk_mq_req_flags_t flags)
4160982e
CH
1036{
1037 struct request *req;
1038 int ret;
1039
39dfe844 1040 if (qid == NVME_QID_ANY)
e559398f 1041 req = blk_mq_alloc_request(q, nvme_req_op(cmd), flags);
39dfe844 1042 else
e559398f 1043 req = blk_mq_alloc_request_hctx(q, nvme_req_op(cmd), flags,
b10907b8 1044 qid - 1);
e559398f 1045
4160982e
CH
1046 if (IS_ERR(req))
1047 return PTR_ERR(req);
e559398f 1048 nvme_init_request(req, cmd);
4160982e 1049
21d34711
CH
1050 if (buffer && bufflen) {
1051 ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
1052 if (ret)
1053 goto out;
4160982e
CH
1054 }
1055
ba326643 1056 ret = nvme_execute_rq(req, at_head);
ae5e6886 1057 if (result && ret >= 0)
d49187e9 1058 *result = nvme_req(req)->result;
4160982e
CH
1059 out:
1060 blk_mq_free_request(req);
1061 return ret;
1062}
eb71f435 1063EXPORT_SYMBOL_GPL(__nvme_submit_sync_cmd);
4160982e
CH
1064
1065int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
1066 void *buffer, unsigned bufflen)
1067{
6b46fa02 1068 return __nvme_submit_sync_cmd(q, cmd, NULL, buffer, bufflen,
be42a33b 1069 NVME_QID_ANY, 0, 0);
4160982e 1070}
576d55d6 1071EXPORT_SYMBOL_GPL(nvme_submit_sync_cmd);
4160982e 1072
df21b6b1
LG
1073u32 nvme_command_effects(struct nvme_ctrl *ctrl, struct nvme_ns *ns, u8 opcode)
1074{
1075 u32 effects = 0;
1076
1077 if (ns) {
cc115cbe 1078 effects = le32_to_cpu(ns->head->effects->iocs[opcode]);
df21b6b1 1079 if (effects & ~(NVME_CMD_EFFECTS_CSUPP | NVME_CMD_EFFECTS_LBCC))
ed4a854b 1080 dev_warn_once(ctrl->device,
831ed60c 1081 "IO command:%02x has unusual effects:%08x\n",
ed4a854b 1082 opcode, effects);
df21b6b1 1083
831ed60c
CH
1084 /*
1085 * NVME_CMD_EFFECTS_CSE_MASK causes a freeze all I/O queues,
1086 * which would deadlock when done on an I/O command. Note that
1087 * We already warn about an unusual effect above.
1088 */
1089 effects &= ~NVME_CMD_EFFECTS_CSE_MASK;
1090 } else {
cc115cbe 1091 effects = le32_to_cpu(ctrl->effects->acs[opcode]);
831ed60c 1092 }
df21b6b1
LG
1093
1094 return effects;
1095}
1096EXPORT_SYMBOL_NS_GPL(nvme_command_effects, NVME_TARGET_PASSTHRU);
1097
62281b9e 1098u32 nvme_passthru_start(struct nvme_ctrl *ctrl, struct nvme_ns *ns, u8 opcode)
df21b6b1
LG
1099{
1100 u32 effects = nvme_command_effects(ctrl, ns, opcode);
1101
1102 /*
1103 * For simplicity, IO to all namespaces is quiesced even if the command
1104 * effects say only one namespace is affected.
1105 */
af0f446d 1106 if (effects & NVME_CMD_EFFECTS_CSE_MASK) {
df21b6b1
LG
1107 mutex_lock(&ctrl->scan_lock);
1108 mutex_lock(&ctrl->subsys->lock);
1109 nvme_mpath_start_freeze(ctrl->subsys);
1110 nvme_mpath_wait_freeze(ctrl->subsys);
1111 nvme_start_freeze(ctrl);
1112 nvme_wait_freeze(ctrl);
1113 }
1114 return effects;
1115}
62281b9e 1116EXPORT_SYMBOL_NS_GPL(nvme_passthru_start, NVME_TARGET_PASSTHRU);
df21b6b1 1117
bc8fb906
KB
1118void nvme_passthru_end(struct nvme_ctrl *ctrl, u32 effects,
1119 struct nvme_command *cmd, int status)
df21b6b1 1120{
af0f446d 1121 if (effects & NVME_CMD_EFFECTS_CSE_MASK) {
df21b6b1
LG
1122 nvme_unfreeze(ctrl);
1123 nvme_mpath_unfreeze(ctrl->subsys);
1124 mutex_unlock(&ctrl->subsys->lock);
df21b6b1
LG
1125 mutex_unlock(&ctrl->scan_lock);
1126 }
1e37a307
CH
1127 if (effects & NVME_CMD_EFFECTS_CCC) {
1128 dev_info(ctrl->device,
1129"controller capabilities changed, reset may be required to take effect.\n");
1130 }
df21b6b1
LG
1131 if (effects & (NVME_CMD_EFFECTS_NIC | NVME_CMD_EFFECTS_NCC)) {
1132 nvme_queue_scan(ctrl);
1133 flush_work(&ctrl->scan_work);
1134 }
b58da2d2
TS
1135
1136 switch (cmd->common.opcode) {
1137 case nvme_admin_set_features:
1138 switch (le32_to_cpu(cmd->common.cdw10) & 0xFF) {
1139 case NVME_FEAT_KATO:
1140 /*
1141 * Keep alive commands interval on the host should be
1142 * updated when KATO is modified by Set Features
1143 * commands.
1144 */
1145 if (!status)
1146 nvme_update_keep_alive(ctrl, cmd);
1147 break;
1148 default:
1149 break;
1150 }
1151 break;
1152 default:
1153 break;
1154 }
df21b6b1 1155}
bc8fb906 1156EXPORT_SYMBOL_NS_GPL(nvme_passthru_end, NVME_TARGET_PASSTHRU);
df21b6b1 1157
a70b81bd
HR
1158/*
1159 * Recommended frequency for KATO commands per NVMe 1.4 section 7.12.1:
1160 *
1161 * The host should send Keep Alive commands at half of the Keep Alive Timeout
1162 * accounting for transport roundtrip times [..].
1163 */
1164static void nvme_queue_keep_alive_work(struct nvme_ctrl *ctrl)
4160982e 1165{
a70b81bd 1166 queue_delayed_work(nvme_wq, &ctrl->ka_work, ctrl->kato * HZ / 2);
21d34711
CH
1167}
1168
de671d61
JA
1169static enum rq_end_io_ret nvme_keep_alive_end_io(struct request *rq,
1170 blk_status_t status)
038bd4cb
SG
1171{
1172 struct nvme_ctrl *ctrl = rq->end_io_data;
86880d64
JS
1173 unsigned long flags;
1174 bool startka = false;
038bd4cb
SG
1175
1176 blk_mq_free_request(rq);
1177
2a842aca 1178 if (status) {
038bd4cb 1179 dev_err(ctrl->device,
2a842aca
CH
1180 "failed nvme_keep_alive_end_io error=%d\n",
1181 status);
de671d61 1182 return RQ_END_IO_NONE;
038bd4cb
SG
1183 }
1184
6e3ca03e 1185 ctrl->comp_seen = false;
86880d64
JS
1186 spin_lock_irqsave(&ctrl->lock, flags);
1187 if (ctrl->state == NVME_CTRL_LIVE ||
1188 ctrl->state == NVME_CTRL_CONNECTING)
1189 startka = true;
1190 spin_unlock_irqrestore(&ctrl->lock, flags);
1191 if (startka)
a70b81bd 1192 nvme_queue_keep_alive_work(ctrl);
de671d61 1193 return RQ_END_IO_NONE;
038bd4cb
SG
1194}
1195
038bd4cb
SG
1196static void nvme_keep_alive_work(struct work_struct *work)
1197{
1198 struct nvme_ctrl *ctrl = container_of(to_delayed_work(work),
1199 struct nvme_ctrl, ka_work);
6e3ca03e 1200 bool comp_seen = ctrl->comp_seen;
06c3c336 1201 struct request *rq;
6e3ca03e
SG
1202
1203 if ((ctrl->ctratt & NVME_CTRL_ATTR_TBKAS) && comp_seen) {
1204 dev_dbg(ctrl->device,
1205 "reschedule traffic based keep-alive timer\n");
1206 ctrl->comp_seen = false;
a70b81bd 1207 nvme_queue_keep_alive_work(ctrl);
6e3ca03e
SG
1208 return;
1209 }
038bd4cb 1210
e559398f
CH
1211 rq = blk_mq_alloc_request(ctrl->admin_q, nvme_req_op(&ctrl->ka_cmd),
1212 BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT);
06c3c336 1213 if (IS_ERR(rq)) {
038bd4cb 1214 /* allocation failure, reset the controller */
985c5a32 1215 dev_err(ctrl->device, "keep-alive failed: %ld\n", PTR_ERR(rq));
39bdc590 1216 nvme_reset_ctrl(ctrl);
038bd4cb
SG
1217 return;
1218 }
e559398f 1219 nvme_init_request(rq, &ctrl->ka_cmd);
06c3c336
CH
1220
1221 rq->timeout = ctrl->kato * HZ;
e2e53086 1222 rq->end_io = nvme_keep_alive_end_io;
06c3c336 1223 rq->end_io_data = ctrl;
e2e53086 1224 blk_execute_rq_nowait(rq, false);
038bd4cb
SG
1225}
1226
00b683db 1227static void nvme_start_keep_alive(struct nvme_ctrl *ctrl)
038bd4cb
SG
1228{
1229 if (unlikely(ctrl->kato == 0))
1230 return;
1231
a70b81bd 1232 nvme_queue_keep_alive_work(ctrl);
038bd4cb 1233}
038bd4cb
SG
1234
1235void nvme_stop_keep_alive(struct nvme_ctrl *ctrl)
1236{
1237 if (unlikely(ctrl->kato == 0))
1238 return;
1239
1240 cancel_delayed_work_sync(&ctrl->ka_work);
1241}
1242EXPORT_SYMBOL_GPL(nvme_stop_keep_alive);
1243
b58da2d2
TS
1244static void nvme_update_keep_alive(struct nvme_ctrl *ctrl,
1245 struct nvme_command *cmd)
1246{
1247 unsigned int new_kato =
1248 DIV_ROUND_UP(le32_to_cpu(cmd->common.cdw11), 1000);
1249
1250 dev_info(ctrl->device,
1251 "keep alive interval updated from %u ms to %u ms\n",
1252 ctrl->kato * 1000 / 2, new_kato * 1000 / 2);
1253
1254 nvme_stop_keep_alive(ctrl);
1255 ctrl->kato = new_kato;
1256 nvme_start_keep_alive(ctrl);
1257}
1258
b9a5c3d4
CH
1259/*
1260 * In NVMe 1.0 the CNS field was just a binary controller or namespace
1261 * flag, thus sending any new CNS opcodes has a big chance of not working.
1262 * Qemu unfortunately had that bug after reporting a 1.1 version compliance
1263 * (but not for any later version).
1264 */
1265static bool nvme_ctrl_limited_cns(struct nvme_ctrl *ctrl)
1266{
1267 if (ctrl->quirks & NVME_QUIRK_IDENTIFY_CNS)
1268 return ctrl->vs < NVME_VS(1, 2, 0);
1269 return ctrl->vs < NVME_VS(1, 1, 0);
1270}
1271
3f7f25a9 1272static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
21d34711
CH
1273{
1274 struct nvme_command c = { };
1275 int error;
1276
1277 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
1278 c.identify.opcode = nvme_admin_identify;
986994a2 1279 c.identify.cns = NVME_ID_CNS_CTRL;
21d34711
CH
1280
1281 *id = kmalloc(sizeof(struct nvme_id_ctrl), GFP_KERNEL);
1282 if (!*id)
1283 return -ENOMEM;
1284
1285 error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
1286 sizeof(struct nvme_id_ctrl));
1287 if (error)
1288 kfree(*id);
1289 return error;
1290}
1291
ad95a613 1292static int nvme_process_ns_desc(struct nvme_ctrl *ctrl, struct nvme_ns_ids *ids,
71010c30 1293 struct nvme_ns_id_desc *cur, bool *csi_seen)
ad95a613
CK
1294{
1295 const char *warn_str = "ctrl returned bogus length:";
1296 void *data = cur;
1297
1298 switch (cur->nidt) {
1299 case NVME_NIDT_EUI64:
1300 if (cur->nidl != NVME_NIDT_EUI64_LEN) {
1301 dev_warn(ctrl->device, "%s %d for NVME_NIDT_EUI64\n",
1302 warn_str, cur->nidl);
1303 return -1;
1304 }
00ff400e
CH
1305 if (ctrl->quirks & NVME_QUIRK_BOGUS_NID)
1306 return NVME_NIDT_EUI64_LEN;
ad95a613
CK
1307 memcpy(ids->eui64, data + sizeof(*cur), NVME_NIDT_EUI64_LEN);
1308 return NVME_NIDT_EUI64_LEN;
1309 case NVME_NIDT_NGUID:
1310 if (cur->nidl != NVME_NIDT_NGUID_LEN) {
1311 dev_warn(ctrl->device, "%s %d for NVME_NIDT_NGUID\n",
1312 warn_str, cur->nidl);
1313 return -1;
1314 }
00ff400e
CH
1315 if (ctrl->quirks & NVME_QUIRK_BOGUS_NID)
1316 return NVME_NIDT_NGUID_LEN;
ad95a613
CK
1317 memcpy(ids->nguid, data + sizeof(*cur), NVME_NIDT_NGUID_LEN);
1318 return NVME_NIDT_NGUID_LEN;
1319 case NVME_NIDT_UUID:
1320 if (cur->nidl != NVME_NIDT_UUID_LEN) {
1321 dev_warn(ctrl->device, "%s %d for NVME_NIDT_UUID\n",
1322 warn_str, cur->nidl);
1323 return -1;
1324 }
00ff400e
CH
1325 if (ctrl->quirks & NVME_QUIRK_BOGUS_NID)
1326 return NVME_NIDT_UUID_LEN;
ad95a613
CK
1327 uuid_copy(&ids->uuid, data + sizeof(*cur));
1328 return NVME_NIDT_UUID_LEN;
71010c30
NC
1329 case NVME_NIDT_CSI:
1330 if (cur->nidl != NVME_NIDT_CSI_LEN) {
1331 dev_warn(ctrl->device, "%s %d for NVME_NIDT_CSI\n",
1332 warn_str, cur->nidl);
1333 return -1;
1334 }
1335 memcpy(&ids->csi, data + sizeof(*cur), NVME_NIDT_CSI_LEN);
1336 *csi_seen = true;
1337 return NVME_NIDT_CSI_LEN;
ad95a613
CK
1338 default:
1339 /* Skip unknown types */
1340 return cur->nidl;
1341 }
1342}
1343
1a893c2b
CH
1344static int nvme_identify_ns_descs(struct nvme_ctrl *ctrl,
1345 struct nvme_ns_info *info)
3b22ba26
JT
1346{
1347 struct nvme_command c = { };
71010c30
NC
1348 bool csi_seen = false;
1349 int status, pos, len;
3b22ba26 1350 void *data;
3b22ba26 1351
8b7c0ff2
CH
1352 if (ctrl->vs < NVME_VS(1, 3, 0) && !nvme_multi_css(ctrl))
1353 return 0;
5bedd3af
CH
1354 if (ctrl->quirks & NVME_QUIRK_NO_NS_DESC_LIST)
1355 return 0;
1356
3b22ba26 1357 c.identify.opcode = nvme_admin_identify;
1a893c2b 1358 c.identify.nsid = cpu_to_le32(info->nsid);
3b22ba26
JT
1359 c.identify.cns = NVME_ID_CNS_NS_DESC_LIST;
1360
1361 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
1362 if (!data)
1363 return -ENOMEM;
1364
cdbff4f2 1365 status = nvme_submit_sync_cmd(ctrl->admin_q, &c, data,
3b22ba26 1366 NVME_IDENTIFY_DATA_SIZE);
fb314eb0
CH
1367 if (status) {
1368 dev_warn(ctrl->device,
aa9d7295 1369 "Identify Descriptors failed (nsid=%u, status=0x%x)\n",
1a893c2b 1370 info->nsid, status);
3b22ba26 1371 goto free_data;
fb314eb0 1372 }
3b22ba26
JT
1373
1374 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) {
1375 struct nvme_ns_id_desc *cur = data + pos;
1376
1377 if (cur->nidl == 0)
1378 break;
1379
1a893c2b 1380 len = nvme_process_ns_desc(ctrl, &info->ids, cur, &csi_seen);
ad95a613 1381 if (len < 0)
71010c30 1382 break;
3b22ba26
JT
1383
1384 len += sizeof(*cur);
1385 }
71010c30
NC
1386
1387 if (nvme_multi_css(ctrl) && !csi_seen) {
1388 dev_warn(ctrl->device, "Command set not reported for nsid:%d\n",
1a893c2b 1389 info->nsid);
71010c30
NC
1390 status = -EINVAL;
1391 }
1392
3b22ba26
JT
1393free_data:
1394 kfree(data);
1395 return status;
1396}
1397
8b7c0ff2 1398static int nvme_identify_ns(struct nvme_ctrl *ctrl, unsigned nsid,
1a893c2b 1399 struct nvme_id_ns **id)
21d34711
CH
1400{
1401 struct nvme_command c = { };
1402 int error;
1403
1404 /* gcc-4.4.4 (at least) has issues with initializers and anon unions */
778f067c
MG
1405 c.identify.opcode = nvme_admin_identify;
1406 c.identify.nsid = cpu_to_le32(nsid);
986994a2 1407 c.identify.cns = NVME_ID_CNS_NS;
21d34711 1408
331813f6
SG
1409 *id = kmalloc(sizeof(**id), GFP_KERNEL);
1410 if (!*id)
1411 return -ENOMEM;
21d34711 1412
331813f6 1413 error = nvme_submit_sync_cmd(ctrl->admin_q, &c, *id, sizeof(**id));
cdbff4f2 1414 if (error) {
d0de579c 1415 dev_warn(ctrl->device, "Identify namespace failed (%d)\n", error);
0dd6fff2 1416 kfree(*id);
cdbff4f2 1417 }
1a893c2b
CH
1418 return error;
1419}
00ff400e 1420
1a893c2b
CH
1421static int nvme_ns_info_from_identify(struct nvme_ctrl *ctrl,
1422 struct nvme_ns_info *info)
1423{
1424 struct nvme_ns_ids *ids = &info->ids;
1425 struct nvme_id_ns *id;
1426 int ret;
1427
1428 ret = nvme_identify_ns(ctrl, info->nsid, &id);
1429 if (ret)
1430 return ret;
0dd6fff2
CH
1431
1432 if (id->ncap == 0) {
1433 /* namespace not allocated or attached */
1434 info->is_removed = true;
1435 return -ENODEV;
1436 }
1437
1a893c2b
CH
1438 info->anagrpid = id->anagrpid;
1439 info->is_shared = id->nmic & NVME_NS_NMIC_SHARED;
1e4ea66a 1440 info->is_readonly = id->nsattr & NVME_NS_ATTR_RO;
1a893c2b 1441 info->is_ready = true;
00ff400e
CH
1442 if (ctrl->quirks & NVME_QUIRK_BOGUS_NID) {
1443 dev_info(ctrl->device,
1444 "Ignoring bogus Namespace Identifiers\n");
1445 } else {
1446 if (ctrl->vs >= NVME_VS(1, 1, 0) &&
1447 !memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
1a893c2b 1448 memcpy(ids->eui64, id->eui64, sizeof(ids->eui64));
00ff400e
CH
1449 if (ctrl->vs >= NVME_VS(1, 2, 0) &&
1450 !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
1a893c2b 1451 memcpy(ids->nguid, id->nguid, sizeof(ids->nguid));
00ff400e 1452 }
1a893c2b 1453 kfree(id);
b8b8cd01 1454 return 0;
21d34711
CH
1455}
1456
1a893c2b
CH
1457static int nvme_ns_info_from_id_cs_indep(struct nvme_ctrl *ctrl,
1458 struct nvme_ns_info *info)
354201c5 1459{
1a893c2b 1460 struct nvme_id_ns_cs_indep *id;
354201c5
CH
1461 struct nvme_command c = {
1462 .identify.opcode = nvme_admin_identify,
1a893c2b 1463 .identify.nsid = cpu_to_le32(info->nsid),
354201c5
CH
1464 .identify.cns = NVME_ID_CNS_NS_CS_INDEP,
1465 };
1466 int ret;
1467
1a893c2b
CH
1468 id = kmalloc(sizeof(*id), GFP_KERNEL);
1469 if (!id)
354201c5
CH
1470 return -ENOMEM;
1471
1a893c2b
CH
1472 ret = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
1473 if (!ret) {
1474 info->anagrpid = id->anagrpid;
1475 info->is_shared = id->nmic & NVME_NS_NMIC_SHARED;
1e4ea66a 1476 info->is_readonly = id->nsattr & NVME_NS_ATTR_RO;
1a893c2b 1477 info->is_ready = id->nstat & NVME_NSTAT_NRDY;
354201c5 1478 }
1a893c2b
CH
1479 kfree(id);
1480 return ret;
354201c5
CH
1481}
1482
1a87ee65
KB
1483static int nvme_features(struct nvme_ctrl *dev, u8 op, unsigned int fid,
1484 unsigned int dword11, void *buffer, size_t buflen, u32 *result)
21d34711 1485{
15755854 1486 union nvme_result res = { 0 };
cc72c442 1487 struct nvme_command c = { };
1cb3cce5 1488 int ret;
21d34711 1489
1a87ee65 1490 c.features.opcode = op;
21d34711
CH
1491 c.features.fid = cpu_to_le32(fid);
1492 c.features.dword11 = cpu_to_le32(dword11);
1493
d49187e9 1494 ret = __nvme_submit_sync_cmd(dev->admin_q, &c, &res,
6b46fa02 1495 buffer, buflen, NVME_QID_ANY, 0, 0);
9b47f77a 1496 if (ret >= 0 && result)
d49187e9 1497 *result = le32_to_cpu(res.u32);
1cb3cce5 1498 return ret;
21d34711
CH
1499}
1500
1a87ee65
KB
1501int nvme_set_features(struct nvme_ctrl *dev, unsigned int fid,
1502 unsigned int dword11, void *buffer, size_t buflen,
1503 u32 *result)
1504{
1505 return nvme_features(dev, nvme_admin_set_features, fid, dword11, buffer,
1506 buflen, result);
1507}
1508EXPORT_SYMBOL_GPL(nvme_set_features);
1509
1510int nvme_get_features(struct nvme_ctrl *dev, unsigned int fid,
1511 unsigned int dword11, void *buffer, size_t buflen,
1512 u32 *result)
1513{
1514 return nvme_features(dev, nvme_admin_get_features, fid, dword11, buffer,
1515 buflen, result);
1516}
1517EXPORT_SYMBOL_GPL(nvme_get_features);
1518
9a0be7ab
CH
1519int nvme_set_queue_count(struct nvme_ctrl *ctrl, int *count)
1520{
1521 u32 q_count = (*count - 1) | ((*count - 1) << 16);
1522 u32 result;
1523 int status, nr_io_queues;
1524
1a6fe74d 1525 status = nvme_set_features(ctrl, NVME_FEAT_NUM_QUEUES, q_count, NULL, 0,
9a0be7ab 1526 &result);
f5fa90dc 1527 if (status < 0)
9a0be7ab
CH
1528 return status;
1529
f5fa90dc
CH
1530 /*
1531 * Degraded controllers might return an error when setting the queue
1532 * count. We still want to be able to bring them online and offer
1533 * access to the admin queue, as that might be only way to fix them up.
1534 */
1535 if (status > 0) {
f0425db0 1536 dev_err(ctrl->device, "Could not set queue count (%d)\n", status);
f5fa90dc
CH
1537 *count = 0;
1538 } else {
1539 nr_io_queues = min(result & 0xffff, result >> 16) + 1;
1540 *count = min(*count, nr_io_queues);
1541 }
1542
9a0be7ab
CH
1543 return 0;
1544}
576d55d6 1545EXPORT_SYMBOL_GPL(nvme_set_queue_count);
9a0be7ab 1546
c0561f82 1547#define NVME_AEN_SUPPORTED \
85f8a435
SG
1548 (NVME_AEN_CFG_NS_ATTR | NVME_AEN_CFG_FW_ACT | \
1549 NVME_AEN_CFG_ANA_CHANGE | NVME_AEN_CFG_DISC_CHANGE)
c0561f82
HR
1550
1551static void nvme_enable_aen(struct nvme_ctrl *ctrl)
1552{
fa441b71 1553 u32 result, supported_aens = ctrl->oaes & NVME_AEN_SUPPORTED;
c0561f82
HR
1554 int status;
1555
fa441b71
WZ
1556 if (!supported_aens)
1557 return;
1558
1559 status = nvme_set_features(ctrl, NVME_FEAT_ASYNC_EVENT, supported_aens,
1560 NULL, 0, &result);
c0561f82
HR
1561 if (status)
1562 dev_warn(ctrl->device, "Failed to configure AEN (cfg %x)\n",
fa441b71 1563 supported_aens);
93da4023
SG
1564
1565 queue_work(nvme_wq, &ctrl->async_event_work);
c0561f82
HR
1566}
1567
f5b9a51d 1568static int nvme_ns_open(struct nvme_ns *ns)
c225b610 1569{
c225b610 1570
32acab31 1571 /* should never be called due to GENHD_FL_HIDDEN */
30897388 1572 if (WARN_ON_ONCE(nvme_ns_head_multipath(ns->head)))
85088c4a 1573 goto fail;
4c74d1f8 1574 if (!nvme_get_ns(ns))
85088c4a
NC
1575 goto fail;
1576 if (!try_module_get(ns->ctrl->ops->module))
1577 goto fail_put_ns;
1578
c6424a90 1579 return 0;
85088c4a
NC
1580
1581fail_put_ns:
1582 nvme_put_ns(ns);
1583fail:
1584 return -ENXIO;
1673f1f0
CH
1585}
1586
f5b9a51d 1587static void nvme_ns_release(struct nvme_ns *ns)
1673f1f0 1588{
85088c4a
NC
1589
1590 module_put(ns->ctrl->ops->module);
1591 nvme_put_ns(ns);
1673f1f0
CH
1592}
1593
f5b9a51d
CH
1594static int nvme_open(struct block_device *bdev, fmode_t mode)
1595{
1596 return nvme_ns_open(bdev->bd_disk->private_data);
1597}
1598
1599static void nvme_release(struct gendisk *disk, fmode_t mode)
1600{
1601 nvme_ns_release(disk->private_data);
1602}
1603
1496bd49 1604int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1673f1f0
CH
1605{
1606 /* some standard values */
1607 geo->heads = 1 << 6;
1608 geo->sectors = 1 << 5;
1609 geo->cylinders = get_capacity(bdev->bd_disk) >> 11;
1610 return 0;
1611}
1612
1613#ifdef CONFIG_BLK_DEV_INTEGRITY
4020aad8 1614static void nvme_init_integrity(struct gendisk *disk, struct nvme_ns *ns,
95093350 1615 u32 max_integrity_segments)
1673f1f0 1616{
cc72c442 1617 struct blk_integrity integrity = { };
1673f1f0 1618
4020aad8 1619 switch (ns->pi_type) {
1673f1f0 1620 case NVME_NS_DPS_PI_TYPE3:
4020aad8
KB
1621 switch (ns->guard_type) {
1622 case NVME_NVM_NS_16B_GUARD:
1623 integrity.profile = &t10_pi_type3_crc;
1624 integrity.tag_size = sizeof(u16) + sizeof(u32);
1625 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1626 break;
1627 case NVME_NVM_NS_64B_GUARD:
1628 integrity.profile = &ext_pi_type3_crc64;
1629 integrity.tag_size = sizeof(u16) + 6;
1630 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1631 break;
1632 default:
1633 integrity.profile = NULL;
1634 break;
1635 }
1673f1f0
CH
1636 break;
1637 case NVME_NS_DPS_PI_TYPE1:
1638 case NVME_NS_DPS_PI_TYPE2:
4020aad8
KB
1639 switch (ns->guard_type) {
1640 case NVME_NVM_NS_16B_GUARD:
1641 integrity.profile = &t10_pi_type1_crc;
1642 integrity.tag_size = sizeof(u16);
1643 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1644 break;
1645 case NVME_NVM_NS_64B_GUARD:
1646 integrity.profile = &ext_pi_type1_crc64;
1647 integrity.tag_size = sizeof(u16);
1648 integrity.flags |= BLK_INTEGRITY_DEVICE_CAPABLE;
1649 break;
1650 default:
1651 integrity.profile = NULL;
1652 break;
1653 }
1673f1f0
CH
1654 break;
1655 default:
1656 integrity.profile = NULL;
1657 break;
1658 }
4020aad8
KB
1659
1660 integrity.tuple_size = ns->ms;
39b7baa4 1661 blk_integrity_register(disk, &integrity);
95093350 1662 blk_queue_max_integrity_segments(disk->queue, max_integrity_segments);
1673f1f0
CH
1663}
1664#else
4020aad8 1665static void nvme_init_integrity(struct gendisk *disk, struct nvme_ns *ns,
95093350 1666 u32 max_integrity_segments)
1673f1f0
CH
1667{
1668}
1669#endif /* CONFIG_BLK_DEV_INTEGRITY */
1670
26318571 1671static void nvme_config_discard(struct gendisk *disk, struct nvme_ns *ns)
1673f1f0 1672{
3831761e 1673 struct nvme_ctrl *ctrl = ns->ctrl;
26318571 1674 struct request_queue *queue = disk->queue;
30e5e929
CH
1675 u32 size = queue_logical_block_size(queue);
1676
d3205ab7
KB
1677 if (ctrl->dmrsl && ctrl->dmrsl <= nvme_sect_to_lba(ns, UINT_MAX))
1678 ctrl->max_discard_sectors = nvme_lba_to_sect(ns, ctrl->dmrsl);
1679
5befc7c2 1680 if (ctrl->max_discard_sectors == 0) {
70200574 1681 blk_queue_max_discard_sectors(queue, 0);
3831761e
JA
1682 return;
1683 }
1684
b35ba01e
CH
1685 BUILD_BUG_ON(PAGE_SIZE / sizeof(struct nvme_dsm_range) <
1686 NVME_DSM_MAX_RANGES);
1687
30e5e929 1688 queue->limits.discard_granularity = size;
f5d11840 1689
3831761e 1690 /* If discard is already enabled, don't reset queue limits */
70200574 1691 if (queue->limits.max_discard_sectors)
3831761e
JA
1692 return;
1693
5befc7c2
KB
1694 blk_queue_max_discard_sectors(queue, ctrl->max_discard_sectors);
1695 blk_queue_max_discard_segments(queue, ctrl->max_discard_segments);
e850fd16
CH
1696
1697 if (ctrl->quirks & NVME_QUIRK_DEALLOCATE_ZEROES)
30e5e929 1698 blk_queue_max_write_zeroes_sectors(queue, UINT_MAX);
1673f1f0
CH
1699}
1700
002fab04
CH
1701static bool nvme_ns_ids_equal(struct nvme_ns_ids *a, struct nvme_ns_ids *b)
1702{
1703 return uuid_equal(&a->uuid, &b->uuid) &&
1704 memcmp(&a->nguid, &b->nguid, sizeof(a->nguid)) == 0 &&
71010c30
NC
1705 memcmp(&a->eui64, &b->eui64, sizeof(a->eui64)) == 0 &&
1706 a->csi == b->csi;
002fab04
CH
1707}
1708
4020aad8 1709static int nvme_init_ms(struct nvme_ns *ns, struct nvme_id_ns *id)
d4609ea8 1710{
4020aad8
KB
1711 bool first = id->dps & NVME_NS_DPS_PI_FIRST;
1712 unsigned lbaf = nvme_lbaf_index(id->flbas);
d4609ea8 1713 struct nvme_ctrl *ctrl = ns->ctrl;
4020aad8
KB
1714 struct nvme_command c = { };
1715 struct nvme_id_ns_nvm *nvm;
1716 int ret = 0;
1717 u32 elbaf;
1718
1719 ns->pi_size = 0;
1720 ns->ms = le16_to_cpu(id->lbaf[lbaf].ms);
1721 if (!(ctrl->ctratt & NVME_CTRL_ATTR_ELBAS)) {
1722 ns->pi_size = sizeof(struct t10_pi_tuple);
1723 ns->guard_type = NVME_NVM_NS_16B_GUARD;
1724 goto set_pi;
1725 }
d4609ea8 1726
4020aad8
KB
1727 nvm = kzalloc(sizeof(*nvm), GFP_KERNEL);
1728 if (!nvm)
1729 return -ENOMEM;
d4609ea8 1730
4020aad8
KB
1731 c.identify.opcode = nvme_admin_identify;
1732 c.identify.nsid = cpu_to_le32(ns->head->ns_id);
1733 c.identify.cns = NVME_ID_CNS_CS_NS;
1734 c.identify.csi = NVME_CSI_NVM;
1735
1736 ret = nvme_submit_sync_cmd(ns->ctrl->admin_q, &c, nvm, sizeof(*nvm));
1737 if (ret)
1738 goto free_data;
1739
1740 elbaf = le32_to_cpu(nvm->elbaf[lbaf]);
1741
1742 /* no support for storage tag formats right now */
1743 if (nvme_elbaf_sts(elbaf))
1744 goto free_data;
1745
1746 ns->guard_type = nvme_elbaf_guard_type(elbaf);
1747 switch (ns->guard_type) {
1748 case NVME_NVM_NS_64B_GUARD:
1749 ns->pi_size = sizeof(struct crc64_pi_tuple);
1750 break;
1751 case NVME_NVM_NS_16B_GUARD:
1752 ns->pi_size = sizeof(struct t10_pi_tuple);
1753 break;
1754 default:
1755 break;
1756 }
1757
1758free_data:
1759 kfree(nvm);
1760set_pi:
1761 if (ns->pi_size && (first || ns->ms == ns->pi_size))
d4609ea8
CH
1762 ns->pi_type = id->dps & NVME_NS_DPS_PI_MASK;
1763 else
1764 ns->pi_type = 0;
1765
4020aad8
KB
1766 return ret;
1767}
1768
1769static void nvme_configure_metadata(struct nvme_ns *ns, struct nvme_id_ns *id)
1770{
1771 struct nvme_ctrl *ctrl = ns->ctrl;
1772
1773 if (nvme_init_ms(ns, id))
1774 return;
1775
d4609ea8
CH
1776 ns->features &= ~(NVME_NS_METADATA_SUPPORTED | NVME_NS_EXT_LBAS);
1777 if (!ns->ms || !(ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
363f6368
CH
1778 return;
1779
d4609ea8
CH
1780 if (ctrl->ops->flags & NVME_F_FABRICS) {
1781 /*
1782 * The NVMe over Fabrics specification only supports metadata as
1783 * part of the extended data LBA. We rely on HCA/HBA support to
1784 * remap the separate metadata buffer from the block layer.
1785 */
1786 if (WARN_ON_ONCE(!(id->flbas & NVME_NS_FLBAS_META_EXT)))
363f6368 1787 return;
d39ad2a4
KB
1788
1789 ns->features |= NVME_NS_EXT_LBAS;
1790
1791 /*
1792 * The current fabrics transport drivers support namespace
1793 * metadata formats only if nvme_ns_has_pi() returns true.
1794 * Suppress support for all other formats so the namespace will
1795 * have a 0 capacity and not be usable through the block stack.
1796 *
1797 * Note, this check will need to be modified if any drivers
1798 * gain the ability to use other metadata formats.
1799 */
1800 if (ctrl->max_integrity_segments && nvme_ns_has_pi(ns))
1801 ns->features |= NVME_NS_METADATA_SUPPORTED;
d4609ea8
CH
1802 } else {
1803 /*
1804 * For PCIe controllers, we can't easily remap the separate
1805 * metadata buffer from the block layer and thus require a
1806 * separate metadata buffer for block layer metadata/PI support.
1807 * We allow extended LBAs for the passthrough interface, though.
1808 */
1809 if (id->flbas & NVME_NS_FLBAS_META_EXT)
1810 ns->features |= NVME_NS_EXT_LBAS;
1811 else
1812 ns->features |= NVME_NS_METADATA_SUPPORTED;
1813 }
d4609ea8
CH
1814}
1815
658d9f7c
CH
1816static void nvme_set_queue_limits(struct nvme_ctrl *ctrl,
1817 struct request_queue *q)
1818{
c4485252 1819 bool vwc = ctrl->vwc & NVME_CTRL_VWC_PRESENT;
658d9f7c
CH
1820
1821 if (ctrl->max_hw_sectors) {
1822 u32 max_segments =
1823 (ctrl->max_hw_sectors / (NVME_CTRL_PAGE_SIZE >> 9)) + 1;
1824
1825 max_segments = min_not_zero(max_segments, ctrl->max_segments);
1826 blk_queue_max_hw_sectors(q, ctrl->max_hw_sectors);
1827 blk_queue_max_segments(q, min_t(u32, max_segments, USHRT_MAX));
1828 }
1829 blk_queue_virt_boundary(q, NVME_CTRL_PAGE_SIZE - 1);
52fde2c0 1830 blk_queue_dma_alignment(q, 3);
658d9f7c
CH
1831 blk_queue_write_cache(q, vwc, vwc);
1832}
1833
24b0b58c
CH
1834static void nvme_update_disk_info(struct gendisk *disk,
1835 struct nvme_ns *ns, struct nvme_id_ns *id)
1836{
e08f2ae8 1837 sector_t capacity = nvme_lba_to_sect(ns, le64_to_cpu(id->nsze));
cee160fd 1838 unsigned short bs = 1 << ns->lba_shift;
68ab60ca 1839 u32 atomic_bs, phys_bs, io_opt = 0;
24b0b58c 1840
13f0b26b
CH
1841 /*
1842 * The block layer can't support LBA sizes larger than the page size
1843 * yet, so catch this early and don't allow block I/O.
1844 */
01fa0174 1845 if (ns->lba_shift > PAGE_SHIFT) {
13f0b26b 1846 capacity = 0;
01fa0174
SG
1847 bs = (1 << 9);
1848 }
f9d5f457 1849
24b0b58c
CH
1850 blk_integrity_unregister(disk);
1851
68ab60ca 1852 atomic_bs = phys_bs = bs;
81adb863
BVA
1853 if (id->nabo == 0) {
1854 /*
1855 * Bit 1 indicates whether NAWUPF is defined for this namespace
1856 * and whether it should be used instead of AWUPF. If NAWUPF ==
1857 * 0 then AWUPF must be used instead.
1858 */
92decf11 1859 if (id->nsfeat & NVME_NS_FEAT_ATOMICS && id->nawupf)
81adb863
BVA
1860 atomic_bs = (1 + le16_to_cpu(id->nawupf)) * bs;
1861 else
1862 atomic_bs = (1 + ns->ctrl->subsys->awupf) * bs;
81adb863 1863 }
31fdad7b 1864
92decf11 1865 if (id->nsfeat & NVME_NS_FEAT_IO_OPT) {
81adb863 1866 /* NPWG = Namespace Preferred Write Granularity */
31fdad7b 1867 phys_bs = bs * (1 + le16_to_cpu(id->npwg));
81adb863 1868 /* NOWS = Namespace Optimal Write Size */
31fdad7b 1869 io_opt = bs * (1 + le16_to_cpu(id->nows));
81adb863
BVA
1870 }
1871
cee160fd 1872 blk_queue_logical_block_size(disk->queue, bs);
81adb863
BVA
1873 /*
1874 * Linux filesystems assume writing a single physical block is
1875 * an atomic operation. Hence limit the physical block size to the
1876 * value of the Atomic Write Unit Power Fail parameter.
1877 */
1878 blk_queue_physical_block_size(disk->queue, min(phys_bs, atomic_bs));
1879 blk_queue_io_min(disk->queue, phys_bs);
1880 blk_queue_io_opt(disk->queue, io_opt);
cee160fd 1881
b29f8485
MG
1882 /*
1883 * Register a metadata profile for PI, or the plain non-integrity NVMe
1884 * metadata masquerading as Type 0 if supported, otherwise reject block
1885 * I/O to namespaces with metadata except when the namespace supports
1886 * PI, as it can strip/insert in that case.
1887 */
1888 if (ns->ms) {
1889 if (IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY) &&
1890 (ns->features & NVME_NS_METADATA_SUPPORTED))
4020aad8 1891 nvme_init_integrity(disk, ns,
95093350 1892 ns->ctrl->max_integrity_segments);
b29f8485
MG
1893 else if (!nvme_ns_has_pi(ns))
1894 capacity = 0;
1895 }
1896
449f4ec9 1897 set_capacity_and_notify(disk, capacity);
b1aafb35 1898
26318571 1899 nvme_config_discard(disk, ns);
5befc7c2
KB
1900 blk_queue_max_write_zeroes_sectors(disk->queue,
1901 ns->ctrl->max_zeroes_sectors);
24b0b58c
CH
1902}
1903
1e4ea66a
CH
1904static bool nvme_ns_is_readonly(struct nvme_ns *ns, struct nvme_ns_info *info)
1905{
1906 return info->is_readonly || test_bit(NVME_NS_FORCE_RO, &ns->flags);
1907}
1908
e83d776f
KB
1909static inline bool nvme_first_scan(struct gendisk *disk)
1910{
1911 /* nvme_alloc_ns() scans the disk prior to adding it */
50b4aecf 1912 return !disk_live(disk);
e83d776f
KB
1913}
1914
1915static void nvme_set_chunk_sectors(struct nvme_ns *ns, struct nvme_id_ns *id)
1916{
1917 struct nvme_ctrl *ctrl = ns->ctrl;
1918 u32 iob;
1919
1920 if ((ctrl->quirks & NVME_QUIRK_STRIPE_SIZE) &&
1921 is_power_of_2(ctrl->max_hw_sectors))
1922 iob = ctrl->max_hw_sectors;
1923 else
1924 iob = nvme_lba_to_sect(ns, le16_to_cpu(id->noiob));
1925
1926 if (!iob)
1927 return;
1928
1929 if (!is_power_of_2(iob)) {
1930 if (nvme_first_scan(ns->disk))
1931 pr_warn("%s: ignoring unaligned IO boundary:%u\n",
1932 ns->disk->disk_name, iob);
1933 return;
1934 }
1935
1936 if (blk_queue_is_zoned(ns->disk->queue)) {
1937 if (nvme_first_scan(ns->disk))
1938 pr_warn("%s: ignoring zoned namespace IO boundary\n",
1939 ns->disk->disk_name);
1940 return;
1941 }
1942
1943 blk_queue_chunk_sectors(ns->queue, iob);
1944}
1945
eb867ee9
JG
1946static int nvme_update_ns_info_generic(struct nvme_ns *ns,
1947 struct nvme_ns_info *info)
1948{
1949 blk_mq_freeze_queue(ns->disk->queue);
1950 nvme_set_queue_limits(ns->ctrl, ns->queue);
1951 set_disk_ro(ns->disk, nvme_ns_is_readonly(ns, info));
1952 blk_mq_unfreeze_queue(ns->disk->queue);
1953
1954 if (nvme_ns_head_multipath(ns->head)) {
1955 blk_mq_freeze_queue(ns->head->disk->queue);
1956 set_disk_ro(ns->head->disk, nvme_ns_is_readonly(ns, info));
1957 nvme_mpath_revalidate_paths(ns);
1958 blk_stack_limits(&ns->head->disk->queue->limits,
1959 &ns->queue->limits, 0);
1960 ns->head->disk->flags |= GENHD_FL_HIDDEN;
1961 blk_mq_unfreeze_queue(ns->head->disk->queue);
1962 }
1963
1964 /* Hide the block-interface for these devices */
1965 ns->disk->flags |= GENHD_FL_HIDDEN;
1966 set_bit(NVME_NS_READY, &ns->flags);
1967
1968 return 0;
1969}
1970
1a893c2b
CH
1971static int nvme_update_ns_info_block(struct nvme_ns *ns,
1972 struct nvme_ns_info *info)
ac81bfa9 1973{
1a893c2b
CH
1974 struct nvme_id_ns *id;
1975 unsigned lbaf;
240e6ee2 1976 int ret;
1673f1f0 1977
1a893c2b
CH
1978 ret = nvme_identify_ns(ns->ctrl, info->nsid, &id);
1979 if (ret)
1980 return ret;
1981
f9d5f457 1982 blk_mq_freeze_queue(ns->disk->queue);
1a893c2b 1983 lbaf = nvme_lbaf_index(id->flbas);
240e6ee2 1984 ns->lba_shift = id->lbaf[lbaf].ds;
8b7c0ff2 1985 nvme_set_queue_limits(ns->ctrl, ns->queue);
38adf94e 1986
363f6368 1987 nvme_configure_metadata(ns, id);
73d90386
DLM
1988 nvme_set_chunk_sectors(ns, id);
1989 nvme_update_disk_info(ns->disk, ns, id);
1990
8b7c0ff2 1991 if (ns->head->ids.csi == NVME_CSI_ZNS) {
d525c3c0 1992 ret = nvme_update_zone_info(ns, lbaf);
e06b425b
CH
1993 if (ret) {
1994 blk_mq_unfreeze_queue(ns->disk->queue);
1995 goto out;
1996 }
71010c30
NC
1997 }
1998
1b96f862
CH
1999 /*
2000 * Only set the DEAC bit if the device guarantees that reads from
2001 * deallocated data return zeroes. While the DEAC bit does not
2002 * require that, it must be a no-op if reads from deallocated data
2003 * do not return zeroes.
2004 */
2005 if ((id->dlfeat & 0x7) == 0x1 && (id->dlfeat & (1 << 3)))
2006 ns->features |= NVME_NS_DEAC;
1e4ea66a 2007 set_disk_ro(ns->disk, nvme_ns_is_readonly(ns, info));
e7d65803 2008 set_bit(NVME_NS_READY, &ns->flags);
f9d5f457 2009 blk_mq_unfreeze_queue(ns->disk->queue);
1673f1f0 2010
3a9967ba
CH
2011 if (blk_queue_is_zoned(ns->queue)) {
2012 ret = nvme_revalidate_zones(ns);
8685699c 2013 if (ret && !nvme_first_scan(ns->disk))
e06b425b 2014 goto out;
b29f8485
MG
2015 }
2016
30897388 2017 if (nvme_ns_head_multipath(ns->head)) {
f9d5f457 2018 blk_mq_freeze_queue(ns->head->disk->queue);
32acab31 2019 nvme_update_disk_info(ns->head->disk, ns, id);
1e4ea66a 2020 set_disk_ro(ns->head->disk, nvme_ns_is_readonly(ns, info));
e7d65803 2021 nvme_mpath_revalidate_paths(ns);
b9b1a5d7
CH
2022 blk_stack_limits(&ns->head->disk->queue->limits,
2023 &ns->queue->limits, 0);
471aa704 2024 disk_update_readahead(ns->head->disk);
f9d5f457 2025 blk_mq_unfreeze_queue(ns->head->disk->queue);
8f676b85 2026 }
ac81bfa9 2027
e06b425b
CH
2028 ret = 0;
2029out:
a9e0e6bc
CH
2030 /*
2031 * If probing fails due an unsupported feature, hide the block device,
2032 * but still allow other access.
2033 */
2034 if (ret == -ENODEV) {
2035 ns->disk->flags |= GENHD_FL_HIDDEN;
602e57c9 2036 set_bit(NVME_NS_READY, &ns->flags);
a9e0e6bc
CH
2037 ret = 0;
2038 }
1a893c2b 2039 kfree(id);
240e6ee2
KB
2040 return ret;
2041}
2042
1a893c2b
CH
2043static int nvme_update_ns_info(struct nvme_ns *ns, struct nvme_ns_info *info)
2044{
2045 switch (info->ids.csi) {
2046 case NVME_CSI_ZNS:
2047 if (!IS_ENABLED(CONFIG_BLK_DEV_ZONED)) {
eb867ee9
JG
2048 dev_info(ns->ctrl->device,
2049 "block device for nsid %u not supported without CONFIG_BLK_DEV_ZONED\n",
1a893c2b 2050 info->nsid);
eb867ee9 2051 return nvme_update_ns_info_generic(ns, info);
1a893c2b
CH
2052 }
2053 return nvme_update_ns_info_block(ns, info);
2054 case NVME_CSI_NVM:
2055 return nvme_update_ns_info_block(ns, info);
2056 default:
eb867ee9
JG
2057 dev_info(ns->ctrl->device,
2058 "block device for nsid %u not supported (csi %u)\n",
2059 info->nsid, info->ids.csi);
2060 return nvme_update_ns_info_generic(ns, info);
1a893c2b
CH
2061 }
2062}
2063
1673f1f0
CH
2064static char nvme_pr_type(enum pr_type type)
2065{
2066 switch (type) {
2067 case PR_WRITE_EXCLUSIVE:
2068 return 1;
2069 case PR_EXCLUSIVE_ACCESS:
2070 return 2;
2071 case PR_WRITE_EXCLUSIVE_REG_ONLY:
2072 return 3;
2073 case PR_EXCLUSIVE_ACCESS_REG_ONLY:
2074 return 4;
2075 case PR_WRITE_EXCLUSIVE_ALL_REGS:
2076 return 5;
2077 case PR_EXCLUSIVE_ACCESS_ALL_REGS:
2078 return 6;
2079 default:
2080 return 0;
2081 }
50ab19d8 2082}
1673f1f0 2083
f1cf35e1
CH
2084static int nvme_send_ns_head_pr_command(struct block_device *bdev,
2085 struct nvme_command *c, u8 data[16])
2086{
2087 struct nvme_ns_head *head = bdev->bd_disk->private_data;
2088 int srcu_idx = srcu_read_lock(&head->srcu);
2089 struct nvme_ns *ns = nvme_find_path(head);
2090 int ret = -EWOULDBLOCK;
2091
2092 if (ns) {
2093 c->common.nsid = cpu_to_le32(ns->head->ns_id);
2094 ret = nvme_submit_sync_cmd(ns->queue, c, data, 16);
2095 }
2096 srcu_read_unlock(&head->srcu, srcu_idx);
2097 return ret;
2098}
2099
2100static int nvme_send_ns_pr_command(struct nvme_ns *ns, struct nvme_command *c,
2101 u8 data[16])
2102{
2103 c->common.nsid = cpu_to_le32(ns->head->ns_id);
2104 return nvme_submit_sync_cmd(ns->queue, c, data, 16);
2105}
2106
7fb42780
MC
2107static int nvme_sc_to_pr_err(int nvme_sc)
2108{
2109 if (nvme_is_path_error(nvme_sc))
2110 return PR_STS_PATH_FAILED;
2111
2112 switch (nvme_sc) {
2113 case NVME_SC_SUCCESS:
2114 return PR_STS_SUCCESS;
2115 case NVME_SC_RESERVATION_CONFLICT:
2116 return PR_STS_RESERVATION_CONFLICT;
2117 case NVME_SC_ONCS_NOT_SUPPORTED:
2118 return -EOPNOTSUPP;
2119 case NVME_SC_BAD_ATTRIBUTES:
2120 case NVME_SC_INVALID_OPCODE:
2121 case NVME_SC_INVALID_FIELD:
2122 case NVME_SC_INVALID_NS:
2123 return -EINVAL;
2124 default:
2125 return PR_STS_IOERR;
2126 }
2127}
2128
1673f1f0
CH
2129static int nvme_pr_command(struct block_device *bdev, u32 cdw10,
2130 u64 key, u64 sa_key, u8 op)
2131{
cc72c442 2132 struct nvme_command c = { };
1673f1f0 2133 u8 data[16] = { 0, };
7fb42780 2134 int ret;
1673f1f0
CH
2135
2136 put_unaligned_le64(key, &data[0]);
2137 put_unaligned_le64(sa_key, &data[8]);
2138
1673f1f0 2139 c.common.opcode = op;
b7c8f366 2140 c.common.cdw10 = cpu_to_le32(cdw10);
1673f1f0 2141
f1cf35e1
CH
2142 if (IS_ENABLED(CONFIG_NVME_MULTIPATH) &&
2143 bdev->bd_disk->fops == &nvme_ns_head_ops)
7fb42780
MC
2144 ret = nvme_send_ns_head_pr_command(bdev, &c, data);
2145 else
2146 ret = nvme_send_ns_pr_command(bdev->bd_disk->private_data, &c,
2147 data);
2148 if (ret < 0)
2149 return ret;
2150
2151 return nvme_sc_to_pr_err(ret);
1673f1f0
CH
2152}
2153
2154static int nvme_pr_register(struct block_device *bdev, u64 old,
2155 u64 new, unsigned flags)
2156{
2157 u32 cdw10;
2158
2159 if (flags & ~PR_FL_IGNORE_KEY)
2160 return -EOPNOTSUPP;
2161
2162 cdw10 = old ? 2 : 0;
2163 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0;
2164 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */
2165 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register);
2166}
2167
2168static int nvme_pr_reserve(struct block_device *bdev, u64 key,
2169 enum pr_type type, unsigned flags)
2170{
2171 u32 cdw10;
2172
2173 if (flags & ~PR_FL_IGNORE_KEY)
2174 return -EOPNOTSUPP;
2175
2176 cdw10 = nvme_pr_type(type) << 8;
2177 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0);
2178 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire);
2179}
2180
2181static int nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new,
2182 enum pr_type type, bool abort)
2183{
e9a9853c 2184 u32 cdw10 = nvme_pr_type(type) << 8 | (abort ? 2 : 1);
f1c772d5 2185
1673f1f0
CH
2186 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire);
2187}
2188
2189static int nvme_pr_clear(struct block_device *bdev, u64 key)
2190{
c292a337 2191 u32 cdw10 = 1 | (key ? 0 : 1 << 3);
f1c772d5 2192
c292a337 2193 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
1673f1f0
CH
2194}
2195
2196static int nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type)
2197{
c292a337 2198 u32 cdw10 = nvme_pr_type(type) << 8 | (key ? 0 : 1 << 3);
f1c772d5 2199
1673f1f0
CH
2200 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release);
2201}
2202
1496bd49 2203const struct pr_ops nvme_pr_ops = {
1673f1f0
CH
2204 .pr_register = nvme_pr_register,
2205 .pr_reserve = nvme_pr_reserve,
2206 .pr_release = nvme_pr_release,
2207 .pr_preempt = nvme_pr_preempt,
2208 .pr_clear = nvme_pr_clear,
2209};
2210
a98e58e5 2211#ifdef CONFIG_BLK_SED_OPAL
94cc781f 2212static int nvme_sec_submit(void *data, u16 spsp, u8 secp, void *buffer, size_t len,
4f1244c8 2213 bool send)
a98e58e5 2214{
4f1244c8 2215 struct nvme_ctrl *ctrl = data;
cc72c442 2216 struct nvme_command cmd = { };
a98e58e5 2217
a98e58e5
SB
2218 if (send)
2219 cmd.common.opcode = nvme_admin_security_send;
2220 else
2221 cmd.common.opcode = nvme_admin_security_recv;
a98e58e5 2222 cmd.common.nsid = 0;
b7c8f366
CK
2223 cmd.common.cdw10 = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8);
2224 cmd.common.cdw11 = cpu_to_le32(len);
a98e58e5 2225
6b46fa02 2226 return __nvme_submit_sync_cmd(ctrl->admin_q, &cmd, NULL, buffer, len,
be42a33b 2227 NVME_QID_ANY, 1, 0);
a98e58e5 2228}
94cc781f
CH
2229
2230static void nvme_configure_opal(struct nvme_ctrl *ctrl, bool was_suspended)
2231{
2232 if (ctrl->oacs & NVME_CTRL_OACS_SEC_SUPP) {
2233 if (!ctrl->opal_dev)
2234 ctrl->opal_dev = init_opal_dev(ctrl, &nvme_sec_submit);
2235 else if (was_suspended)
2236 opal_unlock_from_suspend(ctrl->opal_dev);
2237 } else {
2238 free_opal_dev(ctrl->opal_dev);
2239 ctrl->opal_dev = NULL;
2240 }
2241}
2242#else
2243static void nvme_configure_opal(struct nvme_ctrl *ctrl, bool was_suspended)
2244{
2245}
a98e58e5
SB
2246#endif /* CONFIG_BLK_SED_OPAL */
2247
8b4fb0f9
CH
2248#ifdef CONFIG_BLK_DEV_ZONED
2249static int nvme_report_zones(struct gendisk *disk, sector_t sector,
2250 unsigned int nr_zones, report_zones_cb cb, void *data)
2251{
2252 return nvme_ns_report_zones(disk->private_data, sector, nr_zones, cb,
2253 data);
2254}
2255#else
2256#define nvme_report_zones NULL
2257#endif /* CONFIG_BLK_DEV_ZONED */
2258
ba4fb320 2259static const struct block_device_operations nvme_bdev_ops = {
1673f1f0
CH
2260 .owner = THIS_MODULE,
2261 .ioctl = nvme_ioctl,
a25d4261 2262 .compat_ioctl = blkdev_compat_ptr_ioctl,
1673f1f0
CH
2263 .open = nvme_open,
2264 .release = nvme_release,
2265 .getgeo = nvme_getgeo,
240e6ee2 2266 .report_zones = nvme_report_zones,
1673f1f0
CH
2267 .pr_ops = &nvme_pr_ops,
2268};
2269
e6d275de
CH
2270static int nvme_wait_ready(struct nvme_ctrl *ctrl, u32 mask, u32 val,
2271 u32 timeout, const char *op)
5fd4ce1b 2272{
e6d275de
CH
2273 unsigned long timeout_jiffies = jiffies + timeout * HZ;
2274 u32 csts;
5fd4ce1b
CH
2275 int ret;
2276
2277 while ((ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts)) == 0) {
0df1e4f5
KB
2278 if (csts == ~0)
2279 return -ENODEV;
e6d275de 2280 if ((csts & mask) == val)
5fd4ce1b
CH
2281 break;
2282
3e98c244 2283 usleep_range(1000, 2000);
5fd4ce1b
CH
2284 if (fatal_signal_pending(current))
2285 return -EINTR;
354201c5 2286 if (time_after(jiffies, timeout_jiffies)) {
1b3c47c1 2287 dev_err(ctrl->device,
94d2e705 2288 "Device not ready; aborting %s, CSTS=0x%x\n",
e6d275de 2289 op, csts);
5fd4ce1b
CH
2290 return -ENODEV;
2291 }
2292 }
2293
2294 return ret;
2295}
2296
285b6e9b 2297int nvme_disable_ctrl(struct nvme_ctrl *ctrl, bool shutdown)
5fd4ce1b
CH
2298{
2299 int ret;
2300
2301 ctrl->ctrl_config &= ~NVME_CC_SHN_MASK;
285b6e9b
CH
2302 if (shutdown)
2303 ctrl->ctrl_config |= NVME_CC_SHN_NORMAL;
2304 else
2305 ctrl->ctrl_config &= ~NVME_CC_ENABLE;
5fd4ce1b
CH
2306
2307 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2308 if (ret)
2309 return ret;
54adc010 2310
285b6e9b
CH
2311 if (shutdown) {
2312 return nvme_wait_ready(ctrl, NVME_CSTS_SHST_MASK,
2313 NVME_CSTS_SHST_CMPLT,
2314 ctrl->shutdown_timeout, "shutdown");
2315 }
b5a10c5f 2316 if (ctrl->quirks & NVME_QUIRK_DELAY_BEFORE_CHK_RDY)
54adc010 2317 msleep(NVME_QUIRK_DELAY_AMOUNT);
e6d275de
CH
2318 return nvme_wait_ready(ctrl, NVME_CSTS_RDY, 0,
2319 (NVME_CAP_TIMEOUT(ctrl->cap) + 1) / 2, "reset");
5fd4ce1b 2320}
576d55d6 2321EXPORT_SYMBOL_GPL(nvme_disable_ctrl);
5fd4ce1b 2322
c0f2f45b 2323int nvme_enable_ctrl(struct nvme_ctrl *ctrl)
5fd4ce1b 2324{
6c3c05b0 2325 unsigned dev_page_min;
354201c5 2326 u32 timeout;
5fd4ce1b
CH
2327 int ret;
2328
c0f2f45b
SG
2329 ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &ctrl->cap);
2330 if (ret) {
2331 dev_err(ctrl->device, "Reading CAP failed (%d)\n", ret);
2332 return ret;
2333 }
2334 dev_page_min = NVME_CAP_MPSMIN(ctrl->cap) + 12;
2335
6c3c05b0 2336 if (NVME_CTRL_PAGE_SHIFT < dev_page_min) {
1b3c47c1 2337 dev_err(ctrl->device,
5fd4ce1b 2338 "Minimum device page size %u too large for host (%u)\n",
6c3c05b0 2339 1 << dev_page_min, 1 << NVME_CTRL_PAGE_SHIFT);
5fd4ce1b
CH
2340 return -ENODEV;
2341 }
2342
71010c30
NC
2343 if (NVME_CAP_CSS(ctrl->cap) & NVME_CAP_CSS_CSI)
2344 ctrl->ctrl_config = NVME_CC_CSS_CSI;
2345 else
2346 ctrl->ctrl_config = NVME_CC_CSS_NVM;
354201c5
CH
2347
2348 if (ctrl->cap & NVME_CAP_CRMS_CRWMS) {
2349 u32 crto;
2350
2351 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CRTO, &crto);
2352 if (ret) {
2353 dev_err(ctrl->device, "Reading CRTO failed (%d)\n",
2354 ret);
2355 return ret;
2356 }
2357
2358 if (ctrl->cap & NVME_CAP_CRMS_CRIMS) {
2359 ctrl->ctrl_config |= NVME_CC_CRIME;
2360 timeout = NVME_CRTO_CRIMT(crto);
2361 } else {
2362 timeout = NVME_CRTO_CRWMT(crto);
2363 }
2364 } else {
2365 timeout = NVME_CAP_TIMEOUT(ctrl->cap);
2366 }
2367
6c3c05b0 2368 ctrl->ctrl_config |= (NVME_CTRL_PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT;
60b43f62 2369 ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE;
5fd4ce1b 2370 ctrl->ctrl_config |= NVME_CC_IOSQES | NVME_CC_IOCQES;
aa41d2fe
NC
2371 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2372 if (ret)
2373 return ret;
5fd4ce1b 2374
aa41d2fe
NC
2375 /* Flush write to device (required if transport is PCI) */
2376 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CC, &ctrl->ctrl_config);
2377 if (ret)
2378 return ret;
2379
2380 ctrl->ctrl_config |= NVME_CC_ENABLE;
5fd4ce1b
CH
2381 ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config);
2382 if (ret)
2383 return ret;
e6d275de
CH
2384 return nvme_wait_ready(ctrl, NVME_CSTS_RDY, NVME_CSTS_RDY,
2385 (timeout + 1) / 2, "initialisation");
5fd4ce1b 2386}
576d55d6 2387EXPORT_SYMBOL_GPL(nvme_enable_ctrl);
5fd4ce1b 2388
dbf86b39
JD
2389static int nvme_configure_timestamp(struct nvme_ctrl *ctrl)
2390{
2391 __le64 ts;
2392 int ret;
2393
2394 if (!(ctrl->oncs & NVME_CTRL_ONCS_TIMESTAMP))
2395 return 0;
2396
2397 ts = cpu_to_le64(ktime_to_ms(ktime_get_real()));
2398 ret = nvme_set_features(ctrl, NVME_FEAT_TIMESTAMP, 0, &ts, sizeof(ts),
2399 NULL);
2400 if (ret)
2401 dev_warn_once(ctrl->device,
2402 "could not set timestamp (%d)\n", ret);
2403 return ret;
2404}
2405
4020aad8 2406static int nvme_configure_host_options(struct nvme_ctrl *ctrl)
49cd84b6
KB
2407{
2408 struct nvme_feat_host_behavior *host;
4020aad8 2409 u8 acre = 0, lbafee = 0;
49cd84b6
KB
2410 int ret;
2411
2412 /* Don't bother enabling the feature if retry delay is not reported */
4020aad8
KB
2413 if (ctrl->crdt[0])
2414 acre = NVME_ENABLE_ACRE;
2415 if (ctrl->ctratt & NVME_CTRL_ATTR_ELBAS)
2416 lbafee = NVME_ENABLE_LBAFEE;
2417
2418 if (!acre && !lbafee)
49cd84b6
KB
2419 return 0;
2420
2421 host = kzalloc(sizeof(*host), GFP_KERNEL);
2422 if (!host)
2423 return 0;
2424
4020aad8
KB
2425 host->acre = acre;
2426 host->lbafee = lbafee;
49cd84b6
KB
2427 ret = nvme_set_features(ctrl, NVME_FEAT_HOST_BEHAVIOR, 0,
2428 host, sizeof(*host), NULL);
2429 kfree(host);
2430 return ret;
2431}
2432
ebd8a93a
AB
2433/*
2434 * The function checks whether the given total (exlat + enlat) latency of
2435 * a power state allows the latter to be used as an APST transition target.
2436 * It does so by comparing the latency to the primary and secondary latency
2437 * tolerances defined by module params. If there's a match, the corresponding
2438 * timeout value is returned and the matching tolerance index (1 or 2) is
2439 * reported.
2440 */
2441static bool nvme_apst_get_transition_time(u64 total_latency,
2442 u64 *transition_time, unsigned *last_index)
2443{
2444 if (total_latency <= apst_primary_latency_tol_us) {
2445 if (*last_index == 1)
2446 return false;
2447 *last_index = 1;
2448 *transition_time = apst_primary_timeout_ms;
2449 return true;
2450 }
2451 if (apst_secondary_timeout_ms &&
2452 total_latency <= apst_secondary_latency_tol_us) {
2453 if (*last_index <= 2)
2454 return false;
2455 *last_index = 2;
2456 *transition_time = apst_secondary_timeout_ms;
2457 return true;
2458 }
2459 return false;
2460}
2461
60df5de9
CH
2462/*
2463 * APST (Autonomous Power State Transition) lets us program a table of power
2464 * state transitions that the controller will perform automatically.
ebd8a93a
AB
2465 *
2466 * Depending on module params, one of the two supported techniques will be used:
2467 *
2468 * - If the parameters provide explicit timeouts and tolerances, they will be
2469 * used to build a table with up to 2 non-operational states to transition to.
2470 * The default parameter values were selected based on the values used by
2471 * Microsoft's and Intel's NVMe drivers. Yet, since we don't implement dynamic
2472 * regeneration of the APST table in the event of switching between external
2473 * and battery power, the timeouts and tolerances reflect a compromise
2474 * between values used by Microsoft for AC and battery scenarios.
2475 * - If not, we'll configure the table with a simple heuristic: we are willing
2476 * to spend at most 2% of the time transitioning between power states.
2477 * Therefore, when running in any given state, we will enter the next
2478 * lower-power non-operational state after waiting 50 * (enlat + exlat)
2479 * microseconds, as long as that state's exit latency is under the requested
2480 * maximum latency.
60df5de9
CH
2481 *
2482 * We will not autonomously enter any non-operational state for which the total
2483 * latency exceeds ps_max_latency_us.
2484 *
2485 * Users can set ps_max_latency_us to zero to turn off APST.
2486 */
634b8325 2487static int nvme_configure_apst(struct nvme_ctrl *ctrl)
c5552fde 2488{
c5552fde 2489 struct nvme_feat_auto_pst *table;
60df5de9 2490 unsigned apste = 0;
fb0dc399 2491 u64 max_lat_us = 0;
60df5de9 2492 __le64 target = 0;
fb0dc399 2493 int max_ps = -1;
60df5de9 2494 int state;
c5552fde 2495 int ret;
ebd8a93a 2496 unsigned last_lt_index = UINT_MAX;
c5552fde
AL
2497
2498 /*
2499 * If APST isn't supported or if we haven't been initialized yet,
2500 * then don't do anything.
2501 */
2502 if (!ctrl->apsta)
634b8325 2503 return 0;
c5552fde
AL
2504
2505 if (ctrl->npss > 31) {
2506 dev_warn(ctrl->device, "NPSS is invalid; not using APST\n");
634b8325 2507 return 0;
c5552fde
AL
2508 }
2509
2510 table = kzalloc(sizeof(*table), GFP_KERNEL);
2511 if (!table)
634b8325 2512 return 0;
c5552fde 2513
76a5af84 2514 if (!ctrl->apst_enabled || ctrl->ps_max_latency_us == 0) {
c5552fde 2515 /* Turn off APST. */
fb0dc399 2516 dev_dbg(ctrl->device, "APST disabled\n");
60df5de9
CH
2517 goto done;
2518 }
c5552fde 2519
60df5de9
CH
2520 /*
2521 * Walk through all states from lowest- to highest-power.
2522 * According to the spec, lower-numbered states use more power. NPSS,
2523 * despite the name, is the index of the lowest-power state, not the
2524 * number of states.
2525 */
2526 for (state = (int)ctrl->npss; state >= 0; state--) {
2527 u64 total_latency_us, exit_latency_us, transition_ms;
da87591b 2528
60df5de9
CH
2529 if (target)
2530 table->entries[state] = target;
c5552fde 2531
c5552fde 2532 /*
60df5de9
CH
2533 * Don't allow transitions to the deepest state if it's quirked
2534 * off.
c5552fde 2535 */
60df5de9
CH
2536 if (state == ctrl->npss &&
2537 (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS))
2538 continue;
fb0dc399 2539
60df5de9
CH
2540 /*
2541 * Is this state a useful non-operational state for higher-power
2542 * states to autonomously transition to?
2543 */
2544 if (!(ctrl->psd[state].flags & NVME_PS_FLAGS_NON_OP_STATE))
2545 continue;
fb0dc399 2546
60df5de9
CH
2547 exit_latency_us = (u64)le32_to_cpu(ctrl->psd[state].exit_lat);
2548 if (exit_latency_us > ctrl->ps_max_latency_us)
2549 continue;
c5552fde 2550
60df5de9
CH
2551 total_latency_us = exit_latency_us +
2552 le32_to_cpu(ctrl->psd[state].entry_lat);
fb0dc399 2553
60df5de9 2554 /*
ebd8a93a
AB
2555 * This state is good. It can be used as the APST idle target
2556 * for higher power states.
60df5de9 2557 */
ebd8a93a
AB
2558 if (apst_primary_timeout_ms && apst_primary_latency_tol_us) {
2559 if (!nvme_apst_get_transition_time(total_latency_us,
2560 &transition_ms, &last_lt_index))
2561 continue;
2562 } else {
2563 transition_ms = total_latency_us + 19;
2564 do_div(transition_ms, 20);
2565 if (transition_ms > (1 << 24) - 1)
2566 transition_ms = (1 << 24) - 1;
2567 }
60df5de9
CH
2568
2569 target = cpu_to_le64((state << 3) | (transition_ms << 8));
2570 if (max_ps == -1)
2571 max_ps = state;
2572 if (total_latency_us > max_lat_us)
2573 max_lat_us = total_latency_us;
c5552fde
AL
2574 }
2575
60df5de9
CH
2576 if (max_ps == -1)
2577 dev_dbg(ctrl->device, "APST enabled but no non-operational states are available\n");
2578 else
2579 dev_dbg(ctrl->device, "APST enabled: max PS = %d, max round-trip latency = %lluus, table = %*phN\n",
2580 max_ps, max_lat_us, (int)sizeof(*table), table);
2581 apste = 1;
2582
2583done:
c5552fde
AL
2584 ret = nvme_set_features(ctrl, NVME_FEAT_AUTO_PST, apste,
2585 table, sizeof(*table), NULL);
2586 if (ret)
2587 dev_err(ctrl->device, "failed to set APST feature (%d)\n", ret);
c5552fde 2588 kfree(table);
634b8325 2589 return ret;
c5552fde
AL
2590}
2591
2592static void nvme_set_latency_tolerance(struct device *dev, s32 val)
2593{
2594 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
2595 u64 latency;
2596
2597 switch (val) {
2598 case PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT:
2599 case PM_QOS_LATENCY_ANY:
2600 latency = U64_MAX;
2601 break;
2602
2603 default:
2604 latency = val;
2605 }
2606
2607 if (ctrl->ps_max_latency_us != latency) {
2608 ctrl->ps_max_latency_us = latency;
53fe2a30
CH
2609 if (ctrl->state == NVME_CTRL_LIVE)
2610 nvme_configure_apst(ctrl);
c5552fde
AL
2611 }
2612}
2613
bd4da3ab
AL
2614struct nvme_core_quirk_entry {
2615 /*
2616 * NVMe model and firmware strings are padded with spaces. For
2617 * simplicity, strings in the quirk table are padded with NULLs
2618 * instead.
2619 */
2620 u16 vid;
2621 const char *mn;
2622 const char *fr;
2623 unsigned long quirks;
2624};
2625
2626static const struct nvme_core_quirk_entry core_quirks[] = {
c5552fde 2627 {
be56945c
AL
2628 /*
2629 * This Toshiba device seems to die using any APST states. See:
2630 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1678184/comments/11
2631 */
2632 .vid = 0x1179,
2633 .mn = "THNSF5256GPUK TOSHIBA",
c5552fde 2634 .quirks = NVME_QUIRK_NO_APST,
cb32de1b
ML
2635 },
2636 {
2637 /*
2638 * This LiteON CL1-3D*-Q11 firmware version has a race
2639 * condition associated with actions related to suspend to idle
2640 * LiteON has resolved the problem in future firmware
2641 */
2642 .vid = 0x14a4,
2643 .fr = "22301111",
2644 .quirks = NVME_QUIRK_SIMPLE_SUSPEND,
5a6254d5
EM
2645 },
2646 {
2647 /*
2648 * This Kioxia CD6-V Series / HPE PE8030 device times out and
2649 * aborts I/O during any load, but more easily reproducible
2650 * with discards (fstrim).
2651 *
2652 * The device is left in a state where it is also not possible
2653 * to use "nvme set-feature" to disable APST, but booting with
2654 * nvme_core.default_ps_max_latency=0 works.
2655 */
2656 .vid = 0x1e0f,
2657 .mn = "KCD6XVUL6T40",
2658 .quirks = NVME_QUIRK_NO_APST,
e6487833
CH
2659 },
2660 {
2661 /*
2662 * The external Samsung X5 SSD fails initialization without a
2663 * delay before checking if it is ready and has a whole set of
2664 * other problems. To make this even more interesting, it
2665 * shares the PCI ID with internal Samsung 970 Evo Plus that
2666 * does not need or want these quirks.
2667 */
2668 .vid = 0x144d,
2669 .mn = "Samsung Portable SSD X5",
2670 .quirks = NVME_QUIRK_DELAY_BEFORE_CHK_RDY |
2671 NVME_QUIRK_NO_DEEPEST_PS |
2672 NVME_QUIRK_IGNORE_DEV_SUBNQN,
be56945c 2673 }
bd4da3ab
AL
2674};
2675
2676/* match is null-terminated but idstr is space-padded. */
2677static bool string_matches(const char *idstr, const char *match, size_t len)
2678{
2679 size_t matchlen;
2680
2681 if (!match)
2682 return true;
2683
2684 matchlen = strlen(match);
2685 WARN_ON_ONCE(matchlen > len);
2686
2687 if (memcmp(idstr, match, matchlen))
2688 return false;
2689
2690 for (; matchlen < len; matchlen++)
2691 if (idstr[matchlen] != ' ')
2692 return false;
2693
2694 return true;
2695}
2696
2697static bool quirk_matches(const struct nvme_id_ctrl *id,
2698 const struct nvme_core_quirk_entry *q)
2699{
2700 return q->vid == le16_to_cpu(id->vid) &&
2701 string_matches(id->mn, q->mn, sizeof(id->mn)) &&
2702 string_matches(id->fr, q->fr, sizeof(id->fr));
2703}
2704
ab9e00cc
CH
2705static void nvme_init_subnqn(struct nvme_subsystem *subsys, struct nvme_ctrl *ctrl,
2706 struct nvme_id_ctrl *id)
180de007
CH
2707{
2708 size_t nqnlen;
2709 int off;
2710
6299358d
JD
2711 if(!(ctrl->quirks & NVME_QUIRK_IGNORE_DEV_SUBNQN)) {
2712 nqnlen = strnlen(id->subnqn, NVMF_NQN_SIZE);
2713 if (nqnlen > 0 && nqnlen < NVMF_NQN_SIZE) {
a8817cc0 2714 strscpy(subsys->subnqn, id->subnqn, NVMF_NQN_SIZE);
6299358d
JD
2715 return;
2716 }
180de007 2717
6299358d
JD
2718 if (ctrl->vs >= NVME_VS(1, 2, 1))
2719 dev_warn(ctrl->device, "missing or invalid SUBNQN field.\n");
2720 }
180de007 2721
1abc6961
LB
2722 /*
2723 * Generate a "fake" NQN similar to the one in Section 4.5 of the NVMe
2724 * Base Specification 2.0. It is slightly different from the format
2725 * specified there due to historic reasons, and we can't change it now.
2726 */
ab9e00cc 2727 off = snprintf(subsys->subnqn, NVMF_NQN_SIZE,
3da584f5 2728 "nqn.2014.08.org.nvmexpress:%04x%04x",
180de007 2729 le16_to_cpu(id->vid), le16_to_cpu(id->ssvid));
ab9e00cc 2730 memcpy(subsys->subnqn + off, id->sn, sizeof(id->sn));
180de007 2731 off += sizeof(id->sn);
ab9e00cc 2732 memcpy(subsys->subnqn + off, id->mn, sizeof(id->mn));
180de007 2733 off += sizeof(id->mn);
ab9e00cc
CH
2734 memset(subsys->subnqn + off, 0, sizeof(subsys->subnqn) - off);
2735}
2736
e654dfd3 2737static void nvme_release_subsystem(struct device *dev)
ab9e00cc 2738{
e654dfd3
LG
2739 struct nvme_subsystem *subsys =
2740 container_of(dev, struct nvme_subsystem, dev);
2741
733e4b69 2742 if (subsys->instance >= 0)
8b850475 2743 ida_free(&nvme_instance_ida, subsys->instance);
ab9e00cc
CH
2744 kfree(subsys);
2745}
2746
ab9e00cc
CH
2747static void nvme_destroy_subsystem(struct kref *ref)
2748{
2749 struct nvme_subsystem *subsys =
2750 container_of(ref, struct nvme_subsystem, ref);
2751
2752 mutex_lock(&nvme_subsystems_lock);
2753 list_del(&subsys->entry);
2754 mutex_unlock(&nvme_subsystems_lock);
2755
ed754e5d 2756 ida_destroy(&subsys->ns_ida);
ab9e00cc
CH
2757 device_del(&subsys->dev);
2758 put_device(&subsys->dev);
2759}
2760
2761static void nvme_put_subsystem(struct nvme_subsystem *subsys)
2762{
2763 kref_put(&subsys->ref, nvme_destroy_subsystem);
2764}
2765
2766static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
2767{
2768 struct nvme_subsystem *subsys;
2769
2770 lockdep_assert_held(&nvme_subsystems_lock);
2771
c26aa572
JS
2772 /*
2773 * Fail matches for discovery subsystems. This results
2774 * in each discovery controller bound to a unique subsystem.
2775 * This avoids issues with validating controller values
2776 * that can only be true when there is a single unique subsystem.
2777 * There may be multiple and completely independent entities
2778 * that provide discovery controllers.
2779 */
2780 if (!strcmp(subsysnqn, NVME_DISC_SUBSYS_NAME))
2781 return NULL;
2782
ab9e00cc
CH
2783 list_for_each_entry(subsys, &nvme_subsystems, entry) {
2784 if (strcmp(subsys->subnqn, subsysnqn))
2785 continue;
2786 if (!kref_get_unless_zero(&subsys->ref))
2787 continue;
2788 return subsys;
2789 }
2790
2791 return NULL;
2792}
2793
1e496938
HR
2794#define SUBSYS_ATTR_RO(_name, _mode, _show) \
2795 struct device_attribute subsys_attr_##_name = \
2796 __ATTR(_name, _mode, _show, NULL)
2797
2798static ssize_t nvme_subsys_show_nqn(struct device *dev,
2799 struct device_attribute *attr,
2800 char *buf)
2801{
2802 struct nvme_subsystem *subsys =
2803 container_of(dev, struct nvme_subsystem, dev);
2804
f720a8ed 2805 return sysfs_emit(buf, "%s\n", subsys->subnqn);
1e496938
HR
2806}
2807static SUBSYS_ATTR_RO(subsysnqn, S_IRUGO, nvme_subsys_show_nqn);
2808
954ae166
HR
2809static ssize_t nvme_subsys_show_type(struct device *dev,
2810 struct device_attribute *attr,
2811 char *buf)
2812{
2813 struct nvme_subsystem *subsys =
2814 container_of(dev, struct nvme_subsystem, dev);
2815
2816 switch (subsys->subtype) {
2817 case NVME_NQN_DISC:
2818 return sysfs_emit(buf, "discovery\n");
2819 case NVME_NQN_NVME:
2820 return sysfs_emit(buf, "nvm\n");
2821 default:
2822 return sysfs_emit(buf, "reserved\n");
2823 }
2824}
2825static SUBSYS_ATTR_RO(subsystype, S_IRUGO, nvme_subsys_show_type);
2826
1e496938
HR
2827#define nvme_subsys_show_str_function(field) \
2828static ssize_t subsys_##field##_show(struct device *dev, \
2829 struct device_attribute *attr, char *buf) \
2830{ \
2831 struct nvme_subsystem *subsys = \
2832 container_of(dev, struct nvme_subsystem, dev); \
bff4bcf3
DW
2833 return sysfs_emit(buf, "%.*s\n", \
2834 (int)sizeof(subsys->field), subsys->field); \
1e496938
HR
2835} \
2836static SUBSYS_ATTR_RO(field, S_IRUGO, subsys_##field##_show);
2837
2838nvme_subsys_show_str_function(model);
2839nvme_subsys_show_str_function(serial);
2840nvme_subsys_show_str_function(firmware_rev);
2841
2842static struct attribute *nvme_subsys_attrs[] = {
2843 &subsys_attr_model.attr,
2844 &subsys_attr_serial.attr,
2845 &subsys_attr_firmware_rev.attr,
2846 &subsys_attr_subsysnqn.attr,
954ae166 2847 &subsys_attr_subsystype.attr,
75c10e73
HR
2848#ifdef CONFIG_NVME_MULTIPATH
2849 &subsys_attr_iopolicy.attr,
2850#endif
1e496938
HR
2851 NULL,
2852};
2853
60b152a5 2854static const struct attribute_group nvme_subsys_attrs_group = {
1e496938
HR
2855 .attrs = nvme_subsys_attrs,
2856};
2857
2858static const struct attribute_group *nvme_subsys_attrs_groups[] = {
2859 &nvme_subsys_attrs_group,
2860 NULL,
2861};
2862
5ab25a32
SG
2863static inline bool nvme_discovery_ctrl(struct nvme_ctrl *ctrl)
2864{
2865 return ctrl->opts && ctrl->opts->discovery_nqn;
2866}
2867
1b1031ca
CH
2868static bool nvme_validate_cntlid(struct nvme_subsystem *subsys,
2869 struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
b837b283 2870{
1b1031ca 2871 struct nvme_ctrl *tmp;
b837b283 2872
32fd90c4
CH
2873 lockdep_assert_held(&nvme_subsystems_lock);
2874
1b1031ca 2875 list_for_each_entry(tmp, &subsys->ctrls, subsys_entry) {
e7c43fea 2876 if (nvme_state_terminal(tmp))
1b1031ca
CH
2877 continue;
2878
2879 if (tmp->cntlid == ctrl->cntlid) {
2880 dev_err(ctrl->device,
16cc33b2
KB
2881 "Duplicate cntlid %u with %s, subsys %s, rejecting\n",
2882 ctrl->cntlid, dev_name(tmp->device),
2883 subsys->subnqn);
1b1031ca
CH
2884 return false;
2885 }
b837b283 2886
92decf11 2887 if ((id->cmic & NVME_CTRL_CMIC_MULTI_CTRL) ||
5ab25a32 2888 nvme_discovery_ctrl(ctrl))
1b1031ca
CH
2889 continue;
2890
2891 dev_err(ctrl->device,
2892 "Subsystem does not support multiple controllers\n");
2893 return false;
b837b283 2894 }
b837b283 2895
1b1031ca 2896 return true;
b837b283
IR
2897}
2898
ab9e00cc
CH
2899static int nvme_init_subsystem(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
2900{
2901 struct nvme_subsystem *subsys, *found;
2902 int ret;
2903
2904 subsys = kzalloc(sizeof(*subsys), GFP_KERNEL);
2905 if (!subsys)
2906 return -ENOMEM;
733e4b69
KB
2907
2908 subsys->instance = -1;
ab9e00cc
CH
2909 mutex_init(&subsys->lock);
2910 kref_init(&subsys->ref);
2911 INIT_LIST_HEAD(&subsys->ctrls);
ed754e5d 2912 INIT_LIST_HEAD(&subsys->nsheads);
ab9e00cc
CH
2913 nvme_init_subnqn(subsys, ctrl, id);
2914 memcpy(subsys->serial, id->sn, sizeof(subsys->serial));
2915 memcpy(subsys->model, id->mn, sizeof(subsys->model));
ab9e00cc
CH
2916 subsys->vendor_id = le16_to_cpu(id->vid);
2917 subsys->cmic = id->cmic;
954ae166
HR
2918
2919 /* Versions prior to 1.4 don't necessarily report a valid type */
2920 if (id->cntrltype == NVME_CTRL_DISC ||
2921 !strcmp(subsys->subnqn, NVME_DISC_SUBSYS_NAME))
2922 subsys->subtype = NVME_NQN_DISC;
2923 else
2924 subsys->subtype = NVME_NQN_NVME;
2925
20e8b689
HR
2926 if (nvme_discovery_ctrl(ctrl) && subsys->subtype != NVME_NQN_DISC) {
2927 dev_err(ctrl->device,
2928 "Subsystem %s is not a discovery controller",
2929 subsys->subnqn);
2930 kfree(subsys);
2931 return -EINVAL;
2932 }
81adb863 2933 subsys->awupf = le16_to_cpu(id->awupf);
e3d34794 2934 nvme_mpath_default_iopolicy(subsys);
ab9e00cc
CH
2935
2936 subsys->dev.class = nvme_subsys_class;
2937 subsys->dev.release = nvme_release_subsystem;
1e496938 2938 subsys->dev.groups = nvme_subsys_attrs_groups;
733e4b69 2939 dev_set_name(&subsys->dev, "nvme-subsys%d", ctrl->instance);
ab9e00cc
CH
2940 device_initialize(&subsys->dev);
2941
2942 mutex_lock(&nvme_subsystems_lock);
2943 found = __nvme_find_get_subsystem(subsys->subnqn);
2944 if (found) {
e654dfd3 2945 put_device(&subsys->dev);
ab9e00cc 2946 subsys = found;
32fd90c4 2947
1b1031ca 2948 if (!nvme_validate_cntlid(subsys, ctrl, id)) {
ab9e00cc 2949 ret = -EINVAL;
32fd90c4 2950 goto out_put_subsystem;
ab9e00cc 2951 }
ab9e00cc
CH
2952 } else {
2953 ret = device_add(&subsys->dev);
2954 if (ret) {
2955 dev_err(ctrl->device,
2956 "failed to register subsystem device.\n");
8c36e66f 2957 put_device(&subsys->dev);
ab9e00cc
CH
2958 goto out_unlock;
2959 }
ed754e5d 2960 ida_init(&subsys->ns_ida);
ab9e00cc
CH
2961 list_add_tail(&subsys->entry, &nvme_subsystems);
2962 }
2963
bc4f6e06
DC
2964 ret = sysfs_create_link(&subsys->dev.kobj, &ctrl->device->kobj,
2965 dev_name(ctrl->device));
2966 if (ret) {
ab9e00cc
CH
2967 dev_err(ctrl->device,
2968 "failed to create sysfs link from subsystem.\n");
32fd90c4 2969 goto out_put_subsystem;
ab9e00cc
CH
2970 }
2971
733e4b69
KB
2972 if (!found)
2973 subsys->instance = ctrl->instance;
32fd90c4 2974 ctrl->subsys = subsys;
ab9e00cc 2975 list_add_tail(&ctrl->subsys_entry, &subsys->ctrls);
32fd90c4 2976 mutex_unlock(&nvme_subsystems_lock);
ab9e00cc
CH
2977 return 0;
2978
32fd90c4
CH
2979out_put_subsystem:
2980 nvme_put_subsystem(subsys);
ab9e00cc
CH
2981out_unlock:
2982 mutex_unlock(&nvme_subsystems_lock);
ab9e00cc 2983 return ret;
180de007
CH
2984}
2985
be93e87e 2986int nvme_get_log(struct nvme_ctrl *ctrl, u32 nsid, u8 log_page, u8 lsp, u8 csi,
0e98719b 2987 void *log, size_t size, u64 offset)
c627c487
KB
2988{
2989 struct nvme_command c = { };
71fb90eb 2990 u32 dwlen = nvme_bytes_to_numd(size);
70da6094
MB
2991
2992 c.get_log_page.opcode = nvme_admin_get_log_page;
0e98719b 2993 c.get_log_page.nsid = cpu_to_le32(nsid);
70da6094 2994 c.get_log_page.lid = log_page;
0e98719b 2995 c.get_log_page.lsp = lsp;
70da6094
MB
2996 c.get_log_page.numdl = cpu_to_le16(dwlen & ((1 << 16) - 1));
2997 c.get_log_page.numdu = cpu_to_le16(dwlen >> 16);
7ec6074f
MB
2998 c.get_log_page.lpol = cpu_to_le32(lower_32_bits(offset));
2999 c.get_log_page.lpou = cpu_to_le32(upper_32_bits(offset));
be93e87e 3000 c.get_log_page.csi = csi;
c627c487
KB
3001
3002 return nvme_submit_sync_cmd(ctrl->admin_q, &c, log, size);
3003}
3004
be93e87e
KB
3005static int nvme_get_effects_log(struct nvme_ctrl *ctrl, u8 csi,
3006 struct nvme_effects_log **log)
84fef62d 3007{
f6224b86 3008 struct nvme_effects_log *cel = xa_load(&ctrl->cels, csi);
84fef62d
KB
3009 int ret;
3010
be93e87e
KB
3011 if (cel)
3012 goto out;
84fef62d 3013
be93e87e
KB
3014 cel = kzalloc(sizeof(*cel), GFP_KERNEL);
3015 if (!cel)
3016 return -ENOMEM;
84fef62d 3017
46d2613e 3018 ret = nvme_get_log(ctrl, 0x00, NVME_LOG_CMD_EFFECTS, 0, csi,
f6224b86 3019 cel, sizeof(*cel), 0);
84fef62d 3020 if (ret) {
be93e87e
KB
3021 kfree(cel);
3022 return ret;
84fef62d 3023 }
be93e87e 3024
f6224b86 3025 xa_store(&ctrl->cels, csi, cel, GFP_KERNEL);
be93e87e 3026out:
f6224b86 3027 *log = cel;
be93e87e 3028 return 0;
180de007
CH
3029}
3030
5befc7c2 3031static inline u32 nvme_mps_to_sectors(struct nvme_ctrl *ctrl, u32 units)
7fd8930f 3032{
8609c63f 3033 u32 page_shift = NVME_CAP_MPSMIN(ctrl->cap) + 12, val;
7fd8930f 3034
8609c63f
BVA
3035 if (check_shl_overflow(1U, units + page_shift - 9, &val))
3036 return UINT_MAX;
3037 return val;
5befc7c2
KB
3038}
3039
3040static int nvme_init_non_mdts_limits(struct nvme_ctrl *ctrl)
3041{
3042 struct nvme_command c = { };
3043 struct nvme_id_ctrl_nvm *id;
3044 int ret;
3045
3046 if (ctrl->oncs & NVME_CTRL_ONCS_DSM) {
3047 ctrl->max_discard_sectors = UINT_MAX;
3048 ctrl->max_discard_segments = NVME_DSM_MAX_RANGES;
3049 } else {
3050 ctrl->max_discard_sectors = 0;
3051 ctrl->max_discard_segments = 0;
f3ca80fc 3052 }
7fd8930f 3053
5befc7c2
KB
3054 /*
3055 * Even though NVMe spec explicitly states that MDTS is not applicable
3056 * to the write-zeroes, we are cautious and limit the size to the
3057 * controllers max_hw_sectors value, which is based on the MDTS field
3058 * and possibly other limiting factors.
3059 */
3060 if ((ctrl->oncs & NVME_CTRL_ONCS_WRITE_ZEROES) &&
3061 !(ctrl->quirks & NVME_QUIRK_DISABLE_WRITE_ZEROES))
3062 ctrl->max_zeroes_sectors = ctrl->max_hw_sectors;
3063 else
3064 ctrl->max_zeroes_sectors = 0;
3065
def84ab6
MG
3066 if (ctrl->subsys->subtype != NVME_NQN_NVME ||
3067 nvme_ctrl_limited_cns(ctrl))
5befc7c2
KB
3068 return 0;
3069
3070 id = kzalloc(sizeof(*id), GFP_KERNEL);
3071 if (!id)
bcaf434b 3072 return -ENOMEM;
5befc7c2
KB
3073
3074 c.identify.opcode = nvme_admin_identify;
3075 c.identify.cns = NVME_ID_CNS_CS_CTRL;
3076 c.identify.csi = NVME_CSI_NVM;
3077
3078 ret = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
3079 if (ret)
3080 goto free_data;
3081
3082 if (id->dmrl)
3083 ctrl->max_discard_segments = id->dmrl;
1a86924e 3084 ctrl->dmrsl = le32_to_cpu(id->dmrsl);
5befc7c2
KB
3085 if (id->wzsl)
3086 ctrl->max_zeroes_sectors = nvme_mps_to_sectors(ctrl, id->wzsl);
3087
3088free_data:
3089 kfree(id);
3090 return ret;
3091}
3092
cc115cbe
KB
3093static void nvme_init_known_nvm_effects(struct nvme_ctrl *ctrl)
3094{
3095 struct nvme_effects_log *log = ctrl->effects;
3096
3097 log->acs[nvme_admin_format_nvm] |= cpu_to_le32(NVME_CMD_EFFECTS_LBCC |
3098 NVME_CMD_EFFECTS_NCC |
3099 NVME_CMD_EFFECTS_CSE_MASK);
3100 log->acs[nvme_admin_sanitize_nvm] |= cpu_to_le32(NVME_CMD_EFFECTS_LBCC |
3101 NVME_CMD_EFFECTS_CSE_MASK);
3102
baff6491
KB
3103 /*
3104 * The spec says the result of a security receive command depends on
3105 * the previous security send command. As such, many vendors log this
3106 * command as one to submitted only when no other commands to the same
3107 * namespace are outstanding. The intention is to tell the host to
3108 * prevent mixing security send and receive.
3109 *
3110 * This driver can only enforce such exclusive access against IO
3111 * queues, though. We are not readily able to enforce such a rule for
3112 * two commands to the admin queue, which is the only queue that
3113 * matters for this command.
3114 *
3115 * Rather than blindly freezing the IO queues for this effect that
3116 * doesn't even apply to IO, mask it off.
3117 */
c0c33b94 3118 log->acs[nvme_admin_security_recv] &= cpu_to_le32(~NVME_CMD_EFFECTS_CSE_MASK);
baff6491 3119
cc115cbe
KB
3120 log->iocs[nvme_cmd_write] |= cpu_to_le32(NVME_CMD_EFFECTS_LBCC);
3121 log->iocs[nvme_cmd_write_zeroes] |= cpu_to_le32(NVME_CMD_EFFECTS_LBCC);
3122 log->iocs[nvme_cmd_write_uncor] |= cpu_to_le32(NVME_CMD_EFFECTS_LBCC);
3123}
3124
3125static int nvme_init_effects(struct nvme_ctrl *ctrl, struct nvme_id_ctrl *id)
3126{
3127 int ret = 0;
3128
3129 if (ctrl->effects)
3130 return 0;
3131
3132 if (id->lpa & NVME_CTRL_LPA_CMD_EFFECTS_LOG) {
3133 ret = nvme_get_effects_log(ctrl, NVME_CSI_NVM, &ctrl->effects);
3134 if (ret < 0)
3135 return ret;
3136 }
3137
3138 if (!ctrl->effects) {
3139 ctrl->effects = kzalloc(sizeof(*ctrl->effects), GFP_KERNEL);
3140 if (!ctrl->effects)
3141 return -ENOMEM;
3142 xa_store(&ctrl->cels, NVME_CSI_NVM, ctrl->effects, GFP_KERNEL);
3143 }
3144
3145 nvme_init_known_nvm_effects(ctrl);
3146 return 0;
3147}
3148
44ef5611 3149static int nvme_init_identify(struct nvme_ctrl *ctrl)
7fd8930f
CH
3150{
3151 struct nvme_id_ctrl *id;
a229dbf6 3152 u32 max_hw_sectors;
76a5af84 3153 bool prev_apst_enabled;
5befc7c2 3154 int ret;
f3ca80fc 3155
7fd8930f
CH
3156 ret = nvme_identify_ctrl(ctrl, &id);
3157 if (ret) {
1b3c47c1 3158 dev_err(ctrl->device, "Identify Controller failed (%d)\n", ret);
7fd8930f
CH
3159 return -EIO;
3160 }
3161
a89fcca8
GP
3162 if (!(ctrl->ops->flags & NVME_F_FABRICS))
3163 ctrl->cntlid = le16_to_cpu(id->cntlid);
3164
bd4da3ab 3165 if (!ctrl->identified) {
44ef5611 3166 unsigned int i;
ab9e00cc 3167
bd4da3ab
AL
3168 /*
3169 * Check for quirks. Quirk can depend on firmware version,
3170 * so, in principle, the set of quirks present can change
3171 * across a reset. As a possible future enhancement, we
3172 * could re-scan for quirks every time we reinitialize
3173 * the device, but we'd have to make sure that the driver
3174 * behaves intelligently if the quirks change.
3175 */
bd4da3ab
AL
3176 for (i = 0; i < ARRAY_SIZE(core_quirks); i++) {
3177 if (quirk_matches(id, &core_quirks[i]))
3178 ctrl->quirks |= core_quirks[i].quirks;
3179 }
6f2d7152
PR
3180
3181 ret = nvme_init_subsystem(ctrl, id);
3182 if (ret)
3183 goto out_free;
cc115cbe
KB
3184
3185 ret = nvme_init_effects(ctrl, id);
3186 if (ret)
3187 goto out_free;
bd4da3ab 3188 }
a8eb6c1b
KB
3189 memcpy(ctrl->subsys->firmware_rev, id->fr,
3190 sizeof(ctrl->subsys->firmware_rev));
bd4da3ab 3191
c35e30b4 3192 if (force_apst && (ctrl->quirks & NVME_QUIRK_NO_DEEPEST_PS)) {
f0425db0 3193 dev_warn(ctrl->device, "forcibly allowing all power states due to nvme_core.force_apst -- use at your own risk\n");
c35e30b4
AL
3194 ctrl->quirks &= ~NVME_QUIRK_NO_DEEPEST_PS;
3195 }
3196
49cd84b6
KB
3197 ctrl->crdt[0] = le16_to_cpu(id->crdt1);
3198 ctrl->crdt[1] = le16_to_cpu(id->crdt2);
3199 ctrl->crdt[2] = le16_to_cpu(id->crdt3);
3200
8a9ae523 3201 ctrl->oacs = le16_to_cpu(id->oacs);
43e2d08d 3202 ctrl->oncs = le16_to_cpu(id->oncs);
2d466c7a 3203 ctrl->mtfa = le16_to_cpu(id->mtfa);
c0561f82 3204 ctrl->oaes = le32_to_cpu(id->oaes);
400b6a7b
GR
3205 ctrl->wctemp = le16_to_cpu(id->wctemp);
3206 ctrl->cctemp = le16_to_cpu(id->cctemp);
3207
6bf25d16 3208 atomic_set(&ctrl->abort_limit, id->acl + 1);
7fd8930f 3209 ctrl->vwc = id->vwc;
7fd8930f 3210 if (id->mdts)
5befc7c2 3211 max_hw_sectors = nvme_mps_to_sectors(ctrl, id->mdts);
7fd8930f 3212 else
a229dbf6
CH
3213 max_hw_sectors = UINT_MAX;
3214 ctrl->max_hw_sectors =
3215 min_not_zero(ctrl->max_hw_sectors, max_hw_sectors);
7fd8930f 3216
da35825d 3217 nvme_set_queue_limits(ctrl, ctrl->admin_q);
07bfcd09 3218 ctrl->sgls = le32_to_cpu(id->sgls);
038bd4cb 3219 ctrl->kas = le16_to_cpu(id->kas);
0d0b660f 3220 ctrl->max_namespaces = le32_to_cpu(id->mnan);
3e53ba38 3221 ctrl->ctratt = le32_to_cpu(id->ctratt);
07bfcd09 3222
86c2457a
MB
3223 ctrl->cntrltype = id->cntrltype;
3224 ctrl->dctype = id->dctype;
3225
07fbd32a
MP
3226 if (id->rtd3e) {
3227 /* us -> s */
f5af577d 3228 u32 transition_time = le32_to_cpu(id->rtd3e) / USEC_PER_SEC;
07fbd32a
MP
3229
3230 ctrl->shutdown_timeout = clamp_t(unsigned int, transition_time,
3231 shutdown_timeout, 60);
3232
3233 if (ctrl->shutdown_timeout != shutdown_timeout)
1a3838d7 3234 dev_info(ctrl->device,
07fbd32a
MP
3235 "Shutdown timeout set to %u seconds\n",
3236 ctrl->shutdown_timeout);
3237 } else
3238 ctrl->shutdown_timeout = shutdown_timeout;
3239
c5552fde 3240 ctrl->npss = id->npss;
76a5af84
KHF
3241 ctrl->apsta = id->apsta;
3242 prev_apst_enabled = ctrl->apst_enabled;
c35e30b4
AL
3243 if (ctrl->quirks & NVME_QUIRK_NO_APST) {
3244 if (force_apst && id->apsta) {
f0425db0 3245 dev_warn(ctrl->device, "forcibly allowing APST due to nvme_core.force_apst -- use at your own risk\n");
76a5af84 3246 ctrl->apst_enabled = true;
c35e30b4 3247 } else {
76a5af84 3248 ctrl->apst_enabled = false;
c35e30b4
AL
3249 }
3250 } else {
76a5af84 3251 ctrl->apst_enabled = id->apsta;
c35e30b4 3252 }
c5552fde
AL
3253 memcpy(ctrl->psd, id->psd, sizeof(ctrl->psd));
3254
d3d5b87d 3255 if (ctrl->ops->flags & NVME_F_FABRICS) {
07bfcd09
CH
3256 ctrl->icdoff = le16_to_cpu(id->icdoff);
3257 ctrl->ioccsz = le32_to_cpu(id->ioccsz);
3258 ctrl->iorcsz = le32_to_cpu(id->iorcsz);
3259 ctrl->maxcmd = le16_to_cpu(id->maxcmd);
3260
3261 /*
3262 * In fabrics we need to verify the cntlid matches the
3263 * admin connect
3264 */
634b8325 3265 if (ctrl->cntlid != le16_to_cpu(id->cntlid)) {
a8157ff3
JS
3266 dev_err(ctrl->device,
3267 "Mismatching cntlid: Connect %u vs Identify "
3268 "%u, rejecting\n",
3269 ctrl->cntlid, le16_to_cpu(id->cntlid));
07bfcd09 3270 ret = -EINVAL;
634b8325
KB
3271 goto out_free;
3272 }
038bd4cb 3273
5ab25a32 3274 if (!nvme_discovery_ctrl(ctrl) && !ctrl->kas) {
f0425db0 3275 dev_err(ctrl->device,
038bd4cb
SG
3276 "keep-alive support is mandatory for fabrics\n");
3277 ret = -EINVAL;
634b8325 3278 goto out_free;
038bd4cb 3279 }
07bfcd09 3280 } else {
fe6d53c9
CH
3281 ctrl->hmpre = le32_to_cpu(id->hmpre);
3282 ctrl->hmmin = le32_to_cpu(id->hmmin);
044a9df1
CH
3283 ctrl->hmminds = le32_to_cpu(id->hmminds);
3284 ctrl->hmmaxd = le16_to_cpu(id->hmmaxd);
07bfcd09 3285 }
da35825d 3286
5e1f6899 3287 ret = nvme_mpath_init_identify(ctrl, id);
0d0b660f 3288 if (ret < 0)
44ef5611 3289 goto out_free;
0d0b660f 3290
76a5af84 3291 if (ctrl->apst_enabled && !prev_apst_enabled)
c5552fde 3292 dev_pm_qos_expose_latency_tolerance(ctrl->device);
76a5af84 3293 else if (!ctrl->apst_enabled && prev_apst_enabled)
c5552fde
AL
3294 dev_pm_qos_hide_latency_tolerance(ctrl->device);
3295
44ef5611
CK
3296out_free:
3297 kfree(id);
3298 return ret;
3299}
3300
3301/*
3302 * Initialize the cached copies of the Identify data and various controller
3303 * register in our nvme_ctrl structure. This should be called as soon as
3304 * the admin queue is fully up and running.
3305 */
94cc781f 3306int nvme_init_ctrl_finish(struct nvme_ctrl *ctrl, bool was_suspended)
44ef5611
CK
3307{
3308 int ret;
3309
3310 ret = ctrl->ops->reg_read32(ctrl, NVME_REG_VS, &ctrl->vs);
3311 if (ret) {
3312 dev_err(ctrl->device, "Reading VS failed (%d)\n", ret);
3313 return ret;
3314 }
3315
3316 ctrl->sqsize = min_t(u16, NVME_CAP_MQES(ctrl->cap), ctrl->sqsize);
3317
3318 if (ctrl->vs >= NVME_VS(1, 1, 0))
3319 ctrl->subsystem = NVME_CAP_NSSRC(ctrl->cap);
3320
3321 ret = nvme_init_identify(ctrl);
3322 if (ret)
3323 return ret;
3324
634b8325
KB
3325 ret = nvme_configure_apst(ctrl);
3326 if (ret < 0)
3327 return ret;
95d54bd1 3328
dbf86b39
JD
3329 ret = nvme_configure_timestamp(ctrl);
3330 if (ret < 0)
3331 return ret;
634b8325 3332
4020aad8 3333 ret = nvme_configure_host_options(ctrl);
49cd84b6
KB
3334 if (ret < 0)
3335 return ret;
3336
94cc781f
CH
3337 nvme_configure_opal(ctrl, was_suspended);
3338
5ab25a32 3339 if (!ctrl->identified && !nvme_discovery_ctrl(ctrl)) {
6b8cf940
CH
3340 /*
3341 * Do not return errors unless we are in a controller reset,
3342 * the controller works perfectly fine without hwmon.
3343 */
59e330f8 3344 ret = nvme_hwmon_init(ctrl);
6b8cf940 3345 if (ret == -EINTR)
59e330f8
KB
3346 return ret;
3347 }
400b6a7b 3348
bd4da3ab 3349 ctrl->identified = true;
c5552fde 3350
634b8325 3351 return 0;
7fd8930f 3352}
f21c4769 3353EXPORT_SYMBOL_GPL(nvme_init_ctrl_finish);
7fd8930f 3354
f3ca80fc 3355static int nvme_dev_open(struct inode *inode, struct file *file)
1673f1f0 3356{
a6a5149b
CH
3357 struct nvme_ctrl *ctrl =
3358 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
1673f1f0 3359
2b1b7e78
JW
3360 switch (ctrl->state) {
3361 case NVME_CTRL_LIVE:
2b1b7e78
JW
3362 break;
3363 default:
a6a5149b 3364 return -EWOULDBLOCK;
2b1b7e78
JW
3365 }
3366
52a3974f 3367 nvme_get_ctrl(ctrl);
4bab6909
CK
3368 if (!try_module_get(ctrl->ops->module)) {
3369 nvme_put_ctrl(ctrl);
52a3974f 3370 return -EINVAL;
4bab6909 3371 }
52a3974f 3372
a6a5149b 3373 file->private_data = ctrl;
f3ca80fc
CH
3374 return 0;
3375}
3376
52a3974f
CK
3377static int nvme_dev_release(struct inode *inode, struct file *file)
3378{
3379 struct nvme_ctrl *ctrl =
3380 container_of(inode->i_cdev, struct nvme_ctrl, cdev);
3381
3382 module_put(ctrl->ops->module);
3383 nvme_put_ctrl(ctrl);
3384 return 0;
3385}
3386
f3ca80fc
CH
3387static const struct file_operations nvme_dev_fops = {
3388 .owner = THIS_MODULE,
3389 .open = nvme_dev_open,
52a3974f 3390 .release = nvme_dev_release,
f3ca80fc 3391 .unlocked_ioctl = nvme_dev_ioctl,
1832f2d8 3392 .compat_ioctl = compat_ptr_ioctl,
58e5bdeb 3393 .uring_cmd = nvme_dev_uring_cmd,
f3ca80fc
CH
3394};
3395
3396static ssize_t nvme_sysfs_reset(struct device *dev,
3397 struct device_attribute *attr, const char *buf,
3398 size_t count)
3399{
3400 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3401 int ret;
3402
d86c4d8e 3403 ret = nvme_reset_ctrl_sync(ctrl);
f3ca80fc
CH
3404 if (ret < 0)
3405 return ret;
3406 return count;
1673f1f0 3407}
f3ca80fc 3408static DEVICE_ATTR(reset_controller, S_IWUSR, NULL, nvme_sysfs_reset);
1673f1f0 3409
9ec3bb2f
KB
3410static ssize_t nvme_sysfs_rescan(struct device *dev,
3411 struct device_attribute *attr, const char *buf,
3412 size_t count)
3413{
3414 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3415
3416 nvme_queue_scan(ctrl);
3417 return count;
3418}
3419static DEVICE_ATTR(rescan_controller, S_IWUSR, NULL, nvme_sysfs_rescan);
3420
5b85b826
CH
3421static inline struct nvme_ns_head *dev_to_ns_head(struct device *dev)
3422{
3423 struct gendisk *disk = dev_to_disk(dev);
3424
ba4fb320 3425 if (disk->fops == &nvme_bdev_ops)
5b85b826
CH
3426 return nvme_get_ns_from_dev(dev)->head;
3427 else
3428 return disk->private_data;
3429}
3430
118472ab 3431static ssize_t wwid_show(struct device *dev, struct device_attribute *attr,
5b85b826 3432 char *buf)
118472ab 3433{
5b85b826
CH
3434 struct nvme_ns_head *head = dev_to_ns_head(dev);
3435 struct nvme_ns_ids *ids = &head->ids;
3436 struct nvme_subsystem *subsys = head->subsys;
ab9e00cc
CH
3437 int serial_len = sizeof(subsys->serial);
3438 int model_len = sizeof(subsys->model);
118472ab 3439
002fab04 3440 if (!uuid_is_null(&ids->uuid))
bff4bcf3 3441 return sysfs_emit(buf, "uuid.%pU\n", &ids->uuid);
6484f5d1 3442
002fab04 3443 if (memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
bff4bcf3 3444 return sysfs_emit(buf, "eui.%16phN\n", ids->nguid);
118472ab 3445
002fab04 3446 if (memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
bff4bcf3 3447 return sysfs_emit(buf, "eui.%8phN\n", ids->eui64);
118472ab 3448
ab9e00cc
CH
3449 while (serial_len > 0 && (subsys->serial[serial_len - 1] == ' ' ||
3450 subsys->serial[serial_len - 1] == '\0'))
118472ab 3451 serial_len--;
ab9e00cc
CH
3452 while (model_len > 0 && (subsys->model[model_len - 1] == ' ' ||
3453 subsys->model[model_len - 1] == '\0'))
118472ab
KB
3454 model_len--;
3455
bff4bcf3 3456 return sysfs_emit(buf, "nvme.%04x-%*phN-%*phN-%08x\n", subsys->vendor_id,
ab9e00cc 3457 serial_len, subsys->serial, model_len, subsys->model,
5b85b826 3458 head->ns_id);
118472ab 3459}
c828a892 3460static DEVICE_ATTR_RO(wwid);
118472ab 3461
d934f984 3462static ssize_t nguid_show(struct device *dev, struct device_attribute *attr,
5b85b826 3463 char *buf)
d934f984 3464{
bff4bcf3 3465 return sysfs_emit(buf, "%pU\n", dev_to_ns_head(dev)->ids.nguid);
d934f984 3466}
c828a892 3467static DEVICE_ATTR_RO(nguid);
d934f984 3468
2b9b6e86 3469static ssize_t uuid_show(struct device *dev, struct device_attribute *attr,
5b85b826 3470 char *buf)
2b9b6e86 3471{
5b85b826 3472 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
d934f984
JT
3473
3474 /* For backward compatibility expose the NGUID to userspace if
3475 * we have no UUID set
3476 */
002fab04 3477 if (uuid_is_null(&ids->uuid)) {
1fc766b5
TW
3478 dev_warn_ratelimited(dev,
3479 "No UUID available providing old NGUID\n");
bff4bcf3 3480 return sysfs_emit(buf, "%pU\n", ids->nguid);
d934f984 3481 }
bff4bcf3 3482 return sysfs_emit(buf, "%pU\n", &ids->uuid);
2b9b6e86 3483}
c828a892 3484static DEVICE_ATTR_RO(uuid);
2b9b6e86
KB
3485
3486static ssize_t eui_show(struct device *dev, struct device_attribute *attr,
5b85b826 3487 char *buf)
2b9b6e86 3488{
bff4bcf3 3489 return sysfs_emit(buf, "%8ph\n", dev_to_ns_head(dev)->ids.eui64);
2b9b6e86 3490}
c828a892 3491static DEVICE_ATTR_RO(eui);
2b9b6e86
KB
3492
3493static ssize_t nsid_show(struct device *dev, struct device_attribute *attr,
5b85b826 3494 char *buf)
2b9b6e86 3495{
bff4bcf3 3496 return sysfs_emit(buf, "%d\n", dev_to_ns_head(dev)->ns_id);
2b9b6e86 3497}
c828a892 3498static DEVICE_ATTR_RO(nsid);
2b9b6e86 3499
5b85b826 3500static struct attribute *nvme_ns_id_attrs[] = {
118472ab 3501 &dev_attr_wwid.attr,
2b9b6e86 3502 &dev_attr_uuid.attr,
d934f984 3503 &dev_attr_nguid.attr,
2b9b6e86
KB
3504 &dev_attr_eui.attr,
3505 &dev_attr_nsid.attr,
0d0b660f
CH
3506#ifdef CONFIG_NVME_MULTIPATH
3507 &dev_attr_ana_grpid.attr,
3508 &dev_attr_ana_state.attr,
3509#endif
2b9b6e86
KB
3510 NULL,
3511};
3512
5b85b826 3513static umode_t nvme_ns_id_attrs_are_visible(struct kobject *kobj,
2b9b6e86
KB
3514 struct attribute *a, int n)
3515{
3516 struct device *dev = container_of(kobj, struct device, kobj);
5b85b826 3517 struct nvme_ns_ids *ids = &dev_to_ns_head(dev)->ids;
2b9b6e86
KB
3518
3519 if (a == &dev_attr_uuid.attr) {
a04b5de5 3520 if (uuid_is_null(&ids->uuid) &&
002fab04 3521 !memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
d934f984
JT
3522 return 0;
3523 }
3524 if (a == &dev_attr_nguid.attr) {
002fab04 3525 if (!memchr_inv(ids->nguid, 0, sizeof(ids->nguid)))
2b9b6e86
KB
3526 return 0;
3527 }
3528 if (a == &dev_attr_eui.attr) {
002fab04 3529 if (!memchr_inv(ids->eui64, 0, sizeof(ids->eui64)))
2b9b6e86
KB
3530 return 0;
3531 }
0d0b660f
CH
3532#ifdef CONFIG_NVME_MULTIPATH
3533 if (a == &dev_attr_ana_grpid.attr || a == &dev_attr_ana_state.attr) {
ba4fb320 3534 if (dev_to_disk(dev)->fops != &nvme_bdev_ops) /* per-path attr */
0d0b660f
CH
3535 return 0;
3536 if (!nvme_ctrl_use_ana(nvme_get_ns_from_dev(dev)->ctrl))
3537 return 0;
3538 }
3539#endif
2b9b6e86
KB
3540 return a->mode;
3541}
3542
eb090c4c 3543static const struct attribute_group nvme_ns_id_attr_group = {
5b85b826
CH
3544 .attrs = nvme_ns_id_attrs,
3545 .is_visible = nvme_ns_id_attrs_are_visible,
2b9b6e86
KB
3546};
3547
33b14f67
HR
3548const struct attribute_group *nvme_ns_id_attr_groups[] = {
3549 &nvme_ns_id_attr_group,
33b14f67
HR
3550 NULL,
3551};
3552
931e1c22 3553#define nvme_show_str_function(field) \
779ff756
KB
3554static ssize_t field##_show(struct device *dev, \
3555 struct device_attribute *attr, char *buf) \
3556{ \
3557 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
bff4bcf3 3558 return sysfs_emit(buf, "%.*s\n", \
ab9e00cc 3559 (int)sizeof(ctrl->subsys->field), ctrl->subsys->field); \
779ff756
KB
3560} \
3561static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
3562
ab9e00cc
CH
3563nvme_show_str_function(model);
3564nvme_show_str_function(serial);
3565nvme_show_str_function(firmware_rev);
3566
931e1c22
ML
3567#define nvme_show_int_function(field) \
3568static ssize_t field##_show(struct device *dev, \
3569 struct device_attribute *attr, char *buf) \
3570{ \
3571 struct nvme_ctrl *ctrl = dev_get_drvdata(dev); \
bff4bcf3 3572 return sysfs_emit(buf, "%d\n", ctrl->field); \
931e1c22
ML
3573} \
3574static DEVICE_ATTR(field, S_IRUGO, field##_show, NULL);
3575
931e1c22 3576nvme_show_int_function(cntlid);
103e515e 3577nvme_show_int_function(numa_node);
2b1ff255
JS
3578nvme_show_int_function(queue_count);
3579nvme_show_int_function(sqsize);
74c22990 3580nvme_show_int_function(kato);
779ff756 3581
1a353d85
ML
3582static ssize_t nvme_sysfs_delete(struct device *dev,
3583 struct device_attribute *attr, const char *buf,
3584 size_t count)
3585{
3586 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3587
3588 if (device_remove_file_self(dev, attr))
c5017e85 3589 nvme_delete_ctrl_sync(ctrl);
1a353d85
ML
3590 return count;
3591}
3592static DEVICE_ATTR(delete_controller, S_IWUSR, NULL, nvme_sysfs_delete);
3593
3594static ssize_t nvme_sysfs_show_transport(struct device *dev,
3595 struct device_attribute *attr,
3596 char *buf)
3597{
3598 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3599
f720a8ed 3600 return sysfs_emit(buf, "%s\n", ctrl->ops->name);
1a353d85
ML
3601}
3602static DEVICE_ATTR(transport, S_IRUGO, nvme_sysfs_show_transport, NULL);
3603
8432bdb2
SG
3604static ssize_t nvme_sysfs_show_state(struct device *dev,
3605 struct device_attribute *attr,
3606 char *buf)
3607{
3608 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3609 static const char *const state_name[] = {
3610 [NVME_CTRL_NEW] = "new",
3611 [NVME_CTRL_LIVE] = "live",
3612 [NVME_CTRL_RESETTING] = "resetting",
ad6a0a52 3613 [NVME_CTRL_CONNECTING] = "connecting",
8432bdb2 3614 [NVME_CTRL_DELETING] = "deleting",
ecca390e 3615 [NVME_CTRL_DELETING_NOIO]= "deleting (no IO)",
8432bdb2
SG
3616 [NVME_CTRL_DEAD] = "dead",
3617 };
3618
3619 if ((unsigned)ctrl->state < ARRAY_SIZE(state_name) &&
3620 state_name[ctrl->state])
bff4bcf3 3621 return sysfs_emit(buf, "%s\n", state_name[ctrl->state]);
8432bdb2 3622
bff4bcf3 3623 return sysfs_emit(buf, "unknown state\n");
8432bdb2
SG
3624}
3625
3626static DEVICE_ATTR(state, S_IRUGO, nvme_sysfs_show_state, NULL);
3627
1a353d85
ML
3628static ssize_t nvme_sysfs_show_subsysnqn(struct device *dev,
3629 struct device_attribute *attr,
3630 char *buf)
3631{
3632 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3633
f720a8ed 3634 return sysfs_emit(buf, "%s\n", ctrl->subsys->subnqn);
1a353d85
ML
3635}
3636static DEVICE_ATTR(subsysnqn, S_IRUGO, nvme_sysfs_show_subsysnqn, NULL);
3637
76171c6c
SG
3638static ssize_t nvme_sysfs_show_hostnqn(struct device *dev,
3639 struct device_attribute *attr,
3640 char *buf)
3641{
3642 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3643
f720a8ed 3644 return sysfs_emit(buf, "%s\n", ctrl->opts->host->nqn);
76171c6c
SG
3645}
3646static DEVICE_ATTR(hostnqn, S_IRUGO, nvme_sysfs_show_hostnqn, NULL);
3647
45fb19f7
SG
3648static ssize_t nvme_sysfs_show_hostid(struct device *dev,
3649 struct device_attribute *attr,
3650 char *buf)
3651{
3652 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3653
f720a8ed 3654 return sysfs_emit(buf, "%pU\n", &ctrl->opts->host->id);
45fb19f7
SG
3655}
3656static DEVICE_ATTR(hostid, S_IRUGO, nvme_sysfs_show_hostid, NULL);
3657
1a353d85
ML
3658static ssize_t nvme_sysfs_show_address(struct device *dev,
3659 struct device_attribute *attr,
3660 char *buf)
3661{
3662 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3663
3664 return ctrl->ops->get_address(ctrl, buf, PAGE_SIZE);
3665}
3666static DEVICE_ATTR(address, S_IRUGO, nvme_sysfs_show_address, NULL);
3667
764075fd
SG
3668static ssize_t nvme_ctrl_loss_tmo_show(struct device *dev,
3669 struct device_attribute *attr, char *buf)
3670{
3671 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3672 struct nvmf_ctrl_options *opts = ctrl->opts;
3673
3674 if (ctrl->opts->max_reconnects == -1)
bff4bcf3
DW
3675 return sysfs_emit(buf, "off\n");
3676 return sysfs_emit(buf, "%d\n",
3677 opts->max_reconnects * opts->reconnect_delay);
764075fd
SG
3678}
3679
3680static ssize_t nvme_ctrl_loss_tmo_store(struct device *dev,
3681 struct device_attribute *attr, const char *buf, size_t count)
3682{
3683 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3684 struct nvmf_ctrl_options *opts = ctrl->opts;
3685 int ctrl_loss_tmo, err;
3686
3687 err = kstrtoint(buf, 10, &ctrl_loss_tmo);
3688 if (err)
3689 return -EINVAL;
3690
25a64e4e 3691 if (ctrl_loss_tmo < 0)
764075fd
SG
3692 opts->max_reconnects = -1;
3693 else
3694 opts->max_reconnects = DIV_ROUND_UP(ctrl_loss_tmo,
3695 opts->reconnect_delay);
3696 return count;
3697}
3698static DEVICE_ATTR(ctrl_loss_tmo, S_IRUGO | S_IWUSR,
3699 nvme_ctrl_loss_tmo_show, nvme_ctrl_loss_tmo_store);
3700
3701static ssize_t nvme_ctrl_reconnect_delay_show(struct device *dev,
3702 struct device_attribute *attr, char *buf)
3703{
3704 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3705
3706 if (ctrl->opts->reconnect_delay == -1)
bff4bcf3
DW
3707 return sysfs_emit(buf, "off\n");
3708 return sysfs_emit(buf, "%d\n", ctrl->opts->reconnect_delay);
764075fd
SG
3709}
3710
3711static ssize_t nvme_ctrl_reconnect_delay_store(struct device *dev,
3712 struct device_attribute *attr, const char *buf, size_t count)
3713{
3714 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3715 unsigned int v;
3716 int err;
3717
3718 err = kstrtou32(buf, 10, &v);
eca9e827
DC
3719 if (err)
3720 return err;
764075fd
SG
3721
3722 ctrl->opts->reconnect_delay = v;
3723 return count;
3724}
3725static DEVICE_ATTR(reconnect_delay, S_IRUGO | S_IWUSR,
3726 nvme_ctrl_reconnect_delay_show, nvme_ctrl_reconnect_delay_store);
3727
09fbed63
DW
3728static ssize_t nvme_ctrl_fast_io_fail_tmo_show(struct device *dev,
3729 struct device_attribute *attr, char *buf)
3730{
3731 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3732
3733 if (ctrl->opts->fast_io_fail_tmo == -1)
3734 return sysfs_emit(buf, "off\n");
3735 return sysfs_emit(buf, "%d\n", ctrl->opts->fast_io_fail_tmo);
3736}
3737
3738static ssize_t nvme_ctrl_fast_io_fail_tmo_store(struct device *dev,
3739 struct device_attribute *attr, const char *buf, size_t count)
3740{
3741 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3742 struct nvmf_ctrl_options *opts = ctrl->opts;
3743 int fast_io_fail_tmo, err;
3744
3745 err = kstrtoint(buf, 10, &fast_io_fail_tmo);
3746 if (err)
3747 return -EINVAL;
3748
3749 if (fast_io_fail_tmo < 0)
3750 opts->fast_io_fail_tmo = -1;
3751 else
3752 opts->fast_io_fail_tmo = fast_io_fail_tmo;
3753 return count;
3754}
3755static DEVICE_ATTR(fast_io_fail_tmo, S_IRUGO | S_IWUSR,
3756 nvme_ctrl_fast_io_fail_tmo_show, nvme_ctrl_fast_io_fail_tmo_store);
3757
86c2457a
MB
3758static ssize_t cntrltype_show(struct device *dev,
3759 struct device_attribute *attr, char *buf)
3760{
3761 static const char * const type[] = {
3762 [NVME_CTRL_IO] = "io\n",
3763 [NVME_CTRL_DISC] = "discovery\n",
3764 [NVME_CTRL_ADMIN] = "admin\n",
3765 };
3766 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3767
3768 if (ctrl->cntrltype > NVME_CTRL_ADMIN || !type[ctrl->cntrltype])
3769 return sysfs_emit(buf, "reserved\n");
3770
3771 return sysfs_emit(buf, type[ctrl->cntrltype]);
3772}
3773static DEVICE_ATTR_RO(cntrltype);
3774
3775static ssize_t dctype_show(struct device *dev,
3776 struct device_attribute *attr, char *buf)
3777{
3778 static const char * const type[] = {
3779 [NVME_DCTYPE_NOT_REPORTED] = "none\n",
3780 [NVME_DCTYPE_DDC] = "ddc\n",
3781 [NVME_DCTYPE_CDC] = "cdc\n",
3782 };
3783 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3784
3785 if (ctrl->dctype > NVME_DCTYPE_CDC || !type[ctrl->dctype])
3786 return sysfs_emit(buf, "reserved\n");
3787
3788 return sysfs_emit(buf, type[ctrl->dctype]);
3789}
3790static DEVICE_ATTR_RO(dctype);
3791
f50fff73
HR
3792#ifdef CONFIG_NVME_AUTH
3793static ssize_t nvme_ctrl_dhchap_secret_show(struct device *dev,
3794 struct device_attribute *attr, char *buf)
3795{
3796 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3797 struct nvmf_ctrl_options *opts = ctrl->opts;
3798
3799 if (!opts->dhchap_secret)
3800 return sysfs_emit(buf, "none\n");
3801 return sysfs_emit(buf, "%s\n", opts->dhchap_secret);
3802}
3803
3804static ssize_t nvme_ctrl_dhchap_secret_store(struct device *dev,
3805 struct device_attribute *attr, const char *buf, size_t count)
3806{
3807 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3808 struct nvmf_ctrl_options *opts = ctrl->opts;
3809 char *dhchap_secret;
3810
3811 if (!ctrl->opts->dhchap_secret)
3812 return -EINVAL;
3813 if (count < 7)
3814 return -EINVAL;
3815 if (memcmp(buf, "DHHC-1:", 7))
3816 return -EINVAL;
3817
3818 dhchap_secret = kzalloc(count + 1, GFP_KERNEL);
3819 if (!dhchap_secret)
3820 return -ENOMEM;
3821 memcpy(dhchap_secret, buf, count);
3822 nvme_auth_stop(ctrl);
3823 if (strcmp(dhchap_secret, opts->dhchap_secret)) {
01604350 3824 struct nvme_dhchap_key *key, *host_key;
f50fff73
HR
3825 int ret;
3826
01604350 3827 ret = nvme_auth_generate_key(dhchap_secret, &key);
f50fff73
HR
3828 if (ret)
3829 return ret;
3830 kfree(opts->dhchap_secret);
3831 opts->dhchap_secret = dhchap_secret;
01604350 3832 host_key = ctrl->host_key;
aa36d711 3833 mutex_lock(&ctrl->dhchap_auth_mutex);
01604350 3834 ctrl->host_key = key;
aa36d711 3835 mutex_unlock(&ctrl->dhchap_auth_mutex);
01604350 3836 nvme_auth_free_key(host_key);
f50fff73
HR
3837 }
3838 /* Start re-authentication */
3839 dev_info(ctrl->device, "re-authenticating controller\n");
3840 queue_work(nvme_wq, &ctrl->dhchap_auth_work);
3841
3842 return count;
3843}
3844static DEVICE_ATTR(dhchap_secret, S_IRUGO | S_IWUSR,
3845 nvme_ctrl_dhchap_secret_show, nvme_ctrl_dhchap_secret_store);
3846
3847static ssize_t nvme_ctrl_dhchap_ctrl_secret_show(struct device *dev,
3848 struct device_attribute *attr, char *buf)
3849{
3850 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3851 struct nvmf_ctrl_options *opts = ctrl->opts;
3852
3853 if (!opts->dhchap_ctrl_secret)
3854 return sysfs_emit(buf, "none\n");
3855 return sysfs_emit(buf, "%s\n", opts->dhchap_ctrl_secret);
3856}
3857
3858static ssize_t nvme_ctrl_dhchap_ctrl_secret_store(struct device *dev,
3859 struct device_attribute *attr, const char *buf, size_t count)
3860{
3861 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3862 struct nvmf_ctrl_options *opts = ctrl->opts;
3863 char *dhchap_secret;
3864
3865 if (!ctrl->opts->dhchap_ctrl_secret)
3866 return -EINVAL;
3867 if (count < 7)
3868 return -EINVAL;
3869 if (memcmp(buf, "DHHC-1:", 7))
3870 return -EINVAL;
3871
3872 dhchap_secret = kzalloc(count + 1, GFP_KERNEL);
3873 if (!dhchap_secret)
3874 return -ENOMEM;
3875 memcpy(dhchap_secret, buf, count);
3876 nvme_auth_stop(ctrl);
3877 if (strcmp(dhchap_secret, opts->dhchap_ctrl_secret)) {
01604350 3878 struct nvme_dhchap_key *key, *ctrl_key;
f50fff73
HR
3879 int ret;
3880
01604350 3881 ret = nvme_auth_generate_key(dhchap_secret, &key);
f50fff73
HR
3882 if (ret)
3883 return ret;
3884 kfree(opts->dhchap_ctrl_secret);
3885 opts->dhchap_ctrl_secret = dhchap_secret;
01604350 3886 ctrl_key = ctrl->ctrl_key;
aa36d711 3887 mutex_lock(&ctrl->dhchap_auth_mutex);
01604350 3888 ctrl->ctrl_key = key;
aa36d711 3889 mutex_unlock(&ctrl->dhchap_auth_mutex);
01604350 3890 nvme_auth_free_key(ctrl_key);
f50fff73
HR
3891 }
3892 /* Start re-authentication */
3893 dev_info(ctrl->device, "re-authenticating controller\n");
3894 queue_work(nvme_wq, &ctrl->dhchap_auth_work);
3895
3896 return count;
3897}
3898static DEVICE_ATTR(dhchap_ctrl_secret, S_IRUGO | S_IWUSR,
3899 nvme_ctrl_dhchap_ctrl_secret_show, nvme_ctrl_dhchap_ctrl_secret_store);
3900#endif
3901
779ff756
KB
3902static struct attribute *nvme_dev_attrs[] = {
3903 &dev_attr_reset_controller.attr,
9ec3bb2f 3904 &dev_attr_rescan_controller.attr,
779ff756
KB
3905 &dev_attr_model.attr,
3906 &dev_attr_serial.attr,
3907 &dev_attr_firmware_rev.attr,
931e1c22 3908 &dev_attr_cntlid.attr,
1a353d85
ML
3909 &dev_attr_delete_controller.attr,
3910 &dev_attr_transport.attr,
3911 &dev_attr_subsysnqn.attr,
3912 &dev_attr_address.attr,
8432bdb2 3913 &dev_attr_state.attr,
103e515e 3914 &dev_attr_numa_node.attr,
2b1ff255
JS
3915 &dev_attr_queue_count.attr,
3916 &dev_attr_sqsize.attr,
76171c6c 3917 &dev_attr_hostnqn.attr,
45fb19f7 3918 &dev_attr_hostid.attr,
764075fd
SG
3919 &dev_attr_ctrl_loss_tmo.attr,
3920 &dev_attr_reconnect_delay.attr,
09fbed63 3921 &dev_attr_fast_io_fail_tmo.attr,
74c22990 3922 &dev_attr_kato.attr,
86c2457a
MB
3923 &dev_attr_cntrltype.attr,
3924 &dev_attr_dctype.attr,
f50fff73
HR
3925#ifdef CONFIG_NVME_AUTH
3926 &dev_attr_dhchap_secret.attr,
3927 &dev_attr_dhchap_ctrl_secret.attr,
3928#endif
779ff756
KB
3929 NULL
3930};
3931
1a353d85
ML
3932static umode_t nvme_dev_attrs_are_visible(struct kobject *kobj,
3933 struct attribute *a, int n)
3934{
3935 struct device *dev = container_of(kobj, struct device, kobj);
3936 struct nvme_ctrl *ctrl = dev_get_drvdata(dev);
3937
49d3d50b
CH
3938 if (a == &dev_attr_delete_controller.attr && !ctrl->ops->delete_ctrl)
3939 return 0;
3940 if (a == &dev_attr_address.attr && !ctrl->ops->get_address)
3941 return 0;
76171c6c
SG
3942 if (a == &dev_attr_hostnqn.attr && !ctrl->opts)
3943 return 0;
45fb19f7
SG
3944 if (a == &dev_attr_hostid.attr && !ctrl->opts)
3945 return 0;
7cd49f75
SG
3946 if (a == &dev_attr_ctrl_loss_tmo.attr && !ctrl->opts)
3947 return 0;
3948 if (a == &dev_attr_reconnect_delay.attr && !ctrl->opts)
3949 return 0;
d6609084
GT
3950 if (a == &dev_attr_fast_io_fail_tmo.attr && !ctrl->opts)
3951 return 0;
f50fff73
HR
3952#ifdef CONFIG_NVME_AUTH
3953 if (a == &dev_attr_dhchap_secret.attr && !ctrl->opts)
3954 return 0;
3955 if (a == &dev_attr_dhchap_ctrl_secret.attr && !ctrl->opts)
3956 return 0;
3957#endif
1a353d85
ML
3958
3959 return a->mode;
3960}
3961
86adbf0c 3962const struct attribute_group nvme_dev_attrs_group = {
1a353d85
ML
3963 .attrs = nvme_dev_attrs,
3964 .is_visible = nvme_dev_attrs_are_visible,
779ff756 3965};
86adbf0c 3966EXPORT_SYMBOL_GPL(nvme_dev_attrs_group);
779ff756
KB
3967
3968static const struct attribute_group *nvme_dev_attr_groups[] = {
3969 &nvme_dev_attrs_group,
3970 NULL,
3971};
3972
5974ea7c 3973static struct nvme_ns_head *nvme_find_ns_head(struct nvme_ctrl *ctrl,
ed754e5d
CH
3974 unsigned nsid)
3975{
3976 struct nvme_ns_head *h;
3977
5974ea7c 3978 lockdep_assert_held(&ctrl->subsys->lock);
ed754e5d 3979
5974ea7c
SM
3980 list_for_each_entry(h, &ctrl->subsys->nsheads, entry) {
3981 /*
3982 * Private namespaces can share NSIDs under some conditions.
3983 * In that case we can't use the same ns_head for namespaces
3984 * with the same NSID.
3985 */
3986 if (h->ns_id != nsid || !nvme_is_unique_nsid(ctrl, h))
9edceaf4
DW
3987 continue;
3988 if (!list_empty(&h->list) && nvme_tryget_ns_head(h))
ed754e5d
CH
3989 return h;
3990 }
3991
3992 return NULL;
3993}
3994
fd8099e7
CH
3995static int nvme_subsys_check_duplicate_ids(struct nvme_subsystem *subsys,
3996 struct nvme_ns_ids *ids)
ed754e5d 3997{
e2724cb9
CH
3998 bool has_uuid = !uuid_is_null(&ids->uuid);
3999 bool has_nguid = memchr_inv(ids->nguid, 0, sizeof(ids->nguid));
4000 bool has_eui64 = memchr_inv(ids->eui64, 0, sizeof(ids->eui64));
ed754e5d
CH
4001 struct nvme_ns_head *h;
4002
4003 lockdep_assert_held(&subsys->lock);
4004
4005 list_for_each_entry(h, &subsys->nsheads, entry) {
e2724cb9
CH
4006 if (has_uuid && uuid_equal(&ids->uuid, &h->ids.uuid))
4007 return -EINVAL;
4008 if (has_nguid &&
4009 memcmp(&ids->nguid, &h->ids.nguid, sizeof(ids->nguid)) == 0)
4010 return -EINVAL;
4011 if (has_eui64 &&
4012 memcmp(&ids->eui64, &h->ids.eui64, sizeof(ids->eui64)) == 0)
ed754e5d
CH
4013 return -EINVAL;
4014 }
4015
4016 return 0;
4017}
4018
be5eb933
AM
4019static void nvme_cdev_rel(struct device *dev)
4020{
8b850475 4021 ida_free(&nvme_ns_chr_minor_ida, MINOR(dev->devt));
be5eb933
AM
4022}
4023
2637baed
MI
4024void nvme_cdev_del(struct cdev *cdev, struct device *cdev_device)
4025{
4026 cdev_device_del(cdev, cdev_device);
be5eb933 4027 put_device(cdev_device);
2637baed
MI
4028}
4029
4030int nvme_cdev_add(struct cdev *cdev, struct device *cdev_device,
4031 const struct file_operations *fops, struct module *owner)
4032{
4033 int minor, ret;
4034
8b850475 4035 minor = ida_alloc(&nvme_ns_chr_minor_ida, GFP_KERNEL);
2637baed
MI
4036 if (minor < 0)
4037 return minor;
4038 cdev_device->devt = MKDEV(MAJOR(nvme_ns_chr_devt), minor);
4039 cdev_device->class = nvme_ns_chr_class;
be5eb933 4040 cdev_device->release = nvme_cdev_rel;
2637baed
MI
4041 device_initialize(cdev_device);
4042 cdev_init(cdev, fops);
4043 cdev->owner = owner;
4044 ret = cdev_device_add(cdev, cdev_device);
be5eb933 4045 if (ret)
3596a065 4046 put_device(cdev_device);
be5eb933 4047
2637baed
MI
4048 return ret;
4049}
4050
4051static int nvme_ns_chr_open(struct inode *inode, struct file *file)
4052{
4053 return nvme_ns_open(container_of(inode->i_cdev, struct nvme_ns, cdev));
4054}
4055
4056static int nvme_ns_chr_release(struct inode *inode, struct file *file)
4057{
4058 nvme_ns_release(container_of(inode->i_cdev, struct nvme_ns, cdev));
4059 return 0;
4060}
4061
4062static const struct file_operations nvme_ns_chr_fops = {
4063 .owner = THIS_MODULE,
4064 .open = nvme_ns_chr_open,
4065 .release = nvme_ns_chr_release,
4066 .unlocked_ioctl = nvme_ns_chr_ioctl,
4067 .compat_ioctl = compat_ptr_ioctl,
456cba38 4068 .uring_cmd = nvme_ns_chr_uring_cmd,
585079b6 4069 .uring_cmd_iopoll = nvme_ns_chr_uring_cmd_iopoll,
2637baed
MI
4070};
4071
4072static int nvme_add_ns_cdev(struct nvme_ns *ns)
4073{
4074 int ret;
4075
4076 ns->cdev_device.parent = ns->ctrl->device;
4077 ret = dev_set_name(&ns->cdev_device, "ng%dn%d",
4078 ns->ctrl->instance, ns->head->instance);
4079 if (ret)
4080 return ret;
be5eb933
AM
4081
4082 return nvme_cdev_add(&ns->cdev, &ns->cdev_device, &nvme_ns_chr_fops,
4083 ns->ctrl->ops->module);
2637baed
MI
4084}
4085
ed754e5d 4086static struct nvme_ns_head *nvme_alloc_ns_head(struct nvme_ctrl *ctrl,
1a893c2b 4087 struct nvme_ns_info *info)
ed754e5d
CH
4088{
4089 struct nvme_ns_head *head;
f3334447 4090 size_t size = sizeof(*head);
ed754e5d
CH
4091 int ret = -ENOMEM;
4092
f3334447
CH
4093#ifdef CONFIG_NVME_MULTIPATH
4094 size += num_possible_nodes() * sizeof(struct nvme_ns *);
4095#endif
4096
4097 head = kzalloc(size, GFP_KERNEL);
ed754e5d
CH
4098 if (!head)
4099 goto out;
8b850475 4100 ret = ida_alloc_min(&ctrl->subsys->ns_ida, 1, GFP_KERNEL);
ed754e5d
CH
4101 if (ret < 0)
4102 goto out_free_head;
4103 head->instance = ret;
4104 INIT_LIST_HEAD(&head->list);
fd92c77f
MG
4105 ret = init_srcu_struct(&head->srcu);
4106 if (ret)
4107 goto out_ida_remove;
ed754e5d 4108 head->subsys = ctrl->subsys;
1a893c2b
CH
4109 head->ns_id = info->nsid;
4110 head->ids = info->ids;
4111 head->shared = info->is_shared;
ed754e5d
CH
4112 kref_init(&head->ref);
4113
be93e87e
KB
4114 if (head->ids.csi) {
4115 ret = nvme_get_effects_log(ctrl, head->ids.csi, &head->effects);
4116 if (ret)
4117 goto out_cleanup_srcu;
4118 } else
4119 head->effects = ctrl->effects;
4120
32acab31
CH
4121 ret = nvme_mpath_alloc_disk(ctrl, head);
4122 if (ret)
4123 goto out_cleanup_srcu;
4124
ed754e5d 4125 list_add_tail(&head->entry, &ctrl->subsys->nsheads);
12d9f070
JW
4126
4127 kref_get(&ctrl->subsys->ref);
4128
ed754e5d
CH
4129 return head;
4130out_cleanup_srcu:
4131 cleanup_srcu_struct(&head->srcu);
fd92c77f 4132out_ida_remove:
8b850475 4133 ida_free(&ctrl->subsys->ns_ida, head->instance);
ed754e5d
CH
4134out_free_head:
4135 kfree(head);
4136out:
538af88e
SG
4137 if (ret > 0)
4138 ret = blk_status_to_errno(nvme_error_status(ret));
ed754e5d
CH
4139 return ERR_PTR(ret);
4140}
4141
2079f41e
CH
4142static int nvme_global_check_duplicate_ids(struct nvme_subsystem *this,
4143 struct nvme_ns_ids *ids)
4144{
4145 struct nvme_subsystem *s;
4146 int ret = 0;
4147
4148 /*
4149 * Note that this check is racy as we try to avoid holding the global
4150 * lock over the whole ns_head creation. But it is only intended as
4151 * a sanity check anyway.
4152 */
4153 mutex_lock(&nvme_subsystems_lock);
4154 list_for_each_entry(s, &nvme_subsystems, entry) {
4155 if (s == this)
4156 continue;
4157 mutex_lock(&s->lock);
4158 ret = nvme_subsys_check_duplicate_ids(s, ids);
4159 mutex_unlock(&s->lock);
4160 if (ret)
4161 break;
4162 }
4163 mutex_unlock(&nvme_subsystems_lock);
4164
4165 return ret;
4166}
4167
1a893c2b 4168static int nvme_init_ns_head(struct nvme_ns *ns, struct nvme_ns_info *info)
ed754e5d
CH
4169{
4170 struct nvme_ctrl *ctrl = ns->ctrl;
ed754e5d 4171 struct nvme_ns_head *head = NULL;
2079f41e
CH
4172 int ret;
4173
1a893c2b 4174 ret = nvme_global_check_duplicate_ids(ctrl->subsys, &info->ids);
2079f41e
CH
4175 if (ret) {
4176 dev_err(ctrl->device,
1a893c2b 4177 "globally duplicate IDs for nsid %d\n", info->nsid);
2f0dad17 4178 nvme_print_device_info(ctrl);
2079f41e
CH
4179 return ret;
4180 }
ed754e5d
CH
4181
4182 mutex_lock(&ctrl->subsys->lock);
1a893c2b 4183 head = nvme_find_ns_head(ctrl, info->nsid);
ed754e5d 4184 if (!head) {
1a893c2b 4185 ret = nvme_subsys_check_duplicate_ids(ctrl->subsys, &info->ids);
e2d77d2e
CH
4186 if (ret) {
4187 dev_err(ctrl->device,
2079f41e 4188 "duplicate IDs in subsystem for nsid %d\n",
1a893c2b 4189 info->nsid);
e2d77d2e
CH
4190 goto out_unlock;
4191 }
1a893c2b 4192 head = nvme_alloc_ns_head(ctrl, info);
ed754e5d
CH
4193 if (IS_ERR(head)) {
4194 ret = PTR_ERR(head);
4195 goto out_unlock;
4196 }
ed754e5d 4197 } else {
6623c5b3 4198 ret = -EINVAL;
1a893c2b 4199 if (!info->is_shared || !head->shared) {
9ad1927a 4200 dev_err(ctrl->device,
1a893c2b
CH
4201 "Duplicate unshared namespace %d\n",
4202 info->nsid);
6623c5b3 4203 goto out_put_ns_head;
9ad1927a 4204 }
1a893c2b 4205 if (!nvme_ns_ids_equal(&head->ids, &info->ids)) {
ed754e5d
CH
4206 dev_err(ctrl->device,
4207 "IDs don't match for shared namespace %d\n",
1a893c2b 4208 info->nsid);
6623c5b3 4209 goto out_put_ns_head;
ed754e5d 4210 }
ce8d7861
CH
4211
4212 if (!multipath && !list_empty(&head->list)) {
4213 dev_warn(ctrl->device,
4214 "Found shared namespace %d, but multipathing not supported.\n",
1a893c2b 4215 info->nsid);
ce8d7861
CH
4216 dev_warn_once(ctrl->device,
4217 "Support for shared namespaces without CONFIG_NVME_MULTIPATH is deprecated and will be removed in Linux 6.0\n.");
4218 }
ed754e5d
CH
4219 }
4220
772ea326 4221 list_add_tail_rcu(&ns->siblings, &head->list);
ed754e5d 4222 ns->head = head;
6623c5b3
CH
4223 mutex_unlock(&ctrl->subsys->lock);
4224 return 0;
ed754e5d 4225
6623c5b3
CH
4226out_put_ns_head:
4227 nvme_put_ns_head(head);
ed754e5d
CH
4228out_unlock:
4229 mutex_unlock(&ctrl->subsys->lock);
4230 return ret;
4231}
4232
24493b8b 4233struct nvme_ns *nvme_find_get_ns(struct nvme_ctrl *ctrl, unsigned nsid)
5bae7f73 4234{
32f0c4af 4235 struct nvme_ns *ns, *ret = NULL;
69d3b8ac 4236
765cc031 4237 down_read(&ctrl->namespaces_rwsem);
5bae7f73 4238 list_for_each_entry(ns, &ctrl->namespaces, list) {
ed754e5d 4239 if (ns->head->ns_id == nsid) {
4c74d1f8 4240 if (!nvme_get_ns(ns))
2dd41228 4241 continue;
32f0c4af
KB
4242 ret = ns;
4243 break;
4244 }
ed754e5d 4245 if (ns->head->ns_id > nsid)
5bae7f73
CH
4246 break;
4247 }
765cc031 4248 up_read(&ctrl->namespaces_rwsem);
32f0c4af 4249 return ret;
5bae7f73 4250}
24493b8b 4251EXPORT_SYMBOL_NS_GPL(nvme_find_get_ns, NVME_TARGET_PASSTHRU);
5bae7f73 4252
298ba0e3
CH
4253/*
4254 * Add the namespace to the controller list while keeping the list ordered.
4255 */
4256static void nvme_ns_add_to_ctrl_list(struct nvme_ns *ns)
4257{
4258 struct nvme_ns *tmp;
4259
4260 list_for_each_entry_reverse(tmp, &ns->ctrl->namespaces, list) {
4261 if (tmp->head->ns_id < ns->head->ns_id) {
4262 list_add(&ns->list, &tmp->list);
4263 return;
4264 }
4265 }
4266 list_add(&ns->list, &ns->ctrl->namespaces);
4267}
4268
1a893c2b 4269static void nvme_alloc_ns(struct nvme_ctrl *ctrl, struct nvme_ns_info *info)
5bae7f73
CH
4270{
4271 struct nvme_ns *ns;
4272 struct gendisk *disk;
9953ab0c 4273 int node = ctrl->numa_node;
5bae7f73
CH
4274
4275 ns = kzalloc_node(sizeof(*ns), GFP_KERNEL, node);
4276 if (!ns)
1a893c2b 4277 return;
5bae7f73 4278
5f432cce
CH
4279 disk = blk_mq_alloc_disk(ctrl->tagset, ns);
4280 if (IS_ERR(disk))
ed754e5d 4281 goto out_free_ns;
5f432cce
CH
4282 disk->fops = &nvme_bdev_ops;
4283 disk->private_data = ns;
4284
4285 ns->disk = disk;
4286 ns->queue = disk->queue;
e0596ab2 4287
7d30c81b 4288 if (ctrl->opts && ctrl->opts->data_digest)
1cb039f3 4289 blk_queue_flag_set(QUEUE_FLAG_STABLE_WRITES, ns->queue);
958f2a0f 4290
8b904b5b 4291 blk_queue_flag_set(QUEUE_FLAG_NONROT, ns->queue);
2f859441
LG
4292 if (ctrl->ops->supports_pci_p2pdma &&
4293 ctrl->ops->supports_pci_p2pdma(ctrl))
e0596ab2
LG
4294 blk_queue_flag_set(QUEUE_FLAG_PCI_P2PDMA, ns->queue);
4295
5bae7f73 4296 ns->ctrl = ctrl;
5bae7f73 4297 kref_init(&ns->kref);
5bae7f73 4298
1a893c2b 4299 if (nvme_init_ns_head(ns, info))
5f432cce 4300 goto out_cleanup_disk;
ac81bfa9 4301
9953ab0c 4302 /*
b739e137
CH
4303 * If multipathing is enabled, the device name for all disks and not
4304 * just those that represent shared namespaces needs to be based on the
4305 * subsystem instance. Using the controller instance for private
4306 * namespaces could lead to naming collisions between shared and private
4307 * namespaces if they don't use a common numbering scheme.
4308 *
4309 * If multipathing is not enabled, disk names must use the controller
4310 * instance as shared namespaces will show up as multiple block
4311 * devices.
9953ab0c 4312 */
b739e137
CH
4313 if (ns->head->disk) {
4314 sprintf(disk->disk_name, "nvme%dc%dn%d", ctrl->subsys->instance,
4315 ctrl->instance, ns->head->instance);
4316 disk->flags |= GENHD_FL_HIDDEN;
4317 } else if (multipath) {
4318 sprintf(disk->disk_name, "nvme%dn%d", ctrl->subsys->instance,
4319 ns->head->instance);
4320 } else {
9953ab0c
CH
4321 sprintf(disk->disk_name, "nvme%dn%d", ctrl->instance,
4322 ns->head->instance);
b739e137 4323 }
3dc87dd0 4324
1a893c2b 4325 if (nvme_update_ns_info(ns, info))
5f432cce 4326 goto out_unlink_ns;
5bae7f73 4327
765cc031 4328 down_write(&ctrl->namespaces_rwsem);
298ba0e3 4329 nvme_ns_add_to_ctrl_list(ns);
765cc031 4330 up_write(&ctrl->namespaces_rwsem);
d22524a4 4331 nvme_get_ctrl(ctrl);
ac81bfa9 4332
ab3994f6
LC
4333 if (device_add_disk(ctrl->device, ns->disk, nvme_ns_id_attr_groups))
4334 goto out_cleanup_ns_from_list;
4335
2637baed
MI
4336 if (!nvme_ns_head_multipath(ns->head))
4337 nvme_add_ns_cdev(ns);
32acab31 4338
1a893c2b 4339 nvme_mpath_add_disk(ns, info->anagrpid);
a3646451 4340 nvme_fault_inject_init(&ns->fault_inject, ns->disk->disk_name);
0d0b660f 4341
adce7e98 4342 return;
5f432cce 4343
ab3994f6
LC
4344 out_cleanup_ns_from_list:
4345 nvme_put_ctrl(ctrl);
4346 down_write(&ctrl->namespaces_rwsem);
4347 list_del_init(&ns->list);
4348 up_write(&ctrl->namespaces_rwsem);
ed754e5d
CH
4349 out_unlink_ns:
4350 mutex_lock(&ctrl->subsys->lock);
4351 list_del_rcu(&ns->siblings);
d5675729
KB
4352 if (list_empty(&ns->head->list))
4353 list_del_init(&ns->head->entry);
ed754e5d 4354 mutex_unlock(&ctrl->subsys->lock);
a63b8370 4355 nvme_put_ns_head(ns->head);
5f432cce 4356 out_cleanup_disk:
8b9ab626 4357 put_disk(disk);
5bae7f73
CH
4358 out_free_ns:
4359 kfree(ns);
4360}
4361
4362static void nvme_ns_remove(struct nvme_ns *ns)
4363{
5396fdac
HR
4364 bool last_path = false;
4365
646017a6
KB
4366 if (test_and_set_bit(NVME_NS_REMOVING, &ns->flags))
4367 return;
69d3b8ac 4368
e7d65803 4369 clear_bit(NVME_NS_READY, &ns->flags);
0a05226a 4370 set_capacity(ns->disk, 0);
a3646451 4371 nvme_fault_inject_fini(&ns->fault_inject);
2181e455 4372
d6d67427
CL
4373 /*
4374 * Ensure that !NVME_NS_READY is seen by other threads to prevent
4375 * this ns going back into current_path.
4376 */
4377 synchronize_srcu(&ns->head->srcu);
4378
4379 /* wait for concurrent submissions */
4380 if (nvme_mpath_clear_current_path(ns))
4381 synchronize_srcu(&ns->head->srcu);
4382
2181e455
AE
4383 mutex_lock(&ns->ctrl->subsys->lock);
4384 list_del_rcu(&ns->siblings);
9edceaf4
DW
4385 if (list_empty(&ns->head->list)) {
4386 list_del_init(&ns->head->entry);
4387 last_path = true;
4388 }
2181e455 4389 mutex_unlock(&ns->ctrl->subsys->lock);
d5675729 4390
041bd1a1 4391 /* guarantee not available in head->list */
899d2a05 4392 synchronize_srcu(&ns->head->srcu);
041bd1a1 4393
5eba2005
CH
4394 if (!nvme_ns_head_multipath(ns->head))
4395 nvme_cdev_del(&ns->cdev, &ns->cdev_device);
4396 del_gendisk(ns->disk);
32f0c4af 4397
765cc031 4398 down_write(&ns->ctrl->namespaces_rwsem);
5bae7f73 4399 list_del_init(&ns->list);
765cc031 4400 up_write(&ns->ctrl->namespaces_rwsem);
32f0c4af 4401
5396fdac
HR
4402 if (last_path)
4403 nvme_mpath_shutdown_disk(ns->head);
5bae7f73
CH
4404 nvme_put_ns(ns);
4405}
4406
4450ba3b
CH
4407static void nvme_ns_remove_by_nsid(struct nvme_ctrl *ctrl, u32 nsid)
4408{
4409 struct nvme_ns *ns = nvme_find_get_ns(ctrl, nsid);
4410
4411 if (ns) {
4412 nvme_ns_remove(ns);
4413 nvme_put_ns(ns);
4414 }
4415}
4416
1a893c2b 4417static void nvme_validate_ns(struct nvme_ns *ns, struct nvme_ns_info *info)
b2dc748a 4418{
d95c1f41 4419 int ret = NVME_SC_INVALID_NS | NVME_SC_DNR;
b2dc748a 4420
1a893c2b 4421 if (!nvme_ns_ids_equal(&ns->head->ids, &info->ids)) {
af5d6f7b 4422 dev_err(ns->ctrl->device,
b2dc748a 4423 "identifiers changed for nsid %d\n", ns->head->ns_id);
1a893c2b 4424 goto out;
b2dc748a
CH
4425 }
4426
1a893c2b 4427 ret = nvme_update_ns_info(ns, info);
b2dc748a
CH
4428out:
4429 /*
0a05226a 4430 * Only remove the namespace if we got a fatal error back from the
b2dc748a 4431 * device, otherwise ignore the error and just move on.
0a05226a
CH
4432 *
4433 * TODO: we should probably schedule a delayed retry here.
b2dc748a 4434 */
d95c1f41 4435 if (ret > 0 && (ret & NVME_SC_DNR))
0a05226a 4436 nvme_ns_remove(ns);
b2dc748a
CH
4437}
4438
04c170f6 4439static void nvme_scan_ns(struct nvme_ctrl *ctrl, unsigned nsid)
540c801c 4440{
1a893c2b 4441 struct nvme_ns_info info = { .nsid = nsid };
540c801c 4442 struct nvme_ns *ns;
0dd6fff2 4443 int ret;
540c801c 4444
1a893c2b 4445 if (nvme_identify_ns_descs(ctrl, &info))
8b7c0ff2 4446 return;
540c801c 4447
1a893c2b 4448 if (info.ids.csi != NVME_CSI_NVM && !nvme_multi_css(ctrl)) {
71882e7d
CH
4449 dev_warn(ctrl->device,
4450 "command set not reported for nsid: %d\n", nsid);
4451 return;
4452 }
4453
354201c5 4454 /*
1a893c2b
CH
4455 * If available try to use the Command Set Idependent Identify Namespace
4456 * data structure to find all the generic information that is needed to
4457 * set up a namespace. If not fall back to the legacy version.
354201c5 4458 */
eb867ee9 4459 if ((ctrl->cap & NVME_CAP_CRMS_CRIMS) ||
0dd6fff2
CH
4460 (info.ids.csi != NVME_CSI_NVM && info.ids.csi != NVME_CSI_ZNS))
4461 ret = nvme_ns_info_from_id_cs_indep(ctrl, &info);
4462 else
4463 ret = nvme_ns_info_from_identify(ctrl, &info);
4464
4465 if (info.is_removed)
4466 nvme_ns_remove_by_nsid(ctrl, nsid);
354201c5 4467
1a893c2b
CH
4468 /*
4469 * Ignore the namespace if it is not ready. We will get an AEN once it
4470 * becomes ready and restart the scan.
4471 */
0dd6fff2 4472 if (ret || !info.is_ready)
354201c5
CH
4473 return;
4474
32f0c4af 4475 ns = nvme_find_get_ns(ctrl, nsid);
8b7c0ff2 4476 if (ns) {
1a893c2b 4477 nvme_validate_ns(ns, &info);
8b7c0ff2 4478 nvme_put_ns(ns);
1a893c2b
CH
4479 } else {
4480 nvme_alloc_ns(ctrl, &info);
8b7c0ff2 4481 }
540c801c
KB
4482}
4483
47b0e50a
SB
4484static void nvme_remove_invalid_namespaces(struct nvme_ctrl *ctrl,
4485 unsigned nsid)
4486{
4487 struct nvme_ns *ns, *next;
6f8e0d78 4488 LIST_HEAD(rm_list);
47b0e50a 4489
765cc031 4490 down_write(&ctrl->namespaces_rwsem);
47b0e50a 4491 list_for_each_entry_safe(ns, next, &ctrl->namespaces, list) {
4f17344e 4492 if (ns->head->ns_id > nsid)
6f8e0d78 4493 list_move_tail(&ns->list, &rm_list);
47b0e50a 4494 }
765cc031 4495 up_write(&ctrl->namespaces_rwsem);
6f8e0d78
JW
4496
4497 list_for_each_entry_safe(ns, next, &rm_list, list)
4498 nvme_ns_remove(ns);
4499
47b0e50a
SB
4500}
4501
4005f28d 4502static int nvme_scan_ns_list(struct nvme_ctrl *ctrl)
540c801c 4503{
aec459b4 4504 const int nr_entries = NVME_IDENTIFY_DATA_SIZE / sizeof(__le32);
540c801c 4505 __le32 *ns_list;
4005f28d
CH
4506 u32 prev = 0;
4507 int ret = 0, i;
540c801c 4508
42595eb7 4509 ns_list = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL);
540c801c
KB
4510 if (!ns_list)
4511 return -ENOMEM;
4512
4005f28d 4513 for (;;) {
7b153362
CH
4514 struct nvme_command cmd = {
4515 .identify.opcode = nvme_admin_identify,
4516 .identify.cns = NVME_ID_CNS_NS_ACTIVE_LIST,
4517 .identify.nsid = cpu_to_le32(prev),
4518 };
4519
4520 ret = nvme_submit_sync_cmd(ctrl->admin_q, &cmd, ns_list,
4521 NVME_IDENTIFY_DATA_SIZE);
f781f3dd
MI
4522 if (ret) {
4523 dev_warn(ctrl->device,
4524 "Identify NS List failed (status=0x%x)\n", ret);
47b0e50a 4525 goto free;
f781f3dd 4526 }
540c801c 4527
aec459b4 4528 for (i = 0; i < nr_entries; i++) {
4005f28d 4529 u32 nsid = le32_to_cpu(ns_list[i]);
540c801c 4530
4005f28d
CH
4531 if (!nsid) /* end of the list? */
4532 goto out;
04c170f6 4533 nvme_scan_ns(ctrl, nsid);
4450ba3b
CH
4534 while (++prev < nsid)
4535 nvme_ns_remove_by_nsid(ctrl, prev);
540c801c 4536 }
540c801c
KB
4537 }
4538 out:
47b0e50a
SB
4539 nvme_remove_invalid_namespaces(ctrl, prev);
4540 free:
540c801c
KB
4541 kfree(ns_list);
4542 return ret;
4543}
4544
4005f28d 4545static void nvme_scan_ns_sequential(struct nvme_ctrl *ctrl)
5bae7f73 4546{
4005f28d
CH
4547 struct nvme_id_ctrl *id;
4548 u32 nn, i;
4549
4550 if (nvme_identify_ctrl(ctrl, &id))
4551 return;
4552 nn = le32_to_cpu(id->nn);
4553 kfree(id);
5bae7f73 4554
540c801c 4555 for (i = 1; i <= nn; i++)
04c170f6 4556 nvme_scan_ns(ctrl, i);
540c801c 4557
47b0e50a 4558 nvme_remove_invalid_namespaces(ctrl, nn);
5bae7f73
CH
4559}
4560
f493af37 4561static void nvme_clear_changed_ns_log(struct nvme_ctrl *ctrl)
30d90964
CH
4562{
4563 size_t log_size = NVME_MAX_CHANGED_NAMESPACES * sizeof(__le32);
4564 __le32 *log;
f493af37 4565 int error;
30d90964
CH
4566
4567 log = kzalloc(log_size, GFP_KERNEL);
4568 if (!log)
f493af37 4569 return;
30d90964 4570
f493af37
CH
4571 /*
4572 * We need to read the log to clear the AEN, but we don't want to rely
4573 * on it for the changed namespace information as userspace could have
4574 * raced with us in reading the log page, which could cause us to miss
4575 * updates.
4576 */
be93e87e
KB
4577 error = nvme_get_log(ctrl, NVME_NSID_ALL, NVME_LOG_CHANGED_NS, 0,
4578 NVME_CSI_NVM, log, log_size, 0);
f493af37 4579 if (error)
30d90964
CH
4580 dev_warn(ctrl->device,
4581 "reading changed ns log failed: %d\n", error);
30d90964 4582
30d90964 4583 kfree(log);
30d90964
CH
4584}
4585
5955be21 4586static void nvme_scan_work(struct work_struct *work)
5bae7f73 4587{
5955be21
CH
4588 struct nvme_ctrl *ctrl =
4589 container_of(work, struct nvme_ctrl, scan_work);
78288665 4590 int ret;
5bae7f73 4591
5d02a5c1
KB
4592 /* No tagset on a live ctrl means IO queues could not created */
4593 if (ctrl->state != NVME_CTRL_LIVE || !ctrl->tagset)
5955be21
CH
4594 return;
4595
78288665
CK
4596 /*
4597 * Identify controller limits can change at controller reset due to
4598 * new firmware download, even though it is not common we cannot ignore
4599 * such scenario. Controller's non-mdts limits are reported in the unit
4600 * of logical blocks that is dependent on the format of attached
4601 * namespace. Hence re-read the limits at the time of ns allocation.
4602 */
4603 ret = nvme_init_non_mdts_limits(ctrl);
4604 if (ret < 0) {
4605 dev_warn(ctrl->device,
4606 "reading non-mdts-limits failed: %d\n", ret);
4607 return;
4608 }
4609
77016199 4610 if (test_and_clear_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events)) {
30d90964 4611 dev_info(ctrl->device, "rescanning namespaces.\n");
f493af37 4612 nvme_clear_changed_ns_log(ctrl);
30d90964
CH
4613 }
4614
e7ad43c3 4615 mutex_lock(&ctrl->scan_lock);
811f4de0 4616 if (nvme_ctrl_limited_cns(ctrl)) {
4005f28d 4617 nvme_scan_ns_sequential(ctrl);
811f4de0
US
4618 } else {
4619 /*
4620 * Fall back to sequential scan if DNR is set to handle broken
4621 * devices which should support Identify NS List (as per the VS
4622 * they report) but don't actually support it.
4623 */
4624 ret = nvme_scan_ns_list(ctrl);
4625 if (ret > 0 && ret & NVME_SC_DNR)
4626 nvme_scan_ns_sequential(ctrl);
4627 }
e7ad43c3 4628 mutex_unlock(&ctrl->scan_lock);
5955be21 4629}
5bae7f73 4630
32f0c4af
KB
4631/*
4632 * This function iterates the namespace list unlocked to allow recovery from
4633 * controller failure. It is up to the caller to ensure the namespace list is
4634 * not modified by scan work while this function is executing.
4635 */
5bae7f73
CH
4636void nvme_remove_namespaces(struct nvme_ctrl *ctrl)
4637{
4638 struct nvme_ns *ns, *next;
6f8e0d78 4639 LIST_HEAD(ns_list);
5bae7f73 4640
0157ec8d
SG
4641 /*
4642 * make sure to requeue I/O to all namespaces as these
4643 * might result from the scan itself and must complete
4644 * for the scan_work to make progress
4645 */
4646 nvme_mpath_clear_ctrl_paths(ctrl);
4647
f6c8e432
SG
4648 /* prevent racing with ns scanning */
4649 flush_work(&ctrl->scan_work);
4650
0ff9d4e1
KB
4651 /*
4652 * The dead states indicates the controller was not gracefully
4653 * disconnected. In that case, we won't be able to flush any data while
4654 * removing the namespaces' disks; fail all the queues now to avoid
4655 * potentially having to clean up the failed sync later.
4656 */
cd50f9b2
CH
4657 if (ctrl->state == NVME_CTRL_DEAD) {
4658 nvme_mark_namespaces_dead(ctrl);
9f27bd70 4659 nvme_unquiesce_io_queues(ctrl);
cd50f9b2 4660 }
0ff9d4e1 4661
ecca390e
SG
4662 /* this is a no-op when called from the controller reset handler */
4663 nvme_change_ctrl_state(ctrl, NVME_CTRL_DELETING_NOIO);
4664
765cc031 4665 down_write(&ctrl->namespaces_rwsem);
6f8e0d78 4666 list_splice_init(&ctrl->namespaces, &ns_list);
765cc031 4667 up_write(&ctrl->namespaces_rwsem);
6f8e0d78
JW
4668
4669 list_for_each_entry_safe(ns, next, &ns_list, list)
5bae7f73
CH
4670 nvme_ns_remove(ns);
4671}
576d55d6 4672EXPORT_SYMBOL_GPL(nvme_remove_namespaces);
5bae7f73 4673
23680f0b 4674static int nvme_class_uevent(const struct device *dev, struct kobj_uevent_env *env)
a42f42e5 4675{
23680f0b 4676 const struct nvme_ctrl *ctrl =
a42f42e5
SG
4677 container_of(dev, struct nvme_ctrl, ctrl_device);
4678 struct nvmf_ctrl_options *opts = ctrl->opts;
4679 int ret;
4680
4681 ret = add_uevent_var(env, "NVME_TRTYPE=%s", ctrl->ops->name);
4682 if (ret)
4683 return ret;
4684
4685 if (opts) {
4686 ret = add_uevent_var(env, "NVME_TRADDR=%s", opts->traddr);
4687 if (ret)
4688 return ret;
4689
4690 ret = add_uevent_var(env, "NVME_TRSVCID=%s",
4691 opts->trsvcid ?: "none");
4692 if (ret)
4693 return ret;
4694
4695 ret = add_uevent_var(env, "NVME_HOST_TRADDR=%s",
4696 opts->host_traddr ?: "none");
3ede8f72
MB
4697 if (ret)
4698 return ret;
4699
4700 ret = add_uevent_var(env, "NVME_HOST_IFACE=%s",
4701 opts->host_iface ?: "none");
a42f42e5
SG
4702 }
4703 return ret;
4704}
4705
20d64911
MB
4706static void nvme_change_uevent(struct nvme_ctrl *ctrl, char *envdata)
4707{
4708 char *envp[2] = { envdata, NULL };
4709
4710 kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
4711}
4712
e3d7874d
KB
4713static void nvme_aen_uevent(struct nvme_ctrl *ctrl)
4714{
4715 char *envp[2] = { NULL, NULL };
4716 u32 aen_result = ctrl->aen_result;
4717
4718 ctrl->aen_result = 0;
4719 if (!aen_result)
4720 return;
4721
4722 envp[0] = kasprintf(GFP_KERNEL, "NVME_AEN=%#08x", aen_result);
4723 if (!envp[0])
4724 return;
4725 kobject_uevent_env(&ctrl->device->kobj, KOBJ_CHANGE, envp);
4726 kfree(envp[0]);
4727}
4728
f866fc42
CH
4729static void nvme_async_event_work(struct work_struct *work)
4730{
4731 struct nvme_ctrl *ctrl =
4732 container_of(work, struct nvme_ctrl, async_event_work);
4733
e3d7874d 4734 nvme_aen_uevent(ctrl);
0fa0f99f
SG
4735
4736 /*
4737 * The transport drivers must guarantee AER submission here is safe by
4738 * flushing ctrl async_event_work after changing the controller state
4739 * from LIVE and before freeing the admin queue.
4740 */
4741 if (ctrl->state == NVME_CTRL_LIVE)
4742 ctrl->ops->submit_async_event(ctrl);
f866fc42
CH
4743}
4744
b6dccf7f
AD
4745static bool nvme_ctrl_pp_status(struct nvme_ctrl *ctrl)
4746{
4747
4748 u32 csts;
4749
4750 if (ctrl->ops->reg_read32(ctrl, NVME_REG_CSTS, &csts))
4751 return false;
4752
4753 if (csts == ~0)
4754 return false;
4755
4756 return ((ctrl->ctrl_config & NVME_CC_ENABLE) && (csts & NVME_CSTS_PP));
4757}
4758
4759static void nvme_get_fw_slot_info(struct nvme_ctrl *ctrl)
4760{
b6dccf7f
AD
4761 struct nvme_fw_slot_info_log *log;
4762
4763 log = kmalloc(sizeof(*log), GFP_KERNEL);
4764 if (!log)
4765 return;
4766
be93e87e
KB
4767 if (nvme_get_log(ctrl, NVME_NSID_ALL, NVME_LOG_FW_SLOT, 0, NVME_CSI_NVM,
4768 log, sizeof(*log), 0))
0e98719b 4769 dev_warn(ctrl->device, "Get FW SLOT INFO log error\n");
b6dccf7f
AD
4770 kfree(log);
4771}
4772
4773static void nvme_fw_act_work(struct work_struct *work)
4774{
4775 struct nvme_ctrl *ctrl = container_of(work,
4776 struct nvme_ctrl, fw_act_work);
4777 unsigned long fw_act_timeout;
4778
4779 if (ctrl->mtfa)
4780 fw_act_timeout = jiffies +
4781 msecs_to_jiffies(ctrl->mtfa * 100);
4782 else
4783 fw_act_timeout = jiffies +
4784 msecs_to_jiffies(admin_timeout * 1000);
4785
9f27bd70 4786 nvme_quiesce_io_queues(ctrl);
b6dccf7f
AD
4787 while (nvme_ctrl_pp_status(ctrl)) {
4788 if (time_after(jiffies, fw_act_timeout)) {
4789 dev_warn(ctrl->device,
4790 "Fw activation timeout, reset controller\n");
4c75f877
KB
4791 nvme_try_sched_reset(ctrl);
4792 return;
b6dccf7f
AD
4793 }
4794 msleep(100);
4795 }
4796
4c75f877 4797 if (!nvme_change_ctrl_state(ctrl, NVME_CTRL_LIVE))
b6dccf7f
AD
4798 return;
4799
9f27bd70 4800 nvme_unquiesce_io_queues(ctrl);
a806c6c8 4801 /* read FW slot information to clear the AER */
b6dccf7f 4802 nvme_get_fw_slot_info(ctrl);
371a982c
KB
4803
4804 queue_work(nvme_wq, &ctrl->async_event_work);
b6dccf7f
AD
4805}
4806
2c61c97f
MK
4807static u32 nvme_aer_type(u32 result)
4808{
4809 return result & 0x7;
4810}
4811
4812static u32 nvme_aer_subtype(u32 result)
4813{
4814 return (result & 0xff00) >> 8;
4815}
4816
371a982c 4817static bool nvme_handle_aen_notice(struct nvme_ctrl *ctrl, u32 result)
868c2392 4818{
2c61c97f 4819 u32 aer_notice_type = nvme_aer_subtype(result);
371a982c 4820 bool requeue = true;
09bd1ff4 4821
521cfb8e
CK
4822 trace_nvme_async_event(ctrl, aer_notice_type);
4823
09bd1ff4 4824 switch (aer_notice_type) {
868c2392 4825 case NVME_AER_NOTICE_NS_CHANGED:
77016199 4826 set_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events);
868c2392
CH
4827 nvme_queue_scan(ctrl);
4828 break;
4829 case NVME_AER_NOTICE_FW_ACT_STARTING:
4c75f877
KB
4830 /*
4831 * We are (ab)using the RESETTING state to prevent subsequent
4832 * recovery actions from interfering with the controller's
4833 * firmware activation.
4834 */
f50fff73
HR
4835 if (nvme_change_ctrl_state(ctrl, NVME_CTRL_RESETTING)) {
4836 nvme_auth_stop(ctrl);
371a982c 4837 requeue = false;
4c75f877 4838 queue_work(nvme_wq, &ctrl->fw_act_work);
f50fff73 4839 }
868c2392 4840 break;
0d0b660f
CH
4841#ifdef CONFIG_NVME_MULTIPATH
4842 case NVME_AER_NOTICE_ANA:
4843 if (!ctrl->ana_log_buf)
4844 break;
4845 queue_work(nvme_wq, &ctrl->ana_work);
4846 break;
4847#endif
85f8a435
SG
4848 case NVME_AER_NOTICE_DISC_CHANGED:
4849 ctrl->aen_result = result;
4850 break;
868c2392
CH
4851 default:
4852 dev_warn(ctrl->device, "async event result %08x\n", result);
4853 }
371a982c 4854 return requeue;
868c2392
CH
4855}
4856
2c61c97f
MK
4857static void nvme_handle_aer_persistent_error(struct nvme_ctrl *ctrl)
4858{
4859 trace_nvme_async_event(ctrl, NVME_AER_ERROR);
4860 dev_warn(ctrl->device, "resetting controller due to AER\n");
4861 nvme_reset_ctrl(ctrl);
4862}
4863
7bf58533 4864void nvme_complete_async_event(struct nvme_ctrl *ctrl, __le16 status,
287a63eb 4865 volatile union nvme_result *res)
f866fc42 4866{
7bf58533 4867 u32 result = le32_to_cpu(res->u32);
2c61c97f
MK
4868 u32 aer_type = nvme_aer_type(result);
4869 u32 aer_subtype = nvme_aer_subtype(result);
371a982c 4870 bool requeue = true;
f866fc42 4871
ad22c355 4872 if (le16_to_cpu(status) >> 1 != NVME_SC_SUCCESS)
f866fc42
CH
4873 return;
4874
09bd1ff4 4875 switch (aer_type) {
868c2392 4876 case NVME_AER_NOTICE:
371a982c 4877 requeue = nvme_handle_aen_notice(ctrl, result);
868c2392 4878 break;
e3d7874d 4879 case NVME_AER_ERROR:
2c61c97f
MK
4880 /*
4881 * For a persistent internal error, don't run async_event_work
4882 * to submit a new AER. The controller reset will do it.
4883 */
4884 if (aer_subtype == NVME_AER_ERROR_PERSIST_INT_ERR) {
4885 nvme_handle_aer_persistent_error(ctrl);
4886 return;
4887 }
4888 fallthrough;
e3d7874d
KB
4889 case NVME_AER_SMART:
4890 case NVME_AER_CSS:
4891 case NVME_AER_VS:
09bd1ff4 4892 trace_nvme_async_event(ctrl, aer_type);
e3d7874d 4893 ctrl->aen_result = result;
7bf58533
CH
4894 break;
4895 default:
4896 break;
f866fc42 4897 }
371a982c
KB
4898
4899 if (requeue)
4900 queue_work(nvme_wq, &ctrl->async_event_work);
f866fc42 4901}
f866fc42 4902EXPORT_SYMBOL_GPL(nvme_complete_async_event);
f3ca80fc 4903
fe60e8c5 4904int nvme_alloc_admin_tag_set(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set,
db45e1a5 4905 const struct blk_mq_ops *ops, unsigned int cmd_size)
fe60e8c5
CH
4906{
4907 int ret;
4908
4909 memset(set, 0, sizeof(*set));
4910 set->ops = ops;
4911 set->queue_depth = NVME_AQ_MQ_TAG_DEPTH;
4912 if (ctrl->ops->flags & NVME_F_FABRICS)
4913 set->reserved_tags = NVMF_RESERVED_TAGS;
4914 set->numa_node = ctrl->numa_node;
db45e1a5
CH
4915 set->flags = BLK_MQ_F_NO_SCHED;
4916 if (ctrl->ops->flags & NVME_F_BLOCKING)
4917 set->flags |= BLK_MQ_F_BLOCKING;
fe60e8c5
CH
4918 set->cmd_size = cmd_size;
4919 set->driver_data = ctrl;
4920 set->nr_hw_queues = 1;
4921 set->timeout = NVME_ADMIN_TIMEOUT;
4922 ret = blk_mq_alloc_tag_set(set);
4923 if (ret)
4924 return ret;
4925
4926 ctrl->admin_q = blk_mq_init_queue(set);
4927 if (IS_ERR(ctrl->admin_q)) {
4928 ret = PTR_ERR(ctrl->admin_q);
4929 goto out_free_tagset;
4930 }
4931
4932 if (ctrl->ops->flags & NVME_F_FABRICS) {
4933 ctrl->fabrics_q = blk_mq_init_queue(set);
4934 if (IS_ERR(ctrl->fabrics_q)) {
4935 ret = PTR_ERR(ctrl->fabrics_q);
4936 goto out_cleanup_admin_q;
4937 }
4938 }
4939
4940 ctrl->admin_tagset = set;
4941 return 0;
4942
4943out_cleanup_admin_q:
4739824e 4944 blk_mq_destroy_queue(ctrl->admin_q);
2b3f056f 4945 blk_put_queue(ctrl->admin_q);
fe60e8c5 4946out_free_tagset:
fd62678a
ML
4947 blk_mq_free_tag_set(set);
4948 ctrl->admin_q = NULL;
4949 ctrl->fabrics_q = NULL;
fe60e8c5
CH
4950 return ret;
4951}
4952EXPORT_SYMBOL_GPL(nvme_alloc_admin_tag_set);
4953
4954void nvme_remove_admin_tag_set(struct nvme_ctrl *ctrl)
4955{
4956 blk_mq_destroy_queue(ctrl->admin_q);
2b3f056f
CH
4957 blk_put_queue(ctrl->admin_q);
4958 if (ctrl->ops->flags & NVME_F_FABRICS) {
fe60e8c5 4959 blk_mq_destroy_queue(ctrl->fabrics_q);
2b3f056f
CH
4960 blk_put_queue(ctrl->fabrics_q);
4961 }
fe60e8c5
CH
4962 blk_mq_free_tag_set(ctrl->admin_tagset);
4963}
4964EXPORT_SYMBOL_GPL(nvme_remove_admin_tag_set);
4965
4966int nvme_alloc_io_tag_set(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set,
db45e1a5 4967 const struct blk_mq_ops *ops, unsigned int nr_maps,
fe60e8c5
CH
4968 unsigned int cmd_size)
4969{
4970 int ret;
4971
4972 memset(set, 0, sizeof(*set));
4973 set->ops = ops;
33b93727 4974 set->queue_depth = min_t(unsigned, ctrl->sqsize, BLK_MQ_MAX_DEPTH - 1);
93b24f57
CH
4975 /*
4976 * Some Apple controllers requires tags to be unique across admin and
4977 * the (only) I/O queue, so reserve the first 32 tags of the I/O queue.
4978 */
4979 if (ctrl->quirks & NVME_QUIRK_SHARED_TAGS)
4980 set->reserved_tags = NVME_AQ_DEPTH;
4981 else if (ctrl->ops->flags & NVME_F_FABRICS)
b794d1c2 4982 set->reserved_tags = NVMF_RESERVED_TAGS;
fe60e8c5 4983 set->numa_node = ctrl->numa_node;
db45e1a5
CH
4984 set->flags = BLK_MQ_F_SHOULD_MERGE;
4985 if (ctrl->ops->flags & NVME_F_BLOCKING)
4986 set->flags |= BLK_MQ_F_BLOCKING;
fe60e8c5
CH
4987 set->cmd_size = cmd_size,
4988 set->driver_data = ctrl;
4989 set->nr_hw_queues = ctrl->queue_count - 1;
4990 set->timeout = NVME_IO_TIMEOUT;
dcef7727 4991 set->nr_maps = nr_maps;
fe60e8c5
CH
4992 ret = blk_mq_alloc_tag_set(set);
4993 if (ret)
4994 return ret;
4995
4996 if (ctrl->ops->flags & NVME_F_FABRICS) {
4997 ctrl->connect_q = blk_mq_init_queue(set);
4998 if (IS_ERR(ctrl->connect_q)) {
4999 ret = PTR_ERR(ctrl->connect_q);
5000 goto out_free_tag_set;
5001 }
98d81f0d
CL
5002 blk_queue_flag_set(QUEUE_FLAG_SKIP_TAGSET_QUIESCE,
5003 ctrl->connect_q);
fe60e8c5
CH
5004 }
5005
5006 ctrl->tagset = set;
5007 return 0;
5008
5009out_free_tag_set:
5010 blk_mq_free_tag_set(set);
6fbf13c0 5011 ctrl->connect_q = NULL;
fe60e8c5
CH
5012 return ret;
5013}
5014EXPORT_SYMBOL_GPL(nvme_alloc_io_tag_set);
5015
5016void nvme_remove_io_tag_set(struct nvme_ctrl *ctrl)
5017{
2b3f056f 5018 if (ctrl->ops->flags & NVME_F_FABRICS) {
fe60e8c5 5019 blk_mq_destroy_queue(ctrl->connect_q);
2b3f056f
CH
5020 blk_put_queue(ctrl->connect_q);
5021 }
fe60e8c5
CH
5022 blk_mq_free_tag_set(ctrl->tagset);
5023}
5024EXPORT_SYMBOL_GPL(nvme_remove_io_tag_set);
5025
d09f2b45 5026void nvme_stop_ctrl(struct nvme_ctrl *ctrl)
576d55d6 5027{
0d0b660f 5028 nvme_mpath_stop(ctrl);
f50fff73 5029 nvme_auth_stop(ctrl);
d09f2b45 5030 nvme_stop_keep_alive(ctrl);
8c4dfea9 5031 nvme_stop_failfast_work(ctrl);
f866fc42 5032 flush_work(&ctrl->async_event_work);
b6dccf7f 5033 cancel_work_sync(&ctrl->fw_act_work);
f7f70f4a
RL
5034 if (ctrl->ops->stop_ctrl)
5035 ctrl->ops->stop_ctrl(ctrl);
d09f2b45
SG
5036}
5037EXPORT_SYMBOL_GPL(nvme_stop_ctrl);
5038
5039void nvme_start_ctrl(struct nvme_ctrl *ctrl)
5040{
5887450b 5041 nvme_start_keep_alive(ctrl);
d09f2b45 5042
93da4023
SG
5043 nvme_enable_aen(ctrl);
5044
f46ef9e8
SG
5045 /*
5046 * persistent discovery controllers need to send indication to userspace
5047 * to re-read the discovery log page to learn about possible changes
5048 * that were missed. We identify persistent discovery controllers by
5049 * checking that they started once before, hence are reconnecting back.
5050 */
5051 if (test_and_set_bit(NVME_CTRL_STARTED_ONCE, &ctrl->flags) &&
5052 nvme_discovery_ctrl(ctrl))
5053 nvme_change_uevent(ctrl, "NVME_EVENT=rediscover");
5054
d09f2b45
SG
5055 if (ctrl->queue_count > 1) {
5056 nvme_queue_scan(ctrl);
9f27bd70 5057 nvme_unquiesce_io_queues(ctrl);
a4a6f3c8 5058 nvme_mpath_update(ctrl);
d09f2b45 5059 }
20d64911
MB
5060
5061 nvme_change_uevent(ctrl, "NVME_EVENT=connected");
d09f2b45
SG
5062}
5063EXPORT_SYMBOL_GPL(nvme_start_ctrl);
5955be21 5064
d09f2b45
SG
5065void nvme_uninit_ctrl(struct nvme_ctrl *ctrl)
5066{
ed7770f6 5067 nvme_hwmon_exit(ctrl);
f79d5fda 5068 nvme_fault_inject_fini(&ctrl->fault_inject);
510a405d 5069 dev_pm_qos_hide_latency_tolerance(ctrl->device);
a6a5149b 5070 cdev_device_del(&ctrl->cdev, ctrl->device);
726612b6 5071 nvme_put_ctrl(ctrl);
53029b04 5072}
576d55d6 5073EXPORT_SYMBOL_GPL(nvme_uninit_ctrl);
53029b04 5074
8168d23f
KB
5075static void nvme_free_cels(struct nvme_ctrl *ctrl)
5076{
5077 struct nvme_effects_log *cel;
5078 unsigned long i;
5079
8f8ea928 5080 xa_for_each(&ctrl->cels, i, cel) {
8168d23f
KB
5081 xa_erase(&ctrl->cels, i);
5082 kfree(cel);
5083 }
5084
5085 xa_destroy(&ctrl->cels);
5086}
5087
d22524a4 5088static void nvme_free_ctrl(struct device *dev)
53029b04 5089{
d22524a4
CH
5090 struct nvme_ctrl *ctrl =
5091 container_of(dev, struct nvme_ctrl, ctrl_device);
ab9e00cc 5092 struct nvme_subsystem *subsys = ctrl->subsys;
f3ca80fc 5093
192f6c29 5094 if (!subsys || ctrl->instance != subsys->instance)
8b850475 5095 ida_free(&nvme_instance_ida, ctrl->instance);
733e4b69 5096
8168d23f 5097 nvme_free_cels(ctrl);
0d0b660f 5098 nvme_mpath_uninit(ctrl);
f50fff73
HR
5099 nvme_auth_stop(ctrl);
5100 nvme_auth_free(ctrl);
092ff052 5101 __free_page(ctrl->discard_page);
94cc781f 5102 free_opal_dev(ctrl->opal_dev);
f3ca80fc 5103
ab9e00cc 5104 if (subsys) {
32fd90c4 5105 mutex_lock(&nvme_subsystems_lock);
ab9e00cc 5106 list_del(&ctrl->subsys_entry);
ab9e00cc 5107 sysfs_remove_link(&subsys->dev.kobj, dev_name(ctrl->device));
32fd90c4 5108 mutex_unlock(&nvme_subsystems_lock);
ab9e00cc 5109 }
f3ca80fc
CH
5110
5111 ctrl->ops->free_ctrl(ctrl);
f3ca80fc 5112
ab9e00cc
CH
5113 if (subsys)
5114 nvme_put_subsystem(subsys);
f3ca80fc
CH
5115}
5116
5117/*
5118 * Initialize a NVMe controller structures. This needs to be called during
5119 * earliest initialization so that we have the initialized structured around
5120 * during probing.
5121 */
5122int nvme_init_ctrl(struct nvme_ctrl *ctrl, struct device *dev,
5123 const struct nvme_ctrl_ops *ops, unsigned long quirks)
5124{
5125 int ret;
5126
bb8d261e 5127 ctrl->state = NVME_CTRL_NEW;
8c4dfea9 5128 clear_bit(NVME_CTRL_FAILFAST_EXPIRED, &ctrl->flags);
bb8d261e 5129 spin_lock_init(&ctrl->lock);
e7ad43c3 5130 mutex_init(&ctrl->scan_lock);
f3ca80fc 5131 INIT_LIST_HEAD(&ctrl->namespaces);
1cf7a12e 5132 xa_init(&ctrl->cels);
765cc031 5133 init_rwsem(&ctrl->namespaces_rwsem);
f3ca80fc
CH
5134 ctrl->dev = dev;
5135 ctrl->ops = ops;
5136 ctrl->quirks = quirks;
4fea243e 5137 ctrl->numa_node = NUMA_NO_NODE;
5955be21 5138 INIT_WORK(&ctrl->scan_work, nvme_scan_work);
f866fc42 5139 INIT_WORK(&ctrl->async_event_work, nvme_async_event_work);
b6dccf7f 5140 INIT_WORK(&ctrl->fw_act_work, nvme_fw_act_work);
c5017e85 5141 INIT_WORK(&ctrl->delete_work, nvme_delete_ctrl_work);
c1ac9a4b 5142 init_waitqueue_head(&ctrl->state_wq);
f3ca80fc 5143
230f1f9e 5144 INIT_DELAYED_WORK(&ctrl->ka_work, nvme_keep_alive_work);
8c4dfea9 5145 INIT_DELAYED_WORK(&ctrl->failfast_work, nvme_failfast_work);
230f1f9e
JS
5146 memset(&ctrl->ka_cmd, 0, sizeof(ctrl->ka_cmd));
5147 ctrl->ka_cmd.common.opcode = nvme_admin_keep_alive;
5148
cb5b7262
JA
5149 BUILD_BUG_ON(NVME_DSM_MAX_RANGES * sizeof(struct nvme_dsm_range) >
5150 PAGE_SIZE);
5151 ctrl->discard_page = alloc_page(GFP_KERNEL);
5152 if (!ctrl->discard_page) {
5153 ret = -ENOMEM;
5154 goto out;
5155 }
5156
8b850475 5157 ret = ida_alloc(&nvme_instance_ida, GFP_KERNEL);
9843f685 5158 if (ret < 0)
f3ca80fc 5159 goto out;
9843f685 5160 ctrl->instance = ret;
f3ca80fc 5161
d22524a4
CH
5162 device_initialize(&ctrl->ctrl_device);
5163 ctrl->device = &ctrl->ctrl_device;
f68abd9c
JG
5164 ctrl->device->devt = MKDEV(MAJOR(nvme_ctrl_base_chr_devt),
5165 ctrl->instance);
d22524a4
CH
5166 ctrl->device->class = nvme_class;
5167 ctrl->device->parent = ctrl->dev;
86adbf0c
CH
5168 if (ops->dev_attr_groups)
5169 ctrl->device->groups = ops->dev_attr_groups;
5170 else
5171 ctrl->device->groups = nvme_dev_attr_groups;
d22524a4
CH
5172 ctrl->device->release = nvme_free_ctrl;
5173 dev_set_drvdata(ctrl->device, ctrl);
5174 ret = dev_set_name(ctrl->device, "nvme%d", ctrl->instance);
5175 if (ret)
f3ca80fc 5176 goto out_release_instance;
f3ca80fc 5177
b780d741 5178 nvme_get_ctrl(ctrl);
a6a5149b
CH
5179 cdev_init(&ctrl->cdev, &nvme_dev_fops);
5180 ctrl->cdev.owner = ops->module;
5181 ret = cdev_device_add(&ctrl->cdev, ctrl->device);
d22524a4
CH
5182 if (ret)
5183 goto out_free_name;
f3ca80fc 5184
c5552fde
AL
5185 /*
5186 * Initialize latency tolerance controls. The sysfs files won't
5187 * be visible to userspace unless the device actually supports APST.
5188 */
5189 ctrl->device->power.set_latency_tolerance = nvme_set_latency_tolerance;
5190 dev_pm_qos_update_user_latency_tolerance(ctrl->device,
5191 min(default_ps_max_latency_us, (unsigned long)S32_MAX));
5192
f79d5fda 5193 nvme_fault_inject_init(&ctrl->fault_inject, dev_name(ctrl->device));
5e1f6899 5194 nvme_mpath_init_ctrl(ctrl);
193a8c7e
SG
5195 ret = nvme_auth_init_ctrl(ctrl);
5196 if (ret)
5197 goto out_free_cdev;
f79d5fda 5198
f3ca80fc 5199 return 0;
193a8c7e
SG
5200out_free_cdev:
5201 cdev_device_del(&ctrl->cdev, ctrl->device);
d22524a4 5202out_free_name:
b780d741 5203 nvme_put_ctrl(ctrl);
d6a2b953 5204 kfree_const(ctrl->device->kobj.name);
f3ca80fc 5205out_release_instance:
8b850475 5206 ida_free(&nvme_instance_ida, ctrl->instance);
f3ca80fc 5207out:
cb5b7262
JA
5208 if (ctrl->discard_page)
5209 __free_page(ctrl->discard_page);
f3ca80fc
CH
5210 return ret;
5211}
576d55d6 5212EXPORT_SYMBOL_GPL(nvme_init_ctrl);
f3ca80fc 5213
cd50f9b2
CH
5214/* let I/O to all namespaces fail in preparation for surprise removal */
5215void nvme_mark_namespaces_dead(struct nvme_ctrl *ctrl)
69d9a99c
KB
5216{
5217 struct nvme_ns *ns;
5218
765cc031 5219 down_read(&ctrl->namespaces_rwsem);
cf39a6bc 5220 list_for_each_entry(ns, &ctrl->namespaces, list)
cd50f9b2 5221 blk_mark_disk_dead(ns->disk);
765cc031 5222 up_read(&ctrl->namespaces_rwsem);
69d9a99c 5223}
cd50f9b2 5224EXPORT_SYMBOL_GPL(nvme_mark_namespaces_dead);
69d9a99c 5225
302ad8cc
KB
5226void nvme_unfreeze(struct nvme_ctrl *ctrl)
5227{
5228 struct nvme_ns *ns;
5229
765cc031 5230 down_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5231 list_for_each_entry(ns, &ctrl->namespaces, list)
5232 blk_mq_unfreeze_queue(ns->queue);
765cc031 5233 up_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5234}
5235EXPORT_SYMBOL_GPL(nvme_unfreeze);
5236
7cf0d7c0 5237int nvme_wait_freeze_timeout(struct nvme_ctrl *ctrl, long timeout)
302ad8cc
KB
5238{
5239 struct nvme_ns *ns;
5240
765cc031 5241 down_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5242 list_for_each_entry(ns, &ctrl->namespaces, list) {
5243 timeout = blk_mq_freeze_queue_wait_timeout(ns->queue, timeout);
5244 if (timeout <= 0)
5245 break;
5246 }
765cc031 5247 up_read(&ctrl->namespaces_rwsem);
7cf0d7c0 5248 return timeout;
302ad8cc
KB
5249}
5250EXPORT_SYMBOL_GPL(nvme_wait_freeze_timeout);
5251
5252void nvme_wait_freeze(struct nvme_ctrl *ctrl)
5253{
5254 struct nvme_ns *ns;
5255
765cc031 5256 down_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5257 list_for_each_entry(ns, &ctrl->namespaces, list)
5258 blk_mq_freeze_queue_wait(ns->queue);
765cc031 5259 up_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5260}
5261EXPORT_SYMBOL_GPL(nvme_wait_freeze);
5262
5263void nvme_start_freeze(struct nvme_ctrl *ctrl)
5264{
5265 struct nvme_ns *ns;
5266
765cc031 5267 down_read(&ctrl->namespaces_rwsem);
302ad8cc 5268 list_for_each_entry(ns, &ctrl->namespaces, list)
1671d522 5269 blk_freeze_queue_start(ns->queue);
765cc031 5270 up_read(&ctrl->namespaces_rwsem);
302ad8cc
KB
5271}
5272EXPORT_SYMBOL_GPL(nvme_start_freeze);
5273
9f27bd70 5274void nvme_quiesce_io_queues(struct nvme_ctrl *ctrl)
363c9aac 5275{
ba0718a6
CH
5276 if (!ctrl->tagset)
5277 return;
98d81f0d
CL
5278 if (!test_and_set_bit(NVME_CTRL_STOPPED, &ctrl->flags))
5279 blk_mq_quiesce_tagset(ctrl->tagset);
5280 else
5281 blk_mq_wait_quiesce_done(ctrl->tagset);
363c9aac 5282}
9f27bd70 5283EXPORT_SYMBOL_GPL(nvme_quiesce_io_queues);
363c9aac 5284
9f27bd70 5285void nvme_unquiesce_io_queues(struct nvme_ctrl *ctrl)
363c9aac 5286{
ba0718a6
CH
5287 if (!ctrl->tagset)
5288 return;
98d81f0d
CL
5289 if (test_and_clear_bit(NVME_CTRL_STOPPED, &ctrl->flags))
5290 blk_mq_unquiesce_tagset(ctrl->tagset);
363c9aac 5291}
9f27bd70 5292EXPORT_SYMBOL_GPL(nvme_unquiesce_io_queues);
363c9aac 5293
9f27bd70 5294void nvme_quiesce_admin_queue(struct nvme_ctrl *ctrl)
a277654b 5295{
9e6a6b12
ML
5296 if (!test_and_set_bit(NVME_CTRL_ADMIN_Q_STOPPED, &ctrl->flags))
5297 blk_mq_quiesce_queue(ctrl->admin_q);
26af1cd0 5298 else
483239c7 5299 blk_mq_wait_quiesce_done(ctrl->admin_q->tag_set);
a277654b 5300}
9f27bd70 5301EXPORT_SYMBOL_GPL(nvme_quiesce_admin_queue);
a277654b 5302
9f27bd70 5303void nvme_unquiesce_admin_queue(struct nvme_ctrl *ctrl)
a277654b 5304{
9e6a6b12
ML
5305 if (test_and_clear_bit(NVME_CTRL_ADMIN_Q_STOPPED, &ctrl->flags))
5306 blk_mq_unquiesce_queue(ctrl->admin_q);
a277654b 5307}
9f27bd70 5308EXPORT_SYMBOL_GPL(nvme_unquiesce_admin_queue);
a277654b 5309
04800fbf 5310void nvme_sync_io_queues(struct nvme_ctrl *ctrl)
d6135c3a
KB
5311{
5312 struct nvme_ns *ns;
5313
5314 down_read(&ctrl->namespaces_rwsem);
5315 list_for_each_entry(ns, &ctrl->namespaces, list)
5316 blk_sync_queue(ns->queue);
5317 up_read(&ctrl->namespaces_rwsem);
04800fbf
CL
5318}
5319EXPORT_SYMBOL_GPL(nvme_sync_io_queues);
03894b7a 5320
04800fbf
CL
5321void nvme_sync_queues(struct nvme_ctrl *ctrl)
5322{
5323 nvme_sync_io_queues(ctrl);
03894b7a
EN
5324 if (ctrl->admin_q)
5325 blk_sync_queue(ctrl->admin_q);
d6135c3a
KB
5326}
5327EXPORT_SYMBOL_GPL(nvme_sync_queues);
5328
b2702aaa 5329struct nvme_ctrl *nvme_ctrl_from_file(struct file *file)
f783f444 5330{
b2702aaa
CK
5331 if (file->f_op != &nvme_dev_fops)
5332 return NULL;
5333 return file->private_data;
f783f444 5334}
b2702aaa 5335EXPORT_SYMBOL_NS_GPL(nvme_ctrl_from_file, NVME_TARGET_PASSTHRU);
f783f444 5336
81101540
CH
5337/*
5338 * Check we didn't inadvertently grow the command structure sizes:
5339 */
5340static inline void _nvme_check_size(void)
5341{
5342 BUILD_BUG_ON(sizeof(struct nvme_common_command) != 64);
5343 BUILD_BUG_ON(sizeof(struct nvme_rw_command) != 64);
5344 BUILD_BUG_ON(sizeof(struct nvme_identify) != 64);
5345 BUILD_BUG_ON(sizeof(struct nvme_features) != 64);
5346 BUILD_BUG_ON(sizeof(struct nvme_download_firmware) != 64);
5347 BUILD_BUG_ON(sizeof(struct nvme_format_cmd) != 64);
5348 BUILD_BUG_ON(sizeof(struct nvme_dsm_cmd) != 64);
5349 BUILD_BUG_ON(sizeof(struct nvme_write_zeroes_cmd) != 64);
5350 BUILD_BUG_ON(sizeof(struct nvme_abort_cmd) != 64);
5351 BUILD_BUG_ON(sizeof(struct nvme_get_log_page_command) != 64);
5352 BUILD_BUG_ON(sizeof(struct nvme_command) != 64);
5353 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != NVME_IDENTIFY_DATA_SIZE);
5354 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != NVME_IDENTIFY_DATA_SIZE);
354201c5
CH
5355 BUILD_BUG_ON(sizeof(struct nvme_id_ns_cs_indep) !=
5356 NVME_IDENTIFY_DATA_SIZE);
240e6ee2 5357 BUILD_BUG_ON(sizeof(struct nvme_id_ns_zns) != NVME_IDENTIFY_DATA_SIZE);
4020aad8 5358 BUILD_BUG_ON(sizeof(struct nvme_id_ns_nvm) != NVME_IDENTIFY_DATA_SIZE);
240e6ee2 5359 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl_zns) != NVME_IDENTIFY_DATA_SIZE);
5befc7c2 5360 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl_nvm) != NVME_IDENTIFY_DATA_SIZE);
81101540
CH
5361 BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64);
5362 BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);
5363 BUILD_BUG_ON(sizeof(struct nvme_dbbuf) != 64);
5364 BUILD_BUG_ON(sizeof(struct nvme_directive_cmd) != 64);
4020aad8 5365 BUILD_BUG_ON(sizeof(struct nvme_feat_host_behavior) != 512);
81101540
CH
5366}
5367
5368
893a74b7 5369static int __init nvme_core_init(void)
5bae7f73 5370{
b227c59b 5371 int result = -ENOMEM;
5bae7f73 5372
81101540
CH
5373 _nvme_check_size();
5374
9a6327d2
SG
5375 nvme_wq = alloc_workqueue("nvme-wq",
5376 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
5377 if (!nvme_wq)
b227c59b
RS
5378 goto out;
5379
5380 nvme_reset_wq = alloc_workqueue("nvme-reset-wq",
5381 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
5382 if (!nvme_reset_wq)
5383 goto destroy_wq;
5384
5385 nvme_delete_wq = alloc_workqueue("nvme-delete-wq",
5386 WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
5387 if (!nvme_delete_wq)
5388 goto destroy_reset_wq;
9a6327d2 5389
f68abd9c
JG
5390 result = alloc_chrdev_region(&nvme_ctrl_base_chr_devt, 0,
5391 NVME_MINORS, "nvme");
f3ca80fc 5392 if (result < 0)
b227c59b 5393 goto destroy_delete_wq;
f3ca80fc
CH
5394
5395 nvme_class = class_create(THIS_MODULE, "nvme");
5396 if (IS_ERR(nvme_class)) {
5397 result = PTR_ERR(nvme_class);
5398 goto unregister_chrdev;
5399 }
a42f42e5 5400 nvme_class->dev_uevent = nvme_class_uevent;
f3ca80fc 5401
ab9e00cc
CH
5402 nvme_subsys_class = class_create(THIS_MODULE, "nvme-subsystem");
5403 if (IS_ERR(nvme_subsys_class)) {
5404 result = PTR_ERR(nvme_subsys_class);
5405 goto destroy_class;
5406 }
2637baed
MI
5407
5408 result = alloc_chrdev_region(&nvme_ns_chr_devt, 0, NVME_MINORS,
5409 "nvme-generic");
5410 if (result < 0)
5411 goto destroy_subsys_class;
5412
5413 nvme_ns_chr_class = class_create(THIS_MODULE, "nvme-generic");
5414 if (IS_ERR(nvme_ns_chr_class)) {
5415 result = PTR_ERR(nvme_ns_chr_class);
5416 goto unregister_generic_ns;
5417 }
5418
e481fc0a
SG
5419 result = nvme_init_auth();
5420 if (result)
5421 goto destroy_ns_chr;
5bae7f73 5422 return 0;
f3ca80fc 5423
e481fc0a
SG
5424destroy_ns_chr:
5425 class_destroy(nvme_ns_chr_class);
2637baed
MI
5426unregister_generic_ns:
5427 unregister_chrdev_region(nvme_ns_chr_devt, NVME_MINORS);
5428destroy_subsys_class:
5429 class_destroy(nvme_subsys_class);
ab9e00cc
CH
5430destroy_class:
5431 class_destroy(nvme_class);
9a6327d2 5432unregister_chrdev:
f68abd9c 5433 unregister_chrdev_region(nvme_ctrl_base_chr_devt, NVME_MINORS);
b227c59b
RS
5434destroy_delete_wq:
5435 destroy_workqueue(nvme_delete_wq);
5436destroy_reset_wq:
5437 destroy_workqueue(nvme_reset_wq);
9a6327d2
SG
5438destroy_wq:
5439 destroy_workqueue(nvme_wq);
b227c59b 5440out:
f3ca80fc 5441 return result;
5bae7f73
CH
5442}
5443
893a74b7 5444static void __exit nvme_core_exit(void)
5bae7f73 5445{
e481fc0a 5446 nvme_exit_auth();
2637baed 5447 class_destroy(nvme_ns_chr_class);
ab9e00cc 5448 class_destroy(nvme_subsys_class);
f3ca80fc 5449 class_destroy(nvme_class);
2637baed 5450 unregister_chrdev_region(nvme_ns_chr_devt, NVME_MINORS);
f68abd9c 5451 unregister_chrdev_region(nvme_ctrl_base_chr_devt, NVME_MINORS);
b227c59b
RS
5452 destroy_workqueue(nvme_delete_wq);
5453 destroy_workqueue(nvme_reset_wq);
9a6327d2 5454 destroy_workqueue(nvme_wq);
2637baed 5455 ida_destroy(&nvme_ns_chr_minor_ida);
f41cfd5d 5456 ida_destroy(&nvme_instance_ida);
5bae7f73 5457}
576d55d6
ML
5458
5459MODULE_LICENSE("GPL");
5460MODULE_VERSION("1.0");
5461module_init(nvme_core_init);
5462module_exit(nvme_core_exit);