This crate provides a direct binding to the [pidfd_getfd
] syscall along with
a slightly more convenient wrapper, get_file_from_pidfd
. This also contains
an extension trait for [pidfd::PidFd
] and [std
's PidFd
] (currently only
available on nightly rustc) which provides access to get_file_from_pidfd
via
PidFdExt::get_file()
.
Note that pidfd
s are currently only supported on Linux 5.6 or later, thus this crate
will only work on Linux. If any other platform gains support for pidfd
s, please
let me know through an issue or pull request!
Please note that this crate has not been thoroughly tested. Viewer discretion is advised.
```rust use pidfdgetfd::{getfilefrompidfd, GetFdFlags}; use std::io::Read;
let pidfd: RawFd = /* ... /; let target_fd: RawFd = / ... */; let file = getfilefrompidfd(pidfd, targetfd, GetFdFlags::empty()); let mut buf = Vec::new(); file.readtoend(&mut buf)?; println!("{:#?}", buf); ```
Using pidfd
:
```rust
use pidfd::PidFd;
use pidfd_getfd::{GetFdFlags, PidFdExt};
use std::process::Command;
let child = Command::new("/usr/bin/foo").spawn().expect("failed to run foo
");
let pidfd = PidFd::fromstdchecked(&child)?;
let filefromchild = pidfd.get_file(1, GetFdFlags::empty())?;
```
Using nightly rustc: ```rust
use pidfd_getfd::{GetFdFlags, PidFdExt}; use std::{ os::linux::process::{ChildExt, CommandExt}, process::Command, };
let child = Command::new("/usr/bin/foo")
.create_pidfd(true)
.spawn()
.expect("failed to run foo
");
let filefromchild = child.pidfd()?.get_file(1, GetFdFlags::empty())?; ```