From: Jann Horn <[email protected]>
To: David Laight <[email protected]>
Cc: Jens Axboe <[email protected]>,
Pavel Begunkov <[email protected]>,
io-uring <[email protected]>,
kernel list <[email protected]>,
Peter Zijlstra <[email protected]>,
Ingo Molnar <[email protected]>, Will Deacon <[email protected]>,
Waiman Long <[email protected]>,
Thomas Gleixner <[email protected]>
Subject: mutex/spinlock semantics [was: Re: io_uring: incorrect assumption about mutex behavior on unlock?]
Date: Fri, 1 Dec 2023 19:40:06 +0100 [thread overview]
Message-ID: <CAG48ez1jT0T69t62wrduEWLSwY0UZpm0CwK4tC3uTPiWJ-powg@mail.gmail.com> (raw)
In-Reply-To: <[email protected]>
On Fri, Dec 1, 2023 at 7:30 PM David Laight <[email protected]> wrote:
>
> From: Jann Horn
> > Sent: 01 December 2023 16:41
> >
> > mutex_unlock() has a different API contract compared to spin_unlock().
> > spin_unlock() can be used to release ownership of an object, so that
> > as soon as the spinlock is unlocked, another task is allowed to free
> > the object containing the spinlock.
> > mutex_unlock() does not support this kind of usage: The caller of
> > mutex_unlock() must ensure that the mutex stays alive until
> > mutex_unlock() has returned.
>
> The problem sequence might be:
> Thread A Thread B
> mutex_lock()
> code to stop mutex being requested
> ...
> mutex_lock() - sleeps
> mutex_unlock()...
> Waiters woken...
> isr and/or pre-empted
> - wakes up
> mutex_unlock()
> free()
> ... more kernel code access the mutex
> BOOOM
>
> What happens in a PREEMPT_RT kernel where most of the spin_unlock()
> get replaced by mutex_unlock().
> Seems like they can potentially access a freed mutex?
RT spinlocks don't use mutexes, they use rtmutexes, and I think those
explicitly support this usecase. See the call path:
spin_unlock -> rt_spin_unlock -> rt_mutex_slowunlock
rt_mutex_slowunlock() has a comment, added in commit 27e35715df54
("rtmutex: Plug slow unlock race"):
* We must be careful here if the fast path is enabled. If we
* have no waiters queued we cannot set owner to NULL here
* because of:
*
* foo->lock->owner = NULL;
* rtmutex_lock(foo->lock); <- fast path
* free = atomic_dec_and_test(foo->refcnt);
* rtmutex_unlock(foo->lock); <- fast path
* if (free)
* kfree(foo);
* raw_spin_unlock(foo->lock->wait_lock);
That commit also explicitly refers to wanting to support this pattern
with spin_unlock() in the commit message.
next prev parent reply other threads:[~2023-12-01 18:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-01 16:41 io_uring: incorrect assumption about mutex behavior on unlock? Jann Horn
2023-12-01 18:30 ` David Laight
2023-12-01 18:40 ` Jann Horn [this message]
2023-12-01 18:52 ` Pavel Begunkov
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=CAG48ez1jT0T69t62wrduEWLSwY0UZpm0CwK4tC3uTPiWJ-powg@mail.gmail.com \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/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