From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f197.google.com (mail-pf0-f197.google.com [209.85.192.197]) by kanga.kvack.org (Postfix) with ESMTP id 31F536B0271 for ; Wed, 11 Jul 2018 13:10:42 -0400 (EDT) Received: by mail-pf0-f197.google.com with SMTP id d4-v6so16712720pfn.9 for ; Wed, 11 Jul 2018 10:10:42 -0700 (PDT) Received: from mga05.intel.com (mga05.intel.com. [192.55.52.43]) by mx.google.com with ESMTPS id p61-v6si19804524plb.472.2018.07.11.10.10.41 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 11 Jul 2018 10:10:41 -0700 (PDT) Message-ID: <1531328731.15351.3.camel@intel.com> Subject: Re: [RFC PATCH v2 16/27] mm: Modify can_follow_write_pte/pmd for shadow stack From: Yu-cheng Yu Date: Wed, 11 Jul 2018 10:05:31 -0700 In-Reply-To: References: <20180710222639.8241-1-yu-cheng.yu@intel.com> <20180710222639.8241-17-yu-cheng.yu@intel.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-linux-mm@kvack.org List-ID: To: Dave Hansen , x86@kernel.org, "H. Peter Anvin" , Thomas Gleixner , Ingo Molnar , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-mm@kvack.org, linux-arch@vger.kernel.org, linux-api@vger.kernel.org, Arnd Bergmann , Andy Lutomirski , Balbir Singh , Cyrill Gorcunov , Florian Weimer , "H.J. Lu" , Jann Horn , Jonathan Corbet , Kees Cook , Mike Kravetz , Nadav Amit , Oleg Nesterov , Pavel Machek , Peter Zijlstra , "Ravi V. Shankar" , Vedvyas Shanbhogue On Tue, 2018-07-10 at 16:37 -0700, Dave Hansen wrote: > On 07/10/2018 03:26 PM, Yu-cheng Yu wrote: > > > > There are three possible shadow stack PTE settings: > > > > A Normal SHSTK PTE: (R/O + DIRTY_HW) > > A SHSTK PTE COW'ed: (R/O + DIRTY_HW) > > A SHSTK PTE shared as R/O data: (R/O + DIRTY_SW) > > > > Update can_follow_write_pte/pmd for the shadow stack. > First of all, thanks for the excellent patch headers.A A It's nice to > have > that reference every time even though it's repeated. > > > > > -static inline bool can_follow_write_pte(pte_t pte, unsigned int > > flags) > > +static inline bool can_follow_write_pte(pte_t pte, unsigned int > > flags, > > + bool shstk) > > A { > > + bool pte_cowed = shstk ? is_shstk_pte(pte):pte_dirty(pte); > > + > > A return pte_write(pte) || > > - ((flags & FOLL_FORCE) && (flags & FOLL_COW) && > > pte_dirty(pte)); > > + ((flags & FOLL_FORCE) && (flags & FOLL_COW) && > > pte_cowed); > > A } > Can we just pass the VMA in here?A A This use is OK-ish, but I > generally > detest true/false function arguments because you can't tell what they > are when they show up without a named variable. > > But...A A Why does this even matter?A A Your own example showed that all > shadowstack PTEs have either DIRTY_HW or DIRTY_SW set, and > pte_dirty() > checks both. > > That makes this check seem a bit superfluous. My understanding is that we don't want to follow write pte if the page is shared as read-only. A For a SHSTK page, that is (R/O + DIRTY_SW), which means the SHSTK page has not been COW'ed. A Is that right? Thanks, Yu-cheng