[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <54330D79.80102@caviumnetworks.com>
Date: Mon, 6 Oct 2014 14:45:29 -0700
From: David Daney <ddaney@...iumnetworks.com>
To: Rich Felker <dalias@...c.org>
CC: David Daney <ddaney.cavm@...il.com>, <libc-alpha@...rceware.org>,
<linux-kernel@...r.kernel.org>, <linux-mips@...ux-mips.org>,
David Daney <david.daney@...ium.com>
Subject: Re: [PATCH resend] MIPS: Allow FPU emulator to use non-stack area.
On 10/06/2014 02:31 PM, Rich Felker wrote:
> On Mon, Oct 06, 2014 at 02:18:19PM -0700, David Daney wrote:
>>> Userspace should play no part in this; requiring userspace to help
>>> make special accomodations for fpu emulation largely defeats the
>>> purpose of fpu emulation.
>>
>> That is certainly one way of looking at it. Really it is opinion,
>> rather than fact though.
>
> It's an opinion, yes, but it has substantial reason behind it.
>
>> GLibc is full of code (see ld.so) that in earlier incantations of
>> Unix/Linux was in kernel space, and was moved to userspace. Given
>> that there is a partitioning of code between kernel space and
>> userspace, I think it not totally unreasonable to consider doing
>> some of this in userspace.
>>
>> Even on systems with hardware FPU, the architecture specification
>> allows for/requires emulation of certain cases (denormals, etc.) So
>> it is already a requirement that userspace cooperate by always
>> having free space below $SP for use by the kernel. So the current
>> situation is that userspace is providing services for the kernel FPU
>> emulator.
>>
>> My suggestion is to change the nature of the way these services are
>> provided by the userspace program.
>
> But this isn't setup by the userspace program. It's setup by the
> kernel on program entry. Despite that, though, I think it's an
> unnecessary (and undocumented!) constraint; the fact that it requires
> the stack to be executable makes it even more harmful and
> inappropriate.
>
The management of the stack is absolutely done by userspace code. Any
time you do pthread_create(), userspace code does mmap() to allocate the
stack area, it then sets permissions on the area, and then it passes the
address of the area to clone(). Furthermore the userspace code has to
be very careful in its use of the $sp register, so that it doesn't store
data in places that will be used/clobbered by the kernel.
All of this is under the control of the userspace program and done with
userspace code.
I appreciate the fact that libc authors might prefer *not* to write more
code, but they could, especially if they wanted to add the feature of
non-executable stacks to their library implementation.
David Daney
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists