Skip to content

Commit 3cfd22b

Browse files
xzpetertorvalds
authored andcommitted
userfaultfd: clear flag if remap event not enabled
When the process being tracked does mremap() without UFFD_FEATURE_EVENT_REMAP on the corresponding tracking uffd file handle, we should not generate the remap event, and at the same time we should clear all the uffd flags on the new VMA. Without this patch, we can still have the VM_UFFD_MISSING|VM_UFFD_WP flags on the new VMA even the fault handling process does not even know the existance of the VMA. Link: http://lkml.kernel.org/r/20181211053409.20317-1-peterx@redhat.com Signed-off-by: Peter Xu <peterx@redhat.com> Reviewed-by: Andrea Arcangeli <aarcange@redhat.com> Acked-by: Mike Rapoport <rppt@linux.vnet.ibm.com> Reviewed-by: William Kucharski <william.kucharski@oracle.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: Mike Rapoport <rppt@linux.vnet.ibm.com> Cc: Kirill A. Shutemov <kirill@shutemov.name> Cc: Hugh Dickins <hughd@google.com> Cc: Pavel Emelyanov <xemul@virtuozzo.com> Cc: Pravin Shedge <pravin.shedge4linux@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 125b860 commit 3cfd22b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

fs/userfaultfd.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,10 +735,18 @@ void mremap_userfaultfd_prep(struct vm_area_struct *vma,
735735
struct userfaultfd_ctx *ctx;
736736

737737
ctx = vma->vm_userfaultfd_ctx.ctx;
738-
if (ctx && (ctx->features & UFFD_FEATURE_EVENT_REMAP)) {
738+
739+
if (!ctx)
740+
return;
741+
742+
if (ctx->features & UFFD_FEATURE_EVENT_REMAP) {
739743
vm_ctx->ctx = ctx;
740744
userfaultfd_ctx_get(ctx);
741745
WRITE_ONCE(ctx->mmap_changing, true);
746+
} else {
747+
/* Drop uffd context if remap feature not enabled */
748+
vma->vm_userfaultfd_ctx = NULL_VM_UFFD_CTX;
749+
vma->vm_flags &= ~(VM_UFFD_WP | VM_UFFD_MISSING);
742750
}
743751
}
744752

0 commit comments

Comments
 (0)