1 #ifndef GIT_COMPAT_UTIL_H
2 #define GIT_COMPAT_UTIL_H
4 #if __STDC_VERSION__ - 0 < 199901L
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.
14 #error "Required C99 support is in a test phase. Please see git-compat-util.h for more details."
17 #ifdef USE_MSVC_CRTDBG
19 * For these to work they must appear very early in each
20 * file -- before most of the standard header files.
29 #define _FILE_OFFSET_BITS 64
32 /* Derived from Linux "Features Test Macro" header
33 * Convenience macros to test the versions of gcc (or
34 * a compatible compiler).
36 * #if GIT_GNUC_PREREQ (2,8)
37 * ... code requiring gcc 2.8 or later ...
40 #if defined(__GNUC__) && defined(__GNUC_MINOR__)
41 # define GIT_GNUC_PREREQ(maj, min) \
42 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
44 #define GIT_GNUC_PREREQ(maj, min) 0
50 * See if our compiler is known to support flexible array members.
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
60 #if defined(__SUNPRO_C) && (__SUNPRO_C <= 0x580)
61 #elif defined(__GNUC__)
63 # define FLEX_ARRAY /* empty */
65 # define FLEX_ARRAY 0 /* older GNU extension */
67 #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
68 # define FLEX_ARRAY /* empty */
72 * Otherwise, default to safer but a bit wasteful traditional style
81 * BUILD_ASSERT_OR_ZERO - assert a build-time dependency, as an expression.
82 * @cond: the compile-time condition which must be true.
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".
88 * #define foo_to_char(foo) \
90 * + BUILD_ASSERT_OR_ZERO(offsetof(struct foo, string) == 0))
92 #define BUILD_ASSERT_OR_ZERO(cond) \
93 (sizeof(char [1 - 2*!(cond)]) - 1)
95 #if GIT_GNUC_PREREQ(3, 1)
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])))
101 # define BARF_UNLESS_AN_ARRAY(arr) 0
104 * ARRAY_SIZE - get the number of elements in a visible array
105 * @x: the array whose size you want.
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).
111 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]) + BARF_UNLESS_AN_ARRAY(x))
113 #define bitsizeof(x) (CHAR_BIT * sizeof(x))
115 #define maximum_signed_value_of_type(a) \
116 (INTMAX_MAX >> (bitsizeof(intmax_t) - bitsizeof(a)))
118 #define maximum_unsigned_value_of_type(a) \
119 (UINTMAX_MAX >> (bitsizeof(uintmax_t) - bitsizeof(a)))
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.
125 * Requires: a >= 0, typeof(a) equals typeof(b)
127 #define signed_add_overflows(a, b) \
128 ((b) > maximum_signed_value_of_type(a) - (a))
130 #define unsigned_add_overflows(a, b) \
131 ((b) > maximum_unsigned_value_of_type(a) - (a))
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!
138 #define unsigned_mult_overflows(a, b) \
139 ((a) && (b) > maximum_unsigned_value_of_type(a) / (a))
142 * Returns true if the left shift of "a" by "shift" bits will
143 * overflow. The type of "a" must be unsigned.
145 #define unsigned_left_shift_overflows(a, shift) \
146 ((shift) < bitsizeof(a) && \
147 (a) > maximum_unsigned_value_of_type(a) >> (shift))
150 #define TYPEOF(x) (__typeof__(x))
155 #define MSB(x, bits) ((x) & TYPEOF(x)(~0ULL << (bitsizeof(x) - (bits))))
156 #define HAS_MULTI_BITS(i) ((i) & ((i) - 1)) /* checks if an integer has more than 1 bit set */
158 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
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)
164 #define _POSIX_C_SOURCE 1
165 #elif defined(__sun__)
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.
173 # if __STDC_VERSION__ - 0 >= 199901L
174 # define _XOPEN_SOURCE 600
176 # define _XOPEN_SOURCE 500
178 #elif !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && \
179 !defined(_M_UNIX) && !defined(__sgi) && !defined(__DragonFly__) && \
180 !defined(__TANDEM) && !defined(__QNX__) && !defined(__MirBSD__) && \
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 */
185 #define _ALL_SOURCE 1
186 #define _GNU_SOURCE 1
187 #define _BSD_SOURCE 1
188 #define _DEFAULT_SOURCE 1
189 #define _NETBSD_SOURCE 1
190 #define _SGI_SOURCE 1
192 #if defined(__GNUC__)
193 #define UNUSED __attribute__((unused)) \
194 __attribute__((deprecated ("parameter declared as UNUSED")))
199 #if defined(WIN32) && !defined(__CYGWIN__) /* Both MinGW and MSVC */
200 # if !defined(_WIN32_WINNT)
201 # define _WIN32_WINNT 0x0600
203 #define WIN32_LEAN_AND_MEAN /* stops windows.h including winsock.h */
204 #include <winsock2.h>
205 #ifndef NO_UNIX_SOCKETS
209 #define GIT_WINDOWS_NATIVE
214 #include <sys/stat.h>
220 #ifdef HAVE_STRINGS_H
221 #include <strings.h> /* for strcasecmp() */
225 #ifdef NEEDS_SYS_PARAM_H
226 #include <sys/param.h>
228 #include <sys/types.h>
230 #include <sys/time.h>
237 #if !defined(NO_POLL_H)
239 #elif !defined(NO_SYS_POLL_H)
240 #include <sys/poll.h>
242 /* Pull the compat stuff */
245 #ifdef HAVE_BSD_SYSCTL
246 #include <sys/sysctl.h>
249 /* Used by compat/win32/path-utils.h, and more */
250 static inline int is_xplatform_dir_sep(int c
)
252 return c
== '/' || c
== '\\';
255 #if defined(__CYGWIN__)
256 #include "compat/win32/path-utils.h"
258 #if defined(__MINGW32__)
259 /* pull in Windows compatibility stuff */
260 #include "compat/win32/path-utils.h"
261 #include "compat/mingw.h"
262 #elif defined(_MSC_VER)
263 #include "compat/win32/path-utils.h"
264 #include "compat/msvc.h"
266 #include <sys/utsname.h>
267 #include <sys/wait.h>
268 #include <sys/resource.h>
269 #include <sys/socket.h>
270 #include <sys/ioctl.h>
271 #include <sys/statvfs.h>
273 #ifndef NO_SYS_SELECT_H
274 #include <sys/select.h>
276 #include <netinet/in.h>
277 #include <netinet/tcp.h>
278 #include <arpa/inet.h>
282 #ifndef NO_INTTYPES_H
283 #include <inttypes.h>
287 #ifdef HAVE_ARC4RANDOM_LIBBSD
288 #include <bsd/stdlib.h>
290 #ifdef HAVE_GETRANDOM
291 #include <sys/random.h>
295 * On I16LP32, ILP32 and LP64 "long" is the safe bet, however
296 * on LLP86, IL33LLP64 and P64 it needs to be "long long",
297 * while on IP16 and IP16L32 it is "int" (resp. "short")
298 * Size needs to match (or exceed) 'sizeof(void *)'.
299 * We can't take "long long" here as not everybody has it.
301 typedef long intptr_t;
302 typedef unsigned long uintptr_t;
304 #undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */
306 #define _ALL_SOURCE 1
309 /* used on Mac OS X */
310 #ifdef PRECOMPOSE_UNICODE
311 #include "compat/precompose_utf8.h"
313 static inline const char *precompose_argv_prefix(int argc
, const char **argv
, const char *prefix
)
317 static inline const char *precompose_string_if_needed(const char *in
)
322 #define probe_utf8_pathname_composition()
325 #ifdef MKDIR_WO_TRAILING_SLASH
326 #define mkdir(a,b) compat_mkdir_wo_trailing_slash((a),(b))
327 int compat_mkdir_wo_trailing_slash(const char*, mode_t
);
330 #ifdef NO_STRUCT_ITIMERVAL
332 struct timeval it_interval
;
333 struct timeval it_value
;
338 static inline int setitimer(int which
, const struct itimerval
*value
, struct itimerval
*newvalue
) {
339 return 0; /* pretend success */
346 #define basename gitbasename
347 char *gitbasename(char *);
348 #define dirname gitdirname
349 char *gitdirname(char *);
358 #define __AVAILABILITY_MACROS_USES_AVAILABILITY 0
359 #include <AvailabilityMacros.h>
360 #undef DEPRECATED_ATTRIBUTE
361 #define DEPRECATED_ATTRIBUTE
362 #undef __AVAILABILITY_MACROS_USES_AVAILABILITY
364 #include <openssl/ssl.h>
365 #include <openssl/err.h>
369 # include <sys/sysinfo.h>
372 /* On most systems <netdb.h> would have given us this, but
373 * not on some systems (e.g. z/OS).
376 #define NI_MAXHOST 1025
380 #define NI_MAXSERV 32
383 /* On most systems <limits.h> would have given us this, but
384 * not on some systems (e.g. GNU/Hurd).
387 #define PATH_MAX 4096
390 typedef uintmax_t timestamp_t
;
391 #define PRItime PRIuMAX
392 #define parse_timestamp strtoumax
393 #define TIME_MAX UINTMAX_MAX
403 #ifndef _PATH_DEFPATH
404 #define _PATH_DEFPATH "/usr/local/bin:/usr/bin:/bin"
407 #ifndef platform_core_config
408 static inline int noop_core_config(const char *var UNUSED
,
409 const char *value UNUSED
,
414 #define platform_core_config noop_core_config
417 int lstat_cache_aware_rmdir(const char *path
);
418 #if !defined(__MINGW32__) && !defined(_MSC_VER)
419 #define rmdir lstat_cache_aware_rmdir
422 #ifndef has_dos_drive_prefix
423 static inline int git_has_dos_drive_prefix(const char *path
)
427 #define has_dos_drive_prefix git_has_dos_drive_prefix
430 #ifndef skip_dos_drive_prefix
431 static inline int git_skip_dos_drive_prefix(char **path
)
435 #define skip_dos_drive_prefix git_skip_dos_drive_prefix
438 static inline int git_is_dir_sep(int c
)
443 #define is_dir_sep git_is_dir_sep
446 #ifndef offset_1st_component
447 static inline int git_offset_1st_component(const char *path
)
449 return is_dir_sep(path
[0]);
451 #define offset_1st_component git_offset_1st_component
454 #ifndef is_valid_path
455 #define is_valid_path(path) 1
458 #ifndef is_path_owned_by_current_user
461 #define ROOT_UID 65535
467 * Do not use this function when
468 * (1) geteuid() did not say we are running as 'root', or
469 * (2) using this function will compromise the system.
471 * PORTABILITY WARNING:
472 * This code assumes uid_t is unsigned because that is what sudo does.
473 * If your uid_t type is signed and all your ids are positive then it
474 * should all work fine.
475 * If your version of sudo uses negative values for uid_t or it is
476 * buggy and return an overflowed value in SUDO_UID, then git might
477 * fail to grant access to your repository properly or even mistakenly
478 * grant access to someone else.
479 * In the unlikely scenario this happened to you, and that is how you
480 * got to this message, we would like to know about it; so sent us an
481 * email to git@vger.kernel.org indicating which platform you are
482 * using and which version of sudo, so we can improve this logic and
483 * maybe provide you with a patch that would prevent this issue again
486 static inline void extract_id_from_env(const char *env
, uid_t
*id
)
488 const char *real_uid
= getenv(env
);
490 /* discard anything empty to avoid a more complex check below */
491 if (real_uid
&& *real_uid
) {
493 unsigned long env_id
;
496 /* silent overflow errors could trigger a bug here */
497 env_id
= strtoul(real_uid
, &endptr
, 10);
498 if (!*endptr
&& !errno
)
503 static inline int is_path_owned_by_current_uid(const char *path
,
504 struct strbuf
*report UNUSED
)
509 if (lstat(path
, &st
))
513 if (euid
== ROOT_UID
)
515 if (st
.st_uid
== ROOT_UID
)
518 extract_id_from_env("SUDO_UID", &euid
);
521 return st
.st_uid
== euid
;
524 #define is_path_owned_by_current_user is_path_owned_by_current_uid
527 #ifndef find_last_dir_sep
528 static inline char *git_find_last_dir_sep(const char *path
)
530 return strrchr(path
, '/');
532 #define find_last_dir_sep git_find_last_dir_sep
536 static inline int git_has_dir_sep(const char *path
)
538 return !!strchr(path
, '/');
540 #define has_dir_sep(path) git_has_dir_sep(path)
543 #ifndef query_user_email
544 #define query_user_email() NULL
548 #include <floss.h(floss_execl,floss_execlp,floss_execv,floss_execvp)>
549 #include <floss.h(floss_getpwuid)>
552 * NonStop NSE and NSX do not provide NSIG. SIGGUARDIAN(99) is the highest
553 * known, by detective work using kill -l as a list is all signals
554 * instead of signal.h where it should be.
560 #if defined(__HP_cc) && (__HP_cc >= 61000)
561 #define NORETURN __attribute__((noreturn))
563 #elif defined(__GNUC__) && !defined(NO_NORETURN)
564 #define NORETURN __attribute__((__noreturn__))
565 #define NORETURN_PTR __attribute__((__noreturn__))
566 #elif defined(_MSC_VER)
567 #define NORETURN __declspec(noreturn)
573 #ifndef __attribute__
574 #define __attribute__(x)
579 /* The sentinel attribute is valid from gcc version 4.0 */
580 #if defined(__GNUC__) && (__GNUC__ >= 4)
581 #define LAST_ARG_MUST_BE_NULL __attribute__((sentinel))
582 /* warn_unused_result exists as of gcc 3.4.0, but be lazy and check 4.0 */
583 #define RESULT_MUST_BE_USED __attribute__ ((warn_unused_result))
585 #define LAST_ARG_MUST_BE_NULL
586 #define RESULT_MUST_BE_USED
589 #define MAYBE_UNUSED __attribute__((__unused__))
591 #include "compat/bswap.h"
593 #include "wildmatch.h"
597 /* General helper functions */
598 NORETURN
void usage(const char *err
);
599 NORETURN
void usagef(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
600 NORETURN
void die(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
601 NORETURN
void die_errno(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
602 int die_message(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
603 int die_message_errno(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
604 int error(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
605 int error_errno(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
606 void warning(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
607 void warning_errno(const char *err
, ...) __attribute__((format (printf
, 1, 2)));
610 #ifdef APPLE_COMMON_CRYPTO
611 #include "compat/apple-common-crypto.h"
613 #include <openssl/evp.h>
614 #include <openssl/hmac.h>
615 #endif /* APPLE_COMMON_CRYPTO */
616 #include <openssl/x509v3.h>
617 #endif /* NO_OPENSSL */
619 #ifdef HAVE_OPENSSL_CSPRNG
620 #include <openssl/rand.h>
624 * Let callers be aware of the constant return value; this can help
625 * gcc with -Wuninitialized analysis. We restrict this trick to gcc, though,
626 * because other compilers may be confused by this.
628 #if defined(__GNUC__)
629 static inline int const_error(void)
633 #define error(...) (error(__VA_ARGS__), const_error())
634 #define error_errno(...) (error_errno(__VA_ARGS__), const_error())
637 typedef void (*report_fn
)(const char *, va_list params
);
639 void set_die_routine(NORETURN_PTR report_fn routine
);
640 report_fn
get_die_message_routine(void);
641 void set_error_routine(report_fn routine
);
642 report_fn
get_error_routine(void);
643 void set_warn_routine(report_fn routine
);
644 report_fn
get_warn_routine(void);
645 void set_die_is_recursing_routine(int (*routine
)(void));
647 int starts_with(const char *str
, const char *prefix
);
648 int istarts_with(const char *str
, const char *prefix
);
651 * If the string "str" begins with the string found in "prefix", return 1.
652 * The "out" parameter is set to "str + strlen(prefix)" (i.e., to the point in
653 * the string right after the prefix).
655 * Otherwise, return 0 and leave "out" untouched.
659 * [extract branch name, fail if not a branch]
660 * if (!skip_prefix(ref, "refs/heads/", &branch)
663 * [skip prefix if present, otherwise use whole string]
664 * skip_prefix(name, "refs/heads/", &name);
666 static inline int skip_prefix(const char *str
, const char *prefix
,
674 } while (*str
++ == *prefix
++);
679 * If the string "str" is the same as the string in "prefix", then the "arg"
680 * parameter is set to the "def" parameter and 1 is returned.
681 * If the string "str" begins with the string found in "prefix" and then a
682 * "=" sign, then the "arg" parameter is set to "str + strlen(prefix) + 1"
683 * (i.e., to the point in the string right after the prefix and the "=" sign),
686 * Otherwise, return 0 and leave "arg" untouched.
688 * When we accept both a "--key" and a "--key=<val>" option, this function
689 * can be used instead of !strcmp(arg, "--key") and then
690 * skip_prefix(arg, "--key=", &arg) to parse such an option.
692 int skip_to_optional_arg_default(const char *str
, const char *prefix
,
693 const char **arg
, const char *def
);
695 static inline int skip_to_optional_arg(const char *str
, const char *prefix
,
698 return skip_to_optional_arg_default(str
, prefix
, arg
, "");
702 * Like skip_prefix, but promises never to read past "len" bytes of the input
703 * buffer, and returns the remaining number of bytes in "out" via "outlen".
705 static inline int skip_prefix_mem(const char *buf
, size_t len
,
707 const char **out
, size_t *outlen
)
709 size_t prefix_len
= strlen(prefix
);
710 if (prefix_len
<= len
&& !memcmp(buf
, prefix
, prefix_len
)) {
711 *out
= buf
+ prefix_len
;
712 *outlen
= len
- prefix_len
;
719 * If buf ends with suffix, return 1 and subtract the length of the suffix
720 * from *len. Otherwise, return 0 and leave *len untouched.
722 static inline int strip_suffix_mem(const char *buf
, size_t *len
,
725 size_t suflen
= strlen(suffix
);
726 if (*len
< suflen
|| memcmp(buf
+ (*len
- suflen
), suffix
, suflen
))
733 * If str ends with suffix, return 1 and set *len to the size of the string
734 * without the suffix. Otherwise, return 0 and set *len to the size of the
737 * Note that we do _not_ NUL-terminate str to the new length.
739 static inline int strip_suffix(const char *str
, const char *suffix
, size_t *len
)
742 return strip_suffix_mem(str
, len
, suffix
);
745 static inline int ends_with(const char *str
, const char *suffix
)
748 return strip_suffix(str
, suffix
, &len
);
751 #define SWAP(a, b) do { \
752 void *_swap_a_ptr = &(a); \
753 void *_swap_b_ptr = &(b); \
754 unsigned char _swap_buffer[sizeof(a)]; \
755 memcpy(_swap_buffer, _swap_a_ptr, sizeof(a)); \
756 memcpy(_swap_a_ptr, _swap_b_ptr, sizeof(a) + \
757 BUILD_ASSERT_OR_ZERO(sizeof(a) == sizeof(b))); \
758 memcpy(_swap_b_ptr, _swap_buffer, sizeof(a)); \
761 #if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
766 #define MAP_PRIVATE 1
769 #define mmap git_mmap
770 #define munmap git_munmap
771 void *git_mmap(void *start
, size_t length
, int prot
, int flags
, int fd
, off_t offset
);
772 int git_munmap(void *start
, size_t length
);
774 #else /* NO_MMAP || USE_WIN32_MMAP */
776 #include <sys/mman.h>
778 #endif /* NO_MMAP || USE_WIN32_MMAP */
782 /* This value must be multiple of (pagesize * 2) */
783 #define DEFAULT_PACKED_GIT_WINDOW_SIZE (1 * 1024 * 1024)
787 /* This value must be multiple of (pagesize * 2) */
788 #define DEFAULT_PACKED_GIT_WINDOW_SIZE \
789 (sizeof(void*) >= 8 \
790 ? 1 * 1024 * 1024 * 1024 \
796 #define MAP_FAILED ((void *)-1)
799 #ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
800 #define on_disk_bytes(st) ((st).st_size)
802 #define on_disk_bytes(st) ((st).st_blocks * 512)
805 #ifdef NEEDS_MODE_TRANSLATION
814 #define S_IFMT 0170000
815 #define S_IFREG 0100000
816 #define S_IFDIR 0040000
817 #define S_IFLNK 0120000
818 #define S_IFBLK 0060000
819 #define S_IFCHR 0020000
820 #define S_IFIFO 0010000
821 #define S_IFSOCK 0140000
825 #define stat(path, buf) git_stat(path, buf)
826 int git_stat(const char *, struct stat
*);
830 #define fstat(fd, buf) git_fstat(fd, buf)
831 int git_fstat(int, struct stat
*);
835 #define lstat(path, buf) git_lstat(path, buf)
836 int git_lstat(const char *, struct stat
*);
839 #define DEFAULT_PACKED_GIT_LIMIT \
840 ((1024L * 1024L) * (size_t)(sizeof(void*) >= 8 ? (32 * 1024L * 1024L) : 256))
843 #define pread git_pread
844 ssize_t
git_pread(int fd
, void *buf
, size_t count
, off_t offset
);
847 * Forward decl that will remind us if its twin in cache.h changes.
848 * This function is used in compat/pread.c. But we can't include
851 ssize_t
read_in_full(int fd
, void *buf
, size_t count
);
854 #define setenv gitsetenv
855 int gitsetenv(const char *, const char *, int);
859 #define mkdtemp gitmkdtemp
860 char *gitmkdtemp(char *);
864 #define unsetenv gitunsetenv
865 int gitunsetenv(const char *);
869 #define strcasestr gitstrcasestr
870 char *gitstrcasestr(const char *haystack
, const char *needle
);
874 #define strlcpy gitstrlcpy
875 size_t gitstrlcpy(char *, const char *, size_t);
879 #define strtoumax gitstrtoumax
880 uintmax_t gitstrtoumax(const char *, char **, int);
881 #define strtoimax gitstrtoimax
882 intmax_t gitstrtoimax(const char *, char **, int);
886 #define hstrerror githstrerror
887 const char *githstrerror(int herror
);
891 #define memmem gitmemmem
892 void *gitmemmem(const void *haystack
, size_t haystacklen
,
893 const void *needle
, size_t needlelen
);
896 #ifdef OVERRIDE_STRDUP
900 #define strdup gitstrdup
901 char *gitstrdup(const char *s
);
904 #ifdef NO_GETPAGESIZE
905 #define getpagesize() sysconf(_SC_PAGESIZE)
912 #ifdef FREAD_READS_DIRECTORIES
913 # if !defined(SUPPRESS_FOPEN_REDEFINITION)
917 # define fopen(a,b) git_fopen(a,b)
919 FILE *git_fopen(const char*, const char*);
922 #ifdef SNPRINTF_RETURNS_BOGUS
926 #define snprintf git_snprintf
927 int git_snprintf(char *str
, size_t maxsize
,
928 const char *format
, ...);
932 #define vsnprintf git_vsnprintf
933 int git_vsnprintf(char *str
, size_t maxsize
,
934 const char *format
, va_list ap
);
937 #ifdef OPEN_RETURNS_EINTR
939 #define open git_open_with_retry
940 int git_open_with_retry(const char *path
, int flag
, ...);
943 #ifdef __GLIBC_PREREQ
944 #if __GLIBC_PREREQ(2, 1)
945 #define HAVE_STRCHRNUL
949 #ifndef HAVE_STRCHRNUL
950 #define strchrnul gitstrchrnul
951 static inline char *gitstrchrnul(const char *s
, int c
)
953 while (*s
&& *s
!= c
)
960 int inet_pton(int af
, const char *src
, void *dst
);
964 const char *inet_ntop(int af
, const void *src
, char *dst
, size_t size
);
968 #define atexit git_atexit
969 int git_atexit(void (*handler
)(void));
972 static inline size_t st_add(size_t a
, size_t b
)
974 if (unsigned_add_overflows(a
, b
))
975 die("size_t overflow: %"PRIuMAX
" + %"PRIuMAX
,
976 (uintmax_t)a
, (uintmax_t)b
);
979 #define st_add3(a,b,c) st_add(st_add((a),(b)),(c))
980 #define st_add4(a,b,c,d) st_add(st_add3((a),(b),(c)),(d))
982 static inline size_t st_mult(size_t a
, size_t b
)
984 if (unsigned_mult_overflows(a
, b
))
985 die("size_t overflow: %"PRIuMAX
" * %"PRIuMAX
,
986 (uintmax_t)a
, (uintmax_t)b
);
990 static inline size_t st_sub(size_t a
, size_t b
)
993 die("size_t underflow: %"PRIuMAX
" - %"PRIuMAX
,
994 (uintmax_t)a
, (uintmax_t)b
);
998 static inline size_t st_left_shift(size_t a
, unsigned shift
)
1000 if (unsigned_left_shift_overflows(a
, shift
))
1001 die("size_t overflow: %"PRIuMAX
" << %u",
1002 (uintmax_t)a
, shift
);
1006 static inline unsigned long cast_size_t_to_ulong(size_t a
)
1008 if (a
!= (unsigned long)a
)
1009 die("object too large to read on this platform: %"
1010 PRIuMAX
" is cut off to %lu",
1011 (uintmax_t)a
, (unsigned long)a
);
1012 return (unsigned long)a
;
1016 * Limit size of IO chunks, because huge chunks only cause pain. OS X
1017 * 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in
1018 * the absence of bugs, large chunks can result in bad latencies when
1019 * you decide to kill the process.
1021 * We pick 8 MiB as our default, but if the platform defines SSIZE_MAX
1022 * that is smaller than that, clip it to SSIZE_MAX, as a call to
1023 * read(2) or write(2) larger than that is allowed to fail. As the last
1024 * resort, we allow a port to pass via CFLAGS e.g. "-DMAX_IO_SIZE=value"
1025 * to override this, if the definition of SSIZE_MAX given by the platform
1029 # define MAX_IO_SIZE_DEFAULT (8*1024*1024)
1030 # if defined(SSIZE_MAX) && (SSIZE_MAX < MAX_IO_SIZE_DEFAULT)
1031 # define MAX_IO_SIZE SSIZE_MAX
1033 # define MAX_IO_SIZE MAX_IO_SIZE_DEFAULT
1037 #ifdef HAVE_ALLOCA_H
1038 # include <alloca.h>
1039 # define xalloca(size) (alloca(size))
1040 # define xalloca_free(p) do {} while (0)
1042 # define xalloca(size) (xmalloc(size))
1043 # define xalloca_free(p) (free(p))
1045 char *xstrdup(const char *str
);
1046 void *xmalloc(size_t size
);
1047 void *xmallocz(size_t size
);
1048 void *xmallocz_gently(size_t size
);
1049 void *xmemdupz(const void *data
, size_t len
);
1050 char *xstrndup(const char *str
, size_t len
);
1051 void *xrealloc(void *ptr
, size_t size
);
1052 void *xcalloc(size_t nmemb
, size_t size
);
1053 void xsetenv(const char *name
, const char *value
, int overwrite
);
1054 void *xmmap(void *start
, size_t length
, int prot
, int flags
, int fd
, off_t offset
);
1055 const char *mmap_os_err(void);
1056 void *xmmap_gently(void *start
, size_t length
, int prot
, int flags
, int fd
, off_t offset
);
1057 int xopen(const char *path
, int flags
, ...);
1058 ssize_t
xread(int fd
, void *buf
, size_t len
);
1059 ssize_t
xwrite(int fd
, const void *buf
, size_t len
);
1060 ssize_t
xpread(int fd
, void *buf
, size_t len
, off_t offset
);
1062 FILE *xfopen(const char *path
, const char *mode
);
1063 FILE *xfdopen(int fd
, const char *mode
);
1064 int xmkstemp(char *temp_filename
);
1065 int xmkstemp_mode(char *temp_filename
, int mode
);
1066 char *xgetcwd(void);
1067 FILE *fopen_for_writing(const char *path
);
1068 FILE *fopen_or_warn(const char *path
, const char *mode
);
1071 * Like strncmp, but only return zero if s is NUL-terminated and exactly len
1072 * characters long. If it is not, consider it greater than t.
1074 int xstrncmpz(const char *s
, const char *t
, size_t len
);
1077 * FREE_AND_NULL(ptr) is like free(ptr) followed by ptr = NULL. Note
1078 * that ptr is used twice, so don't pass e.g. ptr++.
1080 #define FREE_AND_NULL(p) do { free(p); (p) = NULL; } while (0)
1082 #define ALLOC_ARRAY(x, alloc) (x) = xmalloc(st_mult(sizeof(*(x)), (alloc)))
1083 #define CALLOC_ARRAY(x, alloc) (x) = xcalloc((alloc), sizeof(*(x)))
1084 #define REALLOC_ARRAY(x, alloc) (x) = xrealloc((x), st_mult(sizeof(*(x)), (alloc)))
1086 #define COPY_ARRAY(dst, src, n) copy_array((dst), (src), (n), sizeof(*(dst)) + \
1087 BUILD_ASSERT_OR_ZERO(sizeof(*(dst)) == sizeof(*(src))))
1088 static inline void copy_array(void *dst
, const void *src
, size_t n
, size_t size
)
1091 memcpy(dst
, src
, st_mult(size
, n
));
1094 #define MOVE_ARRAY(dst, src, n) move_array((dst), (src), (n), sizeof(*(dst)) + \
1095 BUILD_ASSERT_OR_ZERO(sizeof(*(dst)) == sizeof(*(src))))
1096 static inline void move_array(void *dst
, const void *src
, size_t n
, size_t size
)
1099 memmove(dst
, src
, st_mult(size
, n
));
1103 * These functions help you allocate structs with flex arrays, and copy
1104 * the data directly into the array. For example, if you had:
1108 * char name[FLEX_ARRAY];
1114 * FLEX_ALLOC_MEM(f, name, src, len);
1116 * to allocate a "foo" with the contents of "src" in the "name" field.
1117 * The resulting struct is automatically zero'd, and the flex-array field
1118 * is NUL-terminated (whether the incoming src buffer was or not).
1120 * The FLEXPTR_* variants operate on structs that don't use flex-arrays,
1121 * but do want to store a pointer to some extra data in the same allocated
1122 * block. For example, if you have:
1132 * FLEXPTR_ALLOC_STR(f, name, src);
1134 * and "name" will point to a block of memory after the struct, which will be
1135 * freed along with the struct (but the pointer can be repointed anywhere).
1137 * The *_STR variants accept a string parameter rather than a ptr/len
1140 * Note that these macros will evaluate the first parameter multiple
1141 * times, and it must be assignable as an lvalue.
1143 #define FLEX_ALLOC_MEM(x, flexname, buf, len) do { \
1144 size_t flex_array_len_ = (len); \
1145 (x) = xcalloc(1, st_add3(sizeof(*(x)), flex_array_len_, 1)); \
1146 memcpy((void *)(x)->flexname, (buf), flex_array_len_); \
1148 #define FLEXPTR_ALLOC_MEM(x, ptrname, buf, len) do { \
1149 size_t flex_array_len_ = (len); \
1150 (x) = xcalloc(1, st_add3(sizeof(*(x)), flex_array_len_, 1)); \
1151 memcpy((x) + 1, (buf), flex_array_len_); \
1152 (x)->ptrname = (void *)((x)+1); \
1154 #define FLEX_ALLOC_STR(x, flexname, str) \
1155 FLEX_ALLOC_MEM((x), flexname, (str), strlen(str))
1156 #define FLEXPTR_ALLOC_STR(x, ptrname, str) \
1157 FLEXPTR_ALLOC_MEM((x), ptrname, (str), strlen(str))
1159 static inline char *xstrdup_or_null(const char *str
)
1161 return str
? xstrdup(str
) : NULL
;
1164 static inline size_t xsize_t(off_t len
)
1166 if (len
< 0 || (uintmax_t) len
> SIZE_MAX
)
1167 die("Cannot handle files this big");
1168 return (size_t) len
;
1171 __attribute__((format (printf
, 3, 4)))
1172 int xsnprintf(char *dst
, size_t max
, const char *fmt
, ...);
1174 #ifndef HOST_NAME_MAX
1175 #define HOST_NAME_MAX 256
1178 int xgethostname(char *buf
, size_t len
);
1180 /* in ctype.c, for kwset users */
1181 extern const unsigned char tolower_trans_tbl
[256];
1183 /* Sane ctype - no locale, and works with signed chars */
1198 extern const unsigned char sane_ctype
[256];
1199 #define GIT_SPACE 0x01
1200 #define GIT_DIGIT 0x02
1201 #define GIT_ALPHA 0x04
1202 #define GIT_GLOB_SPECIAL 0x08
1203 #define GIT_REGEX_SPECIAL 0x10
1204 #define GIT_PATHSPEC_MAGIC 0x20
1205 #define GIT_CNTRL 0x40
1206 #define GIT_PUNCT 0x80
1207 #define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
1208 #define isascii(x) (((x) & ~0x7f) == 0)
1209 #define isspace(x) sane_istest(x,GIT_SPACE)
1210 #define isdigit(x) sane_istest(x,GIT_DIGIT)
1211 #define isalpha(x) sane_istest(x,GIT_ALPHA)
1212 #define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
1213 #define isprint(x) ((x) >= 0x20 && (x) <= 0x7e)
1214 #define islower(x) sane_iscase(x, 1)
1215 #define isupper(x) sane_iscase(x, 0)
1216 #define is_glob_special(x) sane_istest(x,GIT_GLOB_SPECIAL)
1217 #define is_regex_special(x) sane_istest(x,GIT_GLOB_SPECIAL | GIT_REGEX_SPECIAL)
1218 #define iscntrl(x) (sane_istest(x,GIT_CNTRL))
1219 #define ispunct(x) sane_istest(x, GIT_PUNCT | GIT_REGEX_SPECIAL | \
1220 GIT_GLOB_SPECIAL | GIT_PATHSPEC_MAGIC)
1221 #define isxdigit(x) (hexval_table[(unsigned char)(x)] != -1)
1222 #define tolower(x) sane_case((unsigned char)(x), 0x20)
1223 #define toupper(x) sane_case((unsigned char)(x), 0)
1224 #define is_pathspec_magic(x) sane_istest(x,GIT_PATHSPEC_MAGIC)
1226 static inline int sane_case(int x
, int high
)
1228 if (sane_istest(x
, GIT_ALPHA
))
1229 x
= (x
& ~0x20) | high
;
1233 static inline int sane_iscase(int x
, int is_lower
)
1235 if (!sane_istest(x
, GIT_ALPHA
))
1239 return (x
& 0x20) != 0;
1241 return (x
& 0x20) == 0;
1245 * Like skip_prefix, but compare case-insensitively. Note that the comparison
1246 * is done via tolower(), so it is strictly ASCII (no multi-byte characters or
1247 * locale-specific conversions).
1249 static inline int skip_iprefix(const char *str
, const char *prefix
,
1257 } while (tolower(*str
++) == tolower(*prefix
++));
1261 static inline int strtoul_ui(char const *s
, int base
, unsigned int *result
)
1267 /* negative values would be accepted by strtoul */
1270 ul
= strtoul(s
, &p
, base
);
1271 if (errno
|| *p
|| p
== s
|| (unsigned int) ul
!= ul
)
1277 static inline int strtol_i(char const *s
, int base
, int *result
)
1283 ul
= strtol(s
, &p
, base
);
1284 if (errno
|| *p
|| p
== s
|| (int) ul
!= ul
)
1290 void git_stable_qsort(void *base
, size_t nmemb
, size_t size
,
1291 int(*compar
)(const void *, const void *));
1292 #ifdef INTERNAL_QSORT
1293 #define qsort git_stable_qsort
1296 #define QSORT(base, n, compar) sane_qsort((base), (n), sizeof(*(base)), compar)
1297 static inline void sane_qsort(void *base
, size_t nmemb
, size_t size
,
1298 int(*compar
)(const void *, const void *))
1301 qsort(base
, nmemb
, size
, compar
);
1304 #define STABLE_QSORT(base, n, compar) \
1305 git_stable_qsort((base), (n), sizeof(*(base)), compar)
1307 #ifndef HAVE_ISO_QSORT_S
1308 int git_qsort_s(void *base
, size_t nmemb
, size_t size
,
1309 int (*compar
)(const void *, const void *, void *), void *ctx
);
1310 #define qsort_s git_qsort_s
1313 #define QSORT_S(base, n, compar, ctx) do { \
1314 if (qsort_s((base), (n), sizeof(*(base)), compar, ctx)) \
1315 BUG("qsort_s() failed"); \
1318 #ifndef REG_STARTEND
1319 #error "Git requires REG_STARTEND support. Compile with NO_REGEX=NeedsStartEnd"
1322 static inline int regexec_buf(const regex_t
*preg
, const char *buf
, size_t size
,
1323 size_t nmatch
, regmatch_t pmatch
[], int eflags
)
1325 assert(nmatch
> 0 && pmatch
);
1326 pmatch
[0].rm_so
= 0;
1327 pmatch
[0].rm_eo
= size
;
1328 return regexec(preg
, buf
, nmatch
, pmatch
, eflags
| REG_STARTEND
);
1331 #ifndef DIR_HAS_BSD_GROUP_SEMANTICS
1332 # define FORCE_DIR_SET_GID S_ISGID
1334 # define FORCE_DIR_SET_GID 0
1339 #define ST_CTIME_NSEC(st) 0
1340 #define ST_MTIME_NSEC(st) 0
1342 #ifdef USE_ST_TIMESPEC
1343 #define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctimespec.tv_nsec))
1344 #define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtimespec.tv_nsec))
1346 #define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctim.tv_nsec))
1347 #define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtim.tv_nsec))
1351 #ifdef UNRELIABLE_FSTAT
1352 #define fstat_is_reliable() 0
1354 #define fstat_is_reliable() 1
1359 * Since an obvious implementation of va_list would be to make it a
1360 * pointer into the stack frame, a simple assignment will work on
1361 * many systems. But let's try to be more portable.
1364 #define va_copy(dst, src) __va_copy(dst, src)
1366 #define va_copy(dst, src) ((dst) = (src))
1370 /* usage.c: only to be used for testing BUG() implementation (see test-tool) */
1371 extern int BUG_exit_code
;
1373 /* usage.c: if bug() is called we should have a BUG_if_bug() afterwards */
1374 extern int bug_called_must_BUG
;
1376 __attribute__((format (printf
, 3, 4))) NORETURN
1377 void BUG_fl(const char *file
, int line
, const char *fmt
, ...);
1378 #define BUG(...) BUG_fl(__FILE__, __LINE__, __VA_ARGS__)
1379 __attribute__((format (printf
, 3, 4)))
1380 void bug_fl(const char *file
, int line
, const char *fmt
, ...);
1381 #define bug(...) bug_fl(__FILE__, __LINE__, __VA_ARGS__)
1382 #define BUG_if_bug(...) do { \
1383 if (bug_called_must_BUG) \
1384 BUG_fl(__FILE__, __LINE__, __VA_ARGS__); \
1387 #ifndef FSYNC_METHOD_DEFAULT
1389 #define FSYNC_METHOD_DEFAULT FSYNC_METHOD_WRITEOUT_ONLY
1391 #define FSYNC_METHOD_DEFAULT FSYNC_METHOD_FSYNC
1396 FSYNC_WRITEOUT_ONLY
,
1397 FSYNC_HARDWARE_FLUSH
1401 * Issues an fsync against the specified file according to the specified mode.
1403 * FSYNC_WRITEOUT_ONLY attempts to use interfaces available on some operating
1404 * systems to flush the OS cache without issuing a flush command to the storage
1405 * controller. If those interfaces are unavailable, the function fails with
1408 * FSYNC_HARDWARE_FLUSH does an OS writeout and hardware flush to ensure that
1409 * changes are durable. It is not expected to fail.
1411 int git_fsync(int fd
, enum fsync_action action
);
1414 * Writes out trace statistics for fsync using the trace2 API.
1416 void trace_git_fsync_stats(void);
1419 * Preserves errno, prints a message, but gives no warning for ENOENT.
1420 * Returns 0 on success, which includes trying to unlink an object that does
1423 int unlink_or_warn(const char *path
);
1425 * Tries to unlink file. Returns 0 if unlink succeeded
1426 * or the file already didn't exist. Returns -1 and
1427 * appends a message to err suitable for
1428 * 'error("%s", err->buf)' on error.
1430 int unlink_or_msg(const char *file
, struct strbuf
*err
);
1432 * Preserves errno, prints a message, but gives no warning for ENOENT.
1433 * Returns 0 on success, which includes trying to remove a directory that does
1436 int rmdir_or_warn(const char *path
);
1438 * Calls the correct function out of {unlink,rmdir}_or_warn based on
1439 * the supplied file mode.
1441 int remove_or_warn(unsigned int mode
, const char *path
);
1444 * Call access(2), but warn for any error except "missing file"
1445 * (ENOENT or ENOTDIR).
1447 #define ACCESS_EACCES_OK (1U << 0)
1448 int access_or_warn(const char *path
, int mode
, unsigned flag
);
1449 int access_or_die(const char *path
, int mode
, unsigned flag
);
1451 /* Warn on an inaccessible file if errno indicates this is an error */
1452 int warn_on_fopen_errors(const char *path
);
1455 * Open with O_NOFOLLOW, or equivalent. Note that the fallback equivalent
1456 * may be racy. Do not use this as protection against an attacker who can
1457 * simultaneously create paths.
1459 int open_nofollow(const char *path
, int flags
);
1462 # define SHELL_PATH "/bin/sh"
1465 #ifndef _POSIX_THREAD_SAFE_FUNCTIONS
1466 static inline void flockfile(FILE *fh
)
1470 static inline void funlockfile(FILE *fh
)
1474 #define getc_unlocked(fh) getc(fh)
1477 #ifdef FILENO_IS_A_MACRO
1478 int git_fileno(FILE *stream
);
1479 # ifndef COMPAT_CODE_FILENO
1481 # define fileno(p) git_fileno(p)
1485 #ifdef NEED_ACCESS_ROOT_HANDLER
1486 int git_access(const char *path
, int mode
);
1487 # ifndef COMPAT_CODE_ACCESS
1491 # define access(path, mode) git_access(path, mode)
1496 * Our code often opens a path to an optional file, to work on its
1497 * contents when we can successfully open it. We can ignore a failure
1498 * to open if such an optional file does not exist, but we do want to
1499 * report a failure in opening for other reasons (e.g. we got an I/O
1500 * error, or the file is there, but we lack the permission to open).
1502 * Call this function after seeing an error from open() or fopen() to
1503 * see if the errno indicates a missing file that we can safely ignore.
1505 static inline int is_missing_file_error(int errno_
)
1507 return (errno_
== ENOENT
|| errno_
== ENOTDIR
);
1510 int cmd_main(int, const char **);
1513 * Intercept all calls to exit() and route them to trace2 to
1514 * optionally emit a message before calling the real exit().
1516 int common_exit(const char *file
, int line
, int code
);
1517 #define exit(code) exit(common_exit(__FILE__, __LINE__, (code)))
1520 * You can mark a stack variable with UNLEAK(var) to avoid it being
1521 * reported as a leak by tools like LSAN or valgrind. The argument
1522 * should generally be the variable itself (not its address and not what
1523 * it points to). It's safe to use this on pointers which may already
1524 * have been freed, or on pointers which may still be in use.
1526 * Use this _only_ for a variable that leaks by going out of scope at
1527 * program exit (so only from cmd_* functions or their direct helpers).
1528 * Normal functions, especially those which may be called multiple
1529 * times, should actually free their memory. This is only meant as
1530 * an annotation, and does nothing in non-leak-checking builds.
1532 #ifdef SUPPRESS_ANNOTATED_LEAKS
1533 void unleak_memory(const void *ptr
, size_t len
);
1534 #define UNLEAK(var) unleak_memory(&(var), sizeof(var))
1536 #define UNLEAK(var) do {} while (0)
1542 #if ZLIB_VERNUM < 0x1290
1544 * This is uncompress2, which is only available in zlib >= 1.2.9
1545 * (released as of early 2017). See compat/zlib-uncompress2.c.
1547 int uncompress2(Bytef
*dest
, uLongf
*destLen
, const Bytef
*source
,
1552 * This include must come after system headers, since it introduces macros that
1553 * replace system names.
1558 * container_of - Get the address of an object containing a field.
1560 * @ptr: pointer to the field.
1561 * @type: type of the object.
1562 * @member: name of the field within the object.
1564 #define container_of(ptr, type, member) \
1565 ((type *) ((char *)(ptr) - offsetof(type, member)))
1568 * helper function for `container_of_or_null' to avoid multiple
1569 * evaluation of @ptr
1571 static inline void *container_of_or_null_offset(void *ptr
, size_t offset
)
1573 return ptr
? (char *)ptr
- offset
: NULL
;
1577 * like `container_of', but allows returned value to be NULL
1579 #define container_of_or_null(ptr, type, member) \
1580 (type *)container_of_or_null_offset(ptr, offsetof(type, member))
1583 * like offsetof(), but takes a pointer to a variable of type which
1584 * contains @member, instead of a specified type.
1585 * @ptr is subject to multiple evaluation since we can't rely on __typeof__
1588 #if defined(__GNUC__) /* clang sets this, too */
1589 #define OFFSETOF_VAR(ptr, member) offsetof(__typeof__(*ptr), member)
1590 #else /* !__GNUC__ */
1591 #define OFFSETOF_VAR(ptr, member) \
1592 ((uintptr_t)&(ptr)->member - (uintptr_t)(ptr))
1593 #endif /* !__GNUC__ */
1595 void sleep_millisec(int millisec
);
1598 * Generate len bytes from the system cryptographically secure PRNG.
1599 * Returns 0 on success and -1 on error, setting errno. The inability to
1600 * satisfy the full request is an error.
1602 int csprng_bytes(void *buf
, size_t len
);