* [PATCH] nvmet: Fix discover log page when offsets are used
@ 2019-04-08 19:29 Keith Busch
2019-04-08 19:46 ` Keith Busch
2019-04-08 21:57 ` James Smart
0 siblings, 2 replies; 4+ messages in thread
From: Keith Busch @ 2019-04-08 19:29 UTC (permalink / raw)
The nvme target hadn't been taking the Get Log Page offset parameter
into consideration, and so has been returning corrupting logs pages when
offsets are used. Since many tools, including nvme-cli, split the log
request to 4k, we've been breaking discovery log responses when more
than 3 subsystems exist.
Fix the log page by internally generating the entire discovery log page
and copying only the requested bytes into the user buffer.
Cc: Hannes Reinecke <hare at suse.de>
Signed-off-by: Keith Busch <keith.busch at intel.com>
---
drivers/nvme/target/admin-cmd.c | 10 +++++++
drivers/nvme/target/discovery.c | 63 +++++++++++++++++++++++++----------------
drivers/nvme/target/nvmet.h | 1 +
3 files changed, 50 insertions(+), 24 deletions(-)
diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c
index 76250181fee0..e7f3f6e71853 100644
--- a/drivers/nvme/target/admin-cmd.c
+++ b/drivers/nvme/target/admin-cmd.c
@@ -24,6 +24,16 @@ u32 nvmet_get_log_page_len(struct nvme_command *cmd)
return len;
}
+u64 nvmet_get_log_page_offset(struct nvme_command *cmd)
+{
+ u64 offset = le32_to_cpu(cmd->get_log_page.lpou);
+
+ offset <<= 32;
+ offset += le32_to_cpu(cmd->get_log_page.lpol);
+
+ return offset;
+}
+
static void nvmet_execute_get_log_page_noop(struct nvmet_req *req)
{
nvmet_req_complete(req, nvmet_zero_sgl(req, 0, req->data_len));
diff --git a/drivers/nvme/target/discovery.c b/drivers/nvme/target/discovery.c
index c872b47a88f3..03cb4f36cb86 100644
--- a/drivers/nvme/target/discovery.c
+++ b/drivers/nvme/target/discovery.c
@@ -131,14 +131,33 @@ static void nvmet_set_disc_traddr(struct nvmet_req *req, struct nvmet_port *port
memcpy(traddr, port->disc_addr.traddr, NVMF_TRADDR_SIZE);
}
+static size_t discovery_log_entries(struct nvmet_req *req)
+{
+ struct nvmet_ctrl *ctrl = req->sq->ctrl;
+ struct nvmet_subsys_link *p;
+ struct nvmet_port *r;
+ u32 entries = 0;
+
+ list_for_each_entry(p, &req->port->subsystems, entry) {
+ if (!nvmet_host_allowed(p->subsys, ctrl->hostnqn))
+ continue;
+ entries++;
+ }
+ list_for_each_entry(r, &req->port->referrals, entry)
+ entries++;
+ return entries;
+}
+
static void nvmet_execute_get_disc_log_page(struct nvmet_req *req)
{
const int entry_size = sizeof(struct nvmf_disc_rsp_page_entry);
struct nvmet_ctrl *ctrl = req->sq->ctrl;
struct nvmf_disc_rsp_page_hdr *hdr;
+ void *buffer;
+
+ u64 offset = nvmet_get_log_page_offset(req->cmd);
size_t data_len = nvmet_get_log_page_len(req->cmd);
- size_t alloc_len = max(data_len, sizeof(*hdr));
- int residual_len = data_len - sizeof(*hdr);
+ size_t alloc_len;
struct nvmet_subsys_link *p;
struct nvmet_port *r;
u32 numrec = 0;
@@ -149,36 +168,33 @@ static void nvmet_execute_get_disc_log_page(struct nvmet_req *req)
* If host provided data len is less than the header size, only the
* number of bytes requested by host will be sent to host.
*/
- hdr = kzalloc(alloc_len, GFP_KERNEL);
- if (!hdr) {
+ down_read(&nvmet_config_sem);
+ alloc_len = sizeof(*hdr) + entry_size * discovery_log_entries(req);
+ buffer = kzalloc(alloc_len, GFP_KERNEL);
+ if (!buffer) {
status = NVME_SC_INTERNAL;
goto out;
}
- down_read(&nvmet_config_sem);
+ hdr = buffer;
list_for_each_entry(p, &req->port->subsystems, entry) {
+ char traddr[NVMF_TRADDR_SIZE];
+
if (!nvmet_host_allowed(p->subsys, ctrl->hostnqn))
continue;
- if (residual_len >= entry_size) {
- char traddr[NVMF_TRADDR_SIZE];
-
- nvmet_set_disc_traddr(req, req->port, traddr);
- nvmet_format_discovery_entry(hdr, req->port,
- p->subsys->subsysnqn, traddr,
- NVME_NQN_NVME, numrec);
- residual_len -= entry_size;
- }
+
+ nvmet_set_disc_traddr(req, req->port, traddr);
+ nvmet_format_discovery_entry(hdr, req->port,
+ p->subsys->subsysnqn, traddr,
+ NVME_NQN_NVME, numrec);
numrec++;
}
list_for_each_entry(r, &req->port->referrals, entry) {
- if (residual_len >= entry_size) {
- nvmet_format_discovery_entry(hdr, r,
- NVME_DISC_SUBSYS_NAME,
- r->disc_addr.traddr,
- NVME_NQN_DISC, numrec);
- residual_len -= entry_size;
- }
+ nvmet_format_discovery_entry(hdr, r,
+ NVME_DISC_SUBSYS_NAME,
+ r->disc_addr.traddr,
+ NVME_NQN_DISC, numrec);
numrec++;
}
@@ -187,11 +203,10 @@ static void nvmet_execute_get_disc_log_page(struct nvmet_req *req)
hdr->recfmt = cpu_to_le16(0);
nvmet_clear_aen_bit(req, NVME_AEN_BIT_DISC_CHANGE);
-
up_read(&nvmet_config_sem);
- status = nvmet_copy_to_sgl(req, 0, hdr, data_len);
- kfree(hdr);
+ status = nvmet_copy_to_sgl(req, 0, buffer + offset, data_len);
+ kfree(buffer);
out:
nvmet_req_complete(req, status);
}
diff --git a/drivers/nvme/target/nvmet.h b/drivers/nvme/target/nvmet.h
index 51e49efd7849..1653d19b187f 100644
--- a/drivers/nvme/target/nvmet.h
+++ b/drivers/nvme/target/nvmet.h
@@ -428,6 +428,7 @@ u16 nvmet_copy_from_sgl(struct nvmet_req *req, off_t off, void *buf,
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);
extern struct list_head *nvmet_ports;
void nvmet_port_disc_changed(struct nvmet_port *port,
--
2.14.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] nvmet: Fix discover log page when offsets are used
2019-04-08 19:29 [PATCH] nvmet: Fix discover log page when offsets are used Keith Busch
@ 2019-04-08 19:46 ` Keith Busch
2019-04-08 21:57 ` James Smart
1 sibling, 0 replies; 4+ messages in thread
From: Keith Busch @ 2019-04-08 19:46 UTC (permalink / raw)
On Mon, Apr 08, 2019@01:29:32PM -0600, Keith Busch wrote:
> @@ -149,36 +168,33 @@ static void nvmet_execute_get_disc_log_page(struct nvmet_req *req)
> * If host provided data len is less than the header size, only the
> * number of bytes requested by host will be sent to host.
> */
> - hdr = kzalloc(alloc_len, GFP_KERNEL);
> - if (!hdr) {
> + down_read(&nvmet_config_sem);
> + alloc_len = sizeof(*hdr) + entry_size * discovery_log_entries(req);
> + buffer = kzalloc(alloc_len, GFP_KERNEL);
> + if (!buffer) {
> status = NVME_SC_INTERNAL;
> goto out;
> }
There's an error here not unlocking the target control rw-semaphore on
allocation failure. Going to send a v2 in 5 seconds, so please disregard
this one.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] nvmet: Fix discover log page when offsets are used
2019-04-08 19:29 [PATCH] nvmet: Fix discover log page when offsets are used Keith Busch
2019-04-08 19:46 ` Keith Busch
@ 2019-04-08 21:57 ` James Smart
2019-04-08 22:51 ` James Smart
1 sibling, 1 reply; 4+ messages in thread
From: James Smart @ 2019-04-08 21:57 UTC (permalink / raw)
On 4/8/2019 12:29 PM, Keith Busch wrote:
> The nvme target hadn't been taking the Get Log Page offset parameter
> into consideration, and so has been returning corrupting logs pages when
> offsets are used. Since many tools, including nvme-cli, split the log
> request to 4k, we've been breaking discovery log responses when more
> than 3 subsystems exist.
>
> Fix the log page by internally generating the entire discovery log page
> and copying only the requested bytes into the user buffer.
>
> Cc: Hannes Reinecke <hare at suse.de>
> Signed-off-by: Keith Busch <keith.busch at intel.com>
> ---
> drivers/nvme/target/admin-cmd.c | 10 +++++++
> drivers/nvme/target/discovery.c | 63 +++++++++++++++++++++++++----------------
> drivers/nvme/target/nvmet.h | 1 +
> 3 files changed, 50 insertions(+), 24 deletions(-)
>
>
Reviewed-by:? James Smart? <james.smart at broadcom.com>
Looks good.
-- james
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] nvmet: Fix discover log page when offsets are used
2019-04-08 21:57 ` James Smart
@ 2019-04-08 22:51 ` James Smart
0 siblings, 0 replies; 4+ messages in thread
From: James Smart @ 2019-04-08 22:51 UTC (permalink / raw)
On 4/8/2019 2:57 PM, James Smart wrote:
>
>
> On 4/8/2019 12:29 PM, Keith Busch wrote:
>> The nvme target hadn't been taking the Get Log Page offset parameter
>> into consideration, and so has been returning corrupting logs pages when
>> offsets are used. Since many tools, including nvme-cli, split the log
>> request to 4k, we've been breaking discovery log responses when more
>> than 3 subsystems exist.
>>
>> Fix the log page by internally generating the entire discovery log page
>> and copying only the requested bytes into the user buffer.
>>
>> Cc: Hannes Reinecke <hare at suse.de>
>> Signed-off-by: Keith Busch <keith.busch at intel.com>
>> ---
>> ? drivers/nvme/target/admin-cmd.c | 10 +++++++
>> ? drivers/nvme/target/discovery.c | 63
>> +++++++++++++++++++++++++----------------
>> ? drivers/nvme/target/nvmet.h???? |? 1 +
>> ? 3 files changed, 50 insertions(+), 24 deletions(-)
>>
>>
>
> Reviewed-by:? James Smart? <james.smart at broadcom.com>
>
> Looks good.
>
> -- james
>
>
?excepting the locking issue :)
-- james
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-04-08 22:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-08 19:29 [PATCH] nvmet: Fix discover log page when offsets are used Keith Busch
2019-04-08 19:46 ` Keith Busch
2019-04-08 21:57 ` James Smart
2019-04-08 22:51 ` James Smart
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.