Skip to content

Commit

Permalink
linux-user: Add "safe" parameter to do_guest_openat()
Browse files Browse the repository at this point in the history
gdbstub cannot meaningfully handle QEMU_ERESTARTSYS, and it doesn't
need to. Add a parameter to do_guest_openat() that makes it use
openat() instead of safe_openat(), so that it becomes usable from
gdbstub.

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230621203627.1808446-3-iii@linux.ibm.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230630180423.558337-33-alex.bennee@linaro.org>
  • Loading branch information
iii-i authored and stsquad committed Jul 3, 2023
1 parent a4dab0a commit 35be898
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion linux-user/qemu.h
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ typedef struct TaskState {

abi_long do_brk(abi_ulong new_brk);
int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
int flags, mode_t mode);
int flags, mode_t mode, bool safe);
ssize_t do_guest_readlink(const char *pathname, char *buf, size_t bufsiz);

/* user access */
Expand Down
18 changes: 13 additions & 5 deletions linux-user/syscall.c
Original file line number Diff line number Diff line change
Expand Up @@ -8449,7 +8449,7 @@ static int open_hardware(CPUArchState *cpu_env, int fd)
#endif

int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
int flags, mode_t mode)
int flags, mode_t mode, bool safe)
{
struct fake_open {
const char *filename;
Expand All @@ -8476,7 +8476,11 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
};

if (is_proc_myself(pathname, "exe")) {
return safe_openat(dirfd, exec_path, flags, mode);
if (safe) {
return safe_openat(dirfd, exec_path, flags, mode);
} else {
return openat(dirfd, exec_path, flags, mode);
}
}

for (fake_open = fakes; fake_open->filename; fake_open++) {
Expand Down Expand Up @@ -8518,7 +8522,11 @@ int do_guest_openat(CPUArchState *cpu_env, int dirfd, const char *pathname,
return fd;
}

return safe_openat(dirfd, path(pathname), flags, mode);
if (safe) {
return safe_openat(dirfd, path(pathname), flags, mode);
} else {
return openat(dirfd, path(pathname), flags, mode);
}
}

ssize_t do_guest_readlink(const char *pathname, char *buf, size_t bufsiz)
Expand Down Expand Up @@ -9027,7 +9035,7 @@ static abi_long do_syscall1(CPUArchState *cpu_env, int num, abi_long arg1,
return -TARGET_EFAULT;
ret = get_errno(do_guest_openat(cpu_env, AT_FDCWD, p,
target_to_host_bitmask(arg2, fcntl_flags_tbl),
arg3));
arg3, true));
fd_trans_unregister(ret);
unlock_user(p, arg1, 0);
return ret;
Expand All @@ -9037,7 +9045,7 @@ static abi_long do_syscall1(CPUArchState *cpu_env, int num, abi_long arg1,
return -TARGET_EFAULT;
ret = get_errno(do_guest_openat(cpu_env, arg1, p,
target_to_host_bitmask(arg3, fcntl_flags_tbl),
arg4));
arg4, true));
fd_trans_unregister(ret);
unlock_user(p, arg2, 0);
return ret;
Expand Down

0 comments on commit 35be898

Please sign in to comment.