From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752855AbdHXNVO (ORCPT ); Thu, 24 Aug 2017 09:21:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40368 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751140AbdHXNUp (ORCPT ); Thu, 24 Aug 2017 09:20:45 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com A8B558765D Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=oleg@redhat.com Date: Thu, 24 Aug 2017 15:20:41 +0200 From: Oleg Nesterov To: Eric Biggers Cc: linux-mm@kvack.org, Andrew Morton , linux-kernel@vger.kernel.org, Dmitry Vyukov , Ingo Molnar , Konstantin Khlebnikov , Michal Hocko , Peter Zijlstra , Vlastimil Babka , stable@vger.kernel.org, Eric Biggers Subject: Re: [PATCH] fork: fix incorrect fput of ->exe_file causing use-after-free Message-ID: <20170824132041.GA22882@redhat.com> References: <20170823211408.31198-1-ebiggers3@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170823211408.31198-1-ebiggers3@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Thu, 24 Aug 2017 13:20:44 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/23, Eric Biggers wrote: > > From: Eric Biggers > > Commit 7c051267931a ("mm, fork: make dup_mmap wait for mmap_sem for > write killable") made it possible to kill a forking task while it is > waiting to acquire its ->mmap_sem for write, in dup_mmap(). However, it > was overlooked that this introduced an new error path before a reference > is taken on the mm_struct's ->exe_file. Hmm. Unless I am totally confused, the same problem with mm->exol_area? I'll recheck.... > --- a/kernel/fork.c > +++ b/kernel/fork.c > @@ -806,6 +806,7 @@ static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p, > mm_init_cpumask(mm); > mm_init_aio(mm); > mm_init_owner(mm, p); > + RCU_INIT_POINTER(mm->exe_file, NULL); Can't we simply move RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); from dup_mmap() here? Afaics this doesn't need mmap_sem. Good catch! Oleg.