5 releases
0.1.4 | Nov 27, 2023 |
---|---|
0.1.3 | Nov 26, 2023 |
0.1.2 | Nov 25, 2023 |
0.1.1 | Nov 25, 2023 |
0.1.0 | Nov 25, 2023 |
#336 in Unix APIs
27 downloads per month
12KB
181 lines
void-ship ⚫🚀
void-ship is a straightforward library to do one thing - remove the ability for a process to access the vDSO.
vDSO? vvar?
To enable rapid access to the system clock without an expensive system call, Linux provides vDSO
(Virtual Dynamic
Shared Object) and vvar
mappings to user-space processes. These memory regions allow processes to access an accurate
and fast clock.
Why remove access?
Accurate clocks are a fundamental primitive for side channel attacks. By removing the vDSO the process has to issue a system call or otherwise "forge" a clock in order to get an accurate timer.
This library should be used alongside a seccomp filter to block access to the clock_gettime
syscall as well
as a filter to prevent creating threads, allocating memory, or otherwise accessing primitives that an attacker
could use to create a clock. Consider a crate like extrasafe to help with this.
Note: This library will only work on Linux. On all other platforms it will simply do nothing and all
public functions return Ok(())
.
A Warning!
Manually unmapping the vDSO and vvar mappings is weird and will very likely cause things to break if you aren't careful. This library is intended to be used in a very specific context - a process that has an extremely restrictive seccomp filter applied to it that does virtually nothing but execute pure functions.
Usage
void-ship
provides two primary functions:
- remove_timer_mappings(): Removes the vDSO and vvar mappings.
- replace_timer_mappings(): Removes the mappings and sets up guard pages in their place.
Example
use void_ship::{remove_timer_mappings, replace_timer_mappings};
fn main() {
let should_replace = true;
if should_replace {
replace_timer_mappings().expect("Unable to replace timer mappings");
} else {
remove_timer_mappings().expect("Unable to remove timer mappings");
}
// Attempting to get the system time via vDSO will now segfault.
}
Testing
If you want to validate that the library is working as expected you can add the test-clock
feature to the crate,
which exports the test_clock
function.
Note that this function will either:
- Segfault if the vDSO is removed (what you want)
- Panic if the vDSO is not removed
- Panic if the vDSO was supposedly removed but the
clock_gettime
syscall still works - Panic if executed on an unsupported platform
Basically, you never ever want to call this function if you aren't explicitly testing that this crate is working properly.
use void_ship::{replace_timer_mappings, test_clock};
fn main() {
replace_timer_mappings().expect("Unable to replace timer mappings");
test_clock(); // will panic or segfault!!!
}
Dependencies
~43KB