From: Chaitanya Kulkarni <[email protected]>

Right now, data_len is calculated before the transfer len after we
parse the command, With passthru interface we allow VUCs (Vendor-Unique
Commands). In order to make the code simple and compact, instead of
assigning the data len or each VUC in the command parse function
just use the transfer len as it is. This may result in error if expected
data_len != transfer_len.

Signed-off-by: Chaitanya Kulkarni <[email protected]>
[[email protected]:
   * added definition of VUC to the commit message and comment
   * use nvmet_req_passthru_ctrl() helper seeing we can't dereference
     subsys->passthru_ctrl if CONFIG_NVME_TARGET_PASSTHRU is not set]
Signed-off-by: Logan Gunthorpe <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
---
 drivers/nvme/target/core.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/drivers/nvme/target/core.c b/drivers/nvme/target/core.c
index 986b2511d284..f9d46354f9ae 100644
--- a/drivers/nvme/target/core.c
+++ b/drivers/nvme/target/core.c
@@ -942,7 +942,16 @@ EXPORT_SYMBOL_GPL(nvmet_req_uninit);
 
 void nvmet_req_execute(struct nvmet_req *req)
 {
-       if (unlikely(req->data_len != req->transfer_len)) {
+       /*
+        * data_len is calculated before the transfer len after we parse
+        * the command, With passthru interface we allow VUC (Vendor-Unique
+        * Commands)'s. In order to make the code simple and compact,
+        * instead of assinging the dala len for each VUC in the command
+        * parse function just use the transfer len as it is. This may
+        * result in error if expected data_len != transfer_len.
+        */
+       if (!(req->sq->ctrl && nvmet_req_passthru_ctrl(req)) &&
+           unlikely(req->data_len != req->transfer_len)) {
                req->error_loc = offsetof(struct nvme_common_command, dptr);
                nvmet_req_complete(req, NVME_SC_SGL_INVALID_DATA | NVME_SC_DNR);
        } else
-- 
2.20.1

Reply via email to