SGX target: implement command-line arguments and environment variables

This commit is contained in:
Jethro Beekman 2018-09-20 18:01:10 -07:00
parent 6650f43a3f
commit 7bea6a1964
2 changed files with 70 additions and 25 deletions

View file

@ -9,49 +9,67 @@
// except according to those terms. // except according to those terms.
use ffi::OsString; use ffi::OsString;
use fortanix_sgx_abi::ByteBuffer; use super::abi::usercalls::{copy_user_buffer, alloc, ByteBuffer};
use sync::atomic::{AtomicUsize, Ordering};
use sys::os_str::Buf;
use sys_common::FromInner;
use slice;
static ARGS: AtomicUsize = AtomicUsize::new(0);
type ArgsStore = Vec<OsString>;
pub unsafe fn init(argc: isize, argv: *const *const u8) { pub unsafe fn init(argc: isize, argv: *const *const u8) {
// See ABI if argc != 0 {
let _len: usize = argc as _; let args = alloc::User::<[ByteBuffer]>::from_raw_parts(argv as _, argc as _);
let _args: *const ByteBuffer = argv as _; let args = args.iter()
.map( |a| OsString::from_inner(Buf { inner: copy_user_buffer(a) }) )
// TODO .collect::<ArgsStore>();
ARGS.store(Box::into_raw(Box::new(args)) as _, Ordering::Relaxed);
}
} }
pub unsafe fn cleanup() { pub unsafe fn cleanup() {
let args = ARGS.swap(0, Ordering::Relaxed);
if args != 0 {
drop(Box::<ArgsStore>::from_raw(args as _))
}
} }
pub fn args() -> Args { pub fn args() -> Args {
Args let args = unsafe { (ARGS.load(Ordering::Relaxed) as *const ArgsStore).as_ref() };
if let Some(args) = args {
Args(args.iter())
} else {
Args([].iter())
}
} }
pub struct Args; pub struct Args(slice::Iter<'static, OsString>);
impl Args { impl Args {
pub fn inner_debug(&self) -> &[OsString] { pub fn inner_debug(&self) -> &[OsString] {
&[] self.0.as_slice()
} }
} }
impl Iterator for Args { impl Iterator for Args {
type Item = OsString; type Item = OsString;
fn next(&mut self) -> Option<OsString> { fn next(&mut self) -> Option<OsString> {
None self.0.next().cloned()
} }
fn size_hint(&self) -> (usize, Option<usize>) { fn size_hint(&self) -> (usize, Option<usize>) {
(0, Some(0)) self.0.size_hint()
} }
} }
impl ExactSizeIterator for Args { impl ExactSizeIterator for Args {
fn len(&self) -> usize { fn len(&self) -> usize {
0 self.0.len()
} }
} }
impl DoubleEndedIterator for Args { impl DoubleEndedIterator for Args {
fn next_back(&mut self) -> Option<OsString> { fn next_back(&mut self) -> Option<OsString> {
None self.0.next_back().cloned()
} }
} }

View file

@ -17,6 +17,11 @@ use io;
use path::{self, PathBuf}; use path::{self, PathBuf};
use str; use str;
use sys::{unsupported, Void, sgx_ineffective, decode_error_kind}; use sys::{unsupported, Void, sgx_ineffective, decode_error_kind};
use collections::HashMap;
use vec;
use sync::Mutex;
use sync::atomic::{AtomicUsize, Ordering};
use sync::Once;
pub fn errno() -> i32 { pub fn errno() -> i32 {
RESULT_SUCCESS RESULT_SUCCESS
@ -78,29 +83,51 @@ pub fn current_exe() -> io::Result<PathBuf> {
unsupported() unsupported()
} }
pub struct Env; static ENV: AtomicUsize = AtomicUsize::new(0);
static ENV_INIT: Once = Once::new();
type EnvStore = Mutex<HashMap<OsString, OsString>>;
impl Iterator for Env { fn get_env_store() -> Option<&'static EnvStore> {
type Item = (OsString, OsString); unsafe { (ENV.load(Ordering::Relaxed) as *const EnvStore).as_ref() }
fn next(&mut self) -> Option<(OsString, OsString)> { }
None
fn create_env_store() -> &'static EnvStore {
ENV_INIT.call_once(|| {
ENV.store(Box::into_raw(Box::new(EnvStore::default())) as _, Ordering::Relaxed)
});
unsafe {
&*(ENV.load(Ordering::Relaxed) as *const EnvStore)
} }
} }
pub type Env = vec::IntoIter<(OsString, OsString)>;
pub fn env() -> Env { pub fn env() -> Env {
Env let clone_to_vec = |map: &HashMap<OsString, OsString>| -> Vec<_> {
map.iter().map(|(k, v)| (k.clone(), v.clone()) ).collect()
};
get_env_store()
.map(|env| clone_to_vec(&env.lock().unwrap()) )
.unwrap_or_default()
.into_iter()
} }
pub fn getenv(_k: &OsStr) -> io::Result<Option<OsString>> { pub fn getenv(k: &OsStr) -> io::Result<Option<OsString>> {
Ok(None) Ok(get_env_store().and_then(|s| s.lock().unwrap().get(k).cloned() ))
} }
pub fn setenv(_k: &OsStr, _v: &OsStr) -> io::Result<()> { pub fn setenv(k: &OsStr, v: &OsStr) -> io::Result<()> {
sgx_ineffective(()) // FIXME: this could trigger a panic higher up the stack let (k, v) = (k.to_owned(), v.to_owned());
create_env_store().lock().unwrap().insert(k, v);
Ok(())
} }
pub fn unsetenv(_k: &OsStr) -> io::Result<()> { pub fn unsetenv(k: &OsStr) -> io::Result<()> {
sgx_ineffective(()) // FIXME: this could trigger a panic higher up the stack if let Some(env) = get_env_store() {
env.lock().unwrap().remove(k);
}
Ok(())
} }
pub fn temp_dir() -> PathBuf { pub fn temp_dir() -> PathBuf {