2 * NVMe admin command implementation.
3 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/rculist.h>
18 #include <generated/utsrelease.h>
19 #include <asm/unaligned.h>
22 u32 nvmet_get_log_page_len(struct nvme_command *cmd)
24 u32 len = le16_to_cpu(cmd->get_log_page.numdu);
27 len += le16_to_cpu(cmd->get_log_page.numdl);
28 /* NUMD is a 0's based value */
35 static void nvmet_execute_get_log_page_noop(struct nvmet_req *req)
37 nvmet_req_complete(req, nvmet_zero_sgl(req, 0, req->data_len));
40 static u16 nvmet_get_smart_log_nsid(struct nvmet_req *req,
41 struct nvme_smart_log *slog)
44 u64 host_reads, host_writes, data_units_read, data_units_written;
46 ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->get_log_page.nsid);
48 pr_err("nvmet : Could not find namespace id : %d\n",
49 le32_to_cpu(req->cmd->get_log_page.nsid));
50 return NVME_SC_INVALID_NS;
53 /* we don't have the right data for file backed ns */
57 host_reads = part_stat_read(ns->bdev->bd_part, ios[READ]);
58 data_units_read = part_stat_read(ns->bdev->bd_part, sectors[READ]);
59 host_writes = part_stat_read(ns->bdev->bd_part, ios[WRITE]);
60 data_units_written = part_stat_read(ns->bdev->bd_part, sectors[WRITE]);
62 put_unaligned_le64(host_reads, &slog->host_reads[0]);
63 put_unaligned_le64(data_units_read, &slog->data_units_read[0]);
64 put_unaligned_le64(host_writes, &slog->host_writes[0]);
65 put_unaligned_le64(data_units_written, &slog->data_units_written[0]);
67 nvmet_put_namespace(ns);
69 return NVME_SC_SUCCESS;
72 static u16 nvmet_get_smart_log_all(struct nvmet_req *req,
73 struct nvme_smart_log *slog)
75 u64 host_reads = 0, host_writes = 0;
76 u64 data_units_read = 0, data_units_written = 0;
78 struct nvmet_ctrl *ctrl;
83 list_for_each_entry_rcu(ns, &ctrl->subsys->namespaces, dev_link) {
84 /* we don't have the right data for file backed ns */
87 host_reads += part_stat_read(ns->bdev->bd_part, ios[READ]);
89 part_stat_read(ns->bdev->bd_part, sectors[READ]);
90 host_writes += part_stat_read(ns->bdev->bd_part, ios[WRITE]);
92 part_stat_read(ns->bdev->bd_part, sectors[WRITE]);
97 put_unaligned_le64(host_reads, &slog->host_reads[0]);
98 put_unaligned_le64(data_units_read, &slog->data_units_read[0]);
99 put_unaligned_le64(host_writes, &slog->host_writes[0]);
100 put_unaligned_le64(data_units_written, &slog->data_units_written[0]);
102 return NVME_SC_SUCCESS;
105 static void nvmet_execute_get_log_page_smart(struct nvmet_req *req)
107 struct nvme_smart_log *log;
108 u16 status = NVME_SC_INTERNAL;
110 if (req->data_len != sizeof(*log))
113 log = kzalloc(sizeof(*log), GFP_KERNEL);
117 if (req->cmd->get_log_page.nsid == cpu_to_le32(NVME_NSID_ALL))
118 status = nvmet_get_smart_log_all(req, log);
120 status = nvmet_get_smart_log_nsid(req, log);
124 status = nvmet_copy_to_sgl(req, 0, log, sizeof(*log));
126 nvmet_req_complete(req, status);
129 static void nvmet_execute_get_log_changed_ns(struct nvmet_req *req)
131 struct nvmet_ctrl *ctrl = req->sq->ctrl;
132 u16 status = NVME_SC_INTERNAL;
135 if (req->data_len != NVME_MAX_CHANGED_NAMESPACES * sizeof(__le32))
138 mutex_lock(&ctrl->lock);
139 if (ctrl->nr_changed_ns == U32_MAX)
140 len = sizeof(__le32);
142 len = ctrl->nr_changed_ns * sizeof(__le32);
143 status = nvmet_copy_to_sgl(req, 0, ctrl->changed_ns_list, len);
145 status = nvmet_zero_sgl(req, len, req->data_len - len);
146 ctrl->nr_changed_ns = 0;
147 clear_bit(NVME_AEN_CFG_NS_ATTR, &ctrl->aen_masked);
148 mutex_unlock(&ctrl->lock);
150 nvmet_req_complete(req, status);
153 static void nvmet_execute_identify_ctrl(struct nvmet_req *req)
155 struct nvmet_ctrl *ctrl = req->sq->ctrl;
156 struct nvme_id_ctrl *id;
158 const char model[] = "Linux";
160 id = kzalloc(sizeof(*id), GFP_KERNEL);
162 status = NVME_SC_INTERNAL;
166 /* XXX: figure out how to assign real vendors IDs. */
170 memset(id->sn, ' ', sizeof(id->sn));
171 bin2hex(id->sn, &ctrl->subsys->serial,
172 min(sizeof(ctrl->subsys->serial), sizeof(id->sn) / 2));
173 memcpy_and_pad(id->mn, sizeof(id->mn), model, sizeof(model) - 1, ' ');
174 memcpy_and_pad(id->fr, sizeof(id->fr),
175 UTS_RELEASE, strlen(UTS_RELEASE), ' ');
180 * XXX: figure out how we can assign a IEEE OUI, but until then
181 * the safest is to leave it as zeroes.
184 /* we support multiple ports and multiples hosts: */
185 id->cmic = (1 << 0) | (1 << 1);
187 /* no limit on data transfer sizes for now */
189 id->cntlid = cpu_to_le16(ctrl->cntlid);
190 id->ver = cpu_to_le32(ctrl->subsys->ver);
192 /* XXX: figure out what to do about RTD3R/RTD3 */
193 id->oaes = cpu_to_le32(NVMET_AEN_CFG_OPTIONAL);
194 id->ctratt = cpu_to_le32(1 << 0);
199 * We don't really have a practical limit on the number of abort
200 * comands. But we don't do anything useful for abort either, so
201 * no point in allowing more abort commands than the spec requires.
205 id->aerl = NVMET_ASYNC_EVENTS - 1;
207 /* first slot is read-only, only one slot supported */
208 id->frmw = (1 << 0) | (1 << 1);
209 id->lpa = (1 << 0) | (1 << 2);
210 id->elpe = NVMET_ERROR_LOG_SLOTS - 1;
213 /* We support keep-alive timeout in granularity of seconds */
214 id->kas = cpu_to_le16(NVMET_KAS);
216 id->sqes = (0x6 << 4) | 0x6;
217 id->cqes = (0x4 << 4) | 0x4;
219 /* no enforcement soft-limit for maxcmd - pick arbitrary high value */
220 id->maxcmd = cpu_to_le16(NVMET_MAX_CMD);
222 id->nn = cpu_to_le32(ctrl->subsys->max_nsid);
223 id->oncs = cpu_to_le16(NVME_CTRL_ONCS_DSM |
224 NVME_CTRL_ONCS_WRITE_ZEROES);
226 /* XXX: don't report vwc if the underlying device is write through */
227 id->vwc = NVME_CTRL_VWC_PRESENT;
230 * We can't support atomic writes bigger than a LBA without support
231 * from the backend device.
236 id->sgls = cpu_to_le32(1 << 0); /* we always support SGLs */
237 if (ctrl->ops->has_keyed_sgls)
238 id->sgls |= cpu_to_le32(1 << 2);
239 if (ctrl->ops->sqe_inline_size)
240 id->sgls |= cpu_to_le32(1 << 20);
242 strcpy(id->subnqn, ctrl->subsys->subsysnqn);
244 /* Max command capsule size is sqe + single page of in-capsule data */
245 id->ioccsz = cpu_to_le32((sizeof(struct nvme_command) +
246 ctrl->ops->sqe_inline_size) / 16);
247 /* Max response capsule size is cqe */
248 id->iorcsz = cpu_to_le32(sizeof(struct nvme_completion) / 16);
250 id->msdbd = ctrl->ops->msdbd;
253 * Meh, we don't really support any power state. Fake up the same
254 * values that qemu does.
256 id->psd[0].max_power = cpu_to_le16(0x9c4);
257 id->psd[0].entry_lat = cpu_to_le32(0x10);
258 id->psd[0].exit_lat = cpu_to_le32(0x4);
260 status = nvmet_copy_to_sgl(req, 0, id, sizeof(*id));
264 nvmet_req_complete(req, status);
267 static void nvmet_execute_identify_ns(struct nvmet_req *req)
270 struct nvme_id_ns *id;
273 ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->identify.nsid);
275 status = NVME_SC_INVALID_NS | NVME_SC_DNR;
279 id = kzalloc(sizeof(*id), GFP_KERNEL);
281 status = NVME_SC_INTERNAL;
286 * nuse = ncap = nsze isn't always true, but we have no way to find
287 * that out from the underlying device.
289 id->ncap = id->nuse = id->nsze =
290 cpu_to_le64(ns->size >> ns->blksize_shift);
293 * We just provide a single LBA format that matches what the
294 * underlying device reports.
300 * Our namespace might always be shared. Not just with other
301 * controllers, but also with any other user of the block device.
305 memcpy(&id->nguid, &ns->nguid, sizeof(uuid_le));
307 id->lbaf[0].ds = ns->blksize_shift;
309 status = nvmet_copy_to_sgl(req, 0, id, sizeof(*id));
313 nvmet_put_namespace(ns);
315 nvmet_req_complete(req, status);
318 static void nvmet_execute_identify_nslist(struct nvmet_req *req)
320 static const int buf_size = NVME_IDENTIFY_DATA_SIZE;
321 struct nvmet_ctrl *ctrl = req->sq->ctrl;
323 u32 min_nsid = le32_to_cpu(req->cmd->identify.nsid);
328 list = kzalloc(buf_size, GFP_KERNEL);
330 status = NVME_SC_INTERNAL;
335 list_for_each_entry_rcu(ns, &ctrl->subsys->namespaces, dev_link) {
336 if (ns->nsid <= min_nsid)
338 list[i++] = cpu_to_le32(ns->nsid);
339 if (i == buf_size / sizeof(__le32))
344 status = nvmet_copy_to_sgl(req, 0, list, buf_size);
348 nvmet_req_complete(req, status);
351 static u16 nvmet_copy_ns_identifier(struct nvmet_req *req, u8 type, u8 len,
352 void *id, off_t *off)
354 struct nvme_ns_id_desc desc = {
360 status = nvmet_copy_to_sgl(req, *off, &desc, sizeof(desc));
363 *off += sizeof(desc);
365 status = nvmet_copy_to_sgl(req, *off, id, len);
373 static void nvmet_execute_identify_desclist(struct nvmet_req *req)
379 ns = nvmet_find_namespace(req->sq->ctrl, req->cmd->identify.nsid);
381 status = NVME_SC_INVALID_NS | NVME_SC_DNR;
385 if (memchr_inv(&ns->uuid, 0, sizeof(ns->uuid))) {
386 status = nvmet_copy_ns_identifier(req, NVME_NIDT_UUID,
392 if (memchr_inv(ns->nguid, 0, sizeof(ns->nguid))) {
393 status = nvmet_copy_ns_identifier(req, NVME_NIDT_NGUID,
400 if (sg_zero_buffer(req->sg, req->sg_cnt, NVME_IDENTIFY_DATA_SIZE - off,
401 off) != NVME_IDENTIFY_DATA_SIZE - off)
402 status = NVME_SC_INTERNAL | NVME_SC_DNR;
404 nvmet_put_namespace(ns);
406 nvmet_req_complete(req, status);
410 * A "minimum viable" abort implementation: the command is mandatory in the
411 * spec, but we are not required to do any useful work. We couldn't really
412 * do a useful abort, so don't bother even with waiting for the command
413 * to be exectuted and return immediately telling the command to abort
416 static void nvmet_execute_abort(struct nvmet_req *req)
418 nvmet_set_result(req, 1);
419 nvmet_req_complete(req, 0);
422 static void nvmet_execute_set_features(struct nvmet_req *req)
424 struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
425 u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10[0]);
429 switch (cdw10 & 0xff) {
430 case NVME_FEAT_NUM_QUEUES:
431 nvmet_set_result(req,
432 (subsys->max_qid - 1) | ((subsys->max_qid - 1) << 16));
435 val32 = le32_to_cpu(req->cmd->common.cdw10[1]);
436 req->sq->ctrl->kato = DIV_ROUND_UP(val32, 1000);
437 nvmet_set_result(req, req->sq->ctrl->kato);
439 case NVME_FEAT_ASYNC_EVENT:
440 val32 = le32_to_cpu(req->cmd->common.cdw10[1]);
441 if (val32 & ~NVMET_AEN_CFG_ALL) {
442 status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
446 WRITE_ONCE(req->sq->ctrl->aen_enabled, val32);
447 nvmet_set_result(req, val32);
449 case NVME_FEAT_HOST_ID:
450 status = NVME_SC_CMD_SEQ_ERROR | NVME_SC_DNR;
453 status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
457 nvmet_req_complete(req, status);
460 static void nvmet_execute_get_features(struct nvmet_req *req)
462 struct nvmet_subsys *subsys = req->sq->ctrl->subsys;
463 u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10[0]);
466 switch (cdw10 & 0xff) {
468 * These features are mandatory in the spec, but we don't
469 * have a useful way to implement them. We'll eventually
470 * need to come up with some fake values for these.
473 case NVME_FEAT_ARBITRATION:
475 case NVME_FEAT_POWER_MGMT:
477 case NVME_FEAT_TEMP_THRESH:
479 case NVME_FEAT_ERR_RECOVERY:
481 case NVME_FEAT_IRQ_COALESCE:
483 case NVME_FEAT_IRQ_CONFIG:
485 case NVME_FEAT_WRITE_ATOMIC:
488 case NVME_FEAT_ASYNC_EVENT:
489 nvmet_set_result(req, READ_ONCE(req->sq->ctrl->aen_enabled));
491 case NVME_FEAT_VOLATILE_WC:
492 nvmet_set_result(req, 1);
494 case NVME_FEAT_NUM_QUEUES:
495 nvmet_set_result(req,
496 (subsys->max_qid-1) | ((subsys->max_qid-1) << 16));
499 nvmet_set_result(req, req->sq->ctrl->kato * 1000);
501 case NVME_FEAT_HOST_ID:
502 /* need 128-bit host identifier flag */
503 if (!(req->cmd->common.cdw10[1] & cpu_to_le32(1 << 0))) {
504 status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
508 status = nvmet_copy_to_sgl(req, 0, &req->sq->ctrl->hostid,
509 sizeof(req->sq->ctrl->hostid));
512 status = NVME_SC_INVALID_FIELD | NVME_SC_DNR;
516 nvmet_req_complete(req, status);
519 static void nvmet_execute_async_event(struct nvmet_req *req)
521 struct nvmet_ctrl *ctrl = req->sq->ctrl;
523 mutex_lock(&ctrl->lock);
524 if (ctrl->nr_async_event_cmds >= NVMET_ASYNC_EVENTS) {
525 mutex_unlock(&ctrl->lock);
526 nvmet_req_complete(req, NVME_SC_ASYNC_LIMIT | NVME_SC_DNR);
529 ctrl->async_event_cmds[ctrl->nr_async_event_cmds++] = req;
530 mutex_unlock(&ctrl->lock);
532 schedule_work(&ctrl->async_event_work);
535 static void nvmet_execute_keep_alive(struct nvmet_req *req)
537 struct nvmet_ctrl *ctrl = req->sq->ctrl;
539 pr_debug("ctrl %d update keep-alive timer for %d secs\n",
540 ctrl->cntlid, ctrl->kato);
542 mod_delayed_work(system_wq, &ctrl->ka_work, ctrl->kato * HZ);
543 nvmet_req_complete(req, 0);
546 u16 nvmet_parse_admin_cmd(struct nvmet_req *req)
548 struct nvme_command *cmd = req->cmd;
551 ret = nvmet_check_ctrl_status(req, cmd);
555 switch (cmd->common.opcode) {
556 case nvme_admin_get_log_page:
557 req->data_len = nvmet_get_log_page_len(cmd);
559 switch (cmd->get_log_page.lid) {
562 * We currently never set the More bit in the status
563 * field, so all error log entries are invalid and can
564 * be zeroed out. This is called a minum viable
565 * implementation (TM) of this mandatory log page.
567 req->execute = nvmet_execute_get_log_page_noop;
570 req->execute = nvmet_execute_get_log_page_smart;
572 case NVME_LOG_FW_SLOT:
574 * We only support a single firmware slot which always
575 * is active, so we can zero out the whole firmware slot
576 * log and still claim to fully implement this mandatory
579 req->execute = nvmet_execute_get_log_page_noop;
581 case NVME_LOG_CHANGED_NS:
582 req->execute = nvmet_execute_get_log_changed_ns;
586 case nvme_admin_identify:
587 req->data_len = NVME_IDENTIFY_DATA_SIZE;
588 switch (cmd->identify.cns) {
590 req->execute = nvmet_execute_identify_ns;
592 case NVME_ID_CNS_CTRL:
593 req->execute = nvmet_execute_identify_ctrl;
595 case NVME_ID_CNS_NS_ACTIVE_LIST:
596 req->execute = nvmet_execute_identify_nslist;
598 case NVME_ID_CNS_NS_DESC_LIST:
599 req->execute = nvmet_execute_identify_desclist;
603 case nvme_admin_abort_cmd:
604 req->execute = nvmet_execute_abort;
607 case nvme_admin_set_features:
608 req->execute = nvmet_execute_set_features;
611 case nvme_admin_get_features:
612 req->execute = nvmet_execute_get_features;
615 case nvme_admin_async_event:
616 req->execute = nvmet_execute_async_event;
619 case nvme_admin_keep_alive:
620 req->execute = nvmet_execute_keep_alive;
625 pr_err("unhandled cmd %d on qid %d\n", cmd->common.opcode,
627 return NVME_SC_INVALID_OPCODE | NVME_SC_DNR;