Crates.io | proc_self |
lib.rs | proc_self |
version | 0.2.0 |
source | src |
created_at | 2018-07-26 14:01:45.069573 |
updated_at | 2019-01-11 13:06:56.892785 |
description | Cross-platform `/proc/self` functionality. This library enables limited `/proc/self` functionality, including getting the current executable, open file descriptors, and paths for open file descriptors that can be passed to e.g. `exec` (for those systems without `fexecve`). Integrated into https://github.com/alecmocatta/palaver |
homepage | https://github.com/alecmocatta/palaver |
repository | https://github.com/alecmocatta/palaver |
max_upload_size | |
id | 76043 |
size | 14,507 |
Cross-platform /proc/self
functionality.
This library enables limited /proc/self
functionality, including getting the current executable, open file descriptors, and paths for open file descriptors that can be passed to e.g. exec
(for those systems without fexecve
).
It's currently used on unix-family systems; most Windows functionality is TODO.
extern crate nix;
extern crate proc_self;
use std::io::Read;
use proc_self::*;
// Close all file descriptors except std{in,out,err}.
for fd in FdIter::new().unwrap() {
if fd > 2 {
nix::unistd::close(fd).unwrap();
}
}
let mut current_binary = vec![];
exe().unwrap().read_to_end(&mut current_binary).unwrap();
println!("Current binary is {} bytes long!", current_binary.len());
Licensed under Apache License, Version 2.0, (LICENSE.txt or http://www.apache.org/licenses/LICENSE-2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.