]> www.infradead.org Git - users/jedix/linux-maple.git/commit
execve: Keep bprm->argmin behind CONFIG_MMU
authorKees Cook <kees@kernel.org>
Fri, 21 Jun 2024 20:50:43 +0000 (13:50 -0700)
committerKees Cook <kees@kernel.org>
Sun, 14 Jul 2024 04:31:57 +0000 (21:31 -0700)
commit084ebf7ca83e6cb743784f2eecc654193ce064fb
tree33cd2f226459837414b36dc3d34cb2d7ce056e0e
parent2a97388a807b6ab5538aa8f8537b2463c6988bd2
execve: Keep bprm->argmin behind CONFIG_MMU

When argmin was added in commit 655c16a8ce9c ("exec: separate
MM_ANONPAGES and RLIMIT_STACK accounting"), it was intended only for
validating stack limits on CONFIG_MMU[1]. All checking for reaching the
limit (argmin) is wrapped in CONFIG_MMU ifdef checks, though setting
argmin was not. That argmin is only supposed to be used under CONFIG_MMU
was rediscovered recently[2], and I don't want to trip over this again.

Move argmin's declaration into the existing CONFIG_MMU area, and add
helpers functions so the MMU tests can be consolidated.

Link: https://lore.kernel.org/all/20181126122307.GA1660@redhat.com
Link: https://lore.kernel.org/all/202406211253.7037F69@keescook/
Link: https://lore.kernel.org/r/20240621205046.4001362-1-kees@kernel.org
Signed-off-by: Kees Cook <kees@kernel.org>
fs/exec.c
fs/exec_test.c
include/linux/binfmts.h