Skip to content

Commit

Permalink
Hook calloc for test harness (#172)
Browse files Browse the repository at this point in the history
This commit introduces a generic alloc function to handle both
test_malloc and test_calloc operations based on the provided
alloc_func_t. Additionally, it implements the test_calloc function to
allocate memory and initialize it to zero.
  • Loading branch information
komark06 authored Mar 17, 2024
1 parent 6c80a7d commit f087e77
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
39 changes: 29 additions & 10 deletions harness.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <setjmp.h>
#include <signal.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down Expand Up @@ -58,6 +59,12 @@ static jmp_buf env;
static volatile sig_atomic_t jmp_ready = false;
static bool time_limited = false;

/* For test_malloc and test_calloc */
typedef enum {
TEST_MALLOC,
TEST_CALLOC,
} alloc_t;

/* Internal functions */

/* Should this allocation fail? */
Expand Down Expand Up @@ -115,17 +122,23 @@ static size_t *find_footer(block_element_t *b)
return p;
}

/* Implementation of application functions */

void *test_malloc(size_t size)
static void *alloc(alloc_t alloc_type, size_t size)
{
if (noallocate_mode) {
report_event(MSG_FATAL, "Calls to malloc disallowed");
char *msg_alloc_forbidden[] = {
"Calls to malloc are disallowed",
"Calls to calloc are disallowed",
};
report_event(MSG_FATAL, "%s", msg_alloc_forbidden[alloc_type]);
return NULL;
}

if (fail_allocation()) {
report_event(MSG_WARN, "Malloc returning NULL");
char *msg_alloc_failure[] = {
"Malloc returning NULL",
"Calloc returning NULL",
};
report_event(MSG_WARN, "%s", msg_alloc_failure[alloc_type]);
return NULL;
}

Expand All @@ -142,7 +155,7 @@ void *test_malloc(size_t size)
new_block->payload_size = size;
*find_footer(new_block) = MAGICFOOTER;
void *p = (void *) &new_block->payload;
memset(p, FILLCHAR, size);
memset(p, !alloc_type * FILLCHAR, size);
// cppcheck-suppress nullPointerRedundantCheck
new_block->next = allocated;
// cppcheck-suppress nullPointerRedundantCheck
Expand All @@ -156,16 +169,22 @@ void *test_malloc(size_t size)
return p;
}

/* Implementation of application functions */

void *test_malloc(size_t size)
{
return alloc(TEST_MALLOC, size);
}

// cppcheck-suppress unusedFunction
void *test_calloc(size_t nelem, size_t elsize)
{
/* Reference: Malloc tutorial
* https://danluu.com/malloc-tutorial/
*/
size_t size = nelem * elsize; // TODO: check for overflow
void *ptr = test_malloc(size);
memset(ptr, 0, size);
return ptr;
if (!nelem || !elsize || nelem > SIZE_MAX / elsize)
return NULL;
return alloc(TEST_CALLOC, nelem * elsize);
}

void test_free(void *p)
Expand Down
1 change: 1 addition & 0 deletions harness.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ void trigger_exception(char *msg);

/* Tested program use our versions of malloc and free */
#define malloc test_malloc
#define calloc test_calloc
#define free test_free

/* Use undef to avoid strdup redefined error */
Expand Down

0 comments on commit f087e77

Please sign in to comment.