1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
use ::core::{alloc::Layout, ptr::NonNull};
use ::heresy::alloc::AllocError;
use crate::Ref;
/// An implementation of `RawAllocator` can allocate, grow, shrink, and
/// deallocate arbitrary blocks of data described via `Layout`.
///
/// # Safety
///
/// Memory blocks returned from an allocator must point to valid memory and
/// retain their validity until the block is deallocated, or the allocator is
/// dropped or rendered inaccessible, whichever comes first.
pub unsafe trait RawAllocator {
/// Attempts to allocate a block of memory.
///
/// On success, returns a `NonNull<[u8]>` meeting the size and alignment
/// guarantees of `layout`.
///
/// The returned block may have a larger size than specified by
/// `layout.size()`, and may or may not have its contents initialized.
///
/// # Errors
///
/// Returning `Err` indicates that either memory is exhausted or `layout`
/// does not meet an allocator's size or alignment constraints.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion.)
fn raw_allocate(
this: Ref<'_, Self>,
layout: Layout,
) -> Result<NonNull<[u8]>, AllocError>;
/// Deallocates the memory referenced by `ptr`.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ via this
/// allocator.
/// - `layout` must _fit_ that block of memory.
unsafe fn raw_deallocate(
this: Ref<'_, Self>,
ptr: NonNull<u8>,
layout: Layout,
);
/// Behaves like `raw_allocate`, but also ensures that the returned memory is
/// zero-initialized.
///
/// # Errors
///
/// See [`allocate`](RawAllocator::raw_allocate) for errors.
fn raw_allocate_zeroed(
this: Ref<'_, Self>,
layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
let ptr = Self::raw_allocate(this, layout)?;
let len = ::ptr_meta::metadata(ptr.as_ptr());
// SAFETY: `alloc` returned a valid memory block of length `len`.
unsafe {
ptr.as_ptr().cast::<u8>().write_bytes(0, len);
}
Ok(ptr)
}
/// Attempts to extend the memory block.
///
/// Returns a new `NonNull<[u8]>` containing a pointer and the actual size
/// of the allocated memory. The pointer is suitable for holding data
/// described by new_layout. To accomplish this, the allocator may extend
/// the allocation referenced by `ptr` to fit the new layout.
///
/// If this returns `Ok`, then ownership of the memory block referenced by
/// `ptr` has been transferred to this allocator. The memory may or may not
/// have been freed, and should be considered unusable unless it was
/// transferred back to the caller again via the return value of this
/// method.
///
/// If this method returns `Err`, then ownership of the memory block has not
/// been transferred to this allocator, and the contents of the memory block
/// are unaltered.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ via this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (the `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be greater than or equal to
/// `old_layout.size()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if growing otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_grow(
this: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
debug_assert!(
new_layout.size() >= old_layout.size(),
"`new_layout.size()` must be greater than or equal to `old_layout.size()`",
);
// SAFETY: `grow_in_place` has the same safety requirements as `grow`.
let result = unsafe {
Self::raw_grow_in_place(this, ptr, old_layout, new_layout)
};
result.or_else(|_| {
let new_ptr = Self::raw_allocate(this, new_layout)?;
// SAFETY:
// - The caller has guaranteed that `old_layout` fits the memory
// pointed to by `ptr`, and so must be valid for reads of
// `old_layout.size()`.
// - The caller has guaranteed that `new_layout.size()` is
// greater than or equal to `old_layout.size()`, so `new_ptr`
// must be valid for writes of `old_layout.size()`.
// - `u8` has an alignment of 1, so both pointers must be
// properly aligned.
// - The memory pointed by `new_ptr` is freshly-allocated and
// must not overlap with the memory pointed to by `old_ptr`.
unsafe {
::core::ptr::copy_nonoverlapping(
ptr.as_ptr(),
new_ptr.as_ptr().cast::<u8>(),
old_layout.size(),
);
}
// SAFETY:The caller has guaranteed that `ptr` denotes a block
// of memory currently allocated via this allocator, and that
// `old_layout` fits that block of memory.
unsafe {
Self::raw_deallocate(this, ptr, old_layout);
}
Ok(new_ptr)
})
}
/// Behaves like `raw_grow`, but also ensures that the new contents are set
/// to zero before being returned.
///
/// The memory block will contain the following contents after a successful
/// call to `grow_zeroed`:
///
/// - Bytes `0..old_layout.size()` are preserved from the original
/// allocation.
/// - Bytes `old_layout.size()..old_size` will either be preserved or
/// zeroed, depending on the allocator implementation. `old_size` refers
/// to the size of the memory block prior to the `grow_zeroed` call, which
/// may be larger than the size that was originally requested when it was
/// allocated.
/// - Bytes `old_size..new_size` are zeroed. `new_size` refers to the size
/// of the memory block returned by the `grow_zeroed` call.
///
/// # Safety
///
/// - `ptr` must denote a block of memory currently allocated via this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (the `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be greater than or equal to
/// `old_layout.align()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if growing otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_grow_zeroed(
this: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
debug_assert!(
new_layout.size() >= old_layout.size(),
"`new_layout.size()` must be greater than or equal to `old_layout.size()`",
);
let result =
// SAFETY: `grow_zeroed_in_place` has the same safety requirements
// as `grow_zeroed`.
unsafe { Self::raw_grow_zeroed_in_place(this, ptr, old_layout, new_layout) };
result.or_else(|_| {
let new_ptr = Self::raw_allocate(this, new_layout)?;
// SAFETY:
// - The caller has guaranteed that `old_layout` fits the memory
// pointed to by `ptr`, and so must be valid for reads of
// `old_layout.size()`.
// - The caller has guaranteed that `new_layout.size()` is greater
// than or equal to `old_layout.size()`, so `new_ptr` must be
// valid for writes of `old_layout.size()`.
// - `u8` has an alignment of 1, so both pointers must be properly
// aligned.
// - The memory pointed by `new_ptr` is freshly-allocated and must
// not overlap with the memory pointed to by `old_ptr`.
unsafe {
::core::ptr::copy_nonoverlapping(
ptr.as_ptr(),
new_ptr.as_ptr().cast::<u8>(),
old_layout.size(),
);
}
// SAFETY:
// - The end of the old bytes is followed by `new_size - old_size`
// bytes which are valid for writes.
// - A `u8` pointer is always properly aligned.
unsafe {
::core::ptr::write_bytes(
new_ptr.as_ptr().cast::<u8>().add(old_layout.size()),
0,
new_layout.size() - old_layout.size(),
);
}
// SAFETY:The caller has guaranteed that `ptr` denotes a block of
// memory currently allocated via this allocator, and that
// `old_layout` fits that block of memory.
unsafe {
Self::raw_deallocate(this, ptr, old_layout);
}
Ok(new_ptr)
})
}
/// Behaves like `grow` but returns `Err` if the memory block cannot be
/// grown in-place.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ via this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (the `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be greater than or equal to
/// `old_layout.size()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if growing in place otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_grow_in_place(
_: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
let _ = (ptr, old_layout, new_layout);
Err(AllocError)
}
/// Behaves like `raw_grow_zeroed` but returns `Err` if the memory block
/// cannot be grown in-place.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ via this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (the `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be greater than or equal to
/// `old_layout.size()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if growing in place otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_grow_zeroed_in_place(
this: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
let new_ptr =
// SAFETY: `grow_in_place` has the same safety requirements as
// `grow_zeroed_in_place`.
unsafe { Self::raw_grow_in_place(this, ptr, old_layout, new_layout)? };
// SAFETY:
// - The end of the old bytes is followed by `new_size - old_size` bytes
// which are valid for writes.
// - A `u8` pointer is always properly aligned.
unsafe {
::core::ptr::write_bytes(
new_ptr.as_ptr().cast::<u8>().add(old_layout.size()),
0,
new_layout.size() - old_layout.size(),
);
}
Ok(new_ptr)
}
/// Attempts to shrink the memory block.
///
/// Returns a new [`NonNull<[u8]>`](NonNull) containing a pointer and the
/// actual size of the allocated memory. The pointer is suitable for holding
/// data described by `new_layout`. To accomplish this, the allocator may
/// shrink the allocation referenced by `ptr` to fit the new layout.
///
/// If this returns `Ok`, then ownership of the memory block referenced by
/// `ptr` has been transferred to this allocator. The memory may or may not
/// have been freed, and should be considered unusable unless it was
/// transferred back to the caller again via the return value of this
/// method.
///
/// If this returns `Err`, then ownership of the memory block has not been
/// transferred to this allocator, and the contents of the memory block are
/// unaltered.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ by this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (The `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be less than or equal to `old_layout.size()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if shrinking otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_shrink(
this: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
debug_assert!(
new_layout.size() <= old_layout.size(),
"`new_layout.size()` must be less than or equal to `old_layout.size()`",
);
let result =
// SAFETY: `shrink_in_place` has the same safety requirements as
// `shrink`.
unsafe { Self::raw_shrink_in_place(this, ptr, old_layout, new_layout) };
result.or_else(|_| {
let new_ptr = Self::raw_allocate(this, new_layout)?;
// SAFETY:
// - The caller has guaranteed that `old_layout` fits the memory
// pointed to by `ptr`, and `new_layout.size()` is less than or
// equal to `old_layout.size()`, so `ptr` must be valid for reads
// of `new_layout.size()`.
// - `new_ptr` points to a memory block at least `new_layout.size()`
// in length, so `new_ptr` must be valid for writes of
// `new_layout.size()`.
// - `u8` has an alignment of 1, so both pointers must be properly
// aligned.
// - The memory pointed by `new_ptr` is freshly-allocated and must
// not overlap with the memory pointed to by `old_ptr`.
unsafe {
::core::ptr::copy_nonoverlapping(
ptr.as_ptr(),
new_ptr.as_ptr().cast::<u8>(),
new_layout.size(),
);
}
// SAFETY: The caller has guaranteed that `ptr` denotes a block of
// memory currently allocated via this allocator, and that
// `old_layout` fits that block of memory.
unsafe {
Self::raw_deallocate(this, ptr, old_layout);
}
Ok(new_ptr)
})
}
/// Behaves like `raw_shrink` but returns `Err` if the memory block cannot
/// be shrunk in-place.
///
/// # Safety
///
/// - `ptr` must denote a block of memory _currently allocated_ by this
/// allocator.
/// - `old_layout` must _fit_ that block of memory (The `new_layout`
/// argument need not fit it).
/// - `new_layout.size()` must be less than or equal to `old_layout.size()`.
///
/// # Errors
///
/// Returns `Err` if the new layout does not meet the allocator's size and
/// alignment constraints, or if shrinking otherwise fails.
///
/// Implementations are encouraged to return `Err` on memory exhaustion
/// rather than panicking or aborting, but this is not a strict requirement.
/// (Specifically: it is _legal_ to implement this trait atop an underlying
/// native allocation library that aborts on memory exhaustion).
unsafe fn raw_shrink_in_place(
_: Ref<'_, Self>,
ptr: NonNull<u8>,
old_layout: Layout,
new_layout: Layout,
) -> Result<NonNull<[u8]>, AllocError> {
let _ = (ptr, old_layout, new_layout);
Err(AllocError)
}
}