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