summaryrefslogtreecommitdiff
path: root/src/alloc.c
blob: 9ec90297f8b1f22f1af443dc4d14a3c0ef29f311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * 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 "alloc.h"
#include "runtime.h"

#include "allocators/failalloc.h"
#include "allocators/stdalloc.h"
#include "allocators/win32_crtdbg.h"

#if defined(GIT_MSVC_CRTDBG)
# include "win32/w32_stack.h"
# include "win32/w32_crtdbg_stacktrace.h"
#endif

/* Fail any allocation until git_libgit2_init is called. */
git_allocator git__allocator = {
	git_failalloc_malloc,
	git_failalloc_calloc,
	git_failalloc_strdup,
	git_failalloc_strndup,
	git_failalloc_substrdup,
	git_failalloc_realloc,
	git_failalloc_reallocarray,
	git_failalloc_mallocarray,
	git_failalloc_free
};

static int setup_default_allocator(void)
{
#if defined(GIT_MSVC_CRTDBG)
	return git_win32_crtdbg_init_allocator(&git__allocator);
#else
	return git_stdalloc_init_allocator(&git__allocator);
#endif
}

#if defined(GIT_MSVC_CRTDBG)
static void allocator_global_shutdown(void)
{
	git_win32__crtdbg_stacktrace_cleanup();
	git_win32__stack_cleanup();
}
#endif

int git_allocator_global_init(void)
{
#if defined(GIT_MSVC_CRTDBG)
	git_win32__crtdbg_stacktrace_init();
	git_win32__stack_init();

	if (git_runtime_shutdown_register(allocator_global_shutdown) < 0)
		return -1;
#endif

	/*
	 * We don't want to overwrite any allocator which has been set before
	 * the init function is called.
	 */
	if (git__allocator.gmalloc != git_failalloc_malloc)
		return 0;

	return setup_default_allocator();
}

int git_allocator_setup(git_allocator *allocator)
{
	if (!allocator)
		return setup_default_allocator();

	memcpy(&git__allocator, allocator, sizeof(*allocator));
	return 0;
}