-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vardhan/rust sgx unwind support #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with minor changes
@@ -11,7 +11,8 @@ | |||
use std::iter; | |||
|
|||
use super::{LinkerFlavor, Target, TargetOptions, PanicStrategy}; | |||
|
|||
// TODO-[unwind support] add post link args to libunwind.a | |||
// How do we bundle it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment
@@ -41,13 +42,17 @@ pub fn target() -> Result<Target, String> { | |||
"ENCLAVE_SIZE", | |||
"CFGDATA_BASE", | |||
"DEBUG", | |||
"EH_FRM_HDR_BASE", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix indent
"EH_FRM_HDR_BASE", | ||
"EH_FRM_HDR_SIZE", | ||
"ENCLAVE_TEXT_BASE", | ||
"ENCLAVE_TEXT_SIZE", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/libstd/Cargo.toml
Outdated
@@ -38,7 +38,8 @@ rustc_tsan = { path = "../librustc_tsan" } | |||
[target.'cfg(any(all(target_arch = "wasm32", not(target_os = "emscripten")), target_env = "sgx"))'.dependencies] | |||
dlmalloc = { version = "0.1", features = ['rustc-dep-of-std'] } | |||
|
|||
[target.x86_64-fortanix-unknown-sgx.dependencies] | |||
# TODO-[unwind support] Remve this once we test default strategy unwind in rust_c for sgx target | |||
[target.x86_64-fortanix-unknown-sgx-unwind.dependencies] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Undo this change
src/libstd/sys/sgx/rwlock.rs
Outdated
|
||
pub struct RWLock { | ||
readers: SpinMutex<WaitVariable<Option<NonZeroUsize>>>, | ||
writer: SpinMutex<WaitVariable<bool>>, | ||
} | ||
|
||
|
||
// Below is to check at compile time, that RWLock has size of 128 bytes. | ||
#[allow(unreachable_code)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need the lint and the underscore prefix?
src/libstd/sys/sgx/rwlock.rs
Outdated
} | ||
|
||
#[inline] | ||
pub unsafe fn unlock(&self) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be pub
src/libstd/sys/sgx/rwlock.rs
Outdated
#[inline] | ||
pub unsafe fn destroy(&self) {} | ||
} | ||
|
||
const EINVAL:i32 = 22; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: add space after :
src/libstd/sys/sgx/rwlock.rs
Outdated
|
||
|
||
#[no_mangle] | ||
pub unsafe extern "C" fn __rust_rwlock_wrlock(p : *mut RWLock) -> i32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why no NULL check here?
src/libstd/sys/sgx/rwlock.rs
Outdated
} | ||
|
||
#[no_mangle] | ||
pub unsafe extern "C" fn __rust_print_msg(m : *mut u8, s : i32) -> i32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reduce unsafety. E.g.:
if s < 0 {
return;
}
let buf = slice::from_raw_parts(m as *const u8, s as _);
if let Ok(s) = str::from_utf8(&buf[buf.iter().position(|&b| b==0).map_or(.., |p| ..p)]) {
eprint!("{}", s);
}
Also, it should be eprint!
right?
src/libstd/sys/sgx/rwlock.rs
Outdated
const EINVAL:i32 = 22; | ||
|
||
|
||
// TODO-[unwind support] move these to another file maybe? Link issue due to different CUGs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment
c36454e
to
e5b12ef
Compare
src/libstd/sys/sgx/abi/mod.rs
Outdated
@@ -13,7 +13,7 @@ use io::Write; | |||
|
|||
// runtime features | |||
mod reloc; | |||
mod mem; | |||
pub(super) mod mem; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is no longer necessary?
2cd43fa
to
d7cafe4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once done, please squash all changes into a single commit. Please run the PR message by me before filing a PR upstream
PRE_LINK_ARGS.iter().cloned().map(String::from).collect(), | ||
)) | ||
.collect(), | ||
post_link_objects: iter::once(POST_LINK_OBJS.iter().cloned().map(String::from).collect()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is just a vec with a single element, this should be sufficient:
post_link_objects: vec!["libunwind.a".into()],
Only use the more complicated construction if the simple one becomes to hard to read
#[no_mangle] | ||
pub unsafe extern "C" fn __rust_abort() { | ||
::sys::abort_internal(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the following. We don't currently have a way to run tests in SGX but we will in the future.
#[cfg(test)]
mod tests {
use super::*;
use {mem, ptr};
#[test]
fn test_c_rwlock_initializer() {
unsafe {
const RWLOCK_INIT: [u8; 128] = [...];
// hopefully the following trick fills padding/uninitialized bytes
// with zeroes
let mut init = MaybeUninit::<RWLock>::zeroed();
init.set(RWLock::new());
assert_eq!(mem::transmute::<_, [u8; 128]>(init.into_inner()), RWLOCK_INIT);
}
}
}
897ee8a
to
b9b9f72
Compare
b9b9f72
to
885cf2a
Compare
Explain safety for `vec.set_len(0)`
No description provided.