lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 11 Feb 2009 10:10:20 -0500
From:	Brian Gerst <brgerst@...il.com>
To:	Tejun Heo <htejun@...il.com>
Cc:	Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/3] x86: Pass in pt_regs pointer for syscalls that need 
	it

On Wed, Feb 11, 2009 at 10:05 AM, Tejun Heo <htejun@...il.com> wrote:
> Brian Gerst wrote:
>> On Wed, Feb 11, 2009 at 9:48 AM, Tejun Heo <htejun@...il.com> wrote:
>>> Tejun Heo wrote:
>>>>> I checked the disassembly of these functions and didn't see this
>>>>> happen on gcc 4.3.0.
>>>> Well, tracking down why run_init_process() is returning 0 with
>>>> -fstack-protector wasn't much of fun.  These breakages are very subtle
>>>> and if we're gonna pass in pointer to pt_regs anyway and thus can
>>>> guarantee such breakage can't happen at no additional cost, I think we
>>>> should do that even if it means slightly more argument fetching in a
>>>> few places.
>>> In addition, if we do that, we can remove the horrible
>>> asmlinkage_protect() thing altogether.
>>
>> Like I said before, the tail-call optimization problem isn't limited
>> to just this set of syscalls.  There are only two real ways to fix it.
>> 1) Set up a real stack frame for the syscalls instead of overalying
>> pt_regs, or 2) patch gcc to tell it not to touch the args area of the
>> stack.
>
> Right, I forgot about the generic ones.  We can pass pointer to
> pt_regs to all of them like x86_64 does but yeah we're likely to lose
> more than we gain by doing that.  :-(

x86-64 doesn't have the tail-call problem because it doesn't use the
pt_regs on stack trick for syscall args.  All the args are passed in
registers.

--
Brian Gerst
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