diff options
author | Petar Jovanovic <petar.jovanovic@imgtec.com> | 2014-04-08 19:24:30 +0200 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2014-05-05 15:21:05 +0300 |
commit | a39fb273bddd315b440b0617783051456a148242 (patch) | |
tree | 8ccd2005d78a7d0556a4118d4fdde3e8eabcc4b6 /linux-user | |
parent | ad6919dc0ab3b8ae26d772e883aa8e709785d249 (diff) | |
download | qemu-a39fb273bddd315b440b0617783051456a148242.tar.gz qemu-a39fb273bddd315b440b0617783051456a148242.tar.bz2 qemu-a39fb273bddd315b440b0617783051456a148242.zip |
linux-user: fix getrusage and wait4 failures with invalid rusage struct
Implementations of system calls getrusage and wait4 have not previously
handled correctly cases when incorrect address of struct rusage is
passed.
This change makes sure return values are correctly set for these cases.
Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9fc28bd1ba..6efeeff2bf 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6243,7 +6243,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, struct rusage rusage; ret = get_errno(getrusage(arg1, &rusage)); if (!is_error(ret)) { - host_to_target_rusage(arg2, &rusage); + ret = host_to_target_rusage(arg2, &rusage); } } break; @@ -6908,6 +6908,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, abi_long status_ptr = arg2; struct rusage rusage, *rusage_ptr; abi_ulong target_rusage = arg4; + abi_long rusage_err; if (target_rusage) rusage_ptr = &rusage; else @@ -6919,8 +6920,12 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, if (put_user_s32(status, status_ptr)) goto efault; } - if (target_rusage) - host_to_target_rusage(target_rusage, &rusage); + if (target_rusage) { + rusage_err = host_to_target_rusage(target_rusage, &rusage); + if (rusage_err) { + ret = rusage_err; + } + } } } break; |