Skip to content
  • Jeremy Fitzhardinge's avatar
    mm: rearrange exit_mmap() to unlock before arch_exit_mmap · 9480c53e
    Jeremy Fitzhardinge authored
    Christophe Saout reported [in precursor to:
    http://marc.info/?l=linux-kernel&m=123209902707347&w=4
    
    ]:
    
    > Note that I also some a different issue with CONFIG_UNEVICTABLE_LRU.
    > Seems like Xen tears down current->mm early on process termination, so
    > that __get_user_pages in exit_mmap causes nasty messages when the
    > process had any mlocked pages.  (in fact, it somehow manages to get into
    > the swapping code and produces a null pointer dereference trying to get
    > a swap token)
    
    Jeremy explained:
    
    Yes.  In the normal case under Xen, an in-use pagetable is "pinned",
    meaning that it is RO to the kernel, and all updates must go via hypercall
    (or writes are trapped and emulated, which is much the same thing).  An
    unpinned pagetable is not currently in use by any process, and can be
    directly accessed as normal RW pages.
    
    As an optimisation at process exit time, we unpin the pagetable as early
    as possible (switching the process to init_mm), so that all the normal
    pagetable teardown can happen with direct memory accesses.
    
    This happens in exit_mmap() -> arch_exit_mmap().  The munlocking happens
    a few lines below.  The obvious thing to do would be to move
    arch_exit_mmap() to below the munlock code, but I think we'd want to
    call it even if mm->mmap is NULL, just to be on the safe side.
    
    Thus, this patch:
    
    exit_mmap() needs to unlock any locked vmas before calling arch_exit_mmap,
    as the latter may switch the current mm to init_mm, which would cause the
    former to fail.
    
    Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
    Signed-off-by: default avatarLee Schermerhorn <lee.schermerhorn@hp.com>
    Cc: Christophe Saout <christophe@saout.de>
    Cc: Keir Fraser <keir.fraser@eu.citrix.com>
    Cc: Christophe Saout <christophe@saout.de>
    Cc: Alex Williamson <alex.williamson@hp.com>
    Cc: <stable@kernel.org>		[2.6.28.x]
    Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    9480c53e