Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965483AbeAKSgI (ORCPT + 1 other); Thu, 11 Jan 2018 13:36:08 -0500 Received: from mga14.intel.com ([192.55.52.115]:58854 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932215AbeAKSgH (ORCPT ); Thu, 11 Jan 2018 13:36:07 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,345,1511856000"; d="scan'208";a="10040112" Subject: Re: [RFC PATCH v2 6/6] x86/entry/pti: don't switch PGD on when pti_disable is set To: Willy Tarreau References: <1515502580-12261-1-git-send-email-w@1wt.eu> <1515502580-12261-7-git-send-email-w@1wt.eu> <20180110082207.GX29822@worktop.programming.kicks-ass.net> <20180110091102.GH14066@1wt.eu> <20180111064259.GC14920@1wt.eu> <0f08d89e-61e1-20e3-5c59-0b2f7b32bf0c@linux.intel.com> <20180111154412.GA15296@1wt.eu> Cc: Linus Torvalds , Andy Lutomirski , Peter Zijlstra , LKML , X86 ML , Borislav Petkov , Brian Gerst , Ingo Molnar , Thomas Gleixner , Josh Poimboeuf , "H. Peter Anvin" , Greg Kroah-Hartman , Kees Cook From: Dave Hansen Message-ID: <06a7c031-3ef9-7f8d-6292-18e2cca0698a@linux.intel.com> Date: Thu, 11 Jan 2018 10:35:57 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20180111154412.GA15296@1wt.eu> Content-Type: text/plain; charset=utf-8 Content-Language: en-US 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/11/2018 07:44 AM, Willy Tarreau wrote: >> 4. Cleared on setuid() and friends > This one causes me a problem : some daemons already take care of dropping > privileges after the initial fork() for the sake of security. Haproxy > typically does this at boot : > > - parse config > - chroot to /var/empty > - setuid(dedicated_uid) > - fork() This makes me a _bit_ nervous. I think Andy touched on this, but I'll say it another way: you want PTI turned off because you trust an app to be good, but you also drop permissions because it is exposed to an environment where you do *not* fully trust it. I'm not sure how you reconcile that. If your proxy gets compromised, and pti is turned off, you are entirely exposed to meltdown from that process. I don't know exactly what you are doing, but isn't this proxy sitting there shuffling untrusted user data around all day?