mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
mm/mmap.c: close race between munmap() and expand_upwards()/downwards()
commit246c320a8cupstream. VMA with VM_GROWSDOWN or VM_GROWSUP flag set can change their size under mmap_read_lock(). It can lead to race with __do_munmap(): Thread A Thread B __do_munmap() detach_vmas_to_be_unmapped() mmap_write_downgrade() expand_downwards() vma->vm_start = address; // The VMA now overlaps with // VMAs detached by the Thread A // page fault populates expanded part // of the VMA unmap_region() // Zaps pagetables partly // populated by Thread B Similar race exists for expand_upwards(). The fix is to avoid downgrading mmap_lock in __do_munmap() if detached VMAs are next to VM_GROWSDOWN or VM_GROWSUP VMA. [akpm@linux-foundation.org: s/mmap_sem/mmap_lock/ in comment] Fixes:dd2283f260("mm: mmap: zap pages with read mmap_sem in munmap") Reported-by: Jann Horn <jannh@google.com> Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Yang Shi <yang.shi@linux.alibaba.com> Acked-by: Vlastimil Babka <vbabka@suse.cz> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: <stable@vger.kernel.org> [4.20+] Link: http://lkml.kernel.org/r/20200709105309.42495-1-kirill.shutemov@linux.intel.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4055a0a9dc
commit
b6afd2a9f2
16
mm/mmap.c
16
mm/mmap.c
@@ -2620,7 +2620,7 @@ static void unmap_region(struct mm_struct *mm,
|
|||||||
* Create a list of vma's touched by the unmap, removing them from the mm's
|
* Create a list of vma's touched by the unmap, removing them from the mm's
|
||||||
* vma list as we go..
|
* vma list as we go..
|
||||||
*/
|
*/
|
||||||
static void
|
static bool
|
||||||
detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
|
detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
|
||||||
struct vm_area_struct *prev, unsigned long end)
|
struct vm_area_struct *prev, unsigned long end)
|
||||||
{
|
{
|
||||||
@@ -2645,6 +2645,17 @@ detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
|
|||||||
|
|
||||||
/* Kill the cache */
|
/* Kill the cache */
|
||||||
vmacache_invalidate(mm);
|
vmacache_invalidate(mm);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Do not downgrade mmap_lock if we are next to VM_GROWSDOWN or
|
||||||
|
* VM_GROWSUP VMA. Such VMAs can change their size under
|
||||||
|
* down_read(mmap_lock) and collide with the VMA we are about to unmap.
|
||||||
|
*/
|
||||||
|
if (vma && (vma->vm_flags & VM_GROWSDOWN))
|
||||||
|
return false;
|
||||||
|
if (prev && (prev->vm_flags & VM_GROWSUP))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -2825,7 +2836,8 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Detach vmas from rbtree */
|
/* Detach vmas from rbtree */
|
||||||
detach_vmas_to_be_unmapped(mm, vma, prev, end);
|
if (!detach_vmas_to_be_unmapped(mm, vma, prev, end))
|
||||||
|
downgrade = false;
|
||||||
|
|
||||||
if (downgrade)
|
if (downgrade)
|
||||||
downgrade_write(&mm->mmap_sem);
|
downgrade_write(&mm->mmap_sem);
|
||||||
|
|||||||
Reference in New Issue
Block a user