net: vmxnet3: fix possible buffer overflow caused by bad DMA value in vmxnet3_get_rss()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Sat, 30 May 2020 02:41:50 +0000 (10:41 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Jun 2020 08:25:09 +0000 (10:25 +0200)
[ Upstream commit 3e1c6846b9e108740ef8a37be80314053f5dd52a ]

The value adapter->rss_conf is stored in DMA memory, and it is assigned
to rssConf, so rssConf->indTableSize can be modified at anytime by
malicious hardware. Because rssConf->indTableSize is assigned to n,
buffer overflow may occur when the code "rssConf->indTable[n]" is
executed.

To fix this possible bug, n is checked after being used.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/vmxnet3/vmxnet3_ethtool.c

index 2ff27314e04739034cef408b59aed6a77cd98911..66c6c07c7a1662560e99177ea9dfbf427d2c1ba3 100644 (file)
@@ -692,6 +692,8 @@ vmxnet3_get_rss(struct net_device *netdev, u32 *p, u8 *key, u8 *hfunc)
                *hfunc = ETH_RSS_HASH_TOP;
        if (!p)
                return 0;
+       if (n > UPT1_RSS_MAX_IND_TABLE_SIZE)
+               return 0;
        while (n--)
                p[n] = rssConf->indTable[n];
        return 0;