From: Amit <Amit.Engel@Dell.com> To: sagi@grimberg.me, linux-nvme@lists.infradead.org Cc: amit.engel@dell.com Subject: [PATCH] nvmet: Add helper function 'nvmet_feature_data_len' to calculate the required data_len Date: Thu, 5 Dec 2019 15:34:06 +0200 [thread overview] Message-ID: <20191205133406.63791-1-amit.engel@emc.com> (raw) From: Amit Engel <amit.engel@dell.com> This fixes a bug in nvmet_execute_get_features, fid 0x81, NVME_FEAT_HOST_ID nvmet_check_data_len shall be called with a valid data_len value Signed-off-by: Amit Engel <amit.engel@dell.com> --- drivers/nvme/target/admin-cmd.c | 11 ++++++++++- drivers/nvme/target/nvmet.h | 2 ++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c index 56c21b501185..f09d5fdc995f 100644 --- a/drivers/nvme/target/admin-cmd.c +++ b/drivers/nvme/target/admin-cmd.c @@ -24,6 +24,15 @@ u32 nvmet_get_log_page_len(struct nvme_command *cmd) return len; } +u32 nvmet_feature_data_len(struct nvmet_req *req) +{ + u8 feature = req->cmd->common.cdw10 & 0xff; + + if (feature == NVME_FEAT_HOST_ID) + return sizeof(req->sq->ctrl->hostid); + return 0; +} + u64 nvmet_get_log_page_offset(struct nvme_command *cmd) { return le64_to_cpu(cmd->get_log_page.lpo); @@ -778,7 +787,7 @@ static void nvmet_execute_get_features(struct nvmet_req *req) u32 cdw10 = le32_to_cpu(req->cmd->common.cdw10); u16 status = 0; - if (!nvmet_check_data_len(req, 0)) + if (!nvmet_check_data_len(req, nvmet_feature_data_len(req)) return; switch (cdw10 & 0xff) { diff --git a/drivers/nvme/target/nvmet.h b/drivers/nvme/target/nvmet.h index 46df45e837c9..6422489d96cd 100644 --- a/drivers/nvme/target/nvmet.h +++ b/drivers/nvme/target/nvmet.h @@ -434,6 +434,8 @@ u16 nvmet_zero_sgl(struct nvmet_req *req, off_t off, size_t len); u32 nvmet_get_log_page_len(struct nvme_command *cmd); u64 nvmet_get_log_page_offset(struct nvme_command *cmd); +u32 nvmet_feature_data_len(struct nvmet_req *req); + extern struct list_head *nvmet_ports; void nvmet_port_disc_changed(struct nvmet_port *port, struct nvmet_subsys *subsys); -- 2.16.5 _______________________________________________ linux-nvme mailing list linux-nvme@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-nvme
reply other threads:[~2019-12-05 13:36 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20191205133406.63791-1-amit.engel@emc.com \ --to=amit.engel@dell.com \ --cc=linux-nvme@lists.infradead.org \ --cc=sagi@grimberg.me \ --subject='Re: [PATCH] nvmet: Add helper function '\''nvmet_feature_data_len'\'' to calculate the required data_len' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).