From: Davidlohr Bueso <dbueso@suse.de>
To: Manfred Spraul <manfred@colorfullife.com>
Cc: Varad Gautam <varad.gautam@suse.com>,
linux-kernel@vger.kernel.org,
Matthias von Faber <matthias.vonfaber@aox-tech.de>,
stable@vger.kernel.org,
Christian Brauner <christian.brauner@ubuntu.com>,
Oleg Nesterov <oleg@redhat.com>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Andrew Morton <akpm@linux-foundation.org>,
James Morris <jamorris@linux.microsoft.com>,
Serge Hallyn <serge@hallyn.com>
Subject: Re: [PATCH v3] ipc/mqueue: Avoid relying on a stack reference past its expiry
Date: Sun, 09 May 2021 18:10:57 -0700 [thread overview]
Message-ID: <6d36d89bc8f299a76efe8fce9c07e7b5@suse.de> (raw)
In-Reply-To: <71c74711-75d6-494e-6ff7-2be49b274477@colorfullife.com>
On 2021-05-08 12:23, Manfred Spraul wrote:
> Hi Varad,
>
> On 5/7/21 3:38 PM, Varad Gautam wrote:
>> @@ -1005,11 +1022,9 @@ static inline void __pipelined_op(struct
>> wake_q_head *wake_q,
>> struct ext_wait_queue *this)
>> {
>> list_del(&this->list);
>> - get_task_struct(this->task);
>> -
>> + wake_q_add(wake_q, this->task);
>> /* see MQ_BARRIER for purpose/pairing */
>> smp_store_release(&this->state, STATE_READY);
>> - wake_q_add_safe(wake_q, this->task);
>> }
>> /* pipelined_send() - send a message directly to the task waiting
>> in
>
> First, I was too fast: I had assumed that wake_q_add() before
> smp_store_release() would be a potential lost wakeup.
Yeah you need wake_up_q() to actually wake anything up.
>
> As __pipelined_op() is called within spin_lock(&info->lock), and as
> wq_sleep() will reread this->state after acquiring
> spin_lock(&info->lock), I do not see a bug anymore.
Right, and when I proposed this version of the fix I was mostly focusing
on STATE_READY
being set as the last operation, but the fact of the matter is we had
moved to the
wake_q_add_safe() version for two reasons:
(1) Ensuring the ->state = STATE_READY is done after the reference count
and avoid
racing with exit. In mqueue's original use of wake_q we were relying on
the call's
implied barrier from wake_q_add() in order to avoid reordering of
setting the state.
But this turned out to be insufficient hence the explicit
smp_store_release().
(2) In order to prevent a potential lost wakeup when the blocked task is
already queued
for wakeup by another task (the failed cmpxchg case in wake_q_add), and
therefore we need
to set the return condition (->state = STATE_READY) before adding the
task to the wake_q.
But I'm not seeing how race (2) can happen in mqueue. The race was
always theoretical to
begin with, with the exception of rwsems[1] in which actually the wakee
task could end up in
the waker's wake_q without actually blocking.
So all in all I now agree that we should keep the order of how we
currently have things,
just to be on the safer side, if nothing else.
[1]
https://lore.kernel.org/lkml/1543495830-2644-1-git-send-email-xieyongji@baidu.com
Thanks,
Davidlohr
next prev parent reply other threads:[~2021-05-10 1:11 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-07 13:38 [PATCH v3] ipc/mqueue: Avoid relying on a stack reference past its expiry Varad Gautam
2021-05-08 19:23 ` Manfred Spraul
2021-05-10 1:10 ` Davidlohr Bueso [this message]
2021-05-10 10:26 ` Varad Gautam
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=6d36d89bc8f299a76efe8fce9c07e7b5@suse.de \
--to=dbueso@suse.de \
--cc=akpm@linux-foundation.org \
--cc=christian.brauner@ubuntu.com \
--cc=ebiederm@xmission.com \
--cc=jamorris@linux.microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=manfred@colorfullife.com \
--cc=matthias.vonfaber@aox-tech.de \
--cc=oleg@redhat.com \
--cc=serge@hallyn.com \
--cc=stable@vger.kernel.org \
--cc=varad.gautam@suse.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.