1use crate::fd::AsFd;
4use crate::fs::AtFlags;
5use crate::{backend, io, path};
6use backend::c;
7use bitflags::bitflags;
8
9#[cfg(feature = "linux_4_11")]
10use backend::fs::syscalls::statx as _statx;
11#[cfg(not(feature = "linux_4_11"))]
12use compat::statx as _statx;
13
14#[repr(C)]
16#[derive(Debug, Copy, Clone)]
17#[allow(missing_docs)]
18#[non_exhaustive]
19pub struct Statx {
20 pub stx_mask: u32,
21 pub stx_blksize: u32,
22 pub stx_attributes: StatxAttributes,
23 pub stx_nlink: u32,
24 pub stx_uid: u32,
25 pub stx_gid: u32,
26 pub stx_mode: u16,
27 pub(crate) __spare0: [u16; 1],
28 pub stx_ino: u64,
29 pub stx_size: u64,
30 pub stx_blocks: u64,
31 pub stx_attributes_mask: StatxAttributes,
32 pub stx_atime: StatxTimestamp,
33 pub stx_btime: StatxTimestamp,
34 pub stx_ctime: StatxTimestamp,
35 pub stx_mtime: StatxTimestamp,
36 pub stx_rdev_major: u32,
37 pub stx_rdev_minor: u32,
38 pub stx_dev_major: u32,
39 pub stx_dev_minor: u32,
40 pub stx_mnt_id: u64,
41 pub stx_dio_mem_align: u32,
42 pub stx_dio_offset_align: u32,
43 pub stx_subvol: u64,
44 pub stx_atomic_write_unit_min: u32,
45 pub stx_atomic_write_unit_max: u32,
46 pub stx_atomic_write_segments_max: u32,
47 pub(crate) __spare1: [u32; 1],
48 pub(crate) __spare3: [u64; 9],
49}
50
51#[repr(C)]
53#[derive(Debug, Copy, Clone)]
54#[non_exhaustive]
55pub struct StatxTimestamp {
56 pub tv_sec: i64,
58
59 pub tv_nsec: u32,
61
62 pub(crate) __reserved: i32,
63}
64
65bitflags! {
66 #[repr(transparent)]
70 #[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
71 pub struct StatxFlags: u32 {
72 const TYPE = c::STATX_TYPE;
74
75 const MODE = c::STATX_MODE;
77
78 const NLINK = c::STATX_NLINK;
80
81 const UID = c::STATX_UID;
83
84 const GID = c::STATX_GID;
86
87 const ATIME = c::STATX_ATIME;
89
90 const MTIME = c::STATX_MTIME;
92
93 const CTIME = c::STATX_CTIME;
95
96 const INO = c::STATX_INO;
98
99 const SIZE = c::STATX_SIZE;
101
102 const BLOCKS = c::STATX_BLOCKS;
104
105 const BASIC_STATS = c::STATX_BASIC_STATS;
107
108 const BTIME = c::STATX_BTIME;
110
111 const MNT_ID = c::STATX_MNT_ID;
113
114 const DIOALIGN = c::STATX_DIOALIGN;
116
117 const ALL = c::STATX_ALL;
119
120 const _ = !0;
122 }
123}
124
125bitflags! {
126 #[repr(transparent)]
128 #[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]
129 pub struct StatxAttributes: u64 {
130 const COMPRESSED = c::STATX_ATTR_COMPRESSED as u64;
132
133 const IMMUTABLE = c::STATX_ATTR_IMMUTABLE as u64;
135
136 const APPEND = c::STATX_ATTR_APPEND as u64;
138
139 const NODUMP = c::STATX_ATTR_NODUMP as u64;
141
142 const ENCRYPTED = c::STATX_ATTR_ENCRYPTED as u64;
144
145 const AUTOMOUNT = c::STATX_ATTR_AUTOMOUNT as u64;
147
148 const MOUNT_ROOT = c::STATX_ATTR_MOUNT_ROOT as u64;
150
151 const VERITY = c::STATX_ATTR_VERITY as u64;
153
154 const DAX = c::STATX_ATTR_DAX as u64;
156
157 const _ = !0;
159 }
160}
161
162#[inline]
203pub fn statx<P: path::Arg, Fd: AsFd>(
204 dirfd: Fd,
205 path: P,
206 flags: AtFlags,
207 mask: StatxFlags,
208) -> io::Result<Statx> {
209 path.into_with_c_str(|path| _statx(dirfd.as_fd(), path, flags, mask))
210}
211
212#[cfg(not(feature = "linux_4_11"))]
213mod compat {
214 use crate::fd::BorrowedFd;
215 use crate::ffi::CStr;
216 use crate::fs::{AtFlags, Statx, StatxFlags};
217 use crate::{backend, io};
218 use core::sync::atomic::{AtomicU8, Ordering};
219
220 static STATX_STATE: AtomicU8 = AtomicU8::new(0);
228
229 #[inline]
230 pub fn statx(
231 dirfd: BorrowedFd<'_>,
232 path: &CStr,
233 flags: AtFlags,
234 mask: StatxFlags,
235 ) -> io::Result<Statx> {
236 match STATX_STATE.load(Ordering::Relaxed) {
237 0 => statx_init(dirfd, path, flags, mask),
238 1 => Err(io::Errno::NOSYS),
239 _ => backend::fs::syscalls::statx(dirfd, path, flags, mask),
240 }
241 }
242
243 fn statx_init(
245 dirfd: BorrowedFd<'_>,
246 path: &CStr,
247 flags: AtFlags,
248 mask: StatxFlags,
249 ) -> io::Result<Statx> {
250 match backend::fs::syscalls::statx(dirfd, path, flags, mask) {
251 Err(err) => statx_error(err),
252 result => {
253 STATX_STATE.store(2, Ordering::Relaxed);
254 result
255 }
256 }
257 }
258
259 #[cold]
263 fn statx_error(err: io::Errno) -> io::Result<Statx> {
264 if backend::fs::syscalls::is_statx_available() {
265 STATX_STATE.store(2, Ordering::Relaxed);
268 Err(err)
269 } else {
270 STATX_STATE.store(1, Ordering::Relaxed);
272 Err(io::Errno::NOSYS)
273 }
274 }
275}