From: Peter Zijlstra <peterz@infradead.org>
To: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Mark Seaborn <mrs@mythic-beasts.com>,
linux-kernel@vger.kernel.org, Ingo Molnar <mingo@elte.hu>,
Thomas Gleixner <tglx@linutronix.de>,
Darren Hart <dvhltc@us.ibm.com>,
"hugh.dickins" <hugh.dickins@tiscali.co.uk>
Subject: Re: futex() on vdso makes process unkillable
Date: Mon, 25 Jan 2010 10:26:14 +0100 [thread overview]
Message-ID: <1264411574.4283.1632.camel@laptop> (raw)
In-Reply-To: <20100125162733.BDB8.A69D9226@jp.fujitsu.com>
On Mon, 2010-01-25 at 16:27 +0900, KOSAKI Motohiro wrote:
> Hi
>
> > CC to futex folks.
> >
> > > I was experimenting with futexes and was a little surprised to
> > > discover that futex() works on read-only pages. This creates quite a
> > > high bandwidth side channel that allows two processes to communicate
> > > if, for example, they share a library. (Mind you, this is not much
> > > different from file locks, which also work on read-only file
> > > descriptors.)
> > >
> > > I also found a couple of differences between 2.6.24 (from Ubuntu
> > > hardy) and 2.6.31 (from Ubuntu karmic). The first is a definite bug
> > > in 2.6.31:
> > >
> > > 1) On 2.6.31 i686, using futex() on the vdso causes the process to get
> > > stuck, consuming CPU in an unkillable state. Both FUTEX_WAIT and
> > > FUTEX_WAKE cause the problem. The problem doesn't occur on 2.6.24.
> > > (BTW, I was testing to see whether futex() on the vdso allows any two
> > > processes to communicate. This appears not to be the case on 2.6.24.)
> > >
> > > A test program is below.
> > >
> > >
> > > 2) Suppose a file is mapped into two processes with MAP_PRIVATE. Can
> > > the resulting mappings be used to communicate via futex()? i.e. Does
> > > futex() consider the mappings to be the same?
> > >
> > > On 2.6.24, the futex wakeup is not transferred; pages must be mapped
> > > with MAP_SHARED for futex to work. On 2.6.31, the futex wakeup *is*
> > > transferred; futex works with either MAP_SHARED or MAP_PRIVATE.
> > >
> > > 2.6.24's behaviour seems more correct, because the mappings are
> > > logically different, even if the underlying memory pages are the same
> > > before copy-on-write is triggered. Is 2.6.31's behaviour a
> > > regression, or is the kernel's behaviour here supposed to be
> > > undefined?
>
> Futex should work both file anon anon. however I personally think
> vdso is not file nor anon. it is special mappings. nobody defined
> futex spec on special mappings. (yes, undefined).
>
> Personally, I think EINVAL or EFAULT are best result of vdso futexing, like as
> futexing againt kernel address. but I guess another person have another thinking.
>
> I'd like to hear futex folks's opinion.
Well, my opinion is we should remove the vdso, its ugly as hell :-)
But I think it would make most sense to extend its definition in the
direction of it being a file (for all intents and purposes its a special
DSO -- which unfortunately isn't present in any filesystem).
[ For all intents and purposes processes can already communicate through
futexes on the libc space, so being able to do so through the vsdo
really doesn't add anything ]
So the problem is that the VDSO pages do not have a page->mapping
because they lack the actual filesystem part of files, so even if (with
the recent zero-page patch from Kosaki-san) you make private COWs of the
VDSO, you'll get stuck in that loop.
So the prettiest solution is to simply place the vdso in an actual
filesystem and slowly migrate towards letting userspace map it as a
regular DSO -- /sys/lib{32,64}/libkernel.so like.
[ that has the bonus of getting rid of install_special_mapping() ]
The ugly solution is special casing the vdso in get_futex_key().
next prev parent reply other threads:[~2010-01-25 9:26 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-24 0:04 futex() on vdso makes process unkillable Mark Seaborn
2010-01-25 3:37 ` KOSAKI Motohiro
2010-01-25 7:27 ` KOSAKI Motohiro
2010-01-25 9:26 ` Peter Zijlstra [this message]
2010-01-25 17:37 ` Darren Hart
2010-01-26 2:41 ` KOSAKI Motohiro
2010-01-26 7:52 ` Peter Zijlstra
2010-01-26 8:33 ` Thomas Gleixner
2010-01-26 14:21 ` Darren Hart
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=1264411574.4283.1632.camel@laptop \
--to=peterz@infradead.org \
--cc=dvhltc@us.ibm.com \
--cc=hugh.dickins@tiscali.co.uk \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mrs@mythic-beasts.com \
--cc=tglx@linutronix.de \
/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