Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1719236

Re: [PATCH] fork: fix incorrect fput of ->exe_file causing use-after-free

From Oleg Nesterov <oleg@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH] fork: fix incorrect fput of ->exe_file causing use-after-free
Date 2017-08-24 15:30 +0200
Message-ID <ui0mS-78Q-19@gated-at.bofh.it> (permalink)
References <uhLea-5Jw-19@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 08/23, Eric Biggers wrote:
>
> From: Eric Biggers <ebiggers@google.com>
>
> 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.

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] fork: fix incorrect fput of ->exe_file causing use-after-free Eric Biggers <ebiggers3@gmail.com> - 2017-08-23 23:20 +0200
  Re: [PATCH] fork: fix incorrect fput of ->exe_file causing  use-after-free Oleg Nesterov <oleg@redhat.com> - 2017-08-24 15:30 +0200
    Re: [PATCH] fork: fix incorrect fput of ->exe_file causing  use-after-free Eric Biggers <ebiggers3@gmail.com> - 2017-08-24 19:00 +0200
  Re: [PATCH] fork: fix incorrect fput of ->exe_file causing  use-after-free Mark Rutland <mark.rutland@arm.com> - 2017-08-24 17:10 +0200
    Re: [PATCH] fork: fix incorrect fput of ->exe_file causing  use-after-free Mark Rutland <mark.rutland@arm.com> - 2017-08-25 13:00 +0200

csiph-web