All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping
@ 2019-03-25 22:49 Andrea Arcangeli
  2019-03-25 23:53 ` Jason Gunthorpe
  2019-03-26  8:30 ` Michal Hocko
  0 siblings, 2 replies; 3+ messages in thread
From: Andrea Arcangeli @ 2019-03-25 22:49 UTC (permalink / raw)
  To: Andrew Morton
  Cc: linux-mm, Oleg Nesterov, Jann Horn, Hugh Dickins, Mike Rapoport,
	Mike Kravetz, Peter Xu, Jason Gunthorpe, Kirill A . Shutemov,
	Michal Hocko

The core dumping code has always run without holding the mmap_sem for
writing, despite that is the only way to ensure that the entire vma
layout will not change from under it. Only using some signal
serialization on the processes belonging to the mm is not nearly
enough. This was pointed out earlier. For example in Hugh's post from
Jul 2017:

https://lkml.kernel.org/r/alpine.LSU.2.11.1707191716030.2055@eggly.anvils

"Not strictly relevant here, but a related note: I was very surprised
to discover, only quite recently, how handle_mm_fault() may be called
without down_read(mmap_sem) - when core dumping.  That seems a
misguided optimization to me, which would also be nice to correct"

In particular because the growsdown and growsup can move the
vm_start/vm_end the various loops the core dump does around the vma
will not be consistent if page faults can happen concurrently.

Pretty much all users calling mmget_not_zero()/get_task_mm() and then
taking the mmap_sem had the potential to introduce unexpected side
effects in the core dumping code.

Adding mmap_sem for writing around the ->core_dump invocation is a
viable long term fix, but it requires removing all copy user and page
faults and to replace them with get_dump_page() for all binary formats
which is not suitable as a short term fix.

For the time being this solution manually covers the places that can
confuse the core dump either by altering the vma layout or the vma
flags while it runs. Once ->core_dump runs under mmap_sem for writing
the function mmget_still_valid() can be dropped.

Allowing mmap_sem protected sections to run in parallel with the
coredump provides some minor parallelism advantage to the swapoff
code (which seems to be safe enough by never mangling any vma field
and can keep doing swapins in parallel to the core dumping) and to
some other corner case.

In order to facilitate the backporting I added "Fixes: 86039bd3b4e6"
however the side effect of this same race condition in /proc/pid/mem
should be reproducible since before commit
1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 so I couldn't add any other
"Fixes:" because there's no hash beyond the git genesis commit.

Because find_extend_vma() is the only location outside of the process
context that could modify the "mm" structures under mmap_sem for
reading, by adding the mmget_still_valid() check to it, all other
cases that take the mmap_sem for reading don't need the new check
after mmget_not_zero()/get_task_mm(). The expand_stack() in page fault
context also doesn't need the new check, because all tasks under core
dumping are frozen.

Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Reported-by: Jann Horn <jannh@google.com>
Suggested-by: Oleg Nesterov <oleg@redhat.com>
Fixes: 86039bd3b4e6 ("userfaultfd: add new syscall to provide memory externalization")
Cc: stable@kernel.org
Acked-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Mike Rapoport <rppt@linux.ibm.com>
Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Reviewed-by: Jann Horn <jannh@google.com>
---
 drivers/infiniband/core/uverbs_main.c |  3 +++
 fs/proc/task_mmu.c                    | 18 ++++++++++++++++++
 fs/userfaultfd.c                      |  9 +++++++++
 include/linux/sched/mm.h              | 21 +++++++++++++++++++++
 mm/mmap.c                             |  7 ++++++-
 5 files changed, 57 insertions(+), 1 deletion(-)

diff --git a/drivers/infiniband/core/uverbs_main.c b/drivers/infiniband/core/uverbs_main.c
index 70b7d80431a9..f2e7ffe6fc54 100644
--- a/drivers/infiniband/core/uverbs_main.c
+++ b/drivers/infiniband/core/uverbs_main.c
@@ -993,6 +993,8 @@ void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
 		 * will only be one mm, so no big deal.
 		 */
 		down_write(&mm->mmap_sem);
+		if (!mmget_still_valid(mm))
+			goto skip_mm;
 		mutex_lock(&ufile->umap_lock);
 		list_for_each_entry_safe (priv, next_priv, &ufile->umaps,
 					  list) {
@@ -1007,6 +1009,7 @@ void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
 			vma->vm_flags &= ~(VM_SHARED | VM_MAYSHARE);
 		}
 		mutex_unlock(&ufile->umap_lock);
