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]
Message-ID: <CALCETrUjkfXVW7tnLRktKdF5BzpaZ6+dsGfanALKt7SQw8oqkg@mail.gmail.com>
Date:   Tue, 21 Nov 2017 07:36:03 -0800
From:   Andy Lutomirski <luto@...nel.org>
To:     Ingo Molnar <mingo@...nel.org>
Cc:     Andy Lutomirski <luto@...nel.org>, X86 ML <x86@...nel.org>,
        Borislav Petkov <bpetkov@...e.de>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        Brian Gerst <brgerst@...il.com>,
        Dave Hansen <dave.hansen@...el.com>,
        Linus Torvalds <torvalds@...ux-foundation.org>,
        Josh Poimboeuf <jpoimboe@...hat.com>
Subject: Re: [PATCH 11/16] x86/asm/64: Use a percpu trampoline stack for IDT entries

On Mon, Nov 20, 2017 at 11:20 PM, Ingo Molnar <mingo@...nel.org> wrote:
>
> * Andy Lutomirski <luto@...nel.org> wrote:
>
>> diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
>> index 1ea03027a4a9..e4a941be96cf 100644
>> --- a/arch/x86/kernel/traps.c
>> +++ b/arch/x86/kernel/traps.c
>
>> -asmlinkage __visible notrace
>> +asmlinkage __visible notrace __no_sanitize_address
>>  struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s)
>>  {
>>       /*
>>        * This is called from entry_64.S early in handling a fault
>>        * caused by a bad iret to user mode.  To handle the fault
>> -      * correctly, we want move our stack frame to task_pt_regs
>> -      * and we want to pretend that the exception came from the
>> -      * iret target.
>> +      * correctly, we want move our stack frame to where it would
>> +      * be had we entered directly on the entry stack (rather than
>> +      * just below the IRET frame) and we want to pretend that the
>> +      * exception came from the iret target.
>>        */
>>       struct bad_iret_stack *new_stack =
>> -             container_of(task_pt_regs(current),
>> -                          struct bad_iret_stack, regs);
>> +             (struct bad_iret_stack *)this_cpu_read(cpu_tss.x86_tss.sp0) - 1;
>>
>>       /* Copy the IRET target to the new stack. */
>>       memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8);
>
> So the addition of the __no_sanitize_address attribute to fixup_bad_iret() made
> the 64-bit allyesconfig/allmodconfig kernels fail the build:

Yeah, I *hate* the way this works.  Apparently getting
__no_sanitize_address to be fully reliable involves just building the
whole file without KASAN.

That being said, I have this fixed much better in my latest tree: I
fixed up KASAN so that I don't need to turn it off for these helpers.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