blob: e1c623e0c99e2ed2a5156e27edbed123cf699a70 [file] [log] [blame]
Ingo Molnar07800602009-04-20 15:00:56 +02001#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
4#define _FILE_OFFSET_BITS 64
5
6#ifndef FLEX_ARRAY
7/*
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
25#endif
26#endif
27
28#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
29
30#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))))
37#define HAS_MULTI_BITS(i) ((i) & ((i) - 1)) /* checks if an integer has more than 1 bit set */
38
39/* 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
Ingo Molnar07800602009-04-20 15:00:56 +020042#define _ALL_SOURCE 1
43#define _GNU_SOURCE 1
44#define _BSD_SOURCE 1
45
46#include <unistd.h>
47#include <stdio.h>
48#include <sys/stat.h>
Jason Baronf6bdafe2009-07-21 12:20:22 -040049#include <sys/statfs.h>
Ingo Molnar07800602009-04-20 15:00:56 +020050#include <fcntl.h>
51#include <stddef.h>
52#include <stdlib.h>
53#include <stdarg.h>
54#include <string.h>
55#include <errno.h>
56#include <limits.h>
57#include <sys/param.h>
58#include <sys/types.h>
59#include <dirent.h>
60#include <sys/time.h>
61#include <time.h>
62#include <signal.h>
63#include <fnmatch.h>
64#include <assert.h>
65#include <regex.h>
66#include <utime.h>
Ingo Molnar07800602009-04-20 15:00:56 +020067#include <sys/wait.h>
68#include <sys/poll.h>
69#include <sys/socket.h>
70#include <sys/ioctl.h>
71#ifndef NO_SYS_SELECT_H
72#include <sys/select.h>
73#endif
74#include <netinet/in.h>
75#include <netinet/tcp.h>
76#include <arpa/inet.h>
77#include <netdb.h>
78#include <pwd.h>
79#include <inttypes.h>
Jason Baronf6bdafe2009-07-21 12:20:22 -040080#include "../../../include/linux/magic.h"
Ingo Molnar07800602009-04-20 15:00:56 +020081
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020082
Ingo Molnar07800602009-04-20 15:00:56 +020083#ifndef NO_ICONV
84#include <iconv.h>
85#endif
86
Arnaldo Carvalho de Melo28902842009-11-23 17:51:08 -020087extern const char *graph_line;
88extern const char *graph_dotted_line;
89
Ingo Molnar07800602009-04-20 15:00:56 +020090/* On most systems <limits.h> would have given us this, but
91 * not on some systems (e.g. GNU/Hurd).
92 */
93#ifndef PATH_MAX
94#define PATH_MAX 4096
95#endif
96
97#ifndef PRIuMAX
98#define PRIuMAX "llu"
99#endif
100
101#ifndef PRIu32
102#define PRIu32 "u"
103#endif
104
105#ifndef PRIx32
106#define PRIx32 "x"
107#endif
108
109#ifndef PATH_SEP
110#define PATH_SEP ':'
111#endif
112
113#ifndef STRIP_EXTENSION
114#define STRIP_EXTENSION ""
115#endif
116
117#ifndef has_dos_drive_prefix
118#define has_dos_drive_prefix(path) 0
119#endif
120
121#ifndef is_dir_sep
122#define is_dir_sep(c) ((c) == '/')
123#endif
124
125#ifdef __GNUC__
126#define NORETURN __attribute__((__noreturn__))
127#else
128#define NORETURN
129#ifndef __attribute__
130#define __attribute__(x)
131#endif
132#endif
133
134/* General helper functions */
135extern void usage(const char *err) NORETURN;
136extern void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
137extern int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
138extern void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
139
Masami Hiramatsu97698332009-10-16 20:08:18 -0400140#include "../../../include/linux/stringify.h"
141
142#define DIE_IF(cnd) \
143 do { if (cnd) \
144 die(" at (" __FILE__ ":" __stringify(__LINE__) "): " \
145 __stringify(cnd) "\n"); \
146 } while (0)
147
148
Ingo Molnar07800602009-04-20 15:00:56 +0200149extern void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN);
150
151extern int prefixcmp(const char *str, const char *prefix);
152extern time_t tm_to_time_t(const struct tm *tm);
153
154static inline const char *skip_prefix(const char *str, const char *prefix)
155{
156 size_t len = strlen(prefix);
157 return strncmp(str, prefix, len) ? NULL : str + len;
158}
159
160#if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
161
162#ifndef PROT_READ
163#define PROT_READ 1
164#define PROT_WRITE 2
165#define MAP_PRIVATE 1
166#define MAP_FAILED ((void*)-1)
167#endif
168
169#define mmap git_mmap
170#define munmap git_munmap
171extern void *git_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
172extern int git_munmap(void *start, size_t length);
173
174#else /* NO_MMAP || USE_WIN32_MMAP */
175
176#include <sys/mman.h>
177
178#endif /* NO_MMAP || USE_WIN32_MMAP */
179
180#ifdef NO_MMAP
181
182/* This value must be multiple of (pagesize * 2) */
183#define DEFAULT_PACKED_GIT_WINDOW_SIZE (1 * 1024 * 1024)
184
185#else /* NO_MMAP */
186
187/* This value must be multiple of (pagesize * 2) */
188#define DEFAULT_PACKED_GIT_WINDOW_SIZE \
189 (sizeof(void*) >= 8 \
190 ? 1 * 1024 * 1024 * 1024 \
191 : 32 * 1024 * 1024)
192
193#endif /* NO_MMAP */
194
195#ifdef NO_ST_BLOCKS_IN_STRUCT_STAT
196#define on_disk_bytes(st) ((st).st_size)
197#else
198#define on_disk_bytes(st) ((st).st_blocks * 512)
199#endif
200
201#define DEFAULT_PACKED_GIT_LIMIT \
202 ((1024L * 1024L) * (sizeof(void*) >= 8 ? 8192 : 256))
203
204#ifdef NO_PREAD
205#define pread git_pread
206extern ssize_t git_pread(int fd, void *buf, size_t count, off_t offset);
207#endif
208/*
209 * Forward decl that will remind us if its twin in cache.h changes.
210 * This function is used in compat/pread.c. But we can't include
211 * cache.h there.
212 */
213extern ssize_t read_in_full(int fd, void *buf, size_t count);
214
215#ifdef NO_SETENV
216#define setenv gitsetenv
217extern int gitsetenv(const char *, const char *, int);
218#endif
219
220#ifdef NO_MKDTEMP
221#define mkdtemp gitmkdtemp
222extern char *gitmkdtemp(char *);
223#endif
224
225#ifdef NO_UNSETENV
226#define unsetenv gitunsetenv
227extern void gitunsetenv(const char *);
228#endif
229
230#ifdef NO_STRCASESTR
231#define strcasestr gitstrcasestr
232extern char *gitstrcasestr(const char *haystack, const char *needle);
233#endif
234
235#ifdef NO_STRLCPY
236#define strlcpy gitstrlcpy
237extern size_t gitstrlcpy(char *, const char *, size_t);
238#endif
239
240#ifdef NO_STRTOUMAX
241#define strtoumax gitstrtoumax
242extern uintmax_t gitstrtoumax(const char *, char **, int);
243#endif
244
245#ifdef NO_HSTRERROR
246#define hstrerror githstrerror
247extern const char *githstrerror(int herror);
248#endif
249
250#ifdef NO_MEMMEM
251#define memmem gitmemmem
252void *gitmemmem(const void *haystack, size_t haystacklen,
253 const void *needle, size_t needlelen);
254#endif
255
256#ifdef FREAD_READS_DIRECTORIES
257#ifdef fopen
258#undef fopen
259#endif
260#define fopen(a,b) git_fopen(a,b)
261extern FILE *git_fopen(const char*, const char*);
262#endif
263
264#ifdef SNPRINTF_RETURNS_BOGUS
265#define snprintf git_snprintf
266extern int git_snprintf(char *str, size_t maxsize,
267 const char *format, ...);
268#define vsnprintf git_vsnprintf
269extern int git_vsnprintf(char *str, size_t maxsize,
270 const char *format, va_list ap);
271#endif
272
273#ifdef __GLIBC_PREREQ
274#if __GLIBC_PREREQ(2, 1)
275#define HAVE_STRCHRNUL
276#endif
277#endif
278
279#ifndef HAVE_STRCHRNUL
280#define strchrnul gitstrchrnul
281static inline char *gitstrchrnul(const char *s, int c)
282{
283 while (*s && *s != c)
284 s++;
285 return (char *)s;
286}
287#endif
288
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200289/*
290 * Wrappers:
291 */
292extern char *xstrdup(const char *str);
293extern void *xmalloc(size_t size);
294extern void *xmemdupz(const void *data, size_t len);
295extern char *xstrndup(const char *str, size_t len);
296extern void *xrealloc(void *ptr, size_t size);
297extern void *xcalloc(size_t nmemb, size_t size);
298extern void *xmmap(void *start, size_t length, int prot, int flags, int fd, off_t offset);
299extern ssize_t xread(int fd, void *buf, size_t len);
300extern ssize_t xwrite(int fd, const void *buf, size_t len);
301extern int xdup(int fd);
302extern FILE *xfdopen(int fd, const char *mode);
Ingo Molnar16f762a2009-05-27 09:10:38 +0200303extern int xmkstemp(char *template);
304
Ingo Molnar07800602009-04-20 15:00:56 +0200305static inline size_t xsize_t(off_t len)
306{
307 return (size_t)len;
308}
309
310static inline int has_extension(const char *filename, const char *ext)
311{
312 size_t len = strlen(filename);
313 size_t extlen = strlen(ext);
314 return len > extlen && !memcmp(filename + len - extlen, ext, extlen);
315}
316
317/* Sane ctype - no locale, and works with signed chars */
318#undef isascii
319#undef isspace
320#undef isdigit
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +0100321#undef isxdigit
Ingo Molnar07800602009-04-20 15:00:56 +0200322#undef isalpha
Frederic Weisbecker5f9c39d2009-08-17 16:18:08 +0200323#undef isprint
Ingo Molnar07800602009-04-20 15:00:56 +0200324#undef isalnum
325#undef tolower
326#undef toupper
327extern unsigned char sane_ctype[256];
Peter Zijlstraa73c7d82009-06-18 09:44:20 +0200328#define GIT_SPACE 0x01
329#define GIT_DIGIT 0x02
330#define GIT_ALPHA 0x04
331#define GIT_GLOB_SPECIAL 0x08
332#define GIT_REGEX_SPECIAL 0x10
333#define GIT_PRINT_EXTRA 0x20
334#define GIT_PRINT 0x3E
Ingo Molnar07800602009-04-20 15:00:56 +0200335#define sane_istest(x,mask) ((sane_ctype[(unsigned char)(x)] & (mask)) != 0)
336#define isascii(x) (((x) & ~0x7f) == 0)
337#define isspace(x) sane_istest(x,GIT_SPACE)
338#define isdigit(x) sane_istest(x,GIT_DIGIT)
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +0100339#define isxdigit(x) \
340 (sane_istest(toupper(x), GIT_ALPHA | GIT_DIGIT) && toupper(x) < 'G')
Ingo Molnar07800602009-04-20 15:00:56 +0200341#define isalpha(x) sane_istest(x,GIT_ALPHA)
342#define isalnum(x) sane_istest(x,GIT_ALPHA | GIT_DIGIT)
Peter Zijlstraa73c7d82009-06-18 09:44:20 +0200343#define isprint(x) sane_istest(x,GIT_PRINT)
Ingo Molnar07800602009-04-20 15:00:56 +0200344#define is_glob_special(x) sane_istest(x,GIT_GLOB_SPECIAL)
345#define is_regex_special(x) sane_istest(x,GIT_GLOB_SPECIAL | GIT_REGEX_SPECIAL)
346#define tolower(x) sane_case((unsigned char)(x), 0x20)
347#define toupper(x) sane_case((unsigned char)(x), 0)
348
349static inline int sane_case(int x, int high)
350{
351 if (sane_istest(x, GIT_ALPHA))
352 x = (x & ~0x20) | high;
353 return x;
354}
355
356static inline int strtoul_ui(char const *s, int base, unsigned int *result)
357{
358 unsigned long ul;
359 char *p;
360
361 errno = 0;
362 ul = strtoul(s, &p, base);
363 if (errno || *p || p == s || (unsigned int) ul != ul)
364 return -1;
365 *result = ul;
366 return 0;
367}
368
369static inline int strtol_i(char const *s, int base, int *result)
370{
371 long ul;
372 char *p;
373
374 errno = 0;
375 ul = strtol(s, &p, base);
376 if (errno || *p || p == s || (int) ul != ul)
377 return -1;
378 *result = ul;
379 return 0;
380}
381
382#ifdef INTERNAL_QSORT
383void git_qsort(void *base, size_t nmemb, size_t size,
384 int(*compar)(const void *, const void *));
385#define qsort git_qsort
386#endif
387
388#ifndef DIR_HAS_BSD_GROUP_SEMANTICS
389# define FORCE_DIR_SET_GID S_ISGID
390#else
391# define FORCE_DIR_SET_GID 0
392#endif
393
394#ifdef NO_NSEC
395#undef USE_NSEC
396#define ST_CTIME_NSEC(st) 0
397#define ST_MTIME_NSEC(st) 0
398#else
399#ifdef USE_ST_TIMESPEC
400#define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctimespec.tv_nsec))
401#define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtimespec.tv_nsec))
402#else
403#define ST_CTIME_NSEC(st) ((unsigned int)((st).st_ctim.tv_nsec))
404#define ST_MTIME_NSEC(st) ((unsigned int)((st).st_mtim.tv_nsec))
405#endif
406#endif
407
408#endif