Skip to content
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

Merged
merged 1 commit into from
Dec 21, 2018

Conversation

VardhanThigle
Copy link
Owner

No description provided.

Copy link

@jethrogb jethrogb left a 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?

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",

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",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -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]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Undo this change


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)]

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?

}

#[inline]
pub unsafe fn unlock(&self) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not be pub

#[inline]
pub unsafe fn destroy(&self) {}
}

const EINVAL:i32 = 22;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: add space after :



#[no_mangle]
pub unsafe extern "C" fn __rust_rwlock_wrlock(p : *mut RWLock) -> i32 {

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?

}

#[no_mangle]
pub unsafe extern "C" fn __rust_print_msg(m : *mut u8, s : i32) -> i32 {

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?

const EINVAL:i32 = 22;


// TODO-[unwind support] move these to another file maybe? Link issue due to different CUGs.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove comment

@VardhanThigle VardhanThigle force-pushed the Vardhan/rust-sgx-unwind-support branch 2 times, most recently from c36454e to e5b12ef Compare December 18, 2018 07:23
@@ -13,7 +13,7 @@ use io::Write;

// runtime features
mod reloc;
mod mem;
pub(super) mod mem;

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?

@VardhanThigle VardhanThigle force-pushed the Vardhan/rust-sgx-unwind-support branch 2 times, most recently from 2cd43fa to d7cafe4 Compare December 19, 2018 09:06
Copy link

@jethrogb jethrogb left a 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())

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();
}

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);
        }
    }
}

@VardhanThigle VardhanThigle force-pushed the Vardhan/rust-sgx-unwind-support branch 4 times, most recently from 897ee8a to b9b9f72 Compare December 19, 2018 11:37
@VardhanThigle VardhanThigle force-pushed the Vardhan/rust-sgx-unwind-support branch from b9b9f72 to 885cf2a Compare December 19, 2018 13:02
@VardhanThigle VardhanThigle merged this pull request into master Dec 21, 2018
VardhanThigle pushed a commit that referenced this pull request Jan 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants