]> git.ipfire.org Git - thirdparty/git.git/blame - git-compat-util.h
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / git-compat-util.h
CommitLineData
4050c0df
JH
1#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
7bc341e2 4#if __STDC_VERSION__ - 0 < 199901L
5/*
6 * Git is in a testing period for mandatory C99 support in the compiler. If
7 * your compiler is reasonably recent, you can try to enable C99 support (or,
8 * for MSVC, C11 support). If you encounter a problem and can't enable C99
9 * support with your compiler (such as with "-std=gnu99") and don't have access
10 * to one with this support, such as GCC or Clang, you can remove this #if
11 * directive, but please report the details of your system to
12 * git@vger.kernel.org.
13 */
14#error "Required C99 support is in a test phase. Please see git-compat-util.h for more details."
15#endif
16
556702f8
JH
17#ifdef USE_MSVC_CRTDBG
18/*
19 * For these to work they must appear very early in each
20 * file -- before most of the standard header files.
21 */
22#include <stdlib.h>
23#include <crtdbg.h>
24#endif
25
17d3883f
JS
26struct strbuf;
27
28
b97e9116
MW
29#define _FILE_OFFSET_BITS 64
30
89c855ed
EP
31
32/* Derived from Linux "Features Test Macro" header
33 * Convenience macros to test the versions of gcc (or
34 * a compatible compiler).
35 * Use them like this:
36 * #if GIT_GNUC_PREREQ (2,8)
37 * ... code requiring gcc 2.8 or later ...
38 * #endif
39*/
40#if defined(__GNUC__) && defined(__GNUC_MINOR__)
41# define GIT_GNUC_PREREQ(maj, min) \
42 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
43#else
44 #define GIT_GNUC_PREREQ(maj, min) 0
45#endif
46
47
8f1d2e6f 48#ifndef FLEX_ARRAY
8e973991
JH
49/*
50 * See if our compiler is known to support flexible array members.
51 */
deefc2d9
JH
52
53/*
54 * Check vendor specific quirks first, before checking the
55 * __STDC_VERSION__, as vendor compilers can lie and we need to be
56 * able to work them around. Note that by not defining FLEX_ARRAY
57 * here, we can fall back to use the "safer but a bit wasteful" one
58 * later.
59 */
60#if defined(__SUNPRO_C) && (__SUNPRO_C <= 0x580)
8e973991
JH
61#elif defined(__GNUC__)
62# if (__GNUC__ >= 3)
63# define FLEX_ARRAY /* empty */
64# else
65# define FLEX_ARRAY 0 /* older GNU extension */
66# endif
deefc2d9
JH
67#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
68# define FLEX_ARRAY /* empty */
8e973991
JH
69#endif
70
71/*
72 * Otherwise, default to safer but a bit wasteful traditional style
73 */
74#ifndef FLEX_ARRAY
75# define FLEX_ARRAY 1
8f1d2e6f
JH
76#endif
77#endif
78
89c855ed
EP
79
80/*
81 * BUILD_ASSERT_OR_ZERO - assert a build-time dependency, as an expression.
82 * @cond: the compile-time condition which must be true.
83 *
84 * Your compile will fail if the condition isn't true, or can't be evaluated
85 * by the compiler. This can be used in an expression: its value is "0".
86 *
87 * Example:
88 * #define foo_to_char(foo) \
89 * ((char *)(foo) \
90 * + BUILD_ASSERT_OR_ZERO(offsetof(struct foo, string) == 0))
91 */
92#define BUILD_ASSERT_OR_ZERO(cond) \
93 (sizeof(char [1 - 2*!(cond)]) - 1)
94
e2c6f7cd 95#if GIT_GNUC_PREREQ(3, 1)
89c855ed
EP
96 /* &arr[0] degrades to a pointer: a different type from an array */
97# define BARF_UNLESS_AN_ARRAY(arr) \
98 BUILD_ASSERT_OR_ZERO(!__builtin_types_compatible_p(__typeof__(arr), \
99 __typeof__(&(arr)[0])))
e2c6f7cd
CB
100#else
101# define BARF_UNLESS_AN_ARRAY(arr) 0
89c855ed
EP
102#endif
103/*
104 * ARRAY_SIZE - get the number of elements in a visible array
68b69211 105 * @x: the array whose size you want.
89c855ed
EP
106 *
107 * This does not work on pointers, or arrays declared as [], or
108 * function parameters. With correct compiler support, such usage
109 * will cause a build error (see the build_assert_or_zero macro).
110 */
111#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]) + BARF_UNLESS_AN_ARRAY(x))
112
f630cfda 113#define bitsizeof(x) (CHAR_BIT * sizeof(x))
b4f2a6ac 114
c03c8315
EFL
115#define maximum_signed_value_of_type(a) \
116 (INTMAX_MAX >> (bitsizeof(intmax_t) - bitsizeof(a)))
117
1368f650
JN
118#define maximum_unsigned_value_of_type(a) \
119 (UINTMAX_MAX >> (bitsizeof(uintmax_t) - bitsizeof(a)))
120
c03c8315
EFL
121/*
122 * Signed integer overflow is undefined in C, so here's a helper macro
123 * to detect if the sum of two integers will overflow.
124 *
125 * Requires: a >= 0, typeof(a) equals typeof(b)
126 */
127#define signed_add_overflows(a, b) \
128 ((b) > maximum_signed_value_of_type(a) - (a))
129
1368f650
JN
130#define unsigned_add_overflows(a, b) \
131 ((b) > maximum_unsigned_value_of_type(a) - (a))
132
320d0b49
JK
133/*
134 * Returns true if the multiplication of "a" and "b" will
135 * overflow. The types of "a" and "b" must match and must be unsigned.
136 * Note that this macro evaluates "a" twice!
137 */
138#define unsigned_mult_overflows(a, b) \
139 ((a) && (b) > maximum_unsigned_value_of_type(a) / (a))
140
e2ffeae3
JS
141/*
142 * Returns true if the left shift of "a" by "shift" bits will
143 * overflow. The type of "a" must be unsigned.
144 */
145#define unsigned_left_shift_overflows(a, shift) \
146 ((shift) < bitsizeof(a) && \
147 (a) > maximum_unsigned_value_of_type(a) >> (shift))
148
8723f216
NP
149#ifdef __GNUC__
150#define TYPEOF(x) (__typeof__(x))
151#else
152#define TYPEOF(x)
153#endif
154
f630cfda 155#define MSB(x, bits) ((x) & TYPEOF(x)(~0ULL << (bitsizeof(x) - (bits))))
db7244bd 156#define HAS_MULTI_BITS(i) ((i) & ((i) - 1)) /* checks if an integer has more than 1 bit set */
8723f216 157
98cb6f30
PH
158#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
159
cf606e3d
AW
160/* Approximation of the length of the decimal representation of this type. */
161#define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1)
162
9e12400d
CMAB
163#ifdef __MINGW64__
164#define _POSIX_C_SOURCE 1
165#elif defined(__sun__)
4cb18a49
BC
166 /*
167 * On Solaris, when _XOPEN_EXTENDED is set, its header file
168 * forces the programs to be XPG4v2, defeating any _XOPEN_SOURCE
169 * setting to say we are XPG5 or XPG6. Also on Solaris,
170 * XPG6 programs must be compiled with a c99 compiler, while
171 * non XPG6 programs must be compiled with a pre-c99 compiler.
172 */
173# if __STDC_VERSION__ - 0 >= 199901L
174# define _XOPEN_SOURCE 600
175# else
176# define _XOPEN_SOURCE 500
177# endif
6555b196 178#elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && \
6c109904 179 !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) && \
3a0a3a89
RJ
180 !defined(__TANDEM) && !defined(__QNX__) && !defined(__MirBSD__) && \
181 !defined(__CYGWIN__)
85023577
JH
182#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
183#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
c902c9a6 184#endif
fb952206
JR
185#define _ALL_SOURCE 1
186#define _GNU_SOURCE 1
187#define _BSD_SOURCE 1
f978a99f 188#define _DEFAULT_SOURCE 1
9a695fbf 189#define _NETBSD_SOURCE 1
9398b859 190#define _SGI_SOURCE 1
85023577 191
9b240347 192#if defined(__GNUC__)
9ff7eb8c
ÆAB
193#define UNUSED __attribute__((unused)) \
194 __attribute__((deprecated ("parameter declared as UNUSED")))
9b240347 195#else
5cf88fd8 196#define UNUSED
9b240347
JK
197#endif
198
380395d0 199#if defined(WIN32) && !defined(__CYGWIN__) /* Both MinGW and MSVC */
3571e78a 200# if !defined(_WIN32_WINNT)
2939a1f7 201# define _WIN32_WINNT 0x0600
41f29991 202# endif
435bdf8c
MSO
203#define WIN32_LEAN_AND_MEAN /* stops windows.h including winsock.h */
204#include <winsock2.h>
bb390b1f
CMAB
205#ifndef NO_UNIX_SOCKETS
206#include <afunix.h>
207#endif
435bdf8c 208#include <windows.h>
380395d0 209#define GIT_WINDOWS_NATIVE
435bdf8c
MSO
210#endif
211
4050c0df
JH
212#include <unistd.h>
213#include <stdio.h>
214#include <sys/stat.h>
215#include <fcntl.h>
216#include <stddef.h>
217#include <stdlib.h>
218#include <stdarg.h>
219#include <string.h>
b3e103da 220#ifdef HAVE_STRINGS_H
6c109904
JS
221#include <strings.h> /* for strcasecmp() */
222#endif
4050c0df
JH
223#include <errno.h>
224#include <limits.h>
1819ad32 225#include <locale.h>
b2d05e06 226#ifdef NEEDS_SYS_PARAM_H
4050c0df 227#include <sys/param.h>
6ede7205 228#endif
4050c0df
JH
229#include <sys/types.h>
230#include <dirent.h>
85023577
JH
231#include <sys/time.h>
232#include <time.h>
233#include <signal.h>
f4626df5
JS
234#include <assert.h>
235#include <regex.h>
236#include <utime.h>
088d8802 237#include <syslog.h>
2648ccc2
ĐTCD
238#if !defined(NO_POLL_H)
239#include <poll.h>
240#elif !defined(NO_SYS_POLL_H)
fdc12114 241#include <sys/poll.h>
2844923d 242#else
2648ccc2 243/* Pull the compat stuff */
2844923d
MD
244#include <poll.h>
245#endif
9529080d
KM
246#ifdef HAVE_BSD_SYSCTL
247#include <sys/sysctl.h>
248#endif
2f0aaaf9 249
9fd512c8
ÆAB
250/* Used by compat/win32/path-utils.h, and more */
251static inline int is_xplatform_dir_sep(int c)
252{
253 return c == '/' || c == '\\';
254}
255
496f2569 256#if defined(__CYGWIN__)
1cadad6f 257#include "compat/win32/path-utils.h"
496f2569 258#endif
cfc755d3
VR
259#if defined(__MINGW32__)
260/* pull in Windows compatibility stuff */
1cadad6f 261#include "compat/win32/path-utils.h"
cfc755d3
VR
262#include "compat/mingw.h"
263#elif defined(_MSC_VER)
22c3634c 264#include "compat/win32/path-utils.h"
cfc755d3
VR
265#include "compat/msvc.h"
266#else
1e8fef60 267#include <sys/utsname.h>
f4626df5 268#include <sys/wait.h>
ebae9ff9 269#include <sys/resource.h>
85023577 270#include <sys/socket.h>
80bbe72b 271#include <sys/ioctl.h>
435a2535 272#include <sys/statvfs.h>
eb80042c 273#include <termios.h>
2600973f 274#ifndef NO_SYS_SELECT_H
80bbe72b 275#include <sys/select.h>
2600973f 276#endif
85023577
JH
277#include <netinet/in.h>
278#include <netinet/tcp.h>
279#include <arpa/inet.h>
280#include <netdb.h>
281#include <pwd.h>
e2770979 282#include <sys/un.h>
2844923d 283#ifndef NO_INTTYPES_H
007e2ba6 284#include <inttypes.h>
2844923d
MD
285#else
286#include <stdint.h>
287#endif
05cd988d 288#ifdef HAVE_ARC4RANDOM_LIBBSD
289#include <bsd/stdlib.h>
290#endif
291#ifdef HAVE_GETRANDOM
292#include <sys/random.h>
293#endif
6c109904
JS
294#ifdef NO_INTPTR_T
295/*
c70e1b04 296 * On I16LP32, ILP32 and LP64 "long" is the safe bet, however
6c109904
JS
297 * on LLP86, IL33LLP64 and P64 it needs to be "long long",
298 * while on IP16 and IP16L32 it is "int" (resp. "short")
299 * Size needs to match (or exceed) 'sizeof(void *)'.
300 * We can't take "long long" here as not everybody has it.
301 */
302typedef long intptr_t;
303typedef unsigned long uintptr_t;
304#endif
fb952206 305#undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */
85023577 306#include <grp.h>
fb952206 307#define _ALL_SOURCE 1
41b20017 308#endif
85023577 309
76759c7d
TB
310/* used on Mac OS X */
311#ifdef PRECOMPOSE_UNICODE
312#include "compat/precompose_utf8.h"
313#else
5c327502 314static inline const char *precompose_argv_prefix(int argc, const char **argv, const char *prefix)
15b52a44 315{
5c327502 316 return prefix;
15b52a44 317}
5020774a
TB
318static inline const char *precompose_string_if_needed(const char *in)
319{
320 return in;
321}
322
fdf72966 323#define probe_utf8_pathname_composition()
76759c7d
TB
324#endif
325
0539ecfd
JS
326#ifdef MKDIR_WO_TRAILING_SLASH
327#define mkdir(a,b) compat_mkdir_wo_trailing_slash((a),(b))
55454427 328int compat_mkdir_wo_trailing_slash(const char*, mode_t);
0539ecfd
JS
329#endif
330
7f9e848c
JS
331#ifdef NO_STRUCT_ITIMERVAL
332struct itimerval {
333 struct timeval it_interval;
334 struct timeval it_value;
981ff520 335};
7f9e848c
JS
336#endif
337
338#ifdef NO_SETITIMER
15b52a44 339static inline int setitimer(int which, const struct itimerval *value, struct itimerval *newvalue) {
14639a47 340 return 0; /* pretend success */
15b52a44 341}
7f9e848c
JS
342#endif
343
e1c06886
DA
344#ifndef NO_LIBGEN_H
345#include <libgen.h>
346#else
347#define basename gitbasename
55454427 348char *gitbasename(char *);
824682ab 349#define dirname gitdirname
55454427 350char *gitdirname(char *);
e1c06886
DA
351#endif
352
85023577
JH
353#ifndef NO_ICONV
354#include <iconv.h>
355#endif
4050c0df 356
684ec6c6 357#ifndef NO_OPENSSL
88c03eb5 358#ifdef __APPLE__
b195aa00 359#define __AVAILABILITY_MACROS_USES_AVAILABILITY 0
88c03eb5
KM
360#include <AvailabilityMacros.h>
361#undef DEPRECATED_ATTRIBUTE
362#define DEPRECATED_ATTRIBUTE
363#undef __AVAILABILITY_MACROS_USES_AVAILABILITY
364#endif
684ec6c6
RS
365#include <openssl/ssl.h>
366#include <openssl/err.h>
367#endif
368
9806f5a7
NTND
369#ifdef HAVE_SYSINFO
370# include <sys/sysinfo.h>
371#endif
372
3b130ade
DM
373/* On most systems <netdb.h> would have given us this, but
374 * not on some systems (e.g. z/OS).
375 */
376#ifndef NI_MAXHOST
377#define NI_MAXHOST 1025
378#endif
379
380#ifndef NI_MAXSERV
381#define NI_MAXSERV 32
382#endif
383
d0c2449f
JH
384/* On most systems <limits.h> would have given us this, but
385 * not on some systems (e.g. GNU/Hurd).
386 */
387#ifndef PATH_MAX
388#define PATH_MAX 4096
389#endif
390
28f4aee3
JS
391typedef uintmax_t timestamp_t;
392#define PRItime PRIuMAX
393#define parse_timestamp strtoumax
394#define TIME_MAX UINTMAX_MAX
2e09c012 395#define TIME_MIN 0
1aeb7e75 396
80ba074f
JS
397#ifndef PATH_SEP
398#define PATH_SEP ':'
399#endif
400
cb6a22c0
CW
401#ifdef HAVE_PATHS_H
402#include <paths.h>
403#endif
404#ifndef _PATH_DEFPATH
405#define _PATH_DEFPATH "/usr/local/bin:/usr/bin:/bin"
406#endif
407
70fc5793 408#ifndef platform_core_config
5cf88fd8
ÆAB
409static inline int noop_core_config(const char *var UNUSED,
410 const char *value UNUSED,
411 void *cb UNUSED)
70fc5793
JS
412{
413 return 0;
414}
415#define platform_core_config noop_core_config
416#endif
417
684dd4c2
MT
418int lstat_cache_aware_rmdir(const char *path);
419#if !defined(__MINGW32__) && !defined(_MSC_VER)
420#define rmdir lstat_cache_aware_rmdir
421#endif
422
25fe217b 423#ifndef has_dos_drive_prefix
bf728346
RS
424static inline int git_has_dos_drive_prefix(const char *path)
425{
426 return 0;
427}
428#define has_dos_drive_prefix git_has_dos_drive_prefix
25fe217b
JS
429#endif
430
2f36eed9
JS
431#ifndef skip_dos_drive_prefix
432static inline int git_skip_dos_drive_prefix(char **path)
433{
434 return 0;
435}
436#define skip_dos_drive_prefix git_skip_dos_drive_prefix
437#endif
438
bf728346
RS
439static inline int git_is_dir_sep(int c)
440{
441 return c == '/';
442}
9fd512c8 443#ifndef is_dir_sep
bf728346 444#define is_dir_sep git_is_dir_sep
c2369bdf
CZ
445#endif
446
bf728346
RS
447#ifndef offset_1st_component
448static inline int git_offset_1st_component(const char *path)
449{
450 return is_dir_sep(path[0]);
451}
452#define offset_1st_component git_offset_1st_component
25fe217b
JS
453#endif
454
d2c84dad
JS
455#ifndef is_valid_path
456#define is_valid_path(path) 1
457#endif
458
bdc77d1d 459#ifndef is_path_owned_by_current_user
ae9abbb6
CMAB
460
461#ifdef __TANDEM
462#define ROOT_UID 65535
463#else
464#define ROOT_UID 0
465#endif
466
467/*
468 * Do not use this function when
469 * (1) geteuid() did not say we are running as 'root', or
470 * (2) using this function will compromise the system.
471 *
472 * PORTABILITY WARNING:
473 * This code assumes uid_t is unsigned because that is what sudo does.
474 * If your uid_t type is signed and all your ids are positive then it
475 * should all work fine.
476 * If your version of sudo uses negative values for uid_t or it is
477 * buggy and return an overflowed value in SUDO_UID, then git might
478 * fail to grant access to your repository properly or even mistakenly
479 * grant access to someone else.
480 * In the unlikely scenario this happened to you, and that is how you
481 * got to this message, we would like to know about it; so sent us an
482 * email to git@vger.kernel.org indicating which platform you are
483 * using and which version of sudo, so we can improve this logic and
484 * maybe provide you with a patch that would prevent this issue again
485 * in the future.
486 */
487static inline void extract_id_from_env(const char *env, uid_t *id)
488{
489 const char *real_uid = getenv(env);
490
491 /* discard anything empty to avoid a more complex check below */
492 if (real_uid && *real_uid) {
493 char *endptr = NULL;
494 unsigned long env_id;
495
496 errno = 0;
497 /* silent overflow errors could trigger a bug here */
498 env_id = strtoul(real_uid, &endptr, 10);
499 if (!*endptr && !errno)
500 *id = env_id;
501 }
502}
503
776515ef 504static inline int is_path_owned_by_current_uid(const char *path,
5cf88fd8 505 struct strbuf *report UNUSED)
bdc77d1d
JS
506{
507 struct stat st;
ae9abbb6
CMAB
508 uid_t euid;
509
bdc77d1d
JS
510 if (lstat(path, &st))
511 return 0;
ae9abbb6
CMAB
512
513 euid = geteuid();
514 if (euid == ROOT_UID)
6b11e3d5
CMAB
515 {
516 if (st.st_uid == ROOT_UID)
517 return 1;
518 else
519 extract_id_from_env("SUDO_UID", &euid);
520 }
ae9abbb6
CMAB
521
522 return st.st_uid == euid;
bdc77d1d
JS
523}
524
525#define is_path_owned_by_current_user is_path_owned_by_current_uid
526#endif
527
d1c69255 528#ifndef find_last_dir_sep
bf728346
RS
529static inline char *git_find_last_dir_sep(const char *path)
530{
531 return strrchr(path, '/');
532}
533#define find_last_dir_sep git_find_last_dir_sep
d1c69255
TN
534#endif
535
05ac8582
AK
536#ifndef has_dir_sep
537static inline int git_has_dir_sep(const char *path)
538{
539 return !!strchr(path, '/');
540}
541#define has_dir_sep(path) git_has_dir_sep(path)
542#endif
543
501afcb8
JS
544#ifndef query_user_email
545#define query_user_email() NULL
546#endif
547
1305ef37
RB
548#ifdef __TANDEM
549#include <floss.h(floss_execl,floss_execlp,floss_execv,floss_execvp)>
550#include <floss.h(floss_getpwuid)>
551#ifndef NSIG
552/*
553 * NonStop NSE and NSX do not provide NSIG. SIGGUARDIAN(99) is the highest
554 * known, by detective work using kill -l as a list is all signals
555 * instead of signal.h where it should be.
556 */
557# define NSIG 100
558#endif
559#endif
560
e4ac953b 561#if defined(__HP_cc) && (__HP_cc >= 61000)
b6ab349b
MR
562#define NORETURN __attribute__((noreturn))
563#define NORETURN_PTR
6520c846 564#elif defined(__GNUC__) && !defined(NO_NORETURN)
4050c0df 565#define NORETURN __attribute__((__noreturn__))
18660bc9 566#define NORETURN_PTR __attribute__((__noreturn__))
aba7dea8
RJ
567#elif defined(_MSC_VER)
568#define NORETURN __declspec(noreturn)
569#define NORETURN_PTR
4050c0df
JH
570#else
571#define NORETURN
18660bc9 572#define NORETURN_PTR
8cd7ebc8 573#ifndef __GNUC__
4050c0df
JH
574#ifndef __attribute__
575#define __attribute__(x)
576#endif
577#endif
8cd7ebc8 578#endif
4050c0df 579
9fe3edc4
RJ
580/* The sentinel attribute is valid from gcc version 4.0 */
581#if defined(__GNUC__) && (__GNUC__ >= 4)
582#define LAST_ARG_MUST_BE_NULL __attribute__((sentinel))
1e8697b5
ÆAB
583/* warn_unused_result exists as of gcc 3.4.0, but be lazy and check 4.0 */
584#define RESULT_MUST_BE_USED __attribute__ ((warn_unused_result))
9fe3edc4
RJ
585#else
586#define LAST_ARG_MUST_BE_NULL
1e8697b5 587#define RESULT_MUST_BE_USED
9fe3edc4
RJ
588#endif
589
bbd8eb3e
CMAB
590#define MAYBE_UNUSED __attribute__((__unused__))
591
51ea5519
NP
592#include "compat/bswap.h"
593
cebcab18 594#include "wildmatch.h"
cebcab18 595
9ccc0c08
RS
596struct strbuf;
597
4050c0df 598/* General helper functions */
55454427 599NORETURN void usage(const char *err);
b199d714
DL
600NORETURN void usagef(const char *err, ...) __attribute__((format (printf, 1, 2)));
601NORETURN void die(const char *err, ...) __attribute__((format (printf, 1, 2)));
602NORETURN void die_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
18568ee8 603int die_message(const char *err, ...) __attribute__((format (printf, 1, 2)));
24f6e6d6 604int die_message_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
b199d714
DL
605int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
606int error_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
607void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
608void warning_errno(const char *err, ...) __attribute__((format (printf, 1, 2)));
4050c0df 609
f2be034c
BG
610#ifndef NO_OPENSSL
611#ifdef APPLE_COMMON_CRYPTO
612#include "compat/apple-common-crypto.h"
613#else
614#include <openssl/evp.h>
615#include <openssl/hmac.h>
616#endif /* APPLE_COMMON_CRYPTO */
617#include <openssl/x509v3.h>
618#endif /* NO_OPENSSL */
619
5b52d9f1
CMAB
620#ifdef HAVE_OPENSSL_CSPRNG
621#include <openssl/rand.h>
622#endif
623
e208f9cc
JK
624/*
625 * Let callers be aware of the constant return value; this can help
9798f7e5 626 * gcc with -Wuninitialized analysis. We restrict this trick to gcc, though,
b7ba8587 627 * because other compilers may be confused by this.
e208f9cc 628 */
ff0a80af 629#if defined(__GNUC__)
87fe5df3
JK
630static inline int const_error(void)
631{
632 return -1;
633}
634#define error(...) (error(__VA_ARGS__), const_error())
4df5e918 635#define error_errno(...) (error_errno(__VA_ARGS__), const_error())
e208f9cc
JK
636#endif
637
5710dcce
JK
638typedef void (*report_fn)(const char *, va_list params);
639
640void set_die_routine(NORETURN_PTR report_fn routine);
18568ee8 641report_fn get_die_message_routine(void);
5710dcce
JK
642void set_error_routine(report_fn routine);
643report_fn get_error_routine(void);
644void set_warn_routine(report_fn routine);
645report_fn get_warn_routine(void);
55454427 646void set_die_is_recursing_routine(int (*routine)(void));
39a3f5ea 647
55454427
DL
648int starts_with(const char *str, const char *prefix);
649int istarts_with(const char *str, const char *prefix);
698a68be 650
cf4fff57
JK
651/*
652 * If the string "str" begins with the string found in "prefix", return 1.
653 * The "out" parameter is set to "str + strlen(prefix)" (i.e., to the point in
654 * the string right after the prefix).
655 *
656 * Otherwise, return 0 and leave "out" untouched.
657 *
658 * Examples:
659 *
660 * [extract branch name, fail if not a branch]
661 * if (!skip_prefix(ref, "refs/heads/", &branch)
662 * return -1;
663 *
664 * [skip prefix if present, otherwise use whole string]
665 * skip_prefix(name, "refs/heads/", &name);
666 */
667static inline int skip_prefix(const char *str, const char *prefix,
668 const char **out)
fbca5837 669{
ba399c46 670 do {
cf4fff57
JK
671 if (!*prefix) {
672 *out = str;
673 return 1;
674 }
ba399c46 675 } while (*str++ == *prefix++);
cf4fff57 676 return 0;
fbca5837
MV
677}
678
afaef55e
CC
679/*
680 * If the string "str" is the same as the string in "prefix", then the "arg"
681 * parameter is set to the "def" parameter and 1 is returned.
682 * If the string "str" begins with the string found in "prefix" and then a
683 * "=" sign, then the "arg" parameter is set to "str + strlen(prefix) + 1"
684 * (i.e., to the point in the string right after the prefix and the "=" sign),
685 * and 1 is returned.
686 *
687 * Otherwise, return 0 and leave "arg" untouched.
688 *
689 * When we accept both a "--key" and a "--key=<val>" option, this function
690 * can be used instead of !strcmp(arg, "--key") and then
691 * skip_prefix(arg, "--key=", &arg) to parse such an option.
692 */
693int skip_to_optional_arg_default(const char *str, const char *prefix,
694 const char **arg, const char *def);
695
696static inline int skip_to_optional_arg(const char *str, const char *prefix,
697 const char **arg)
698{
699 return skip_to_optional_arg_default(str, prefix, arg, "");
700}
701
ae989a61
JK
702/*
703 * Like skip_prefix, but promises never to read past "len" bytes of the input
704 * buffer, and returns the remaining number of bytes in "out" via "outlen".
705 */
706static inline int skip_prefix_mem(const char *buf, size_t len,
707 const char *prefix,
708 const char **out, size_t *outlen)
709{
710 size_t prefix_len = strlen(prefix);
711 if (prefix_len <= len && !memcmp(buf, prefix, prefix_len)) {
712 *out = buf + prefix_len;
713 *outlen = len - prefix_len;
714 return 1;
715 }
716 return 0;
717}
718
35480f0b
JK
719/*
720 * If buf ends with suffix, return 1 and subtract the length of the suffix
721 * from *len. Otherwise, return 0 and leave *len untouched.
722 */
723static inline int strip_suffix_mem(const char *buf, size_t *len,
724 const char *suffix)
725{
726 size_t suflen = strlen(suffix);
727 if (*len < suflen || memcmp(buf + (*len - suflen), suffix, suflen))
728 return 0;
729 *len -= suflen;
730 return 1;
731}
732
733/*
734 * If str ends with suffix, return 1 and set *len to the size of the string
735 * without the suffix. Otherwise, return 0 and set *len to the size of the
736 * string.
737 *
738 * Note that we do _not_ NUL-terminate str to the new length.
739 */
740static inline int strip_suffix(const char *str, const char *suffix, size_t *len)
741{
742 *len = strlen(str);
743 return strip_suffix_mem(str, len, suffix);
744}
745
f52a35fd
JK
746static inline int ends_with(const char *str, const char *suffix)
747{
748 size_t len;
749 return strip_suffix(str, suffix, &len);
750}
751
568edcb9
RS
752#define SWAP(a, b) do { \
753 void *_swap_a_ptr = &(a); \
754 void *_swap_b_ptr = &(b); \
755 unsigned char _swap_buffer[sizeof(a)]; \
756 memcpy(_swap_buffer, _swap_a_ptr, sizeof(a)); \
757 memcpy(_swap_a_ptr, _swap_b_ptr, sizeof(a) + \
758 BUILD_ASSERT_OR_ZERO(sizeof(a) == sizeof(b))); \
759 memcpy(_swap_b_ptr, _swap_buffer, sizeof(a)); \
760} while (0)
761
b130a72b 762#if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
4050c0df
JH
763
764#ifndef PROT_READ
765#define PROT_READ 1
766#define PROT_WRITE 2
767#define MAP_PRIVATE 1
4050c0df
JH
768#endif
769
d6779124
SP
770#define mmap git_mmap
771#define munmap git_munmap
55454427
DL
772void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
773int git_munmap(void *start, size_t length);
4050c0df 774
b130a72b
JL
775#else /* NO_MMAP || USE_WIN32_MMAP */
776
777#include <sys/mman.h>
778
779#endif /* NO_MMAP || USE_WIN32_MMAP */
780
781#ifdef NO_MMAP
782
5faaf246 783/* This value must be multiple of (pagesize * 2) */
8c82534d
SP
784#define DEFAULT_PACKED_GIT_WINDOW_SIZE (1 * 1024 * 1024)
785
4050c0df
JH
786#else /* NO_MMAP */
787
5faaf246 788/* This value must be multiple of (pagesize * 2) */
22bac0ea
SP
789#define DEFAULT_PACKED_GIT_WINDOW_SIZE \
790 (sizeof(void*) >= 8 \
791 ? 1 * 1024 * 1024 * 1024 \
792 : 32 * 1024 * 1024)
4050c0df
JH
793
794#endif /* NO_MMAP */
795
fcf3a21a
GV
796#ifndef MAP_FAILED
797#define MAP_FAILED ((void *)-1)
798#endif
799
fdb2a2a6
JH
800#ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
801#define on_disk_bytes(st) ((st).st_size)
802#else
803#define on_disk_bytes(st) ((st).st_blocks * 512)
804#endif
805
d543d9c0
DM
806#ifdef NEEDS_MODE_TRANSLATION
807#undef S_IFMT
808#undef S_IFREG
809#undef S_IFDIR
810#undef S_IFLNK
811#undef S_IFBLK
812#undef S_IFCHR
813#undef S_IFIFO
814#undef S_IFSOCK
815#define S_IFMT 0170000
816#define S_IFREG 0100000
817#define S_IFDIR 0040000
818#define S_IFLNK 0120000
819#define S_IFBLK 0060000
820#define S_IFCHR 0020000
821#define S_IFIFO 0010000
822#define S_IFSOCK 0140000
823#ifdef stat
824#undef stat
825#endif
826#define stat(path, buf) git_stat(path, buf)
55454427 827int git_stat(const char *, struct stat *);
d543d9c0
DM
828#ifdef fstat
829#undef fstat
830#endif
831#define fstat(fd, buf) git_fstat(fd, buf)
55454427 832int git_fstat(int, struct stat *);
d543d9c0
DM
833#ifdef lstat
834#undef lstat
835#endif
836#define lstat(path, buf) git_lstat(path, buf)
55454427 837int git_lstat(const char *, struct stat *);
d543d9c0
DM
838#endif
839
22bac0ea 840#define DEFAULT_PACKED_GIT_LIMIT \
be4ca290 841 ((1024L * 1024L) * (size_t)(sizeof(void*) >= 8 ? (32 * 1024L * 1024L) : 256))
8c82534d 842
6900679c
SH
843#ifdef NO_PREAD
844#define pread git_pread
55454427 845ssize_t git_pread(int fd, void *buf, size_t count, off_t offset);
6900679c 846#endif
14086b0a
SP
847/*
848 * Forward decl that will remind us if its twin in cache.h changes.
849 * This function is used in compat/pread.c. But we can't include
850 * cache.h there.
851 */
55454427 852ssize_t read_in_full(int fd, void *buf, size_t count);
6900679c 853
4050c0df
JH
854#ifdef NO_SETENV
855#define setenv gitsetenv
55454427 856int gitsetenv(const char *, const char *, int);
4050c0df
JH
857#endif
858
ca5bb5d5
SP
859#ifdef NO_MKDTEMP
860#define mkdtemp gitmkdtemp
55454427 861char *gitmkdtemp(char *);
ca5bb5d5 862#endif
0620b39b 863
731043fd
JR
864#ifdef NO_UNSETENV
865#define unsetenv gitunsetenv
a38989bd 866int gitunsetenv(const char *);
731043fd
JR
867#endif
868
4050c0df
JH
869#ifdef NO_STRCASESTR
870#define strcasestr gitstrcasestr
55454427 871char *gitstrcasestr(const char *haystack, const char *needle);
4050c0df
JH
872#endif
873
817151e6
PE
874#ifdef NO_STRLCPY
875#define strlcpy gitstrlcpy
55454427 876size_t gitstrlcpy(char *, const char *, size_t);
817151e6
PE
877#endif
878
bc6b4f52
JR
879#ifdef NO_STRTOUMAX
880#define strtoumax gitstrtoumax
55454427 881uintmax_t gitstrtoumax(const char *, char **, int);
97000ba6 882#define strtoimax gitstrtoimax
55454427 883intmax_t gitstrtoimax(const char *, char **, int);
bc6b4f52
JR
884#endif
885
fa0c87c3
AR
886#ifdef NO_HSTRERROR
887#define hstrerror githstrerror
55454427 888const char *githstrerror(int herror);
fa0c87c3
AR
889#endif
890
b21b9f1d
RS
891#ifdef NO_MEMMEM
892#define memmem gitmemmem
893void *gitmemmem(const void *haystack, size_t haystacklen,
ec36c42a 894 const void *needle, size_t needlelen);
b21b9f1d
RS
895#endif
896
ca2baa3f
RS
897#ifdef OVERRIDE_STRDUP
898#ifdef strdup
899#undef strdup
900#endif
901#define strdup gitstrdup
902char *gitstrdup(const char *s);
903#endif
b21b9f1d 904
40036bed
MK
905#ifdef NO_GETPAGESIZE
906#define getpagesize() sysconf(_SC_PAGESIZE)
907#endif
908
05d1ed61
BW
909#ifndef O_CLOEXEC
910#define O_CLOEXEC 0
911#endif
912
cba22528 913#ifdef FREAD_READS_DIRECTORIES
b0a642ac
RJ
914# if !defined(SUPPRESS_FOPEN_REDEFINITION)
915# ifdef fopen
916# undef fopen
917# endif
918# define fopen(a,b) git_fopen(a,b)
919# endif
55454427 920FILE *git_fopen(const char*, const char*);
cba22528
BC
921#endif
922
c4582f93 923#ifdef SNPRINTF_RETURNS_BOGUS
ab03803c
BS
924#ifdef snprintf
925#undef snprintf
926#endif
c4582f93 927#define snprintf git_snprintf
b199d714 928int git_snprintf(char *str, size_t maxsize,
ad6dad09 929 const char *format, ...);
ab03803c
BS
930#ifdef vsnprintf
931#undef vsnprintf
932#endif
c4582f93 933#define vsnprintf git_vsnprintf
55454427 934int git_vsnprintf(char *str, size_t maxsize,
ad6dad09 935 const char *format, va_list ap);
c4582f93
MR
936#endif
937
2b081012
JK
938#ifdef OPEN_RETURNS_EINTR
939#undef open
940#define open git_open_with_retry
941int git_open_with_retry(const char *path, int flag, ...);
942#endif
943
726c8ef5
JS
944#ifdef __GLIBC_PREREQ
945#if __GLIBC_PREREQ(2, 1)
946#define HAVE_STRCHRNUL
947#endif
948#endif
949
950#ifndef HAVE_STRCHRNUL
659c69cf 951#define strchrnul gitstrchrnul
9e79f00f
AE
952static inline char *gitstrchrnul(const char *s, int c)
953{
954 while (*s && *s != c)
955 s++;
956 return (char *)s;
957}
659c69cf
RS
958#endif
959
da523cc5
MP
960#ifdef NO_INET_PTON
961int inet_pton(int af, const char *src, void *dst);
962#endif
963
964#ifdef NO_INET_NTOP
965const char *inet_ntop(int af, const void *src, char *dst, size_t size);
966#endif
967
0f4b6db3
EB
968#ifdef NO_PTHREADS
969#define atexit git_atexit
55454427 970int git_atexit(void (*handler)(void));
0f4b6db3
EB
971#endif
972
320d0b49
JK
973static inline size_t st_add(size_t a, size_t b)
974{
975 if (unsigned_add_overflows(a, b))
976 die("size_t overflow: %"PRIuMAX" + %"PRIuMAX,
977 (uintmax_t)a, (uintmax_t)b);
978 return a + b;
979}
d616fbf2
ES
980#define st_add3(a,b,c) st_add(st_add((a),(b)),(c))
981#define st_add4(a,b,c,d) st_add(st_add3((a),(b),(c)),(d))
320d0b49
JK
982
983static inline size_t st_mult(size_t a, size_t b)
984{
985 if (unsigned_mult_overflows(a, b))
986 die("size_t overflow: %"PRIuMAX" * %"PRIuMAX,
987 (uintmax_t)a, (uintmax_t)b);
988 return a * b;
989}
990
991static inline size_t st_sub(size_t a, size_t b)
992{
993 if (a < b)
994 die("size_t underflow: %"PRIuMAX" - %"PRIuMAX,
995 (uintmax_t)a, (uintmax_t)b);
996 return a - b;
997}
a9a74636 998
e2ffeae3
JS
999static inline size_t st_left_shift(size_t a, unsigned shift)
1000{
1001 if (unsigned_left_shift_overflows(a, shift))
1002 die("size_t overflow: %"PRIuMAX" << %u",
1003 (uintmax_t)a, shift);
1004 return a << shift;
1005}
1006
1007static inline unsigned long cast_size_t_to_ulong(size_t a)
1008{
1009 if (a != (unsigned long)a)
1010 die("object too large to read on this platform: %"
1011 PRIuMAX" is cut off to %lu",
1012 (uintmax_t)a, (unsigned long)a);
1013 return (unsigned long)a;
1014}
1015
ec4f39b2
JK
1016/*
1017 * Limit size of IO chunks, because huge chunks only cause pain. OS X
1018 * 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in
1019 * the absence of bugs, large chunks can result in bad latencies when
1020 * you decide to kill the process.
1021 *
1022 * We pick 8 MiB as our default, but if the platform defines SSIZE_MAX
1023 * that is smaller than that, clip it to SSIZE_MAX, as a call to
1024 * read(2) or write(2) larger than that is allowed to fail. As the last
1025 * resort, we allow a port to pass via CFLAGS e.g. "-DMAX_IO_SIZE=value"
1026 * to override this, if the definition of SSIZE_MAX given by the platform
1027 * is broken.
1028 */
1029#ifndef MAX_IO_SIZE
1030# define MAX_IO_SIZE_DEFAULT (8*1024*1024)
1031# if defined(SSIZE_MAX) && (SSIZE_MAX < MAX_IO_SIZE_DEFAULT)
1032# define MAX_IO_SIZE SSIZE_MAX
1033# else
1034# define MAX_IO_SIZE MAX_IO_SIZE_DEFAULT
1035# endif
1036#endif
1037
61f76a36
KS
1038#ifdef HAVE_ALLOCA_H
1039# include <alloca.h>
1040# define xalloca(size) (alloca(size))
1041# define xalloca_free(p) do {} while (0)
1042#else
1043# define xalloca(size) (xmalloc(size))
1044# define xalloca_free(p) (free(p))
1045#endif
55454427
DL
1046char *xstrdup(const char *str);
1047void *xmalloc(size_t size);
1048void *xmallocz(size_t size);
1049void *xmallocz_gently(size_t size);
1050void *xmemdupz(const void *data, size_t len);
1051char *xstrndup(const char *str, size_t len);
1052void *xrealloc(void *ptr, size_t size);
1053void *xcalloc(size_t nmemb, size_t size);
3540c71e 1054void xsetenv(const char *name, const char *value, int overwrite);
55454427 1055void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
dc059294 1056const char *mmap_os_err(void);
55454427 1057void *xmmap_gently(void *start, size_t length, int prot, int flags, int fd, off_t offset);
b199d714 1058int xopen(const char *path, int flags, ...);
55454427
DL
1059ssize_t xread(int fd, void *buf, size_t len);
1060ssize_t xwrite(int fd, const void *buf, size_t len);
1061ssize_t xpread(int fd, void *buf, size_t len, off_t offset);
1062int xdup(int fd);
1063FILE *xfopen(const char *path, const char *mode);
1064FILE *xfdopen(int fd, const char *mode);
1065int xmkstemp(char *temp_filename);
1066int xmkstemp_mode(char *temp_filename, int mode);
1067char *xgetcwd(void);
1068FILE *fopen_for_writing(const char *path);
1069FILE *fopen_or_warn(const char *path, const char *mode);
f21a47b2 1070
14570dc6 1071/*
1072 * Like strncmp, but only return zero if s is NUL-terminated and exactly len
1073 * characters long. If it is not, consider it greater than t.
1074 */
1075int xstrncmpz(const char *s, const char *t, size_t len);
1076
481df65f
ÆAB
1077/*
1078 * FREE_AND_NULL(ptr) is like free(ptr) followed by ptr = NULL. Note
1079 * that ptr is used twice, so don't pass e.g. ptr++.
1080 */
1081#define FREE_AND_NULL(p) do { free(p); (p) = NULL; } while (0)
1082
e7792a74 1083#define ALLOC_ARRAY(x, alloc) (x) = xmalloc(st_mult(sizeof(*(x)), (alloc)))
f1121499 1084#define CALLOC_ARRAY(x, alloc) (x) = xcalloc((alloc), sizeof(*(x)))
e7792a74 1085#define REALLOC_ARRAY(x, alloc) (x) = xrealloc((x), st_mult(sizeof(*(x)), (alloc)))
3ac22f82 1086
60566cbb
RS
1087#define COPY_ARRAY(dst, src, n) copy_array((dst), (src), (n), sizeof(*(dst)) + \
1088 BUILD_ASSERT_OR_ZERO(sizeof(*(dst)) == sizeof(*(src))))
1089static inline void copy_array(void *dst, const void *src, size_t n, size_t size)
1090{
1091 if (n)
1092 memcpy(dst, src, st_mult(size, n));
1093}
1094
57839807
RS
1095#define MOVE_ARRAY(dst, src, n) move_array((dst), (src), (n), sizeof(*(dst)) + \
1096 BUILD_ASSERT_OR_ZERO(sizeof(*(dst)) == sizeof(*(src))))
1097static inline void move_array(void *dst, const void *src, size_t n, size_t size)
1098{
1099 if (n)
1100 memmove(dst, src, st_mult(size, n));
1101}
1102
36895391
JK
1103/*
1104 * These functions help you allocate structs with flex arrays, and copy
1105 * the data directly into the array. For example, if you had:
1106 *
1107 * struct foo {
1108 * int bar;
1109 * char name[FLEX_ARRAY];
1110 * };
1111 *
1112 * you can do:
1113 *
1114 * struct foo *f;
1115 * FLEX_ALLOC_MEM(f, name, src, len);
1116 *
1117 * to allocate a "foo" with the contents of "src" in the "name" field.
1118 * The resulting struct is automatically zero'd, and the flex-array field
1119 * is NUL-terminated (whether the incoming src buffer was or not).
1120 *
1121 * The FLEXPTR_* variants operate on structs that don't use flex-arrays,
1122 * but do want to store a pointer to some extra data in the same allocated
1123 * block. For example, if you have:
1124 *
1125 * struct foo {
1126 * char *name;
1127 * int bar;
1128 * };
1129 *
1130 * you can do:
1131 *
1132 * struct foo *f;
0bb1519f 1133 * FLEXPTR_ALLOC_STR(f, name, src);
36895391
JK
1134 *
1135 * and "name" will point to a block of memory after the struct, which will be
1136 * freed along with the struct (but the pointer can be repointed anywhere).
1137 *
1138 * The *_STR variants accept a string parameter rather than a ptr/len
1139 * combination.
1140 *
1141 * Note that these macros will evaluate the first parameter multiple
1142 * times, and it must be assignable as an lvalue.
1143 */
1144#define FLEX_ALLOC_MEM(x, flexname, buf, len) do { \
e9451782
RS
1145 size_t flex_array_len_ = (len); \
1146 (x) = xcalloc(1, st_add3(sizeof(*(x)), flex_array_len_, 1)); \
1147 memcpy((void *)(x)->flexname, (buf), flex_array_len_); \
36895391
JK
1148} while (0)
1149#define FLEXPTR_ALLOC_MEM(x, ptrname, buf, len) do { \
0ac52a38
RS
1150 size_t flex_array_len_ = (len); \
1151 (x) = xcalloc(1, st_add3(sizeof(*(x)), flex_array_len_, 1)); \
1152 memcpy((x) + 1, (buf), flex_array_len_); \
36895391
JK
1153 (x)->ptrname = (void *)((x)+1); \
1154} while(0)
1155#define FLEX_ALLOC_STR(x, flexname, str) \
1156 FLEX_ALLOC_MEM((x), flexname, (str), strlen(str))
1157#define FLEXPTR_ALLOC_STR(x, ptrname, str) \
1158 FLEXPTR_ALLOC_MEM((x), ptrname, (str), strlen(str))
1159
d64ea0f8
JK
1160static inline char *xstrdup_or_null(const char *str)
1161{
1162 return str ? xstrdup(str) : NULL;
1163}
1164
dc49cd76
SP
1165static inline size_t xsize_t(off_t len)
1166{
aafa5df0 1167 if (len < 0 || (uintmax_t) len > SIZE_MAX)
46be82df 1168 die("Cannot handle files this big");
aafa5df0 1169 return (size_t) len;
dc49cd76
SP
1170}
1171
7b03c89e 1172__attribute__((format (printf, 3, 4)))
b199d714 1173int xsnprintf(char *dst, size_t max, const char *fmt, ...);
7b03c89e 1174
da25bdb7
RS
1175#ifndef HOST_NAME_MAX
1176#define HOST_NAME_MAX 256
1177#endif
1178
55454427 1179int xgethostname(char *buf, size_t len);
5781a9a2 1180
f1589d10 1181/* in ctype.c, for kwset users */
189c860c 1182extern const unsigned char tolower_trans_tbl[256];
f1589d10 1183
4050c0df 1184/* Sane ctype - no locale, and works with signed chars */
c2e9364a 1185#undef isascii
4050c0df
JH
1186#undef isspace
1187#undef isdigit
1188#undef isalpha
1189#undef isalnum
0fcec2ce 1190#undef isprint
43ccdf56
NK
1191#undef islower
1192#undef isupper
4050c0df
JH
1193#undef tolower
1194#undef toupper
1c149ab2
NTND
1195#undef iscntrl
1196#undef ispunct
1197#undef isxdigit
2adf7247 1198
ca5ab7d1 1199extern const unsigned char sane_ctype[256];
4050c0df
JH
1200#define GIT_SPACE 0x01
1201#define GIT_DIGIT 0x02
1202#define GIT_ALPHA 0x04
8cc32992 1203#define GIT_GLOB_SPECIAL 0x08
f9b7cce6 1204#define GIT_REGEX_SPECIAL 0x10
2f6c9760 1205#define GIT_PATHSPEC_MAGIC 0x20
1c149ab2
NTND
1206#define GIT_CNTRL 0x40
1207#define GIT_PUNCT 0x80
4050c0df 1208#define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
c2e9364a 1209#define isascii(x) (((x) & ~0x7f) == 0)
4050c0df
JH
1210#define isspace(x) sane_istest(x,GIT_SPACE)
1211#define isdigit(x) sane_istest(x,GIT_DIGIT)
1212#define isalpha(x) sane_istest(x,GIT_ALPHA)
1213#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
0fcec2ce 1214#define isprint(x) ((x) >= 0x20 && (x) <= 0x7e)
43ccdf56
NK
1215#define islower(x) sane_iscase(x, 1)
1216#define isupper(x) sane_iscase(x, 0)
8cc32992 1217#define is_glob_special(x) sane_istest(x,GIT_GLOB_SPECIAL)
f9b7cce6 1218#define is_regex_special(x) sane_istest(x,GIT_GLOB_SPECIAL | GIT_REGEX_SPECIAL)
1c149ab2
NTND
1219#define iscntrl(x) (sane_istest(x,GIT_CNTRL))
1220#define ispunct(x) sane_istest(x, GIT_PUNCT | GIT_REGEX_SPECIAL | \
1221 GIT_GLOB_SPECIAL | GIT_PATHSPEC_MAGIC)
50a71776 1222#define isxdigit(x) (hexval_table[(unsigned char)(x)] != -1)
4050c0df
JH
1223#define tolower(x) sane_case((unsigned char)(x), 0x20)
1224#define toupper(x) sane_case((unsigned char)(x), 0)
2f6c9760 1225#define is_pathspec_magic(x) sane_istest(x,GIT_PATHSPEC_MAGIC)
4050c0df
JH
1226
1227static inline int sane_case(int x, int high)
1228{
1229 if (sane_istest(x, GIT_ALPHA))
1230 x = (x & ~0x20) | high;
1231 return x;
1232}
1233
43ccdf56
NK
1234static inline int sane_iscase(int x, int is_lower)
1235{
1236 if (!sane_istest(x, GIT_ALPHA))
1237 return 0;
1238
1239 if (is_lower)
1240 return (x & 0x20) != 0;
1241 else
1242 return (x & 0x20) == 0;
1243}
1244
41a80924
JK
1245/*
1246 * Like skip_prefix, but compare case-insensitively. Note that the comparison
1247 * is done via tolower(), so it is strictly ASCII (no multi-byte characters or
1248 * locale-specific conversions).
1249 */
1250static inline int skip_iprefix(const char *str, const char *prefix,
1251 const char **out)
1252{
1253 do {
1254 if (!*prefix) {
1255 *out = str;
1256 return 1;
1257 }
1258 } while (tolower(*str++) == tolower(*prefix++));
1259 return 0;
1260}
1261
6aead43d
JM
1262static inline int strtoul_ui(char const *s, int base, unsigned int *result)
1263{
1264 unsigned long ul;
1265 char *p;
1266
1267 errno = 0;
e6f2599c
MM
1268 /* negative values would be accepted by strtoul */
1269 if (strchr(s, '-'))
1270 return -1;
6aead43d
JM
1271 ul = strtoul(s, &p, base);
1272 if (errno || *p || p == s || (unsigned int) ul != ul)
1273 return -1;
1274 *result = ul;
1275 return 0;
1276}
1277
7791ecbc
JH
1278static inline int strtol_i(char const *s, int base, int *result)
1279{
1280 long ul;
1281 char *p;
1282
1283 errno = 0;
1284 ul = strtol(s, &p, base);
1285 if (errno || *p || p == s || (int) ul != ul)
1286 return -1;
1287 *result = ul;
1288 return 0;
1289}
1290
97fff610
JS
1291void git_stable_qsort(void *base, size_t nmemb, size_t size,
1292 int(*compar)(const void *, const void *));
43fe901b 1293#ifdef INTERNAL_QSORT
97fff610 1294#define qsort git_stable_qsort
43fe901b
BD
1295#endif
1296
dbc540c7
RS
1297#define QSORT(base, n, compar) sane_qsort((base), (n), sizeof(*(base)), compar)
1298static inline void sane_qsort(void *base, size_t nmemb, size_t size,
1299 int(*compar)(const void *, const void *))
1300{
1301 if (nmemb > 1)
1302 qsort(base, nmemb, size, compar);
1303}
1304
97fff610
JS
1305#define STABLE_QSORT(base, n, compar) \
1306 git_stable_qsort((base), (n), sizeof(*(base)), compar)
1307
04ee8b87
RS
1308#ifndef HAVE_ISO_QSORT_S
1309int git_qsort_s(void *base, size_t nmemb, size_t size,
1310 int (*compar)(const void *, const void *, void *), void *ctx);
1311#define qsort_s git_qsort_s
1312#endif
1313
3ca86994
RS
1314#define QSORT_S(base, n, compar, ctx) do { \
1315 if (qsort_s((base), (n), sizeof(*(base)), compar, ctx)) \
c3c3486b 1316 BUG("qsort_s() failed"); \
3ca86994
RS
1317} while (0)
1318
2f895225
JS
1319#ifndef REG_STARTEND
1320#error "Git requires REG_STARTEND support. Compile with NO_REGEX=NeedsStartEnd"
1321#endif
1322
1323static inline int regexec_buf(const regex_t *preg, const char *buf, size_t size,
1324 size_t nmatch, regmatch_t pmatch[], int eflags)
1325{
1326 assert(nmatch > 0 && pmatch);
1327 pmatch[0].rm_so = 0;
1328 pmatch[0].rm_eo = size;
1329 return regexec(preg, buf, nmatch, pmatch, eflags | REG_STARTEND);
1330}
1331
81a24b52
AR
1332#ifndef DIR_HAS_BSD_GROUP_SEMANTICS
1333# define FORCE_DIR_SET_GID S_ISGID
1334#else
1335# define FORCE_DIR_SET_GID 0
1336#endif
1337
c06ff490
KB
1338#ifdef NO_NSEC
1339#undef USE_NSEC
1340#define ST_CTIME_NSEC(st) 0
1341#define ST_MTIME_NSEC(st) 0
1342#else
c567383b
BG
1343#ifdef USE_ST_TIMESPEC
1344#define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctimespec.tv_nsec))
1345#define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtimespec.tv_nsec))
1346#else
c06ff490
KB
1347#define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctim.tv_nsec))
1348#define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtim.tv_nsec))
1349#endif
c567383b 1350#endif
c06ff490 1351
34779c53
JS
1352#ifdef UNRELIABLE_FSTAT
1353#define fstat_is_reliable() 0
1354#else
1355#define fstat_is_reliable() 1
1356#endif
1357
ab8632ae 1358#ifndef va_copy
26db0f2e
JN
1359/*
1360 * Since an obvious implementation of va_list would be to make it a
1361 * pointer into the stack frame, a simple assignment will work on
1362 * many systems. But let's try to be more portable.
1363 */
1364#ifdef __va_copy
1365#define va_copy(dst, src) __va_copy(dst, src)
1366#else
1367#define va_copy(dst, src) ((dst) = (src))
1368#endif
ab8632ae
JK
1369#endif
1370
746ea4ad
RJ
1371/* usage.c: only to be used for testing BUG() implementation (see test-tool) */
1372extern int BUG_exit_code;
1373
0cc05b04
ÆAB
1374/* usage.c: if bug() is called we should have a BUG_if_bug() afterwards */
1375extern int bug_called_must_BUG;
1376
d8193743
JK
1377__attribute__((format (printf, 3, 4))) NORETURN
1378void BUG_fl(const char *file, int line, const char *fmt, ...);
1379#define BUG(...) BUG_fl(__FILE__, __LINE__, __VA_ARGS__)
0cc05b04
ÆAB
1380__attribute__((format (printf, 3, 4)))
1381void bug_fl(const char *file, int line, const char *fmt, ...);
1382#define bug(...) bug_fl(__FILE__, __LINE__, __VA_ARGS__)
1383#define BUG_if_bug(...) do { \
1384 if (bug_called_must_BUG) \
1385 BUG_fl(__FILE__, __LINE__, __VA_ARGS__); \
1386} while (0)
d8193743 1387
8a94d833 1388#ifndef FSYNC_METHOD_DEFAULT
abf38abe
NS
1389#ifdef __APPLE__
1390#define FSYNC_METHOD_DEFAULT FSYNC_METHOD_WRITEOUT_ONLY
1391#else
1392#define FSYNC_METHOD_DEFAULT FSYNC_METHOD_FSYNC
1393#endif
8a94d833 1394#endif
abf38abe
NS
1395
1396enum fsync_action {
1397 FSYNC_WRITEOUT_ONLY,
1398 FSYNC_HARDWARE_FLUSH
1399};
1400
1401/*
1402 * Issues an fsync against the specified file according to the specified mode.
1403 *
1404 * FSYNC_WRITEOUT_ONLY attempts to use interfaces available on some operating
1405 * systems to flush the OS cache without issuing a flush command to the storage
1406 * controller. If those interfaces are unavailable, the function fails with
1407 * ENOSYS.
1408 *
1409 * FSYNC_HARDWARE_FLUSH does an OS writeout and hardware flush to ensure that
1410 * changes are durable. It is not expected to fail.
1411 */
1412int git_fsync(int fd, enum fsync_action action);
1413
9a498767
NS
1414/*
1415 * Writes out trace statistics for fsync using the trace2 API.
1416 */
1417void trace_git_fsync_stats(void);
1418
fc71db39
AR
1419/*
1420 * Preserves errno, prints a message, but gives no warning for ENOENT.
1054af7d
RS
1421 * Returns 0 on success, which includes trying to unlink an object that does
1422 * not exist.
fc71db39
AR
1423 */
1424int unlink_or_warn(const char *path);
9ccc0c08
RS
1425 /*
1426 * Tries to unlink file. Returns 0 if unlink succeeded
1427 * or the file already didn't exist. Returns -1 and
1428 * appends a message to err suitable for
1429 * 'error("%s", err->buf)' on error.
1430 */
1431int unlink_or_msg(const char *file, struct strbuf *err);
d1723296 1432/*
1054af7d
RS
1433 * Preserves errno, prints a message, but gives no warning for ENOENT.
1434 * Returns 0 on success, which includes trying to remove a directory that does
1435 * not exist.
d1723296
PC
1436 */
1437int rmdir_or_warn(const char *path);
80d706af
PC
1438/*
1439 * Calls the correct function out of {unlink,rmdir}_or_warn based on
1440 * the supplied file mode.
1441 */
1442int remove_or_warn(unsigned int mode, const char *path);
fc71db39 1443
e5c52c98
JN
1444/*
1445 * Call access(2), but warn for any error except "missing file"
1446 * (ENOENT or ENOTDIR).
1447 */
4698c8fe
JN
1448#define ACCESS_EACCES_OK (1U << 0)
1449int access_or_warn(const char *path, int mode, unsigned flag);
1450int access_or_die(const char *path, int mode, unsigned flag);
ba8bd830 1451
11dc1fcb
NTND
1452/* Warn on an inaccessible file if errno indicates this is an error */
1453int warn_on_fopen_errors(const char *path);
55b38a48 1454
00611d84
JK
1455/*
1456 * Open with O_NOFOLLOW, or equivalent. Note that the fallback equivalent
1457 * may be racy. Do not use this as protection against an attacker who can
1458 * simultaneously create paths.
1459 */
1460int open_nofollow(const char *path, int flags);
1461
1b56cdf9
KM
1462#ifndef SHELL_PATH
1463# define SHELL_PATH "/bin/sh"
1464#endif
1465
f43cce23 1466#ifndef _POSIX_THREAD_SAFE_FUNCTIONS
15b52a44
JH
1467static inline void flockfile(FILE *fh)
1468{
1469 ; /* nothing */
1470}
1471static inline void funlockfile(FILE *fh)
1472{
1473 ; /* nothing */
1474}
f43cce23
JK
1475#define getc_unlocked(fh) getc(fh)
1476#endif
1477
18a4f6be
NTND
1478#ifdef FILENO_IS_A_MACRO
1479int git_fileno(FILE *stream);
400caafb 1480# ifndef COMPAT_CODE_FILENO
18a4f6be
NTND
1481# undef fileno
1482# define fileno(p) git_fileno(p)
1483# endif
1484#endif
1485
400caafb
CC
1486#ifdef NEED_ACCESS_ROOT_HANDLER
1487int git_access(const char *path, int mode);
1488# ifndef COMPAT_CODE_ACCESS
1489# ifdef access
1490# undef access
1491# endif
1492# define access(path, mode) git_access(path, mode)
1493# endif
1494#endif
1495
dc5a18b3
JH
1496/*
1497 * Our code often opens a path to an optional file, to work on its
1498 * contents when we can successfully open it. We can ignore a failure
1499 * to open if such an optional file does not exist, but we do want to
1500 * report a failure in opening for other reasons (e.g. we got an I/O
1501 * error, or the file is there, but we lack the permission to open).
1502 *
1503 * Call this function after seeing an error from open() or fopen() to
1504 * see if the errno indicates a missing file that we can safely ignore.
1505 */
1506static inline int is_missing_file_error(int errno_)
1507{
1508 return (errno_ == ENOENT || errno_ == ENOTDIR);
1509}
1510
55454427 1511int cmd_main(int, const char **);
5c238e29 1512
ee4512ed
JH
1513/*
1514 * Intercept all calls to exit() and route them to trace2 to
1515 * optionally emit a message before calling the real exit().
1516 */
19d75948
ÆAB
1517int common_exit(const char *file, int line, int code);
1518#define exit(code) exit(common_exit(__FILE__, __LINE__, (code)))
ee4512ed 1519
0e5bba53
JK
1520/*
1521 * You can mark a stack variable with UNLEAK(var) to avoid it being
1522 * reported as a leak by tools like LSAN or valgrind. The argument
1523 * should generally be the variable itself (not its address and not what
1524 * it points to). It's safe to use this on pointers which may already
1525 * have been freed, or on pointers which may still be in use.
1526 *
1527 * Use this _only_ for a variable that leaks by going out of scope at
1528 * program exit (so only from cmd_* functions or their direct helpers).
1529 * Normal functions, especially those which may be called multiple
1530 * times, should actually free their memory. This is only meant as
1531 * an annotation, and does nothing in non-leak-checking builds.
1532 */
1533#ifdef SUPPRESS_ANNOTATED_LEAKS
55454427 1534void unleak_memory(const void *ptr, size_t len);
5de3de32 1535#define UNLEAK(var) unleak_memory(&(var), sizeof(var))
0e5bba53 1536#else
5de3de32 1537#define UNLEAK(var) do {} while (0)
0e5bba53
JK
1538#endif
1539
07564773
ÆAB
1540#define z_const
1541#include <zlib.h>
1542
1543#if ZLIB_VERNUM < 0x1290
1544/*
1545 * This is uncompress2, which is only available in zlib >= 1.2.9
1546 * (released as of early 2017). See compat/zlib-uncompress2.c.
1547 */
1548int uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
1549 uLong *sourceLen);
1550#endif
1551
c8af66ab
JK
1552/*
1553 * This include must come after system headers, since it introduces macros that
1554 * replace system names.
1555 */
1556#include "banned.h"
1557
973d5eea
EW
1558/*
1559 * container_of - Get the address of an object containing a field.
1560 *
1561 * @ptr: pointer to the field.
1562 * @type: type of the object.
1563 * @member: name of the field within the object.
1564 */
1565#define container_of(ptr, type, member) \
1566 ((type *) ((char *)(ptr) - offsetof(type, member)))
1567
f0e63c41
EW
1568/*
1569 * helper function for `container_of_or_null' to avoid multiple
1570 * evaluation of @ptr
1571 */
1572static inline void *container_of_or_null_offset(void *ptr, size_t offset)
1573{
1574 return ptr ? (char *)ptr - offset : NULL;
1575}
1576
1577/*
1578 * like `container_of', but allows returned value to be NULL
1579 */
1580#define container_of_or_null(ptr, type, member) \
1581 (type *)container_of_or_null_offset(ptr, offsetof(type, member))
1582
23dee69f 1583/*
abcb66c6 1584 * like offsetof(), but takes a pointer to a variable of type which
23dee69f
EW
1585 * contains @member, instead of a specified type.
1586 * @ptr is subject to multiple evaluation since we can't rely on __typeof__
1587 * everywhere.
1588 */
1589#if defined(__GNUC__) /* clang sets this, too */
1590#define OFFSETOF_VAR(ptr, member) offsetof(__typeof__(*ptr), member)
1591#else /* !__GNUC__ */
1592#define OFFSETOF_VAR(ptr, member) \
1593 ((uintptr_t)&(ptr)->member - (uintptr_t)(ptr))
1594#endif /* !__GNUC__ */
1595
a76b138d
HWN
1596void sleep_millisec(int millisec);
1597
05cd988d 1598/*
1599 * Generate len bytes from the system cryptographically secure PRNG.
1600 * Returns 0 on success and -1 on error, setting errno. The inability to
1601 * satisfy the full request is an error.
1602 */
1603int csprng_bytes(void *buf, size_t len);
1604
5c238e29 1605#endif