From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751864AbdHDJQd (ORCPT ); Fri, 4 Aug 2017 05:16:33 -0400 Received: from mx2.suse.de ([195.135.220.15]:41435 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751285AbdHDJQc (ORCPT ); Fri, 4 Aug 2017 05:16:32 -0400 Date: Fri, 4 Aug 2017 11:16:29 +0200 From: Michal Hocko To: Tetsuo Handa Cc: linux-mm@kvack.org, Andrew Morton , Wenwei Tao , Oleg Nesterov , David Rientjes , LKML Subject: Re: Re: [PATCH] mm, oom: fix potential data corruption when oom_reaper races with writer Message-ID: <20170804091629.GI26029@dhcp22.suse.cz> References: <201708040646.v746kkhC024636@www262.sakura.ne.jp> <20170804074212.GA26029@dhcp22.suse.cz> <201708040825.v748Pkul053862@www262.sakura.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201708040825.v748Pkul053862@www262.sakura.ne.jp> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri 04-08-17 17:25:46, Tetsuo Handa wrote: > Well, while lockdep warning is gone, this problem is remaining. > > diff --git a/mm/memory.c b/mm/memory.c > index edabf6f..1e06c29 100644 > --- a/mm/memory.c > +++ b/mm/memory.c > @@ -3931,15 +3931,14 @@ int handle_mm_fault(struct vm_area_struct *vma, unsigned long address, > /* > * This mm has been already reaped by the oom reaper and so the > * refault cannot be trusted in general. Anonymous refaults would > - * lose data and give a zero page instead e.g. This is especially > - * problem for use_mm() because regular tasks will just die and > - * the corrupted data will not be visible anywhere while kthread > - * will outlive the oom victim and potentially propagate the date > - * further. > + * lose data and give a zero page instead e.g. > */ > - if (unlikely((current->flags & PF_KTHREAD) && !(ret & VM_FAULT_ERROR) > - && test_bit(MMF_UNSTABLE, &vma->vm_mm->flags))) > + if (unlikely(!(ret & VM_FAULT_ERROR) > + && test_bit(MMF_UNSTABLE, &vma->vm_mm->flags))) { > + if (ret & VM_FAULT_RETRY) > + down_read(&vma->vm_mm->mmap_sem); > ret = VM_FAULT_SIGBUS; > + } > > return ret; > } I have re-read your email again and I guess I misread previously. Are you saying that the data corruption happens with the both patches applied? > > $ cat /tmp/file.* | od -b | head > 0000000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > 420330000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 > * > 420340000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > 457330000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 > * > 457340000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org -- Michal Hocko SUSE Labs From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f69.google.com (mail-wm0-f69.google.com [74.125.82.69]) by kanga.kvack.org (Postfix) with ESMTP id 304CF2802FE for ; Fri, 4 Aug 2017 05:16:33 -0400 (EDT) Received: by mail-wm0-f69.google.com with SMTP id g71so4975177wmg.13 for ; Fri, 04 Aug 2017 02:16:33 -0700 (PDT) Received: from mx1.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id o9si3201663wrc.547.2017.08.04.02.16.31 for (version=TLS1 cipher=AES128-SHA bits=128/128); Fri, 04 Aug 2017 02:16:31 -0700 (PDT) Date: Fri, 4 Aug 2017 11:16:29 +0200 From: Michal Hocko Subject: Re: Re: [PATCH] mm, oom: fix potential data corruption when oom_reaper races with writer Message-ID: <20170804091629.GI26029@dhcp22.suse.cz> References: <201708040646.v746kkhC024636@www262.sakura.ne.jp> <20170804074212.GA26029@dhcp22.suse.cz> <201708040825.v748Pkul053862@www262.sakura.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201708040825.v748Pkul053862@www262.sakura.ne.jp> Sender: owner-linux-mm@kvack.org List-ID: To: Tetsuo Handa Cc: linux-mm@kvack.org, Andrew Morton , Wenwei Tao , Oleg Nesterov , David Rientjes , LKML On Fri 04-08-17 17:25:46, Tetsuo Handa wrote: > Well, while lockdep warning is gone, this problem is remaining. > > diff --git a/mm/memory.c b/mm/memory.c > index edabf6f..1e06c29 100644 > --- a/mm/memory.c > +++ b/mm/memory.c > @@ -3931,15 +3931,14 @@ int handle_mm_fault(struct vm_area_struct *vma, unsigned long address, > /* > * This mm has been already reaped by the oom reaper and so the > * refault cannot be trusted in general. Anonymous refaults would > - * lose data and give a zero page instead e.g. This is especially > - * problem for use_mm() because regular tasks will just die and > - * the corrupted data will not be visible anywhere while kthread > - * will outlive the oom victim and potentially propagate the date > - * further. > + * lose data and give a zero page instead e.g. > */ > - if (unlikely((current->flags & PF_KTHREAD) && !(ret & VM_FAULT_ERROR) > - && test_bit(MMF_UNSTABLE, &vma->vm_mm->flags))) > + if (unlikely(!(ret & VM_FAULT_ERROR) > + && test_bit(MMF_UNSTABLE, &vma->vm_mm->flags))) { > + if (ret & VM_FAULT_RETRY) > + down_read(&vma->vm_mm->mmap_sem); > ret = VM_FAULT_SIGBUS; > + } > > return ret; > } I have re-read your email again and I guess I misread previously. Are you saying that the data corruption happens with the both patches applied? > > $ cat /tmp/file.* | od -b | head > 0000000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > 420330000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 > * > 420340000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > 457330000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 > * > 457340000 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 > * > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org