16 releases (7 breaking)

0.11.0 Mar 22, 2024
0.10.1 Dec 11, 2023
0.9.0 Oct 19, 2023
0.7.2 Jul 20, 2023
0.5.0 Mar 8, 2023

#678 in Hardware support

Download history 4/week @ 2024-02-19 13/week @ 2024-02-26 16/week @ 2024-03-11 154/week @ 2024-03-18 69/week @ 2024-04-01

239 downloads per month
Used in 2 crates (via mc-sgx-sync)

Apache-2.0

33KB
314 lines

MobileCoin: Rust wrappers around SGX synchronization primitives

Project ChatLicenseTargetCrates.ioDocs StatusDependency Status

Rust wrappers around SGX synchronization primitives.

The primitives exposed through this crate are low-level building blocks for higher-level constructs. Most people will want to use mc-sgx-sync to get std::sync compatible constructs.

The underlying implementation of Mutex, RwLock, and Condvar make OCALLs:

  • sgx_thread_wait_untrusted_event_ocall()
  • sgx_thread_set_multiple_untrusted_events_ocall()
  • sgx_thread_set_untrusted_event_ocall()
  • sgx_thread_setwait_untrusted_events_ocall()

These OCALLs are provided the waiting thread(s) and a return value to fill out. The OCALLs can suspend and or spuriously wake up trusted threads. The application (untrusted) inherently has control of whether the enclave thread(s) will execute. The OCALLs further increase the surface area that the application has in controlling the execution of enclave thread(s). Using these synchronization primitives, the application is now capable of stopping enclave thread(s) consistently at the synchronization points.

Dependencies

~1.3–3.5MB
~77K SLoC