-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jorge Prendes <[email protected]>
- Loading branch information
Showing
9 changed files
with
158 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#[cfg_attr(unix, path = "sys/unix/stdio.rs")] | ||
#[cfg_attr(windows, path = "sys/windows/stdio.rs")] | ||
mod stdio_impl; | ||
|
||
use std::fs::{File, OpenOptions}; | ||
use std::io::ErrorKind::NotFound; | ||
use std::io::{Error, Result}; | ||
use std::path::Path; | ||
use std::sync::{Arc, Mutex}; | ||
|
||
use stdio_impl::*; | ||
|
||
#[derive(Default, Clone)] | ||
pub struct Stdio { | ||
pub stdin: Stdin, | ||
pub stdout: Stdout, | ||
pub stderr: Stderr, | ||
} | ||
|
||
impl Stdio { | ||
pub fn redirect(&self) -> Result<()> { | ||
self.stdin.redirect()?; | ||
self.stdout.redirect()?; | ||
self.stderr.redirect()?; | ||
Ok(()) | ||
} | ||
} | ||
|
||
macro_rules! stdio_impl { | ||
( $stdio_type:ident, $fd:expr ) => { | ||
#[derive(Default, Clone)] | ||
pub struct $stdio_type(Arc<Mutex<Option<File>>>); | ||
|
||
impl<P: AsRef<Path>> TryFrom<Option<P>> for $stdio_type { | ||
type Error = std::io::Error; | ||
fn try_from(path: Option<P>) -> Result<Self> { | ||
path.and_then(|path| match path.as_ref() { | ||
path if path.as_os_str().is_empty() => None, | ||
path => Some(path.to_owned()), | ||
}) | ||
.map( | ||
|path| match OpenOptions::new().read(true).write(true).open(path) { | ||
Err(err) if err.kind() == NotFound => Ok(None), | ||
Ok(f) => Ok(Some(f)), | ||
Err(err) => Err(err), | ||
}, | ||
) | ||
.transpose() | ||
.map(|opt| Self(Arc::new(Mutex::new(opt.flatten())))) | ||
} | ||
} | ||
|
||
impl $stdio_type { | ||
pub fn redirect(&self) -> Result<()> { | ||
if let Some(f) = self.0.try_lock().ok().and_then(|mut f| f.take()) { | ||
let f = try_into_fd(f)?; | ||
let _ = unsafe { libc::dup($fd) }; | ||
if unsafe { libc::dup2(f.as_raw_fd(), $fd) } == -1 { | ||
return Err(Error::last_os_error()); | ||
} | ||
} | ||
Ok(()) | ||
} | ||
} | ||
}; | ||
} | ||
|
||
stdio_impl!(Stdin, STDIN_FILENO); | ||
stdio_impl!(Stdout, STDOUT_FILENO); | ||
stdio_impl!(Stderr, STDERR_FILENO); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use std::io::Result; | ||
pub use std::os::fd::AsRawFd as StdioAsRawFd; | ||
use std::os::fd::OwnedFd; | ||
|
||
pub use libc::{STDERR_FILENO, STDIN_FILENO, STDOUT_FILENO}; | ||
|
||
pub fn try_into_fd(f: impl Into<OwnedFd>) -> Result<impl StdioAsRawFd> { | ||
Ok(f.into()) | ||
} |
39 changes: 39 additions & 0 deletions
39
crates/containerd-shim-wasm/src/sandbox/sys/windows/stdio.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
use std::io::ErrorKind::Other; | ||
use std::io::{Error, Result}; | ||
use std::os::windows::prelude::{AsRawHandle, IntoRawHandle, OwnedHandle}; | ||
|
||
use libc::{c_int, close, intptr_t, open_osfhandle, O_APPEND}; | ||
|
||
type StdioRawFd = libc::c_int; | ||
|
||
pub static STDIN_FILENO: StdioRawFd = 0; | ||
pub static STDOUT_FILENO: StdioRawFd = 1; | ||
pub static STDERR_FILENO: StdioRawFd = 2; | ||
|
||
struct StdioOwnedFd(c_int); | ||
|
||
pub fn try_into_fd(f: impl Into<OwnedHandle>) -> Result<impl StdioAsRawFd> { | ||
let handle = f.into(); | ||
let fd = unsafe { open_osfhandle(handle.as_raw_handle() as intptr_t, O_APPEND) }; | ||
if fd == -1 { | ||
return Err(Error::new(Other, "Failed to open file descriptor")); | ||
} | ||
let _ = handle.into_raw_handle(); // drop ownership of the handle, it's managed by fd now | ||
Ok(StdioOwnedFd(fd)) | ||
} | ||
|
||
pub trait StdioAsRawFd { | ||
fn as_raw_fd(&self) -> c_int; | ||
} | ||
|
||
impl StdioAsRawFd for StdioOwnedFd { | ||
fn as_raw_fd(&self) -> c_int { | ||
self.0 | ||
} | ||
} | ||
|
||
impl Drop for StdioOwnedFd { | ||
fn drop(&mut self) { | ||
unsafe { close(self.0) }; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.