Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933065AbeAHXBc (ORCPT + 1 other); Mon, 8 Jan 2018 18:01:32 -0500 Received: from mail.kernel.org ([198.145.29.99]:50230 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932799AbeAHXBa (ORCPT ); Mon, 8 Jan 2018 18:01:30 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EB39721726 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=luto@kernel.org Subject: Re: [PATCH RFC 4/4] x86/entry/pti: don't switch PGD on tasks holding flag TIF_NOPTI To: Willy Tarreau , linux-kernel@vger.kernel.org, x86@kernel.org Cc: tglx@linutronix.de, gnomes@lxorguk.ukuu.org.uk, torvalds@linux-foundation.org References: <1515427939-10999-1-git-send-email-w@1wt.eu> <1515427939-10999-5-git-send-email-w@1wt.eu> From: Andy Lutomirski Message-ID: <45a747ae-ffbd-7f82-d2a4-3016654a235d@kernel.org> Date: Mon, 8 Jan 2018 15:01:29 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <1515427939-10999-5-git-send-email-w@1wt.eu> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-MW Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 01/08/2018 08:12 AM, Willy Tarreau wrote: > If a task has the TIF_NOPTI flag set, it doesn't want to experience > page table isolation. In this case, returns from kernel to user will > not switch the CR3, leaving it to the kernel one which already maps > both user and kernel pages. Upon entry in the kernel, we can't check > this flag so we simply check if CR3 was pointing to the kernel's PGD, > indicating an earlier absence of switch, and in this case we don't > change it. > > Thanks to these changes, haproxy running under KVM went back from > 12400 conn/s to 21000 once loaded after calling prctl(). > > Signed-off-by: Willy Tarreau > --- > arch/x86/entry/calling.h | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/arch/x86/entry/calling.h b/arch/x86/entry/calling.h > index 45a63e0..054b8b7 100644 > --- a/arch/x86/entry/calling.h > +++ b/arch/x86/entry/calling.h > @@ -1,5 +1,6 @@ > /* SPDX-License-Identifier: GPL-2.0 */ > #include > +#include > #include > #include > #include > @@ -214,6 +215,11 @@ > .macro SWITCH_TO_KERNEL_CR3 scratch_reg:req > ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI > mov %cr3, \scratch_reg > + > + /* if we're already on the kernel PGD, we don't switch */ > + testq $(PTI_SWITCH_PGTABLES_MASK), \scratch_reg > + jz .Lend_\@ > + > ADJUST_KERNEL_CR3 \scratch_reg > mov \scratch_reg, %cr3 > .Lend_\@: > @@ -224,6 +230,12 @@ > > .macro SWITCH_TO_USER_CR3_NOSTACK scratch_reg:req scratch_reg2:req > ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI > + > + /* "NOPTI" taskflag avoids the switch */ > + movq PER_CPU_VAR(current_task), \scratch_reg > + btq $TIF_NOPTI, TASK_TI_flags(\scratch_reg) > + jc .Lend_\@ > + > mov %cr3, \scratch_reg > > ALTERNATIVE "jmp .Lwrcr3_\@", "", X86_FEATURE_PCID > @@ -262,6 +274,13 @@ > ALTERNATIVE "jmp .Ldone_\@", "", X86_FEATURE_PTI > movq %cr3, \scratch_reg > movq \scratch_reg, \save_reg > + > + /* if we're already on the kernel PGD, we don't switch, > + * we just save the current cr3. > + */ > + testq $(PTI_SWITCH_PGTABLES_MASK), \scratch_reg > + jz .Ldone_\@ > + > /* > * Is the "switch mask" all zero? That means that both of > * these are zero: > @@ -284,6 +303,10 @@ > .macro RESTORE_CR3 scratch_reg:req save_reg:req > ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_PTI > > + /* if we saved a kernel context, we didn't switch so we don't switch */ > + testq $(PTI_SWITCH_PGTABLES_MASK), \save_reg > + jz .Lend_\@ > + I haven't looked that carefully, but this seems generally sane.