nfs3_server 0.11.0

A Rust NFSv3 Server implementation
Documentation
use std::fs::{File, Permissions};
#[cfg(unix)]
use std::os::unix::fs::{FileTypeExt, MetadataExt, PermissionsExt};
#[cfg(windows)]
use std::os::windows::fs::MetadataExt;
use std::path::Path;

use nfs3_types::nfs3::ftype3;

pub struct NfsMetadataExt<'a>(pub &'a std::fs::Metadata);

#[cfg(unix)]
impl NfsMetadataExt<'_> {
    pub fn mode(&self) -> u32 {
        self.0.mode()
    }
    pub fn nlink(&self) -> u32 {
        self.0.nlink().try_into().unwrap_or(u32::MAX)
    }

    pub fn uid(&self) -> u32 {
        self.0.uid()
    }

    pub fn gid(&self) -> u32 {
        self.0.gid()
    }

    pub fn file_type(&self) -> ftype3 {
        let file_type = self.0.file_type();
        if file_type.is_file() {
            ftype3::NF3REG
        } else if file_type.is_dir() {
            ftype3::NF3DIR
        } else if file_type.is_symlink() {
            ftype3::NF3LNK
        } else if file_type.is_block_device() {
            ftype3::NF3BLK
        } else if file_type.is_char_device() {
            ftype3::NF3CHR
        } else if file_type.is_fifo() {
            ftype3::NF3FIFO
        } else if file_type.is_socket() {
            ftype3::NF3SOCK
        } else {
            ftype3::NF3REG // Default case (though ideally unreachable)
        }
    }

    pub fn set_mode_on_path(path: impl AsRef<Path>, mode: u32) -> std::io::Result<()> {
        std::fs::set_permissions(path, Permissions::from_mode(mode))
    }

    pub fn set_mode_on_file(file: &File, mode: u32) -> std::io::Result<()> {
        file.set_permissions(Permissions::from_mode(mode))
    }
}

#[cfg(windows)]
#[allow(clippy::unnecessary_wraps, clippy::unused_self)]
impl NfsMetadataExt<'_> {
    pub fn mode(&self) -> u32 {
        // Assume full `rwxrwxrwx` permissions if not read-only
        if self.0.permissions().readonly() {
            0o444 // Readable by all, not writable
        } else {
            0o666 // Readable and writable by all
        }
    }

    /// `number_of_links` is nightly only, issue: 63010
    pub fn nlink(&self) -> u32 {
        if self.0.is_dir() { 2 } else { 1 }
    }

    pub const fn uid(&self) -> u32 {
        1000
    }

    pub const fn gid(&self) -> u32 {
        1000
    }

    pub fn file_type(&self) -> ftype3 {
        if self.0.is_file() {
            ftype3::NF3REG
        } else if self.0.is_symlink() {
            ftype3::NF3LNK
        } else if self.0.is_dir() {
            ftype3::NF3DIR
        } else {
            ftype3::NF3REG // Default case (though ideally unreachable)
        }
    }

    pub fn set_mode_on_path(_path: impl AsRef<Path>, _mode: u32) -> std::io::Result<()> {
        tracing::debug!("setting permissions is not supported");
        Ok(())
    }

    pub fn set_mode_on_file(_file: &File, _mode: u32) -> std::io::Result<()> {
        tracing::debug!("setting permissions is not supported");
        Ok(())
    }
}