* [Qemu-devel] [PATCH] fstatat size mismatch
@ 2012-02-09 19:05 Paul Brook
2012-02-10 22:50 ` Andreas Färber
0 siblings, 1 reply; 2+ messages in thread
From: Paul Brook @ 2012-02-09 19:05 UTC (permalink / raw)
To: qemu-devel; +Cc: Paul Brook
host_to_target_stat64 is used for both stat64 and newfstatat syscalls.
In the latter case we don't actually have a struct stat64.
The current TARGET_ABI_BITS test is wrong for some 64-bit ILP32 targets
(in particular MIPS N32). Check for TARGET_NR_newfstatat instead.
This will all break horribly if both newfstatat and stat64 are defined,
so also add a check for that.
Signed-off-by: Paul Brook <paul@codesourcery.com>
---
linux-user/syscall.c | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index ee32089..6e0999b 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -4474,6 +4474,16 @@ static inline abi_long host_to_target_timespec(abi_ulong target_addr,
return 0;
}
+/* The newfstatat syscall uses regular struct stat. However it never
+ occurs on targets with a struct stat64. This allows us to share
+ host_to_target_stat64 between newfstatat and fstatat64. */
+
+#if defined(TARGET_NR_newfstatat) && (defined(TARGET_NR_fstatat64) \
+ || defined(TARGET_NR_stat64) || defined(TARGET_NR_fstat64) \
+ || defined(TARGET_NR_lstat64))
+#error mismatched stat syscalls.
+#endif
+
#if defined(TARGET_NR_stat64) || defined(TARGET_NR_newfstatat)
static inline abi_long host_to_target_stat64(void *cpu_env,
abi_ulong target_addr,
@@ -4506,7 +4516,7 @@ static inline abi_long host_to_target_stat64(void *cpu_env,
} else
#endif
{
-#if TARGET_ABI_BITS == 64 && !defined(TARGET_ALPHA)
+#if defined(TARGET_NR_newfstatat)
struct target_stat *target_st;
#else
struct target_stat64 *target_st;
--
1.7.8.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] fstatat size mismatch
2012-02-09 19:05 [Qemu-devel] [PATCH] fstatat size mismatch Paul Brook
@ 2012-02-10 22:50 ` Andreas Färber
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Färber @ 2012-02-10 22:50 UTC (permalink / raw)
To: Paul Brook; +Cc: Riku Voipio, qemu-devel
A "linux-user: " prefix for the subject would be nice, but let's wait
for other comments first.
Am 09.02.2012 20:05, schrieb Paul Brook:
> host_to_target_stat64 is used for both stat64 and newfstatat syscalls.
> In the latter case we don't actually have a struct stat64.
> The current TARGET_ABI_BITS test is wrong for some 64-bit ILP32 targets
> (in particular MIPS N32). Check for TARGET_NR_newfstatat instead.
>
> This will all break horribly if both newfstatat and stat64 are defined,
> so also add a check for that.
>
> Signed-off-by: Paul Brook <paul@codesourcery.com>
> ---
CC'ing Riku.
Andreas
> linux-user/syscall.c | 12 +++++++++++-
> 1 files changed, 11 insertions(+), 1 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index ee32089..6e0999b 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -4474,6 +4474,16 @@ static inline abi_long host_to_target_timespec(abi_ulong target_addr,
> return 0;
> }
>
> +/* The newfstatat syscall uses regular struct stat. However it never
> + occurs on targets with a struct stat64. This allows us to share
> + host_to_target_stat64 between newfstatat and fstatat64. */
> +
> +#if defined(TARGET_NR_newfstatat) && (defined(TARGET_NR_fstatat64) \
> + || defined(TARGET_NR_stat64) || defined(TARGET_NR_fstat64) \
> + || defined(TARGET_NR_lstat64))
> +#error mismatched stat syscalls.
> +#endif
> +
> #if defined(TARGET_NR_stat64) || defined(TARGET_NR_newfstatat)
> static inline abi_long host_to_target_stat64(void *cpu_env,
> abi_ulong target_addr,
> @@ -4506,7 +4516,7 @@ static inline abi_long host_to_target_stat64(void *cpu_env,
> } else
> #endif
> {
> -#if TARGET_ABI_BITS == 64 && !defined(TARGET_ALPHA)
> +#if defined(TARGET_NR_newfstatat)
> struct target_stat *target_st;
> #else
> struct target_stat64 *target_st;
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-02-10 22:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-09 19:05 [Qemu-devel] [PATCH] fstatat size mismatch Paul Brook
2012-02-10 22:50 ` Andreas Färber
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).