hw/block/nvme: add verify command
See NVM Express 1.4, section 6.14 ("Verify Command"). Signed-off-by: Gollu Appalanaidu <anaidu.gollu@samsung.com> [k.jensen: rebased, refactored for e2e] Signed-off-by: Klaus Jensen <k.jensen@samsung.com> Reviewed-by: Keith Busch <kbusch@kernel.org>
This commit is contained in:
parent
146f720c55
commit
3e1da158c4
@ -162,8 +162,8 @@ uint16_t nvme_dif_check(NvmeNamespace *ns, uint8_t *buf, size_t len,
|
|||||||
return NVME_SUCCESS;
|
return NVME_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint16_t nvme_dif_mangle_mdata(NvmeNamespace *ns, uint8_t *mbuf,
|
uint16_t nvme_dif_mangle_mdata(NvmeNamespace *ns, uint8_t *mbuf, size_t mlen,
|
||||||
size_t mlen, uint64_t slba)
|
uint64_t slba)
|
||||||
{
|
{
|
||||||
BlockBackend *blk = ns->blkconf.blk;
|
BlockBackend *blk = ns->blkconf.blk;
|
||||||
BlockDriverState *bs = blk_bs(blk);
|
BlockDriverState *bs = blk_bs(blk);
|
||||||
|
@ -39,6 +39,8 @@ static const uint16_t t10_dif_crc_table[256] = {
|
|||||||
|
|
||||||
uint16_t nvme_check_prinfo(NvmeNamespace *ns, uint16_t ctrl, uint64_t slba,
|
uint16_t nvme_check_prinfo(NvmeNamespace *ns, uint16_t ctrl, uint64_t slba,
|
||||||
uint32_t reftag);
|
uint32_t reftag);
|
||||||
|
uint16_t nvme_dif_mangle_mdata(NvmeNamespace *ns, uint8_t *mbuf, size_t mlen,
|
||||||
|
uint64_t slba);
|
||||||
void nvme_dif_pract_generate_dif(NvmeNamespace *ns, uint8_t *buf, size_t len,
|
void nvme_dif_pract_generate_dif(NvmeNamespace *ns, uint8_t *buf, size_t len,
|
||||||
uint8_t *mbuf, size_t mlen, uint16_t apptag,
|
uint8_t *mbuf, size_t mlen, uint16_t apptag,
|
||||||
uint32_t reftag);
|
uint32_t reftag);
|
||||||
|
147
hw/block/nvme.c
147
hw/block/nvme.c
@ -208,6 +208,7 @@ static const uint32_t nvme_cse_iocs_nvm[256] = {
|
|||||||
[NVME_CMD_WRITE] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_WRITE] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
[NVME_CMD_READ] = NVME_CMD_EFF_CSUPP,
|
[NVME_CMD_READ] = NVME_CMD_EFF_CSUPP,
|
||||||
[NVME_CMD_DSM] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_DSM] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
|
[NVME_CMD_VERIFY] = NVME_CMD_EFF_CSUPP,
|
||||||
[NVME_CMD_COPY] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_COPY] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
[NVME_CMD_COMPARE] = NVME_CMD_EFF_CSUPP,
|
[NVME_CMD_COMPARE] = NVME_CMD_EFF_CSUPP,
|
||||||
};
|
};
|
||||||
@ -218,6 +219,7 @@ static const uint32_t nvme_cse_iocs_zoned[256] = {
|
|||||||
[NVME_CMD_WRITE] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_WRITE] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
[NVME_CMD_READ] = NVME_CMD_EFF_CSUPP,
|
[NVME_CMD_READ] = NVME_CMD_EFF_CSUPP,
|
||||||
[NVME_CMD_DSM] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_DSM] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
|
[NVME_CMD_VERIFY] = NVME_CMD_EFF_CSUPP,
|
||||||
[NVME_CMD_COPY] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_COPY] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
[NVME_CMD_COMPARE] = NVME_CMD_EFF_CSUPP,
|
[NVME_CMD_COMPARE] = NVME_CMD_EFF_CSUPP,
|
||||||
[NVME_CMD_ZONE_APPEND] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
[NVME_CMD_ZONE_APPEND] = NVME_CMD_EFF_CSUPP | NVME_CMD_EFF_LBCC,
|
||||||
@ -1884,6 +1886,90 @@ static void nvme_aio_flush_cb(void *opaque, int ret)
|
|||||||
nvme_enqueue_req_completion(nvme_cq(req), req);
|
nvme_enqueue_req_completion(nvme_cq(req), req);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void nvme_verify_cb(void *opaque, int ret)
|
||||||
|
{
|
||||||
|
NvmeBounceContext *ctx = opaque;
|
||||||
|
NvmeRequest *req = ctx->req;
|
||||||
|
NvmeNamespace *ns = req->ns;
|
||||||
|
BlockBackend *blk = ns->blkconf.blk;
|
||||||
|
BlockAcctCookie *acct = &req->acct;
|
||||||
|
BlockAcctStats *stats = blk_get_stats(blk);
|
||||||
|
NvmeRwCmd *rw = (NvmeRwCmd *)&req->cmd;
|
||||||
|
uint64_t slba = le64_to_cpu(rw->slba);
|
||||||
|
uint16_t ctrl = le16_to_cpu(rw->control);
|
||||||
|
uint16_t apptag = le16_to_cpu(rw->apptag);
|
||||||
|
uint16_t appmask = le16_to_cpu(rw->appmask);
|
||||||
|
uint32_t reftag = le32_to_cpu(rw->reftag);
|
||||||
|
uint16_t status;
|
||||||
|
|
||||||
|
trace_pci_nvme_verify_cb(nvme_cid(req), NVME_RW_PRINFO(ctrl), apptag,
|
||||||
|
appmask, reftag);
|
||||||
|
|
||||||
|
if (ret) {
|
||||||
|
block_acct_failed(stats, acct);
|
||||||
|
nvme_aio_err(req, ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
block_acct_done(stats, acct);
|
||||||
|
|
||||||
|
if (NVME_ID_NS_DPS_TYPE(ns->id_ns.dps)) {
|
||||||
|
status = nvme_dif_mangle_mdata(ns, ctx->mdata.bounce,
|
||||||
|
ctx->mdata.iov.size, slba);
|
||||||
|
if (status) {
|
||||||
|
req->status = status;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
req->status = nvme_dif_check(ns, ctx->data.bounce, ctx->data.iov.size,
|
||||||
|
ctx->mdata.bounce, ctx->mdata.iov.size,
|
||||||
|
ctrl, slba, apptag, appmask, reftag);
|
||||||
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
qemu_iovec_destroy(&ctx->data.iov);
|
||||||
|
g_free(ctx->data.bounce);
|
||||||
|
|
||||||
|
qemu_iovec_destroy(&ctx->mdata.iov);
|
||||||
|
g_free(ctx->mdata.bounce);
|
||||||
|
|
||||||
|
g_free(ctx);
|
||||||
|
|
||||||
|
nvme_enqueue_req_completion(nvme_cq(req), req);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void nvme_verify_mdata_in_cb(void *opaque, int ret)
|
||||||
|
{
|
||||||
|
NvmeBounceContext *ctx = opaque;
|
||||||
|
NvmeRequest *req = ctx->req;
|
||||||
|
NvmeNamespace *ns = req->ns;
|
||||||
|
NvmeRwCmd *rw = (NvmeRwCmd *)&req->cmd;
|
||||||
|
uint64_t slba = le64_to_cpu(rw->slba);
|
||||||
|
uint32_t nlb = le16_to_cpu(rw->nlb) + 1;
|
||||||
|
size_t mlen = nvme_m2b(ns, nlb);
|
||||||
|
uint64_t offset = ns->mdata_offset + nvme_m2b(ns, slba);
|
||||||
|
BlockBackend *blk = ns->blkconf.blk;
|
||||||
|
|
||||||
|
trace_pci_nvme_verify_mdata_in_cb(nvme_cid(req), blk_name(blk));
|
||||||
|
|
||||||
|
if (ret) {
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx->mdata.bounce = g_malloc(mlen);
|
||||||
|
|
||||||
|
qemu_iovec_reset(&ctx->mdata.iov);
|
||||||
|
qemu_iovec_add(&ctx->mdata.iov, ctx->mdata.bounce, mlen);
|
||||||
|
|
||||||
|
req->aiocb = blk_aio_preadv(blk, offset, &ctx->mdata.iov, 0,
|
||||||
|
nvme_verify_cb, ctx);
|
||||||
|
return;
|
||||||
|
|
||||||
|
out:
|
||||||
|
nvme_verify_cb(ctx, ret);
|
||||||
|
}
|
||||||
|
|
||||||
static void nvme_aio_discard_cb(void *opaque, int ret)
|
static void nvme_aio_discard_cb(void *opaque, int ret)
|
||||||
{
|
{
|
||||||
NvmeRequest *req = opaque;
|
NvmeRequest *req = opaque;
|
||||||
@ -2431,6 +2517,62 @@ static uint16_t nvme_dsm(NvmeCtrl *n, NvmeRequest *req)
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static uint16_t nvme_verify(NvmeCtrl *n, NvmeRequest *req)
|
||||||
|
{
|
||||||
|
NvmeRwCmd *rw = (NvmeRwCmd *)&req->cmd;
|
||||||
|
NvmeNamespace *ns = req->ns;
|
||||||
|
BlockBackend *blk = ns->blkconf.blk;
|
||||||
|
uint64_t slba = le64_to_cpu(rw->slba);
|
||||||
|
uint32_t nlb = le16_to_cpu(rw->nlb) + 1;
|
||||||
|
size_t len = nvme_l2b(ns, nlb);
|
||||||
|
int64_t offset = nvme_l2b(ns, slba);
|
||||||
|
uint16_t ctrl = le16_to_cpu(rw->control);
|
||||||
|
uint32_t reftag = le32_to_cpu(rw->reftag);
|
||||||
|
NvmeBounceContext *ctx = NULL;
|
||||||
|
uint16_t status;
|
||||||
|
|
||||||
|
trace_pci_nvme_verify(nvme_cid(req), nvme_nsid(ns), slba, nlb);
|
||||||
|
|
||||||
|
if (NVME_ID_NS_DPS_TYPE(ns->id_ns.dps)) {
|
||||||
|
status = nvme_check_prinfo(ns, ctrl, slba, reftag);
|
||||||
|
if (status) {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ctrl & NVME_RW_PRINFO_PRACT) {
|
||||||
|
return NVME_INVALID_PROT_INFO | NVME_DNR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
status = nvme_check_bounds(ns, slba, nlb);
|
||||||
|
if (status) {
|
||||||
|
trace_pci_nvme_err_invalid_lba_range(slba, nlb, ns->id_ns.nsze);
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (NVME_ERR_REC_DULBE(ns->features.err_rec)) {
|
||||||
|
status = nvme_check_dulbe(ns, slba, nlb);
|
||||||
|
if (status) {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx = g_new0(NvmeBounceContext, 1);
|
||||||
|
ctx->req = req;
|
||||||
|
|
||||||
|
ctx->data.bounce = g_malloc(len);
|
||||||
|
|
||||||
|
qemu_iovec_init(&ctx->data.iov, 1);
|
||||||
|
qemu_iovec_add(&ctx->data.iov, ctx->data.bounce, len);
|
||||||
|
|
||||||
|
block_acct_start(blk_get_stats(blk), &req->acct, ctx->data.iov.size,
|
||||||
|
BLOCK_ACCT_READ);
|
||||||
|
|
||||||
|
req->aiocb = blk_aio_preadv(ns->blkconf.blk, offset, &ctx->data.iov, 0,
|
||||||
|
nvme_verify_mdata_in_cb, ctx);
|
||||||
|
return NVME_NO_COMPLETE;
|
||||||
|
}
|
||||||
|
|
||||||
static uint16_t nvme_copy(NvmeCtrl *n, NvmeRequest *req)
|
static uint16_t nvme_copy(NvmeCtrl *n, NvmeRequest *req)
|
||||||
{
|
{
|
||||||
NvmeNamespace *ns = req->ns;
|
NvmeNamespace *ns = req->ns;
|
||||||
@ -3449,6 +3591,8 @@ static uint16_t nvme_io_cmd(NvmeCtrl *n, NvmeRequest *req)
|
|||||||
return nvme_compare(n, req);
|
return nvme_compare(n, req);
|
||||||
case NVME_CMD_DSM:
|
case NVME_CMD_DSM:
|
||||||
return nvme_dsm(n, req);
|
return nvme_dsm(n, req);
|
||||||
|
case NVME_CMD_VERIFY:
|
||||||
|
return nvme_verify(n, req);
|
||||||
case NVME_CMD_COPY:
|
case NVME_CMD_COPY:
|
||||||
return nvme_copy(n, req);
|
return nvme_copy(n, req);
|
||||||
case NVME_CMD_ZONE_MGMT_SEND:
|
case NVME_CMD_ZONE_MGMT_SEND:
|
||||||
@ -5770,7 +5914,8 @@ static void nvme_init_ctrl(NvmeCtrl *n, PCIDevice *pci_dev)
|
|||||||
id->nn = cpu_to_le32(n->num_namespaces);
|
id->nn = cpu_to_le32(n->num_namespaces);
|
||||||
id->oncs = cpu_to_le16(NVME_ONCS_WRITE_ZEROES | NVME_ONCS_TIMESTAMP |
|
id->oncs = cpu_to_le16(NVME_ONCS_WRITE_ZEROES | NVME_ONCS_TIMESTAMP |
|
||||||
NVME_ONCS_FEATURES | NVME_ONCS_DSM |
|
NVME_ONCS_FEATURES | NVME_ONCS_DSM |
|
||||||
NVME_ONCS_COMPARE | NVME_ONCS_COPY);
|
NVME_ONCS_COMPARE | NVME_ONCS_COPY |
|
||||||
|
NVME_ONCS_VERIFY);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NOTE: If this device ever supports a command set that does NOT use 0x0
|
* NOTE: If this device ever supports a command set that does NOT use 0x0
|
||||||
|
@ -98,6 +98,7 @@ static inline const char *nvme_io_opc_str(uint8_t opc)
|
|||||||
case NVME_CMD_COMPARE: return "NVME_NVM_CMD_COMPARE";
|
case NVME_CMD_COMPARE: return "NVME_NVM_CMD_COMPARE";
|
||||||
case NVME_CMD_WRITE_ZEROES: return "NVME_NVM_CMD_WRITE_ZEROES";
|
case NVME_CMD_WRITE_ZEROES: return "NVME_NVM_CMD_WRITE_ZEROES";
|
||||||
case NVME_CMD_DSM: return "NVME_NVM_CMD_DSM";
|
case NVME_CMD_DSM: return "NVME_NVM_CMD_DSM";
|
||||||
|
case NVME_CMD_VERIFY: return "NVME_NVM_CMD_VERIFY";
|
||||||
case NVME_CMD_COPY: return "NVME_NVM_CMD_COPY";
|
case NVME_CMD_COPY: return "NVME_NVM_CMD_COPY";
|
||||||
case NVME_CMD_ZONE_MGMT_SEND: return "NVME_ZONED_CMD_MGMT_SEND";
|
case NVME_CMD_ZONE_MGMT_SEND: return "NVME_ZONED_CMD_MGMT_SEND";
|
||||||
case NVME_CMD_ZONE_MGMT_RECV: return "NVME_ZONED_CMD_MGMT_RECV";
|
case NVME_CMD_ZONE_MGMT_RECV: return "NVME_ZONED_CMD_MGMT_RECV";
|
||||||
|
@ -60,6 +60,9 @@ pci_nvme_copy(uint16_t cid, uint32_t nsid, uint16_t nr, uint8_t format) "cid %"P
|
|||||||
pci_nvme_copy_source_range(uint64_t slba, uint32_t nlb) "slba 0x%"PRIx64" nlb %"PRIu32""
|
pci_nvme_copy_source_range(uint64_t slba, uint32_t nlb) "slba 0x%"PRIx64" nlb %"PRIu32""
|
||||||
pci_nvme_copy_in_complete(uint16_t cid) "cid %"PRIu16""
|
pci_nvme_copy_in_complete(uint16_t cid) "cid %"PRIu16""
|
||||||
pci_nvme_copy_cb(uint16_t cid) "cid %"PRIu16""
|
pci_nvme_copy_cb(uint16_t cid) "cid %"PRIu16""
|
||||||
|
pci_nvme_verify(uint16_t cid, uint32_t nsid, uint64_t slba, uint32_t nlb) "cid %"PRIu16" nsid %"PRIu32" slba 0x%"PRIx64" nlb %"PRIu32""
|
||||||
|
pci_nvme_verify_mdata_in_cb(uint16_t cid, const char *blkname) "cid %"PRIu16" blk '%s'"
|
||||||
|
pci_nvme_verify_cb(uint16_t cid, uint8_t prinfo, uint16_t apptag, uint16_t appmask, uint32_t reftag) "cid %"PRIu16" prinfo 0x%"PRIx8" apptag 0x%"PRIx16" appmask 0x%"PRIx16" reftag 0x%"PRIx32""
|
||||||
pci_nvme_rw_complete_cb(uint16_t cid, const char *blkname) "cid %"PRIu16" blk '%s'"
|
pci_nvme_rw_complete_cb(uint16_t cid, const char *blkname) "cid %"PRIu16" blk '%s'"
|
||||||
pci_nvme_block_status(int64_t offset, int64_t bytes, int64_t pnum, int ret, bool zeroed) "offset %"PRId64" bytes %"PRId64" pnum %"PRId64" ret 0x%x zeroed %d"
|
pci_nvme_block_status(int64_t offset, int64_t bytes, int64_t pnum, int ret, bool zeroed) "offset %"PRId64" bytes %"PRId64" pnum %"PRId64" ret 0x%x zeroed %d"
|
||||||
pci_nvme_dsm(uint16_t cid, uint32_t nsid, uint32_t nr, uint32_t attr) "cid %"PRIu16" nsid %"PRIu32" nr %"PRIu32" attr 0x%"PRIx32""
|
pci_nvme_dsm(uint16_t cid, uint32_t nsid, uint32_t nr, uint32_t attr) "cid %"PRIu16" nsid %"PRIu32" nr %"PRIu32" attr 0x%"PRIx32""
|
||||||
|
@ -580,6 +580,7 @@ enum NvmeIoCommands {
|
|||||||
NVME_CMD_COMPARE = 0x05,
|
NVME_CMD_COMPARE = 0x05,
|
||||||
NVME_CMD_WRITE_ZEROES = 0x08,
|
NVME_CMD_WRITE_ZEROES = 0x08,
|
||||||
NVME_CMD_DSM = 0x09,
|
NVME_CMD_DSM = 0x09,
|
||||||
|
NVME_CMD_VERIFY = 0x0c,
|
||||||
NVME_CMD_COPY = 0x19,
|
NVME_CMD_COPY = 0x19,
|
||||||
NVME_CMD_ZONE_MGMT_SEND = 0x79,
|
NVME_CMD_ZONE_MGMT_SEND = 0x79,
|
||||||
NVME_CMD_ZONE_MGMT_RECV = 0x7a,
|
NVME_CMD_ZONE_MGMT_RECV = 0x7a,
|
||||||
@ -1084,6 +1085,7 @@ enum NvmeIdCtrlOncs {
|
|||||||
NVME_ONCS_FEATURES = 1 << 4,
|
NVME_ONCS_FEATURES = 1 << 4,
|
||||||
NVME_ONCS_RESRVATIONS = 1 << 5,
|
NVME_ONCS_RESRVATIONS = 1 << 5,
|
||||||
NVME_ONCS_TIMESTAMP = 1 << 6,
|
NVME_ONCS_TIMESTAMP = 1 << 6,
|
||||||
|
NVME_ONCS_VERIFY = 1 << 7,
|
||||||
NVME_ONCS_COPY = 1 << 8,
|
NVME_ONCS_COPY = 1 << 8,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user