How can I read from a specific raw file descriptor in Rust? How can I read from a specific raw file descriptor in Rust? unix unix

How can I read from a specific raw file descriptor in Rust?


I think right now your best bet is probably using the libc crate for working with raw file descriptors.

The movement of FileDesc to private scope was fallout from the runtime removal a few months back. See this RFC for some more context. std::os::unix currently has the type Fd, and I believe the long term idea is to expose more of the platform-specific functionality in that module.


As of Rust 1.1, you can use FromRawFd to create a File from a specific file descriptor, but only on UNIX-like operating systems:

use std::{    fs::File,    io::{self, Read},    os::unix::io::FromRawFd,};fn main() -> io::Result<()> {    let mut f = unsafe { File::from_raw_fd(3) };    let mut input = String::new();    f.read_to_string(&mut input)?;    println!("I read: {}", input);    Ok(())}
$ cat /tmp/outputHello, world!$ target/debug/example 3< /tmp/outputI read: Hello, world!

from_raw_fd is unsafe:

This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.

The created File will assume ownership of the file descriptor: when the File goes out of scope, the file descriptor will be closed. You can avoid this by using either IntoRawFd or mem::forget.

See also:


Editor's note: This answer is for a version of Rust prior to 1.0 and does not compile in Rust 1.0.

I'm just exploring rust myself, but after searching a bit, came up with the following use of the native crate: (using file descriptor "1" for the example -- 1 is stdout)

extern crate native;use native::io::file::FileDesc as FileDesc;fn main() {  let mut f = FileDesc::new(1, true);  let buf = "Hello, world!\n".as_bytes();  f.inner_write(buf);}

(Tested with rustc 0.13.0-nightly. Note that the inner_write method may have been renamed to write in more recent versions of libstd)

Update

The nativecrate was recently removed from the standard library and FileDesc, while still exists as std::sys::fs::FileDesc is no longer public...