From 1f2ff844f7c6b1d51bc0062d75f9399ad965b027 Mon Sep 17 00:00:00 2001 From: Youssef Samir Date: Mon, 17 Nov 2025 22:30:15 +0800 Subject: [PATCH] accel/qaic: Treat remaining == 0 as error in find_and_map_user_pages() stable inclusion from stable-v6.6.114 commit 48b1d42286bfef7628b1d6c8c28d4e456c90f725 category: bugfix bugzilla: https://gitee.com/src-openeuler/kernel/issues/ID6BC8 CVE: CVE-2025-40172 Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=48b1d42286bfef7628b1d6c8c28d4e456c90f725 -------------------------------- [ Upstream commit 11f08c30a3e4157305ba692f1d44cca5fc9a8fca ] Currently, if find_and_map_user_pages() takes a DMA xfer request from the user with a length field set to 0, or in a rare case, the host receives QAIC_TRANS_DMA_XFER_CONT from the device where resources->xferred_dma_size is equal to the requested transaction size, the function will return 0 before allocating an sgt or setting the fields of the dma_xfer struct. In that case, encode_addr_size_pairs() will try to access the sgt which will lead to a general protection fault. Return an EINVAL in case the user provides a zero-sized ALP, or the device requests continuation after all of the bytes have been transferred. Fixes: 96d3c1cadedb ("accel/qaic: Clean up integer overflow checking in map_user_pages()") Signed-off-by: Youssef Samir Signed-off-by: Youssef Samir Reviewed-by: Jeff Hugo Reviewed-by: Carl Vanderlip Signed-off-by: Jeff Hugo Link: https://lore.kernel.org/r/20251007122320.339654-1-youssef.abdulrahman@oss.qualcomm.com Signed-off-by: Sasha Levin Signed-off-by: Zhang Xiaoxu --- drivers/accel/qaic/qaic_control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/accel/qaic/qaic_control.c b/drivers/accel/qaic/qaic_control.c index f3db3fa91dd5..08b78f567853 100644 --- a/drivers/accel/qaic/qaic_control.c +++ b/drivers/accel/qaic/qaic_control.c @@ -407,7 +407,7 @@ static int find_and_map_user_pages(struct qaic_device *qdev, return -EINVAL; remaining = in_trans->size - resources->xferred_dma_size; if (remaining == 0) - return 0; + return -EINVAL; if (check_add_overflow(xfer_start_addr, remaining, &end)) return -EINVAL; -- Gitee