-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Appease miri #515
Appease miri #515
Changes from 6 commits
f9a86b3
3667424
b615c3f
50ecafe
16bb234
298d436
a3058ef
fe2de3b
ba987a8
bf0d8ef
d67d8cc
9a81da0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,61 +1,84 @@ | ||||||||||||||||||||||||
use std::alloc::{GlobalAlloc, Layout, System}; | ||||||||||||||||||||||||
use std::{mem, ptr}; | ||||||||||||||||||||||||
use std::mem; | ||||||||||||||||||||||||
use std::ptr::null_mut; | ||||||||||||||||||||||||
use std::sync::atomic::{AtomicPtr, AtomicUsize, Ordering}; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
use bytes::{Buf, Bytes}; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
#[global_allocator] | ||||||||||||||||||||||||
static LEDGER: Ledger = Ledger; | ||||||||||||||||||||||||
static LEDGER: Ledger = Ledger::new(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
struct Ledger; | ||||||||||||||||||||||||
#[repr(C)] | ||||||||||||||||||||||||
struct Ledger { | ||||||||||||||||||||||||
alloc_table: [(AtomicPtr<u8>, AtomicUsize); 512], | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
const USIZE_SIZE: usize = mem::size_of::<usize>(); | ||||||||||||||||||||||||
impl Ledger { | ||||||||||||||||||||||||
const fn new() -> Self { | ||||||||||||||||||||||||
// equivalent to size of (AtomicPtr<u8>, AtomicUsize), hopefully | ||||||||||||||||||||||||
#[cfg(target_pointer_width = "64")] | ||||||||||||||||||||||||
let tricky_bits = 0u128; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
unsafe impl GlobalAlloc for Ledger { | ||||||||||||||||||||||||
unsafe fn alloc(&self, layout: Layout) -> *mut u8 { | ||||||||||||||||||||||||
if layout.align() == 1 && layout.size() > 0 { | ||||||||||||||||||||||||
// Allocate extra space to stash a record of | ||||||||||||||||||||||||
// how much space there was. | ||||||||||||||||||||||||
let orig_size = layout.size(); | ||||||||||||||||||||||||
let size = orig_size + USIZE_SIZE; | ||||||||||||||||||||||||
let new_layout = match Layout::from_size_align(size, 1) { | ||||||||||||||||||||||||
Ok(layout) => layout, | ||||||||||||||||||||||||
Err(_err) => return ptr::null_mut(), | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
let ptr = System.alloc(new_layout); | ||||||||||||||||||||||||
if !ptr.is_null() { | ||||||||||||||||||||||||
(ptr as *mut usize).write(orig_size); | ||||||||||||||||||||||||
let ptr = ptr.offset(USIZE_SIZE as isize); | ||||||||||||||||||||||||
ptr | ||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||
ptr | ||||||||||||||||||||||||
#[cfg(target_pointer_width = "32")] | ||||||||||||||||||||||||
let tricky_bits = 0u64; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
let magic_table = [tricky_bits; 512]; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// i know this looks bad but all the good ways to do this are unstable or not yet | ||||||||||||||||||||||||
// supported in const contexts (even though they should be!) | ||||||||||||||||||||||||
let alloc_table = unsafe { mem::transmute(magic_table) }; | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem is that they aren't Copy according to Rustc There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It appears to work correctly if you put the element in a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Huh There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll try that once this CI run finishes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, works |
||||||||||||||||||||||||
|
||||||||||||||||||||||||
Self { alloc_table } | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
/// Iterate over our table until we find an open entry, then insert into said entry | ||||||||||||||||||||||||
fn insert(&self, ptr: *mut u8, size: usize) { | ||||||||||||||||||||||||
for (entry_ptr, entry_size) in self.alloc_table.iter() { | ||||||||||||||||||||||||
// SeqCst is good enough here, we don't care about perf, i just want to be correct! | ||||||||||||||||||||||||
if entry_ptr | ||||||||||||||||||||||||
.compare_exchange(null_mut(), ptr, Ordering::SeqCst, Ordering::SeqCst) | ||||||||||||||||||||||||
.is_ok() | ||||||||||||||||||||||||
{ | ||||||||||||||||||||||||
entry_size.store(size, Ordering::Relaxed); | ||||||||||||||||||||||||
break; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||
System.alloc(layout) | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { | ||||||||||||||||||||||||
if layout.align() == 1 && layout.size() > 0 { | ||||||||||||||||||||||||
let off_ptr = (ptr as *mut usize).offset(-1); | ||||||||||||||||||||||||
let orig_size = off_ptr.read(); | ||||||||||||||||||||||||
if orig_size != layout.size() { | ||||||||||||||||||||||||
panic!( | ||||||||||||||||||||||||
"bad dealloc: alloc size was {}, dealloc size is {}", | ||||||||||||||||||||||||
orig_size, | ||||||||||||||||||||||||
layout.size() | ||||||||||||||||||||||||
); | ||||||||||||||||||||||||
fn lookup_size(&self, ptr: *mut u8) -> usize { | ||||||||||||||||||||||||
for (entry_ptr, entry_size) in self.alloc_table.iter() { | ||||||||||||||||||||||||
if entry_ptr.load(Ordering::Relaxed) == ptr { | ||||||||||||||||||||||||
return entry_size.load(Ordering::Relaxed); | ||||||||||||||||||||||||
Noah-Kennedy marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
let new_layout = match Layout::from_size_align(layout.size() + USIZE_SIZE, 1) { | ||||||||||||||||||||||||
Ok(layout) => layout, | ||||||||||||||||||||||||
Err(_err) => std::process::abort(), | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
System.dealloc(off_ptr as *mut u8, new_layout); | ||||||||||||||||||||||||
panic!("Couldn't find a matching entry for {:x?}", ptr); | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
unsafe impl GlobalAlloc for Ledger { | ||||||||||||||||||||||||
unsafe fn alloc(&self, layout: Layout) -> *mut u8 { | ||||||||||||||||||||||||
let size = layout.size(); | ||||||||||||||||||||||||
let ptr = System.alloc(layout); | ||||||||||||||||||||||||
self.insert(ptr, size); | ||||||||||||||||||||||||
ptr | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) { | ||||||||||||||||||||||||
let orig_size = self.lookup_size(ptr); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
if orig_size != layout.size() { | ||||||||||||||||||||||||
panic!( | ||||||||||||||||||||||||
"bad dealloc: alloc size was {}, dealloc size is {}", | ||||||||||||||||||||||||
orig_size, | ||||||||||||||||||||||||
layout.size() | ||||||||||||||||||||||||
); | ||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||
System.dealloc(ptr, layout); | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||
fn test_bytes_advance() { | ||||||||||||||||||||||||
let mut bytes = Bytes::from(vec![10, 20, 30]); | ||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stupid GitHub UI not allowing suggestions across deleted lines