Skip to content

Commit

Permalink
Initial CHERI support for free rings
Browse files Browse the repository at this point in the history
  • Loading branch information
nwf-msr committed Mar 17, 2024
1 parent 114d0d0 commit 769809d
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 17 deletions.
8 changes: 8 additions & 0 deletions src/snmalloc/backend/backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ namespace snmalloc
local_state.get_object_range()->dealloc_range(arena, size);
}

SNMALLOC_FAST_PATH static capptr::Alloc<void>
capptr_rederive_alloc(capptr::Alloc<void> a, size_t objsize)
{
return capptr_to_user_address_control(
Aal::capptr_bound<void, capptr::bounds::AllocFull>(
Authmap::amplify(a), objsize));
}

template<bool potentially_out_of_range = false>
SNMALLOC_FAST_PATH static const PagemapEntry& get_metaentry(address_t p)
{
Expand Down
12 changes: 9 additions & 3 deletions src/snmalloc/mem/corealloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ namespace snmalloc
}
else
{
auto nelem = RemoteMessage::ring_size(
auto nelem = RemoteMessage::template ring_size<Config>(
msg,
freelist::Object::key_root,
entry.get_slab_metadata()->as_key_tweak(),
Expand Down Expand Up @@ -770,8 +770,14 @@ namespace snmalloc
is_start_of_object(entry.get_sizeclass(), address_cast(msg)),
"Not deallocating start of an object");

auto [curr, length] = RemoteMessage::open_free_ring(
msg, freelist::Object::key_root, meta->as_key_tweak(), domesticate);
size_t objsize = sizeclass_full_to_size(entry.get_sizeclass());

auto [curr, length] = RemoteMessage::template open_free_ring<Config>(
msg,
objsize,
freelist::Object::key_root,
meta->as_key_tweak(),
domesticate);

// Update the head and the next pointer in the free list.
meta->free_queue.append_segment(
Expand Down
48 changes: 34 additions & 14 deletions src/snmalloc/mem/remoteallocator.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,6 @@ namespace snmalloc
sizeof(free_ring.next_object) >= sizeof(void*),
"RemoteMessage bitpacking needs sizeof(void*) in next_object");

static auto decode_next(uintptr_t encoded, capptr::Alloc<RemoteMessage> m)
{
return capptr_rewild(
pointer_offset_signed(
m, static_cast<ptrdiff_t>(encoded) >> MAX_CAPACITY_BITS))
.as_static<freelist::Object::T<>>();
}

public:
static auto emplace_in_alloc(capptr::Alloc<void> alloc)
{
Expand All @@ -69,7 +61,9 @@ namespace snmalloc
new (last.unsafe_ptr()) RemoteMessage());
self->free_ring.prev = last_prev;

// XXX CHERI
// XXX On CHERI, we could do a fair bit better if we had a primitive for
// extracting and discarding the offset. That probably beats the dance
// done below, but it should work as it stands.

auto n = freelist::HeadPtr::unsafe_from(
unsafe_from_uintptr<freelist::Object::T<>>(
Expand Down Expand Up @@ -99,9 +93,11 @@ namespace snmalloc
.as_reinterpret<RemoteMessage>();
}

template<typename Domesticator_queue>
static std::pair<freelist::HeadPtr, uint16_t> open_free_ring(
template<SNMALLOC_CONCEPT(IsConfigLazy) Config, typename Domesticator_queue>
SNMALLOC_FAST_PATH static std::pair<freelist::HeadPtr, uint16_t>
open_free_ring(
capptr::Alloc<RemoteMessage> m,
size_t objsize,
const FreeListKey& key,
address_t key_tweak,
Domesticator_queue domesticate)
Expand All @@ -113,7 +109,20 @@ namespace snmalloc
static_cast<uint16_t>(encoded) & bits::mask_bits(MAX_CAPACITY_BITS);
static_assert(sizeof(decoded_size) * 8 > MAX_CAPACITY_BITS);

auto next = domesticate(decode_next(encoded, m));
/*
* Derive an out-of-bounds pointer to the next allocation, then use the
* authmap to reconstruct an in-bounds version, which we then immediately
* bound and rewild and then domesticate (how strange).
*
* XXX See above re: doing better on CHERI.
*/
auto next = domesticate(
capptr_rewild(
Config::Backend::capptr_rederive_alloc(
pointer_offset_signed(
m, static_cast<ptrdiff_t>(encoded) >> MAX_CAPACITY_BITS),
objsize))
.template as_static<freelist::Object::T<>>());

if constexpr (mitigations(freelist_backward_edge))
{
Expand All @@ -131,7 +140,7 @@ namespace snmalloc
return {next.template as_static<freelist::Object::T<>>(), decoded_size};
}

template<typename Domesticator_queue>
template<SNMALLOC_CONCEPT(IsConfigLazy) Config, typename Domesticator_queue>
static uint16_t ring_size(
capptr::Alloc<RemoteMessage> m,
const FreeListKey& key,
Expand All @@ -147,7 +156,18 @@ namespace snmalloc

if constexpr (mitigations(freelist_backward_edge))
{
auto next = domesticate(decode_next(encoded, m));
/*
* Like above, but we don't strictly need to rebound the pointer,
* since it's only used internally. Still, doesn't hurt to bound
* to the free list linkage.
*/
auto next = domesticate(
capptr_rewild(
Config::Backend::capptr_rederive_alloc(
pointer_offset_signed(
m, static_cast<ptrdiff_t>(encoded) >> MAX_CAPACITY_BITS),
sizeof(freelist::Object::T<>)))
.template as_static<freelist::Object::T<>>());

next->check_prev(
signed_prev(address_cast(m), address_cast(next), key, key_tweak));
Expand Down

0 comments on commit 769809d

Please sign in to comment.