* [PATCH v2 1/2] nvme-auth: unlock mutex in one place only
@ 2023-07-31 14:51 Mark O'Donovan
2023-07-31 14:51 ` [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs Mark O'Donovan
2023-07-31 16:37 ` [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Hannes Reinecke
0 siblings, 2 replies; 4+ messages in thread
From: Mark O'Donovan @ 2023-07-31 14:51 UTC (permalink / raw)
To: linux-kernel
Cc: linux-nvme, axboe, kbusch, hare, Mark O'Donovan,
Christoph Hellwig, Sagi Grimberg
Signed-off-by: Mark O'Donovan <shiftee@posteo.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
---
drivers/nvme/host/auth.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c
index daf5d144a8ea..e1a98647c3a2 100644
--- a/drivers/nvme/host/auth.c
+++ b/drivers/nvme/host/auth.c
@@ -758,12 +758,11 @@ static void nvme_queue_auth_work(struct work_struct *work)
__func__, chap->qid);
mutex_lock(&ctrl->dhchap_auth_mutex);
ret = nvme_auth_dhchap_setup_host_response(ctrl, chap);
+ mutex_unlock(&ctrl->dhchap_auth_mutex);
if (ret) {
- mutex_unlock(&ctrl->dhchap_auth_mutex);
chap->error = ret;
goto fail2;
}
- mutex_unlock(&ctrl->dhchap_auth_mutex);
/* DH-HMAC-CHAP Step 3: send reply */
dev_dbg(ctrl->device, "%s: qid %d send reply\n",
--
2.39.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs
2023-07-31 14:51 [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Mark O'Donovan
@ 2023-07-31 14:51 ` Mark O'Donovan
2023-07-31 16:38 ` Hannes Reinecke
2023-07-31 16:37 ` [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Hannes Reinecke
1 sibling, 1 reply; 4+ messages in thread
From: Mark O'Donovan @ 2023-07-31 14:51 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-nvme, axboe, kbusch, hare, Mark O'Donovan
Some error cases were not setting an auth-failure-reason-code-explanation.
This means an AUTH_Failure2 message will be sent with an explanation value
of 0 which is a reserved value.
Signed-off-by: Mark O'Donovan <shiftee@posteo.net>
---
v1->v2: Set failure explanation in a single place if the error handling
code has not already done so.
drivers/nvme/host/auth.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c
index e1a98647c3a2..9556cfc4f5f3 100644
--- a/drivers/nvme/host/auth.c
+++ b/drivers/nvme/host/auth.c
@@ -839,6 +839,8 @@ static void nvme_queue_auth_work(struct work_struct *work)
}
fail2:
+ if (chap->status == 0)
+ chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
dev_dbg(ctrl->device, "%s: qid %d send failure2, status %x\n",
__func__, chap->qid, chap->status);
tl = nvme_auth_set_dhchap_failure2_data(ctrl, chap);
--
2.39.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] nvme-auth: unlock mutex in one place only
2023-07-31 14:51 [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Mark O'Donovan
2023-07-31 14:51 ` [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs Mark O'Donovan
@ 2023-07-31 16:37 ` Hannes Reinecke
1 sibling, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2023-07-31 16:37 UTC (permalink / raw)
To: Mark O'Donovan, linux-kernel
Cc: linux-nvme, axboe, kbusch, Christoph Hellwig, Sagi Grimberg
On 7/31/23 16:51, Mark O'Donovan wrote:
> Signed-off-by: Mark O'Donovan <shiftee@posteo.net>
> Reviewed-by: Christoph Hellwig <hch@lst.de>
> Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
> ---
> drivers/nvme/host/auth.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c
> index daf5d144a8ea..e1a98647c3a2 100644
> --- a/drivers/nvme/host/auth.c
> +++ b/drivers/nvme/host/auth.c
> @@ -758,12 +758,11 @@ static void nvme_queue_auth_work(struct work_struct *work)
> __func__, chap->qid);
> mutex_lock(&ctrl->dhchap_auth_mutex);
> ret = nvme_auth_dhchap_setup_host_response(ctrl, chap);
> + mutex_unlock(&ctrl->dhchap_auth_mutex);
> if (ret) {
> - mutex_unlock(&ctrl->dhchap_auth_mutex);
> chap->error = ret;
> goto fail2;
> }
> - mutex_unlock(&ctrl->dhchap_auth_mutex);
>
> /* DH-HMAC-CHAP Step 3: send reply */
> dev_dbg(ctrl->device, "%s: qid %d send reply\n",
If you insist.
Reviewed-by: Hannes Reinecke <hare@suse.de>
Cheers,
Hannes
--
Dr. Hannes Reinecke Kernel Storage Architect
hare@suse.de +49 911 74053 688
SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
HRB 36809 (AG Nürnberg), Geschäftsführer: Ivo Totev, Andrew
Myers, Andrew McDonald, Martje Boudien Moerman
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs
2023-07-31 14:51 ` [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs Mark O'Donovan
@ 2023-07-31 16:38 ` Hannes Reinecke
0 siblings, 0 replies; 4+ messages in thread
From: Hannes Reinecke @ 2023-07-31 16:38 UTC (permalink / raw)
To: Mark O'Donovan, linux-kernel; +Cc: linux-nvme, axboe, kbusch
On 7/31/23 16:51, Mark O'Donovan wrote:
> Some error cases were not setting an auth-failure-reason-code-explanation.
> This means an AUTH_Failure2 message will be sent with an explanation value
> of 0 which is a reserved value.
>
> Signed-off-by: Mark O'Donovan <shiftee@posteo.net>
> ---
> v1->v2: Set failure explanation in a single place if the error handling
> code has not already done so.
>
> drivers/nvme/host/auth.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c
> index e1a98647c3a2..9556cfc4f5f3 100644
> --- a/drivers/nvme/host/auth.c
> +++ b/drivers/nvme/host/auth.c
> @@ -839,6 +839,8 @@ static void nvme_queue_auth_work(struct work_struct *work)
> }
>
> fail2:
> + if (chap->status == 0)
> + chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED;
> dev_dbg(ctrl->device, "%s: qid %d send failure2, status %x\n",
> __func__, chap->qid, chap->status);
> tl = nvme_auth_set_dhchap_failure2_data(ctrl, chap);
Reviewed-by: Hannes Reinecke <hare@suse.de>
Cheers,
Hannes
--
Dr. Hannes Reinecke Kernel Storage Architect
hare@suse.de +49 911 74053 688
SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
HRB 36809 (AG Nürnberg), Geschäftsführer: Ivo Totev, Andrew
Myers, Andrew McDonald, Martje Boudien Moerman
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-31 16:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-31 14:51 [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Mark O'Donovan
2023-07-31 14:51 ` [PATCH v2 2/2] nvme-auth: set explanation code for failure2 msgs Mark O'Donovan
2023-07-31 16:38 ` Hannes Reinecke
2023-07-31 16:37 ` [PATCH v2 1/2] nvme-auth: unlock mutex in one place only Hannes Reinecke
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®