linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Christian Lamparter <chunkeey@gmail.com>
To: Jia-Ju Bai <baijiaju@tsinghua.edu.cn>,
	kvalo@codeaurora.org, kuba@kernel.org
Cc: linux-wireless@vger.kernel.org
Subject: Re: [PATCH] p54: avoid accessing the data mapped to streaming DMA
Date: Tue, 18 Aug 2020 19:27:10 +0200	[thread overview]
Message-ID: <0b432282-8d52-3004-6648-d97c03cdae28@gmail.com> (raw)
In-Reply-To: <20200802132949.26788-1-baijiaju@tsinghua.edu.cn>

Hello,

sorry. Your mail got flagged by google mail as spam. :(

On 2020-08-02 15:29, Jia-Ju Bai wrote:
> 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.

Interesting. Please bear with me here. From my understanding, the 
streaming direction is set to PCI_DMA_TODEVICE. So is it really possible
for the hardware to interfere with the data without the IOMMU catching this?

(That said, patch looks be fine. I'll need to dust off a old PCI PC to 
check this with real hardware, if requested.)

Cheers,
Christian



> 
> Signed-off-by: Jia-Ju Bai <baijiaju@tsinghua.edu.cn>
> ---
>   drivers/net/wireless/intersil/p54/p54pci.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/wireless/intersil/p54/p54pci.c b/drivers/net/wireless/intersil/p54/p54pci.c
> index 80ad0b7eaef4..f8c6027cab6b 100644
> --- a/drivers/net/wireless/intersil/p54/p54pci.c
> +++ b/drivers/net/wireless/intersil/p54/p54pci.c
> @@ -329,10 +329,12 @@ static void p54p_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
>   	struct p54p_desc *desc;
>   	dma_addr_t mapping;
>   	u32 idx, i;
> +	__le32 device_addr;
>   
>   	spin_lock_irqsave(&priv->lock, flags);
>   	idx = le32_to_cpu(ring_control->host_idx[1]);
>   	i = idx % ARRAY_SIZE(ring_control->tx_data);
> +	device_addr = ((struct p54_hdr *)skb->data)->req_id;
>   
>   	mapping = pci_map_single(priv->pdev, skb->data, skb->len,
>   				 PCI_DMA_TODEVICE);
> @@ -346,7 +348,7 @@ static void p54p_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
>   
>   	desc = &ring_control->tx_data[i];
>   	desc->host_addr = cpu_to_le32(mapping);
> -	desc->device_addr = ((struct p54_hdr *)skb->data)->req_id;
> +	desc->device_addr = device_addr;
>   	desc->len = cpu_to_le16(skb->len);
>   	desc->flags = 0;
>   
> 


  parent reply	other threads:[~2020-08-18 17:27 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-02 13:29 [PATCH] p54: avoid accessing the data mapped to streaming DMA Jia-Ju Bai
2020-08-18 12:41 ` Kalle Valo
2020-08-18 17:27 ` Christian Lamparter [this message]
2020-08-26 16:02   ` Kalle Valo
2020-08-28 21:19     ` Christian Lamparter
2020-08-31 14:00       ` Kalle Valo
2020-09-01  9:34 ` Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0b432282-8d52-3004-6648-d97c03cdae28@gmail.com \
    --to=chunkeey@gmail.com \
    --cc=baijiaju@tsinghua.edu.cn \
    --cc=kuba@kernel.org \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).