]> git.baikalelectronics.ru Git - kernel.git/commitdiff
bnxt: avoid overflow in bnxt_get_nvram_directory()
authorMaxim Korotkov <korotkov.maxim.s@gmail.com>
Thu, 9 Mar 2023 17:43:47 +0000 (20:43 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 May 2023 16:32:37 +0000 (17:32 +0100)
[ Upstream commit 7c6dddc239abe660598c49ec95ea0ed6399a4b2a ]

The value of an arithmetic expression is subject
of possible overflow due to a failure to cast operands to a larger data
type before performing arithmetic. Used macro for multiplication instead
operator for avoiding overflow.

Found by Security Code and Linux Verification
Center (linuxtesting.org) with SVACE.

Signed-off-by: Maxim Korotkov <korotkov.maxim.s@gmail.com>
Reviewed-by: Pavan Chebbi <pavan.chebbi@broadcom.com>
Link: https://lore.kernel.org/r/20230309174347.3515-1-korotkov.maxim.s@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c

index 01b973bc509f5646ad3be1a275e3478a78a40e3d..b2d531e014c57be878de4174c62667406980cc01 100644 (file)
@@ -2822,7 +2822,7 @@ static int bnxt_get_nvram_directory(struct net_device *dev, u32 len, u8 *data)
        if (rc)
                return rc;
 
-       buflen = dir_entries * entry_length;
+       buflen = mul_u32_u32(dir_entries, entry_length);
        buf = hwrm_req_dma_slice(bp, req, buflen, &dma_handle);
        if (!buf) {
                hwrm_req_drop(bp, req);