]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
i40e: fix MMIO write access to an invalid page in i40e_clear_hw
authorKyungwook Boo <bookyungwook@gmail.com>
Tue, 11 Mar 2025 05:16:02 +0000 (14:16 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2025 10:04:19 +0000 (11:04 +0100)
[ Upstream commit 015bac5daca978448f2671478c553ce1f300c21e ]

When the device sends a specific input, an integer underflow can occur, leading
to MMIO write access to an invalid page.

Prevent the integer underflow by changing the type of related variables.

Signed-off-by: Kyungwook Boo <bookyungwook@gmail.com>
Link: https://lore.kernel.org/lkml/ffc91764-1142-4ba2-91b6-8c773f6f7095@gmail.com/T/
Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Tested-by: Rinitha S <sx.rinitha@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/intel/i40e/i40e_common.c

index 59a467f7aba3f5fa8e88d1e2c42213a9d2065108..430f236be65382ef4b16b5e011e58591858e4d5c 100644 (file)
@@ -1320,10 +1320,11 @@ i40e_status i40e_pf_reset(struct i40e_hw *hw)
 void i40e_clear_hw(struct i40e_hw *hw)
 {
        u32 num_queues, base_queue;
-       u32 num_pf_int;
-       u32 num_vf_int;
+       s32 num_pf_int;
+       s32 num_vf_int;
        u32 num_vfs;
-       u32 i, j;
+       s32 i;
+       u32 j;
        u32 val;
        u32 eol = 0x7ff;