mirror of
https://github.com/bspeice/qadapt
synced 2024-11-14 18:18:08 -05:00
69 lines
2.1 KiB
Rust
69 lines
2.1 KiB
Rust
extern crate backtrace;
|
|
extern crate libc;
|
|
#[macro_use]
|
|
extern crate log;
|
|
extern crate spin;
|
|
|
|
use backtrace::Backtrace;
|
|
use libc::c_void;
|
|
use libc::free;
|
|
use libc::malloc;
|
|
use log::Level;
|
|
use std::alloc::Layout;
|
|
use std::alloc::GlobalAlloc;
|
|
use spin::RwLock;
|
|
|
|
static DO_PANIC: RwLock<bool> = RwLock::new(false);
|
|
static INTERNAL_ALLOCATION: RwLock<bool> = RwLock::new(false);
|
|
static LOG_LEVEL: RwLock<Level> = RwLock::new(Level::Debug);
|
|
|
|
pub struct QADAPT;
|
|
|
|
pub fn set_panic(b: bool) {
|
|
*DO_PANIC.write() = b;
|
|
}
|
|
|
|
pub fn set_log_level(level: Level) {
|
|
*LOG_LEVEL.write() = level;
|
|
}
|
|
|
|
unsafe impl GlobalAlloc for QADAPT {
|
|
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
|
|
// Use a block to release the read guard
|
|
let should_panic = { *DO_PANIC.read() };
|
|
|
|
if should_panic && !*INTERNAL_ALLOCATION.read() {
|
|
// Only trip one panic at a time, don't want to cause issues on potential rewind
|
|
*DO_PANIC.write() = false;
|
|
panic!("Unexpected allocation")
|
|
} else if log_enabled!(*LOG_LEVEL.read()) {
|
|
// We wrap in a block because we need to release the write guard
|
|
// so allocations during `Backtrace::new()` can read
|
|
{ *INTERNAL_ALLOCATION.write() = true; }
|
|
|
|
let bt = Backtrace::new();
|
|
log!(*LOG_LEVEL.read(), "Unexpected allocation:\n{:?}", bt);
|
|
|
|
*INTERNAL_ALLOCATION.write() = false;
|
|
}
|
|
|
|
malloc(layout.size()) as *mut u8
|
|
}
|
|
|
|
unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) {
|
|
if *DO_PANIC.read() && !*INTERNAL_ALLOCATION.read() {
|
|
panic!("Unexpected drop")
|
|
} else if log_enabled!(*LOG_LEVEL.read()) {
|
|
// We wrap in a block because we need to release the write guard
|
|
// so allocations during `Backtrace::new()` can read
|
|
{ *INTERNAL_ALLOCATION.write() = true; }
|
|
|
|
let bt = Backtrace::new();
|
|
log!(*LOG_LEVEL.read(), "Unexpected drop:\n{:?}", bt);
|
|
|
|
*INTERNAL_ALLOCATION.write() = false;
|
|
}
|
|
free(ptr as *mut c_void)
|
|
}
|
|
}
|