linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] exec: fix linux_binprm::exec in transfer_args_to_stack()
@ 2024-03-20 18:26 Max Filippov
  2024-03-20 19:29 ` Matthew Wilcox
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Max Filippov @ 2024-03-20 18:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-mm, linux-fsdevel, Eric Biederman, Kees Cook,
	Alexander Viro, Christian Brauner, Jan Kara, Rich Felker,
	Max Filippov, stable

In NUMMU kernel the value of linux_binprm::p is the offset inside the
temporary program arguments array maintained in separate pages in the
linux_binprm::page. linux_binprm::exec being a copy of linux_binprm::p
thus must be adjusted when that array is copied to the user stack.
Without that adjustment the value passed by the NOMMU kernel to the ELF
program in the AT_EXECFN entry of the aux array doesn't make any sense
and it may break programs that try to access memory pointed to by that
entry.

Adjust linux_binprm::exec before the successful return from the
transfer_args_to_stack().

Cc: stable@vger.kernel.org
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
---
 fs/exec.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/exec.c b/fs/exec.c
index af4fbb61cd53..5ee2545c3e18 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -895,6 +895,7 @@ int transfer_args_to_stack(struct linux_binprm *bprm,
 			goto out;
 	}
 
+	bprm->exec += *sp_location - MAX_ARG_PAGES * PAGE_SIZE;
 	*sp_location = sp;
 
 out:
-- 
2.39.2



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-03-22 16:40 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-20 18:26 [PATCH] exec: fix linux_binprm::exec in transfer_args_to_stack() Max Filippov
2024-03-20 19:29 ` Matthew Wilcox
2024-03-20 20:31   ` Max Filippov
2024-03-21 17:05 ` Kees Cook
2024-03-21 19:52   ` Max Filippov
2024-03-22  3:48     ` Kees Cook
2024-03-22 16:39       ` Max Filippov
2024-03-22  3:18 ` Kees Cook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox