1 /* Generic implementation of statx based on fstatat64.
2 Copyright (C) 2018-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
23 #include <sys/sysmacros.h>
25 /* Obtain the original definition of struct statx. */
26 #undef __statx_defined
27 #define statx original_statx
28 #include <bits/types/struct_statx.h>
31 static inline struct statx_timestamp
32 statx_convert_timestamp (struct timespec tv
)
34 return (struct statx_timestamp
) { tv
.tv_sec
, tv
.tv_nsec
};
37 /* Approximate emulation of statx. This will always fill in
38 POSIX-mandated attributes even if the underlying file system does
39 not actually support it (for example, GID and UID on file systems
40 without UNIX-style permissions). */
41 static __attribute__ ((unused
)) int
42 statx_generic (int fd
, const char *path
, int flags
,
43 unsigned int mask
, struct statx
*buf
)
45 /* Flags which need to be cleared before passing them to
47 static const int clear_flags
= AT_STATX_SYNC_AS_STAT
;
49 /* Flags supported by our emulation. */
50 static const int supported_flags
51 = AT_EMPTY_PATH
| AT_NO_AUTOMOUNT
| AT_SYMLINK_NOFOLLOW
| clear_flags
;
53 if (__glibc_unlikely ((flags
& ~supported_flags
) != 0))
60 int ret
= __fstatat64 (fd
, path
, &st
, flags
& ~clear_flags
);
64 /* The interface is defined in such a way that unused (padding)
65 fields have to be cleared. STATX_BASIC_STATS corresponds to the
66 data which is available via fstatat64. */
67 struct original_statx obuf
=
69 .stx_mask
= STATX_BASIC_STATS
,
70 .stx_blksize
= st
.st_blksize
,
71 .stx_nlink
= st
.st_nlink
,
74 .stx_mode
= st
.st_mode
,
76 .stx_size
= st
.st_size
,
77 .stx_blocks
= st
.st_blocks
,
78 .stx_atime
= statx_convert_timestamp (st
.st_atim
),
79 .stx_ctime
= statx_convert_timestamp (st
.st_ctim
),
80 .stx_mtime
= statx_convert_timestamp (st
.st_mtim
),
81 .stx_rdev_major
= major (st
.st_rdev
),
82 .stx_rdev_minor
= minor (st
.st_rdev
),
83 .stx_dev_major
= major (st
.st_dev
),
84 .stx_dev_minor
= minor (st
.st_dev
),
86 _Static_assert (sizeof (*buf
) >= sizeof (obuf
), "struct statx size");
87 memcpy (buf
, &obuf
, sizeof (obuf
));