]> git.ipfire.org Git - thirdparty/git.git/blame - wrapper.c
trace2: increment event format version
[thirdparty/git.git] / wrapper.c
CommitLineData
112db553
LT
1/*
2 * Various trivial helper wrappers around standard functions
3 */
4#include "cache.h"
b2141fc1 5#include "config.h"
112db553 6
f8bb1d94 7static int memory_limit_check(size_t size, int gentle)
d41489a6 8{
9927d962
SP
9 static size_t limit = 0;
10 if (!limit) {
11 limit = git_env_ulong("GIT_ALLOC_LIMIT", 0);
12 if (!limit)
13 limit = SIZE_MAX;
d41489a6 14 }
f0d89001 15 if (size > limit) {
f8bb1d94 16 if (gentle) {
f0d89001
JH
17 error("attempting to allocate %"PRIuMAX" over limit %"PRIuMAX,
18 (uintmax_t)size, (uintmax_t)limit);
f8bb1d94
NTND
19 return -1;
20 } else
f0d89001
JH
21 die("attempting to allocate %"PRIuMAX" over limit %"PRIuMAX,
22 (uintmax_t)size, (uintmax_t)limit);
f8bb1d94
NTND
23 }
24 return 0;
d41489a6
NTND
25}
26
112db553
LT
27char *xstrdup(const char *str)
28{
29 char *ret = strdup(str);
9827d4c1
JK
30 if (!ret)
31 die("Out of memory, strdup failed");
112db553
LT
32 return ret;
33}
34
f8bb1d94 35static void *do_xmalloc(size_t size, int gentle)
112db553 36{
d41489a6
NTND
37 void *ret;
38
f8bb1d94
NTND
39 if (memory_limit_check(size, gentle))
40 return NULL;
d41489a6 41 ret = malloc(size);
112db553
LT
42 if (!ret && !size)
43 ret = malloc(1);
44 if (!ret) {
9827d4c1
JK
45 if (!gentle)
46 die("Out of memory, malloc failed (tried to allocate %lu bytes)",
47 (unsigned long)size);
48 else {
49 error("Out of memory, malloc failed (tried to allocate %lu bytes)",
50 (unsigned long)size);
51 return NULL;
f8bb1d94 52 }
112db553
LT
53 }
54#ifdef XMALLOC_POISON
55 memset(ret, 0xA5, size);
56#endif
57 return ret;
58}
59
f8bb1d94
NTND
60void *xmalloc(size_t size)
61{
62 return do_xmalloc(size, 0);
63}
64
65static void *do_xmallocz(size_t size, int gentle)
5bf9219d
IL
66{
67 void *ret;
f8bb1d94
NTND
68 if (unsigned_add_overflows(size, 1)) {
69 if (gentle) {
70 error("Data too large to fit into virtual memory space.");
71 return NULL;
72 } else
73 die("Data too large to fit into virtual memory space.");
74 }
75 ret = do_xmalloc(size + 1, gentle);
76 if (ret)
77 ((char*)ret)[size] = 0;
5bf9219d
IL
78 return ret;
79}
80
f8bb1d94
NTND
81void *xmallocz(size_t size)
82{
83 return do_xmallocz(size, 0);
84}
85
86void *xmallocz_gently(size_t size)
87{
88 return do_xmallocz(size, 1);
89}
90
112db553
LT
91/*
92 * xmemdupz() allocates (len + 1) bytes of memory, duplicates "len" bytes of
93 * "data" to the allocated memory, zero terminates the allocated memory,
94 * and returns a pointer to the allocated memory. If the allocation fails,
95 * the program dies.
96 */
97void *xmemdupz(const void *data, size_t len)
98{
5bf9219d 99 return memcpy(xmallocz(len), data, len);
112db553
LT
100}
101
102char *xstrndup(const char *str, size_t len)
103{
104 char *p = memchr(str, '\0', len);
105 return xmemdupz(str, p ? p - str : len);
106}
107
14570dc6 108int xstrncmpz(const char *s, const char *t, size_t len)
109{
110 int res = strncmp(s, t, len);
111 if (res)
112 return res;
113 return s[len] == '\0' ? 0 : 1;
114}
115
112db553
LT
116void *xrealloc(void *ptr, size_t size)
117{
d41489a6
NTND
118 void *ret;
119
6479ea4a
JK
120 if (!size) {
121 free(ptr);
122 return xmalloc(0);
123 }
124
f8bb1d94 125 memory_limit_check(size, 0);
d41489a6 126 ret = realloc(ptr, size);
9827d4c1
JK
127 if (!ret)
128 die("Out of memory, realloc failed");
112db553
LT
129 return ret;
130}
131
132void *xcalloc(size_t nmemb, size_t size)
133{
d41489a6
NTND
134 void *ret;
135
e7792a74
JK
136 if (unsigned_mult_overflows(nmemb, size))
137 die("data too large to fit into virtual memory space");
138
f8bb1d94 139 memory_limit_check(size * nmemb, 0);
d41489a6 140 ret = calloc(nmemb, size);
112db553
LT
141 if (!ret && (!nmemb || !size))
142 ret = calloc(1, 1);
9827d4c1
JK
143 if (!ret)
144 die("Out of memory, calloc failed");
112db553
LT
145 return ret;
146}
147
0b6806b9
SP
148/*
149 * Limit size of IO chunks, because huge chunks only cause pain. OS X
150 * 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in
382d20e3 151 * the absence of bugs, large chunks can result in bad latencies when
0b6806b9 152 * you decide to kill the process.
a983e6ac
JH
153 *
154 * We pick 8 MiB as our default, but if the platform defines SSIZE_MAX
155 * that is smaller than that, clip it to SSIZE_MAX, as a call to
156 * read(2) or write(2) larger than that is allowed to fail. As the last
157 * resort, we allow a port to pass via CFLAGS e.g. "-DMAX_IO_SIZE=value"
158 * to override this, if the definition of SSIZE_MAX given by the platform
159 * is broken.
0b6806b9 160 */
a983e6ac
JH
161#ifndef MAX_IO_SIZE
162# define MAX_IO_SIZE_DEFAULT (8*1024*1024)
163# if defined(SSIZE_MAX) && (SSIZE_MAX < MAX_IO_SIZE_DEFAULT)
164# define MAX_IO_SIZE SSIZE_MAX
165# else
166# define MAX_IO_SIZE MAX_IO_SIZE_DEFAULT
167# endif
168#endif
0b6806b9 169
3ff53df7
PT
170/**
171 * xopen() is the same as open(), but it die()s if the open() fails.
172 */
173int xopen(const char *path, int oflag, ...)
174{
175 mode_t mode = 0;
176 va_list ap;
177
178 /*
179 * va_arg() will have undefined behavior if the specified type is not
180 * compatible with the argument type. Since integers are promoted to
181 * ints, we fetch the next argument as an int, and then cast it to a
182 * mode_t to avoid undefined behavior.
183 */
184 va_start(ap, oflag);
185 if (oflag & O_CREAT)
186 mode = va_arg(ap, int);
187 va_end(ap);
188
189 for (;;) {
190 int fd = open(path, oflag, mode);
191 if (fd >= 0)
192 return fd;
193 if (errno == EINTR)
194 continue;
195
a7439d0f
RS
196 if ((oflag & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
197 die_errno(_("unable to create '%s'"), path);
198 else if ((oflag & O_RDWR) == O_RDWR)
3ff53df7
PT
199 die_errno(_("could not open '%s' for reading and writing"), path);
200 else if ((oflag & O_WRONLY) == O_WRONLY)
201 die_errno(_("could not open '%s' for writing"), path);
202 else
203 die_errno(_("could not open '%s' for reading"), path);
204 }
205}
206
d751dd11
EW
207static int handle_nonblock(int fd, short poll_events, int err)
208{
209 struct pollfd pfd;
210
211 if (err != EAGAIN && err != EWOULDBLOCK)
212 return 0;
213
214 pfd.fd = fd;
215 pfd.events = poll_events;
216
217 /*
218 * no need to check for errors, here;
219 * a subsequent read/write will detect unrecoverable errors
220 */
221 poll(&pfd, 1, -1);
222 return 1;
223}
224
112db553
LT
225/*
226 * xread() is the same a read(), but it automatically restarts read()
227 * operations with a recoverable error (EAGAIN and EINTR). xread()
228 * DOES NOT GUARANTEE that "len" bytes is read even if the data is available.
229 */
230ssize_t xread(int fd, void *buf, size_t len)
231{
232 ssize_t nr;
0b6806b9 233 if (len > MAX_IO_SIZE)
7cd54d37 234 len = MAX_IO_SIZE;
112db553
LT
235 while (1) {
236 nr = read(fd, buf, len);
1079c4be
SB
237 if (nr < 0) {
238 if (errno == EINTR)
239 continue;
d751dd11 240 if (handle_nonblock(fd, POLLIN, errno))
c22f6202 241 continue;
1079c4be 242 }
112db553
LT
243 return nr;
244 }
245}
246
247/*
248 * xwrite() is the same a write(), but it automatically restarts write()
249 * operations with a recoverable error (EAGAIN and EINTR). xwrite() DOES NOT
250 * GUARANTEE that "len" bytes is written even if the operation is successful.
251 */
252ssize_t xwrite(int fd, const void *buf, size_t len)
253{
254 ssize_t nr;
0b6806b9 255 if (len > MAX_IO_SIZE)
7cd54d37 256 len = MAX_IO_SIZE;
112db553
LT
257 while (1) {
258 nr = write(fd, buf, len);
ef1cf016
EW
259 if (nr < 0) {
260 if (errno == EINTR)
261 continue;
d751dd11 262 if (handle_nonblock(fd, POLLOUT, errno))
ef1cf016 263 continue;
ef1cf016
EW
264 }
265
9aa91af0
YM
266 return nr;
267 }
268}
269
270/*
271 * xpread() is the same as pread(), but it automatically restarts pread()
272 * operations with a recoverable error (EAGAIN and EINTR). xpread() DOES
273 * NOT GUARANTEE that "len" bytes is read even if the data is available.
274 */
275ssize_t xpread(int fd, void *buf, size_t len, off_t offset)
276{
277 ssize_t nr;
278 if (len > MAX_IO_SIZE)
279 len = MAX_IO_SIZE;
280 while (1) {
281 nr = pread(fd, buf, len, offset);
282 if ((nr < 0) && (errno == EAGAIN || errno == EINTR))
112db553
LT
283 continue;
284 return nr;
285 }
286}
287
559e840b
JH
288ssize_t read_in_full(int fd, void *buf, size_t count)
289{
290 char *p = buf;
291 ssize_t total = 0;
292
293 while (count > 0) {
294 ssize_t loaded = xread(fd, p, count);
56d7c27a
JK
295 if (loaded < 0)
296 return -1;
297 if (loaded == 0)
298 return total;
559e840b
JH
299 count -= loaded;
300 p += loaded;
301 total += loaded;
302 }
303
304 return total;
305}
306
307ssize_t write_in_full(int fd, const void *buf, size_t count)
308{
309 const char *p = buf;
310 ssize_t total = 0;
311
312 while (count > 0) {
313 ssize_t written = xwrite(fd, p, count);
314 if (written < 0)
315 return -1;
316 if (!written) {
317 errno = ENOSPC;
318 return -1;
319 }
320 count -= written;
321 p += written;
322 total += written;
323 }
324
325 return total;
326}
327
426ddeea
YM
328ssize_t pread_in_full(int fd, void *buf, size_t count, off_t offset)
329{
330 char *p = buf;
331 ssize_t total = 0;
332
333 while (count > 0) {
334 ssize_t loaded = xpread(fd, p, count, offset);
335 if (loaded < 0)
336 return -1;
337 if (loaded == 0)
338 return total;
339 count -= loaded;
340 p += loaded;
341 total += loaded;
342 offset += loaded;
343 }
344
345 return total;
346}
347
112db553
LT
348int xdup(int fd)
349{
350 int ret = dup(fd);
351 if (ret < 0)
d824cbba 352 die_errno("dup failed");
112db553
LT
353 return ret;
354}
355
260eec29
PT
356/**
357 * xfopen() is the same as fopen(), but it die()s if the fopen() fails.
358 */
359FILE *xfopen(const char *path, const char *mode)
360{
361 for (;;) {
362 FILE *fp = fopen(path, mode);
363 if (fp)
364 return fp;
365 if (errno == EINTR)
366 continue;
367
368 if (*mode && mode[1] == '+')
369 die_errno(_("could not open '%s' for reading and writing"), path);
370 else if (*mode == 'w' || *mode == 'a')
371 die_errno(_("could not open '%s' for writing"), path);
372 else
373 die_errno(_("could not open '%s' for reading"), path);
374 }
375}
376
112db553
LT
377FILE *xfdopen(int fd, const char *mode)
378{
379 FILE *stream = fdopen(fd, mode);
380 if (stream == NULL)
d824cbba 381 die_errno("Out of memory? fdopen failed");
112db553
LT
382 return stream;
383}
384
79d7582e
JS
385FILE *fopen_for_writing(const char *path)
386{
387 FILE *ret = fopen(path, "w");
388
389 if (!ret && errno == EPERM) {
390 if (!unlink(path))
391 ret = fopen(path, "w");
392 else
393 errno = EPERM;
394 }
395 return ret;
396}
397
382fb07f
NTND
398static void warn_on_inaccessible(const char *path)
399{
400 warning_errno(_("unable to access '%s'"), path);
401}
402
11dc1fcb
NTND
403int warn_on_fopen_errors(const char *path)
404{
405 if (errno != ENOENT && errno != ENOTDIR) {
406 warn_on_inaccessible(path);
407 return -1;
408 }
409
410 return 0;
411}
412
e9d983f1
NTND
413FILE *fopen_or_warn(const char *path, const char *mode)
414{
415 FILE *fp = fopen(path, mode);
416
417 if (fp)
418 return fp;
419
420 warn_on_fopen_errors(path);
421 return NULL;
422}
423
eb78e23f 424int xmkstemp(char *filename_template)
112db553
LT
425{
426 int fd;
6cf6bb3e 427 char origtemplate[PATH_MAX];
eb78e23f 428 strlcpy(origtemplate, filename_template, sizeof(origtemplate));
112db553 429
eb78e23f 430 fd = mkstemp(filename_template);
6cf6bb3e
AE
431 if (fd < 0) {
432 int saved_errno = errno;
433 const char *nonrelative_template;
434
eb78e23f
BW
435 if (strlen(filename_template) != strlen(origtemplate))
436 filename_template = origtemplate;
6cf6bb3e 437
eb78e23f 438 nonrelative_template = absolute_path(filename_template);
6cf6bb3e
AE
439 errno = saved_errno;
440 die_errno("Unable to create temporary file '%s'",
441 nonrelative_template);
442 }
112db553
LT
443 return fd;
444}
39c68542 445
33f23936
JN
446/* Adapted from libiberty's mkstemp.c. */
447
448#undef TMP_MAX
449#define TMP_MAX 16384
450
451int git_mkstemps_mode(char *pattern, int suffix_len, int mode)
452{
453 static const char letters[] =
454 "abcdefghijklmnopqrstuvwxyz"
455 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
456 "0123456789";
53d687bf
JK
457 static const int num_letters = ARRAY_SIZE(letters) - 1;
458 static const char x_pattern[] = "XXXXXX";
459 static const int num_x = ARRAY_SIZE(x_pattern) - 1;
33f23936
JN
460 uint64_t value;
461 struct timeval tv;
eb78e23f 462 char *filename_template;
33f23936
JN
463 size_t len;
464 int fd, count;
465
466 len = strlen(pattern);
467
53d687bf 468 if (len < num_x + suffix_len) {
33f23936
JN
469 errno = EINVAL;
470 return -1;
471 }
472
53d687bf 473 if (strncmp(&pattern[len - num_x - suffix_len], x_pattern, num_x)) {
33f23936
JN
474 errno = EINVAL;
475 return -1;
476 }
477
478 /*
479 * Replace pattern's XXXXXX characters with randomness.
480 * Try TMP_MAX different filenames.
481 */
482 gettimeofday(&tv, NULL);
729a9b55 483 value = ((uint64_t)tv.tv_usec << 16) ^ tv.tv_sec ^ getpid();
53d687bf 484 filename_template = &pattern[len - num_x - suffix_len];
33f23936
JN
485 for (count = 0; count < TMP_MAX; ++count) {
486 uint64_t v = value;
54a80a9a 487 int i;
33f23936 488 /* Fill in the random bits. */
53d687bf 489 for (i = 0; i < num_x; i++) {
54a80a9a
AH
490 filename_template[i] = letters[v % num_letters];
491 v /= num_letters;
492 }
33f23936
JN
493
494 fd = open(pattern, O_CREAT | O_EXCL | O_RDWR, mode);
a2cb86c1 495 if (fd >= 0)
33f23936
JN
496 return fd;
497 /*
498 * Fatal error (EPERM, ENOSPC etc).
499 * It doesn't make sense to loop.
500 */
501 if (errno != EEXIST)
502 break;
503 /*
504 * This is a random value. It is only necessary that
505 * the next TMP_MAX values generated by adding 7777 to
506 * VALUE are different with (module 2^32).
507 */
508 value += 7777;
509 }
510 /* We return the null string if we can't find a unique file name. */
511 pattern[0] = '\0';
512 return -1;
513}
514
515int git_mkstemp_mode(char *pattern, int mode)
516{
517 /* mkstemp is just mkstemps with no suffix */
518 return git_mkstemps_mode(pattern, 0, mode);
519}
520
eb78e23f 521int xmkstemp_mode(char *filename_template, int mode)
b862b61c
MM
522{
523 int fd;
6cf6bb3e 524 char origtemplate[PATH_MAX];
eb78e23f 525 strlcpy(origtemplate, filename_template, sizeof(origtemplate));
b862b61c 526
eb78e23f 527 fd = git_mkstemp_mode(filename_template, mode);
6cf6bb3e
AE
528 if (fd < 0) {
529 int saved_errno = errno;
530 const char *nonrelative_template;
531
eb78e23f
BW
532 if (!filename_template[0])
533 filename_template = origtemplate;
6cf6bb3e 534
eb78e23f 535 nonrelative_template = absolute_path(filename_template);
6cf6bb3e
AE
536 errno = saved_errno;
537 die_errno("Unable to create temporary file '%s'",
538 nonrelative_template);
539 }
b862b61c
MM
540 return fd;
541}
542
10e13ec8 543static int warn_if_unremovable(const char *op, const char *file, int rc)
fc71db39 544{
1054af7d
RS
545 int err;
546 if (!rc || errno == ENOENT)
547 return 0;
548 err = errno;
0a288d1e 549 warning_errno("unable to %s '%s'", op, file);
1054af7d 550 errno = err;
fc71db39
AR
551 return rc;
552}
553
9ccc0c08
RS
554int unlink_or_msg(const char *file, struct strbuf *err)
555{
556 int rc = unlink(file);
557
558 assert(err);
559
560 if (!rc || errno == ENOENT)
561 return 0;
562
0a288d1e 563 strbuf_addf(err, "unable to unlink '%s': %s",
9ccc0c08
RS
564 file, strerror(errno));
565 return -1;
566}
567
10e13ec8
PC
568int unlink_or_warn(const char *file)
569{
570 return warn_if_unremovable("unlink", file, unlink(file));
571}
d1723296
PC
572
573int rmdir_or_warn(const char *file)
574{
575 return warn_if_unremovable("rmdir", file, rmdir(file));
576}
80d706af
PC
577
578int remove_or_warn(unsigned int mode, const char *file)
579{
580 return S_ISGITLINK(mode) ? rmdir_or_warn(file) : unlink_or_warn(file);
581}
2f705875 582
4698c8fe
JN
583static int access_error_is_ok(int err, unsigned flag)
584{
c7054209
JH
585 return (is_missing_file_error(err) ||
586 ((flag & ACCESS_EACCES_OK) && err == EACCES));
4698c8fe
JN
587}
588
589int access_or_warn(const char *path, int mode, unsigned flag)
ba8bd830
JK
590{
591 int ret = access(path, mode);
4698c8fe 592 if (ret && !access_error_is_ok(errno, flag))
55b38a48 593 warn_on_inaccessible(path);
ba8bd830
JK
594 return ret;
595}
596
4698c8fe 597int access_or_die(const char *path, int mode, unsigned flag)
96b9e0e3
JN
598{
599 int ret = access(path, mode);
4698c8fe 600 if (ret && !access_error_is_ok(errno, flag))
96b9e0e3
JN
601 die_errno(_("unable to access '%s'"), path);
602 return ret;
603}
604
aa14e980
RS
605char *xgetcwd(void)
606{
607 struct strbuf sb = STRBUF_INIT;
608 if (strbuf_getcwd(&sb))
609 die_errno(_("unable to get current working directory"));
610 return strbuf_detach(&sb, NULL);
611}
316e53e6 612
7b03c89e
JK
613int xsnprintf(char *dst, size_t max, const char *fmt, ...)
614{
615 va_list ap;
616 int len;
617
618 va_start(ap, fmt);
619 len = vsnprintf(dst, max, fmt, ap);
620 va_end(ap);
621
622 if (len < 0)
033abf97 623 BUG("your snprintf is broken");
7b03c89e 624 if (len >= max)
033abf97 625 BUG("attempt to snprintf into too-small buffer");
7b03c89e
JK
626 return len;
627}
628
52563d7e 629void write_file_buf(const char *path, const char *buf, size_t len)
316e53e6 630{
52563d7e 631 int fd = xopen(path, O_WRONLY | O_CREAT | O_TRUNC, 0666);
06f46f23 632 if (write_in_full(fd, buf, len) < 0)
0a288d1e 633 die_errno(_("could not write to '%s'"), path);
52563d7e 634 if (close(fd))
0a288d1e 635 die_errno(_("could not close '%s'"), path);
316e53e6 636}
2024d317 637
ef22318c 638void write_file(const char *path, const char *fmt, ...)
12d6ce1d 639{
12d6ce1d 640 va_list params;
316e53e6 641 struct strbuf sb = STRBUF_INIT;
12d6ce1d
JH
642
643 va_start(params, fmt);
ef22318c 644 strbuf_vaddf(&sb, fmt, params);
12d6ce1d 645 va_end(params);
12d6ce1d 646
ef22318c 647 strbuf_complete_line(&sb);
12d6ce1d 648
52563d7e 649 write_file_buf(path, sb.buf, sb.len);
ef22318c 650 strbuf_release(&sb);
12d6ce1d
JH
651}
652
2024d317
JS
653void sleep_millisec(int millisec)
654{
655 poll(NULL, 0, millisec);
656}
5781a9a2
DT
657
658int xgethostname(char *buf, size_t len)
659{
660 /*
661 * If the full hostname doesn't fit in buf, POSIX does not
662 * specify whether the buffer will be null-terminated, so to
663 * be safe, do it ourselves.
664 */
665 int ret = gethostname(buf, len);
666 if (!ret)
667 buf[len - 1] = 0;
668 return ret;
669}
e3b1e3bd
PB
670
671int is_empty_or_missing_file(const char *filename)
672{
673 struct stat st;
674
675 if (stat(filename, &st) < 0) {
676 if (errno == ENOENT)
677 return 1;
678 die_errno(_("could not stat %s"), filename);
679 }
680
681 return !st.st_size;
682}
00611d84
JK
683
684int open_nofollow(const char *path, int flags)
685{
686#ifdef O_NOFOLLOW
687 return open(path, flags | O_NOFOLLOW);
688#else
689 struct stat st;
690 if (lstat(path, &st) < 0)
691 return -1;
692 if (S_ISLNK(st.st_mode)) {
693 errno = ELOOP;
694 return -1;
695 }
696 return open(path, flags);
697#endif
698}