* [Qemu-devel] [PATCH] tests/tcg/multiarch: fix 32bit linux-test on 64bit host
@ 2018-11-13 17:54 Laurent Vivier
2018-11-14 10:23 ` Alex Bennée
0 siblings, 1 reply; 3+ messages in thread
From: Laurent Vivier @ 2018-11-13 17:54 UTC (permalink / raw)
To: Alex Bennée
Cc: qemu-devel, Peter Maydell, Philippe Mathieu-Daudé,
Laurent Vivier
Fix:
TEST linux-test on i386
.../tests/tcg/multiarch/linux-test.c:201: readdir
readdir() calls getdents64() to have the list of the entries in a
directory, and getdents64() can return 64bit d_off values (with ext4,
for instance) that will not fit in the 32bit d_off field of the
readdir() dirent structure.
To avoid that, use readdir64() to use a 64bit d_off field too.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
tests/tcg/multiarch/linux-test.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/tcg/multiarch/linux-test.c b/tests/tcg/multiarch/linux-test.c
index e80eccc0ce..fa4243fc04 100644
--- a/tests/tcg/multiarch/linux-test.c
+++ b/tests/tcg/multiarch/linux-test.c
@@ -83,7 +83,7 @@ static void test_file(void)
struct utimbuf tbuf;
struct iovec vecs[2];
DIR *dir;
- struct dirent *de;
+ struct dirent64 *de;
/* TODO: make common tempdir creation for tcg tests */
char template[] = "/tmp/linux-test-XXXXXX";
char *tmpdir = mkdtemp(template);
@@ -186,7 +186,7 @@ static void test_file(void)
error("opendir");
len = 0;
for(;;) {
- de = readdir(dir);
+ de = readdir64(dir);
if (!de)
break;
if (strcmp(de->d_name, ".") != 0 &&
--
2.17.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] tests/tcg/multiarch: fix 32bit linux-test on 64bit host
2018-11-13 17:54 [Qemu-devel] [PATCH] tests/tcg/multiarch: fix 32bit linux-test on 64bit host Laurent Vivier
@ 2018-11-14 10:23 ` Alex Bennée
2018-11-14 10:36 ` Laurent Vivier
0 siblings, 1 reply; 3+ messages in thread
From: Alex Bennée @ 2018-11-14 10:23 UTC (permalink / raw)
To: Laurent Vivier; +Cc: qemu-devel, Peter Maydell, Philippe Mathieu-Daudé
Laurent Vivier <laurent@vivier.eu> writes:
> Fix:
>
> TEST linux-test on i386
> .../tests/tcg/multiarch/linux-test.c:201: readdir
>
> readdir() calls getdents64() to have the list of the entries in a
> directory, and getdents64() can return 64bit d_off values (with ext4,
> for instance) that will not fit in the 32bit d_off field of the
> readdir() dirent structure.
>
> To avoid that, use readdir64() to use a 64bit d_off field too.
>
> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
I guess the only remaining question is do we want to defend the other
case or just say it's not supported and all binaries are expected to use
modern-ish libcs with getdents64?
Anyway:
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
I'm preparing a pull-req with a travis patch, would you like me to
include this as well?
> ---
> tests/tcg/multiarch/linux-test.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/tcg/multiarch/linux-test.c b/tests/tcg/multiarch/linux-test.c
> index e80eccc0ce..fa4243fc04 100644
> --- a/tests/tcg/multiarch/linux-test.c
> +++ b/tests/tcg/multiarch/linux-test.c
> @@ -83,7 +83,7 @@ static void test_file(void)
> struct utimbuf tbuf;
> struct iovec vecs[2];
> DIR *dir;
> - struct dirent *de;
> + struct dirent64 *de;
> /* TODO: make common tempdir creation for tcg tests */
> char template[] = "/tmp/linux-test-XXXXXX";
> char *tmpdir = mkdtemp(template);
> @@ -186,7 +186,7 @@ static void test_file(void)
> error("opendir");
> len = 0;
> for(;;) {
> - de = readdir(dir);
> + de = readdir64(dir);
> if (!de)
> break;
> if (strcmp(de->d_name, ".") != 0 &&
--
Alex Bennée
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] tests/tcg/multiarch: fix 32bit linux-test on 64bit host
2018-11-14 10:23 ` Alex Bennée
@ 2018-11-14 10:36 ` Laurent Vivier
0 siblings, 0 replies; 3+ messages in thread
From: Laurent Vivier @ 2018-11-14 10:36 UTC (permalink / raw)
To: Alex Bennée; +Cc: qemu-devel, Peter Maydell, Philippe Mathieu-Daudé
On 14/11/2018 11:23, Alex Bennée wrote:
>
> Laurent Vivier <laurent@vivier.eu> writes:
>
>> Fix:
>>
>> TEST linux-test on i386
>> .../tests/tcg/multiarch/linux-test.c:201: readdir
>>
>> readdir() calls getdents64() to have the list of the entries in a
>> directory, and getdents64() can return 64bit d_off values (with ext4,
>> for instance) that will not fit in the 32bit d_off field of the
>> readdir() dirent structure.
>>
>> To avoid that, use readdir64() to use a 64bit d_off field too.
>>
>> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
>
> I guess the only remaining question is do we want to defend the other
> case or just say it's not supported and all binaries are expected to use
> modern-ish libcs with getdents64?
IMO, linux-test is only a smoke test to check basic behaviour of qemu
usermode. So it's not really important on what readdir() relies on.
On my side, I generally run full LTP test on x86_64 and ppc64 hosts with
several debian distros and ubuntu guests, so the other cases should be
tested at one point.
> Anyway:
>
> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
>
> I'm preparing a pull-req with a travis patch, would you like me to
> include this as well?
Yes, please.
Thanks,
Laurent
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-11-14 10:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-13 17:54 [Qemu-devel] [PATCH] tests/tcg/multiarch: fix 32bit linux-test on 64bit host Laurent Vivier
2018-11-14 10:23 ` Alex Bennée
2018-11-14 10:36 ` Laurent Vivier
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).