buddyalloc
: A simple "buddy allocator" for bare-metal RustAre you using Rust on bare metal with #[no_std]
? Do you lack even a
working malloc
and free
? Would you like to have a Rust-compatible
allocator that works with core::alloc
?
This is a simple buddy allocator that you can use a drop-in replacement
for Rust's regular allocators. It's highly experimental and may corrupt
your data, panic your machine, etc. But it appears to be enough to make
Vec::push
work, at least in extremely limited testing.
There is a test suite which attempts to allocate and deallocate a bunch of memory, and which tries to make sure everything winds up at the expected location in memory each time.
This library was originally based on the work done in the toyos repository.
You can pull this into a Cargo build using:
[dependencies.buddyalloc]
git = "https://github.com/DrChat/buddyalloc.git"
Then see the allocator.rs example for a good idea of how to use this heap.
This has only been run in the "low half" of memory, and if you store your
heap in the upper half of your memory range, you may run into some issues
with isize
versus usize
.
Licensed under the Apache License, Version 2.0 or the
MIT license, at your option. This is HIGHLY EXPERIMENTAL
CODE PROVIDED "AS IS", AND IT MAY DO HORRIBLE THINGS TO YOUR COMPUTER OR
DATA. But if you're using random unsafe, unstable Rust libraries in
implementing a panicking version of malloc
in kernel space, you probably
knew that already.