From: Nicholas Piggin <npiggin@gmail.com>
To: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
linux-arch@vger.kernel.org, peterz@infradead.org
Cc: Andrew Morton <akpm@linux-foundation.org>,
axboe@kernel.dk, hch@lst.de, jannh@google.com,
keescook@chromium.org, linux-kernel@vger.kernel.org,
luto@amacapital.net, mathieu.desnoyers@efficios.com,
torvalds@linux-foundation.org, will@kernel.org
Subject: Re: [PATCH v3] mm: Fix kthread_use_mm() vs TLB invalidate
Date: Fri, 28 Aug 2020 16:55:21 +1000 [thread overview]
Message-ID: <1598597607.h04xhbtpuo.astroid@bobo.none> (raw)
In-Reply-To: <1598583976.kyraed50wg.astroid@bobo.none>
Excerpts from Nicholas Piggin's message of August 28, 2020 1:26 pm:
> Excerpts from peterz@infradead.org's message of August 21, 2020 11:04 pm:
>> On Fri, Aug 21, 2020 at 11:09:51AM +0530, Aneesh Kumar K.V wrote:
>>> Peter Zijlstra <peterz@infradead.org> writes:
>>>
>>> > For SMP systems using IPI based TLB invalidation, looking at
>>> > current->active_mm is entirely reasonable. This then presents the
>>> > following race condition:
>>> >
>>> >
>>> > CPU0 CPU1
>>> >
>>> > flush_tlb_mm(mm) use_mm(mm)
>>> > <send-IPI>
>>> > tsk->active_mm = mm;
>>> > <IPI>
>>> > if (tsk->active_mm == mm)
>>> > // flush TLBs
>>> > </IPI>
>>> > switch_mm(old_mm,mm,tsk);
>>> >
>>> >
>>> > Where it is possible the IPI flushed the TLBs for @old_mm, not @mm,
>>> > because the IPI lands before we actually switched.
>>> >
>>> > Avoid this by disabling IRQs across changing ->active_mm and
>>> > switch_mm().
>>> >
>>> > [ There are all sorts of reasons this might be harmless for various
>>> > architecture specific reasons, but best not leave the door open at
>>> > all. ]
>>>
>>>
>>> Do we have similar race with exec_mmap()? I am looking at exec_mmap()
>>> runnning parallel to do_exit_flush_lazy_tlb(). We can get
>>>
>>> if (current->active_mm == mm) {
>>>
>>> true and if we don't disable irq around updating tsk->mm/active_mm we
>>> can end up doing mmdrop on wrong mm?
>>
>> exec_mmap() is called after de_thread(), there should not be any mm
>> specific invalidations around I think.
>>
>> Then again, CLONE_VM without CLONE_THREAD might still be possible, so
>> yeah, we probably want IRQs disabled there too, just for consistency and
>> general paranoia if nothing else.
>
> The problem is probably not this TLB flushing race, but I think there
> is a lazy tlb race.
Hmm, is it possible for something to be holding the mm_users when we
exec? That could actually make it a problem for TLB flushing too.
Thanks,
Nick
prev parent reply other threads:[~2020-08-28 6:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20200721154106.GE10769@hirez.programming.kicks-ass.net>
[not found] ` <87y2m8muag.fsf@linux.ibm.com>
[not found] ` <20200821130445.GP1362448@hirez.programming.kicks-ass.net>
2020-08-28 3:26 ` [PATCH v3] mm: Fix kthread_use_mm() vs TLB invalidate Nicholas Piggin
2020-08-28 6:55 ` Nicholas Piggin [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=1598597607.h04xhbtpuo.astroid@bobo.none \
--to=npiggin@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@linux.ibm.com \
--cc=axboe@kernel.dk \
--cc=hch@lst.de \
--cc=jannh@google.com \
--cc=keescook@chromium.org \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=mathieu.desnoyers@efficios.com \
--cc=peterz@infradead.org \
--cc=torvalds@linux-foundation.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