[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 6/6] linux-user: Fix 'utimensat()' implementation
From: |
Laurent Vivier |
Subject: |
[PULL 6/6] linux-user: Fix 'utimensat()' implementation |
Date: |
Sun, 23 Aug 2020 16:59:12 +0200 |
From: Filip Bozuta <Filip.Bozuta@syrmia.com>
Implementation of syscall 'utimensat()' in 'syscall.c' uses functions
target_to_host/host_to_target_timespec() to convert values of
'struct timespec' between host and target. However, the implementation
doesn't check whether the conversion succeeds and thus can cause an
inappropriate error or succeed unappropriately instead of setting errno
EFAULT ('Bad address') which is supposed to be set in these cases.
This was confirmed with the LTP test for utimensat ('testcases/utimensat')
which fails for test cases when the errno EFAULT is expected. After changes
from this patch, the test passes for all test cases.
Signed-off-by: Filip Bozuta <Filip.Bozuta@syrmia.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20200811113101.6636-1-Filip.Bozuta@syrmia.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
linux-user/syscall.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index bbb61a59c72f..b4a7b605f3d4 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -11919,8 +11919,13 @@ static abi_long do_syscall1(void *cpu_env, int num,
abi_long arg1,
if (!arg3) {
tsp = NULL;
} else {
- target_to_host_timespec(ts, arg3);
- target_to_host_timespec(ts+1, arg3+sizeof(struct
target_timespec));
+ if (target_to_host_timespec(ts, arg3)) {
+ return -TARGET_EFAULT;
+ }
+ if (target_to_host_timespec(ts + 1, arg3 +
+ sizeof(struct target_timespec))) {
+ return -TARGET_EFAULT;
+ }
tsp = ts;
}
if (!arg2)
--
2.26.2
- [PULL 0/6] Linux user for 5.2 patches, Laurent Vivier, 2020/08/23
- [PULL 1/6] linux-user: Fix "print_fdset()" in "strace.c" to not print ", " after last value, Laurent Vivier, 2020/08/23
- [PULL 5/6] linux-user: Add support for a group of 2038 safe syscalls, Laurent Vivier, 2020/08/23
- [PULL 6/6] linux-user: Fix 'utimensat()' implementation,
Laurent Vivier <=
- [PULL 3/6] linux-user: Adjust guest page protection for the host, Laurent Vivier, 2020/08/23
- [PULL 2/6] linux-user: Validate mmap/mprotect prot value, Laurent Vivier, 2020/08/23
- [PULL 4/6] linux-user: Modify 'target_to_host/host_to_target_itimerspec()', Laurent Vivier, 2020/08/23
- Re: [PULL 0/6] Linux user for 5.2 patches, Peter Maydell, 2020/08/23