mm: write-lock VMAs before removing them from VMA tree
authorSuren Baghdasaryan <surenb@google.com>
Sat, 11 Jun 2022 05:15:49 +0000 (22:15 -0700)
committerSuren Baghdasaryan <surenb@google.com>
Wed, 23 Nov 2022 02:09:45 +0000 (02:09 +0000)
Write-locking VMAs before isolating them ensures that page fault
handlers don't operate on isolated VMAs.

Signed-off-by: Suren Baghdasaryan <surenb@google.com>
mm/mmap.c
mm/nommu.c

index 006a9d09dafc5792125ef9d6c8a56db0363f8ab1..9cc846481ddf67f27099aa201ab2be8821f92e44 100644 (file)
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -446,6 +446,7 @@ void vma_mas_store(struct vm_area_struct *vma, struct ma_state *mas)
  */
 void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
 {
+       vma_write_lock(vma);
        trace_vma_mas_szero(mas->tree, vma->vm_start, vma->vm_end - 1);
        mas->index = vma->vm_start;
        mas->last = vma->vm_end - 1;
@@ -2301,6 +2302,7 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
 static inline int munmap_sidetree(struct vm_area_struct *vma,
                                   struct ma_state *mas_detach)
 {
+       vma_write_lock(vma);
        mas_set_range(mas_detach, vma->vm_start, vma->vm_end - 1);
        if (mas_store_gfp(mas_detach, vma, GFP_KERNEL))
                return -ENOMEM;
index b3154357ced52285efef952b615643009ff9f435..7ae91337ef14fbb7fca5b9e378abfdf9acf200ad 100644 (file)
@@ -552,6 +552,7 @@ void vma_mas_store(struct vm_area_struct *vma, struct ma_state *mas)
 
 void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
 {
+       vma_write_lock(vma);
        mas->index = vma->vm_start;
        mas->last = vma->vm_end - 1;
        mas_store_prealloc(mas, NULL);
@@ -1551,6 +1552,10 @@ void exit_mmap(struct mm_struct *mm)
        mmap_write_lock(mm);
        for_each_vma(vmi, vma) {
                cleanup_vma_from_mm(vma);
+               /*
+                * No need to lock VMA because this is the only mm user and no
+                * page fault handled can race with it.
+                */
                delete_vma(mm, vma);
                cond_resched();
        }