From: Peter Zijlstra <peterz@infradead.org>
To: Will Deacon <will@kernel.org>
Cc: Ali Saidi <alisaidi@amazon.com>,
linux-kernel@vger.kernel.org, catalin.marinas@arm.com,
steve.capper@arm.com, benh@kernel.crashing.org,
stable@vger.kernel.org, Ingo Molnar <mingo@redhat.com>,
Waiman Long <longman@redhat.com>,
Boqun Feng <boqun.feng@gmail.com>
Subject: Re: [PATCH] locking/qrwlock: Fix ordering in queued_write_lock_slowpath
Date: Thu, 15 Apr 2021 17:54:30 +0200 [thread overview]
Message-ID: <YHhhtuVsM4FkINLM@hirez.programming.kicks-ass.net> (raw)
In-Reply-To: <20210415152820.GB26439@willie-the-truck>
On Thu, Apr 15, 2021 at 04:28:21PM +0100, Will Deacon wrote:
> On Thu, Apr 15, 2021 at 05:03:58PM +0200, Peter Zijlstra wrote:
> > @@ -73,9 +75,8 @@ void queued_write_lock_slowpath(struct qrwlock *lock)
> >
> > /* When no more readers or writers, set the locked flag */
> > do {
> > - atomic_cond_read_acquire(&lock->cnts, VAL == _QW_WAITING);
> > - } while (atomic_cmpxchg_relaxed(&lock->cnts, _QW_WAITING,
> > - _QW_LOCKED) != _QW_WAITING);
> > + cnt = atomic_cond_read_acquire(&lock->cnts, VAL == _QW_WAITING);
>
> I think the issue is that >here< a concurrent reader in interrupt context
> can take the lock and release it again, but we could speculate reads from
> the critical section up over the later release and up before the control
> dependency here...
OK, so that was totally not clear from the original changelog.
> > + } while (!atomic_try_cmpxchg_relaxed(&lock->cnts, &cnt, _QW_LOCKED));
>
> ... and then this cmpxchg() will succeed, so our speculated stale reads
> could be used.
>
> *HOWEVER*
>
> Speculating a read should be fine in the face of a concurrent _reader_,
> so for this to be an issue it implies that the reader is also doing some
> (atomic?) updates.
So we're having something like:
CPU0 CPU1
queue_write_lock_slowpath()
atomic_cond_read_acquire() == _QW_WAITING
queued_read_lock_slowpath()
atomic_cond_read_acquire()
return;
,--> (before X's store)
| X = y;
|
| queued_read_unlock()
| (void)atomic_sub_return_release()
|
| atomic_cmpxchg_relaxed(.old = _QW_WAITING)
|
`-- r = X;
Which as Will said is a cmpxchg ABA, however for it to be ABA, we have
to observe that unlock-store, and won't we then also have to observe the
whole critical section?
Ah, the issue is yet another load inside our own (CPU0)'s critical
section. which isn't ordered against the cmpxchg_relaxed() and can be
issued before.
So yes, then making the cmpxchg an acquire, will force all our own loads
to happen later.
next prev parent reply other threads:[~2021-04-15 15:54 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-15 14:25 Ali Saidi
2021-04-15 15:02 ` Will Deacon
2021-04-15 16:26 ` Ali Saidi
2021-04-15 16:45 ` Will Deacon
2021-04-15 16:53 ` Waiman Long
2021-04-15 17:18 ` Steve Capper
2021-04-15 15:03 ` Peter Zijlstra
2021-04-15 15:28 ` Will Deacon
2021-04-15 15:37 ` Catalin Marinas
2021-04-15 15:50 ` Will Deacon
2021-04-15 15:54 ` Peter Zijlstra [this message]
2021-04-15 15:07 ` Waiman Long
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=YHhhtuVsM4FkINLM@hirez.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=alisaidi@amazon.com \
--cc=benh@kernel.crashing.org \
--cc=boqun.feng@gmail.com \
--cc=catalin.marinas@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=longman@redhat.com \
--cc=mingo@redhat.com \
--cc=stable@vger.kernel.org \
--cc=steve.capper@arm.com \
--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®