qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
	"Riku Voipio" <riku.voipio@iki.fi>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	"Laurent Vivier" <laurent@vivier.eu>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: [PULL 05/38] linux-user: Flush out implementation of gettimeofday
Date: Mon, 16 Mar 2020 17:15:17 +0100	[thread overview]
Message-ID: <20200316161550.336150-6-laurent@vivier.eu> (raw)
In-Reply-To: <20200316161550.336150-1-laurent@vivier.eu>

From: Richard Henderson <richard.henderson@linaro.org>

The first argument, timeval, is allowed to be NULL.

The second argument, timezone, was missing.  While its use is
deprecated, it is still present in the syscall.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200213032223.14643-6-richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
 linux-user/syscall.c | 27 +++++++++++++++++++++++++--
 1 file changed, 25 insertions(+), 2 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 5479d67a10be..811495c3a0bc 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -1228,6 +1228,23 @@ static inline abi_long host_to_target_timespec64(abi_ulong target_addr,
     return 0;
 }
 
+static inline abi_long copy_to_user_timezone(abi_ulong target_tz_addr,
+                                             struct timezone *tz)
+{
+    struct target_timezone *target_tz;
+
+    if (!lock_user_struct(VERIFY_WRITE, target_tz, target_tz_addr, 1)) {
+        return -TARGET_EFAULT;
+    }
+
+    __put_user(tz->tz_minuteswest, &target_tz->tz_minuteswest);
+    __put_user(tz->tz_dsttime, &target_tz->tz_dsttime);
+
+    unlock_user_struct(target_tz, target_tz_addr, 1);
+
+    return 0;
+}
+
 static inline abi_long copy_from_user_timezone(struct timezone *tz,
                                                abi_ulong target_tz_addr)
 {
@@ -8642,10 +8659,16 @@ static abi_long do_syscall1(void *cpu_env, int num, abi_long arg1,
     case TARGET_NR_gettimeofday:
         {
             struct timeval tv;
-            ret = get_errno(gettimeofday(&tv, NULL));
+            struct timezone tz;
+
+            ret = get_errno(gettimeofday(&tv, &tz));
             if (!is_error(ret)) {
-                if (copy_to_user_timeval(arg1, &tv))
+                if (arg1 && copy_to_user_timeval(arg1, &tv)) {
                     return -TARGET_EFAULT;
+                }
+                if (arg2 && copy_to_user_timezone(arg2, &tz)) {
+                    return -TARGET_EFAULT;
+                }
             }
         }
         return ret;
-- 
2.24.1



  parent reply	other threads:[~2020-03-16 18:06 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-16 16:15 [PULL 00/38] Linux user for 5.0 patches Laurent Vivier
2020-03-16 16:15 ` [PULL 01/38] target/i386: Renumber EXCP_SYSCALL Laurent Vivier
2020-03-16 16:15 ` [PULL 02/38] linux-user/i386: Split out gen_signal Laurent Vivier
2020-03-16 16:15 ` [PULL 03/38] linux-user/i386: Emulate x86_64 vsyscalls Laurent Vivier
2020-03-16 16:15 ` [PULL 04/38] linux-user: Add x86_64 vsyscall page to /proc/self/maps Laurent Vivier
2020-03-16 16:15 ` Laurent Vivier [this message]
2020-03-16 16:15 ` [PULL 06/38] linux-user: Add AT_EXECFN auxval Laurent Vivier
2020-03-16 16:15 ` [PULL 07/38] linux-user: do prlimit selectively Laurent Vivier
2020-03-16 16:15 ` [PULL 08/38] linux-user: fix socket() strace Laurent Vivier
2020-03-16 16:15 ` [PULL 09/38] linux-user: Update TASK_UNMAPPED_BASE for aarch64 Laurent Vivier
2020-03-16 16:15 ` [PULL 10/38] linux-user: Protect more syscalls Laurent Vivier
2020-03-16 16:15 ` [PULL 11/38] linux-user/syscall: Add support for clock_gettime64/clock_settime64 Laurent Vivier
2020-03-16 16:15 ` [PULL 12/38] linux-user: Support futex_time64 Laurent Vivier
2020-03-17 16:09   ` Laurent Vivier
2020-03-16 16:15 ` [PULL 13/38] linux-user/riscv: Update the syscall_nr's to the 5.5 kernel Laurent Vivier
2020-03-16 16:15 ` [PULL 14/38] linux-user: introduce parameters to generate syscall_nr.h Laurent Vivier
2020-03-16 16:15 ` [PULL 15/38] linux-user, alpha: add syscall table generation support Laurent Vivier
2020-03-16 16:15 ` [PULL 16/38] linux-user, hppa: " Laurent Vivier
2020-03-16 16:15 ` [PULL 17/38] linux-user, m68k: " Laurent Vivier
2020-03-16 16:15 ` [PULL 18/38] linux-user, xtensa: " Laurent Vivier
2020-03-16 16:15 ` [PULL 19/38] linux-user, sh4: " Laurent Vivier
2020-03-16 16:15 ` [PULL 20/38] linux-user, microblaze: " Laurent Vivier
2020-03-16 16:15 ` [PULL 21/38] linux-user, arm: " Laurent Vivier
2020-03-16 16:15 ` [PULL 22/38] linux-user, ppc: " Laurent Vivier
2020-03-16 16:15 ` [PULL 23/38] linux-user, s390x: remove syscall definitions for !TARGET_S390X Laurent Vivier
2020-03-16 16:15 ` [PULL 24/38] linux-user, s390x: add syscall table generation support Laurent Vivier
2020-03-16 16:15 ` [PULL 25/38] linux-user, sparc, sparc64: " Laurent Vivier
2020-03-16 16:15 ` [PULL 26/38] linux-user, x86_64, i386: cleanup TARGET_NR_arch_prctl Laurent Vivier
2020-03-16 16:15 ` [PULL 27/38] linux-user, i386: add syscall table generation support Laurent Vivier
2020-03-16 16:15 ` [PULL 28/38] linux-user, x86_64: " Laurent Vivier
2020-03-16 16:15 ` [PULL 29/38] linux-user, mips: " Laurent Vivier
2020-03-16 16:15 ` [PULL 30/38] linux-user, mips64: " Laurent Vivier
2020-03-16 16:15 ` [PULL 31/38] linux-user, scripts: add a script to update syscall.tbl Laurent Vivier
2020-03-16 16:15 ` [PULL 32/38] linux-user: update syscall.tbl from linux 0bf999f9c5e7 Laurent Vivier
2020-03-16 16:15 ` [PULL 33/38] linux-user,mips: move content of mips_syscall_args Laurent Vivier
2020-03-16 16:15 ` [PULL 34/38] linux-user,mips: update syscall-args-o32.c.inc Laurent Vivier
2020-03-16 16:15 ` [PULL 35/38] scripts: add a script to generate syscall_nr.h Laurent Vivier
2020-03-16 16:15 ` [PULL 36/38] linux-user, aarch64: sync syscall numbers with kernel v5.5 Laurent Vivier
2020-03-16 16:15 ` [PULL 37/38] linux-user, nios2: " Laurent Vivier
2020-03-16 16:15 ` [PULL 38/38] linux-user, openrisc: " Laurent Vivier
2020-03-16 19:17 ` [PULL 00/38] Linux user for 5.0 patches Peter Maydell
2020-03-17  7:49   ` Laurent Vivier
2020-03-16 21:59 ` no-reply
2020-03-16 23:43 ` no-reply
2020-03-17  1:09 ` no-reply
2020-03-17  2:01 ` no-reply
2020-03-17  2:13 ` no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200316161550.336150-6-laurent@vivier.eu \
    --to=laurent@vivier.eu \
    --cc=alex.bennee@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=riku.voipio@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).