[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CALCETrUuDrx+50x1teE_cDZ4N+bMLDORZ5QpCCJD0M8NwPPC3Q@mail.gmail.com>
Date: Mon, 11 Dec 2017 11:39:46 -0800
From: Andy Lutomirski <luto@...nel.org>
To: Dave Hansen <dave.hansen@...el.com>
Cc: Andy Lutomirski <luto@...nel.org>, X86 ML <x86@...nel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Borislav Petkov <bp@...en8.de>,
Brian Gerst <brgerst@...il.com>,
David Laight <David.Laight@...lab.com>,
Kees Cook <keescook@...omium.org>,
Peter Zijlstra <peterz@...radead.org>,
"Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>
Subject: Re: [PATCH PTI v2 6/6] x86/pti: Put the LDT in its own PGD if PTI is on
On Mon, Dec 11, 2017 at 11:32 AM, Dave Hansen <dave.hansen@...el.com> wrote:
> On 12/11/2017 10:40 AM, Andy Lutomirski wrote:
>>> Also, from a high level, this does increase the overhead of KPTI in a
>>> non-trivial way, right? It costs us three more page table pages per
>>> process allocated at fork() and freed at exit() and a new TLB flush.
>> Yeah, but no one will care. modify_ldt() is used for DOSEMU, Wine,
>> and really old 32-bit programs.
>
> The heavyweight part of map_ldt_struct() (and unmap) looks to run
> whenever we have KPTI enabled. I'm missing how it gets avoided for the
> non-DOSEMU cases.
It doesn't get called unless modify_ldt() is used.
>
> I thought there would be a "fast path" where we just use the normal
> clear_LDT() LDT from the cpu_entry_area and don't have to do any of
> this, but I'm missing where that happens. Do we need a check in
> (un)map_ldt_struct() for !mm->context.ldt?
I'm confused.
if (unlikely(ldt)) {
do something slowish;
} else {
clear_LD();
}
>
> Just to make sure I understand this: We now have two places that LDTs
> live in virtual space:
>
> 1. The "plain" one that we get from clear_LDT() which lives in the
> cpu_entry_area. (No additional overhead when doing this)
> 2. The new one under the special PGD that's only used for modify_ldt()
> and is fairly slow. (plenty of overhead, but nobody cares).
Yes.
Powered by blists - more mailing lists