[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 12/19] linux-user: allow NULL tv argument for settime
From: |
riku . voipio |
Subject: |
[Qemu-devel] [PULL 12/19] linux-user: allow NULL tv argument for settimeofday |
Date: |
Mon, 23 Jun 2014 16:26:27 +0300 |
From: Paul Burton <address@hidden>
The tv argument to the settimeofday syscall is allowed to be NULL, if
the program only wishes to provide the timezone. QEMU previously
returned -EFAULT when tv was NULL. Instead, execute the syscall &
provide NULL to the kernel as the target program expected.
Signed-off-by: Paul Burton <address@hidden>
Signed-off-by: Riku Voipio <address@hidden>
---
linux-user/syscall.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 0ce1a4e..8e2762b 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -6401,11 +6401,15 @@ abi_long do_syscall(void *cpu_env, int num, abi_long
arg1,
break;
case TARGET_NR_settimeofday:
{
- struct timeval tv;
+ struct timeval tv, *ptv = NULL;
struct timezone tz, *ptz = NULL;
- if (copy_from_user_timeval(&tv, arg1))
- goto efault;
+ if (arg1) {
+ if (copy_from_user_timeval(&tv, arg1)) {
+ goto efault;
+ }
+ ptv = &tv;
+ }
if (arg2) {
if (copy_from_user_timezone(&tz, arg2)) {
@@ -6414,7 +6418,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
ptz = &tz;
}
- ret = get_errno(settimeofday(&tv, ptz));
+ ret = get_errno(settimeofday(ptv, ptz));
}
break;
#if defined(TARGET_NR_select)
--
2.0.0
- [Qemu-devel] [PULL 00/19] linux-user changes for 2.1, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 02/19] Add support for the arm breakpoint syscall, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 04/19] linux-user: translate the result of getsockopt SO_TYPE, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 03/19] linux-user: added fake open() for /proc/self/cmdline, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 09/19] linux-user: support strace of epoll_create1, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 10/19] linux-user: fix struct target_epoll_event layout for MIPS, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 13/19] linux-user: support timerfd_{create, gettime, settime} syscalls, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 01/19] Add support for MAP_NORESERVE mmap flag., riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 17/19] linux-user: support the unshare syscall, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 12/19] linux-user: allow NULL tv argument for settimeofday,
riku . voipio <=
- [Qemu-devel] [PULL 11/19] linux-user: respect timezone for settimeofday, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 05/19] linux-user: support SO_ACCEPTCONN getsockopt option, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 16/19] linux-user: support the setns syscall, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 07/19] linux-user: support SO_PASSSEC setsockopt option, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 14/19] linux-user: support ioprio_{get, set} syscalls, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 15/19] linux-user: support {name_to, open_by}_handle_at syscalls, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 08/19] linux-user: allow NULL arguments to mount, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 06/19] linux-user: support SO_{SND, RCV}BUFFORCE setsockopt options, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 19/19] linux-user: support the SIOCGIFINDEX ioctl, riku . voipio, 2014/06/23
- [Qemu-devel] [PULL 18/19] linux-user: support the KDSIGACCEPT ioctl, riku . voipio, 2014/06/23