From: Alan Stern <stern@rowland.harvard.edu>
To: Marco Elver <elver@google.com>
Cc: "Paul E. McKenney" <paulmck@kernel.org>,
Boqun Feng <boqun.feng@gmail.com>,
Andrea Parri <parri.andrea@gmail.com>,
Will Deacon <will@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Dmitry Vyukov <dvyukov@google.com>,
kasan-dev@googlegroups.com, linux-kernel@vger.kernel.org
Subject: Re: LKMM: Read dependencies of writes ordered by dma_wmb()?
Date: Mon, 16 Aug 2021 15:21:09 -0400 [thread overview]
Message-ID: <20210816192109.GC121345@rowland.harvard.edu> (raw)
In-Reply-To: <YRqfJz/lpUaZpxq7@elver.google.com>
On Mon, Aug 16, 2021 at 07:23:51PM +0200, Marco Elver wrote:
> On Mon, Aug 16, 2021 at 10:59AM -0400, Alan Stern wrote:
> [...]
> > > One caveat is the case I'm trying to understand doesn't involve just 2
> > > CPUs but also a device. And for now, I'm assuming that dma_wmb() is as
> > > strong as smp_wmb() also wrt other CPUs (but my guess is this
> > > assumption is already too strong).
> >
> > I'm not sure that is right. dma_wmb affects the visibility of writes to
> > a DMA buffer from the point of view of the device, not necessarily from
> > the point of view of other CPUs. At least, there doesn't seem to be any
> > claim in memory-barriers.txt that it does so.
>
> Thanks, I thought so.
>
> While I could just not instrument dma_*mb() at all, because KCSAN
> obviously can't instrument what devices do, I wonder if the resulting
> reports are at all interesting.
>
> For example, if I do not make the assumption that dma_wmb==smp_smb, and
> don't instrument dma_*mb() at all, I also get racy UAF reordered writes:
> I could imagine some architecture where dma_wmb() propagates the write
> to devices from CPU 0; but CPU 1 then does the kfree(), reallocates,
> reuses the data, but then gets its data overwritten by CPU 0.
Access ordering of devices is difficult to describe. How do you tell a
memory model (either a theoretical one or one embedded in code like
KCSAN) that a particular interrupt handler routine can't be called until
after a particular write has enabled the device to generate an IRQ?
In the case you mention, how do you tell the memory model that the code
on CPU 1 can't run until after CPU 0 has executed a particular write, one
which is forced by some memory barrier to occur _after_ all the potential
overwrites its worried about?
> What would be more useful?
>
> 1. Let the architecture decide how they want KCSAN to instrument non-smp
> barriers, given it's underspecified. This means KCSAN would report
> different races on different architectures, but keep the noise down.
>
> 2. Assume the weakest possible model, where non-smp barriers just do
> nothing wrt other CPUs.
I don't think either of those would work out very well. The problem
isn't how you handle the non-smp barriers; the problem is how you
describe to the memory model the way devices behave.
...
> > > In practice, my guess is no compiler and architecture combination would
> > > allow this today; or is there an arch where it could?
> >
> > Probably not; reordering of reads tends to take place over time
> > scales a lot shorter than lengthy I/O operations.
>
> Which might be an argument to make KCSAN's non-smp barrier
> instrumentation arch-dependent, because some drivers might in fact be
> written with some target architectures and their properties in mind. At
> least it would help keep the noise down, and those architecture that
> want to see such races certainly still could.
>
> Any preferences?
I'm not a good person to ask; I have never used KCSAN. However...
While some drivers are indeed written for particular architectures or
systems, I doubt that they rely very heavily on the special properties of
their target architectures/systems to avoid races. Rather, they rely on
the hardware to behave correctly, just as non-arch-specific drivers do.
Furthermore, the kernel tries pretty hard to factor out arch-specific
synchronization mechanisms and related concepts into general-purpose
abstractions (in the way that smp_mb() is generally available but is
defined differently for different architectures, for example). Drivers
tend to rely on these abstractions rather than on the arch-specific
properties directly.
In short, trying to make KCSAN's handling of device I/O into something
arch-specific doesn't seem (to me) like a particular advantageous
approach. Other people are likely to have different opinions.
Alan
next prev parent reply other threads:[~2021-08-16 19:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-16 10:12 Marco Elver
2021-08-16 14:59 ` Alan Stern
2021-08-16 17:23 ` Marco Elver
2021-08-16 19:21 ` Alan Stern [this message]
2021-08-16 20:50 ` Paul E. McKenney
2021-08-17 12:14 ` Marco Elver
2021-08-17 12:28 ` Will Deacon
2021-08-17 13:27 ` Marco Elver
2021-08-17 13:53 ` Paul E. McKenney
2021-08-18 11:39 ` Will Deacon
2021-08-18 23:17 ` Paul E. McKenney
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=20210816192109.GC121345@rowland.harvard.edu \
--to=stern@rowland.harvard.edu \
--cc=boqun.feng@gmail.com \
--cc=dvyukov@google.com \
--cc=elver@google.com \
--cc=kasan-dev@googlegroups.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=parri.andrea@gmail.com \
--cc=paulmck@kernel.org \
--cc=will@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
all inboxes | Powered by JetHome®