]> git.baikalelectronics.ru Git - kernel.git/commit
mm: enforce min addr even if capable() in expand_downwards()
authorJann Horn <jannh@google.com>
Wed, 27 Feb 2019 20:29:52 +0000 (21:29 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 28 Feb 2019 01:27:02 +0000 (17:27 -0800)
commit92f1157a7accc1b01c784ccc69caa528127f0e04
tree0674c4cb793d0402ce24061f8db61d04024d1a88
parentd963caf26bec21d8b3f863fe05bcf67421981fdb
mm: enforce min addr even if capable() in expand_downwards()

security_mmap_addr() does a capability check with current_cred(), but
we can reach this code from contexts like a VFS write handler where
current_cred() must not be used.

This can be abused on systems without SMAP to make NULL pointer
dereferences exploitable again.

Fixes: 49bfbf126048 ("security: protect from stack expansion into low vm addresses")
Cc: stable@kernel.org
Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/mmap.c