diff --git a/proxmox-tools/src/raw.rs b/proxmox-tools/src/raw.rs new file mode 100644 index 00000000..7e4e49d9 --- /dev/null +++ b/proxmox-tools/src/raw.rs @@ -0,0 +1,36 @@ +use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd}; + +/// Guard a raw file descriptor with a drop handler. This is mostly useful when access to an owned +/// `RawFd` is required without the corresponding handler object (such as when only the file +/// descriptor number is required in a closure which may be dropped instead of being executed). +pub struct Fd(pub RawFd); + +impl Drop for Fd { + fn drop(&mut self) { + if self.0 != -1 { + unsafe { + libc::close(self.0); + } + } + } +} + +impl AsRawFd for Fd { + fn as_raw_fd(&self) -> RawFd { + self.0 + } +} + +impl IntoRawFd for Fd { + fn into_raw_fd(mut self) -> RawFd { + let fd = self.0; + self.0 = -1; + fd + } +} + +impl FromRawFd for Fd { + unsafe fn from_raw_fd(fd: RawFd) -> Self { + Self(fd) + } +}