2022-06-22 05:39:53 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define KERNAUX_ACCESS_PRIVATE
|
|
|
|
|
|
|
|
#include <kernaux/free_list.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stddef.h>
|
2022-06-27 06:32:41 -04:00
|
|
|
#include <stdint.h>
|
2022-11-27 10:31:56 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2022-06-22 05:39:53 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
static void test_default();
|
2022-06-27 06:32:41 -04:00
|
|
|
static void test_cross_zone_defrag();
|
2022-11-27 10:31:56 -05:00
|
|
|
static void test_hello_and_mrb_state();
|
2022-06-27 06:32:41 -04:00
|
|
|
|
2022-06-22 05:39:53 -04:00
|
|
|
static void test_calloc();
|
|
|
|
static void test_calloc_nomem();
|
2022-06-27 06:32:41 -04:00
|
|
|
static void test_calloc_overflow();
|
|
|
|
static void test_calloc_zero();
|
|
|
|
|
|
|
|
static void test_realloc_alloc();
|
|
|
|
static void test_realloc_free();
|
|
|
|
static void test_realloc_memcpy();
|
|
|
|
static void test_realloc_increase();
|
|
|
|
static void test_realloc_decrease();
|
|
|
|
|
|
|
|
static size_t nodes_count(KernAux_FreeList free_list);
|
2022-11-27 10:31:56 -05:00
|
|
|
static void print_nodes(KernAux_FreeList free_list);
|
2022-06-27 06:32:41 -04:00
|
|
|
|
|
|
|
static const char *const hello = "Hello, World!";
|
2022-06-22 05:39:53 -04:00
|
|
|
|
|
|
|
void test_main()
|
|
|
|
{
|
|
|
|
test_default();
|
2022-06-27 06:32:41 -04:00
|
|
|
test_cross_zone_defrag();
|
2022-11-27 10:31:56 -05:00
|
|
|
test_hello_and_mrb_state();
|
2022-06-27 06:32:41 -04:00
|
|
|
|
2022-06-22 05:39:53 -04:00
|
|
|
test_calloc();
|
|
|
|
test_calloc_nomem();
|
2022-06-27 06:32:41 -04:00
|
|
|
test_calloc_overflow();
|
|
|
|
test_calloc_zero();
|
|
|
|
|
|
|
|
test_realloc_alloc();
|
|
|
|
test_realloc_free();
|
|
|
|
test_realloc_memcpy();
|
|
|
|
test_realloc_increase();
|
|
|
|
test_realloc_decrease();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t nodes_count(const KernAux_FreeList free_list)
|
|
|
|
{
|
|
|
|
size_t nodes_count = 0;
|
|
|
|
for (
|
|
|
|
KernAux_FreeList_Node item_node = free_list->head;
|
|
|
|
item_node;
|
|
|
|
item_node = item_node->next
|
|
|
|
) {
|
|
|
|
++nodes_count;
|
|
|
|
}
|
|
|
|
return nodes_count;
|
2022-06-22 05:39:53 -04:00
|
|
|
}
|
|
|
|
|
2022-11-27 10:31:56 -05:00
|
|
|
void print_nodes(const KernAux_FreeList free_list)
|
|
|
|
{
|
|
|
|
printf("\n\n\n");
|
|
|
|
printf("========================================\n");
|
|
|
|
printf("free_list: %p\n", (void*)free_list);
|
|
|
|
printf("free_list->head: %p\n", (void*)free_list->head);
|
|
|
|
for (
|
|
|
|
KernAux_FreeList_Node item_node = free_list->head;
|
|
|
|
item_node;
|
|
|
|
item_node = item_node->next
|
|
|
|
) {
|
|
|
|
printf("----------------------------------------\n");
|
|
|
|
printf("item_node: %p\n", (void*)item_node);
|
|
|
|
printf("item_node->orig_ptr: %p\n", (void*)item_node->orig_ptr);
|
|
|
|
printf("item_node->next: %p\n", (void*)item_node->next);
|
|
|
|
printf("item_node->prev: %p\n", (void*)item_node->prev);
|
|
|
|
printf("&item_node->block: %p\n", (void*)&item_node->block);
|
|
|
|
printf("item_node->size: %lu\n", (unsigned long)item_node->size);
|
|
|
|
}
|
|
|
|
printf("========================================\n");
|
|
|
|
printf("\n\n\n");
|
|
|
|
}
|
|
|
|
|
2022-06-22 05:39:53 -04:00
|
|
|
void test_default()
|
|
|
|
{
|
|
|
|
char memory_block[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, memory_block, sizeof(memory_block));
|
|
|
|
|
|
|
|
char *const ptr1 = KernAux_Malloc_malloc(&free_list.malloc, 100);
|
|
|
|
assert(ptr1);
|
|
|
|
assert(ptr1 > memory_block);
|
|
|
|
assert(ptr1 < &memory_block[1000]);
|
|
|
|
|
|
|
|
char *const ptr2 = KernAux_Malloc_calloc(&free_list.malloc, 100, 1);
|
|
|
|
assert(ptr2);
|
|
|
|
assert(ptr2 > ptr1);
|
|
|
|
assert(ptr2 < &memory_block[1000]);
|
|
|
|
|
|
|
|
char *const ptr3 = KernAux_Malloc_calloc(&free_list.malloc, 1, 100);
|
|
|
|
assert(ptr3);
|
|
|
|
assert(ptr3 > ptr2);
|
|
|
|
assert(ptr3 < &memory_block[1000]);
|
|
|
|
|
|
|
|
char *const ptr4 = KernAux_Malloc_malloc(&free_list.malloc, 100);
|
|
|
|
assert(ptr4);
|
|
|
|
assert(ptr4 > ptr3);
|
|
|
|
assert(ptr4 < &memory_block[1000]);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, ptr2);
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, ptr3);
|
|
|
|
|
|
|
|
char *const ptr5 = KernAux_Malloc_malloc(&free_list.malloc, 100);
|
|
|
|
assert(ptr5 == ptr2);
|
|
|
|
|
|
|
|
char *const ptr6 = KernAux_Malloc_calloc(&free_list.malloc, 10, 10);
|
|
|
|
assert(ptr6 == ptr3);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, ptr2);
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, ptr3);
|
|
|
|
|
|
|
|
char *const ptr7 = KernAux_Malloc_malloc(&free_list.malloc, 200);
|
|
|
|
assert(ptr7 == ptr2);
|
|
|
|
}
|
|
|
|
|
2022-06-27 06:32:41 -04:00
|
|
|
void test_cross_zone_defrag()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, &zone[0], 500);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, &zone[500], 500);
|
|
|
|
|
|
|
|
assert(nodes_count(&free_list) == 1);
|
|
|
|
}
|
|
|
|
|
2022-11-27 10:31:56 -05:00
|
|
|
void test_hello_and_mrb_state()
|
|
|
|
{
|
|
|
|
char *const zone = malloc(1024 * 128); // 128 KiB
|
|
|
|
assert(zone);
|
|
|
|
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
printf("KernAux_FreeList_create(NULL) = %p\n", (void*)&free_list);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, 1024 * 128);
|
|
|
|
printf(
|
|
|
|
"KernAux_FreeList_add_zone(&free_list, zone = %p, 1024 * 128 = %i)\n",
|
|
|
|
(void*)zone,
|
|
|
|
1024 * 128
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
{
|
|
|
|
char *const str = KernAux_Malloc_malloc(&free_list.malloc, 100);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_malloc(&free_list.malloc, 100) = %p\n",
|
|
|
|
(void*)str
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
assert(str);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, str);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_free(&free_list.malloc, str = %p)\n",
|
|
|
|
(void*)str
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char *const str =
|
|
|
|
KernAux_Malloc_realloc(&free_list.malloc, NULL, 100);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_realloc(&free_list.malloc, NULL, 100) = %p\n",
|
|
|
|
(void*)str
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
assert(str);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, str);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_free(&free_list.malloc, str = %p)\n",
|
|
|
|
(void*)str
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char *const mrb = KernAux_Malloc_malloc(&free_list.malloc, 6356);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_malloc(&free_list.malloc, 6356) = %p\n",
|
|
|
|
(void*)mrb
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
assert(mrb);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, mrb);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_free(&free_list.malloc, mrb = %p)\n",
|
|
|
|
(void*)mrb
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char *const mrb = KernAux_Malloc_realloc(&free_list.malloc, NULL, 6356);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_realloc(&free_list.malloc, NULL, 6356) = %p\n",
|
|
|
|
(void*)mrb
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
|
|
|
|
assert(mrb);
|
|
|
|
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, mrb);
|
|
|
|
printf(
|
|
|
|
"KernAux_Malloc_free(&free_list.malloc, mrb = %p)\n",
|
|
|
|
(void*)mrb
|
|
|
|
);
|
|
|
|
print_nodes(&free_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(zone);
|
|
|
|
}
|
|
|
|
|
2022-06-22 05:39:53 -04:00
|
|
|
void test_calloc()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, 1000);
|
|
|
|
char *const ptr = KernAux_Malloc_calloc(&free_list.malloc, 1, 900);
|
|
|
|
for (size_t index = 0; index < 900; ++index) {
|
|
|
|
assert(ptr[index] == 0);
|
|
|
|
}
|
|
|
|
KernAux_Malloc_free(&free_list.malloc, ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_calloc_nomem()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
void *const ptr = KernAux_Malloc_calloc(&free_list.malloc, 1, sizeof(zone));
|
|
|
|
assert(ptr == NULL);
|
|
|
|
}
|
|
|
|
|
2022-06-27 06:32:41 -04:00
|
|
|
void test_calloc_overflow()
|
2022-06-22 05:39:53 -04:00
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
2022-06-27 06:32:41 -04:00
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, SIZE_MAX);
|
|
|
|
{
|
|
|
|
void *const ptr = KernAux_Malloc_calloc(&free_list.malloc, 2, SIZE_MAX);
|
|
|
|
assert(ptr == NULL);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
void *const ptr = KernAux_Malloc_calloc(&free_list.malloc, SIZE_MAX, 2);
|
|
|
|
assert(ptr == NULL);
|
2022-06-22 05:39:53 -04:00
|
|
|
}
|
2022-06-27 06:32:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void test_calloc_zero()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
void *const ptr1 = KernAux_Malloc_calloc(&free_list.malloc, 0, 900);
|
|
|
|
assert(ptr1 == NULL);
|
|
|
|
void *const ptr2 = KernAux_Malloc_calloc(&free_list.malloc, 900, 0);
|
|
|
|
assert(ptr2 == NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_realloc_alloc()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
void *const ptr = KernAux_Malloc_realloc(&free_list.malloc, NULL, 900);
|
|
|
|
assert(ptr != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_realloc_free()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
|
|
|
|
void *const ptr1 = KernAux_Malloc_malloc(&free_list.malloc, 900);
|
|
|
|
assert(ptr1 != NULL);
|
|
|
|
|
|
|
|
void *const ptr2 = KernAux_Malloc_realloc(&free_list.malloc, ptr1, 0);
|
|
|
|
assert(ptr2 == NULL);
|
|
|
|
|
|
|
|
void *const ptr3 = KernAux_Malloc_malloc(&free_list.malloc, 900);
|
|
|
|
assert(ptr3 != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_realloc_memcpy()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
|
|
|
|
char *const ptr1 = KernAux_Malloc_malloc(&free_list.malloc, 400);
|
|
|
|
assert(ptr1 != NULL);
|
|
|
|
|
|
|
|
memset(ptr1, 0, 400);
|
|
|
|
strcpy(ptr1, hello);
|
|
|
|
strcpy(&ptr1[400 - strlen(hello) - 1], hello);
|
|
|
|
|
|
|
|
char *const ptr2 = KernAux_Malloc_realloc(&free_list.malloc, ptr1, 400);
|
|
|
|
assert(ptr2 != NULL);
|
|
|
|
|
|
|
|
assert(strcmp(ptr2, hello) == 0);
|
|
|
|
assert(strcmp(&ptr2[400 - strlen(hello) - 1], hello) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_realloc_increase()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
|
|
|
|
char *const ptr1 = KernAux_Malloc_malloc(&free_list.malloc, 300);
|
|
|
|
assert(ptr1 != NULL);
|
|
|
|
|
|
|
|
memset(ptr1, 0, 300);
|
|
|
|
strcpy(ptr1, hello);
|
|
|
|
strcpy(&ptr1[300 - strlen(hello) - 1], hello);
|
|
|
|
|
|
|
|
char *const ptr2 = KernAux_Malloc_realloc(&free_list.malloc, ptr1, 500);
|
|
|
|
assert(ptr2 != NULL);
|
|
|
|
|
|
|
|
assert(strcmp(ptr2, hello) == 0);
|
|
|
|
assert(strcmp(&ptr2[300 - strlen(hello) - 1], hello) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_realloc_decrease()
|
|
|
|
{
|
|
|
|
char zone[1000];
|
|
|
|
struct KernAux_FreeList free_list = KernAux_FreeList_create(NULL);
|
|
|
|
KernAux_FreeList_add_zone(&free_list, zone, sizeof(zone));
|
|
|
|
|
|
|
|
char *const ptr1 = KernAux_Malloc_malloc(&free_list.malloc, 500);
|
|
|
|
assert(ptr1 != NULL);
|
|
|
|
|
|
|
|
memset(ptr1, 0, 300);
|
|
|
|
strcpy(ptr1, hello);
|
|
|
|
strcpy(&ptr1[300 - strlen(hello) - 1], hello);
|
|
|
|
|
|
|
|
char *const ptr2 = KernAux_Malloc_realloc(&free_list.malloc, ptr1, 300);
|
|
|
|
assert(ptr2 != NULL);
|
2022-06-22 05:39:53 -04:00
|
|
|
|
2022-06-27 06:32:41 -04:00
|
|
|
assert(strcmp(ptr2, hello) == 0);
|
|
|
|
assert(strcmp(&ptr2[300 - strlen(hello) - 1], hello) == 0);
|
2022-06-22 05:39:53 -04:00
|
|
|
}
|