From nobody Thu Apr 25 10:24:29 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1557852255; cv=none; d=zoho.com; s=zohoarc; b=CPk9c/YVw4SiPRFwyYaMpS8ZETcFPO1BJLiR2CbfVTApcdNKEIIbkNjSJ9zG2FePxFySnDBLJa5NvwaUr9hk7/Au13FmOxTNoGynRKpMI6VFup4QQAkw3tgjvgnrwLtwZYZGHwN07JavTTlAcwJs8lC0fkT2c1OAs4jD2ruKwAg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1557852255; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=C2L7qrjKfez1a7dSVvCNMy68h814xlyFROz6v0UnslU=; b=KWCQ7jAs37u/AgHrha2Los2/eHpnCMaL8j4eusyAfsmwZlAP2CLdbB1fiiYXokOEdme1yXD2hYS3RflgdcN1SZCwjjSAx6kXEO5KUzBi+vaWnPDrSQZ5kkdnCoWbZO9V57/BkT/7LCRoOZZ8oYw/hH5z603Fi/Gs7/IFqvDBsHo= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1557852255546918.3279904431475; Tue, 14 May 2019 09:44:15 -0700 (PDT) Received: from localhost ([127.0.0.1]:51139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQaXA-00054A-4q for importer@patchew.org; Tue, 14 May 2019 12:44:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQYpr-00034L-JK for qemu-devel@nongnu.org; Tue, 14 May 2019 10:55:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQYpp-0005v2-JN for qemu-devel@nongnu.org; Tue, 14 May 2019 10:55:19 -0400 Received: from mirror2.csie.ntu.edu.tw ([140.112.30.76]:41966 helo=wens.csie.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQYpo-0005pb-7e for qemu-devel@nongnu.org; Tue, 14 May 2019 10:55:17 -0400 Received: by wens.csie.org (Postfix, from userid 1000) id BE4CD5FDB8; Tue, 14 May 2019 22:55:07 +0800 (CST) From: Chen-Yu Tsai To: qemu-devel@nongnu.org Date: Tue, 14 May 2019 22:53:46 +0800 Message-Id: <20190514145346.20758-1-wens@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 140.112.30.76 X-Mailman-Approved-At: Tue, 14 May 2019 12:42:57 -0400 Subject: [Qemu-devel] [PATCH] linux-user: Pass through nanosecond timestamp components for stat syscalls X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Riku Voipio , Laurent Vivier , Chen-Yu Tsai Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" From: Chen-Yu Tsai Since Linux 2.6 the stat syscalls have mostly supported nanosecond components for each of the file-related timestamps. QEMU user mode emulation currently does not pass through the nanosecond portion of the timestamp, even when the host system fills in the value. This results in a mismatch when run on subsecond resolution filesystems such as ext4 or XFS. An example of this leading to inconsistency is cross-debootstraping a full desktop root filesystem of Debian Buster. Recent versions of fontconfig store the full timestamp (instead of just the second portion) of the directory in its per-directory cache file, and checks this against the directory to see if the cache is up-to-date. With QEMU user mode emulation, the timestamp stored is incorrect, and upon booting the rootfs natively, fontconfig discovers the mismatch, and proceeds to rebuild the cache on the comparatively slow machine (low-power ARM vs x86). This stalls the first attempt to open whatever application that incorporates fontconfig. This patch renames the "unused" padding trailing each timestamp element to its nanosecond counterpart name if such an element exists in the kernel sources for the given platform. Not all do. Then have the syscall wrapper fill in the nanosecond portion if the host supports it, as specified by the _POSIX_C_SOURCE and _XOPEN_SOURCE feature macros. Recent versions of glibc only use stat64 and newfstatat syscalls on 32-bit and 64-bit platforms respectively. The changes in this patch were tested by directly calling the stat, stat64 and newfstatat syscalls directly, in addition to the glibc wrapper, on arm and aarch64 little endian targets. Signed-off-by: Chen-Yu Tsai Reviewed-by: Laurent Vivier --- This issue was found while integrating some software that uses newer versions of fontconfig into Raspbian images. We found that the first launch of said software always stalls with fontconfig regenerating its font cache files. Upon closer examination I found the timestamps were not matching. The rest is explained above. Currently we're just working around the problem by patching the correct timestamps into the cache files after the fact. Please consider this a drive-by scratch-my-own-itch contribution, but I will stick around to deal with any comments raised during review. I'm not on the mailing lists either, so please keep me in CC. checkpatch returns "ERROR: code indent should never use tabs" for linux-user/syscall_defs.h, however as far as I can tell the whole file is indented with tabs. I'm not sure what to make of this. Finally, I think this could be worth backporting to older versions. --- linux-user/syscall.c | 18 ++++++++++++++++++ linux-user/syscall_defs.h | 36 ++++++++++++++++++------------------ 2 files changed, 36 insertions(+), 18 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index f5ff6f5dc8..dcd6f5d806 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -6408,6 +6408,11 @@ static inline abi_long host_to_target_stat64(void *c= pu_env, __put_user(host_st->st_atime, &target_st->target_st_atime); __put_user(host_st->st_mtime, &target_st->target_st_mtime); __put_user(host_st->st_ctime, &target_st->target_st_ctime); +#if _POSIX_C_SOURCE >=3D 200809L || _XOPEN_SOURCE >=3D 700 + __put_user(host_st->st_atim.tv_nsec, &target_st->target_st_atime_n= sec); + __put_user(host_st->st_mtim.tv_nsec, &target_st->target_st_mtime_n= sec); + __put_user(host_st->st_ctim.tv_nsec, &target_st->target_st_ctime_n= sec); +#endif unlock_user_struct(target_st, target_addr, 1); } else #endif @@ -6438,6 +6443,11 @@ static inline abi_long host_to_target_stat64(void *c= pu_env, __put_user(host_st->st_atime, &target_st->target_st_atime); __put_user(host_st->st_mtime, &target_st->target_st_mtime); __put_user(host_st->st_ctime, &target_st->target_st_ctime); +#if _POSIX_C_SOURCE >=3D 200809L || _XOPEN_SOURCE >=3D 700 + __put_user(host_st->st_atim.tv_nsec, &target_st->target_st_atime_n= sec); + __put_user(host_st->st_mtim.tv_nsec, &target_st->target_st_mtime_n= sec); + __put_user(host_st->st_ctim.tv_nsec, &target_st->target_st_ctime_n= sec); +#endif unlock_user_struct(target_st, target_addr, 1); } =20 @@ -8866,6 +8876,14 @@ static abi_long do_syscall1(void *cpu_env, int num, = abi_long arg1, __put_user(st.st_atime, &target_st->target_st_atime); __put_user(st.st_mtime, &target_st->target_st_mtime); __put_user(st.st_ctime, &target_st->target_st_ctime); +#if _POSIX_C_SOURCE >=3D 200809L || _XOPEN_SOURCE >=3D 700 + __put_user(st.st_atim.tv_nsec, + &target_st->target_st_atime_nsec); + __put_user(st.st_mtim.tv_nsec, + &target_st->target_st_mtime_nsec); + __put_user(st.st_ctim.tv_nsec, + &target_st->target_st_ctime_nsec); +#endif unlock_user_struct(target_st, arg2, 1); } } diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 12c8407144..252e69b76e 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -1192,11 +1192,11 @@ struct target_stat { abi_ulong st_blksize; abi_ulong st_blocks; abi_ulong target_st_atime; - abi_ulong __unused1; + abi_ulong target_st_atime_nsec; abi_ulong target_st_mtime; - abi_ulong __unused2; + abi_ulong target_st_mtime_nsec; abi_ulong target_st_ctime; - abi_ulong __unused3; + abi_ulong target_st_ctime_nsec; abi_ulong __unused4; abi_ulong __unused5; }; @@ -1228,13 +1228,13 @@ struct target_stat64 { abi_ulong __pad4; /* future possible st_blocks high bits */ =20 abi_ulong target_st_atime; - abi_ulong __pad5; + abi_ulong target_st_atime_nsec; =20 abi_ulong target_st_mtime; - abi_ulong __pad6; + abi_ulong target_st_mtime_nsec; =20 abi_ulong target_st_ctime; - abi_ulong __pad7; /* will be high 32 bits of ctime someday */ + abi_ulong target_st_ctime_nsec; =20 unsigned long long st_ino; } QEMU_PACKED; @@ -1313,13 +1313,13 @@ struct target_stat64 { unsigned int st_blocks; =20 abi_ulong target_st_atime; - abi_ulong __unused1; + abi_ulong target_st_atime_nsec; =20 abi_ulong target_st_mtime; - abi_ulong __unused2; + abi_ulong target_st_mtime_nsec; =20 abi_ulong target_st_ctime; - abi_ulong __unused3; + abi_ulong target_st_ctime_nsec; =20 abi_ulong __unused4[3]; }; @@ -1336,14 +1336,14 @@ struct target_stat { unsigned short st_rdev; abi_long st_size; abi_long target_st_atime; - abi_ulong __unused1; + abi_ulong target_st_atime_nsec; abi_long target_st_mtime; - abi_ulong __unused2; + abi_ulong target_st_mtime_nsec; abi_long target_st_ctime; - abi_ulong __unused3; + abi_ulong target_st_ctime_nsec; abi_long st_blksize; abi_long st_blocks; - abi_ulong __unused4[2]; + abi_ulong __unused1[2]; }; =20 #define TARGET_HAS_STRUCT_STAT64 @@ -1371,16 +1371,16 @@ struct target_stat64 { unsigned int st_blocks; =20 unsigned int target_st_atime; - unsigned int __unused1; + unsigned int target_st_atime_nsec; =20 unsigned int target_st_mtime; - unsigned int __unused2; + unsigned int target_st_mtime_nsec; =20 unsigned int target_st_ctime; - unsigned int __unused3; + unsigned int target_st_ctime_nsec; =20 - unsigned int __unused4; - unsigned int __unused5; + unsigned int __unused1; + unsigned int __unused2; }; =20 #elif defined(TARGET_PPC) --=20 2.20.1