common.h 6.54 KB
Newer Older
Vicent Marti committed
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
Vicent Marti committed
3 4 5 6
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
7 8 9
#ifndef INCLUDE_common_h__
#define INCLUDE_common_h__

10 11 12 13
#ifndef LIBGIT2_NO_FEATURES_H
# include "git2/sys/features.h"
#endif

14
#include "git2/common.h"
15
#include "cc-compat.h"
16

Russell Belfer committed
17 18 19
/** Declare a function as always inlined. */
#if defined(_MSC_VER)
# define GIT_INLINE(type) static __inline type
20 21
#elif defined(__GNUC__)
# define GIT_INLINE(type) static __inline__ type
Russell Belfer committed
22
#else
23
# define GIT_INLINE(type) static type
Russell Belfer committed
24 25
#endif

26 27 28 29 30
/** Support for gcc/clang __has_builtin intrinsic */
#ifndef __has_builtin
# define __has_builtin(x) 0
#endif

31
#include <assert.h>
32
#include <errno.h>
33
#include <limits.h>
34
#include <stdlib.h>
35
#include <stdio.h>
36 37
#include <string.h>

38
#include <sys/types.h>
39
#include <sys/stat.h>
40 41 42 43

#ifdef GIT_WIN32

# include <io.h>
44
# include <direct.h>
45
# include <winsock2.h>
46
# include <windows.h>
47
# include <ws2tcpip.h>
48 49
# include "win32/msvc-compat.h"
# include "win32/mingw-compat.h"
50
# include "win32/win32-compat.h"
51
# include "win32/error.h"
52
# include "win32/version.h"
Vicent Marti committed
53
# ifdef GIT_THREADS
54
#	include "win32/thread.h"
55
# endif
56

57 58
#else

59
# include <unistd.h>
60
# include <strings.h>
Vicent Marti committed
61
# ifdef GIT_THREADS
Vicent Marti committed
62
#	include <pthread.h>
63
#	include <sched.h>
Vicent Marti committed
64
# endif
Russell Belfer committed
65 66
#define GIT_STDLIB_CALL

67 68 69 70 71 72
#ifdef GIT_USE_STAT_ATIMESPEC
# define st_atim st_atimespec
# define st_ctim st_ctimespec
# define st_mtim st_mtimespec
#endif

Edward Thomson committed
73 74
# include <arpa/inet.h>

75 76
#endif

77
#include "git2/types.h"
78
#include "git2/errors.h"
79
#include "thread-utils.h"
80
#include "integer.h"
81

82 83
#include <regex.h>

84 85 86 87 88
#define DEFAULT_BUFSIZE 65536
#define FILEIO_BUFSIZE DEFAULT_BUFSIZE
#define FILTERIO_BUFSIZE DEFAULT_BUFSIZE
#define NETIO_BUFSIZE DEFAULT_BUFSIZE

89 90 91
/**
 * Check a pointer allocation result, returning -1 if it failed.
 */
92 93
#define GITERR_CHECK_ALLOC(ptr) if (ptr == NULL) { return -1; }

94
/**
95 96 97 98 99
 * Check a buffer allocation result, returning -1 if it failed.
 */
#define GITERR_CHECK_ALLOC_BUF(buf) if ((void *)(buf) == NULL || git_buf_oom(buf)) { return -1; }

/**
Will Stamper committed
100
 * Check a return value and propagate result if non-zero.
101 102
 */
#define GITERR_CHECK_ERROR(code) \
103
	do { int _err = (code); if (_err) return _err; } while (0)
104 105

/**
106 107
 * Set the error message for this thread, formatting as needed.
 */
108 109

void giterr_set(int error_class, const char *string, ...) GIT_FORMAT_PRINTF(2, 3);
110 111 112

/**
 * Set the error message for a regex failure, using the internal regex
113
 * error code lookup and return a libgit error code.
114
 */
115
int giterr_set_regex(const regex_t *regex, int error_code);
116

Ben Straub committed
117
/**
118 119 120 121 122 123 124
 * Set error message for user callback if needed.
 *
 * If the error code in non-zero and no error message is set, this
 * sets a generic error message.
 *
 * @return This always returns the `error_code` parameter.
 */
125 126
GIT_INLINE(int) giterr_set_after_callback_function(
	int error_code, const char *action)
127 128 129 130 131 132 133 134 135 136
{
	if (error_code) {
		const git_error *e = giterr_last();
		if (!e || !e->message)
			giterr_set(e ? e->klass : GITERR_CALLBACK,
				"%s callback returned %d", action, error_code);
	}
	return error_code;
}

137
#ifdef GIT_WIN32
138 139
#define giterr_set_after_callback(code) \
	giterr_set_after_callback_function((code), __FUNCTION__)
