* [PATCH] fix unmap_vmas() with NULL vma
@ 2008-12-23 10:38 Akinobu Mita
2008-12-23 15:06 ` Johannes Weiner
0 siblings, 1 reply; 3+ messages in thread
From: Akinobu Mita @ 2008-12-23 10:38 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-mm, akpm
unmap_vmas() with NULL vma causes kernel NULL pointer dereference by
vma->mm.
It is happend the following scenario:
1. dup_mm() duplicates mm_struct and ->mmap is NULL
2. dup_mm() calls dup_mmap() to duplicate vmas
3. If dup_mmap() cannot duplicate any vmas due to no enough memory,
it returns error and ->mmap is still NULL
4. dup_mm() calls mmput() with the incompletely duplicated mm_struct to
deallocate it
5. mmput calls exit_mmap with the mm_struct
6. exit_mmap calls unmap_vmas with NULL vma
Cc: linux-mm@kvack.org
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
---
mm/memory.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
Index: 2.6-rc/mm/memory.c
===================================================================
--- 2.6-rc.orig/mm/memory.c
+++ 2.6-rc/mm/memory.c
@@ -899,8 +899,12 @@ unsigned long unmap_vmas(struct mmu_gath
unsigned long start = start_addr;
spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
int fullmm = (*tlbp)->fullmm;
- struct mm_struct *mm = vma->vm_mm;
+ struct mm_struct *mm;
+
+ if (!vma)
+ return start;
+ mm = vma->vm_mm;
mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
unsigned long end;
--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] fix unmap_vmas() with NULL vma
2008-12-23 10:38 [PATCH] fix unmap_vmas() with NULL vma Akinobu Mita
@ 2008-12-23 15:06 ` Johannes Weiner
2008-12-23 22:22 ` Akinobu Mita
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Weiner @ 2008-12-23 15:06 UTC (permalink / raw)
To: Akinobu Mita; +Cc: linux-kernel, linux-mm, akpm
On Tue, Dec 23, 2008 at 07:38:21PM +0900, Akinobu Mita wrote:
> unmap_vmas() with NULL vma causes kernel NULL pointer dereference by
> vma->mm.
>
> It is happend the following scenario:
>
> 1. dup_mm() duplicates mm_struct and ->mmap is NULL
> 2. dup_mm() calls dup_mmap() to duplicate vmas
>
> 3. If dup_mmap() cannot duplicate any vmas due to no enough memory,
> it returns error and ->mmap is still NULL
>
> 4. dup_mm() calls mmput() with the incompletely duplicated mm_struct to
> deallocate it
>
> 5. mmput calls exit_mmap with the mm_struct
> 6. exit_mmap calls unmap_vmas with NULL vma
>
> Cc: linux-mm@kvack.org
> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
> ---
> mm/memory.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> Index: 2.6-rc/mm/memory.c
> ===================================================================
> --- 2.6-rc.orig/mm/memory.c
> +++ 2.6-rc/mm/memory.c
> @@ -899,8 +899,12 @@ unsigned long unmap_vmas(struct mmu_gath
> unsigned long start = start_addr;
> spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
> int fullmm = (*tlbp)->fullmm;
> - struct mm_struct *mm = vma->vm_mm;
> + struct mm_struct *mm;
> +
> + if (!vma)
> + return start;
>
> + mm = vma->vm_mm;
> mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
> for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
> unsigned long end;
Why bail out this late? We can save the other stuff in exit_mmap() as
well if we have no mmaps.
Granted, the path is dead cold so the extra call overhead doesn't
matter but I think the check is logically better placed in
exit_mmap().
Hannes
---
Subject: mm: check for no mmaps in exit_mmap()
When dup_mmap() ooms we can end up with mm->mmap == NULL. The error
path does mmput() and unmap_vmas() gets a NULL vma which it
dereferences.
In exit_mmap() there is nothing to do at all for this case, we can
cancel the callpath right there.
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
---
diff --git a/mm/mmap.c b/mm/mmap.c
index d4855a6..b9d1636 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -2091,6 +2091,9 @@ void exit_mmap(struct mm_struct *mm)
arch_exit_mmap(mm);
mmu_notifier_release(mm);
+ if (!mm->mmap)
+ return;
+
if (mm->locked_vm) {
vma = mm->mmap;
while (vma) {
--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] fix unmap_vmas() with NULL vma
2008-12-23 15:06 ` Johannes Weiner
@ 2008-12-23 22:22 ` Akinobu Mita
0 siblings, 0 replies; 3+ messages in thread
From: Akinobu Mita @ 2008-12-23 22:22 UTC (permalink / raw)
To: Johannes Weiner; +Cc: linux-kernel, linux-mm, akpm
> Why bail out this late? We can save the other stuff in exit_mmap() as
> well if we have no mmaps.
>
> Granted, the path is dead cold so the extra call overhead doesn't
> matter but I think the check is logically better placed in
> exit_mmap().
Looks good, this patch should go in.
> Hannes
>
> ---
> Subject: mm: check for no mmaps in exit_mmap()
>
> When dup_mmap() ooms we can end up with mm->mmap == NULL. The error
> path does mmput() and unmap_vmas() gets a NULL vma which it
> dereferences.
>
> In exit_mmap() there is nothing to do at all for this case, we can
> cancel the callpath right there.
>
> Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
> ---
>
> diff --git a/mm/mmap.c b/mm/mmap.c
> index d4855a6..b9d1636 100644
> --- a/mm/mmap.c
> +++ b/mm/mmap.c
> @@ -2091,6 +2091,9 @@ void exit_mmap(struct mm_struct *mm)
> arch_exit_mmap(mm);
> mmu_notifier_release(mm);
>
> + if (!mm->mmap)
> + return;
> +
> if (mm->locked_vm) {
> vma = mm->mmap;
> while (vma) {
>
--
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: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-12-23 22:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-23 10:38 [PATCH] fix unmap_vmas() with NULL vma Akinobu Mita
2008-12-23 15:06 ` Johannes Weiner
2008-12-23 22:22 ` Akinobu Mita
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox