* [PATCH v3 0/2] linux-user: openat() fixes
@ 2023-12-08 22:42 Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 1/2] linux-user: Define TARGET_O_LARGEFILE for aarch64 Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime Shu-Chun Weng
0 siblings, 2 replies; 6+ messages in thread
From: Shu-Chun Weng @ 2023-12-08 22:42 UTC (permalink / raw)
To: qemu-devel; +Cc: Laurent Vivier, Richard Henderson, Shu-Chun Weng
Since v2:
- More robust handling of `readlink()`
Since v1:
- Eliminate static buffers in do_guest_openat()
Shu-Chun Weng (2):
linux-user: Define TARGET_O_LARGEFILE for aarch64
linux-user: Fix openat() emulation to not modify atime
linux-user/aarch64/target_fcntl.h | 1 +
linux-user/syscall.c | 47 +++++++++++++++++++++++++------
2 files changed, 39 insertions(+), 9 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 1/2] linux-user: Define TARGET_O_LARGEFILE for aarch64
2023-12-08 22:42 [PATCH v3 0/2] linux-user: openat() fixes Shu-Chun Weng
@ 2023-12-08 22:42 ` Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime Shu-Chun Weng
1 sibling, 0 replies; 6+ messages in thread
From: Shu-Chun Weng @ 2023-12-08 22:42 UTC (permalink / raw)
To: qemu-devel; +Cc: Laurent Vivier, Richard Henderson, Shu-Chun Weng
In 050a1ba, when moving the macros from preprocessor-guarding to
file-based definition, TARGET_O_LARGEFILE appeared to have been
accidentally left off.
This may have correctness implication, but so far I was only confused by
strace's output.
Fixes: 050a1ba69a ("linux-user: move arm/aarch64/m68k fcntl definitions to [arm|aarch64|m68k]/target_fcntl.h")
Signed-off-by: Shu-Chun Weng <scw@google.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
---
linux-user/aarch64/target_fcntl.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/linux-user/aarch64/target_fcntl.h b/linux-user/aarch64/target_fcntl.h
index efdf6e5f05..55ab788a7c 100644
--- a/linux-user/aarch64/target_fcntl.h
+++ b/linux-user/aarch64/target_fcntl.h
@@ -11,6 +11,7 @@
#define TARGET_O_DIRECTORY 040000 /* must be a directory */
#define TARGET_O_NOFOLLOW 0100000 /* don't follow links */
#define TARGET_O_DIRECT 0200000 /* direct disk access hint */
+#define TARGET_O_LARGEFILE 0400000
#include "../generic/fcntl.h"
#endif
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime
2023-12-08 22:42 [PATCH v3 0/2] linux-user: openat() fixes Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 1/2] linux-user: Define TARGET_O_LARGEFILE for aarch64 Shu-Chun Weng
@ 2023-12-08 22:42 ` Shu-Chun Weng
2023-12-26 23:05 ` Shu-Chun Weng
2023-12-28 15:49 ` Helge Deller
1 sibling, 2 replies; 6+ messages in thread
From: Shu-Chun Weng @ 2023-12-08 22:42 UTC (permalink / raw)
To: qemu-devel; +Cc: Laurent Vivier, Richard Henderson, Shu-Chun Weng
Commit b8002058 strengthened openat()'s /proc detection by calling
realpath(3) on the given path, which allows various paths and symlinks
that points to the /proc file system to be intercepted correctly.
Using realpath(3), though, has a side effect that it reads the symlinks
along the way, and thus changes their atime. The results in the
following code snippet already get ~now instead of the real atime:
int fd = open("/path/to/a/symlink", O_PATH | O_NOFOLLOW);
struct stat st;
fstat(fd, st);
return st.st_atime;
This change opens a path that doesn't appear to be part of /proc
directly and checks the destination of /proc/self/fd/n to determine if
it actually refers to a file in /proc.
Neither this nor the existing code works with symlinks or indirect paths
(e.g. /tmp/../proc/self/exe) that points to /proc/self/exe because it
is itself a symlink, and both realpath(3) and /proc/self/fd/n will
resolve into the location of QEMU.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2004
Signed-off-by: Shu-Chun Weng <scw@google.com>
---
linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++---------
1 file changed, 38 insertions(+), 9 deletions(-)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index e384e14248..7c3772301f 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -8308,8 +8308,7 @@ static int open_net_route(CPUArchState *cpu_env, int fd)
int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
int flags, mode_t mode, bool safe)
{
- g_autofree char *proc_name = NULL;
- const char *pathname;
+ g_autofree char *pathname = NULL;
struct fake_open {
const char *filename;
int (*fill)(CPUArchState *cpu_env, int fd);
@@ -8334,12 +8333,42 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
{ NULL, NULL, NULL }
};
- /* if this is a file from /proc/ filesystem, expand full name */
- proc_name = realpath(fname, NULL);
- if (proc_name && strncmp(proc_name, "/proc/", 6) == 0) {
- pathname = proc_name;
+ if (strncmp(fname, "/proc/", 6) == 0) {
+ pathname = g_strdup(fname);
} else {
- pathname = fname;
+ g_autofree char *proc_name = NULL;
+ struct stat proc_stat;
+ int fd;
+
+ if (safe) {
+ fd = safe_openat(dirfd, path(fname), flags, mode);
+ } else {
+ fd = openat(dirfd, path(fname), flags, mode);
+ }
+ if (fd < 0) {
+ return fd;
+ }
+
+ /*
+ * Try to get the real path of the file we just opened. We avoid calling
+ * `realpath(3)` because it calls `readlink(2)` on symlinks which
+ * changes their atime. Note that since `/proc/self/exe` is a symlink,
+ * `pathname` will never resolve to it (neither will `realpath(3)`).
+ * That's why we check `fname` against the "/proc/" prefix first.
+ */
+ proc_name = g_strdup_printf("/proc/self/fd/%d", fd);
+ if (lstat(proc_name, &proc_stat) < 0 || !S_ISLNK(proc_stat.st_mode)) {
+ /* No procfs or something weird. Not going to dig further. */
+ return fd;
+ }
+ pathname = g_new(char, proc_stat.st_size + 1);
+ readlink(proc_name, pathname, proc_stat.st_size + 1);
+
+ /* if this is not a file from /proc/ filesystem, the fd is good as-is */
+ if (strncmp(pathname, "/proc/", 6) != 0) {
+ return fd;
+ }
+ close(fd);
}
if (is_proc_myself(pathname, "exe")) {
@@ -8390,9 +8419,9 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
}
if (safe) {
- return safe_openat(dirfd, path(pathname), flags, mode);
+ return safe_openat(dirfd, pathname, flags, mode);
} else {
- return openat(dirfd, path(pathname), flags, mode);
+ return openat(dirfd, pathname, flags, mode);
}
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime
2023-12-08 22:42 ` [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime Shu-Chun Weng
@ 2023-12-26 23:05 ` Shu-Chun Weng
2023-12-28 15:49 ` Helge Deller
1 sibling, 0 replies; 6+ messages in thread
From: Shu-Chun Weng @ 2023-12-26 23:05 UTC (permalink / raw)
To: qemu-devel; +Cc: Laurent Vivier, Richard Henderson
[-- Attachment #1.1: Type: text/plain, Size: 4365 bytes --]
ping~
On Fri, Dec 8, 2023 at 2:42 PM Shu-Chun Weng <scw@google.com> wrote:
> Commit b8002058 strengthened openat()'s /proc detection by calling
> realpath(3) on the given path, which allows various paths and symlinks
> that points to the /proc file system to be intercepted correctly.
>
> Using realpath(3), though, has a side effect that it reads the symlinks
> along the way, and thus changes their atime. The results in the
> following code snippet already get ~now instead of the real atime:
>
> int fd = open("/path/to/a/symlink", O_PATH | O_NOFOLLOW);
> struct stat st;
> fstat(fd, st);
> return st.st_atime;
>
> This change opens a path that doesn't appear to be part of /proc
> directly and checks the destination of /proc/self/fd/n to determine if
> it actually refers to a file in /proc.
>
> Neither this nor the existing code works with symlinks or indirect paths
> (e.g. /tmp/../proc/self/exe) that points to /proc/self/exe because it
> is itself a symlink, and both realpath(3) and /proc/self/fd/n will
> resolve into the location of QEMU.
>
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2004
> Signed-off-by: Shu-Chun Weng <scw@google.com>
> ---
> linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++---------
> 1 file changed, 38 insertions(+), 9 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index e384e14248..7c3772301f 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -8308,8 +8308,7 @@ static int open_net_route(CPUArchState *cpu_env, int
> fd)
> int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
> int flags, mode_t mode, bool safe)
> {
> - g_autofree char *proc_name = NULL;
> - const char *pathname;
> + g_autofree char *pathname = NULL;
> struct fake_open {
> const char *filename;
> int (*fill)(CPUArchState *cpu_env, int fd);
> @@ -8334,12 +8333,42 @@ int do_guest_openat(CPUArchState *cpu_env, int
> dirfd, const char *fname,
> { NULL, NULL, NULL }
> };
>
> - /* if this is a file from /proc/ filesystem, expand full name */
> - proc_name = realpath(fname, NULL);
> - if (proc_name && strncmp(proc_name, "/proc/", 6) == 0) {
> - pathname = proc_name;
> + if (strncmp(fname, "/proc/", 6) == 0) {
> + pathname = g_strdup(fname);
> } else {
> - pathname = fname;
> + g_autofree char *proc_name = NULL;
> + struct stat proc_stat;
> + int fd;
> +
> + if (safe) {
> + fd = safe_openat(dirfd, path(fname), flags, mode);
> + } else {
> + fd = openat(dirfd, path(fname), flags, mode);
> + }
> + if (fd < 0) {
> + return fd;
> + }
> +
> + /*
> + * Try to get the real path of the file we just opened. We avoid
> calling
> + * `realpath(3)` because it calls `readlink(2)` on symlinks which
> + * changes their atime. Note that since `/proc/self/exe` is a
> symlink,
> + * `pathname` will never resolve to it (neither will
> `realpath(3)`).
> + * That's why we check `fname` against the "/proc/" prefix first.
> + */
> + proc_name = g_strdup_printf("/proc/self/fd/%d", fd);
> + if (lstat(proc_name, &proc_stat) < 0 ||
> !S_ISLNK(proc_stat.st_mode)) {
> + /* No procfs or something weird. Not going to dig further. */
> + return fd;
> + }
> + pathname = g_new(char, proc_stat.st_size + 1);
> + readlink(proc_name, pathname, proc_stat.st_size + 1);
> +
> + /* if this is not a file from /proc/ filesystem, the fd is good
> as-is */
> + if (strncmp(pathname, "/proc/", 6) != 0) {
> + return fd;
> + }
> + close(fd);
> }
>
> if (is_proc_myself(pathname, "exe")) {
> @@ -8390,9 +8419,9 @@ int do_guest_openat(CPUArchState *cpu_env, int
> dirfd, const char *fname,
> }
>
> if (safe) {
> - return safe_openat(dirfd, path(pathname), flags, mode);
> + return safe_openat(dirfd, pathname, flags, mode);
> } else {
> - return openat(dirfd, path(pathname), flags, mode);
> + return openat(dirfd, pathname, flags, mode);
> }
> }
>
>
[-- Attachment #1.2: Type: text/html, Size: 5325 bytes --]
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4004 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime
2023-12-08 22:42 ` [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime Shu-Chun Weng
2023-12-26 23:05 ` Shu-Chun Weng
@ 2023-12-28 15:49 ` Helge Deller
2023-12-28 22:15 ` Shu-Chun Weng
1 sibling, 1 reply; 6+ messages in thread
From: Helge Deller @ 2023-12-28 15:49 UTC (permalink / raw)
To: Shu-Chun Weng, qemu-devel; +Cc: Laurent Vivier, Richard Henderson
On 12/8/23 23:42, Shu-Chun Weng wrote:
> Commit b8002058 strengthened openat()'s /proc detection by calling
> realpath(3) on the given path, which allows various paths and symlinks
> that points to the /proc file system to be intercepted correctly.
>
> Using realpath(3), though, has a side effect that it reads the symlinks
> along the way, and thus changes their atime. The results in the
> following code snippet already get ~now instead of the real atime:
>
> int fd = open("/path/to/a/symlink", O_PATH | O_NOFOLLOW);
> struct stat st;
> fstat(fd, st);
> return st.st_atime;
>
> This change opens a path that doesn't appear to be part of /proc
> directly and checks the destination of /proc/self/fd/n to determine if
> it actually refers to a file in /proc.
>
> Neither this nor the existing code works with symlinks or indirect paths
> (e.g. /tmp/../proc/self/exe) that points to /proc/self/exe because it
> is itself a symlink, and both realpath(3) and /proc/self/fd/n will
> resolve into the location of QEMU.
>
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2004
> Signed-off-by: Shu-Chun Weng <scw@google.com>
> ---
> linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++---------
> 1 file changed, 38 insertions(+), 9 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index e384e14248..7c3772301f 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -8308,8 +8308,7 @@ static int open_net_route(CPUArchState *cpu_env, int fd)
> int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
> int flags, mode_t mode, bool safe)
> {
> - g_autofree char *proc_name = NULL;
> - const char *pathname;
> + g_autofree char *pathname = NULL;
> struct fake_open {
> const char *filename;
> int (*fill)(CPUArchState *cpu_env, int fd);
> @@ -8334,12 +8333,42 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
> { NULL, NULL, NULL }
> };
>
> - /* if this is a file from /proc/ filesystem, expand full name */
> - proc_name = realpath(fname, NULL);
> - if (proc_name && strncmp(proc_name, "/proc/", 6) == 0) {
> - pathname = proc_name;
> + if (strncmp(fname, "/proc/", 6) == 0) {
> + pathname = g_strdup(fname);
> } else {
> - pathname = fname;
> + g_autofree char *proc_name = NULL;
> + struct stat proc_stat;
> + int fd;
> +
> + if (safe) {
> + fd = safe_openat(dirfd, path(fname), flags, mode);
> + } else {
> + fd = openat(dirfd, path(fname), flags, mode);
> + }
> + if (fd < 0) {
> + return fd;
> + }
> +
> + /*
> + * Try to get the real path of the file we just opened. We avoid calling
> + * `realpath(3)` because it calls `readlink(2)` on symlinks which
> + * changes their atime. Note that since `/proc/self/exe` is a symlink,
> + * `pathname` will never resolve to it (neither will `realpath(3)`).
> + * That's why we check `fname` against the "/proc/" prefix first.
> + */
> + proc_name = g_strdup_printf("/proc/self/fd/%d", fd);
> + if (lstat(proc_name, &proc_stat) < 0 || !S_ISLNK(proc_stat.st_mode)) {
> + /* No procfs or something weird. Not going to dig further. */
> + return fd;
> + }
> + pathname = g_new(char, proc_stat.st_size + 1);
> + readlink(proc_name, pathname, proc_stat.st_size + 1);
this gives a build error for me:
./qemu/linux-user/syscall.c:8365:9: error: ignoring return value of ‘readlink’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
Other than that, this patch indeed fixes the issue #2004
Reviewed-by: Helge Deller <deller@gmx.de>
Helge
> +
> + /* if this is not a file from /proc/ filesystem, the fd is good as-is */
> + if (strncmp(pathname, "/proc/", 6) != 0) {
> + return fd;
> + }
> + close(fd);
> }
>
> if (is_proc_myself(pathname, "exe")) {
> @@ -8390,9 +8419,9 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *fname,
> }
>
> if (safe) {
> - return safe_openat(dirfd, path(pathname), flags, mode);
> + return safe_openat(dirfd, pathname, flags, mode);
> } else {
> - return openat(dirfd, path(pathname), flags, mode);
> + return openat(dirfd, pathname, flags, mode);
> }
> }
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime
2023-12-28 15:49 ` Helge Deller
@ 2023-12-28 22:15 ` Shu-Chun Weng
0 siblings, 0 replies; 6+ messages in thread
From: Shu-Chun Weng @ 2023-12-28 22:15 UTC (permalink / raw)
To: Helge Deller; +Cc: qemu-devel, Laurent Vivier, Richard Henderson
[-- Attachment #1.1: Type: text/plain, Size: 5071 bytes --]
Yup, reproduced on a system with glibc built with fortified source. Sending
out version 4.
On Thu, Dec 28, 2023 at 7:49 AM Helge Deller <deller@gmx.de> wrote:
> On 12/8/23 23:42, Shu-Chun Weng wrote:
> > Commit b8002058 strengthened openat()'s /proc detection by calling
> > realpath(3) on the given path, which allows various paths and symlinks
> > that points to the /proc file system to be intercepted correctly.
> >
> > Using realpath(3), though, has a side effect that it reads the symlinks
> > along the way, and thus changes their atime. The results in the
> > following code snippet already get ~now instead of the real atime:
> >
> > int fd = open("/path/to/a/symlink", O_PATH | O_NOFOLLOW);
> > struct stat st;
> > fstat(fd, st);
> > return st.st_atime;
> >
> > This change opens a path that doesn't appear to be part of /proc
> > directly and checks the destination of /proc/self/fd/n to determine if
> > it actually refers to a file in /proc.
> >
> > Neither this nor the existing code works with symlinks or indirect paths
> > (e.g. /tmp/../proc/self/exe) that points to /proc/self/exe because it
> > is itself a symlink, and both realpath(3) and /proc/self/fd/n will
> > resolve into the location of QEMU.
> >
> > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2004
> > Signed-off-by: Shu-Chun Weng <scw@google.com>
> > ---
> > linux-user/syscall.c | 47 +++++++++++++++++++++++++++++++++++---------
> > 1 file changed, 38 insertions(+), 9 deletions(-)
> >
> > diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> > index e384e14248..7c3772301f 100644
> > --- a/linux-user/syscall.c
> > +++ b/linux-user/syscall.c
> > @@ -8308,8 +8308,7 @@ static int open_net_route(CPUArchState *cpu_env,
> int fd)
> > int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char
> *fname,
> > int flags, mode_t mode, bool safe)
> > {
> > - g_autofree char *proc_name = NULL;
> > - const char *pathname;
> > + g_autofree char *pathname = NULL;
> > struct fake_open {
> > const char *filename;
> > int (*fill)(CPUArchState *cpu_env, int fd);
> > @@ -8334,12 +8333,42 @@ int do_guest_openat(CPUArchState *cpu_env, int
> dirfd, const char *fname,
> > { NULL, NULL, NULL }
> > };
> >
> > - /* if this is a file from /proc/ filesystem, expand full name */
> > - proc_name = realpath(fname, NULL);
> > - if (proc_name && strncmp(proc_name, "/proc/", 6) == 0) {
> > - pathname = proc_name;
> > + if (strncmp(fname, "/proc/", 6) == 0) {
> > + pathname = g_strdup(fname);
> > } else {
> > - pathname = fname;
> > + g_autofree char *proc_name = NULL;
> > + struct stat proc_stat;
> > + int fd;
> > +
> > + if (safe) {
> > + fd = safe_openat(dirfd, path(fname), flags, mode);
> > + } else {
> > + fd = openat(dirfd, path(fname), flags, mode);
> > + }
> > + if (fd < 0) {
> > + return fd;
> > + }
> > +
> > + /*
> > + * Try to get the real path of the file we just opened. We
> avoid calling
> > + * `realpath(3)` because it calls `readlink(2)` on symlinks
> which
> > + * changes their atime. Note that since `/proc/self/exe` is a
> symlink,
> > + * `pathname` will never resolve to it (neither will
> `realpath(3)`).
> > + * That's why we check `fname` against the "/proc/" prefix
> first.
> > + */
> > + proc_name = g_strdup_printf("/proc/self/fd/%d", fd);
> > + if (lstat(proc_name, &proc_stat) < 0 ||
> !S_ISLNK(proc_stat.st_mode)) {
> > + /* No procfs or something weird. Not going to dig further.
> */
> > + return fd;
> > + }
> > + pathname = g_new(char, proc_stat.st_size + 1);
> > + readlink(proc_name, pathname, proc_stat.st_size + 1);
>
> this gives a build error for me:
> ./qemu/linux-user/syscall.c:8365:9: error: ignoring return value of
> ‘readlink’ declared with attribute ‘warn_unused_result’
> [-Werror=unused-result]
>
> Other than that, this patch indeed fixes the issue #2004
>
> Reviewed-by: Helge Deller <deller@gmx.de>
>
>
> Helge
>
> > +
> > + /* if this is not a file from /proc/ filesystem, the fd is good
> as-is */
> > + if (strncmp(pathname, "/proc/", 6) != 0) {
> > + return fd;
> > + }
> > + close(fd);
> > }
> >
> > if (is_proc_myself(pathname, "exe")) {
> > @@ -8390,9 +8419,9 @@ int do_guest_openat(CPUArchState *cpu_env, int
> dirfd, const char *fname,
> > }
> >
> > if (safe) {
> > - return safe_openat(dirfd, path(pathname), flags, mode);
> > + return safe_openat(dirfd, pathname, flags, mode);
> > } else {
> > - return openat(dirfd, path(pathname), flags, mode);
> > + return openat(dirfd, pathname, flags, mode);
> > }
> > }
> >
> >
>
>
[-- Attachment #1.2: Type: text/html, Size: 6424 bytes --]
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4004 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-12-28 22:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-08 22:42 [PATCH v3 0/2] linux-user: openat() fixes Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 1/2] linux-user: Define TARGET_O_LARGEFILE for aarch64 Shu-Chun Weng
2023-12-08 22:42 ` [PATCH v3 2/2] linux-user: Fix openat() emulation to not modify atime Shu-Chun Weng
2023-12-26 23:05 ` Shu-Chun Weng
2023-12-28 15:49 ` Helge Deller
2023-12-28 22:15 ` Shu-Chun Weng
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).