lkml.org 
[lkml]   [2022]   [Jul]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] mm/mmap: Fix copy_vma() new_vma check
Date
When checking new_vma limits to ensure they are not within where the
copy of the vma will be placed, ensure new_vma is not NULL.

Fixes: ded0cf440d9b (mm: remove the vma linked list)
Reported-by: Yu Zhao <yuzhao@google.com>
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
---
mm/mmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/mmap.c b/mm/mmap.c
index dacc01b0126a..9eb663cde5c7 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -3293,7 +3293,7 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
}

new_vma = find_vma_prev(mm, addr, &prev);
- if (new_vma->vm_start < addr + len)
+ if (new_vma && new_vma->vm_start < addr + len)
return NULL; /* should never get here */

new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
--
2.35.1
\
 
 \ /
  Last update: 2022-07-06 02:36    [W:0.039 / U:0.044 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site