BUG: Walking logic in check() is broken. Moving aligning into source, removing macros

This commit is contained in:
Imbus 2025-09-09 08:47:26 +02:00
parent d608a81674
commit 04c8311528
6 changed files with 115 additions and 46 deletions

View file

@ -1,10 +1,8 @@
CC = gcc
CFLAGS = -Wall -O2
CFLAGS += -DFREELIST_ALIGN
TARGET = main.elf
SRC = main.c freelist.c
SRC = main.c freelist.c hexdump.c
#LDFLAGS =

View file

@ -6,19 +6,27 @@
#include <stdlib.h>
#include <string.h>
struct FreeListBlock {
struct __attribute__((packed)) FreeListBlock {
struct FreeListBlock *next;
};
/* Initialize the FreeList */
int fl_init(FreeList *fl, uintptr_t start, uintptr_t end, size_t itemsize) {
size_t size = ALIGN(itemsize);
/* Align to nearest multiple of align */
static inline size_t align_up_to(size_t n, size_t align) {
return (n + align - 1) & ~(align - 1);
}
if (!fl || end <= start)
return EXIT_FAILURE;
/* Initialize the FreeList */
int fl_init(FreeList *fl, uintptr_t start, size_t size_bytes, size_t itemsize) {
/* Fiddle around according to your need, (void *) alignment seems to be enough,
* but MAX_ALIGN_T is also an option. Especially for allocator implementation. */
size_t size = align_up_to(itemsize, sizeof(void *));
if (size < sizeof(FreeListBlock) || !fl) {
return 0;
}
fl->start = start;
fl->end = end;
fl->end = start + size_bytes;
fl->size = size;
fl->allocated = 0;
@ -28,10 +36,10 @@ int fl_init(FreeList *fl, uintptr_t start, uintptr_t end, size_t itemsize) {
block = block->next;
}
block->next = NULL;
block->next = NULL; /* Last block */
fl->free = (FreeListBlock *)start;
return EXIT_SUCCESS;
return 1;
}
/* Allocate some memory from the FreeList */
@ -41,7 +49,7 @@ void *fl_alloc(FreeList *fl) {
FreeListBlock *m = fl->free;
fl->free = fl->free->next;
fl->free = fl->free->next; /* May be null, which is fine */
fl->allocated++;
memset((void *)m, 0, sizeof(FreeListBlock));
@ -50,17 +58,16 @@ void *fl_alloc(FreeList *fl) {
/* Return some memory to the FreeList */
int fl_free(FreeList *fl, void *ptr) {
if (!fl_is_managed(fl, ptr)) {
return EXIT_FAILURE; /* We cant free memory we do not own */
}
if (!fl_is_managed(fl, ptr))
return 0; /* We cant free memory we do not own */
FreeListBlock *block = (FreeListBlock *)(uintptr_t)ptr;
FreeListBlock *block = (FreeListBlock *)ptr;
block->next = fl->free;
block->next = fl->free; /* May be null, which is fine */
fl->free = block;
fl->allocated--;
return EXIT_SUCCESS;
return 1;
}
/* Returns how many slots are occupied */
@ -80,7 +87,13 @@ size_t fl_capacity(FreeList *fl) {
/* Check if a piece of memory is managed by the FreeList */
int fl_is_managed(FreeList *fl, void *ptr) {
return ((uintptr_t)ptr >= fl->start && (uintptr_t)ptr < fl->end);
uintptr_t p = (uintptr_t)ptr;
if (p < fl->start || p >= fl->end) {
return 0; // outside pool
}
return ((p - fl->start) % fl->size) == 0; // aligned to block
}
/* Returns the ratio of metadata versus data as a scalar in range 0..1 */
@ -94,8 +107,16 @@ size_t fl_check(FreeList *fl) {
FreeListBlock *cursor = fl->free;
while (cursor->next != NULL) {
avail++;
cursor = cursor->next;
if (!fl_is_managed(fl, cursor)) {
printf("Unused memory at: %zX\n", (size_t)cursor->next);
printf("Min memory at: %zX\n", (size_t)fl->start);
printf("Max memory at: %zX\n", (size_t)fl->end);
return 0;
}
avail++;
}
return avail;

View file

@ -5,18 +5,6 @@
#include <stdint.h>
#include <stdlib.h>
/* Align to nearest multiple of align */
static inline size_t align_up_to(size_t n, size_t align) {
return (n + align - 1) & ~(align - 1);
}
/* Fiddle these around according to your need. Delete or check makefile */
#ifdef FREELIST_ALIGN
#define ALIGN(x) (align_up_to(x, sizeof(void *)))
#else
#define ALIGN(x) (x)
#endif
typedef struct FreeListBlock FreeListBlock;
typedef struct {
@ -27,7 +15,7 @@ typedef struct {
size_t allocated;
} FreeList;
int fl_init(FreeList *fl, uintptr_t start, uintptr_t end, size_t itemsize);
int fl_init(FreeList *fl, uintptr_t start, size_t size_bytes, size_t itemsize);
int fl_free(FreeList *fl, void *ptr);
int fl_is_managed(FreeList *fl, void *ptr);
void *fl_alloc(FreeList *fl);

35
freelist/hexdump.c Normal file
View file

@ -0,0 +1,35 @@
#include <ctype.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
void hexdump(const void *data, size_t size) {
const unsigned char *p = (const unsigned char *)data;
size_t i, j;
for (i = 0; i < size; i += 16) {
// Print offset
printf("%08zx ", i);
// Print hex bytes
for (j = 0; j < 16; j++) {
if (i + j < size) {
printf("%02x ", p[i + j]);
} else {
printf(" "); // padding for incomplete lines
}
if (j == 7)
printf(" "); // extra space in middle
}
printf(" |");
// Print ASCII characters
for (j = 0; j < 16 && i + j < size; j++) {
unsigned char c = p[i + j];
printf("%c", isprint(c) ? c : '.');
}
printf("|\n");
}
}

8
freelist/hexdump.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef HEXDUMP_H
#define HEXDUMP_H
#include <stddef.h>
void hexdump(const void *data, size_t size);
#endif // HEXDUMP_H

View file

@ -1,4 +1,5 @@
#include "freelist.h"
#include "hexdump.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
@ -17,26 +18,40 @@ void printvec(const Vec3 *v) {
printf("Vec3: (%d, %d, %d)\n", v->x, v->y, v->z);
}
#define BUFFER_SIZE (4096)
#define BUFFER_SIZE (128)
int main() {
FreeList fl;
const char *mem = malloc(BUFFER_SIZE);
memset((void *)mem, 0, BUFFER_SIZE);
if (!fl_init(&fl, (uintptr_t)mem, BUFFER_SIZE, sizeof(Vec3))) {
printf("Allocation error\n");
exit(EXIT_FAILURE);
}
hexdump(mem, BUFFER_SIZE);
fl_init(&fl, (uintptr_t)mem, (uintptr_t)mem + BUFFER_SIZE, sizeof(Vec3));
const size_t cap = fl_capacity(&fl);
printf("Item size: %lu\n", sizeof(Vec3));
printf("FreeList Capacity: %lu\n", cap);
printf("Buffer size: %d\n", BUFFER_SIZE);
printf("Freelist Blocksize: %lu\n", fl.size);
printf("Space utilization internal: %.2f%%\n", 100.0 * fl_utilization(&fl, sizeof(Vec3)));
printf("Space utilization external: %.2f%%\n", 100.0 * ((float)fl.size * cap) / BUFFER_SIZE);
assert(fl_available(&fl) == cap);
if (!fl_check(&fl))
printf("Check failed!\n");
Vec3 *a = fl_alloc(&fl);
Vec3 *b = fl_alloc(&fl);
Vec3 *c = fl_alloc(&fl);
hexdump(mem, BUFFER_SIZE);
memset(a, 0x23, sizeof(Vec3));
memset(b, 0x24, sizeof(Vec3));
memset(c, 0x25, sizeof(Vec3));
@ -49,18 +64,18 @@ int main() {
printvec(b);
printvec(c);
assert(fl_check(&fl) == cap - 3);
assert(fl_capacity(&fl) == fl_available(&fl) + 3);
// assert(fl_check(&fl) == cap - 3);
// assert(fl_capacity(&fl) == fl_available(&fl) + 3);
printf("Available: %zu of %zu\n", fl_available(&fl), fl_capacity(&fl));
assert(fl_free(&fl, a) == EXIT_SUCCESS);
assert(fl_free(&fl, b) == EXIT_SUCCESS);
assert(fl_free(&fl, c) == EXIT_SUCCESS);
assert(fl_free(&fl, a));
assert(fl_free(&fl, b));
assert(fl_free(&fl, c));
printf("Available: %zu of %zu\n", fl_available(&fl), fl_capacity(&fl));
assert(fl_check(&fl) == fl_capacity(&fl) - fl_allocated(&fl));
// assert(fl_check(&fl) == fl_capacity(&fl) - fl_allocated(&fl));
assert(fl_allocated(&fl) == 0);
/* All memory is free here */
@ -72,6 +87,10 @@ int main() {
ptr_buf[i] = (uintptr_t)fl_alloc(&fl);
}
/* Write some data to the last element to catch out of bounds writes */
size_t last_elem = fl_capacity(&fl) - 1;
*(Vec3 *)ptr_buf[last_elem] = *a;
assert(0 == fl_available(&fl));
assert(fl_allocated(&fl) == fl_capacity(&fl));
assert(fl_check(&fl) == 0);
@ -81,9 +100,9 @@ int main() {
fl_free(&fl, (void *)ptr_buf[i]);
}
assert(cap == fl_available(&fl));
assert(fl_allocated(&fl) == 0);
assert(fl_check(&fl) == cap);
// assert(cap == fl_available(&fl));
// assert(fl_allocated(&fl) == 0);
// assert(fl_check(&fl) == cap);
printf("All tests passed!\n");
return 0;