Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752444AbdHJI2F (ORCPT ); Thu, 10 Aug 2017 04:28:05 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:57098 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752337AbdHJI2B (ORCPT ); Thu, 10 Aug 2017 04:28:01 -0400 Subject: Re: [PATCH 05/16] mm: Protect VMA modifications using VMA sequence count To: "Kirill A. Shutemov" Cc: paulmck@linux.vnet.ibm.com, peterz@infradead.org, akpm@linux-foundation.org, ak@linux.intel.com, mhocko@kernel.org, dave@stgolabs.net, jack@suse.cz, Matthew Wilcox , benh@kernel.crashing.org, mpe@ellerman.id.au, paulus@samba.org, Thomas Gleixner , Ingo Molnar , hpa@zytor.com, Will Deacon , linux-kernel@vger.kernel.org, linux-mm@kvack.org, haren@linux.vnet.ibm.com, khandual@linux.vnet.ibm.com, npiggin@gmail.com, bsingharora@gmail.com, Tim Chen , linuxppc-dev@lists.ozlabs.org, x86@kernel.org References: <1502202949-8138-1-git-send-email-ldufour@linux.vnet.ibm.com> <1502202949-8138-6-git-send-email-ldufour@linux.vnet.ibm.com> <20170809101241.ek4fqinqaq5qfkq4@node.shutemov.name> <20170810005828.qmw3p7d676hjwkss@node.shutemov.name> From: Laurent Dufour Date: Thu, 10 Aug 2017 10:27:50 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170810005828.qmw3p7d676hjwkss@node.shutemov.name> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-TM-AS-GCONF: 00 x-cbid: 17081008-0016-0000-0000-000004E26E7C X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17081008-0017-0000-0000-0000281AE784 Message-Id: <4e552377-af38-3580-73b6-1edf685cb90d@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-08-10_02:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1706020000 definitions=main-1708100138 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1814 Lines: 44 On 10/08/2017 02:58, Kirill A. Shutemov wrote: > On Wed, Aug 09, 2017 at 12:43:33PM +0200, Laurent Dufour wrote: >> On 09/08/2017 12:12, Kirill A. Shutemov wrote: >>> On Tue, Aug 08, 2017 at 04:35:38PM +0200, Laurent Dufour wrote: >>>> The VMA sequence count has been introduced to allow fast detection of >>>> VMA modification when running a page fault handler without holding >>>> the mmap_sem. >>>> >>>> This patch provides protection agains the VMA modification done in : >>>> - madvise() >>>> - mremap() >>>> - mpol_rebind_policy() >>>> - vma_replace_policy() >>>> - change_prot_numa() >>>> - mlock(), munlock() >>>> - mprotect() >>>> - mmap_region() >>>> - collapse_huge_page() >>> >>> I don't thinks it's anywhere near complete list of places where we touch >>> vm_flags. What is your plan for the rest? >> >> The goal is only to protect places where change to the VMA is impacting the >> page fault handling. If you think I missed one, please advise. > > That's very fragile approach. We rely here too much on specific compiler behaviour. > > Any write access to vm_flags can, in theory, be translated to several > write accesses. For instance with setting vm_flags to 0 in the middle, > which would result in sigfault on page fault to the vma. Indeed, just setting vm_flags to 0 will not result in sigfault, the real job is done when the pte are updated and the bits allowing access are cleared. Access to the pte is controlled by the pte lock. Page fault handler is triggered based on the pte bits, not the content of vm_flags and the speculative page fault is checking for the vma again once the pte lock is held. So there is no concurrency when dealing with the pte bits. Regarding the compiler behaviour, there are memory barriers and locking which should prevent that. Thanks, Laurent.