comedi: Flush partial mappings in error case
authorJann Horn <jannh@google.com>
Thu, 17 Oct 2024 19:07:45 +0000 (21:07 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 5 Nov 2024 13:01:07 +0000 (14:01 +0100)
If some remap_pfn_range() calls succeeded before one failed, we still have
buffer pages mapped into the userspace page tables when we drop the buffer
reference with comedi_buf_map_put(bm). The userspace mappings are only
cleaned up later in the mmap error path.

Fix it by explicitly flushing all mappings in our VMA on the error path.

See commit 79a61cc3fc04 ("mm: avoid leaving partial pfn mappings around in
error case").

Cc: stable@vger.kernel.org
Fixes: ed9eccbe8970 ("Staging: add comedi core")
Signed-off-by: Jann Horn <jannh@google.com>
Link: https://lore.kernel.org/r/20241017-comedi-tlb-v3-1-16b82f9372ce@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/comedi/comedi_fops.c

index 1b48173..b9df9b1 100644 (file)
@@ -2407,6 +2407,18 @@ static int comedi_mmap(struct file *file, struct vm_area_struct *vma)
 
                        start += PAGE_SIZE;
                }
+
+#ifdef CONFIG_MMU
+               /*
+                * Leaving behind a partial mapping of a buffer we're about to
+                * drop is unsafe, see remap_pfn_range_notrack().
+                * We need to zap the range here ourselves instead of relying
+                * on the automatic zapping in remap_pfn_range() because we call
+                * remap_pfn_range() in a loop.
+                */
+               if (retval)
+                       zap_vma_ptes(vma, vma->vm_start, size);
+#endif
        }
 
        if (retval == 0) {