mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
staging: gdm724x: fix use after free in gdm_lte_rx()
commitfc7f750dc9upstream. The netif_rx_ni() function frees the skb so we can't dereference it to save the skb->len. Fixes:61e1210476("staging: gdm7240: adding LTE USB driver") Cc: stable <stable@vger.kernel.org> Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Link: https://lore.kernel.org/r/20220228074331.GA13685@kili Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8c1bc04c8c
commit
6d9700b445
@@ -76,14 +76,15 @@ static void tx_complete(void *arg)
|
|||||||
|
|
||||||
static int gdm_lte_rx(struct sk_buff *skb, struct nic *nic, int nic_type)
|
static int gdm_lte_rx(struct sk_buff *skb, struct nic *nic, int nic_type)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret, len;
|
||||||
|
|
||||||
|
len = skb->len + ETH_HLEN;
|
||||||
ret = netif_rx_ni(skb);
|
ret = netif_rx_ni(skb);
|
||||||
if (ret == NET_RX_DROP) {
|
if (ret == NET_RX_DROP) {
|
||||||
nic->stats.rx_dropped++;
|
nic->stats.rx_dropped++;
|
||||||
} else {
|
} else {
|
||||||
nic->stats.rx_packets++;
|
nic->stats.rx_packets++;
|
||||||
nic->stats.rx_bytes += skb->len + ETH_HLEN;
|
nic->stats.rx_bytes += len;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user