This commit is contained in:
nora 2022-08-19 23:32:56 +02:00
parent 763b057fe3
commit 3c598064ed

View file

@ -18,12 +18,18 @@ fn lock<T>(mutex: &Mutex<T>) -> MutexGuard<'_, T> {
}
}
fn abort(msg: &str) -> ! {
let _ = std::io::stderr().write_all(msg.as_bytes());
unsafe { libc::abort() }
}
const BLOCK_REF_BLOCK_SIZE: usize = 4096;
const BLOCK_REF_BLOCK_AMOUNT: usize = BLOCK_REF_BLOCK_SIZE / std::mem::size_of::<BlockRef>();
/// a terrible allocator that mmaps every single allocation. it's horrible. yeah.
pub struct Awwoc;
unsafe fn allow_block_ref_block() -> Option<NonNull<BlockRef>> {
unsafe fn alloc_block_ref_block() -> Option<NonNull<BlockRef>> {
let new_ptr = map::map(BLOCK_REF_BLOCK_SIZE)?;
// we have to allocate some space for the BlockRefs themselves
@ -32,90 +38,18 @@ unsafe fn allow_block_ref_block() -> Option<NonNull<BlockRef>> {
Some(block)
}
unsafe fn allow_inner(layout: std::alloc::Layout) -> Option<NonNull<u8>> {
// SAFETY: soup
let mut root = lock(&BLOCK);
// first, try to find something in the free list
if let Some(mut free_block) = root.next_free_block {
let prev_next_ptr = addr_of_mut!(root.next_free_block);
loop {
let block_ref_ptr = free_block.as_ptr();
let block_ref = block_ref_ptr.read();
if block_ref.size <= layout.size() {
prev_next_ptr.write(block_ref.next_free_block);
(*block_ref_ptr).next_free_block = None;
return NonNull::new(block_ref.start);
}
match block_ref.next_free_block {
Some(block) => free_block = block,
None => break,
}
}
}
// nothing free, we have to allocate
let first_block = match root.first_block {
Some(block) => block,
None => {
let block_ref_block = allow_block_ref_block()?;
root.first_block = Some(block_ref_block);
block_ref_block
}
};
let prev_last_block = root.last_block;
let new_block_ptr = if root.block_count < BLOCK_REF_BLOCK_AMOUNT {
// just append another block
let ptr = first_block.as_ptr().add(root.block_count);
root.last_block = NonNull::new(ptr);
ptr
} else {
let new_block_ref_block = allow_block_ref_block()?;
let last_ptr = root.last_block?;
(*last_ptr.as_ptr()).next = Some(new_block_ref_block);
root.last_block = Some(new_block_ref_block);
new_block_ref_block.as_ptr()
};
let size = layout.size();
let new_data_ptr = map::map(size)?;
root.block_count += 1;
if let Some(prev_last_block) = prev_last_block {
(*prev_last_block.as_ptr()).next = NonNull::new(new_block_ptr);
}
new_block_ptr.write(BlockRef {
start: new_data_ptr.as_ptr(),
size,
next: None,
next_free_block: None,
});
Some(new_data_ptr)
}
unsafe impl GlobalAlloc for Awwoc {
unsafe fn alloc(&self, layout: std::alloc::Layout) -> *mut u8 {
match allow_inner(layout) {
Some(ptr) => ptr.as_ptr(),
let mut root = lock(&BLOCK);
eprintln!("alloc....");
match root.alloc_inner(layout) {
Some(ptr) => dbg!(ptr.as_ptr()),
None => null_mut(),
}
}
unsafe fn dealloc(&self, ptr: *mut u8, _layout: std::alloc::Layout) {
return;
let mut root = lock(&BLOCK);
let mut option_block = root.first_block;
@ -131,8 +65,7 @@ unsafe impl GlobalAlloc for Awwoc {
option_block = (*block_ptr).next;
}
let _ = std::io::stderr().write_all("invalid pointer passed to dealloc\n".as_bytes());
libc::abort();
abort("invalid pointer passed to dealloc\n");
}
}
@ -143,13 +76,149 @@ static BLOCK: Mutex<RootNode> = Mutex::new(RootNode {
next_free_block: None,
});
/// ┌──────────────────────────────────────────────────────────────────────────┐
/// │ ┌────────────────────────────┐ │
/// │ │ RootNode │ │
/// │ │ first_block last_block │ │
/// │ └───┬───────────────┬────────┘ │
/// │ │ │ │
/// │ ┌──────────────────────┘ ┌────┘ │
/// │ ▼ ▼ │
/// │ ┌────────────────────────────┐ ┌─────────────────────────────┐ │
/// │ │BlockRef BlockRef BlockRef│ │BlockRef │ │
/// │ │sta next sta next sta next│ │sta next │ │
/// │ │ │ │ │ │ │ │ │ │ │ │ │
/// │ └──┼───┼───▲─┼───┼───▲─┼───┼─┘ └▲─┼──────────────────────────┘ │
/// │ │ └───┘ │ └───┘ │ └───────┘ │ │
/// │ ▼ ▼ ▼ ▼ │
/// │ ┌────────┐ ┌───────┐ ┌──────┐ ┌──────────┐ │
/// │ │ data │ │ data │ │ data │ │ data │ │
/// │ └────────┘ └───────┘ └──────┘ └──────────┘ │
/// └──────────────────────────────────────────────────────────────────────────┘
struct RootNode {
/// A pointer to the first blockref. Must point to a valid block or be None. If last_block is
/// Some, this must be Some as well.
first_block: Option<NonNull<BlockRef>>,
/// A pointer to the last blockref. Must point to a valid blockref or be None. If first_block
/// is Some, this must be Some as well.
last_block: Option<NonNull<BlockRef>>,
/// The amount of blocks currently stored. If it's bigger than BLOCK_REF_BLOCK_AMOUNT, then
/// there are multiple blocks of blockrefs around.
block_count: usize,
/// The next block in the free list.
next_free_block: Option<NonNull<BlockRef>>,
}
impl RootNode {
unsafe fn find_in_free_list(&mut self, size: usize) -> Option<NonNull<u8>> {
if let Some(mut current_block) = self.next_free_block {
let mut prev_next_ptr = addr_of_mut!(self.next_free_block);
loop {
let block_ref_ptr = current_block.as_ptr();
let block_ref = block_ref_ptr.read();
if block_ref.size <= size {
// rewire the link to skip the current node
prev_next_ptr.write(block_ref.next_free_block);
(*block_ref_ptr).next_free_block = None;
return NonNull::new(block_ref.start);
}
match block_ref.next_free_block {
Some(block) => {
prev_next_ptr = addr_of_mut!((*block_ref_ptr).next_free_block);
current_block = block;
}
None => break,
}
}
}
None
}
#[inline(never)]
unsafe fn new_blockref(&mut self) -> Option<NonNull<BlockRef>> {
let blockref_block_offset = self.block_count % BLOCK_REF_BLOCK_AMOUNT;
let new_block_ptr = if blockref_block_offset == 0 {
eprintln!("time to make a new blockref alloc");
// our current blockref block is full, we need a new one
let new_block_ref_block = alloc_block_ref_block()?;
if let Some(last_ptr) = self.last_block {
(*last_ptr.as_ptr()).next = Some(new_block_ref_block);
}
self.last_block = Some(new_block_ref_block);
new_block_ref_block.as_ptr()
} else {
eprintln!("appending to current blockref alloc");
// just append another block
let last_block = self
.last_block
.unwrap_or_else(|| abort("last_block not found even though count is nonnull\n"));
let index_from_back = BLOCK_REF_BLOCK_AMOUNT - blockref_block_offset;
let new_block_ref_block = last_block.as_ptr().sub(index_from_back);
if let Some(last_ptr) = self.last_block {
(*last_ptr.as_ptr()).next = NonNull::new(new_block_ref_block);
}
self.last_block = NonNull::new(new_block_ref_block);
new_block_ref_block
};
NonNull::new(new_block_ptr)
}
unsafe fn alloc_inner(&mut self, layout: std::alloc::Layout) -> Option<NonNull<u8>> {
// SAFETY: soup
// first, try to find something in the free list
if let Some(ptr) = self.find_in_free_list(layout.size()) {
return Some(ptr);
}
eprintln!("no free list");
// nothing free, we have to allocate
let prev_last_block = self.last_block;
let new_blockref_ptr = self.new_blockref()?;
eprintln!("got block ref");
let size = layout.size();
let new_data_ptr = map::map(size)?;
eprintln!("mapped");
self.block_count += 1;
if let Some(prev_last_block) = prev_last_block {
(*prev_last_block.as_ptr()).next = Some(new_blockref_ptr);
}
eprintln!("what");
new_blockref_ptr.as_ptr().write(BlockRef {
start: new_data_ptr.as_ptr(),
size,
next: None,
next_free_block: None,
});
eprintln!("uwu what");
dbg!(Some(new_data_ptr))
}
}
unsafe impl Send for RootNode {}
unsafe impl Sync for RootNode {}