From: ludovic.desroches@atmel.com (Ludovic Desroches)
To: linux-arm-kernel@lists.infradead.org
Subject: at_xdmac: txd used outside spinlock after being released?
Date: Wed, 27 Jul 2016 11:57:51 +0200 [thread overview]
Message-ID: <20160727095751.GA3700@odux.rfo.atmel.com> (raw)
In-Reply-To: <CAP+RiCAXKmFAzWoow_g=LR=tML7kxAi_dG0w4Z6X9KrvSypD9w@mail.gmail.com>
Hi Brent,
On Tue, Jul 19, 2016 at 10:58:40PM -0500, Brent Taylor wrote:
> Hi Ludovic,
> I'm learning about the dmaengine subsystem and I was using the
> at_xdmac as a reference. I'm not real familiar with tasklets
> because I have used threaded interrupt handlers instead of them.
> I noticed that the variable "txd" in the following block of code
> (from the function at_xdmac_tasklet) is used after releasing the
> atchan->lock and after the "desc" the txd is associated with is
> returned back to the free descriptor list.
>
> spin_lock_bh(&atchan->lock);
> desc = list_first_entry(&atchan->xfers_list,
> struct at_xdmac_desc,
> xfer_node);
> ...
> txd = &desc->tx_dma_desc;
>
> at_xdmac_remove_xfer(atchan, desc);
> spin_unlock_bh(&atchan->lock);
>
> if (!at_xdmac_chan_is_cyclic(atchan)) {
> dma_cookie_complete(txd);
> if (txd->callback && (txd->flags & DMA_PREP_INTERRUPT))
> txd->callback(txd->callback_param);
> }
>
> dma_run_dependencies(txd);
>
> Is there any danger of another process (maybe running on another
> processor) changing desc->txd after it has been put back on the
> free_list?
To be honest, I have already thought about it and I have probably been
lucky!
> My first thought was to move the spin_unlock_bh(&atchan->lock) untill
> after dma_run_dependencies(txd), but a deadlock will be introduced
> because dma_run_dependencies could invoke at_xdmac_issue_pending which
> could eventually call spin_lock_irqsave(&atchan->lock). A deadlock
> could also be created if the "callback" function invoked another
> "device_prep_*" function.
>
> If I'm miss-understanding something, I apologize for the noise.
You're right. At the moment, I had no feedback about a bug related to
this. A customer tested hardly the current driver, much more than I. Since
locking issues are not trivial to debug and to trigger, I am not really
in favour to anticipate it but I keep in mind there is a weakness here.
It doesn't mean I am not open to all good suggestions of course!
One way (which is not too risky) to fix it would be to put descriptors
which are no longer used at the end of the free descriptors list instead
of putting them back at the beginning.
>
> -- Brent Taylor
Regards
Ludovic
prev parent reply other threads:[~2016-07-27 9:57 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-20 3:58 at_xdmac: txd used outside spinlock after being released? Brent Taylor
2016-07-27 9:57 ` Ludovic Desroches [this message]
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=20160727095751.GA3700@odux.rfo.atmel.com \
--to=ludovic.desroches@atmel.com \
--cc=linux-arm-kernel@lists.infradead.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).