blob: cf89cdf4598b3796724a85aa707f740245155cdc [file] [log] [blame]
Junio C Hamano4050c0d2005-12-05 11:54:29 -08001#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
Martin Waitzb97e9112007-02-17 10:13:10 +01004#define _FILE_OFFSET_BITS 64
5
Junio C Hamano8f1d2e62006-01-07 01:33:54 -08006#ifndef FLEX_ARRAY
Junio C Hamano8e973992007-11-20 12:08:06 -08007/*
8 * See if our compiler is known to support flexible array members.
9 */
10#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
11# define FLEX_ARRAY /* empty */
12#elif defined(__GNUC__)
13# if (__GNUC__ >= 3)
14# define FLEX_ARRAY /* empty */
15# else
16# define FLEX_ARRAY 0 /* older GNU extension */
17# endif
18#endif
19
20/*
21 * Otherwise, default to safer but a bit wasteful traditional style
22 */
23#ifndef FLEX_ARRAY
24# define FLEX_ARRAY 1
Junio C Hamano8f1d2e62006-01-07 01:33:54 -080025#endif
26#endif
27
Junio C Hamanob4f2a6a2006-03-09 11:58:05 -080028#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
29
Nicolas Pitre8723f212007-04-09 01:06:29 -040030#ifdef __GNUC__
31#define TYPEOF(x) (__typeof__(x))
32#else
33#define TYPEOF(x)
34#endif
35
36#define MSB(x, bits) ((x) & TYPEOF(x)(~0ULL << (sizeof(x) * 8 - (bits))))
Pierre Habouzitdb7244b2007-11-07 11:20:27 +010037#define HAS_MULTI_BITS(i) ((i) & ((i) - 1)) /* checks if an integer has more than 1 bit set */
Nicolas Pitre8723f212007-04-09 01:06:29 -040038
Andy Whitcroftcf606e32007-05-15 17:33:25 +010039/* Approximation of the length of the decimal representation of this type. */
40#define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1)
41
Boyd Lynn Gerber457bb452008-06-08 14:47:54 -060042#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__USLC__) && !defined(_M_UNIX)
Junio C Hamano85023572006-12-19 14:34:12 -080043#define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
44#define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
Terje Sten Bjerksethc902c9a2006-12-20 17:32:21 -080045#endif
Jason Riedyfb952202007-01-15 17:34:49 -080046#define _ALL_SOURCE 1
47#define _GNU_SOURCE 1
48#define _BSD_SOURCE 1
Junio C Hamano85023572006-12-19 14:34:12 -080049
Junio C Hamano4050c0d2005-12-05 11:54:29 -080050#include <unistd.h>
51#include <stdio.h>
52#include <sys/stat.h>
53#include <fcntl.h>
54#include <stddef.h>
55#include <stdlib.h>
56#include <stdarg.h>
57#include <string.h>
58#include <errno.h>
59#include <limits.h>
60#include <sys/param.h>
Junio C Hamano4050c0d2005-12-05 11:54:29 -080061#include <sys/types.h>
62#include <dirent.h>
Junio C Hamano85023572006-12-19 14:34:12 -080063#include <sys/time.h>
64#include <time.h>
65#include <signal.h>
Junio C Hamano85023572006-12-19 14:34:12 -080066#include <fnmatch.h>
Johannes Sixtf4626df2007-12-01 21:24:59 +010067#include <assert.h>
68#include <regex.h>
69#include <utime.h>
70#ifndef __MINGW32__
71#include <sys/wait.h>
Junio C Hamano85023572006-12-19 14:34:12 -080072#include <sys/poll.h>
73#include <sys/socket.h>
Johannes Sixt80bbe722007-11-13 21:05:01 +010074#include <sys/ioctl.h>
Robert Schiele26009732008-01-24 19:34:46 +010075#ifndef NO_SYS_SELECT_H
Johannes Sixt80bbe722007-11-13 21:05:01 +010076#include <sys/select.h>
Robert Schiele26009732008-01-24 19:34:46 +010077#endif
Junio C Hamano85023572006-12-19 14:34:12 -080078#include <netinet/in.h>
79#include <netinet/tcp.h>
80#include <arpa/inet.h>
81#include <netdb.h>
82#include <pwd.h>
Jason Riedy007e2ba2007-01-25 13:11:40 -080083#include <inttypes.h>
Ramsay Jones41b20012007-03-03 18:28:52 +000084#if defined(__CYGWIN__)
85#undef _XOPEN_SOURCE
86#include <grp.h>
87#define _XOPEN_SOURCE 600
88#else
Jason Riedyfb952202007-01-15 17:34:49 -080089#undef _ALL_SOURCE /* AIX 5.3L defines a struct list with _ALL_SOURCE. */
Junio C Hamano85023572006-12-19 14:34:12 -080090#include <grp.h>
Jason Riedyfb952202007-01-15 17:34:49 -080091#define _ALL_SOURCE 1
Ramsay Jones41b20012007-03-03 18:28:52 +000092#endif
Johannes Sixtf4626df2007-12-01 21:24:59 +010093#else /* __MINGW32__ */
94/* pull in Windows compatibility stuff */
95#include "compat/mingw.h"
96#endif /* __MINGW32__ */
Junio C Hamano85023572006-12-19 14:34:12 -080097
98#ifndef NO_ICONV
99#include <iconv.h>
100#endif
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800101
Junio C Hamanod0c24492006-09-15 22:47:21 -0700102/* On most systems <limits.h> would have given us this, but
103 * not on some systems (e.g. GNU/Hurd).
104 */
105#ifndef PATH_MAX
106#define PATH_MAX 4096
107#endif
108
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500109#ifndef PRIuMAX
110#define PRIuMAX "llu"
111#endif
112
Johannes Sixt607bb3f2008-07-09 22:38:14 +0200113#ifndef PRIu32
114#define PRIu32 "u"
115#endif
116
117#ifndef PRIx32
118#define PRIx32 "x"
119#endif
120
Johannes Sixt80ba0742007-12-03 21:55:57 +0100121#ifndef PATH_SEP
122#define PATH_SEP ':'
123#endif
124
Johannes Sixt23326d12007-12-08 20:57:25 +0100125#ifndef STRIP_EXTENSION
126#define STRIP_EXTENSION ""
127#endif
128
Johannes Sixt25fe2172008-03-05 21:51:27 +0100129#ifndef has_dos_drive_prefix
130#define has_dos_drive_prefix(path) 0
131#endif
132
133#ifndef is_dir_sep
134#define is_dir_sep(c) ((c) == '/')
135#endif
136
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800137#ifdef __GNUC__
138#define NORETURN __attribute__((__noreturn__))
139#else
140#define NORETURN
141#ifndef __attribute__
142#define __attribute__(x)
143#endif
144#endif
145
146/* General helper functions */
147extern void usage(const char *err) NORETURN;
148extern void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
149extern int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
Theodore Ts'o46efd2d2007-03-30 19:07:05 -0400150extern void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800151
Petr Baudis39a3f5e2006-06-24 04:34:38 +0200152extern void set_usage_routine(void (*routine)(const char *err) NORETURN);
153extern void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN);
154extern void set_error_routine(void (*routine)(const char *err, va_list params));
Shawn O. Pearcefa39b6b2006-12-21 19:48:32 -0500155extern void set_warn_routine(void (*routine)(const char *warn, va_list params));
Petr Baudis39a3f5e2006-06-24 04:34:38 +0200156
Junio C Hamano698a68b2008-01-03 01:23:12 -0800157extern int prefixcmp(const char *str, const char *prefix);
Johannes Sixtbb5799d2008-06-23 08:31:41 +0200158extern time_t tm_to_time_t(const struct tm *tm);
Junio C Hamano698a68b2008-01-03 01:23:12 -0800159
Miklos Vajnafbca5832008-06-27 18:21:56 +0200160static inline const char *skip_prefix(const char *str, const char *prefix)
161{
162 size_t len = strlen(prefix);
163 return strncmp(str, prefix, len) ? NULL : str + len;
164}
165
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800166#ifdef NO_MMAP
167
168#ifndef PROT_READ
169#define PROT_READ 1
170#define PROT_WRITE 2
171#define MAP_PRIVATE 1
172#define MAP_FAILED ((void*)-1)
173#endif
174
Shawn O. Pearced6779122006-12-24 00:45:37 -0500175#define mmap git_mmap
176#define munmap git_munmap
177extern void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
178extern int git_munmap(void *start, size_t length);
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800179
Junio C Hamano5faaf242007-02-14 13:20:41 -0800180/* This value must be multiple of (pagesize * 2) */
Shawn O. Pearce8c825342006-12-24 00:46:13 -0500181#define DEFAULT_PACKED_GIT_WINDOW_SIZE (1 * 1024 * 1024)
182
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800183#else /* NO_MMAP */
184
185#include <sys/mman.h>
Junio C Hamano5faaf242007-02-14 13:20:41 -0800186
187/* This value must be multiple of (pagesize * 2) */
Shawn O. Pearce22bac0e2007-01-04 22:28:08 -0500188#define DEFAULT_PACKED_GIT_WINDOW_SIZE \
189 (sizeof(void*) >= 8 \
190 ? 1 * 1024 * 1024 * 1024 \
191 : 32 * 1024 * 1024)
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800192
193#endif /* NO_MMAP */
194
Shawn O. Pearce22bac0e2007-01-04 22:28:08 -0500195#define DEFAULT_PACKED_GIT_LIMIT \
Junio C Hamanoecaebf42007-01-07 00:11:11 -0800196 ((1024L * 1024L) * (sizeof(void*) >= 8 ? 8192 : 256))
Shawn O. Pearce8c825342006-12-24 00:46:13 -0500197
Stefan-W. Hahn69006792007-01-09 22:04:12 +0100198#ifdef NO_PREAD
199#define pread git_pread
200extern ssize_t git_pread(int fd, void *buf, size_t count, off_t offset);
201#endif
Steffen Prohaska14086b02007-11-17 20:48:14 +0100202/*
203 * Forward decl that will remind us if its twin in cache.h changes.
204 * This function is used in compat/pread.c. But we can't include
205 * cache.h there.
206 */
207extern ssize_t read_in_full(int fd, void *buf, size_t count);
Stefan-W. Hahn69006792007-01-09 22:04:12 +0100208
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800209#ifdef NO_SETENV
210#define setenv gitsetenv
211extern int gitsetenv(const char *, const char *, int);
212#endif
213
Shawn O. Pearceca5bb5d2007-10-20 16:03:49 -0400214#ifdef NO_MKDTEMP
215#define mkdtemp gitmkdtemp
216extern char *gitmkdtemp(char *);
217#endif
218
Jason Riedy731043f2006-01-25 12:38:36 -0800219#ifdef NO_UNSETENV
220#define unsetenv gitunsetenv
221extern void gitunsetenv(const char *);
222#endif
223
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800224#ifdef NO_STRCASESTR
225#define strcasestr gitstrcasestr
226extern char *gitstrcasestr(const char *haystack, const char *needle);
227#endif
228
Peter Eriksen817151e2006-06-24 16:01:25 +0200229#ifdef NO_STRLCPY
230#define strlcpy gitstrlcpy
231extern size_t gitstrlcpy(char *, const char *, size_t);
232#endif
233
Jason Riedybc6b4f52007-02-19 16:22:56 -0800234#ifdef NO_STRTOUMAX
235#define strtoumax gitstrtoumax
236extern uintmax_t gitstrtoumax(const char *, char **, int);
237#endif
238
Alex Riesenfa0c87c2007-06-13 20:54:32 +0200239#ifdef NO_HSTRERROR
240#define hstrerror githstrerror
241extern const char *githstrerror(int herror);
242#endif
243
René Scharfeb21b9f12007-09-07 00:32:54 +0200244#ifdef NO_MEMMEM
245#define memmem gitmemmem
246void *gitmemmem(const void *haystack, size_t haystacklen,
247 const void *needle, size_t needlelen);
248#endif
249
Brandon Caseycba22522008-02-08 20:32:47 -0600250#ifdef FREAD_READS_DIRECTORIES
Johannes Sixtc5445fe2008-05-08 09:34:49 +0200251#ifdef fopen
252#undef fopen
253#endif
Brandon Caseycba22522008-02-08 20:32:47 -0600254#define fopen(a,b) git_fopen(a,b)
255extern FILE *git_fopen(const char*, const char*);
256#endif
257
Michal Rokosc4582f92008-03-05 16:46:13 +0100258#ifdef SNPRINTF_RETURNS_BOGUS
259#define snprintf git_snprintf
260extern int git_snprintf(char *str, size_t maxsize,
261 const char *format, ...);
262#define vsnprintf git_vsnprintf
263extern int git_vsnprintf(char *str, size_t maxsize,
264 const char *format, va_list ap);
265#endif
266
Johannes Sixt726c8ef2007-11-12 11:09:05 +0100267#ifdef __GLIBC_PREREQ
268#if __GLIBC_PREREQ(2, 1)
269#define HAVE_STRCHRNUL
270#endif
271#endif
272
273#ifndef HAVE_STRCHRNUL
René Scharfe659c69c2007-11-09 01:49:36 +0100274#define strchrnul gitstrchrnul
Andreas Ericsson9e79f002007-11-10 12:55:48 +0100275static inline char *gitstrchrnul(const char *s, int c)
276{
277 while (*s && *s != c)
278 s++;
279 return (char *)s;
280}
René Scharfe659c69c2007-11-09 01:49:36 +0100281#endif
282
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400283extern void release_pack_memory(size_t, int);
Shawn O. Pearce97bfeb32006-12-24 00:47:19 -0500284
Linus Torvalds112db552008-06-22 12:19:25 -0700285extern char *xstrdup(const char *str);
286extern void *xmalloc(size_t size);
287extern void *xmemdupz(const void *data, size_t len);
288extern char *xstrndup(const char *str, size_t len);
289extern void *xrealloc(void *ptr, size_t size);
290extern void *xcalloc(size_t nmemb, size_t size);
291extern void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
292extern ssize_t xread(int fd, void *buf, size_t len);
293extern ssize_t xwrite(int fd, const void *buf, size_t len);
294extern int xdup(int fd);
295extern FILE *xfdopen(int fd, const char *mode);
296extern int xmkstemp(char *template);
Luiz Fernando N. Capitulinof21a47b2007-08-14 16:44:53 -0300297
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500298static inline size_t xsize_t(off_t len)
299{
300 return (size_t)len;
301}
302
Rene Scharfe5bb1cda2006-08-11 14:01:45 +0200303static inline int has_extension(const char *filename, const char *ext)
Rene Scharfe83a2b842006-08-10 17:02:30 +0200304{
Rene Scharfe5bb1cda2006-08-11 14:01:45 +0200305 size_t len = strlen(filename);
306 size_t extlen = strlen(ext);
Rene Scharfe83a2b842006-08-10 17:02:30 +0200307 return len > extlen && !memcmp(filename + len - extlen, ext, extlen);
308}
309
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800310/* Sane ctype - no locale, and works with signed chars */
311#undef isspace
312#undef isdigit
313#undef isalpha
314#undef isalnum
315#undef tolower
316#undef toupper
317extern unsigned char sane_ctype[256];
318#define GIT_SPACE 0x01
319#define GIT_DIGIT 0x02
320#define GIT_ALPHA 0x04
321#define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
322#define isspace(x) sane_istest(x,GIT_SPACE)
323#define isdigit(x) sane_istest(x,GIT_DIGIT)
324#define isalpha(x) sane_istest(x,GIT_ALPHA)
325#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
326#define tolower(x) sane_case((unsigned char)(x), 0x20)
327#define toupper(x) sane_case((unsigned char)(x), 0)
328
329static inline int sane_case(int x, int high)
330{
331 if (sane_istest(x, GIT_ALPHA))
332 x = (x & ~0x20) | high;
333 return x;
334}
335
Jim Meyering6aead432007-04-10 01:01:44 +0200336static inline int strtoul_ui(char const *s, int base, unsigned int *result)
337{
338 unsigned long ul;
339 char *p;
340
341 errno = 0;
342 ul = strtoul(s, &p, base);
343 if (errno || *p || p == s || (unsigned int) ul != ul)
344 return -1;
345 *result = ul;
346 return 0;
347}
348
Junio C Hamano7791ecb2007-10-23 13:33:26 -0700349static inline int strtol_i(char const *s, int base, int *result)
350{
351 long ul;
352 char *p;
353
354 errno = 0;
355 ul = strtol(s, &p, base);
356 if (errno || *p || p == s || (int) ul != ul)
357 return -1;
358 *result = ul;
359 return 0;
360}
361
Brian Downing43fe9012008-02-05 15:10:44 -0600362#ifdef INTERNAL_QSORT
363void git_qsort(void *base, size_t nmemb, size_t size,
364 int(*compar)(const void *, const void *));
365#define qsort git_qsort
366#endif
367
Alex Riesen81a24b52008-03-05 00:15:39 +0100368#ifndef DIR_HAS_BSD_GROUP_SEMANTICS
369# define FORCE_DIR_SET_GID S_ISGID
370#else
371# define FORCE_DIR_SET_GID 0
372#endif
373
Junio C Hamano4050c0d2005-12-05 11:54:29 -0800374#endif