linux/drivers/net/wireless/intersil/p54
Jia-Ju Bai 478762855b p54: avoid accessing the data mapped to streaming DMA
In p54p_tx(), skb->data is mapped to streaming DMA on line 337:
  mapping = pci_map_single(..., skb->data, ...);

Then skb->data is accessed on line 349:
  desc->device_addr = ((struct p54_hdr *)skb->data)->req_id;

This access may cause data inconsistency between CPU cache and hardware.

To fix this problem, ((struct p54_hdr *)skb->data)->req_id is stored in
a local variable before DMA mapping, and then the driver accesses this
local variable instead of skb->data.

Cc: <stable@vger.kernel.org>
Signed-off-by: Jia-Ju Bai <baijiaju@tsinghua.edu.cn>
Acked-by: Christian Lamparter <chunkeey@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200802132949.26788-1-baijiaju@tsinghua.edu.cn
2020-09-01 12:33:48 +03:00
..
eeprom.c
eeprom.h
fwio.c intersil: fix wiki website url 2020-08-02 18:23:21 +03:00
Kconfig intersil: fix wiki website url 2020-08-02 18:23:21 +03:00
led.c
lmac.h
main.c
Makefile
p54.h
p54pci.c p54: avoid accessing the data mapped to streaming DMA 2020-09-01 12:33:48 +03:00
p54pci.h
p54spi_eeprom.h
p54spi.c
p54spi.h
p54usb.c intersil: fix wiki website url 2020-08-02 18:23:21 +03:00
p54usb.h
txrx.c