aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanosch Frank <frankja@linux.ibm.com>2018-08-16 04:02:31 -0400
committerJanosch Frank <frankja@linux.ibm.com>2018-09-12 08:46:37 -0400
commit1843abd03250115af6cec0892683e70cf2297c25 (patch)
treeb764158970ec421902e4ad739adac90a3dd42adb
parentdf88f3181f10565c6e3a89eb6f0f9e6afaaf15f1 (diff)
s390/mm: Check for valid vma before zapping in gmap_discard
Userspace could have munmapped the area before doing unmapping from the gmap. This would leave us with a valid vmaddr, but an invalid vma from which we would try to zap memory. Let's check before using the vma. Fixes: 1e133ab296f3 ("s390/mm: split arch/s390/mm/pgtable.c") Signed-off-by: Janosch Frank <frankja@linux.ibm.com> Reviewed-by: David Hildenbrand <david@redhat.com> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Message-Id: <20180816082432.78828-1-frankja@linux.ibm.com> Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
-rw-r--r--arch/s390/mm/gmap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/s390/mm/gmap.c b/arch/s390/mm/gmap.c
index bb44990c8212..911c7ded35f1 100644
--- a/arch/s390/mm/gmap.c
+++ b/arch/s390/mm/gmap.c
@@ -708,11 +708,13 @@ void gmap_discard(struct gmap *gmap, unsigned long from, unsigned long to)
708 vmaddr |= gaddr & ~PMD_MASK; 708 vmaddr |= gaddr & ~PMD_MASK;
709 /* Find vma in the parent mm */ 709 /* Find vma in the parent mm */
710 vma = find_vma(gmap->mm, vmaddr); 710 vma = find_vma(gmap->mm, vmaddr);
711 if (!vma)
712 continue;
711 /* 713 /*
712 * We do not discard pages that are backed by 714 * We do not discard pages that are backed by
713 * hugetlbfs, so we don't have to refault them. 715 * hugetlbfs, so we don't have to refault them.
714 */ 716 */
715 if (vma && is_vm_hugetlb_page(vma)) 717 if (is_vm_hugetlb_page(vma))
716 continue; 718 continue;
717 size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK)); 719 size = min(to - gaddr, PMD_SIZE - (gaddr & ~PMD_MASK));
718 zap_page_range(vma, vmaddr, size); 720 zap_page_range(vma, vmaddr, size);