The Reloaded Buffers Library



Allocate Memory, & Knuckles

Coverage NuGet Build Status
NuGet Build Status

About

Reloaded.Memory.Buffers is a library for allocating memory between a given minimum and maximum memory address, for C# and Rust.

With the following properties:

Wiki & Documentation

For full documentation, please see the Wiki.

Example Use Cases

These are just examples:

Usage

!!! info "The library provides a simple high level API to use."

!!! info "See Wiki for Rust usage"

Get A Buffer

Gets a buffer where you can allocate 4096 bytes in first 2GiB of address space.

```csharp var settings = new BufferSearchSettings() { MinAddress = 0, MaxAddress = int.MaxValue, Size = 4096 };

// Make sure to dispose, so lock gets released. using var item = Buffers.GetBuffer(settings);

// Write some data, get pointer back. var ptr = item->Append(data); ```

Get A Buffer (With Proximity)

Gets a buffer where 4096 bytes written will be within 2GiB of 0x140000000.

```csharp var settings = BufferSearchSettings.FromProximity(int.MaxValue, (nuint)0x140000000, 4096);

// Make sure to dispose, so lock gets released. using var item = Buffers.GetBuffer(settings);

// Write some data, get pointer back. var ptr = item->Append(data); ```

Allocate Memory

Allows you to temporarily allocate memory within a specific address range and size constraints.

```csharp // Arrange var settings = new BufferAllocatorSettings() { MinAddress = 0, MaxAddress = int.MaxValue, Size = 4096 };

using var item = Buffers.AllocatePrivateMemory(settings);

// You have allocated memory in first 2GiB of address space. // Disposing this memory (via using statement) will free it. item.BaseAddress.Should().NotBeNull(); item.Size.Should().BeGreaterOrEqualTo(settings.Size); ```

You can specify another process with TargetProcess = someProcess in BufferAllocatorSettings, but this is only supported on Windows.

Community Feedback

If you have questions/bug reports/etc. feel free to Open an Issue.

Contributions are welcome and encouraged. Feel free to implement new features, make bug fixes or suggestions so long as they meet the quality standards set by the existing code in the repository.

For an idea as to how things are set up, see Reloaded Project Configurations.

Happy Hacking 💜