]> Git Repo - linux.git/commit
mm/pagemap: add mmap_assert_locked() annotations to find_vma*()
authorLuigi Rizzo <[email protected]>
Thu, 2 Sep 2021 21:56:46 +0000 (14:56 -0700)
committerLinus Torvalds <[email protected]>
Fri, 3 Sep 2021 16:58:13 +0000 (09:58 -0700)
commit5b78ed24e8ec48602c1d6f5a188e58d000c81e2b
treefb2e4dea2199850c8ab0ca7492acab96a06a15a0
parente15710bf04063766f428048f4dad7b73b646203f
mm/pagemap: add mmap_assert_locked() annotations to find_vma*()

find_vma() and variants need protection when used.  This patch adds
mmap_assert_lock() calls in the functions.

To make sure the invariant is satisfied, we also need to add a
mmap_read_lock() around the get_user_pages_remote() call in
get_arg_page().  The lock is not strictly necessary because the mm has
been newly created, but the extra cost is limited because the same mutex
was also acquired shortly before in __bprm_mm_init(), so it is hot and
uncontended.

[[email protected]: TOMOYO needs the same protection which get_arg_page() needs]
Link: https://lkml.kernel.org/r/[email protected]
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Luigi Rizzo <[email protected]>
Cc: David Rientjes <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/exec.c
mm/mmap.c
security/tomoyo/domain.c
This page took 0.054914 seconds and 4 git commands to generate.