blob: e1eaef2e1641457fabc8ab00b68d3b6b3f0e2354 [file] [log] [blame]
Linus Torvalds112db552008-06-22 12:19:25 -07001/*
2 * Various trivial helper wrappers around standard functions
3 */
4#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07005#include "config.h"
Linus Torvalds112db552008-06-22 12:19:25 -07006
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +07007static int memory_limit_check(size_t size, int gentle)
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +07008{
Steffen Prohaska9927d962014-08-26 17:23:22 +02009 static size_t limit = 0;
10 if (!limit) {
11 limit = git_env_ulong("GIT_ALLOC_LIMIT", 0);
12 if (!limit)
13 limit = SIZE_MAX;
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +070014 }
Junio C Hamanof0d89002014-10-08 13:05:32 -070015 if (size > limit) {
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070016 if (gentle) {
Junio C Hamanof0d89002014-10-08 13:05:32 -070017 error("attempting to allocate %"PRIuMAX" over limit %"PRIuMAX,
18 (uintmax_t)size, (uintmax_t)limit);
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070019 return -1;
20 } else
Junio C Hamanof0d89002014-10-08 13:05:32 -070021 die("attempting to allocate %"PRIuMAX" over limit %"PRIuMAX,
22 (uintmax_t)size, (uintmax_t)limit);
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070023 }
24 return 0;
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +070025}
26
Linus Torvalds112db552008-06-22 12:19:25 -070027char *xstrdup(const char *str)
28{
29 char *ret = strdup(str);
Jeff King9827d4c2019-08-12 16:50:21 -040030 if (!ret)
31 die("Out of memory, strdup failed");
Linus Torvalds112db552008-06-22 12:19:25 -070032 return ret;
33}
34
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070035static void *do_xmalloc(size_t size, int gentle)
Linus Torvalds112db552008-06-22 12:19:25 -070036{
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +070037 void *ret;
38
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070039 if (memory_limit_check(size, gentle))
40 return NULL;
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +070041 ret = malloc(size);
Linus Torvalds112db552008-06-22 12:19:25 -070042 if (!ret && !size)
43 ret = malloc(1);
44 if (!ret) {
Jeff King9827d4c2019-08-12 16:50:21 -040045 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;
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070052 }
Linus Torvalds112db552008-06-22 12:19:25 -070053 }
54#ifdef XMALLOC_POISON
55 memset(ret, 0xA5, size);
56#endif
57 return ret;
58}
59
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070060void *xmalloc(size_t size)
61{
62 return do_xmalloc(size, 0);
63}
64
65static void *do_xmallocz(size_t size, int gentle)
Ilari Liusvaara5bf92192010-01-26 20:24:12 +020066{
67 void *ret;
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070068 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;
Ilari Liusvaara5bf92192010-01-26 20:24:12 +020078 return ret;
79}
80
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +070081void *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
Linus Torvalds112db552008-06-22 12:19:25 -070091/*
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{
Ilari Liusvaara5bf92192010-01-26 20:24:12 +020099 return memcpy(xmallocz(len), data, len);
Linus Torvalds112db552008-06-22 12:19:25 -0700100}
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
108void *xrealloc(void *ptr, size_t size)
109{
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +0700110 void *ret;
111
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +0700112 memory_limit_check(size, 0);
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +0700113 ret = realloc(ptr, size);
Linus Torvalds112db552008-06-22 12:19:25 -0700114 if (!ret && !size)
115 ret = realloc(ptr, 1);
Jeff King9827d4c2019-08-12 16:50:21 -0400116 if (!ret)
117 die("Out of memory, realloc failed");
Linus Torvalds112db552008-06-22 12:19:25 -0700118 return ret;
119}
120
121void *xcalloc(size_t nmemb, size_t size)
122{
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +0700123 void *ret;
124
Jeff Kinge7792a72016-02-22 17:43:18 -0500125 if (unsigned_mult_overflows(nmemb, size))
126 die("data too large to fit into virtual memory space");
127
Nguyễn Thái Ngọc Duyf8bb1d92014-08-16 10:08:02 +0700128 memory_limit_check(size * nmemb, 0);
Nguyễn Thái Ngọc Duyd41489a2012-03-07 17:54:16 +0700129 ret = calloc(nmemb, size);
Linus Torvalds112db552008-06-22 12:19:25 -0700130 if (!ret && (!nmemb || !size))
131 ret = calloc(1, 1);
Jeff King9827d4c2019-08-12 16:50:21 -0400132 if (!ret)
133 die("Out of memory, calloc failed");
Linus Torvalds112db552008-06-22 12:19:25 -0700134 return ret;
135}
136
Linus Torvalds112db552008-06-22 12:19:25 -0700137/*
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200138 * Limit size of IO chunks, because huge chunks only cause pain. OS X
139 * 64-bit is buggy, returning EINVAL if len >= INT_MAX; and even in
Masanari Iida382d20e2013-11-13 00:17:42 +0900140 * the absence of bugs, large chunks can result in bad latencies when
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200141 * you decide to kill the process.
Junio C Hamanoa983e6a2015-02-11 13:13:10 -0800142 *
143 * We pick 8 MiB as our default, but if the platform defines SSIZE_MAX
144 * that is smaller than that, clip it to SSIZE_MAX, as a call to
145 * read(2) or write(2) larger than that is allowed to fail. As the last
146 * resort, we allow a port to pass via CFLAGS e.g. "-DMAX_IO_SIZE=value"
147 * to override this, if the definition of SSIZE_MAX given by the platform
148 * is broken.
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200149 */
Junio C Hamanoa983e6a2015-02-11 13:13:10 -0800150#ifndef MAX_IO_SIZE
151# define MAX_IO_SIZE_DEFAULT (8*1024*1024)
152# if defined(SSIZE_MAX) && (SSIZE_MAX < MAX_IO_SIZE_DEFAULT)
153# define MAX_IO_SIZE SSIZE_MAX
154# else
155# define MAX_IO_SIZE MAX_IO_SIZE_DEFAULT
156# endif
157#endif
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200158
Paul Tan3ff53df2015-08-04 21:51:22 +0800159/**
160 * xopen() is the same as open(), but it die()s if the open() fails.
161 */
162int xopen(const char *path, int oflag, ...)
163{
164 mode_t mode = 0;
165 va_list ap;
166
167 /*
168 * va_arg() will have undefined behavior if the specified type is not
169 * compatible with the argument type. Since integers are promoted to
170 * ints, we fetch the next argument as an int, and then cast it to a
171 * mode_t to avoid undefined behavior.
172 */
173 va_start(ap, oflag);
174 if (oflag & O_CREAT)
175 mode = va_arg(ap, int);
176 va_end(ap);
177
178 for (;;) {
179 int fd = open(path, oflag, mode);
180 if (fd >= 0)
181 return fd;
182 if (errno == EINTR)
183 continue;
184
185 if ((oflag & O_RDWR) == O_RDWR)
186 die_errno(_("could not open '%s' for reading and writing"), path);
187 else if ((oflag & O_WRONLY) == O_WRONLY)
188 die_errno(_("could not open '%s' for writing"), path);
189 else
190 die_errno(_("could not open '%s' for reading"), path);
191 }
192}
193
Eric Wongd751dd12016-07-10 08:20:46 +0000194static int handle_nonblock(int fd, short poll_events, int err)
195{
196 struct pollfd pfd;
197
198 if (err != EAGAIN && err != EWOULDBLOCK)
199 return 0;
200
201 pfd.fd = fd;
202 pfd.events = poll_events;
203
204 /*
205 * no need to check for errors, here;
206 * a subsequent read/write will detect unrecoverable errors
207 */
208 poll(&pfd, 1, -1);
209 return 1;
210}
211
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200212/*
Linus Torvalds112db552008-06-22 12:19:25 -0700213 * xread() is the same a read(), but it automatically restarts read()
214 * operations with a recoverable error (EAGAIN and EINTR). xread()
215 * DOES NOT GUARANTEE that "len" bytes is read even if the data is available.
216 */
217ssize_t xread(int fd, void *buf, size_t len)
218{
219 ssize_t nr;
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200220 if (len > MAX_IO_SIZE)
221 len = MAX_IO_SIZE;
Linus Torvalds112db552008-06-22 12:19:25 -0700222 while (1) {
223 nr = read(fd, buf, len);
Stefan Beller1079c4b2015-12-15 16:04:07 -0800224 if (nr < 0) {
225 if (errno == EINTR)
226 continue;
Eric Wongd751dd12016-07-10 08:20:46 +0000227 if (handle_nonblock(fd, POLLIN, errno))
Eric Wongc22f6202016-06-27 03:56:35 +0000228 continue;
Stefan Beller1079c4b2015-12-15 16:04:07 -0800229 }
Linus Torvalds112db552008-06-22 12:19:25 -0700230 return nr;
231 }
232}
233
234/*
235 * xwrite() is the same a write(), but it automatically restarts write()
236 * operations with a recoverable error (EAGAIN and EINTR). xwrite() DOES NOT
237 * GUARANTEE that "len" bytes is written even if the operation is successful.
238 */
239ssize_t xwrite(int fd, const void *buf, size_t len)
240{
241 ssize_t nr;
Steffen Prohaska0b6806b2013-08-20 08:43:54 +0200242 if (len > MAX_IO_SIZE)
243 len = MAX_IO_SIZE;
Linus Torvalds112db552008-06-22 12:19:25 -0700244 while (1) {
245 nr = write(fd, buf, len);
Eric Wongef1cf012016-06-26 23:21:12 +0000246 if (nr < 0) {
247 if (errno == EINTR)
248 continue;
Eric Wongd751dd12016-07-10 08:20:46 +0000249 if (handle_nonblock(fd, POLLOUT, errno))
Eric Wongef1cf012016-06-26 23:21:12 +0000250 continue;
Eric Wongef1cf012016-06-26 23:21:12 +0000251 }
252
Linus Torvalds112db552008-06-22 12:19:25 -0700253 return nr;
254 }
255}
256
Yiannis Marangos9aa91af2014-04-10 21:54:12 +0300257/*
258 * xpread() is the same as pread(), but it automatically restarts pread()
259 * operations with a recoverable error (EAGAIN and EINTR). xpread() DOES
260 * NOT GUARANTEE that "len" bytes is read even if the data is available.
261 */
262ssize_t xpread(int fd, void *buf, size_t len, off_t offset)
263{
264 ssize_t nr;
265 if (len > MAX_IO_SIZE)
266 len = MAX_IO_SIZE;
267 while (1) {
268 nr = pread(fd, buf, len, offset);
269 if ((nr < 0) && (errno == EAGAIN || errno == EINTR))
270 continue;
271 return nr;
272 }
273}
274
Junio C Hamano559e8402008-07-20 16:13:05 -0700275ssize_t read_in_full(int fd, void *buf, size_t count)
276{
277 char *p = buf;
278 ssize_t total = 0;
279
280 while (count > 0) {
281 ssize_t loaded = xread(fd, p, count);
Jeff King56d7c272011-05-26 12:30:27 -0400282 if (loaded < 0)
283 return -1;
284 if (loaded == 0)
285 return total;
Junio C Hamano559e8402008-07-20 16:13:05 -0700286 count -= loaded;
287 p += loaded;
288 total += loaded;
289 }
290
291 return total;
292}
293
294ssize_t write_in_full(int fd, const void *buf, size_t count)
295{
296 const char *p = buf;
297 ssize_t total = 0;
298
299 while (count > 0) {
300 ssize_t written = xwrite(fd, p, count);
301 if (written < 0)
302 return -1;
303 if (!written) {
304 errno = ENOSPC;
305 return -1;
306 }
307 count -= written;
308 p += written;
309 total += written;
310 }
311
312 return total;
313}
314
Yiannis Marangos426ddee2014-04-10 21:31:21 +0300315ssize_t pread_in_full(int fd, void *buf, size_t count, off_t offset)
316{
317 char *p = buf;
318 ssize_t total = 0;
319
320 while (count > 0) {
321 ssize_t loaded = xpread(fd, p, count, offset);
322 if (loaded < 0)
323 return -1;
324 if (loaded == 0)
325 return total;
326 count -= loaded;
327 p += loaded;
328 total += loaded;
329 offset += loaded;
330 }
331
332 return total;
333}
334
Linus Torvalds112db552008-06-22 12:19:25 -0700335int xdup(int fd)
336{
337 int ret = dup(fd);
338 if (ret < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200339 die_errno("dup failed");
Linus Torvalds112db552008-06-22 12:19:25 -0700340 return ret;
341}
342
Paul Tan260eec22015-08-04 21:51:23 +0800343/**
344 * xfopen() is the same as fopen(), but it die()s if the fopen() fails.
345 */
346FILE *xfopen(const char *path, const char *mode)
347{
348 for (;;) {
349 FILE *fp = fopen(path, mode);
350 if (fp)
351 return fp;
352 if (errno == EINTR)
353 continue;
354
355 if (*mode && mode[1] == '+')
356 die_errno(_("could not open '%s' for reading and writing"), path);
357 else if (*mode == 'w' || *mode == 'a')
358 die_errno(_("could not open '%s' for writing"), path);
359 else
360 die_errno(_("could not open '%s' for reading"), path);
361 }
362}
363
Linus Torvalds112db552008-06-22 12:19:25 -0700364FILE *xfdopen(int fd, const char *mode)
365{
366 FILE *stream = fdopen(fd, mode);
367 if (stream == NULL)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200368 die_errno("Out of memory? fdopen failed");
Linus Torvalds112db552008-06-22 12:19:25 -0700369 return stream;
370}
371
Johannes Schindelin79d75822016-01-06 14:09:43 +0100372FILE *fopen_for_writing(const char *path)
373{
374 FILE *ret = fopen(path, "w");
375
376 if (!ret && errno == EPERM) {
377 if (!unlink(path))
378 ret = fopen(path, "w");
379 else
380 errno = EPERM;
381 }
382 return ret;
383}
384
Nguyễn Thái Ngọc Duy382fb072017-05-08 17:40:37 +0700385static void warn_on_inaccessible(const char *path)
386{
387 warning_errno(_("unable to access '%s'"), path);
388}
389
Nguyễn Thái Ngọc Duy11dc1fc2017-05-03 17:16:49 +0700390int warn_on_fopen_errors(const char *path)
391{
392 if (errno != ENOENT && errno != ENOTDIR) {
393 warn_on_inaccessible(path);
394 return -1;
395 }
396
397 return 0;
398}
399
Nguyễn Thái Ngọc Duye9d983f2017-05-03 17:16:50 +0700400FILE *fopen_or_warn(const char *path, const char *mode)
401{
402 FILE *fp = fopen(path, mode);
403
404 if (fp)
405 return fp;
406
407 warn_on_fopen_errors(path);
408 return NULL;
409}
410
Brandon Williamseb78e232018-02-14 10:59:56 -0800411int xmkstemp(char *filename_template)
Linus Torvalds112db552008-06-22 12:19:25 -0700412{
413 int fd;
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100414 char origtemplate[PATH_MAX];
Brandon Williamseb78e232018-02-14 10:59:56 -0800415 strlcpy(origtemplate, filename_template, sizeof(origtemplate));
Linus Torvalds112db552008-06-22 12:19:25 -0700416
Brandon Williamseb78e232018-02-14 10:59:56 -0800417 fd = mkstemp(filename_template);
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100418 if (fd < 0) {
419 int saved_errno = errno;
420 const char *nonrelative_template;
421
Brandon Williamseb78e232018-02-14 10:59:56 -0800422 if (strlen(filename_template) != strlen(origtemplate))
423 filename_template = origtemplate;
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100424
Brandon Williamseb78e232018-02-14 10:59:56 -0800425 nonrelative_template = absolute_path(filename_template);
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100426 errno = saved_errno;
427 die_errno("Unable to create temporary file '%s'",
428 nonrelative_template);
429 }
Linus Torvalds112db552008-06-22 12:19:25 -0700430 return fd;
431}
Linus Torvalds39c68542009-01-07 19:54:47 -0800432
Jonathan Nieder33f23932010-11-06 06:46:31 -0500433/* Adapted from libiberty's mkstemp.c. */
434
435#undef TMP_MAX
436#define TMP_MAX 16384
437
438int git_mkstemps_mode(char *pattern, int suffix_len, int mode)
439{
440 static const char letters[] =
441 "abcdefghijklmnopqrstuvwxyz"
442 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
443 "0123456789";
Jeff King53d687b2019-10-02 11:32:07 -0400444 static const int num_letters = ARRAY_SIZE(letters) - 1;
445 static const char x_pattern[] = "XXXXXX";
446 static const int num_x = ARRAY_SIZE(x_pattern) - 1;
Jonathan Nieder33f23932010-11-06 06:46:31 -0500447 uint64_t value;
448 struct timeval tv;
Brandon Williamseb78e232018-02-14 10:59:56 -0800449 char *filename_template;
Jonathan Nieder33f23932010-11-06 06:46:31 -0500450 size_t len;
451 int fd, count;
452
453 len = strlen(pattern);
454
Jeff King53d687b2019-10-02 11:32:07 -0400455 if (len < num_x + suffix_len) {
Jonathan Nieder33f23932010-11-06 06:46:31 -0500456 errno = EINVAL;
457 return -1;
458 }
459
Jeff King53d687b2019-10-02 11:32:07 -0400460 if (strncmp(&pattern[len - num_x - suffix_len], x_pattern, num_x)) {
Jonathan Nieder33f23932010-11-06 06:46:31 -0500461 errno = EINVAL;
462 return -1;
463 }
464
465 /*
466 * Replace pattern's XXXXXX characters with randomness.
467 * Try TMP_MAX different filenames.
468 */
469 gettimeofday(&tv, NULL);
Carlo Marcelo Arenas Belón729a9b52019-06-16 11:40:03 -0700470 value = ((uint64_t)tv.tv_usec << 16) ^ tv.tv_sec ^ getpid();
Jeff King53d687b2019-10-02 11:32:07 -0400471 filename_template = &pattern[len - num_x - suffix_len];
Jonathan Nieder33f23932010-11-06 06:46:31 -0500472 for (count = 0; count < TMP_MAX; ++count) {
473 uint64_t v = value;
Alex Henrie54a80a92019-09-30 20:29:36 -0600474 int i;
Jonathan Nieder33f23932010-11-06 06:46:31 -0500475 /* Fill in the random bits. */
Jeff King53d687b2019-10-02 11:32:07 -0400476 for (i = 0; i < num_x; i++) {
Alex Henrie54a80a92019-09-30 20:29:36 -0600477 filename_template[i] = letters[v % num_letters];
478 v /= num_letters;
479 }
Jonathan Nieder33f23932010-11-06 06:46:31 -0500480
481 fd = open(pattern, O_CREAT | O_EXCL | O_RDWR, mode);
Dale R. Worleya2cb86c2013-07-12 10:58:35 +0200482 if (fd >= 0)
Jonathan Nieder33f23932010-11-06 06:46:31 -0500483 return fd;
484 /*
485 * Fatal error (EPERM, ENOSPC etc).
486 * It doesn't make sense to loop.
487 */
488 if (errno != EEXIST)
489 break;
490 /*
491 * This is a random value. It is only necessary that
492 * the next TMP_MAX values generated by adding 7777 to
493 * VALUE are different with (module 2^32).
494 */
495 value += 7777;
496 }
497 /* We return the null string if we can't find a unique file name. */
498 pattern[0] = '\0';
499 return -1;
500}
501
502int git_mkstemp_mode(char *pattern, int mode)
503{
504 /* mkstemp is just mkstemps with no suffix */
505 return git_mkstemps_mode(pattern, 0, mode);
506}
507
Brandon Williamseb78e232018-02-14 10:59:56 -0800508int xmkstemp_mode(char *filename_template, int mode)
Matthieu Moyb862b612010-02-22 23:32:13 +0100509{
510 int fd;
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100511 char origtemplate[PATH_MAX];
Brandon Williamseb78e232018-02-14 10:59:56 -0800512 strlcpy(origtemplate, filename_template, sizeof(origtemplate));
Matthieu Moyb862b612010-02-22 23:32:13 +0100513
Brandon Williamseb78e232018-02-14 10:59:56 -0800514 fd = git_mkstemp_mode(filename_template, mode);
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100515 if (fd < 0) {
516 int saved_errno = errno;
517 const char *nonrelative_template;
518
Brandon Williamseb78e232018-02-14 10:59:56 -0800519 if (!filename_template[0])
520 filename_template = origtemplate;
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100521
Brandon Williamseb78e232018-02-14 10:59:56 -0800522 nonrelative_template = absolute_path(filename_template);
Arnout Engelen6cf6bb32010-12-18 22:28:00 +0100523 errno = saved_errno;
524 die_errno("Unable to create temporary file '%s'",
525 nonrelative_template);
526 }
Matthieu Moyb862b612010-02-22 23:32:13 +0100527 return fd;
528}
529
Peter Collingbourne10e13ec2010-03-26 15:25:32 +0000530static int warn_if_unremovable(const char *op, const char *file, int rc)
Alex Riesenfc71db32009-04-29 23:21:46 +0200531{
Ronnie Sahlberg1054af72014-07-16 11:01:18 -0700532 int err;
533 if (!rc || errno == ENOENT)
534 return 0;
535 err = errno;
Simon Ruderich0a288d12017-11-01 15:44:44 +0100536 warning_errno("unable to %s '%s'", op, file);
Ronnie Sahlberg1054af72014-07-16 11:01:18 -0700537 errno = err;
Alex Riesenfc71db32009-04-29 23:21:46 +0200538 return rc;
539}
540
Ronnie Sahlberg9ccc0c02014-07-16 11:20:36 -0700541int unlink_or_msg(const char *file, struct strbuf *err)
542{
543 int rc = unlink(file);
544
545 assert(err);
546
547 if (!rc || errno == ENOENT)
548 return 0;
549
Simon Ruderich0a288d12017-11-01 15:44:44 +0100550 strbuf_addf(err, "unable to unlink '%s': %s",
Ronnie Sahlberg9ccc0c02014-07-16 11:20:36 -0700551 file, strerror(errno));
552 return -1;
553}
554
Peter Collingbourne10e13ec2010-03-26 15:25:32 +0000555int unlink_or_warn(const char *file)
556{
557 return warn_if_unremovable("unlink", file, unlink(file));
558}
Peter Collingbourned1723292010-03-26 15:25:33 +0000559
560int rmdir_or_warn(const char *file)
561{
562 return warn_if_unremovable("rmdir", file, rmdir(file));
563}
Peter Collingbourne80d706a2010-03-26 15:25:34 +0000564
565int remove_or_warn(unsigned int mode, const char *file)
566{
567 return S_ISGITLINK(mode) ? rmdir_or_warn(file) : unlink_or_warn(file);
568}
Jeff King2f705872012-05-21 19:10:20 -0400569
Jonathan Nieder4698c8f2013-04-12 14:03:18 -0700570static int access_error_is_ok(int err, unsigned flag)
571{
Junio C Hamanoc7054202017-05-30 09:23:33 +0900572 return (is_missing_file_error(err) ||
573 ((flag & ACCESS_EACCES_OK) && err == EACCES));
Jonathan Nieder4698c8f2013-04-12 14:03:18 -0700574}
575
576int access_or_warn(const char *path, int mode, unsigned flag)
Jeff Kingba8bd832012-08-21 02:10:59 -0400577{
578 int ret = access(path, mode);
Jonathan Nieder4698c8f2013-04-12 14:03:18 -0700579 if (ret && !access_error_is_ok(errno, flag))
Junio C Hamano55b38a42012-08-21 14:52:07 -0700580 warn_on_inaccessible(path);
Jeff Kingba8bd832012-08-21 02:10:59 -0400581 return ret;
582}
583
Jonathan Nieder4698c8f2013-04-12 14:03:18 -0700584int access_or_die(const char *path, int mode, unsigned flag)
Jonathan Nieder96b9e0e2012-10-13 17:04:02 -0700585{
586 int ret = access(path, mode);
Jonathan Nieder4698c8f2013-04-12 14:03:18 -0700587 if (ret && !access_error_is_ok(errno, flag))
Jonathan Nieder96b9e0e2012-10-13 17:04:02 -0700588 die_errno(_("unable to access '%s'"), path);
589 return ret;
590}
591
René Scharfeaa14e982014-07-28 20:29:50 +0200592char *xgetcwd(void)
593{
594 struct strbuf sb = STRBUF_INIT;
595 if (strbuf_getcwd(&sb))
596 die_errno(_("unable to get current working directory"));
597 return strbuf_detach(&sb, NULL);
598}
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700599
Jeff King7b03c892015-09-24 17:05:37 -0400600int xsnprintf(char *dst, size_t max, const char *fmt, ...)
601{
602 va_list ap;
603 int len;
604
605 va_start(ap, fmt);
606 len = vsnprintf(dst, max, fmt, ap);
607 va_end(ap);
608
609 if (len < 0)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200610 BUG("your snprintf is broken");
Jeff King7b03c892015-09-24 17:05:37 -0400611 if (len >= max)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200612 BUG("attempt to snprintf into too-small buffer");
Jeff King7b03c892015-09-24 17:05:37 -0400613 return len;
614}
615
Jeff King52563d72016-07-08 05:12:22 -0400616void write_file_buf(const char *path, const char *buf, size_t len)
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700617{
Jeff King52563d72016-07-08 05:12:22 -0400618 int fd = xopen(path, O_WRONLY | O_CREAT | O_TRUNC, 0666);
Jeff King06f46f22017-09-13 13:16:03 -0400619 if (write_in_full(fd, buf, len) < 0)
Simon Ruderich0a288d12017-11-01 15:44:44 +0100620 die_errno(_("could not write to '%s'"), path);
Jeff King52563d72016-07-08 05:12:22 -0400621 if (close(fd))
Simon Ruderich0a288d12017-11-01 15:44:44 +0100622 die_errno(_("could not close '%s'"), path);
Jeff King52563d72016-07-08 05:12:22 -0400623}
624
Jeff Kingef223182016-07-08 05:09:34 -0400625void write_file(const char *path, const char *fmt, ...)
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700626{
Jeff Kingef223182016-07-08 05:09:34 -0400627 va_list params;
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700628 struct strbuf sb = STRBUF_INIT;
Jeff Kingef223182016-07-08 05:09:34 -0400629
630 va_start(params, fmt);
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700631 strbuf_vaddf(&sb, fmt, params);
Jeff Kingef223182016-07-08 05:09:34 -0400632 va_end(params);
633
Junio C Hamanoe7ffa382015-08-24 09:39:48 -0700634 strbuf_complete_line(&sb);
Jeff King52563d72016-07-08 05:12:22 -0400635
636 write_file_buf(path, sb.buf, sb.len);
Nguyễn Thái Ngọc Duy316e53e2014-11-30 15:24:45 +0700637 strbuf_release(&sb);
Junio C Hamano12d6ce12015-08-24 13:03:07 -0700638}
639
Johannes Sixt2024d312015-06-05 21:45:05 +0200640void sleep_millisec(int millisec)
641{
642 poll(NULL, 0, millisec);
643}
David Turner5781a9a2017-04-18 17:57:43 -0400644
645int xgethostname(char *buf, size_t len)
646{
647 /*
648 * If the full hostname doesn't fit in buf, POSIX does not
649 * specify whether the buffer will be null-terminated, so to
650 * be safe, do it ourselves.
651 */
652 int ret = gethostname(buf, len);
653 if (!ret)
654 buf[len - 1] = 0;
655 return ret;
656}
Pranit Bauvae3b1e3b2019-01-02 07:38:32 -0800657
658int is_empty_or_missing_file(const char *filename)
659{
660 struct stat st;
661
662 if (stat(filename, &st) < 0) {
663 if (errno == ENOENT)
664 return 1;
665 die_errno(_("could not stat %s"), filename);
666 }
667
668 return !st.st_size;
669}