std/sys/fs/
unix.rs

1#![allow(nonstandard_style)]
2#![allow(unsafe_op_in_unsafe_fn)]
3// miri has some special hacks here that make things unused.
4#![cfg_attr(miri, allow(unused))]
5
6#[cfg(test)]
7mod tests;
8
9#[cfg(all(target_os = "linux", target_env = "gnu"))]
10use libc::c_char;
11#[cfg(any(
12    all(target_os = "linux", not(target_env = "musl")),
13    target_os = "android",
14    target_os = "fuchsia",
15    target_os = "hurd",
16    target_os = "illumos",
17))]
18use libc::dirfd;
19#[cfg(any(target_os = "fuchsia", target_os = "illumos"))]
20use libc::fstatat as fstatat64;
21#[cfg(any(all(target_os = "linux", not(target_env = "musl")), target_os = "hurd"))]
22use libc::fstatat64;
23#[cfg(any(
24    target_os = "android",
25    target_os = "solaris",
26    target_os = "fuchsia",
27    target_os = "redox",
28    target_os = "illumos",
29    target_os = "aix",
30    target_os = "nto",
31    target_os = "vita",
32    all(target_os = "linux", target_env = "musl"),
33))]
34use libc::readdir as readdir64;
35#[cfg(not(any(
36    target_os = "android",
37    target_os = "linux",
38    target_os = "solaris",
39    target_os = "illumos",
40    target_os = "l4re",
41    target_os = "fuchsia",
42    target_os = "redox",
43    target_os = "aix",
44    target_os = "nto",
45    target_os = "vita",
46    target_os = "hurd",
47)))]
48use libc::readdir_r as readdir64_r;
49#[cfg(any(all(target_os = "linux", not(target_env = "musl")), target_os = "hurd"))]
50use libc::readdir64;
51#[cfg(target_os = "l4re")]
52use libc::readdir64_r;
53use libc::{c_int, mode_t};
54#[cfg(target_os = "android")]
55use libc::{
56    dirent as dirent64, fstat as fstat64, fstatat as fstatat64, ftruncate64, lseek64,
57    lstat as lstat64, off64_t, open as open64, stat as stat64,
58};
59#[cfg(not(any(
60    all(target_os = "linux", not(target_env = "musl")),
61    target_os = "l4re",
62    target_os = "android",
63    target_os = "hurd",
64)))]
65use libc::{
66    dirent as dirent64, fstat as fstat64, ftruncate as ftruncate64, lseek as lseek64,
67    lstat as lstat64, off_t as off64_t, open as open64, stat as stat64,
68};
69#[cfg(any(
70    all(target_os = "linux", not(target_env = "musl")),
71    target_os = "l4re",
72    target_os = "hurd"
73))]
74use libc::{dirent64, fstat64, ftruncate64, lseek64, lstat64, off64_t, open64, stat64};
75
76use crate::ffi::{CStr, OsStr, OsString};
77use crate::fmt::{self, Write as _};
78use crate::fs::TryLockError;
79use crate::io::{self, BorrowedCursor, Error, IoSlice, IoSliceMut, SeekFrom};
80use crate::os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd};
81use crate::os::unix::prelude::*;
82use crate::path::{Path, PathBuf};
83use crate::sync::Arc;
84use crate::sys::common::small_c_string::run_path_with_cstr;
85use crate::sys::fd::FileDesc;
86pub use crate::sys::fs::common::exists;
87use crate::sys::time::SystemTime;
88#[cfg(all(target_os = "linux", target_env = "gnu"))]
89use crate::sys::weak::syscall;
90#[cfg(target_os = "android")]
91use crate::sys::weak::weak;
92use crate::sys::{cvt, cvt_r};
93use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
94use crate::{mem, ptr};
95
96pub struct File(FileDesc);
97
98// FIXME: This should be available on Linux with all `target_env`.
99// But currently only glibc exposes `statx` fn and structs.
100// We don't want to import unverified raw C structs here directly.
101// https://github.com/rust-lang/rust/pull/67774
102macro_rules! cfg_has_statx {
103    ({ $($then_tt:tt)* } else { $($else_tt:tt)* }) => {
104        cfg_select! {
105            all(target_os = "linux", target_env = "gnu") => {
106                $($then_tt)*
107            }
108            _ => {
109                $($else_tt)*
110            }
111        }
112    };
113    ($($block_inner:tt)*) => {
114        #[cfg(all(target_os = "linux", target_env = "gnu"))]
115        {
116            $($block_inner)*
117        }
118    };
119}
120
121cfg_has_statx! {{
122    #[derive(Clone)]
123    pub struct FileAttr {
124        stat: stat64,
125        statx_extra_fields: Option<StatxExtraFields>,
126    }
127
128    #[derive(Clone)]
129    struct StatxExtraFields {
130        // This is needed to check if btime is supported by the filesystem.
131        stx_mask: u32,
132        stx_btime: libc::statx_timestamp,
133        // With statx, we can overcome 32-bit `time_t` too.
134        #[cfg(target_pointer_width = "32")]
135        stx_atime: libc::statx_timestamp,
136        #[cfg(target_pointer_width = "32")]
137        stx_ctime: libc::statx_timestamp,
138        #[cfg(target_pointer_width = "32")]
139        stx_mtime: libc::statx_timestamp,
140
141    }
142
143    // We prefer `statx` on Linux if available, which contains file creation time,
144    // as well as 64-bit timestamps of all kinds.
145    // Default `stat64` contains no creation time and may have 32-bit `time_t`.
146    unsafe fn try_statx(
147        fd: c_int,
148        path: *const c_char,
149        flags: i32,
150        mask: u32,
151    ) -> Option<io::Result<FileAttr>> {
152        use crate::sync::atomic::{Atomic, AtomicU8, Ordering};
153
154        // Linux kernel prior to 4.11 or glibc prior to glibc 2.28 don't support `statx`.
155        // We check for it on first failure and remember availability to avoid having to
156        // do it again.
157        #[repr(u8)]
158        enum STATX_STATE{ Unknown = 0, Present, Unavailable }
159        static STATX_SAVED_STATE: Atomic<u8> = AtomicU8::new(STATX_STATE::Unknown as u8);
160
161        syscall!(
162            fn statx(
163                fd: c_int,
164                pathname: *const c_char,
165                flags: c_int,
166                mask: libc::c_uint,
167                statxbuf: *mut libc::statx,
168            ) -> c_int;
169        );
170
171        let statx_availability = STATX_SAVED_STATE.load(Ordering::Relaxed);
172        if statx_availability == STATX_STATE::Unavailable as u8 {
173            return None;
174        }
175
176        let mut buf: libc::statx = mem::zeroed();
177        if let Err(err) = cvt(statx(fd, path, flags, mask, &mut buf)) {
178            if STATX_SAVED_STATE.load(Ordering::Relaxed) == STATX_STATE::Present as u8 {
179                return Some(Err(err));
180            }
181
182            // We're not yet entirely sure whether `statx` is usable on this kernel
183            // or not. Syscalls can return errors from things other than the kernel
184            // per se, e.g. `EPERM` can be returned if seccomp is used to block the
185            // syscall, or `ENOSYS` might be returned from a faulty FUSE driver.
186            //
187            // Availability is checked by performing a call which expects `EFAULT`
188            // if the syscall is usable.
189            //
190            // See: https://github.com/rust-lang/rust/issues/65662
191            //
192            // FIXME what about transient conditions like `ENOMEM`?
193            let err2 = cvt(statx(0, ptr::null(), 0, libc::STATX_BASIC_STATS | libc::STATX_BTIME, ptr::null_mut()))
194                .err()
195                .and_then(|e| e.raw_os_error());
196            if err2 == Some(libc::EFAULT) {
197                STATX_SAVED_STATE.store(STATX_STATE::Present as u8, Ordering::Relaxed);
198                return Some(Err(err));
199            } else {
200                STATX_SAVED_STATE.store(STATX_STATE::Unavailable as u8, Ordering::Relaxed);
201                return None;
202            }
203        }
204        if statx_availability == STATX_STATE::Unknown as u8 {
205            STATX_SAVED_STATE.store(STATX_STATE::Present as u8, Ordering::Relaxed);
206        }
207
208        // We cannot fill `stat64` exhaustively because of private padding fields.
209        let mut stat: stat64 = mem::zeroed();
210        // `c_ulong` on gnu-mips, `dev_t` otherwise
211        stat.st_dev = libc::makedev(buf.stx_dev_major, buf.stx_dev_minor) as _;
212        stat.st_ino = buf.stx_ino as libc::ino64_t;
213        stat.st_nlink = buf.stx_nlink as libc::nlink_t;
214        stat.st_mode = buf.stx_mode as libc::mode_t;
215        stat.st_uid = buf.stx_uid as libc::uid_t;
216        stat.st_gid = buf.stx_gid as libc::gid_t;
217        stat.st_rdev = libc::makedev(buf.stx_rdev_major, buf.stx_rdev_minor) as _;
218        stat.st_size = buf.stx_size as off64_t;
219        stat.st_blksize = buf.stx_blksize as libc::blksize_t;
220        stat.st_blocks = buf.stx_blocks as libc::blkcnt64_t;
221        stat.st_atime = buf.stx_atime.tv_sec as libc::time_t;
222        // `i64` on gnu-x86_64-x32, `c_ulong` otherwise.
223        stat.st_atime_nsec = buf.stx_atime.tv_nsec as _;
224        stat.st_mtime = buf.stx_mtime.tv_sec as libc::time_t;
225        stat.st_mtime_nsec = buf.stx_mtime.tv_nsec as _;
226        stat.st_ctime = buf.stx_ctime.tv_sec as libc::time_t;
227        stat.st_ctime_nsec = buf.stx_ctime.tv_nsec as _;
228
229        let extra = StatxExtraFields {
230            stx_mask: buf.stx_mask,
231            stx_btime: buf.stx_btime,
232            // Store full times to avoid 32-bit `time_t` truncation.
233            #[cfg(target_pointer_width = "32")]
234            stx_atime: buf.stx_atime,
235            #[cfg(target_pointer_width = "32")]
236            stx_ctime: buf.stx_ctime,
237            #[cfg(target_pointer_width = "32")]
238            stx_mtime: buf.stx_mtime,
239        };
240
241        Some(Ok(FileAttr { stat, statx_extra_fields: Some(extra) }))
242    }
243
244} else {
245    #[derive(Clone)]
246    pub struct FileAttr {
247        stat: stat64,
248    }
249}}
250
251// all DirEntry's will have a reference to this struct
252struct InnerReadDir {
253    dirp: Dir,
254    root: PathBuf,
255}
256
257pub struct ReadDir {
258    inner: Arc<InnerReadDir>,
259    end_of_stream: bool,
260}
261
262impl ReadDir {
263    fn new(inner: InnerReadDir) -> Self {
264        Self { inner: Arc::new(inner), end_of_stream: false }
265    }
266}
267
268struct Dir(*mut libc::DIR);
269
270unsafe impl Send for Dir {}
271unsafe impl Sync for Dir {}
272
273#[cfg(any(
274    target_os = "android",
275    target_os = "linux",
276    target_os = "solaris",
277    target_os = "illumos",
278    target_os = "fuchsia",
279    target_os = "redox",
280    target_os = "aix",
281    target_os = "nto",
282    target_os = "vita",
283    target_os = "hurd",
284))]
285pub struct DirEntry {
286    dir: Arc<InnerReadDir>,
287    entry: dirent64_min,
288    // We need to store an owned copy of the entry name on platforms that use
289    // readdir() (not readdir_r()), because a) struct dirent may use a flexible
290    // array to store the name, b) it lives only until the next readdir() call.
291    name: crate::ffi::CString,
292}
293
294// Define a minimal subset of fields we need from `dirent64`, especially since
295// we're not using the immediate `d_name` on these targets. Keeping this as an
296// `entry` field in `DirEntry` helps reduce the `cfg` boilerplate elsewhere.
297#[cfg(any(
298    target_os = "android",
299    target_os = "linux",
300    target_os = "solaris",
301    target_os = "illumos",
302    target_os = "fuchsia",
303    target_os = "redox",
304    target_os = "aix",
305    target_os = "nto",
306    target_os = "vita",
307    target_os = "hurd",
308))]
309struct dirent64_min {
310    d_ino: u64,
311    #[cfg(not(any(
312        target_os = "solaris",
313        target_os = "illumos",
314        target_os = "aix",
315        target_os = "nto",
316        target_os = "vita",
317    )))]
318    d_type: u8,
319}
320
321#[cfg(not(any(
322    target_os = "android",
323    target_os = "linux",
324    target_os = "solaris",
325    target_os = "illumos",
326    target_os = "fuchsia",
327    target_os = "redox",
328    target_os = "aix",
329    target_os = "nto",
330    target_os = "vita",
331    target_os = "hurd",
332)))]
333pub struct DirEntry {
334    dir: Arc<InnerReadDir>,
335    // The full entry includes a fixed-length `d_name`.
336    entry: dirent64,
337}
338
339#[derive(Clone)]
340pub struct OpenOptions {
341    // generic
342    read: bool,
343    write: bool,
344    append: bool,
345    truncate: bool,
346    create: bool,
347    create_new: bool,
348    // system-specific
349    custom_flags: i32,
350    mode: mode_t,
351}
352
353#[derive(Clone, PartialEq, Eq)]
354pub struct FilePermissions {
355    mode: mode_t,
356}
357
358#[derive(Copy, Clone, Debug, Default)]
359pub struct FileTimes {
360    accessed: Option<SystemTime>,
361    modified: Option<SystemTime>,
362    #[cfg(target_vendor = "apple")]
363    created: Option<SystemTime>,
364}
365
366#[derive(Copy, Clone, Eq)]
367pub struct FileType {
368    mode: mode_t,
369}
370
371impl PartialEq for FileType {
372    fn eq(&self, other: &Self) -> bool {
373        self.masked() == other.masked()
374    }
375}
376
377impl core::hash::Hash for FileType {
378    fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
379        self.masked().hash(state);
380    }
381}
382
383pub struct DirBuilder {
384    mode: mode_t,
385}
386
387#[derive(Copy, Clone)]
388struct Mode(mode_t);
389
390cfg_has_statx! {{
391    impl FileAttr {
392        fn from_stat64(stat: stat64) -> Self {
393            Self { stat, statx_extra_fields: None }
394        }
395
396        #[cfg(target_pointer_width = "32")]
397        pub fn stx_mtime(&self) -> Option<&libc::statx_timestamp> {
398            if let Some(ext) = &self.statx_extra_fields {
399                if (ext.stx_mask & libc::STATX_MTIME) != 0 {
400                    return Some(&ext.stx_mtime);
401                }
402            }
403            None
404        }
405
406        #[cfg(target_pointer_width = "32")]
407        pub fn stx_atime(&self) -> Option<&libc::statx_timestamp> {
408            if let Some(ext) = &self.statx_extra_fields {
409                if (ext.stx_mask & libc::STATX_ATIME) != 0 {
410                    return Some(&ext.stx_atime);
411                }
412            }
413            None
414        }
415
416        #[cfg(target_pointer_width = "32")]
417        pub fn stx_ctime(&self) -> Option<&libc::statx_timestamp> {
418            if let Some(ext) = &self.statx_extra_fields {
419                if (ext.stx_mask & libc::STATX_CTIME) != 0 {
420                    return Some(&ext.stx_ctime);
421                }
422            }
423            None
424        }
425    }
426} else {
427    impl FileAttr {
428        fn from_stat64(stat: stat64) -> Self {
429            Self { stat }
430        }
431    }
432}}
433
434impl FileAttr {
435    pub fn size(&self) -> u64 {
436        self.stat.st_size as u64
437    }
438    pub fn perm(&self) -> FilePermissions {
439        FilePermissions { mode: (self.stat.st_mode as mode_t) }
440    }
441
442    pub fn file_type(&self) -> FileType {
443        FileType { mode: self.stat.st_mode as mode_t }
444    }
445}
446
447#[cfg(target_os = "netbsd")]
448impl FileAttr {
449    pub fn modified(&self) -> io::Result<SystemTime> {
450        SystemTime::new(self.stat.st_mtime as i64, self.stat.st_mtimensec as i64)
451    }
452
453    pub fn accessed(&self) -> io::Result<SystemTime> {
454        SystemTime::new(self.stat.st_atime as i64, self.stat.st_atimensec as i64)
455    }
456
457    pub fn created(&self) -> io::Result<SystemTime> {
458        SystemTime::new(self.stat.st_birthtime as i64, self.stat.st_birthtimensec as i64)
459    }
460}
461
462#[cfg(target_os = "aix")]
463impl FileAttr {
464    pub fn modified(&self) -> io::Result<SystemTime> {
465        SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64)
466    }
467
468    pub fn accessed(&self) -> io::Result<SystemTime> {
469        SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64)
470    }
471
472    pub fn created(&self) -> io::Result<SystemTime> {
473        SystemTime::new(self.stat.st_ctime.tv_sec as i64, self.stat.st_ctime.tv_nsec as i64)
474    }
475}
476
477#[cfg(not(any(target_os = "netbsd", target_os = "nto", target_os = "aix")))]
478impl FileAttr {
479    #[cfg(not(any(
480        target_os = "vxworks",
481        target_os = "espidf",
482        target_os = "horizon",
483        target_os = "vita",
484        target_os = "hurd",
485        target_os = "rtems",
486        target_os = "nuttx",
487    )))]
488    pub fn modified(&self) -> io::Result<SystemTime> {
489        #[cfg(target_pointer_width = "32")]
490        cfg_has_statx! {
491            if let Some(mtime) = self.stx_mtime() {
492                return SystemTime::new(mtime.tv_sec, mtime.tv_nsec as i64);
493            }
494        }
495
496        SystemTime::new(self.stat.st_mtime as i64, self.stat.st_mtime_nsec as i64)
497    }
498
499    #[cfg(any(
500        target_os = "vxworks",
501        target_os = "espidf",
502        target_os = "vita",
503        target_os = "rtems",
504    ))]
505    pub fn modified(&self) -> io::Result<SystemTime> {
506        SystemTime::new(self.stat.st_mtime as i64, 0)
507    }
508
509    #[cfg(any(target_os = "horizon", target_os = "hurd", target_os = "nuttx"))]
510    pub fn modified(&self) -> io::Result<SystemTime> {
511        SystemTime::new(self.stat.st_mtim.tv_sec as i64, self.stat.st_mtim.tv_nsec as i64)
512    }
513
514    #[cfg(not(any(
515        target_os = "vxworks",
516        target_os = "espidf",
517        target_os = "horizon",
518        target_os = "vita",
519        target_os = "hurd",
520        target_os = "rtems",
521        target_os = "nuttx",
522    )))]
523    pub fn accessed(&self) -> io::Result<SystemTime> {
524        #[cfg(target_pointer_width = "32")]
525        cfg_has_statx! {
526            if let Some(atime) = self.stx_atime() {
527                return SystemTime::new(atime.tv_sec, atime.tv_nsec as i64);
528            }
529        }
530
531        SystemTime::new(self.stat.st_atime as i64, self.stat.st_atime_nsec as i64)
532    }
533
534    #[cfg(any(
535        target_os = "vxworks",
536        target_os = "espidf",
537        target_os = "vita",
538        target_os = "rtems"
539    ))]
540    pub fn accessed(&self) -> io::Result<SystemTime> {
541        SystemTime::new(self.stat.st_atime as i64, 0)
542    }
543
544    #[cfg(any(target_os = "horizon", target_os = "hurd", target_os = "nuttx"))]
545    pub fn accessed(&self) -> io::Result<SystemTime> {
546        SystemTime::new(self.stat.st_atim.tv_sec as i64, self.stat.st_atim.tv_nsec as i64)
547    }
548
549    #[cfg(any(
550        target_os = "freebsd",
551        target_os = "openbsd",
552        target_vendor = "apple",
553        target_os = "cygwin",
554    ))]
555    pub fn created(&self) -> io::Result<SystemTime> {
556        SystemTime::new(self.stat.st_birthtime as i64, self.stat.st_birthtime_nsec as i64)
557    }
558
559    #[cfg(not(any(
560        target_os = "freebsd",
561        target_os = "openbsd",
562        target_os = "vita",
563        target_vendor = "apple",
564        target_os = "cygwin",
565    )))]
566    pub fn created(&self) -> io::Result<SystemTime> {
567        cfg_has_statx! {
568            if let Some(ext) = &self.statx_extra_fields {
569                return if (ext.stx_mask & libc::STATX_BTIME) != 0 {
570                    SystemTime::new(ext.stx_btime.tv_sec, ext.stx_btime.tv_nsec as i64)
571                } else {
572                    Err(io::const_error!(
573                        io::ErrorKind::Unsupported,
574                        "creation time is not available for the filesystem",
575                    ))
576                };
577            }
578        }
579
580        Err(io::const_error!(
581            io::ErrorKind::Unsupported,
582            "creation time is not available on this platform currently",
583        ))
584    }
585
586    #[cfg(target_os = "vita")]
587    pub fn created(&self) -> io::Result<SystemTime> {
588        SystemTime::new(self.stat.st_ctime as i64, 0)
589    }
590}
591
592#[cfg(target_os = "nto")]
593impl FileAttr {
594    pub fn modified(&self) -> io::Result<SystemTime> {
595        SystemTime::new(self.stat.st_mtim.tv_sec, self.stat.st_mtim.tv_nsec)
596    }
597
598    pub fn accessed(&self) -> io::Result<SystemTime> {
599        SystemTime::new(self.stat.st_atim.tv_sec, self.stat.st_atim.tv_nsec)
600    }
601
602    pub fn created(&self) -> io::Result<SystemTime> {
603        SystemTime::new(self.stat.st_ctim.tv_sec, self.stat.st_ctim.tv_nsec)
604    }
605}
606
607impl AsInner<stat64> for FileAttr {
608    #[inline]
609    fn as_inner(&self) -> &stat64 {
610        &self.stat
611    }
612}
613
614impl FilePermissions {
615    pub fn readonly(&self) -> bool {
616        // check if any class (owner, group, others) has write permission
617        self.mode & 0o222 == 0
618    }
619
620    pub fn set_readonly(&mut self, readonly: bool) {
621        if readonly {
622            // remove write permission for all classes; equivalent to `chmod a-w <file>`
623            self.mode &= !0o222;
624        } else {
625            // add write permission for all classes; equivalent to `chmod a+w <file>`
626            self.mode |= 0o222;
627        }
628    }
629    pub fn mode(&self) -> u32 {
630        self.mode as u32
631    }
632}
633
634impl FileTimes {
635    pub fn set_accessed(&mut self, t: SystemTime) {
636        self.accessed = Some(t);
637    }
638
639    pub fn set_modified(&mut self, t: SystemTime) {
640        self.modified = Some(t);
641    }
642
643    #[cfg(target_vendor = "apple")]
644    pub fn set_created(&mut self, t: SystemTime) {
645        self.created = Some(t);
646    }
647}
648
649impl FileType {
650    pub fn is_dir(&self) -> bool {
651        self.is(libc::S_IFDIR)
652    }
653    pub fn is_file(&self) -> bool {
654        self.is(libc::S_IFREG)
655    }
656    pub fn is_symlink(&self) -> bool {
657        self.is(libc::S_IFLNK)
658    }
659
660    pub fn is(&self, mode: mode_t) -> bool {
661        self.masked() == mode
662    }
663
664    fn masked(&self) -> mode_t {
665        self.mode & libc::S_IFMT
666    }
667}
668
669impl fmt::Debug for FileType {
670    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
671        let FileType { mode } = self;
672        f.debug_struct("FileType").field("mode", &Mode(*mode)).finish()
673    }
674}
675
676impl FromInner<u32> for FilePermissions {
677    fn from_inner(mode: u32) -> FilePermissions {
678        FilePermissions { mode: mode as mode_t }
679    }
680}
681
682impl fmt::Debug for FilePermissions {
683    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
684        let FilePermissions { mode } = self;
685        f.debug_struct("FilePermissions").field("mode", &Mode(*mode)).finish()
686    }
687}
688
689impl fmt::Debug for ReadDir {
690    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
691        // This will only be called from std::fs::ReadDir, which will add a "ReadDir()" frame.
692        // Thus the result will be e g 'ReadDir("/home")'
693        fmt::Debug::fmt(&*self.inner.root, f)
694    }
695}
696
697impl Iterator for ReadDir {
698    type Item = io::Result<DirEntry>;
699
700    #[cfg(any(
701        target_os = "android",
702        target_os = "linux",
703        target_os = "solaris",
704        target_os = "fuchsia",
705        target_os = "redox",
706        target_os = "illumos",
707        target_os = "aix",
708        target_os = "nto",
709        target_os = "vita",
710        target_os = "hurd",
711    ))]
712    fn next(&mut self) -> Option<io::Result<DirEntry>> {
713        use crate::sys::os::{errno, set_errno};
714
715        if self.end_of_stream {
716            return None;
717        }
718
719        unsafe {
720            loop {
721                // As of POSIX.1-2017, readdir() is not required to be thread safe; only
722                // readdir_r() is. However, readdir_r() cannot correctly handle platforms
723                // with unlimited or variable NAME_MAX. Many modern platforms guarantee
724                // thread safety for readdir() as long an individual DIR* is not accessed
725                // concurrently, which is sufficient for Rust.
726                set_errno(0);
727                let entry_ptr: *const dirent64 = readdir64(self.inner.dirp.0);
728                if entry_ptr.is_null() {
729                    // We either encountered an error, or reached the end. Either way,
730                    // the next call to next() should return None.
731                    self.end_of_stream = true;
732
733                    // To distinguish between errors and end-of-directory, we had to clear
734                    // errno beforehand to check for an error now.
735                    return match errno() {
736                        0 => None,
737                        e => Some(Err(Error::from_raw_os_error(e))),
738                    };
739                }
740
741                // The dirent64 struct is a weird imaginary thing that isn't ever supposed
742                // to be worked with by value. Its trailing d_name field is declared
743                // variously as [c_char; 256] or [c_char; 1] on different systems but
744                // either way that size is meaningless; only the offset of d_name is
745                // meaningful. The dirent64 pointers that libc returns from readdir64 are
746                // allowed to point to allocations smaller _or_ LARGER than implied by the
747                // definition of the struct.
748                //
749                // As such, we need to be even more careful with dirent64 than if its
750                // contents were "simply" partially initialized data.
751                //
752                // Like for uninitialized contents, converting entry_ptr to `&dirent64`
753                // would not be legal. However, we can use `&raw const (*entry_ptr).d_name`
754                // to refer the fields individually, because that operation is equivalent
755                // to `byte_offset` and thus does not require the full extent of `*entry_ptr`
756                // to be in bounds of the same allocation, only the offset of the field
757                // being referenced.
758
759                // d_name is guaranteed to be null-terminated.
760                let name = CStr::from_ptr((&raw const (*entry_ptr).d_name).cast());
761                let name_bytes = name.to_bytes();
762                if name_bytes == b"." || name_bytes == b".." {
763                    continue;
764                }
765
766                // When loading from a field, we can skip the `&raw const`; `(*entry_ptr).d_ino` as
767                // a value expression will do the right thing: `byte_offset` to the field and then
768                // only access those bytes.
769                #[cfg(not(target_os = "vita"))]
770                let entry = dirent64_min {
771                    d_ino: (*entry_ptr).d_ino as u64,
772                    #[cfg(not(any(
773                        target_os = "solaris",
774                        target_os = "illumos",
775                        target_os = "aix",
776                        target_os = "nto",
777                    )))]
778                    d_type: (*entry_ptr).d_type as u8,
779                };
780
781                #[cfg(target_os = "vita")]
782                let entry = dirent64_min { d_ino: 0u64 };
783
784                return Some(Ok(DirEntry {
785                    entry,
786                    name: name.to_owned(),
787                    dir: Arc::clone(&self.inner),
788                }));
789            }
790        }
791    }
792
793    #[cfg(not(any(
794        target_os = "android",
795        target_os = "linux",
796        target_os = "solaris",
797        target_os = "fuchsia",
798        target_os = "redox",
799        target_os = "illumos",
800        target_os = "aix",
801        target_os = "nto",
802        target_os = "vita",
803        target_os = "hurd",
804    )))]
805    fn next(&mut self) -> Option<io::Result<DirEntry>> {
806        if self.end_of_stream {
807            return None;
808        }
809
810        unsafe {
811            let mut ret = DirEntry { entry: mem::zeroed(), dir: Arc::clone(&self.inner) };
812            let mut entry_ptr = ptr::null_mut();
813            loop {
814                let err = readdir64_r(self.inner.dirp.0, &mut ret.entry, &mut entry_ptr);
815                if err != 0 {
816                    if entry_ptr.is_null() {
817                        // We encountered an error (which will be returned in this iteration), but
818                        // we also reached the end of the directory stream. The `end_of_stream`
819                        // flag is enabled to make sure that we return `None` in the next iteration
820                        // (instead of looping forever)
821                        self.end_of_stream = true;
822                    }
823                    return Some(Err(Error::from_raw_os_error(err)));
824                }
825                if entry_ptr.is_null() {
826                    return None;
827                }
828                if ret.name_bytes() != b"." && ret.name_bytes() != b".." {
829                    return Some(Ok(ret));
830                }
831            }
832        }
833    }
834}
835
836/// Aborts the process if a file desceriptor is not open, if debug asserts are enabled
837///
838/// Many IO syscalls can't be fully trusted about EBADF error codes because those
839/// might get bubbled up from a remote FUSE server rather than the file descriptor
840/// in the current process being invalid.
841///
842/// So we check file flags instead which live on the file descriptor and not the underlying file.
843/// The downside is that it costs an extra syscall, so we only do it for debug.
844#[inline]
845pub(crate) fn debug_assert_fd_is_open(fd: RawFd) {
846    use crate::sys::os::errno;
847
848    // this is similar to assert_unsafe_precondition!() but it doesn't require const
849    if core::ub_checks::check_library_ub() {
850        if unsafe { libc::fcntl(fd, libc::F_GETFD) } == -1 && errno() == libc::EBADF {
851            rtabort!("IO Safety violation: owned file descriptor already closed");
852        }
853    }
854}
855
856impl Drop for Dir {
857    fn drop(&mut self) {
858        // dirfd isn't supported everywhere
859        #[cfg(not(any(
860            miri,
861            target_os = "redox",
862            target_os = "nto",
863            target_os = "vita",
864            target_os = "hurd",
865            target_os = "espidf",
866            target_os = "horizon",
867            target_os = "vxworks",
868            target_os = "rtems",
869            target_os = "nuttx",
870        )))]
871        {
872            let fd = unsafe { libc::dirfd(self.0) };
873            debug_assert_fd_is_open(fd);
874        }
875        let r = unsafe { libc::closedir(self.0) };
876        assert!(
877            r == 0 || crate::io::Error::last_os_error().is_interrupted(),
878            "unexpected error during closedir: {:?}",
879            crate::io::Error::last_os_error()
880        );
881    }
882}
883
884impl DirEntry {
885    pub fn path(&self) -> PathBuf {
886        self.dir.root.join(self.file_name_os_str())
887    }
888
889    pub fn file_name(&self) -> OsString {
890        self.file_name_os_str().to_os_string()
891    }
892
893    #[cfg(all(
894        any(
895            all(target_os = "linux", not(target_env = "musl")),
896            target_os = "android",
897            target_os = "fuchsia",
898            target_os = "hurd",
899            target_os = "illumos",
900        ),
901        not(miri) // no dirfd on Miri
902    ))]
903    pub fn metadata(&self) -> io::Result<FileAttr> {
904        let fd = cvt(unsafe { dirfd(self.dir.dirp.0) })?;
905        let name = self.name_cstr().as_ptr();
906
907        cfg_has_statx! {
908            if let Some(ret) = unsafe { try_statx(
909                fd,
910                name,
911                libc::AT_SYMLINK_NOFOLLOW | libc::AT_STATX_SYNC_AS_STAT,
912                libc::STATX_BASIC_STATS | libc::STATX_BTIME,
913            ) } {
914                return ret;
915            }
916        }
917
918        let mut stat: stat64 = unsafe { mem::zeroed() };
919        cvt(unsafe { fstatat64(fd, name, &mut stat, libc::AT_SYMLINK_NOFOLLOW) })?;
920        Ok(FileAttr::from_stat64(stat))
921    }
922
923    #[cfg(any(
924        not(any(
925            all(target_os = "linux", not(target_env = "musl")),
926            target_os = "android",
927            target_os = "fuchsia",
928            target_os = "hurd",
929            target_os = "illumos",
930        )),
931        miri
932    ))]
933    pub fn metadata(&self) -> io::Result<FileAttr> {
934        run_path_with_cstr(&self.path(), &lstat)
935    }
936
937    #[cfg(any(
938        target_os = "solaris",
939        target_os = "illumos",
940        target_os = "haiku",
941        target_os = "vxworks",
942        target_os = "aix",
943        target_os = "nto",
944        target_os = "vita",
945    ))]
946    pub fn file_type(&self) -> io::Result<FileType> {
947        self.metadata().map(|m| m.file_type())
948    }
949
950    #[cfg(not(any(
951        target_os = "solaris",
952        target_os = "illumos",
953        target_os = "haiku",
954        target_os = "vxworks",
955        target_os = "aix",
956        target_os = "nto",
957        target_os = "vita",
958    )))]
959    pub fn file_type(&self) -> io::Result<FileType> {
960        match self.entry.d_type {
961            libc::DT_CHR => Ok(FileType { mode: libc::S_IFCHR }),
962            libc::DT_FIFO => Ok(FileType { mode: libc::S_IFIFO }),
963            libc::DT_LNK => Ok(FileType { mode: libc::S_IFLNK }),
964            libc::DT_REG => Ok(FileType { mode: libc::S_IFREG }),
965            libc::DT_SOCK => Ok(FileType { mode: libc::S_IFSOCK }),
966            libc::DT_DIR => Ok(FileType { mode: libc::S_IFDIR }),
967            libc::DT_BLK => Ok(FileType { mode: libc::S_IFBLK }),
968            _ => self.metadata().map(|m| m.file_type()),
969        }
970    }
971
972    #[cfg(any(
973        target_os = "linux",
974        target_os = "cygwin",
975        target_os = "emscripten",
976        target_os = "android",
977        target_os = "solaris",
978        target_os = "illumos",
979        target_os = "haiku",
980        target_os = "l4re",
981        target_os = "fuchsia",
982        target_os = "redox",
983        target_os = "vxworks",
984        target_os = "espidf",
985        target_os = "horizon",
986        target_os = "vita",
987        target_os = "aix",
988        target_os = "nto",
989        target_os = "hurd",
990        target_os = "rtems",
991        target_vendor = "apple",
992    ))]
993    pub fn ino(&self) -> u64 {
994        self.entry.d_ino as u64
995    }
996
997    #[cfg(any(
998        target_os = "freebsd",
999        target_os = "openbsd",
1000        target_os = "netbsd",
1001        target_os = "dragonfly"
1002    ))]
1003    pub fn ino(&self) -> u64 {
1004        self.entry.d_fileno as u64
1005    }
1006
1007    #[cfg(target_os = "nuttx")]
1008    pub fn ino(&self) -> u64 {
1009        // Leave this 0 for now, as NuttX does not provide an inode number
1010        // in its directory entries.
1011        0
1012    }
1013
1014    #[cfg(any(
1015        target_os = "netbsd",
1016        target_os = "openbsd",
1017        target_os = "freebsd",
1018        target_os = "dragonfly",
1019        target_vendor = "apple",
1020    ))]
1021    fn name_bytes(&self) -> &[u8] {
1022        use crate::slice;
1023        unsafe {
1024            slice::from_raw_parts(
1025                self.entry.d_name.as_ptr() as *const u8,
1026                self.entry.d_namlen as usize,
1027            )
1028        }
1029    }
1030    #[cfg(not(any(
1031        target_os = "netbsd",
1032        target_os = "openbsd",
1033        target_os = "freebsd",
1034        target_os = "dragonfly",
1035        target_vendor = "apple",
1036    )))]
1037    fn name_bytes(&self) -> &[u8] {
1038        self.name_cstr().to_bytes()
1039    }
1040
1041    #[cfg(not(any(
1042        target_os = "android",
1043        target_os = "linux",
1044        target_os = "solaris",
1045        target_os = "illumos",
1046        target_os = "fuchsia",
1047        target_os = "redox",
1048        target_os = "aix",
1049        target_os = "nto",
1050        target_os = "vita",
1051        target_os = "hurd",
1052    )))]
1053    fn name_cstr(&self) -> &CStr {
1054        unsafe { CStr::from_ptr(self.entry.d_name.as_ptr()) }
1055    }
1056    #[cfg(any(
1057        target_os = "android",
1058        target_os = "linux",
1059        target_os = "solaris",
1060        target_os = "illumos",
1061        target_os = "fuchsia",
1062        target_os = "redox",
1063        target_os = "aix",
1064        target_os = "nto",
1065        target_os = "vita",
1066        target_os = "hurd",
1067    ))]
1068    fn name_cstr(&self) -> &CStr {
1069        &self.name
1070    }
1071
1072    pub fn file_name_os_str(&self) -> &OsStr {
1073        OsStr::from_bytes(self.name_bytes())
1074    }
1075}
1076
1077impl OpenOptions {
1078    pub fn new() -> OpenOptions {
1079        OpenOptions {
1080            // generic
1081            read: false,
1082            write: false,
1083            append: false,
1084            truncate: false,
1085            create: false,
1086            create_new: false,
1087            // system-specific
1088            custom_flags: 0,
1089            mode: 0o666,
1090        }
1091    }
1092
1093    pub fn read(&mut self, read: bool) {
1094        self.read = read;
1095    }
1096    pub fn write(&mut self, write: bool) {
1097        self.write = write;
1098    }
1099    pub fn append(&mut self, append: bool) {
1100        self.append = append;
1101    }
1102    pub fn truncate(&mut self, truncate: bool) {
1103        self.truncate = truncate;
1104    }
1105    pub fn create(&mut self, create: bool) {
1106        self.create = create;
1107    }
1108    pub fn create_new(&mut self, create_new: bool) {
1109        self.create_new = create_new;
1110    }
1111
1112    pub fn custom_flags(&mut self, flags: i32) {
1113        self.custom_flags = flags;
1114    }
1115    pub fn mode(&mut self, mode: u32) {
1116        self.mode = mode as mode_t;
1117    }
1118
1119    fn get_access_mode(&self) -> io::Result<c_int> {
1120        match (self.read, self.write, self.append) {
1121            (true, false, false) => Ok(libc::O_RDONLY),
1122            (false, true, false) => Ok(libc::O_WRONLY),
1123            (true, true, false) => Ok(libc::O_RDWR),
1124            (false, _, true) => Ok(libc::O_WRONLY | libc::O_APPEND),
1125            (true, _, true) => Ok(libc::O_RDWR | libc::O_APPEND),
1126            (false, false, false) => Err(Error::from_raw_os_error(libc::EINVAL)),
1127        }
1128    }
1129
1130    fn get_creation_mode(&self) -> io::Result<c_int> {
1131        match (self.write, self.append) {
1132            (true, false) => {}
1133            (false, false) => {
1134                if self.truncate || self.create || self.create_new {
1135                    return Err(Error::from_raw_os_error(libc::EINVAL));
1136                }
1137            }
1138            (_, true) => {
1139                if self.truncate && !self.create_new {
1140                    return Err(Error::from_raw_os_error(libc::EINVAL));
1141                }
1142            }
1143        }
1144
1145        Ok(match (self.create, self.truncate, self.create_new) {
1146            (false, false, false) => 0,
1147            (true, false, false) => libc::O_CREAT,
1148            (false, true, false) => libc::O_TRUNC,
1149            (true, true, false) => libc::O_CREAT | libc::O_TRUNC,
1150            (_, _, true) => libc::O_CREAT | libc::O_EXCL,
1151        })
1152    }
1153}
1154
1155impl fmt::Debug for OpenOptions {
1156    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1157        let OpenOptions { read, write, append, truncate, create, create_new, custom_flags, mode } =
1158            self;
1159        f.debug_struct("OpenOptions")
1160            .field("read", read)
1161            .field("write", write)
1162            .field("append", append)
1163            .field("truncate", truncate)
1164            .field("create", create)
1165            .field("create_new", create_new)
1166            .field("custom_flags", custom_flags)
1167            .field("mode", &Mode(*mode))
1168            .finish()
1169    }
1170}
1171
1172impl File {
1173    pub fn open(path: &Path, opts: &OpenOptions) -> io::Result<File> {
1174        run_path_with_cstr(path, &|path| File::open_c(path, opts))
1175    }
1176
1177    pub fn open_c(path: &CStr, opts: &OpenOptions) -> io::Result<File> {
1178        let flags = libc::O_CLOEXEC
1179            | opts.get_access_mode()?
1180            | opts.get_creation_mode()?
1181            | (opts.custom_flags as c_int & !libc::O_ACCMODE);
1182        // The third argument of `open64` is documented to have type `mode_t`. On
1183        // some platforms (like macOS, where `open64` is actually `open`), `mode_t` is `u16`.
1184        // However, since this is a variadic function, C integer promotion rules mean that on
1185        // the ABI level, this still gets passed as `c_int` (aka `u32` on Unix platforms).
1186        let fd = cvt_r(|| unsafe { open64(path.as_ptr(), flags, opts.mode as c_int) })?;
1187        Ok(File(unsafe { FileDesc::from_raw_fd(fd) }))
1188    }
1189
1190    pub fn file_attr(&self) -> io::Result<FileAttr> {
1191        let fd = self.as_raw_fd();
1192
1193        cfg_has_statx! {
1194            if let Some(ret) = unsafe { try_statx(
1195                fd,
1196                c"".as_ptr() as *const c_char,
1197                libc::AT_EMPTY_PATH | libc::AT_STATX_SYNC_AS_STAT,
1198                libc::STATX_BASIC_STATS | libc::STATX_BTIME,
1199            ) } {
1200                return ret;
1201            }
1202        }
1203
1204        let mut stat: stat64 = unsafe { mem::zeroed() };
1205        cvt(unsafe { fstat64(fd, &mut stat) })?;
1206        Ok(FileAttr::from_stat64(stat))
1207    }
1208
1209    pub fn fsync(&self) -> io::Result<()> {
1210        cvt_r(|| unsafe { os_fsync(self.as_raw_fd()) })?;
1211        return Ok(());
1212
1213        #[cfg(target_vendor = "apple")]
1214        unsafe fn os_fsync(fd: c_int) -> c_int {
1215            libc::fcntl(fd, libc::F_FULLFSYNC)
1216        }
1217        #[cfg(not(target_vendor = "apple"))]
1218        unsafe fn os_fsync(fd: c_int) -> c_int {
1219            libc::fsync(fd)
1220        }
1221    }
1222
1223    pub fn datasync(&self) -> io::Result<()> {
1224        cvt_r(|| unsafe { os_datasync(self.as_raw_fd()) })?;
1225        return Ok(());
1226
1227        #[cfg(target_vendor = "apple")]
1228        unsafe fn os_datasync(fd: c_int) -> c_int {
1229            libc::fcntl(fd, libc::F_FULLFSYNC)
1230        }
1231        #[cfg(any(
1232            target_os = "freebsd",
1233            target_os = "fuchsia",
1234            target_os = "linux",
1235            target_os = "cygwin",
1236            target_os = "android",
1237            target_os = "netbsd",
1238            target_os = "openbsd",
1239            target_os = "nto",
1240            target_os = "hurd",
1241        ))]
1242        unsafe fn os_datasync(fd: c_int) -> c_int {
1243            libc::fdatasync(fd)
1244        }
1245        #[cfg(not(any(
1246            target_os = "android",
1247            target_os = "fuchsia",
1248            target_os = "freebsd",
1249            target_os = "linux",
1250            target_os = "cygwin",
1251            target_os = "netbsd",
1252            target_os = "openbsd",
1253            target_os = "nto",
1254            target_os = "hurd",
1255            target_vendor = "apple",
1256        )))]
1257        unsafe fn os_datasync(fd: c_int) -> c_int {
1258            libc::fsync(fd)
1259        }
1260    }
1261
1262    #[cfg(any(
1263        target_os = "freebsd",
1264        target_os = "fuchsia",
1265        target_os = "linux",
1266        target_os = "netbsd",
1267        target_vendor = "apple",
1268    ))]
1269    pub fn lock(&self) -> io::Result<()> {
1270        cvt(unsafe { libc::flock(self.as_raw_fd(), libc::LOCK_EX) })?;
1271        return Ok(());
1272    }
1273
1274    #[cfg(not(any(
1275        target_os = "freebsd",
1276        target_os = "fuchsia",
1277        target_os = "linux",
1278        target_os = "netbsd",
1279        target_vendor = "apple",
1280    )))]
1281    pub fn lock(&self) -> io::Result<()> {
1282        Err(io::const_error!(io::ErrorKind::Unsupported, "lock() not supported"))
1283    }
1284
1285    #[cfg(any(
1286        target_os = "freebsd",
1287        target_os = "fuchsia",
1288        target_os = "linux",
1289        target_os = "netbsd",
1290        target_vendor = "apple",
1291    ))]
1292    pub fn lock_shared(&self) -> io::Result<()> {
1293        cvt(unsafe { libc::flock(self.as_raw_fd(), libc::LOCK_SH) })?;
1294        return Ok(());
1295    }
1296
1297    #[cfg(not(any(
1298        target_os = "freebsd",
1299        target_os = "fuchsia",
1300        target_os = "linux",
1301        target_os = "netbsd",
1302        target_vendor = "apple",
1303    )))]
1304    pub fn lock_shared(&self) -> io::Result<()> {
1305        Err(io::const_error!(io::ErrorKind::Unsupported, "lock_shared() not supported"))
1306    }
1307
1308    #[cfg(any(
1309        target_os = "freebsd",
1310        target_os = "fuchsia",
1311        target_os = "linux",
1312        target_os = "netbsd",
1313        target_vendor = "apple",
1314    ))]
1315    pub fn try_lock(&self) -> Result<(), TryLockError> {
1316        let result = cvt(unsafe { libc::flock(self.as_raw_fd(), libc::LOCK_EX | libc::LOCK_NB) });
1317        if let Err(err) = result {
1318            if err.kind() == io::ErrorKind::WouldBlock {
1319                Err(TryLockError::WouldBlock)
1320            } else {
1321                Err(TryLockError::Error(err))
1322            }
1323        } else {
1324            Ok(())
1325        }
1326    }
1327
1328    #[cfg(not(any(
1329        target_os = "freebsd",
1330        target_os = "fuchsia",
1331        target_os = "linux",
1332        target_os = "netbsd",
1333        target_vendor = "apple",
1334    )))]
1335    pub fn try_lock(&self) -> Result<(), TryLockError> {
1336        Err(TryLockError::Error(io::const_error!(
1337            io::ErrorKind::Unsupported,
1338            "try_lock() not supported"
1339        )))
1340    }
1341
1342    #[cfg(any(
1343        target_os = "freebsd",
1344        target_os = "fuchsia",
1345        target_os = "linux",
1346        target_os = "netbsd",
1347        target_vendor = "apple",
1348    ))]
1349    pub fn try_lock_shared(&self) -> Result<(), TryLockError> {
1350        let result = cvt(unsafe { libc::flock(self.as_raw_fd(), libc::LOCK_SH | libc::LOCK_NB) });
1351        if let Err(err) = result {
1352            if err.kind() == io::ErrorKind::WouldBlock {
1353                Err(TryLockError::WouldBlock)
1354            } else {
1355                Err(TryLockError::Error(err))
1356            }
1357        } else {
1358            Ok(())
1359        }
1360    }
1361
1362    #[cfg(not(any(
1363        target_os = "freebsd",
1364        target_os = "fuchsia",
1365        target_os = "linux",
1366        target_os = "netbsd",
1367        target_vendor = "apple",
1368    )))]
1369    pub fn try_lock_shared(&self) -> Result<(), TryLockError> {
1370        Err(TryLockError::Error(io::const_error!(
1371            io::ErrorKind::Unsupported,
1372            "try_lock_shared() not supported"
1373        )))
1374    }
1375
1376    #[cfg(any(
1377        target_os = "freebsd",
1378        target_os = "fuchsia",
1379        target_os = "linux",
1380        target_os = "netbsd",
1381        target_vendor = "apple",
1382    ))]
1383    pub fn unlock(&self) -> io::Result<()> {
1384        cvt(unsafe { libc::flock(self.as_raw_fd(), libc::LOCK_UN) })?;
1385        return Ok(());
1386    }
1387
1388    #[cfg(not(any(
1389        target_os = "freebsd",
1390        target_os = "fuchsia",
1391        target_os = "linux",
1392        target_os = "netbsd",
1393        target_vendor = "apple",
1394    )))]
1395    pub fn unlock(&self) -> io::Result<()> {
1396        Err(io::const_error!(io::ErrorKind::Unsupported, "unlock() not supported"))
1397    }
1398
1399    pub fn truncate(&self, size: u64) -> io::Result<()> {
1400        let size: off64_t =
1401            size.try_into().map_err(|e| io::Error::new(io::ErrorKind::InvalidInput, e))?;
1402        cvt_r(|| unsafe { ftruncate64(self.as_raw_fd(), size) }).map(drop)
1403    }
1404
1405    pub fn read(&self, buf: &mut [u8]) -> io::Result<usize> {
1406        self.0.read(buf)
1407    }
1408
1409    pub fn read_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
1410        self.0.read_vectored(bufs)
1411    }
1412
1413    #[inline]
1414    pub fn is_read_vectored(&self) -> bool {
1415        self.0.is_read_vectored()
1416    }
1417
1418    pub fn read_at(&self, buf: &mut [u8], offset: u64) -> io::Result<usize> {
1419        self.0.read_at(buf, offset)
1420    }
1421
1422    pub fn read_buf(&self, cursor: BorrowedCursor<'_>) -> io::Result<()> {
1423        self.0.read_buf(cursor)
1424    }
1425
1426    pub fn read_vectored_at(&self, bufs: &mut [IoSliceMut<'_>], offset: u64) -> io::Result<usize> {
1427        self.0.read_vectored_at(bufs, offset)
1428    }
1429
1430    pub fn write(&self, buf: &[u8]) -> io::Result<usize> {
1431        self.0.write(buf)
1432    }
1433
1434    pub fn write_vectored(&self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
1435        self.0.write_vectored(bufs)
1436    }
1437
1438    #[inline]
1439    pub fn is_write_vectored(&self) -> bool {
1440        self.0.is_write_vectored()
1441    }
1442
1443    pub fn write_at(&self, buf: &[u8], offset: u64) -> io::Result<usize> {
1444        self.0.write_at(buf, offset)
1445    }
1446
1447    pub fn write_vectored_at(&self, bufs: &[IoSlice<'_>], offset: u64) -> io::Result<usize> {
1448        self.0.write_vectored_at(bufs, offset)
1449    }
1450
1451    #[inline]
1452    pub fn flush(&self) -> io::Result<()> {
1453        Ok(())
1454    }
1455
1456    pub fn seek(&self, pos: SeekFrom) -> io::Result<u64> {
1457        let (whence, pos) = match pos {
1458            // Casting to `i64` is fine, too large values will end up as
1459            // negative which will cause an error in `lseek64`.
1460            SeekFrom::Start(off) => (libc::SEEK_SET, off as i64),
1461            SeekFrom::End(off) => (libc::SEEK_END, off),
1462            SeekFrom::Current(off) => (libc::SEEK_CUR, off),
1463        };
1464        let n = cvt(unsafe { lseek64(self.as_raw_fd(), pos as off64_t, whence) })?;
1465        Ok(n as u64)
1466    }
1467
1468    pub fn size(&self) -> Option<io::Result<u64>> {
1469        match self.file_attr().map(|attr| attr.size()) {
1470            // Fall back to default implementation if the returned size is 0,
1471            // we might be in a proc mount.
1472            Ok(0) => None,
1473            result => Some(result),
1474        }
1475    }
1476
1477    pub fn tell(&self) -> io::Result<u64> {
1478        self.seek(SeekFrom::Current(0))
1479    }
1480
1481    pub fn duplicate(&self) -> io::Result<File> {
1482        self.0.duplicate().map(File)
1483    }
1484
1485    pub fn set_permissions(&self, perm: FilePermissions) -> io::Result<()> {
1486        cvt_r(|| unsafe { libc::fchmod(self.as_raw_fd(), perm.mode) })?;
1487        Ok(())
1488    }
1489
1490    pub fn set_times(&self, times: FileTimes) -> io::Result<()> {
1491        #[cfg(not(any(
1492            target_os = "redox",
1493            target_os = "espidf",
1494            target_os = "horizon",
1495            target_os = "nuttx",
1496        )))]
1497        let to_timespec = |time: Option<SystemTime>| match time {
1498            Some(time) if let Some(ts) = time.t.to_timespec() => Ok(ts),
1499            Some(time) if time > crate::sys::time::UNIX_EPOCH => Err(io::const_error!(
1500                io::ErrorKind::InvalidInput,
1501                "timestamp is too large to set as a file time",
1502            )),
1503            Some(_) => Err(io::const_error!(
1504                io::ErrorKind::InvalidInput,
1505                "timestamp is too small to set as a file time",
1506            )),
1507            None => Ok(libc::timespec { tv_sec: 0, tv_nsec: libc::UTIME_OMIT as _ }),
1508        };
1509        cfg_select! {
1510            any(target_os = "redox", target_os = "espidf", target_os = "horizon", target_os = "nuttx") => {
1511                // Redox doesn't appear to support `UTIME_OMIT`.
1512                // ESP-IDF and HorizonOS do not support `futimens` at all and the behavior for those OS is therefore
1513                // the same as for Redox.
1514                let _ = times;
1515                Err(io::const_error!(
1516                    io::ErrorKind::Unsupported,
1517                    "setting file times not supported",
1518                ))
1519            }
1520            target_vendor = "apple" => {
1521                let mut buf = [mem::MaybeUninit::<libc::timespec>::uninit(); 3];
1522                let mut num_times = 0;
1523                let mut attrlist: libc::attrlist = unsafe { mem::zeroed() };
1524                attrlist.bitmapcount = libc::ATTR_BIT_MAP_COUNT;
1525                if times.created.is_some() {
1526                    buf[num_times].write(to_timespec(times.created)?);
1527                    num_times += 1;
1528                    attrlist.commonattr |= libc::ATTR_CMN_CRTIME;
1529                }
1530                if times.modified.is_some() {
1531                    buf[num_times].write(to_timespec(times.modified)?);
1532                    num_times += 1;
1533                    attrlist.commonattr |= libc::ATTR_CMN_MODTIME;
1534                }
1535                if times.accessed.is_some() {
1536                    buf[num_times].write(to_timespec(times.accessed)?);
1537                    num_times += 1;
1538                    attrlist.commonattr |= libc::ATTR_CMN_ACCTIME;
1539                }
1540                cvt(unsafe { libc::fsetattrlist(
1541                    self.as_raw_fd(),
1542                    (&raw const attrlist).cast::<libc::c_void>().cast_mut(),
1543                    buf.as_ptr().cast::<libc::c_void>().cast_mut(),
1544                    num_times * size_of::<libc::timespec>(),
1545                    0
1546                ) })?;
1547                Ok(())
1548            }
1549            target_os = "android" => {
1550                let times = [to_timespec(times.accessed)?, to_timespec(times.modified)?];
1551                // futimens requires Android API level 19
1552                cvt(unsafe {
1553                    weak!(
1554                        fn futimens(fd: c_int, times: *const libc::timespec) -> c_int;
1555                    );
1556                    match futimens.get() {
1557                        Some(futimens) => futimens(self.as_raw_fd(), times.as_ptr()),
1558                        None => return Err(io::const_error!(
1559                            io::ErrorKind::Unsupported,
1560                            "setting file times requires Android API level >= 19",
1561                        )),
1562                    }
1563                })?;
1564                Ok(())
1565            }
1566            _ => {
1567                #[cfg(all(target_os = "linux", target_env = "gnu", target_pointer_width = "32", not(target_arch = "riscv32")))]
1568                {
1569                    use crate::sys::{time::__timespec64, weak::weak};
1570
1571                    // Added in glibc 2.34
1572                    weak!(
1573                        fn __futimens64(fd: c_int, times: *const __timespec64) -> c_int;
1574                    );
1575
1576                    if let Some(futimens64) = __futimens64.get() {
1577                        let to_timespec = |time: Option<SystemTime>| time.map(|time| time.t.to_timespec64())
1578                            .unwrap_or(__timespec64::new(0, libc::UTIME_OMIT as _));
1579                        let times = [to_timespec(times.accessed), to_timespec(times.modified)];
1580                        cvt(unsafe { futimens64(self.as_raw_fd(), times.as_ptr()) })?;
1581                        return Ok(());
1582                    }
1583                }
1584                let times = [to_timespec(times.accessed)?, to_timespec(times.modified)?];
1585                cvt(unsafe { libc::futimens(self.as_raw_fd(), times.as_ptr()) })?;
1586                Ok(())
1587            }
1588        }
1589    }
1590}
1591
1592impl DirBuilder {
1593    pub fn new() -> DirBuilder {
1594        DirBuilder { mode: 0o777 }
1595    }
1596
1597    pub fn mkdir(&self, p: &Path) -> io::Result<()> {
1598        run_path_with_cstr(p, &|p| cvt(unsafe { libc::mkdir(p.as_ptr(), self.mode) }).map(|_| ()))
1599    }
1600
1601    pub fn set_mode(&mut self, mode: u32) {
1602        self.mode = mode as mode_t;
1603    }
1604}
1605
1606impl fmt::Debug for DirBuilder {
1607    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1608        let DirBuilder { mode } = self;
1609        f.debug_struct("DirBuilder").field("mode", &Mode(*mode)).finish()
1610    }
1611}
1612
1613impl AsInner<FileDesc> for File {
1614    #[inline]
1615    fn as_inner(&self) -> &FileDesc {
1616        &self.0
1617    }
1618}
1619
1620impl AsInnerMut<FileDesc> for File {
1621    #[inline]
1622    fn as_inner_mut(&mut self) -> &mut FileDesc {
1623        &mut self.0
1624    }
1625}
1626
1627impl IntoInner<FileDesc> for File {
1628    fn into_inner(self) -> FileDesc {
1629        self.0
1630    }
1631}
1632
1633impl FromInner<FileDesc> for File {
1634    fn from_inner(file_desc: FileDesc) -> Self {
1635        Self(file_desc)
1636    }
1637}
1638
1639impl AsFd for File {
1640    #[inline]
1641    fn as_fd(&self) -> BorrowedFd<'_> {
1642        self.0.as_fd()
1643    }
1644}
1645
1646impl AsRawFd for File {
1647    #[inline]
1648    fn as_raw_fd(&self) -> RawFd {
1649        self.0.as_raw_fd()
1650    }
1651}
1652
1653impl IntoRawFd for File {
1654    fn into_raw_fd(self) -> RawFd {
1655        self.0.into_raw_fd()
1656    }
1657}
1658
1659impl FromRawFd for File {
1660    unsafe fn from_raw_fd(raw_fd: RawFd) -> Self {
1661        Self(FromRawFd::from_raw_fd(raw_fd))
1662    }
1663}
1664
1665impl fmt::Debug for File {
1666    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1667        #[cfg(any(target_os = "linux", target_os = "illumos", target_os = "solaris"))]
1668        fn get_path(fd: c_int) -> Option<PathBuf> {
1669            let mut p = PathBuf::from("/proc/self/fd");
1670            p.push(&fd.to_string());
1671            run_path_with_cstr(&p, &readlink).ok()
1672        }
1673
1674        #[cfg(any(target_vendor = "apple", target_os = "netbsd"))]
1675        fn get_path(fd: c_int) -> Option<PathBuf> {
1676            // FIXME: The use of PATH_MAX is generally not encouraged, but it
1677            // is inevitable in this case because Apple targets and NetBSD define `fcntl`
1678            // with `F_GETPATH` in terms of `MAXPATHLEN`, and there are no
1679            // alternatives. If a better method is invented, it should be used
1680            // instead.
1681            let mut buf = vec![0; libc::PATH_MAX as usize];
1682            let n = unsafe { libc::fcntl(fd, libc::F_GETPATH, buf.as_ptr()) };
1683            if n == -1 {
1684                cfg_select! {
1685                    target_os = "netbsd" => {
1686                        // fallback to procfs as last resort
1687                        let mut p = PathBuf::from("/proc/self/fd");
1688                        p.push(&fd.to_string());
1689                        return run_path_with_cstr(&p, &readlink).ok()
1690                    }
1691                    _ => {
1692                        return None;
1693                    }
1694                }
1695            }
1696            let l = buf.iter().position(|&c| c == 0).unwrap();
1697            buf.truncate(l as usize);
1698            buf.shrink_to_fit();
1699            Some(PathBuf::from(OsString::from_vec(buf)))
1700        }
1701
1702        #[cfg(target_os = "freebsd")]
1703        fn get_path(fd: c_int) -> Option<PathBuf> {
1704            let info = Box::<libc::kinfo_file>::new_zeroed();
1705            let mut info = unsafe { info.assume_init() };
1706            info.kf_structsize = size_of::<libc::kinfo_file>() as libc::c_int;
1707            let n = unsafe { libc::fcntl(fd, libc::F_KINFO, &mut *info) };
1708            if n == -1 {
1709                return None;
1710            }
1711            let buf = unsafe { CStr::from_ptr(info.kf_path.as_mut_ptr()).to_bytes().to_vec() };
1712            Some(PathBuf::from(OsString::from_vec(buf)))
1713        }
1714
1715        #[cfg(target_os = "vxworks")]
1716        fn get_path(fd: c_int) -> Option<PathBuf> {
1717            let mut buf = vec![0; libc::PATH_MAX as usize];
1718            let n = unsafe { libc::ioctl(fd, libc::FIOGETNAME, buf.as_ptr()) };
1719            if n == -1 {
1720                return None;
1721            }
1722            let l = buf.iter().position(|&c| c == 0).unwrap();
1723            buf.truncate(l as usize);
1724            Some(PathBuf::from(OsString::from_vec(buf)))
1725        }
1726
1727        #[cfg(not(any(
1728            target_os = "linux",
1729            target_os = "vxworks",
1730            target_os = "freebsd",
1731            target_os = "netbsd",
1732            target_os = "illumos",
1733            target_os = "solaris",
1734            target_vendor = "apple",
1735        )))]
1736        fn get_path(_fd: c_int) -> Option<PathBuf> {
1737            // FIXME(#24570): implement this for other Unix platforms
1738            None
1739        }
1740
1741        fn get_mode(fd: c_int) -> Option<(bool, bool)> {
1742            let mode = unsafe { libc::fcntl(fd, libc::F_GETFL) };
1743            if mode == -1 {
1744                return None;
1745            }
1746            match mode & libc::O_ACCMODE {
1747                libc::O_RDONLY => Some((true, false)),
1748                libc::O_RDWR => Some((true, true)),
1749                libc::O_WRONLY => Some((false, true)),
1750                _ => None,
1751            }
1752        }
1753
1754        let fd = self.as_raw_fd();
1755        let mut b = f.debug_struct("File");
1756        b.field("fd", &fd);
1757        if let Some(path) = get_path(fd) {
1758            b.field("path", &path);
1759        }
1760        if let Some((read, write)) = get_mode(fd) {
1761            b.field("read", &read).field("write", &write);
1762        }
1763        b.finish()
1764    }
1765}
1766
1767// Format in octal, followed by the mode format used in `ls -l`.
1768//
1769// References:
1770//   https://pubs.opengroup.org/onlinepubs/009696899/utilities/ls.html
1771//   https://www.gnu.org/software/libc/manual/html_node/Testing-File-Type.html
1772//   https://www.gnu.org/software/libc/manual/html_node/Permission-Bits.html
1773//
1774// Example:
1775//   0o100664 (-rw-rw-r--)
1776impl fmt::Debug for Mode {
1777    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1778        let Self(mode) = *self;
1779        write!(f, "0o{mode:06o}")?;
1780
1781        let entry_type = match mode & libc::S_IFMT {
1782            libc::S_IFDIR => 'd',
1783            libc::S_IFBLK => 'b',
1784            libc::S_IFCHR => 'c',
1785            libc::S_IFLNK => 'l',
1786            libc::S_IFIFO => 'p',
1787            libc::S_IFREG => '-',
1788            _ => return Ok(()),
1789        };
1790
1791        f.write_str(" (")?;
1792        f.write_char(entry_type)?;
1793
1794        // Owner permissions
1795        f.write_char(if mode & libc::S_IRUSR != 0 { 'r' } else { '-' })?;
1796        f.write_char(if mode & libc::S_IWUSR != 0 { 'w' } else { '-' })?;
1797        let owner_executable = mode & libc::S_IXUSR != 0;
1798        let setuid = mode as c_int & libc::S_ISUID as c_int != 0;
1799        f.write_char(match (owner_executable, setuid) {
1800            (true, true) => 's',  // executable and setuid
1801            (false, true) => 'S', // setuid
1802            (true, false) => 'x', // executable
1803            (false, false) => '-',
1804        })?;
1805
1806        // Group permissions
1807        f.write_char(if mode & libc::S_IRGRP != 0 { 'r' } else { '-' })?;
1808        f.write_char(if mode & libc::S_IWGRP != 0 { 'w' } else { '-' })?;
1809        let group_executable = mode & libc::S_IXGRP != 0;
1810        let setgid = mode as c_int & libc::S_ISGID as c_int != 0;
1811        f.write_char(match (group_executable, setgid) {
1812            (true, true) => 's',  // executable and setgid
1813            (false, true) => 'S', // setgid
1814            (true, false) => 'x', // executable
1815            (false, false) => '-',
1816        })?;
1817
1818        // Other permissions
1819        f.write_char(if mode & libc::S_IROTH != 0 { 'r' } else { '-' })?;
1820        f.write_char(if mode & libc::S_IWOTH != 0 { 'w' } else { '-' })?;
1821        let other_executable = mode & libc::S_IXOTH != 0;
1822        let sticky = mode as c_int & libc::S_ISVTX as c_int != 0;
1823        f.write_char(match (entry_type, other_executable, sticky) {
1824            ('d', true, true) => 't',  // searchable and restricted deletion
1825            ('d', false, true) => 'T', // restricted deletion
1826            (_, true, _) => 'x',       // executable
1827            (_, false, _) => '-',
1828        })?;
1829
1830        f.write_char(')')
1831    }
1832}
1833
1834pub fn readdir(path: &Path) -> io::Result<ReadDir> {
1835    let ptr = run_path_with_cstr(path, &|p| unsafe { Ok(libc::opendir(p.as_ptr())) })?;
1836    if ptr.is_null() {
1837        Err(Error::last_os_error())
1838    } else {
1839        let root = path.to_path_buf();
1840        let inner = InnerReadDir { dirp: Dir(ptr), root };
1841        Ok(ReadDir::new(inner))
1842    }
1843}
1844
1845pub fn unlink(p: &CStr) -> io::Result<()> {
1846    cvt(unsafe { libc::unlink(p.as_ptr()) }).map(|_| ())
1847}
1848
1849pub fn rename(old: &CStr, new: &CStr) -> io::Result<()> {
1850    cvt(unsafe { libc::rename(old.as_ptr(), new.as_ptr()) }).map(|_| ())
1851}
1852
1853pub fn set_perm(p: &CStr, perm: FilePermissions) -> io::Result<()> {
1854    cvt_r(|| unsafe { libc::chmod(p.as_ptr(), perm.mode) }).map(|_| ())
1855}
1856
1857pub fn rmdir(p: &CStr) -> io::Result<()> {
1858    cvt(unsafe { libc::rmdir(p.as_ptr()) }).map(|_| ())
1859}
1860
1861pub fn readlink(c_path: &CStr) -> io::Result<PathBuf> {
1862    let p = c_path.as_ptr();
1863
1864    let mut buf = Vec::with_capacity(256);
1865
1866    loop {
1867        let buf_read =
1868            cvt(unsafe { libc::readlink(p, buf.as_mut_ptr() as *mut _, buf.capacity()) })? as usize;
1869
1870        unsafe {
1871            buf.set_len(buf_read);
1872        }
1873
1874        if buf_read != buf.capacity() {
1875            buf.shrink_to_fit();
1876
1877            return Ok(PathBuf::from(OsString::from_vec(buf)));
1878        }
1879
1880        // Trigger the internal buffer resizing logic of `Vec` by requiring
1881        // more space than the current capacity. The length is guaranteed to be
1882        // the same as the capacity due to the if statement above.
1883        buf.reserve(1);
1884    }
1885}
1886
1887pub fn symlink(original: &CStr, link: &CStr) -> io::Result<()> {
1888    cvt(unsafe { libc::symlink(original.as_ptr(), link.as_ptr()) }).map(|_| ())
1889}
1890
1891pub fn link(original: &CStr, link: &CStr) -> io::Result<()> {
1892    cfg_select! {
1893        any(target_os = "vxworks", target_os = "redox", target_os = "android", target_os = "espidf", target_os = "horizon", target_os = "vita", target_env = "nto70") => {
1894            // VxWorks, Redox and ESP-IDF lack `linkat`, so use `link` instead. POSIX leaves
1895            // it implementation-defined whether `link` follows symlinks, so rely on the
1896            // `symlink_hard_link` test in library/std/src/fs/tests.rs to check the behavior.
1897            // Android has `linkat` on newer versions, but we happen to know `link`
1898            // always has the correct behavior, so it's here as well.
1899            cvt(unsafe { libc::link(original.as_ptr(), link.as_ptr()) })?;
1900        }
1901        _ => {
1902            // Where we can, use `linkat` instead of `link`; see the comment above
1903            // this one for details on why.
1904            cvt(unsafe { libc::linkat(libc::AT_FDCWD, original.as_ptr(), libc::AT_FDCWD, link.as_ptr(), 0) })?;
1905        }
1906    }
1907    Ok(())
1908}
1909
1910pub fn stat(p: &CStr) -> io::Result<FileAttr> {
1911    cfg_has_statx! {
1912        if let Some(ret) = unsafe { try_statx(
1913            libc::AT_FDCWD,
1914            p.as_ptr(),
1915            libc::AT_STATX_SYNC_AS_STAT,
1916            libc::STATX_BASIC_STATS | libc::STATX_BTIME,
1917        ) } {
1918            return ret;
1919        }
1920    }
1921
1922    let mut stat: stat64 = unsafe { mem::zeroed() };
1923    cvt(unsafe { stat64(p.as_ptr(), &mut stat) })?;
1924    Ok(FileAttr::from_stat64(stat))
1925}
1926
1927pub fn lstat(p: &CStr) -> io::Result<FileAttr> {
1928    cfg_has_statx! {
1929        if let Some(ret) = unsafe { try_statx(
1930            libc::AT_FDCWD,
1931            p.as_ptr(),
1932            libc::AT_SYMLINK_NOFOLLOW | libc::AT_STATX_SYNC_AS_STAT,
1933            libc::STATX_BASIC_STATS | libc::STATX_BTIME,
1934        ) } {
1935            return ret;
1936        }
1937    }
1938
1939    let mut stat: stat64 = unsafe { mem::zeroed() };
1940    cvt(unsafe { lstat64(p.as_ptr(), &mut stat) })?;
1941    Ok(FileAttr::from_stat64(stat))
1942}
1943
1944pub fn canonicalize(path: &CStr) -> io::Result<PathBuf> {
1945    let r = unsafe { libc::realpath(path.as_ptr(), ptr::null_mut()) };
1946    if r.is_null() {
1947        return Err(io::Error::last_os_error());
1948    }
1949    Ok(PathBuf::from(OsString::from_vec(unsafe {
1950        let buf = CStr::from_ptr(r).to_bytes().to_vec();
1951        libc::free(r as *mut _);
1952        buf
1953    })))
1954}
1955
1956fn open_from(from: &Path) -> io::Result<(crate::fs::File, crate::fs::Metadata)> {
1957    use crate::fs::File;
1958    use crate::sys::fs::common::NOT_FILE_ERROR;
1959
1960    let reader = File::open(from)?;
1961    let metadata = reader.metadata()?;
1962    if !metadata.is_file() {
1963        return Err(NOT_FILE_ERROR);
1964    }
1965    Ok((reader, metadata))
1966}
1967
1968#[cfg(target_os = "espidf")]
1969fn open_to_and_set_permissions(
1970    to: &Path,
1971    _reader_metadata: &crate::fs::Metadata,
1972) -> io::Result<(crate::fs::File, crate::fs::Metadata)> {
1973    use crate::fs::OpenOptions;
1974    let writer = OpenOptions::new().open(to)?;
1975    let writer_metadata = writer.metadata()?;
1976    Ok((writer, writer_metadata))
1977}
1978
1979#[cfg(not(target_os = "espidf"))]
1980fn open_to_and_set_permissions(
1981    to: &Path,
1982    reader_metadata: &crate::fs::Metadata,
1983) -> io::Result<(crate::fs::File, crate::fs::Metadata)> {
1984    use crate::fs::OpenOptions;
1985    use crate::os::unix::fs::{OpenOptionsExt, PermissionsExt};
1986
1987    let perm = reader_metadata.permissions();
1988    let writer = OpenOptions::new()
1989        // create the file with the correct mode right away
1990        .mode(perm.mode())
1991        .write(true)
1992        .create(true)
1993        .truncate(true)
1994        .open(to)?;
1995    let writer_metadata = writer.metadata()?;
1996    // fchmod is broken on vita
1997    #[cfg(not(target_os = "vita"))]
1998    if writer_metadata.is_file() {
1999        // Set the correct file permissions, in case the file already existed.
2000        // Don't set the permissions on already existing non-files like
2001        // pipes/FIFOs or device nodes.
2002        writer.set_permissions(perm)?;
2003    }
2004    Ok((writer, writer_metadata))
2005}
2006
2007mod cfm {
2008    use crate::fs::{File, Metadata};
2009    use crate::io::{BorrowedCursor, IoSlice, IoSliceMut, Read, Result, Write};
2010
2011    #[allow(dead_code)]
2012    pub struct CachedFileMetadata(pub File, pub Metadata);
2013
2014    impl Read for CachedFileMetadata {
2015        fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
2016            self.0.read(buf)
2017        }
2018        fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize> {
2019            self.0.read_vectored(bufs)
2020        }
2021        fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> Result<()> {
2022            self.0.read_buf(cursor)
2023        }
2024        #[inline]
2025        fn is_read_vectored(&self) -> bool {
2026            self.0.is_read_vectored()
2027        }
2028        fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize> {
2029            self.0.read_to_end(buf)
2030        }
2031        fn read_to_string(&mut self, buf: &mut String) -> Result<usize> {
2032            self.0.read_to_string(buf)
2033        }
2034    }
2035    impl Write for CachedFileMetadata {
2036        fn write(&mut self, buf: &[u8]) -> Result<usize> {
2037            self.0.write(buf)
2038        }
2039        fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize> {
2040            self.0.write_vectored(bufs)
2041        }
2042        #[inline]
2043        fn is_write_vectored(&self) -> bool {
2044            self.0.is_write_vectored()
2045        }
2046        #[inline]
2047        fn flush(&mut self) -> Result<()> {
2048            self.0.flush()
2049        }
2050    }
2051}
2052#[cfg(any(target_os = "linux", target_os = "android"))]
2053pub(crate) use cfm::CachedFileMetadata;
2054
2055#[cfg(not(target_vendor = "apple"))]
2056pub fn copy(from: &Path, to: &Path) -> io::Result<u64> {
2057    let (reader, reader_metadata) = open_from(from)?;
2058    let (writer, writer_metadata) = open_to_and_set_permissions(to, &reader_metadata)?;
2059
2060    io::copy(
2061        &mut cfm::CachedFileMetadata(reader, reader_metadata),
2062        &mut cfm::CachedFileMetadata(writer, writer_metadata),
2063    )
2064}
2065
2066#[cfg(target_vendor = "apple")]
2067pub fn copy(from: &Path, to: &Path) -> io::Result<u64> {
2068    const COPYFILE_ALL: libc::copyfile_flags_t = libc::COPYFILE_METADATA | libc::COPYFILE_DATA;
2069
2070    struct FreeOnDrop(libc::copyfile_state_t);
2071    impl Drop for FreeOnDrop {
2072        fn drop(&mut self) {
2073            // The code below ensures that `FreeOnDrop` is never a null pointer
2074            unsafe {
2075                // `copyfile_state_free` returns -1 if the `to` or `from` files
2076                // cannot be closed. However, this is not considered an error.
2077                libc::copyfile_state_free(self.0);
2078            }
2079        }
2080    }
2081
2082    let (reader, reader_metadata) = open_from(from)?;
2083
2084    let clonefile_result = run_path_with_cstr(to, &|to| {
2085        cvt(unsafe { libc::fclonefileat(reader.as_raw_fd(), libc::AT_FDCWD, to.as_ptr(), 0) })
2086    });
2087    match clonefile_result {
2088        Ok(_) => return Ok(reader_metadata.len()),
2089        Err(e) => match e.raw_os_error() {
2090            // `fclonefileat` will fail on non-APFS volumes, if the
2091            // destination already exists, or if the source and destination
2092            // are on different devices. In all these cases `fcopyfile`
2093            // should succeed.
2094            Some(libc::ENOTSUP) | Some(libc::EEXIST) | Some(libc::EXDEV) => (),
2095            _ => return Err(e),
2096        },
2097    }
2098
2099    // Fall back to using `fcopyfile` if `fclonefileat` does not succeed.
2100    let (writer, writer_metadata) = open_to_and_set_permissions(to, &reader_metadata)?;
2101
2102    // We ensure that `FreeOnDrop` never contains a null pointer so it is
2103    // always safe to call `copyfile_state_free`
2104    let state = unsafe {
2105        let state = libc::copyfile_state_alloc();
2106        if state.is_null() {
2107            return Err(crate::io::Error::last_os_error());
2108        }
2109        FreeOnDrop(state)
2110    };
2111
2112    let flags = if writer_metadata.is_file() { COPYFILE_ALL } else { libc::COPYFILE_DATA };
2113
2114    cvt(unsafe { libc::fcopyfile(reader.as_raw_fd(), writer.as_raw_fd(), state.0, flags) })?;
2115
2116    let mut bytes_copied: libc::off_t = 0;
2117    cvt(unsafe {
2118        libc::copyfile_state_get(
2119            state.0,
2120            libc::COPYFILE_STATE_COPIED as u32,
2121            (&raw mut bytes_copied) as *mut libc::c_void,
2122        )
2123    })?;
2124    Ok(bytes_copied as u64)
2125}
2126
2127pub fn chown(path: &Path, uid: u32, gid: u32) -> io::Result<()> {
2128    run_path_with_cstr(path, &|path| {
2129        cvt(unsafe { libc::chown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
2130            .map(|_| ())
2131    })
2132}
2133
2134pub fn fchown(fd: c_int, uid: u32, gid: u32) -> io::Result<()> {
2135    cvt(unsafe { libc::fchown(fd, uid as libc::uid_t, gid as libc::gid_t) })?;
2136    Ok(())
2137}
2138
2139#[cfg(not(target_os = "vxworks"))]
2140pub fn lchown(path: &Path, uid: u32, gid: u32) -> io::Result<()> {
2141    run_path_with_cstr(path, &|path| {
2142        cvt(unsafe { libc::lchown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
2143            .map(|_| ())
2144    })
2145}
2146
2147#[cfg(target_os = "vxworks")]
2148pub fn lchown(path: &Path, uid: u32, gid: u32) -> io::Result<()> {
2149    let (_, _, _) = (path, uid, gid);
2150    Err(io::const_error!(io::ErrorKind::Unsupported, "lchown not supported by vxworks"))
2151}
2152
2153#[cfg(not(any(target_os = "fuchsia", target_os = "vxworks")))]
2154pub fn chroot(dir: &Path) -> io::Result<()> {
2155    run_path_with_cstr(dir, &|dir| cvt(unsafe { libc::chroot(dir.as_ptr()) }).map(|_| ()))
2156}
2157
2158#[cfg(target_os = "vxworks")]
2159pub fn chroot(dir: &Path) -> io::Result<()> {
2160    let _ = dir;
2161    Err(io::const_error!(io::ErrorKind::Unsupported, "chroot not supported by vxworks"))
2162}
2163
2164pub fn mkfifo(path: &Path, mode: u32) -> io::Result<()> {
2165    run_path_with_cstr(path, &|path| {
2166        cvt(unsafe { libc::mkfifo(path.as_ptr(), mode.try_into().unwrap()) }).map(|_| ())
2167    })
2168}
2169
2170pub use remove_dir_impl::remove_dir_all;
2171
2172// Fallback for REDOX, ESP-ID, Horizon, Vita, Vxworks and Miri
2173#[cfg(any(
2174    target_os = "redox",
2175    target_os = "espidf",
2176    target_os = "horizon",
2177    target_os = "vita",
2178    target_os = "nto",
2179    target_os = "vxworks",
2180    miri
2181))]
2182mod remove_dir_impl {
2183    pub use crate::sys::fs::common::remove_dir_all;
2184}
2185
2186// Modern implementation using openat(), unlinkat() and fdopendir()
2187#[cfg(not(any(
2188    target_os = "redox",
2189    target_os = "espidf",
2190    target_os = "horizon",
2191    target_os = "vita",
2192    target_os = "nto",
2193    target_os = "vxworks",
2194    miri
2195)))]
2196mod remove_dir_impl {
2197    #[cfg(not(all(target_os = "linux", target_env = "gnu")))]
2198    use libc::{fdopendir, openat, unlinkat};
2199    #[cfg(all(target_os = "linux", target_env = "gnu"))]
2200    use libc::{fdopendir, openat64 as openat, unlinkat};
2201
2202    use super::{Dir, DirEntry, InnerReadDir, ReadDir, lstat};
2203    use crate::ffi::CStr;
2204    use crate::io;
2205    use crate::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd};
2206    use crate::os::unix::prelude::{OwnedFd, RawFd};
2207    use crate::path::{Path, PathBuf};
2208    use crate::sys::common::small_c_string::run_path_with_cstr;
2209    use crate::sys::{cvt, cvt_r};
2210    use crate::sys_common::ignore_notfound;
2211
2212    pub fn openat_nofollow_dironly(parent_fd: Option<RawFd>, p: &CStr) -> io::Result<OwnedFd> {
2213        let fd = cvt_r(|| unsafe {
2214            openat(
2215                parent_fd.unwrap_or(libc::AT_FDCWD),
2216                p.as_ptr(),
2217                libc::O_CLOEXEC | libc::O_RDONLY | libc::O_NOFOLLOW | libc::O_DIRECTORY,
2218            )
2219        })?;
2220        Ok(unsafe { OwnedFd::from_raw_fd(fd) })
2221    }
2222
2223    fn fdreaddir(dir_fd: OwnedFd) -> io::Result<(ReadDir, RawFd)> {
2224        let ptr = unsafe { fdopendir(dir_fd.as_raw_fd()) };
2225        if ptr.is_null() {
2226            return Err(io::Error::last_os_error());
2227        }
2228        let dirp = Dir(ptr);
2229        // file descriptor is automatically closed by libc::closedir() now, so give up ownership
2230        let new_parent_fd = dir_fd.into_raw_fd();
2231        // a valid root is not needed because we do not call any functions involving the full path
2232        // of the `DirEntry`s.
2233        let dummy_root = PathBuf::new();
2234        let inner = InnerReadDir { dirp, root: dummy_root };
2235        Ok((ReadDir::new(inner), new_parent_fd))
2236    }
2237
2238    #[cfg(any(
2239        target_os = "solaris",
2240        target_os = "illumos",
2241        target_os = "haiku",
2242        target_os = "vxworks",
2243        target_os = "aix",
2244    ))]
2245    fn is_dir(_ent: &DirEntry) -> Option<bool> {
2246        None
2247    }
2248
2249    #[cfg(not(any(
2250        target_os = "solaris",
2251        target_os = "illumos",
2252        target_os = "haiku",
2253        target_os = "vxworks",
2254        target_os = "aix",
2255    )))]
2256    fn is_dir(ent: &DirEntry) -> Option<bool> {
2257        match ent.entry.d_type {
2258            libc::DT_UNKNOWN => None,
2259            libc::DT_DIR => Some(true),
2260            _ => Some(false),
2261        }
2262    }
2263
2264    fn is_enoent(result: &io::Result<()>) -> bool {
2265        if let Err(err) = result
2266            && matches!(err.raw_os_error(), Some(libc::ENOENT))
2267        {
2268            true
2269        } else {
2270            false
2271        }
2272    }
2273
2274    fn remove_dir_all_recursive(parent_fd: Option<RawFd>, path: &CStr) -> io::Result<()> {
2275        // try opening as directory
2276        let fd = match openat_nofollow_dironly(parent_fd, &path) {
2277            Err(err) if matches!(err.raw_os_error(), Some(libc::ENOTDIR | libc::ELOOP)) => {
2278                // not a directory - don't traverse further
2279                // (for symlinks, older Linux kernels may return ELOOP instead of ENOTDIR)
2280                return match parent_fd {
2281                    // unlink...
2282                    Some(parent_fd) => {
2283                        cvt(unsafe { unlinkat(parent_fd, path.as_ptr(), 0) }).map(drop)
2284                    }
2285                    // ...unless this was supposed to be the deletion root directory
2286                    None => Err(err),
2287                };
2288            }
2289            result => result?,
2290        };
2291
2292        // open the directory passing ownership of the fd
2293        let (dir, fd) = fdreaddir(fd)?;
2294        for child in dir {
2295            let child = child?;
2296            let child_name = child.name_cstr();
2297            // we need an inner try block, because if one of these
2298            // directories has already been deleted, then we need to
2299            // continue the loop, not return ok.
2300            let result: io::Result<()> = try {
2301                match is_dir(&child) {
2302                    Some(true) => {
2303                        remove_dir_all_recursive(Some(fd), child_name)?;
2304                    }
2305                    Some(false) => {
2306                        cvt(unsafe { unlinkat(fd, child_name.as_ptr(), 0) })?;
2307                    }
2308                    None => {
2309                        // POSIX specifies that calling unlink()/unlinkat(..., 0) on a directory can succeed
2310                        // if the process has the appropriate privileges. This however can causing orphaned
2311                        // directories requiring an fsck e.g. on Solaris and Illumos. So we try recursing
2312                        // into it first instead of trying to unlink() it.
2313                        remove_dir_all_recursive(Some(fd), child_name)?;
2314                    }
2315                }
2316            };
2317            if result.is_err() && !is_enoent(&result) {
2318                return result;
2319            }
2320        }
2321
2322        // unlink the directory after removing its contents
2323        ignore_notfound(cvt(unsafe {
2324            unlinkat(parent_fd.unwrap_or(libc::AT_FDCWD), path.as_ptr(), libc::AT_REMOVEDIR)
2325        }))?;
2326        Ok(())
2327    }
2328
2329    fn remove_dir_all_modern(p: &CStr) -> io::Result<()> {
2330        // We cannot just call remove_dir_all_recursive() here because that would not delete a passed
2331        // symlink. No need to worry about races, because remove_dir_all_recursive() does not recurse
2332        // into symlinks.
2333        let attr = lstat(p)?;
2334        if attr.file_type().is_symlink() {
2335            super::unlink(p)
2336        } else {
2337            remove_dir_all_recursive(None, &p)
2338        }
2339    }
2340
2341    pub fn remove_dir_all(p: &Path) -> io::Result<()> {
2342        run_path_with_cstr(p, &remove_dir_all_modern)
2343    }
2344}