]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ksmbd: fix a missing return value check bug
authorWentao Liang <liangwentao@iscas.ac.cn>
Mon, 23 Dec 2024 15:30:50 +0000 (23:30 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 17 Jan 2025 12:34:40 +0000 (13:34 +0100)
[ Upstream commit 4c16e1cadcbcaf3c82d5fc310fbd34d0f5d0db7c ]

In the smb2_send_interim_resp(), if ksmbd_alloc_work_struct()
fails to allocate a node, it returns a NULL pointer to the
in_work pointer. This can lead to an illegal memory write of
in_work->response_buf when allocate_interim_rsp_buf() attempts
to perform a kzalloc() on it.

To address this issue, incorporating a check for the return
value of ksmbd_alloc_work_struct() ensures that the function
returns immediately upon allocation failure, thereby preventing
the aforementioned illegal memory access.

Fixes: 041bba4414cd ("ksmbd: fix wrong interim response on compound")
Signed-off-by: Wentao Liang <liangwentao@iscas.ac.cn>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/smb/server/smb2pdu.c

index 71478a590e8348521ecd5888d98483c3adca41b0..9d041fc558e35f3049b36d4725f229844177c14c 100644 (file)
@@ -712,6 +712,9 @@ void smb2_send_interim_resp(struct ksmbd_work *work, __le32 status)
        struct smb2_hdr *rsp_hdr;
        struct ksmbd_work *in_work = ksmbd_alloc_work_struct();
 
+       if (!in_work)
+               return;
+
        if (allocate_interim_rsp_buf(in_work)) {
                pr_err("smb_allocate_rsp_buf failed!\n");
                ksmbd_free_work_struct(in_work);