stdalloc.c 2.83 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "stdalloc.h"

10
static void *stdalloc__malloc(size_t len, const char *file, int line)
11
{
12
	void *ptr;
13 14 15 16

	GIT_UNUSED(file);
	GIT_UNUSED(line);

17 18 19 20 21 22 23 24 25 26
#ifdef GIT_DEBUG_STRICT_ALLOC
	if (!len)
		return NULL;
#endif

	ptr = malloc(len);

	if (!ptr)
		git_error_set_oom();

27 28 29
	return ptr;
}

30
static void *stdalloc__calloc(size_t nelem, size_t elsize, const char *file, int line)
31
{
32
	void *ptr;
33 34 35 36

	GIT_UNUSED(file);
	GIT_UNUSED(line);

37
#ifdef GIT_DEBUG_STRICT_ALLOC
38
	if (!elsize || !nelem)
39 40 41 42 43 44 45 46
		return NULL;
#endif

	ptr = calloc(nelem, elsize);

	if (!ptr)
		git_error_set_oom();

47 48 49
	return ptr;
}

50
static char *stdalloc__strdup(const char *str, const char *file, int line)
51
{
52
	char *ptr;
53 54 55 56

	GIT_UNUSED(file);
	GIT_UNUSED(line);

57 58 59 60 61
	ptr = strdup(str);

	if (!ptr)
		git_error_set_oom();

62 63 64
	return ptr;
}

65
static char *stdalloc__strndup(const char *str, size_t n, const char *file, int line)
66 67 68 69 70 71 72
{
	size_t length = 0, alloclength;
	char *ptr;

	length = p_strnlen(str, n);

	if (GIT_ADD_SIZET_OVERFLOW(&alloclength, length, 1) ||
73
	    !(ptr = stdalloc__malloc(alloclength, file, line)))
74 75 76 77 78 79 80 81 82 83
		return NULL;

	if (length)
		memcpy(ptr, str, length);

	ptr[length] = '\0';

	return ptr;
}

84
static char *stdalloc__substrdup(const char *start, size_t n, const char *file, int line)
85 86 87 88 89
{
	char *ptr;
	size_t alloclen;

	if (GIT_ADD_SIZET_OVERFLOW(&alloclen, n, 1) ||
90
	    !(ptr = stdalloc__malloc(alloclen, file, line)))
91 92 93 94 95 96 97
		return NULL;

	memcpy(ptr, start, n);
	ptr[n] = '\0';
	return ptr;
}

98
static void *stdalloc__realloc(void *ptr, size_t size, const char *file, int line)
99
{
100
	void *new_ptr;
101 102 103 104

	GIT_UNUSED(file);
	GIT_UNUSED(line);

105 106 107 108 109 110 111 112 113 114
#ifdef GIT_DEBUG_STRICT_ALLOC
	if (!size)
		return NULL;
#endif

	new_ptr = realloc(ptr, size);

	if (!new_ptr)
		git_error_set_oom();

115 116 117
	return new_ptr;
}

118
static void *stdalloc__reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line)
119 120
{
	size_t newsize;
121

122 123
	if (GIT_MULTIPLY_SIZET_OVERFLOW(&newsize, nelem, elsize))
		return NULL;
124

125
	return stdalloc__realloc(ptr, newsize, file, line);
126 127
}

128
static void *stdalloc__mallocarray(size_t nelem, size_t elsize, const char *file, int line)
129
{
130
	return stdalloc__reallocarray(NULL, nelem, elsize, file, line);
131 132
}

133
static void stdalloc__free(void *ptr)
134 135 136
{
	free(ptr);
}
137 138 139 140 141 142 143 144 145 146 147 148 149 150

int git_stdalloc_init_allocator(git_allocator *allocator)
{
	allocator->gmalloc = stdalloc__malloc;
	allocator->gcalloc = stdalloc__calloc;
	allocator->gstrdup = stdalloc__strdup;
	allocator->gstrndup = stdalloc__strndup;
	allocator->gsubstrdup = stdalloc__substrdup;
	allocator->grealloc = stdalloc__realloc;
	allocator->greallocarray = stdalloc__reallocarray;
	allocator->gmallocarray = stdalloc__mallocarray;
	allocator->gfree = stdalloc__free;
	return 0;
}