From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754558AbbIJA6v (ORCPT ); Wed, 9 Sep 2015 20:58:51 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:34109 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752520AbbIJA6r (ORCPT ); Wed, 9 Sep 2015 20:58:47 -0400 Message-ID: <55F0D5B2.2090205@oracle.com> Date: Wed, 09 Sep 2015 20:58:26 -0400 From: Sasha Levin User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: "Kirill A. Shutemov" , Rik van Riel , Andrew Morton CC: Andrey Konovalov , Dmitry Vyukov , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: Multiple potential races on vma->vm_flags References: <55EC9221.4040603@oracle.com> <20150907114048.GA5016@node.dhcp.inet.fi> In-Reply-To: <20150907114048.GA5016@node.dhcp.inet.fi> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: aserv0021.oracle.com [141.146.126.233] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/07/2015 07:40 AM, Kirill A. Shutemov wrote: > On Sun, Sep 06, 2015 at 03:21:05PM -0400, Sasha Levin wrote: >> > ================================================================== >> > ThreadSanitizer: data-race in munlock_vma_pages_range >> > >> > Write of size 8 by thread T378 (K2633, CPU3): >> > [] munlock_vma_pages_range+0x59/0x3e0 mm/mlock.c:425 >> > [] mlock_fixup+0x1c9/0x280 mm/mlock.c:549 >> > [] do_mlock+0x14c/0x180 mm/mlock.c:589 >> > [< inlined >] SyS_munlock+0x74/0xb0 SYSC_munlock mm/mlock.c:651 >> > [] SyS_munlock+0x74/0xb0 mm/mlock.c:643 >> > [] entry_SYSCALL_64_fastpath+0x12/0x71 >> > arch/x86/entry/entry_64.S:186 > ... > >> > Previous read of size 8 by thread T398 (K2623, CPU2): >> > [] try_to_unmap_one+0x78/0x4f0 mm/rmap.c:1208 >> > [< inlined >] rmap_walk+0x147/0x450 rmap_walk_file mm/rmap.c:1540 >> > [] rmap_walk+0x147/0x450 mm/rmap.c:1559 >> > [] try_to_munlock+0xa2/0xc0 mm/rmap.c:1423 >> > [] __munlock_isolated_page+0x30/0x60 mm/mlock.c:129 >> > [] __munlock_pagevec+0x236/0x3f0 mm/mlock.c:331 >> > [] munlock_vma_pages_range+0x380/0x3e0 mm/mlock.c:476 >> > [] mlock_fixup+0x1c9/0x280 mm/mlock.c:549 >> > [] do_mlock+0x14c/0x180 mm/mlock.c:589 >> > [< inlined >] SyS_munlock+0x74/0xb0 SYSC_munlock mm/mlock.c:651 >> > [] SyS_munlock+0x74/0xb0 mm/mlock.c:643 >> > [] entry_SYSCALL_64_fastpath+0x12/0x71 >> > arch/x86/entry/entry_64.S:186 > Okay, the detected race is mlock/munlock vs. rmap. > > On rmap side we check vma->vm_flags in few places without taking > vma->vm_mm->mmap_sem. The vma cannot be freed since we hold i_mmap_rwsem > or anon_vma_lock, but nothing prevent vma->vm_flags from changing under > us. > > In this particular case, speculative check in beginning of > try_to_unmap_one() is fine, since we re-check it under mmap_sem later in > the function. So you're suggesting that this isn't the cause of the bad page flags error observed by Andrey and myself? Thanks, Sasha