17 unstable releases
| 0.12.0 | May 21, 2025 |
|---|---|
| 0.11.0 | Mar 22, 2024 |
| 0.10.1 | Dec 11, 2023 |
| 0.9.0 | Oct 19, 2023 |
| 0.5.0 | Mar 8, 2023 |
#1583 in Hardware support
946 downloads per month
Used in 2 crates
(via mc-sgx-sync)
34KB
314 lines
MobileCoin: Rust wrappers around SGX synchronization primitives
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.4–4MB
~81K SLoC