]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
nvmet-tcp: fix a crash in nvmet_req_complete()
authorMaurizio Lombardi <mlombard@redhat.com>
Fri, 22 Dec 2023 15:17:49 +0000 (16:17 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Jan 2024 23:45:24 +0000 (15:45 -0800)
commitc32d355f507fa81cf23aaa4dd4150e696cb8ebaf
tree48dc82258c669093bec84984588888035ac5c76b
parent70154e8d015c9b4fb56c1a2ef1fc8b83d45c7f68
nvmet-tcp: fix a crash in nvmet_req_complete()

[ Upstream commit 0849a5441358cef02586fb2d60f707c0db195628 ]

in nvmet_tcp_handle_h2c_data_pdu(), if the host sends a data_offset
different from rbytes_done, the driver ends up calling nvmet_req_complete()
passing a status error.
The problem is that at this point cmd->req is not yet initialized,
the kernel will crash after dereferencing a NULL pointer.

Fix the bug by replacing the call to nvmet_req_complete() with
nvmet_tcp_fatal_error().

Fixes: 872d26a391da ("nvmet-tcp: add NVMe over TCP target driver")
Reviewed-by: Keith Busch <kbsuch@kernel.org>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/nvme/target/tcp.c