p54: avoid accessing the data mapped to streaming DMA
authorJia-Ju Bai <baijiaju@tsinghua.edu.cn>
Sun, 2 Aug 2020 13:29:49 +0000 (21:29 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 1 Sep 2020 09:33:48 +0000 (12:33 +0300)
commit478762855b5ae9f68fa6ead1edf7abada70fcd5f
treecb20ae2a895e4f9c728450388ebf688977a26d6f
parente9cf68ff4eff35c1724f0f43309fa1d919292592
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
drivers/net/wireless/intersil/p54/p54pci.c