140
#else
141 142
#define giterr_set_after_callback(code) \
	giterr_set_after_callback_function((code), __func__)
143
#endif
144 145

/**
146 147
 * Gets the system error code for this thread.
 */
148
int giterr_system_last(void);
149 150 151 152

/**
 * Sets the system error code for this thread.
 */
153 154 155 156 157 158
void giterr_system_set(int code);

/**
 * Structure to preserve libgit2 error state
 */
typedef struct {
159 160
	int error_code;
	unsigned int oom : 1;
161 162 163 164 165
	git_error error_msg;
} git_error_state;

/**
 * Capture current error state to restore later, returning error code.
166 167
 * If `error_code` is zero, this does not clear the current error state.
 * You must either restore this error state, or free it.
168
 */
169
extern int giterr_state_capture(git_error_state *state, int error_code);
170 171 172 173

/**
 * Restore error state to a previous value, returning saved error code.
 */
174 175 176 177
extern int giterr_state_restore(git_error_state *state);

/** Free an error state. */
extern void giterr_state_free(git_error_state *state);
178 179

/**
Ben Straub committed
180 181
 * Check a versioned structure for validity
 */
182
GIT_INLINE(int) giterr__check_version(const void *structure, unsigned int expected_max, const char *name)
Ben Straub committed
183
{
Vicent Marti committed
184
	unsigned int actual;
Vicent Marti committed
185

Ben Straub committed
186
	if (!structure)
187
		return 0;
Ben Straub committed
188

Vicent Marti committed
189
	actual = *(const unsigned int*)structure;
Ben Straub committed
190
	if (actual > 0 && actual <= expected_max)
191
		return 0;
Ben Straub committed
192

193
	giterr_set(GITERR_INVALID, "invalid version %d on %s", actual, name);
194
	return -1;
Ben Straub committed
195
}
196
#define GITERR_CHECK_VERSION(S,V,N) if (giterr__check_version(S,V,N) < 0) return -1
Ben Straub committed
197

Ben Straub committed
198 199 200 201 202 203 204 205 206 207
/**
 * Initialize a structure with a version.
 */
GIT_INLINE(void) git__init_structure(void *structure, size_t len, unsigned int version)
{
	memset(structure, 0, len);
	*((int*)structure) = version;
}
#define GIT_INIT_STRUCTURE(S,V) git__init_structure(S, sizeof(*S), V)

208 209 210 211 212
#define GIT_INIT_STRUCTURE_FROM_TEMPLATE(PTR,VERSION,TYPE,TPL) do { \
	TYPE _tmpl = TPL; \
	GITERR_CHECK_VERSION(&(VERSION), _tmpl.version, #TYPE);	\
	memcpy((PTR), &_tmpl, sizeof(_tmpl)); } while (0)

213

214 215 216
/** Check for additive overflow, setting an error if would occur. */
#define GIT_ADD_SIZET_OVERFLOW(out, one, two) \
	(git__add_sizet_overflow(out, one, two) ? (giterr_set_oom(), 1) : 0)
217

218 219 220
/** Check for additive overflow, setting an error if would occur. */
#define GIT_MULTIPLY_SIZET_OVERFLOW(out, nelem, elsize) \
	(git__multiply_sizet_overflow(out, nelem, elsize) ? (giterr_set_oom(), 1) : 0)
221 222

/** Check for additive overflow, failing if it would occur. */
223 224
#define GITERR_CHECK_ALLOC_ADD(out, one, two) \
	if (GIT_ADD_SIZET_OVERFLOW(out, one, two)) { return -1; }
225

226 227 228 229 230 231 232 233 234
#define GITERR_CHECK_ALLOC_ADD3(out, one, two, three) \
	if (GIT_ADD_SIZET_OVERFLOW(out, one, two) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), three)) { return -1; }

#define GITERR_CHECK_ALLOC_ADD4(out, one, two, three, four) \
	if (GIT_ADD_SIZET_OVERFLOW(out, one, two) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), three) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), four)) { return -1; }

235 236 237 238 239 240
#define GITERR_CHECK_ALLOC_ADD5(out, one, two, three, four, five) \
	if (GIT_ADD_SIZET_OVERFLOW(out, one, two) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), three) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), four) || \
		GIT_ADD_SIZET_OVERFLOW(out, *(out), five)) { return -1; }

241
/** Check for multiplicative overflow, failing if it would occur. */
242 243
#define GITERR_CHECK_ALLOC_MULTIPLY(out, nelem, elsize) \
	if (GIT_MULTIPLY_SIZET_OVERFLOW(out, nelem, elsize)) { return -1; }
244

245 246
/* NOTE: other giterr functions are in the public errors.h header file */

247 248
#include "util.h"

249
#endif