+	skip_mm:
 		up_write(&mm->mmap_sem);
 		mmput(mm);
 	}
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index 92a91e7816d8..95ca1fe7283c 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -1143,6 +1143,24 @@ static ssize_t clear_refs_write(struct file *file, const char __user *buf,
 					count = -EINTR;
 					goto out_mm;
 				}
+				/*
+				 * Avoid to modify vma->vm_flags
+				 * without locked ops while the
+				 * coredump reads the vm_flags.
+				 */
+				if (!mmget_still_valid(mm)) {
+					/*
+					 * Silently return "count"
+					 * like if get_task_mm()
+					 * failed. FIXME: should this
+					 * function have returned
+					 * -ESRCH if get_task_mm()
+					 * failed like if
+					 * get_proc_task() fails?
+					 */
+					up_write(&mm->mmap_sem);
+					goto out_mm;
+				}
 				for (vma = mm->mmap; vma; vma = vma->vm_next) {
 					vma->vm_flags &= ~VM_SOFTDIRTY;
 					vma_set_page_prot(vma);
diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
index 89800fc7dc9d..f5de1e726356 100644
--- a/fs/userfaultfd.c
+++ b/fs/userfaultfd.c
@@ -629,6 +629,8 @@ static void userfaultfd_event_wait_completion(struct userfaultfd_ctx *ctx,
 
 		/* the various vma->vm_userfaultfd_ctx still points to it */
 		down_write(&mm->mmap_sem);
+		/* no task can run (and in turn coredump) yet */
+		VM_WARN_ON(!mmget_still_valid(mm));
 		for (vma = mm->mmap; vma; vma = vma->vm_next)
 			if (vma->vm_userfaultfd_ctx.ctx == release_new_ctx) {
 				vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
@@ -883,6 +885,8 @@ static int userfaultfd_release(struct inode *inode, struct file *file)
 	 * taking the mmap_sem for writing.
 	 */
 	down_write(&mm->mmap_sem);
+	if (!mmget_still_valid(mm))
+		goto skip_mm;
 	prev = NULL;
 	for (vma = mm->mmap; vma; vma = vma->vm_next) {
 		cond_resched();
@@ -905,6 +909,7 @@ static int userfaultfd_release(struct inode *inode, struct file *file)
 		vma->vm_flags = new_flags;
 		vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
 	}
+skip_mm:
 	up_write(&mm->mmap_sem);
 	mmput(mm);
 wakeup:
@@ -1333,6 +1338,8 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
 		goto out;
 
 	down_write(&mm->mmap_sem);
+	if (!mmget_still_valid(mm))
+		goto out_unlock;
 	vma = find_vma_prev(mm, start, &prev);
 	if (!vma)
 		goto out_unlock;
@@ -1520,6 +1527,8 @@ static int userfaultfd_unregister(struct userfaultfd_ctx *ctx,
 		goto out;
 
 	down_write(&mm->mmap_sem);
+	if (!mmget_still_valid(mm))
+		goto out_unlock;
 	vma = find_vma_prev(mm, start, &prev);
 	if (!vma)
 		goto out_unlock;
diff --git a/include/linux/sched/mm.h b/include/linux/sched/mm.h
index 0cd9f10423fb..a3fda9f024c3 100644
--- a/include/linux/sched/mm.h
+++ b/include/linux/sched/mm.h
@@ -49,6 +49,27 @@ static inline void mmdrop(struct mm_struct *mm)
 		__mmdrop(mm);
 }
 
+/*
+ * This has to be called after a get_task_mm()/mmget_not_zero()
+ * followed by taking the mmap_sem for writing before modifying the
+ * vmas or anything the coredump pretends not to change from under it.
+ *
+ * NOTE: find_extend_vma() called from GUP context is the only place
+ * that can modify the "mm" (notably the vm_start/end) under mmap_sem
+ * for reading and outside the context of the process, so it is also
+ * the only case that holds the mmap_sem for reading that must call
+ * this function. Generally if the mmap_sem is hold for reading
+ * there's no need of this check after get_task_mm()/mmget_not_zero().
+ *
+ * This function can be obsoleted and the check can be removed, after
+ * the coredump code will hold the mmap_sem for writing before
+ * invoking the ->core_dump methods.
+ */
+static inline bool mmget_still_valid(struct mm_struct *mm)
+{
+	return likely(!mm->core_state);
+}
+
 /**
  * mmget() - Pin the address space associated with a &struct mm_struct.
  * @mm: The address space to pin.
diff --git a/mm/mmap.c b/mm/mmap.c
index 41eb48d9b527..bd7b9f293b39 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -45,6 +45,7 @@
 #include <linux/moduleparam.h>
 #include <linux/pkeys.h>
 #include <linux/oom.h>
+#include <linux/sched/mm.h>
 
 #include <linux/uaccess.h>
 #include <asm/cacheflush.h>
@@ -2525,7 +2526,8 @@ find_extend_vma(struct mm_struct *mm, unsigned long addr)
 	vma = find_vma_prev(mm, addr, &prev);
 	if (vma && (vma->vm_start <= addr))
 		return vma;
-	if (!prev || expand_stack(prev, addr))
+	/* don't alter vm_end if the coredump is running */
+	if (!prev || !mmget_still_valid(mm) || expand_stack(prev, addr))
 		return NULL;
 	if (prev->vm_flags & VM_LOCKED)
 		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
@@ -2551,6 +2553,9 @@ find_extend_vma(struct mm_struct *mm, unsigned long addr)
 		return vma;
 	if (!(vma->vm_flags & VM_GROWSDOWN))
 		return NULL;
+	/* don't alter vm_start if the coredump is running */
+	if (!mmget_still_valid(mm))
+		return NULL;
 	start = vma->vm_start;
 	if (expand_stack(vma, addr))
 		return NULL;


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping
  2019-03-25 22:49 [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping Andrea Arcangeli
@ 2019-03-25 23:53 ` Jason Gunthorpe
  2019-03-26  8:30 ` Michal Hocko
  1 sibling, 0 replies; 3+ messages in thread
From: Jason Gunthorpe @ 2019-03-25 23:53 UTC (permalink / raw)
  To: Andrea Arcangeli
  Cc: Andrew Morton, linux-mm, Oleg Nesterov, Jann Horn, Hugh Dickins,
	Mike Rapoport, Mike Kravetz, Peter Xu, Kirill A . Shutemov,
	Michal Hocko

On Mon, Mar 25, 2019 at 06:49:49PM -0400, Andrea Arcangeli wrote:
> The core dumping code has always run without holding the mmap_sem for
> writing, despite that is the only way to ensure that the entire vma
> layout will not change from under it. Only using some signal
> serialization on the processes belonging to the mm is not nearly
> enough. This was pointed out earlier. For example in Hugh's post from
> Jul 2017:
> 
> https://lkml.kernel.org/r/alpine.LSU.2.11.1707191716030.2055@eggly.anvils
> 
> "Not strictly relevant here, but a related note: I was very surprised
> to discover, only quite recently, how handle_mm_fault() may be called
> without down_read(mmap_sem) - when core dumping.  That seems a
> misguided optimization to me, which would also be nice to correct"
> 
> In particular because the growsdown and growsup can move the
> vm_start/vm_end the various loops the core dump does around the vma
> will not be consistent if page faults can happen concurrently.
> 
> Pretty much all users calling mmget_not_zero()/get_task_mm() and then
> taking the mmap_sem had the potential to introduce unexpected side
> effects in the core dumping code.
> 
> Adding mmap_sem for writing around the ->core_dump invocation is a
> viable long term fix, but it requires removing all copy user and page
> faults and to replace them with get_dump_page() for all binary formats
> which is not suitable as a short term fix.
> 
> For the time being this solution manually covers the places that can
> confuse the core dump either by altering the vma layout or the vma
> flags while it runs. Once ->core_dump runs under mmap_sem for writing
> the function mmget_still_valid() can be dropped.
> 
> Allowing mmap_sem protected sections to run in parallel with the
> coredump provides some minor parallelism advantage to the swapoff
> code (which seems to be safe enough by never mangling any vma field
> and can keep doing swapins in parallel to the core dumping) and to
> some other corner case.
> 
> In order to facilitate the backporting I added "Fixes: 86039bd3b4e6"
> however the side effect of this same race condition in /proc/pid/mem
> should be reproducible since before commit
> 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 so I couldn't add any other
> "Fixes:" because there's no hash beyond the git genesis commit.
> 
> Because find_extend_vma() is the only location outside of the process
> context that could modify the "mm" structures under mmap_sem for
> reading, by adding the mmget_still_valid() check to it, all other
> cases that take the mmap_sem for reading don't need the new check
> after mmget_not_zero()/get_task_mm(). The expand_stack() in page fault
> context also doesn't need the new check, because all tasks under core
> dumping are frozen.
> 
> Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> Reported-by: Jann Horn <jannh@google.com>
> Suggested-by: Oleg Nesterov <oleg@redhat.com>
> Fixes: 86039bd3b4e6 ("userfaultfd: add new syscall to provide memory externalization")
> Cc: stable@kernel.org
> Acked-by: Peter Xu <peterx@redhat.com>
> Reviewed-by: Mike Rapoport <rppt@linux.ibm.com>
> Reviewed-by: Oleg Nesterov <oleg@redhat.com>
> Reviewed-by: Jann Horn <jannh@google.com>
> ---
>  drivers/infiniband/core/uverbs_main.c |  3 +++
>  fs/proc/task_mmu.c                    | 18 ++++++++++++++++++
>  fs/userfaultfd.c                      |  9 +++++++++
>  include/linux/sched/mm.h              | 21 +++++++++++++++++++++
>  mm/mmap.c                             |  7 ++++++-
>  5 files changed, 57 insertions(+), 1 deletion(-)

For the ib part:

Acked-by: Jason Gunthorpe <jgg@mellanox.com>

Jason


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping
  2019-03-25 22:49 [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping Andrea Arcangeli
  2019-03-25 23:53 ` Jason Gunthorpe
@ 2019-03-26  8:30 ` Michal Hocko
  1 sibling, 0 replies; 3+ messages in thread
From: Michal Hocko @ 2019-03-26  8:30 UTC (permalink / raw)
  To: Andrea Arcangeli
  Cc: Andrew Morton, linux-mm, Oleg Nesterov, Jann Horn, Hugh Dickins,
	Mike Rapoport, Mike Kravetz, Peter Xu, Jason Gunthorpe,
	Kirill A . Shutemov

On Mon 25-03-19 18:49:49, Andrea Arcangeli wrote:
> The core dumping code has always run without holding the mmap_sem for
> writing, despite that is the only way to ensure that the entire vma
> layout will not change from under it. Only using some signal
> serialization on the processes belonging to the mm is not nearly
> enough. This was pointed out earlier. For example in Hugh's post from
> Jul 2017:
> 
> https://lkml.kernel.org/r/alpine.LSU.2.11.1707191716030.2055@eggly.anvils
> 
> "Not strictly relevant here, but a related note: I was very surprised
> to discover, only quite recently, how handle_mm_fault() may be called
> without down_read(mmap_sem) - when core dumping.  That seems a
> misguided optimization to me, which would also be nice to correct"
> 
> In particular because the growsdown and growsup can move the
> vm_start/vm_end the various loops the core dump does around the vma
> will not be consistent if page faults can happen concurrently.
> 
> Pretty much all users calling mmget_not_zero()/get_task_mm() and then
> taking the mmap_sem had the potential to introduce unexpected side
> effects in the core dumping code.
> 
> Adding mmap_sem for writing around the ->core_dump invocation is a
> viable long term fix, but it requires removing all copy user and page
> faults and to replace them with get_dump_page() for all binary formats
> which is not suitable as a short term fix.
> 
> For the time being this solution manually covers the places that can
> confuse the core dump either by altering the vma layout or the vma
> flags while it runs. Once ->core_dump runs under mmap_sem for writing
> the function mmget_still_valid() can be dropped.
> 
> Allowing mmap_sem protected sections to run in parallel with the
> coredump provides some minor parallelism advantage to the swapoff
> code (which seems to be safe enough by never mangling any vma field
> and can keep doing swapins in parallel to the core dumping) and to
> some other corner case.
> 
> In order to facilitate the backporting I added "Fixes: 86039bd3b4e6"
> however the side effect of this same race condition in /proc/pid/mem
> should be reproducible since before commit
> 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 so I couldn't add any other
> "Fixes:" because there's no hash beyond the git genesis commit.
> 
> Because find_extend_vma() is the only location outside of the process
> context that could modify the "mm" structures under mmap_sem for
> reading, by adding the mmget_still_valid() check to it, all other
> cases that take the mmap_sem for reading don't need the new check
> after mmget_not_zero()/get_task_mm(). The expand_stack() in page fault
> context also doesn't need the new check, because all tasks under core
> dumping are frozen.
> 
> Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> Reported-by: Jann Horn <jannh@google.com>
> Suggested-by: Oleg Nesterov <oleg@redhat.com>
> Fixes: 86039bd3b4e6 ("userfaultfd: add new syscall to provide memory externalization")
> Cc: stable@kernel.org
> Acked-by: Peter Xu <peterx@redhat.com>
> Reviewed-by: Mike Rapoport <rppt@linux.ibm.com>
> Reviewed-by: Oleg Nesterov <oleg@redhat.com>
> Reviewed-by: Jann Horn <jannh@google.com>

I wish we fixed the core dumping instead as that would be much more
maintainable long term but looking at that code makes me go grrrr.
So for the meantime, while we are waiting for a brave soul,

Acked-by: Michal Hocko <mhocko@suse.com>

> ---
>  drivers/infiniband/core/uverbs_main.c |  3 +++
>  fs/proc/task_mmu.c                    | 18 ++++++++++++++++++
>  fs/userfaultfd.c                      |  9 +++++++++
>  include/linux/sched/mm.h              | 21 +++++++++++++++++++++
>  mm/mmap.c                             |  7 ++++++-
>  5 files changed, 57 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/infiniband/core/uverbs_main.c b/drivers/infiniband/core/uverbs_main.c
> index 70b7d80431a9..f2e7ffe6fc54 100644
> --- a/drivers/infiniband/core/uverbs_main.c
> +++ b/drivers/infiniband/core/uverbs_main.c
> @@ -993,6 +993,8 @@ void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
>  		 * will only be one mm, so no big deal.
>  		 */
>  		down_write(&mm->mmap_sem);
> +		if (!mmget_still_valid(mm))
> +			goto skip_mm;
>  		mutex_lock(&ufile->umap_lock);
>  		list_for_each_entry_safe (priv, next_priv, &ufile->umaps,
>  					  list) {
> @@ -1007,6 +1009,7 @@ void uverbs_user_mmap_disassociate(struct ib_uverbs_file *ufile)
>  			vma->vm_flags &= ~(VM_SHARED | VM_MAYSHARE);
>  		}
>  		mutex_unlock(&ufile->umap_lock);
> +	skip_mm:
>  		up_write(&mm->mmap_sem);
>  		mmput(mm);
>  	}
> diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
> index 92a91e7816d8..95ca1fe7283c 100644
> --- a/fs/proc/task_mmu.c
> +++ b/fs/proc/task_mmu.c
> @@ -1143,6 +1143,24 @@ static ssize_t clear_refs_write(struct file *file, const char __user *buf,
>  					count = -EINTR;
>  					goto out_mm;
>  				}
> +				/*
> +				 * Avoid to modify vma->vm_flags
> +				 * without locked ops while the
> +				 * coredump reads the vm_flags.
> +				 */
> +				if (!mmget_still_valid(mm)) {
> +					/*
> +					 * Silently return "count"
> +					 * like if get_task_mm()
> +					 * failed. FIXME: should this
> +					 * function have returned
> +					 * -ESRCH if get_task_mm()
> +					 * failed like if
> +					 * get_proc_task() fails?
> +					 */
> +					up_write(&mm->mmap_sem);
> +					goto out_mm;
> +				}
>  				for (vma = mm->mmap; vma; vma = vma->vm_next) {
>  					vma->vm_flags &= ~VM_SOFTDIRTY;
>  					vma_set_page_prot(vma);
> diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
> index 89800fc7dc9d..f5de1e726356 100644
> --- a/fs/userfaultfd.c
> +++ b/fs/userfaultfd.c
> @@ -629,6 +629,8 @@ static void userfaultfd_event_wait_completion(struct userfaultfd_ctx *ctx,
>  
>  		/* the various vma->vm_userfaultfd_ctx still points to it */
>  		down_write(&mm->mmap_sem);
> +		/* no task can run (and in turn coredump) yet */
> +		VM_WARN_ON(!mmget_still_valid(mm));
>  		for (vma = mm->mmap; vma; vma = vma->vm_next)
>  			if (vma->vm_userfaultfd_ctx.ctx == release_new_ctx) {
>  				vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
> @@ -883,6 +885,8 @@ static int userfaultfd_release(struct inode *inode, struct file *file)
>  	 * taking the mmap_sem for writing.
>  	 */
>  	down_write(&mm->mmap_sem);
> +	if (!mmget_still_valid(mm))
> +		goto skip_mm;
>  	prev = NULL;
>  	for (vma = mm->mmap; vma; vma = vma->vm_next) {
>  		cond_resched();
> @@ -905,6 +909,7 @@ static int userfaultfd_release(struct inode *inode, struct file *file)
>  		vma->vm_flags = new_flags;
>  		vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
>  	}
> +skip_mm:
>  	up_write(&mm->mmap_sem);
>  	mmput(mm);
>  wakeup:
> @@ -1333,6 +1338,8 @@ static int userfaultfd_register(struct userfaultfd_ctx *ctx,
>  		goto out;
>  
>  	down_write(&mm->mmap_sem);
> +	if (!mmget_still_valid(mm))
> +		goto out_unlock;
>  	vma = find_vma_prev(mm, start, &prev);
>  	if (!vma)
>  		goto out_unlock;
> @@ -1520,6 +1527,8 @@ static int userfaultfd_unregister(struct userfaultfd_ctx *ctx,
>  		goto out;
>  
>  	down_write(&mm->mmap_sem);
> +	if (!mmget_still_valid(mm))
> +		goto out_unlock;
>  	vma = find_vma_prev(mm, start, &prev);
>  	if (!vma)
>  		goto out_unlock;
> diff --git a/include/linux/sched/mm.h b/include/linux/sched/mm.h
> index 0cd9f10423fb..a3fda9f024c3 100644
> --- a/include/linux/sched/mm.h
> +++ b/include/linux/sched/mm.h
> @@ -49,6 +49,27 @@ static inline void mmdrop(struct mm_struct *mm)
>  		__mmdrop(mm);
>  }
>  
> +/*
> + * This has to be called after a get_task_mm()/mmget_not_zero()
> + * followed by taking the mmap_sem for writing before modifying the
> + * vmas or anything the coredump pretends not to change from under it.
> + *
> + * NOTE: find_extend_vma() called from GUP context is the only place
> + * that can modify the "mm" (notably the vm_start/end) under mmap_sem
> + * for reading and outside the context of the process, so it is also
> + * the only case that holds the mmap_sem for reading that must call
> + * this function. Generally if the mmap_sem is hold for reading
> + * there's no need of this check after get_task_mm()/mmget_not_zero().
> + *
> + * This function can be obsoleted and the check can be removed, after
> + * the coredump code will hold the mmap_sem for writing before
> + * invoking the ->core_dump methods.
> + */
> +static inline bool mmget_still_valid(struct mm_struct *mm)
> +{
> +	return likely(!mm->core_state);
> +}
> +
>  /**
>   * mmget() - Pin the address space associated with a &struct mm_struct.
>   * @mm: The address space to pin.
> diff --git a/mm/mmap.c b/mm/mmap.c
> index 41eb48d9b527..bd7b9f293b39 100644
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -45,6 +45,7 @@
>  #include <linux/moduleparam.h>
>  #include <linux/pkeys.h>
>  #include <linux/oom.h>
> +#include <linux/sched/mm.h>
>  
>  #include <linux/uaccess.h>
>  #include <asm/cacheflush.h>
> @@ -2525,7 +2526,8 @@ find_extend_vma(struct mm_struct *mm, unsigned long addr)
>  	vma = find_vma_prev(mm, addr, &prev);
>  	if (vma && (vma->vm_start <= addr))
>  		return vma;
> -	if (!prev || expand_stack(prev, addr))
> +	/* don't alter vm_end if the coredump is running */
> +	if (!prev || !mmget_still_valid(mm) || expand_stack(prev, addr))
>  		return NULL;
>  	if (prev->vm_flags & VM_LOCKED)
>  		populate_vma_page_range(prev, addr, prev->vm_end, NULL);
> @@ -2551,6 +2553,9 @@ find_extend_vma(struct mm_struct *mm, unsigned long addr)
>  		return vma;
>  	if (!(vma->vm_flags & VM_GROWSDOWN))
>  		return NULL;
> +	/* don't alter vm_start if the coredump is running */
> +	if (!mmget_still_valid(mm))
> +		return NULL;
>  	start = vma->vm_start;
>  	if (expand_stack(vma, addr))
>  		return NULL;

-- 
Michal Hocko
SUSE Labs


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-03-26  8:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-25 22:49 [PATCH 1/1] coredump: fix race condition between mmget_not_zero()/get_task_mm() and core dumping Andrea Arcangeli
2019-03-25 23:53 ` Jason Gunthorpe
2019-03-26  8:30 ` Michal Hocko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.