qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user: limit number of arguments to execve
@ 2017-03-03 11:25 P J P
  2017-03-03 14:54 ` Eric Blake
  2017-03-03 15:55 ` Peter Maydell
  0 siblings, 2 replies; 9+ messages in thread
From: P J P @ 2017-03-03 11:25 UTC (permalink / raw)
  To: Qemu Developers; +Cc: Riku Voipio, Jann Horn, Prasad J Pandit

From: Prasad J Pandit <pjp@fedoraproject.org>

Limit the number of arguments passed to execve(2) call from
a user program, as large number of them could lead to a bad
guest address error.

Reported-by: Jann Horn <jannh@google.com>
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
---
 linux-user/syscall.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 9be8e95..c545c12 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -7766,6 +7766,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
 #endif
     case TARGET_NR_execve:
         {
+#define ARG_MAX 65535
             char **argp, **envp;
             int argc, envc;
             abi_ulong gp;
@@ -7794,6 +7795,12 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
                 envc++;
             }
 
+            if (argc > ARG_MAX || envc > ARG_MAX) {
+                fprintf(stderr,
+                        "argc(%d), envc(%d) exceed %d\n", argc, envc, ARG_MAX);
+                ret = -TARGET_EFAULT;
+                break;
+            }
             argp = alloca((argc + 1) * sizeof(void *));
             envp = alloca((envc + 1) * sizeof(void *));
 
-- 
2.9.3

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

end of thread, other threads:[~2017-03-06  7:20 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-03 11:25 [Qemu-devel] [PATCH] linux-user: limit number of arguments to execve P J P
2017-03-03 14:54 ` Eric Blake
2017-03-03 15:56   ` Peter Maydell
2017-03-03 16:00     ` Jann Horn
2017-03-06  7:20   ` P J P
2017-03-03 15:55 ` Peter Maydell
2017-03-03 15:57   ` Jann Horn
2017-03-03 15:59     ` Peter Maydell
2017-03-06  5:26     ` P J P

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).