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