fsys 1.1.0

Filesystem IO for Rust storage engines: journal substrate, io_uring, NVMe passthrough, atomic writes, cross-platform durability.
Documentation
//! Kernel-level IO primitives availability map.
//!
//! Each field is `true` only when the active build target's kernel
//! exposes the primitive at all. A `true` does **not** guarantee the
//! call will succeed for a given file descriptor — for example, on
//! Linux every kernel since 2.6 supports `O_DIRECT` *as a syscall*,
//! but tmpfs and several network filesystems will reject the flag at
//! open time.
//!
//! Runtime verification is now in place for the load-bearing fields:
//! - `io_uring` is a real runtime probe (`io_uring_setup(2)`) on Linux
//!   since 0.5.0.
//! - `nvme_passthrough` is a real probe (NVMe character device + ioctl
//!   capability) since 0.6.0.
//! - `direct_io` / `iocp` / `kqueue` / `mmap` are target-driven (their
//!   *syscall* availability is determined at compile time by the build
//!   target; per-fd open-time rejection is signalled separately via
//!   `Handle::active_method()`).

/// Availability of kernel-level IO primitives.
///
/// Stored as plain bools rather than a bitset because each field has
/// independent semantics and exposing them by name keeps callers
/// honest about which primitive they are checking.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub struct IoPrimitives {
    /// Linux `io_uring` interface (kernel 5.1+). Real runtime probe
    /// since 0.5.0 (attempts a 1-entry submission ring).
    pub io_uring: bool,
    /// Windows I/O Completion Ports.
    ///
    /// Always `true` on Windows targets: IOCP has been part of the
    /// kernel since NT 3.5.
    pub iocp: bool,
    /// BSD `kqueue` (macOS, FreeBSD, NetBSD, OpenBSD).
    pub kqueue: bool,
    /// NVMe passthrough flush via `NVME_IOCTL_IO_CMD` (Linux) or
    /// `IOCTL_STORAGE_PROTOCOL_COMMAND` (Windows).
    ///
    /// Real device-class + privilege probe since 0.6.0; lazily
    /// computed on first hot-path query.
    pub nvme_passthrough: bool,
    /// Direct (page-cache-bypassing) IO. Available on Linux
    /// (`O_DIRECT`), macOS (`F_NOCACHE`), and Windows
    /// (`FILE_FLAG_NO_BUFFERING`).
    pub direct_io: bool,
    /// Memory-mapped IO. Available on every supported target.
    pub mmap: bool,
}

/// Runs the per-platform IO-primitives probe.
///
/// 0.5.0 delegates to the crate-internal
/// `probe::platform::probe_io_primitives`. On Linux the `io_uring`
/// field is now a real runtime check (attempts to construct a 1-entry
/// submission ring; success means the kernel supports
/// `io_uring_setup(2)` for this process). NVMe passthrough remains
/// `false` until 0.6.0.
#[must_use]
pub(super) fn probe() -> IoPrimitives {
    super::probe::platform::probe_io_primitives()
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_default_has_all_fields_false() {
        let p = IoPrimitives::default();
        assert!(!p.io_uring);
        assert!(!p.iocp);
        assert!(!p.kqueue);
        assert!(!p.nvme_passthrough);
        assert!(!p.direct_io);
        assert!(!p.mmap);
    }

    #[test]
    fn test_probe_reports_iocp_only_on_windows() {
        let p = probe();
        if cfg!(target_os = "windows") {
            assert!(p.iocp);
        } else {
            assert!(!p.iocp);
        }
    }

    #[test]
    fn test_probe_reports_kqueue_on_bsds_and_macos() {
        let p = probe();
        let expected = cfg!(any(
            target_os = "macos",
            target_os = "freebsd",
            target_os = "netbsd",
            target_os = "openbsd",
            target_os = "dragonfly",
        ));
        assert_eq!(p.kqueue, expected);
    }

    #[test]
    fn test_probe_reports_mmap_on_supported_targets() {
        let p = probe();
        if cfg!(any(unix, windows)) {
            assert!(p.mmap);
        }
    }

    #[test]
    fn test_probe_io_uring_runtime_check_does_not_panic() {
        // 0.5.0: io_uring is a real runtime probe on Linux. Just
        // confirm the call returns a bool without panicking. On
        // non-Linux it is always false.
        let p = probe();
        if !cfg!(target_os = "linux") {
            assert!(!p.io_uring);
        }
    }

    #[test]
    fn test_probe_does_not_lie_about_nvme_passthrough_in_0_5_0() {
        assert!(!probe().nvme_passthrough);
    }
}