]> git.proxmox.com Git - rustc.git/blob - src/libstd/sys/sgx/os.rs
New upstream version 1.42.0+dfsg1
[rustc.git] / src / libstd / sys / sgx / os.rs
1 use fortanix_sgx_abi::{Error, RESULT_SUCCESS};
2
3 use crate::collections::HashMap;
4 use crate::error::Error as StdError;
5 use crate::ffi::{OsStr, OsString};
6 use crate::fmt;
7 use crate::io;
8 use crate::path::{self, PathBuf};
9 use crate::str;
10 use crate::sync::atomic::{AtomicUsize, Ordering};
11 use crate::sync::Mutex;
12 use crate::sync::Once;
13 use crate::sys::{decode_error_kind, sgx_ineffective, unsupported, Void};
14 use crate::vec;
15
16 pub fn errno() -> i32 {
17 RESULT_SUCCESS
18 }
19
20 pub fn error_string(errno: i32) -> String {
21 if errno == RESULT_SUCCESS {
22 "operation successful".into()
23 } else if ((Error::UserRangeStart as _)..=(Error::UserRangeEnd as _)).contains(&errno) {
24 format!("user-specified error {:08x}", errno)
25 } else {
26 decode_error_kind(errno).as_str().into()
27 }
28 }
29
30 pub fn getcwd() -> io::Result<PathBuf> {
31 unsupported()
32 }
33
34 pub fn chdir(_: &path::Path) -> io::Result<()> {
35 sgx_ineffective(())
36 }
37
38 pub struct SplitPaths<'a>(&'a Void);
39
40 pub fn split_paths(_unparsed: &OsStr) -> SplitPaths<'_> {
41 panic!("unsupported")
42 }
43
44 impl<'a> Iterator for SplitPaths<'a> {
45 type Item = PathBuf;
46 fn next(&mut self) -> Option<PathBuf> {
47 match *self.0 {}
48 }
49 }
50
51 #[derive(Debug)]
52 pub struct JoinPathsError;
53
54 pub fn join_paths<I, T>(_paths: I) -> Result<OsString, JoinPathsError>
55 where
56 I: Iterator<Item = T>,
57 T: AsRef<OsStr>,
58 {
59 Err(JoinPathsError)
60 }
61
62 impl fmt::Display for JoinPathsError {
63 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
64 "not supported in SGX yet".fmt(f)
65 }
66 }
67
68 impl StdError for JoinPathsError {
69 #[allow(deprecated)]
70 fn description(&self) -> &str {
71 "not supported in SGX yet"
72 }
73 }
74
75 pub fn current_exe() -> io::Result<PathBuf> {
76 unsupported()
77 }
78
79 #[cfg_attr(test, linkage = "available_externally")]
80 #[export_name = "_ZN16__rust_internals3std3sys3sgx2os3ENVE"]
81 static ENV: AtomicUsize = AtomicUsize::new(0);
82 #[cfg_attr(test, linkage = "available_externally")]
83 #[export_name = "_ZN16__rust_internals3std3sys3sgx2os8ENV_INITE"]
84 static ENV_INIT: Once = Once::new();
85 type EnvStore = Mutex<HashMap<OsString, OsString>>;
86
87 fn get_env_store() -> Option<&'static EnvStore> {
88 unsafe { (ENV.load(Ordering::Relaxed) as *const EnvStore).as_ref() }
89 }
90
91 fn create_env_store() -> &'static EnvStore {
92 ENV_INIT.call_once(|| {
93 ENV.store(Box::into_raw(Box::new(EnvStore::default())) as _, Ordering::Relaxed)
94 });
95 unsafe { &*(ENV.load(Ordering::Relaxed) as *const EnvStore) }
96 }
97
98 pub type Env = vec::IntoIter<(OsString, OsString)>;
99
100 pub fn env() -> Env {
101 let clone_to_vec = |map: &HashMap<OsString, OsString>| -> Vec<_> {
102 map.iter().map(|(k, v)| (k.clone(), v.clone())).collect()
103 };
104
105 get_env_store().map(|env| clone_to_vec(&env.lock().unwrap())).unwrap_or_default().into_iter()
106 }
107
108 pub fn getenv(k: &OsStr) -> io::Result<Option<OsString>> {
109 Ok(get_env_store().and_then(|s| s.lock().unwrap().get(k).cloned()))
110 }
111
112 pub fn setenv(k: &OsStr, v: &OsStr) -> io::Result<()> {
113 let (k, v) = (k.to_owned(), v.to_owned());
114 create_env_store().lock().unwrap().insert(k, v);
115 Ok(())
116 }
117
118 pub fn unsetenv(k: &OsStr) -> io::Result<()> {
119 if let Some(env) = get_env_store() {
120 env.lock().unwrap().remove(k);
121 }
122 Ok(())
123 }
124
125 pub fn temp_dir() -> PathBuf {
126 panic!("no filesystem in SGX")
127 }
128
129 pub fn home_dir() -> Option<PathBuf> {
130 None
131 }
132
133 pub fn exit(code: i32) -> ! {
134 super::abi::exit_with_code(code as _)
135 }
136
137 pub fn getpid() -> u32 {
138 panic!("no pids in SGX")
139 }