qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: riku.voipio@linaro.org
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL v2 02/38] linux-user: Consistently return host errnos from do_openat()
Date: Fri, 27 May 2016 15:59:53 +0300	[thread overview]
Message-ID: <a3ca7bb2592010eedca31abd11d3ab451cf3b738.1464353863.git.riku.voipio@linaro.org> (raw)
In-Reply-To: <cover.1464353863.git.riku.voipio@linaro.org>

From: Peter Maydell <peter.maydell@linaro.org>

The function do_openat() is not consistent about whether it is
returning a host errno or a guest errno in case of failure.
Standardise on returning -1 with errno set (ie caller has
to call get_errno()).

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reported-by: Timothy Edward Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
---
 linux-user/syscall.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 5246f36..f4c2e19 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5559,7 +5559,9 @@ static int open_self_cmdline(void *cpu_env, int fd)
 
         nb_read = read(fd_orig, buf, sizeof(buf));
         if (nb_read < 0) {
+            int e = errno;
             fd_orig = close(fd_orig);
+            errno = e;
             return -1;
         } else if (nb_read == 0) {
             break;
@@ -5579,7 +5581,9 @@ static int open_self_cmdline(void *cpu_env, int fd)
 
         if (word_skipped) {
             if (write(fd, cp_buf, nb_read) != nb_read) {
+                int e = errno;
                 close(fd_orig);
+                errno = e;
                 return -1;
             }
         }
@@ -5599,7 +5603,7 @@ static int open_self_maps(void *cpu_env, int fd)
 
     fp = fopen("/proc/self/maps", "r");
     if (fp == NULL) {
-        return -EACCES;
+        return -1;
     }
 
     while ((read = getline(&line, &len, fp)) != -1) {
@@ -5743,7 +5747,7 @@ static int open_net_route(void *cpu_env, int fd)
 
     fp = fopen("/proc/net/route", "r");
     if (fp == NULL) {
-        return -EACCES;
+        return -1;
     }
 
     /* read header */
@@ -5793,7 +5797,7 @@ static int do_openat(void *cpu_env, int dirfd, const char *pathname, int flags,
 
     if (is_proc_myself(pathname, "exe")) {
         int execfd = qemu_getauxval(AT_EXECFD);
-        return execfd ? execfd : get_errno(sys_openat(dirfd, exec_path, flags, mode));
+        return execfd ? execfd : sys_openat(dirfd, exec_path, flags, mode);
     }
 
     for (fake_open = fakes; fake_open->filename; fake_open++) {
@@ -5819,7 +5823,9 @@ static int do_openat(void *cpu_env, int dirfd, const char *pathname, int flags,
         unlink(filename);
 
         if ((r = fake_open->fill(cpu_env, fd))) {
+            int e = errno;
             close(fd);
+            errno = e;
             return r;
         }
         lseek(fd, 0, SEEK_SET);
@@ -5827,7 +5833,7 @@ static int do_openat(void *cpu_env, int dirfd, const char *pathname, int flags,
         return fd;
     }
 
-    return get_errno(sys_openat(dirfd, path(pathname), flags, mode));
+    return sys_openat(dirfd, path(pathname), flags, mode);
 }
 
 #define TIMER_MAGIC 0x0caf0000
-- 
2.1.4

  parent reply	other threads:[~2016-05-27 13:00 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-27 12:59 [Qemu-devel] [PULL v2 00/38] linux-user pull request riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 01/38] linux-user: Check array bounds in errno conversion riku.voipio
2016-05-27 12:59 ` riku.voipio [this message]
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 03/38] linux-user: Reindent signal handling riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 04/38] linux-user: Define TARGET_ERESTART* errno values riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 05/38] linux-user: Renumber TARGET_QEMU_ESIGRETURN, make it not arch-specific riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 06/38] linux-user: Support for restarting system calls for x86 targets riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 07/38] linux-user: Support for restarting system calls for ARM targets riku.voipio
2016-05-27 12:59 ` [Qemu-devel] [PULL v2 08/38] linux-user: Support for restarting system calls for MIPS targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 09/38] linux-user: Support for restarting system calls for PPC targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 10/38] linux-user: Support for restarting system calls for SPARC targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 11/38] linux-user: Support for restarting system calls for SH4 targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 12/38] linux-user: Support for restarting system calls for Alpha targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 13/38] linux-user: Support for restarting system calls for UniCore32 targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 14/38] linux-user: Support for restarting system calls for OpenRISC targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 15/38] linux-user: Support for restarting system calls for M68K targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 16/38] linux-user: Support for restarting system calls for S390 targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 17/38] linux-user: Support for restarting system calls for CRIS targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 18/38] linux-user: Support for restarting system calls for tilegx targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 19/38] linux-user: Set r14 on exit from microblaze syscall riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 20/38] linux-user: Support for restarting system calls for Microblaze targets riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 21/38] linux-user: Add debug code to exercise restarting system calls riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 22/38] linux-user: Provide safe_syscall for fixing races between signals and syscalls riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 23/38] linux-user: Use safe_syscall for read and write system calls riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 24/38] linux-user: Use safe_syscall for open and openat " riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 25/38] linux-user: Use safe_syscall for wait " riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 26/38] linux-user: Use safe_syscall for execve syscall riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 27/38] linux-user: Use safe_syscall for pselect, select syscalls riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 28/38] linux-user: Use safe_syscall for futex syscall riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 29/38] linux-user: Handle negative values in timespec conversion riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 30/38] linux-user: Handle msgrcv error case correctly riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 31/38] linux-user: Use g_try_malloc() in do_msgrcv() riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 32/38] linux-user: x86_64: Don't use 16-bit UIDs riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 33/38] linux-user: Use direct syscalls for setuid(), etc riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 34/38] linux-user: arm: Remove ARM_cpsr and similar #defines riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 35/38] linux-user/signal.c: Generate opcode data for restorer in setup_rt_frame riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 36/38] linux-user/signal.c: Use target address instead of host address for microblaze restorer riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 37/38] linux-user/signal.c: Use s390 target space address instead of host space riku.voipio
2016-05-27 13:00 ` [Qemu-devel] [PULL v2 38/38] linux-user, target-ppc: fix use of MSR_LE riku.voipio
2016-05-27 14:03 ` [Qemu-devel] [PULL v2 00/38] linux-user pull request Peter Maydell

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=a3ca7bb2592010eedca31abd11d3ab451cf3b738.1464353863.git.riku.voipio@linaro.org \
    --to=riku.voipio@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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).