Skip to content

Commit 70dd980

Browse files
committed
Update fortanix-sgx-abi and export some useful SGX usercall traits
Update fortanix-sgx-abi to 0.5.0 to add support for cancel queue (see fortanix/rust-sgx#405 and fortanix/rust-sgx#404). Export some useful traits for processing SGX usercall. This is needed for fortanix/rust-sgx#404 to avoid duplication.
1 parent a39bdb1 commit 70dd980

File tree

6 files changed

+34
-7
lines changed

6 files changed

+34
-7
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1421,9 +1421,9 @@ dependencies = [
14211421

14221422
[[package]]
14231423
name = "fortanix-sgx-abi"
1424-
version = "0.3.3"
1424+
version = "0.5.0"
14251425
source = "registry+https://github.com/rust-lang/crates.io-index"
1426-
checksum = "c56c422ef86062869b2d57ae87270608dc5929969dd130a6e248979cf4fb6ca6"
1426+
checksum = "57cafc2274c10fab234f176b25903ce17e690fca7597090d50880e047a0389c5"
14271427
dependencies = [
14281428
"compiler_builtins",
14291429
"rustc-std-workspace-core",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ rand = "0.7"
3939
dlmalloc = { version = "0.2.3", features = ['rustc-dep-of-std'] }
4040

4141
[target.x86_64-fortanix-unknown-sgx.dependencies]
42-
fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }
42+
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'] }
4343

4444
[target.'cfg(target_os = "hermit")'.dependencies]
4545
hermit-abi = { version = "0.2.0", features = ['rustc-dep-of-std'] }

library/std/src/os/fortanix_sgx/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub mod usercalls {
2626
free, insecure_time, launch_thread, read, read_alloc, send, wait, write,
2727
};
2828
pub use crate::sys::abi::usercalls::raw::{do_usercall, Usercalls as UsercallNrs};
29+
pub use crate::sys::abi::usercalls::raw::{Register, RegisterArgument, ReturnValue};
2930

3031
// fortanix-sgx-abi re-exports
3132
pub use crate::sys::abi::usercalls::raw::Error;

library/std/src/sys/sgx/abi/usercalls/alloc.rs

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ unsafe impl UserSafeSized for Usercall {}
5656
#[unstable(feature = "sgx_platform", issue = "56975")]
5757
unsafe impl UserSafeSized for Return {}
5858
#[unstable(feature = "sgx_platform", issue = "56975")]
59+
unsafe impl UserSafeSized for Cancel {}
60+
#[unstable(feature = "sgx_platform", issue = "56975")]
5961
unsafe impl<T: UserSafeSized> UserSafeSized for [T; 2] {}
6062

6163
/// A type that can be represented in memory as one or more `UserSafeSized`s.

library/std/src/sys/sgx/abi/usercalls/mod.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -292,12 +292,17 @@ fn check_os_error(err: Result) -> i32 {
292292
}
293293
}
294294

295-
trait FromSgxResult {
295+
/// Translate the raw result of an SGX usercall.
296+
#[unstable(feature = "sgx_platform", issue = "56975")]
297+
pub trait FromSgxResult {
298+
/// Return type
296299
type Return;
297300

301+
/// Translate the raw result of an SGX usercall.
298302
fn from_sgx_result(self) -> IoResult<Self::Return>;
299303
}
300304

305+
#[unstable(feature = "sgx_platform", issue = "56975")]
301306
impl<T> FromSgxResult for (Result, T) {
302307
type Return = T;
303308

@@ -310,6 +315,7 @@ impl<T> FromSgxResult for (Result, T) {
310315
}
311316
}
312317

318+
#[unstable(feature = "sgx_platform", issue = "56975")]
313319
impl FromSgxResult for Result {
314320
type Return = ();
315321

library/std/src/sys/sgx/abi/usercalls/raw.rs

+21-3
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,23 @@ pub unsafe fn do_usercall(
3737
(a, b)
3838
}
3939

40-
type Register = u64;
40+
/// A value passed or returned in a CPU register.
41+
#[unstable(feature = "sgx_platform", issue = "56975")]
42+
pub type Register = u64;
4143

42-
trait RegisterArgument {
44+
/// Translate a type from/to Register to be used as an argument.
45+
#[unstable(feature = "sgx_platform", issue = "56975")]
46+
pub trait RegisterArgument {
47+
/// Translate a Register to Self.
4348
fn from_register(_: Register) -> Self;
49+
/// Translate self to a Register.
4450
fn into_register(self) -> Register;
4551
}
4652

47-
trait ReturnValue {
53+
/// Translate a pair of Registers to the raw usercall return value.
54+
#[unstable(feature = "sgx_platform", issue = "56975")]
55+
pub trait ReturnValue {
56+
/// Translate a pair of Registers to the raw usercall return value.
4857
fn from_registers(call: &'static str, regs: (Register, Register)) -> Self;
4958
}
5059

@@ -68,6 +77,7 @@ macro_rules! define_usercalls {
6877

6978
macro_rules! define_ra {
7079
(< $i:ident > $t:ty) => {
80+
#[unstable(feature = "sgx_platform", issue = "56975")]
7181
impl<$i> RegisterArgument for $t {
7282
fn from_register(a: Register) -> Self {
7383
a as _
@@ -78,6 +88,7 @@ macro_rules! define_ra {
7888
}
7989
};
8090
($i:ty as $t:ty) => {
91+
#[unstable(feature = "sgx_platform", issue = "56975")]
8192
impl RegisterArgument for $t {
8293
fn from_register(a: Register) -> Self {
8394
a as $i as _
@@ -88,6 +99,7 @@ macro_rules! define_ra {
8899
}
89100
};
90101
($t:ty) => {
102+
#[unstable(feature = "sgx_platform", issue = "56975")]
91103
impl RegisterArgument for $t {
92104
fn from_register(a: Register) -> Self {
93105
a as _
@@ -112,6 +124,7 @@ define_ra!(usize as isize);
112124
define_ra!(<T> *const T);
113125
define_ra!(<T> *mut T);
114126

127+
#[unstable(feature = "sgx_platform", issue = "56975")]
115128
impl RegisterArgument for bool {
116129
fn from_register(a: Register) -> bool {
117130
if a != 0 { true } else { false }
@@ -121,6 +134,7 @@ impl RegisterArgument for bool {
121134
}
122135
}
123136

137+
#[unstable(feature = "sgx_platform", issue = "56975")]
124138
impl<T: RegisterArgument> RegisterArgument for Option<NonNull<T>> {
125139
fn from_register(a: Register) -> Option<NonNull<T>> {
126140
NonNull::new(a as _)
@@ -130,12 +144,14 @@ impl<T: RegisterArgument> RegisterArgument for Option<NonNull<T>> {
130144
}
131145
}
132146

147+
#[unstable(feature = "sgx_platform", issue = "56975")]
133148
impl ReturnValue for ! {
134149
fn from_registers(call: &'static str, _regs: (Register, Register)) -> Self {
135150
rtabort!("Usercall {call}: did not expect to be re-entered");
136151
}
137152
}
138153

154+
#[unstable(feature = "sgx_platform", issue = "56975")]
139155
impl ReturnValue for () {
140156
fn from_registers(call: &'static str, usercall_retval: (Register, Register)) -> Self {
141157
rtassert!(usercall_retval.0 == 0);
@@ -144,13 +160,15 @@ impl ReturnValue for () {
144160
}
145161
}
146162

163+
#[unstable(feature = "sgx_platform", issue = "56975")]
147164
impl<T: RegisterArgument> ReturnValue for T {
148165
fn from_registers(call: &'static str, usercall_retval: (Register, Register)) -> Self {
149166
rtassert!(usercall_retval.1 == 0);
150167
T::from_register(usercall_retval.0)
151168
}
152169
}
153170

171+
#[unstable(feature = "sgx_platform", issue = "56975")]
154172
impl<T: RegisterArgument, U: RegisterArgument> ReturnValue for (T, U) {
155173
fn from_registers(_call: &'static str, regs: (Register, Register)) -> Self {
156174
(T::from_register(regs.0), U::from_register(regs.1))

0 commit comments

Comments
 (0)