1 /*
2  * Copyright (C) the libgit2 contributors. All rights reserved.
3  *
4  * This file is part of libgit2, distributed under the GNU GPL v2 with
5  * a Linking Exception. For full terms see the included COPYING file.
6  */
7 #ifndef INCLUDE_util_h__
8 #define INCLUDE_util_h__
9 
10 #include "common.h"
11 
12 #ifndef GIT_WIN32
13 # include <ctype.h>
14 #endif
15 
16 #include "git2/buffer.h"
17 
18 #include "buffer.h"
19 #include "common.h"
20 #include "strnlen.h"
21 #include "thread.h"
22 
23 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
24 #define bitsizeof(x) (CHAR_BIT * sizeof(x))
25 #define MSB(x, bits) ((x) & (~0ULL << (bitsizeof(x) - (bits))))
26 #ifndef min
27 # define min(a,b) ((a) < (b) ? (a) : (b))
28 #endif
29 #ifndef max
30 # define max(a,b) ((a) > (b) ? (a) : (b))
31 #endif
32 
33 #if defined(__GNUC__)
34 # define GIT_CONTAINER_OF(ptr, type, member) \
35 	__builtin_choose_expr( \
36 	    __builtin_offsetof(type, member) == 0 && \
37 	    __builtin_types_compatible_p(typeof(&((type *) 0)->member), typeof(ptr)), \
38 		((type *) (ptr)), \
39 		(void)0)
40 #else
41 # define GIT_CONTAINER_OF(ptr, type, member) (type *)(ptr)
42 #endif
43 
44 #define GIT_DATE_RFC2822_SZ  32
45 
46 /**
47  * Return the length of a constant string.
48  * We are aware that `strlen` performs the same task and is usually
49  * optimized away by the compiler, whilst being safer because it returns
50  * valid values when passed a pointer instead of a constant string; however
51  * this macro will transparently work with wide-char and single-char strings.
52  */
53 #define CONST_STRLEN(x) ((sizeof(x)/sizeof(x[0])) - 1)
54 
55 #define STRCMP_CASESELECT(IGNORE_CASE, STR1, STR2) \
56 	((IGNORE_CASE) ? strcasecmp((STR1), (STR2)) : strcmp((STR1), (STR2)))
57 
58 #define CASESELECT(IGNORE_CASE, ICASE, CASE) \
59 	((IGNORE_CASE) ? (ICASE) : (CASE))
60 
61 extern int git__prefixcmp(const char *str, const char *prefix);
62 extern int git__prefixcmp_icase(const char *str, const char *prefix);
63 extern int git__prefixncmp(const char *str, size_t str_n, const char *prefix);
64 extern int git__prefixncmp_icase(const char *str, size_t str_n, const char *prefix);
65 extern int git__suffixcmp(const char *str, const char *suffix);
66 
git__signum(int val)67 GIT_INLINE(int) git__signum(int val)
68 {
69 	return ((val > 0) - (val < 0));
70 }
71 
72 extern int git__strntol32(int32_t *n, const char *buff, size_t buff_len, const char **end_buf, int base);
73 extern int git__strntol64(int64_t *n, const char *buff, size_t buff_len, const char **end_buf, int base);
74 
75 
76 extern void git__hexdump(const char *buffer, size_t n);
77 extern uint32_t git__hash(const void *key, int len, uint32_t seed);
78 
79 /* 32-bit cross-platform rotl */
80 #ifdef _MSC_VER /* use built-in method in MSVC */
81 #	define git__rotl(v, s) (uint32_t)_rotl(v, s)
82 #else /* use bitops in GCC; with o2 this gets optimized to a rotl instruction */
83 #	define git__rotl(v, s) (uint32_t)(((uint32_t)(v) << (s)) | ((uint32_t)(v) >> (32 - (s))))
84 #endif
85 
86 extern char *git__strtok(char **end, const char *sep);
87 extern char *git__strsep(char **end, const char *sep);
88 
89 extern void git__strntolower(char *str, size_t len);
90 extern void git__strtolower(char *str);
91 
92 #ifdef GIT_WIN32
git__tolower(int c)93 GIT_INLINE(int) git__tolower(int c)
94 {
95 	return (c >= 'A' && c <= 'Z') ? (c + 32) : c;
96 }
97 #else
98 # define git__tolower(a) tolower(a)
99 #endif
100 
101 extern size_t git__linenlen(const char *buffer, size_t buffer_len);
102 
git__next_line(const char * s)103 GIT_INLINE(const char *) git__next_line(const char *s)
104 {
105 	while (*s && *s != '\n') s++;
106 	while (*s == '\n' || *s == '\r') s++;
107 	return s;
108 }
109 
git__memrchr(const void * s,int c,size_t n)110 GIT_INLINE(const void *) git__memrchr(const void *s, int c, size_t n)
111 {
112 	const unsigned char *cp;
113 
114 	if (n != 0) {
115 		cp = (unsigned char *)s + n;
116 		do {
117 			if (*(--cp) == (unsigned char)c)
118 				return cp;
119 		} while (--n != 0);
120 	}
121 
122 	return NULL;
123 }
124 
125 extern const void * git__memmem(const void *haystack, size_t haystacklen,
126 				const void *needle, size_t needlelen);
127 
128 typedef int (*git__tsort_cmp)(const void *a, const void *b);
129 
130 extern void git__tsort(void **dst, size_t size, git__tsort_cmp cmp);
131 
132 typedef int (*git__sort_r_cmp)(const void *a, const void *b, void *payload);
133 
134 extern void git__tsort_r(
135 	void **dst, size_t size, git__sort_r_cmp cmp, void *payload);
136 
137 extern void git__qsort_r(
138 	void *els, size_t nel, size_t elsize, git__sort_r_cmp cmp, void *payload);
139 
140 /**
141  * @param position If non-NULL, this will be set to the position where the
142  * 		element is or would be inserted if not found.
143  * @return 0 if found; GIT_ENOTFOUND if not found
144  */
145 extern int git__bsearch(
146 	void **array,
147 	size_t array_len,
148 	const void *key,
149 	int (*compare)(const void *key, const void *element),
150 	size_t *position);
151 
152 extern int git__bsearch_r(
153 	void **array,
154 	size_t array_len,
155 	const void *key,
156 	int (*compare_r)(const void *key, const void *element, void *payload),
157 	void *payload,
158 	size_t *position);
159 
160 #define git__strcmp strcmp
161 #define git__strncmp strncmp
162 
163 extern int git__strcmp_cb(const void *a, const void *b);
164 extern int git__strcasecmp_cb(const void *a, const void *b);
165 
166 extern int git__strcasecmp(const char *a, const char *b);
167 extern int git__strncasecmp(const char *a, const char *b, size_t sz);
168 
169 extern int git__strcasesort_cmp(const char *a, const char *b);
170 
171 typedef struct {
172 	git_atomic32 refcount;
173 	void *owner;
174 } git_refcount;
175 
176 typedef void (*git_refcount_freeptr)(void *r);
177 
178 #define GIT_REFCOUNT_INC(r) { \
179 	git_atomic32_inc(&(r)->rc.refcount);	\
180 }
181 
182 #define GIT_REFCOUNT_DEC(_r, do_free) { \
183 	git_refcount *r = &(_r)->rc; \
184 	int val = git_atomic32_dec(&r->refcount); \
185 	if (val <= 0 && r->owner == NULL) { do_free(_r); } \
186 }
187 
188 #define GIT_REFCOUNT_OWN(r, o) { \
189 	(void)git_atomic_swap((r)->rc.owner, o); \
190 }
191 
192 #define GIT_REFCOUNT_OWNER(r) git_atomic_load((r)->rc.owner)
193 
194 #define GIT_REFCOUNT_VAL(r) git_atomic32_get((r)->rc.refcount)
195 
196 
197 static signed char from_hex[] = {
198 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 00 */
199 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 10 */
200 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 20 */
201  0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, /* 30 */
202 -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 40 */
203 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 50 */
204 -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 60 */
205 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 70 */
206 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 80 */
207 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* 90 */
208 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* a0 */
209 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* b0 */
210 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* c0 */
211 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* d0 */
212 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* e0 */
213 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* f0 */
214 };
215 
git__fromhex(char h)216 GIT_INLINE(int) git__fromhex(char h)
217 {
218 	return from_hex[(unsigned char) h];
219 }
220 
git__ishex(const char * str)221 GIT_INLINE(int) git__ishex(const char *str)
222 {
223 	unsigned i;
224 	for (i=0; str[i] != '\0'; i++)
225 		if (git__fromhex(str[i]) < 0)
226 			return 0;
227 	return 1;
228 }
229 
git__size_t_bitmask(size_t v)230 GIT_INLINE(size_t) git__size_t_bitmask(size_t v)
231 {
232 	v--;
233 	v |= v >> 1;
234 	v |= v >> 2;
235 	v |= v >> 4;
236 	v |= v >> 8;
237 	v |= v >> 16;
238 
239 	return v;
240 }
241 
git__size_t_powerof2(size_t v)242 GIT_INLINE(size_t) git__size_t_powerof2(size_t v)
243 {
244 	return git__size_t_bitmask(v) + 1;
245 }
246 
git__isupper(int c)247 GIT_INLINE(bool) git__isupper(int c)
248 {
249 	return (c >= 'A' && c <= 'Z');
250 }
251 
git__isalpha(int c)252 GIT_INLINE(bool) git__isalpha(int c)
253 {
254 	return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
255 }
256 
git__isdigit(int c)257 GIT_INLINE(bool) git__isdigit(int c)
258 {
259 	return (c >= '0' && c <= '9');
260 }
261 
git__isspace(int c)262 GIT_INLINE(bool) git__isspace(int c)
263 {
264 	return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v');
265 }
266 
git__isspace_nonlf(int c)267 GIT_INLINE(bool) git__isspace_nonlf(int c)
268 {
269 	return (c == ' ' || c == '\t' || c == '\f' || c == '\r' || c == '\v');
270 }
271 
git__iswildcard(int c)272 GIT_INLINE(bool) git__iswildcard(int c)
273 {
274 	return (c == '*' || c == '?' || c == '[');
275 }
276 
git__isxdigit(int c)277 GIT_INLINE(bool) git__isxdigit(int c)
278 {
279 	return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
280 }
281 
282 /*
283  * Parse a string value as a boolean, just like Core Git does.
284  *
285  * Valid values for true are: 'true', 'yes', 'on'
286  * Valid values for false are: 'false', 'no', 'off'
287  */
288 extern int git__parse_bool(int *out, const char *value);
289 
290 /*
291  * Parse a string into a value as a git_time_t.
292  *
293  * Sample valid input:
294  * - "yesterday"
295  * - "July 17, 2003"
296  * - "2003-7-17 08:23"
297  */
298 extern int git__date_parse(git_time_t *out, const char *date);
299 
300 /*
301  * Format a git_time as a RFC2822 string
302  *
303  * @param out buffer to store formatted date; a '\\0' terminator will automatically be added.
304  * @param len size of the buffer; should be atleast `GIT_DATE_RFC2822_SZ` in size;
305  * @param date the date to be formatted
306  * @return 0 if successful; -1 on error
307  */
308 extern int git__date_rfc2822_fmt(char *out, size_t len, const git_time *date);
309 
310 /*
311  * Unescapes a string in-place.
312  *
313  * Edge cases behavior:
314  * - "jackie\" -> "jacky\"
315  * - "chan\\" -> "chan\"
316  */
317 extern size_t git__unescape(char *str);
318 
319 /*
320  * Safely zero-out memory, making sure that the compiler
321  * doesn't optimize away the operation.
322  */
git__memzero(void * data,size_t size)323 GIT_INLINE(void) git__memzero(void *data, size_t size)
324 {
325 #ifdef _MSC_VER
326 	SecureZeroMemory((PVOID)data, size);
327 #else
328 	volatile uint8_t *scan = (volatile uint8_t *)data;
329 
330 	while (size--)
331 		*scan++ = 0x0;
332 #endif
333 }
334 
335 #ifdef GIT_WIN32
336 
git__timer(void)337 GIT_INLINE(double) git__timer(void)
338 {
339 	/* GetTickCount64 returns the number of milliseconds that have
340 	 * elapsed since the system was started. */
341 	return (double) GetTickCount64() / (double) 1000;
342 }
343 
344 #elif __APPLE__
345 
346 #include <mach/mach_time.h>
347 
git__timer(void)348 GIT_INLINE(double) git__timer(void)
349 {
350    uint64_t time = mach_absolute_time();
351    static double scaling_factor = 0;
352 
353    if (scaling_factor == 0) {
354        mach_timebase_info_data_t info;
355        (void)mach_timebase_info(&info);
356        scaling_factor = (double)info.numer / (double)info.denom;
357    }
358 
359    return (double)time * scaling_factor / 1.0E9;
360 }
361 
362 #elif defined(AMIGA)
363 
364 #include <proto/timer.h>
365 
git__timer(void)366 GIT_INLINE(double) git__timer(void)
367 {
368 	struct TimeVal tv;
369 	ITimer->GetUpTime(&tv);
370 	return (double)tv.Seconds + (double)tv.Microseconds / 1.0E6;
371 }
372 
373 #else
374 
375 #include <sys/time.h>
376 
git__timer(void)377 GIT_INLINE(double) git__timer(void)
378 {
379 	struct timespec tp;
380 
381 	if (clock_gettime(CLOCK_MONOTONIC, &tp) == 0) {
382 		return (double) tp.tv_sec + (double) tp.tv_nsec / 1.0E9;
383 	} else {
384 		/* Fall back to using gettimeofday */
385 		struct timeval tv;
386 		struct timezone tz;
387 		gettimeofday(&tv, &tz);
388 		return (double)tv.tv_sec + (double)tv.tv_usec / 1.0E6;
389 	}
390 }
391 
392 #endif
393 
394 extern int git__getenv(git_buf *out, const char *name);
395 
396 extern int git__online_cpus(void);
397 
git__noop(void)398 GIT_INLINE(int) git__noop(void) { return 0; }
399 
400 #include "alloc.h"
401 
402 #endif
403