fileops.c 24.8 KB
Newer Older
Vicent Marti committed
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
Vicent Marti committed
3 4 5 6
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
7
#include "common.h"
8
#include "fileops.h"
9
#include <ctype.h>
10 11 12
#if GIT_WIN32
#include "win32/findfile.h"
#endif
13

14
int git_futils_mkpath2file(const char *file_path, const mode_t mode)
15
{
16
	return git_futils_mkdir(
17 18
		file_path, NULL, mode,
		GIT_MKDIR_PATH | GIT_MKDIR_SKIP_LAST | GIT_MKDIR_VERIFY_DIR);
19 20
}

21
int git_futils_mktmp(git_buf *path_out, const char *filename)
Vicent Marti committed
22 23 24
{
	int fd;

25 26 27 28
	git_buf_sets(path_out, filename);
	git_buf_puts(path_out, "_git2_XXXXXX");

	if (git_buf_oom(path_out))
29
		return -1;
Vicent Marti committed
30

31 32
	if ((fd = p_mkstemp(path_out->ptr)) < 0) {
		giterr_set(GITERR_OS,
33
			"Failed to create temporary file '%s'", path_out->ptr);
34 35
		return -1;
	}
Vicent Marti committed
36

37
	return fd;
Vicent Marti committed
38 39
}

40
int git_futils_creat_withpath(const char *path, const mode_t dirmode, const mode_t mode)
41
{
42
	int fd;
43

44 45 46 47 48
	if (git_futils_mkpath2file(path, dirmode) < 0)
		return -1;

	fd = p_creat(path, mode);
	if (fd < 0) {
49
		giterr_set(GITERR_OS, "Failed to create file '%s'", path);
50 51 52 53
		return -1;
	}

	return fd;
54 55
}

56
int git_futils_creat_locked(const char *path, const mode_t mode)
57
{
58 59 60
	int fd;

#ifdef GIT_WIN32
61
	git_win32_path buf;
62

63
	git_win32_path_from_c(buf, path);
64 65
	fd = _wopen(buf, O_WRONLY | O_CREAT | O_TRUNC |
		O_EXCL | O_BINARY | O_CLOEXEC, mode);
66
#else
67 68
	fd = open(path, O_WRONLY | O_CREAT | O_TRUNC |
		O_EXCL | O_BINARY | O_CLOEXEC, mode);
69 70
#endif

71
	if (fd < 0) {
72
		giterr_set(GITERR_OS, "Failed to create locked file '%s'", path);
73
		return errno == EEXIST ? GIT_ELOCKED : -1;
74 75 76
	}

	return fd;
77 78
}

79
int git_futils_creat_locked_withpath(const char *path, const mode_t dirmode, const mode_t mode)
80
{
81 82
	if (git_futils_mkpath2file(path, dirmode) < 0)
		return -1;
83

Vicent Marti committed
84
	return git_futils_creat_locked(path, mode);
85 86
}

87 88 89 90
int git_futils_open_ro(const char *path)
{
	int fd = p_open(path, O_RDONLY);
	if (fd < 0) {
91
		if (errno == ENOENT || errno == ENOTDIR)
92 93 94 95 96 97
			fd = GIT_ENOTFOUND;
		giterr_set(GITERR_OS, "Failed to open '%s'", path);
	}
	return fd;
}

Vicent Marti committed
98
git_off_t git_futils_filesize(git_file fd)
99
{
100
	struct stat sb;
101 102 103 104 105

	if (p_fstat(fd, &sb)) {
		giterr_set(GITERR_OS, "Failed to stat file descriptor");
		return -1;
	}
106

107 108
	return sb.st_size;
}
109

110 111 112
mode_t git_futils_canonical_mode(mode_t raw_mode)
{
	if (S_ISREG(raw_mode))
113
		return S_IFREG | GIT_PERMS_CANONICAL(raw_mode);
114 115 116 117
	else if (S_ISLNK(raw_mode))
		return S_IFLNK;
	else if (S_ISGITLINK(raw_mode))
		return S_IFGITLINK;
118 119
	else if (S_ISDIR(raw_mode))
		return S_IFDIR;
120 121 122 123
	else
		return 0;
}

124 125
int git_futils_readbuffer_fd(git_buf *buf, git_file fd, size_t len)
{
126
	ssize_t read_size = 0;
127 128 129 130 131 132

	git_buf_clear(buf);

	if (git_buf_grow(buf, len + 1) < 0)
		return -1;

133 134
	/* p_read loops internally to read len bytes */
	read_size = p_read(fd, buf->ptr, len);
135

Vicent Marti committed
136
	if (read_size != (ssize_t)len) {
137 138
		giterr_set(GITERR_OS, "Failed to read descriptor");
		return -1;
139 140
	}

141 142 143
	buf->ptr[read_size] = '\0';
	buf->size = read_size;

144 145 146 147
	return 0;
}

int git_futils_readbuffer_updated(
148
	git_buf *buf, const char *path, time_t *mtime, size_t *size, int *updated)
149
{
150
	int error = 0;
151
	git_file fd;
152
	struct stat st;
153
	bool changed = false;
154

155
	assert(buf && path && *path);
156

157 158
	if (updated != NULL)
		*updated = 0;
159

160 161 162 163 164 165 166
	if (p_stat(path, &st) < 0) {
		error = errno;
		giterr_set(GITERR_OS, "Failed to stat '%s'", path);
		if (error == ENOENT || error == ENOTDIR)
			return GIT_ENOTFOUND;
		return -1;
	}
167

168
	if (S_ISDIR(st.st_mode) || !git__is_sizet(st.st_size+1)) {
169 170
		giterr_set(GITERR_OS, "Invalid regular file stat for '%s'", path);
		return -1;
171
	}
172 173

	/*
174 175
	 * If we were given a time and/or a size, we only want to read the file
	 * if it has been modified.
176
	 */
177 178 179 180 181 182 183 184
	if (size && *size != (size_t)st.st_size)
		changed = true;
	if (mtime && *mtime != st.st_mtime)
		changed = true;
	if (!size && !mtime)
		changed = true;

	if (!changed) {
185 186
		return 0;
	}
187 188 189

	if (mtime != NULL)
		*mtime = st.st_mtime;
190 191
	if (size != NULL)
		*size = (size_t)st.st_size;
192

193 194 195
	if ((fd = git_futils_open_ro(path)) < 0)
		return fd;

196
	if (git_futils_readbuffer_fd(buf, fd, (size_t)st.st_size) < 0) {
197 198
		p_close(fd);
		return -1;
199 200
	}

Vicent Marti committed
201
	p_close(fd);
202

203 204 205
	if (updated != NULL)
		*updated = 1;

206
	return 0;
207 208
}

209
int git_futils_readbuffer(git_buf *buf, const char *path)
210
{
211
	return git_futils_readbuffer_updated(buf, path, NULL, NULL, NULL);
212 213
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
int git_futils_writebuffer(
	const git_buf *buf,	const char *path, int flags, mode_t mode)
{
	int fd, error = 0;

	if (flags <= 0)
		flags = O_CREAT | O_TRUNC | O_WRONLY;
	if (!mode)
		mode = GIT_FILEMODE_BLOB;

	if ((fd = p_open(path, flags, mode)) < 0) {
		giterr_set(GITERR_OS, "Could not open '%s' for writing", path);
		return fd;
	}

	if ((error = p_write(fd, git_buf_cstr(buf), git_buf_len(buf))) < 0) {
		giterr_set(GITERR_OS, "Could not write to '%s'", path);
		(void)p_close(fd);
232
		return error;
233 234 235 236 237 238 239 240
	}

	if ((error = p_close(fd)) < 0)
		giterr_set(GITERR_OS, "Error while closing '%s'", path);

	return error;
}

241
int git_futils_mv_withpath(const char *from, const char *to, const mode_t dirmode)
242
{
243 244
	if (git_futils_mkpath2file(to, dirmode) < 0)
		return -1;
245

246 247 248 249 250 251
	if (p_rename(from, to) < 0) {
		giterr_set(GITERR_OS, "Failed to rename '%s' to '%s'", from, to);
		return -1;
	}

	return 0;
252 253
}

Vicent Marti committed
254
int git_futils_mmap_ro(git_map *out, git_file fd, git_off_t begin, size_t len)
255
{
Vicent Marti committed
256
	return p_mmap(out, len, GIT_PROT_READ, GIT_MAP_SHARED, fd, begin);
257 258
}

259 260
int git_futils_mmap_ro_file(git_map *out, const char *path)
{
261 262
	git_file fd = git_futils_open_ro(path);
	git_off_t len;
263
	int result;
264 265 266 267 268

	if (fd < 0)
		return fd;

	len = git_futils_filesize(fd);
269 270 271 272
	if (!git__is_sizet(len)) {
		giterr_set(GITERR_OS, "File `%s` too large to mmap", path);
		return -1;
	}
273

274
	result = git_futils_mmap_ro(out, fd, 0, (size_t)len);
275 276 277 278
	p_close(fd);
	return result;
}

Vicent Marti committed
279
void git_futils_mmap_free(git_map *out)
280
{
Vicent Marti committed
281
	p_munmap(out);
282 283
}

284 285 286 287 288
int git_futils_mkdir(
	const char *path,
	const char *base,
	mode_t mode,
	uint32_t flags)
289
{
290
	int error = -1;
291
	git_buf make_path = GIT_BUF_INIT;
Vicent Marti committed
292
	ssize_t root = 0, min_root_len;
293
	char lastch = '/', *tail;
294
	struct stat st;
295

296 297 298
	/* build path and find "root" where we should start calling mkdir */
	if (git_path_join_unrooted(&make_path, path, base, &root) < 0)
		return -1;
299

300 301
	if (make_path.size == 0) {
		giterr_set(GITERR_OS, "Attempt to create empty path");
302
		goto done;
303
	}
304

305 306 307 308 309
	/* remove trailing slashes on path */
	while (make_path.ptr[make_path.size - 1] == '/') {
		make_path.size--;
		make_path.ptr[make_path.size] = '\0';
	}
310

311
	/* if we are not supposed to made the last element, truncate it */
312 313 314 315
	if ((flags & GIT_MKDIR_SKIP_LAST2) != 0) {
		git_buf_rtruncate_at_char(&make_path, '/');
		flags |= GIT_MKDIR_SKIP_LAST;
	}
316 317 318
	if ((flags & GIT_MKDIR_SKIP_LAST) != 0)
		git_buf_rtruncate_at_char(&make_path, '/');

319 320 321 322 323 324
	/* if nothing left after truncation, then we're done! */
	if (!make_path.size) {
		error = 0;
		goto done;
	}

325 326 327 328
	/* if we are not supposed to make the whole path, reset root */
	if ((flags & GIT_MKDIR_PATH) == 0)
		root = git_buf_rfind(&make_path, '/');

329 330 331 332
	/* advance root past drive name or network mount prefix */
	min_root_len = git_path_root(make_path.ptr);
	if (root < min_root_len)
		root = min_root_len;
yorah committed
333
	while (root >= 0 && make_path.ptr[root] == '/')
334 335
		++root;

336
	/* clip root to make_path length */
337 338
	if (root > (ssize_t)make_path.size)
		root = (ssize_t)make_path.size; /* i.e. NUL byte of string */
339 340
	if (root < 0)
		root = 0;
341

342 343
	/* walk down tail of path making each directory */
	for (tail = &make_path.ptr[root]; *tail; *tail = lastch) {
344

345 346 347 348 349 350 351 352 353
		/* advance tail to include next path component */
		while (*tail == '/')
			tail++;
		while (*tail && *tail != '/')
			tail++;

		/* truncate path at next component */
		lastch = *tail;
		*tail = '\0';
354
		st.st_mode = 0;
355 356

		/* make directory */
357
		if (p_mkdir(make_path.ptr, mode) < 0) {
358 359 360
			int tmp_errno = errno;

			/* ignore error if directory already exists */
361
			if (p_stat(make_path.ptr, &st) < 0 || !S_ISDIR(st.st_mode)) {
Vicent Marti committed
362
				errno = tmp_errno;
363
				giterr_set(GITERR_OS, "Failed to make directory '%s'", make_path.ptr);
364
				goto done;
365 366
			}

367 368
			/* with exclusive create, existing dir is an error */
			if ((flags & GIT_MKDIR_EXCL) != 0) {
369
				giterr_set(GITERR_OS, "Directory already exists '%s'", make_path.ptr);
370
				error = GIT_EEXISTS;
371
				goto done;
372
			}
373
		}
374

375
		/* chmod if requested and necessary */
376 377 378 379 380 381
		if (((flags & GIT_MKDIR_CHMOD_PATH) != 0 ||
			 (lastch == '\0' && (flags & GIT_MKDIR_CHMOD) != 0)) &&
			st.st_mode != mode &&
			(error = p_chmod(make_path.ptr, mode)) < 0) {
			giterr_set(GITERR_OS, "Failed to set permissions on '%s'", make_path.ptr);
			goto done;
382
		}
383
	}
384

385 386 387
	error = 0;

	/* check that full path really is a directory if requested & needed */
388 389
	if ((flags & GIT_MKDIR_VERIFY_DIR) != 0 &&
		lastch != '\0' &&
390
		(p_stat(make_path.ptr, &st) < 0 || !S_ISDIR(st.st_mode))) {
391
		giterr_set(GITERR_OS, "Path is not a directory '%s'", make_path.ptr);
392 393
		error = GIT_ENOTFOUND;
	}
394

395
done:
396
	git_buf_free(&make_path);
397
	return error;
398
}
399

400 401 402
int git_futils_mkdir_r(const char *path, const char *base, const mode_t mode)
{
	return git_futils_mkdir(path, base, mode, GIT_MKDIR_PATH);
403 404
}

405
typedef struct {
406
	const char *base;
407
	size_t baselen;
408 409 410 411 412
	uint32_t flags;
	int error;
} futils__rmdir_data;

static int futils__error_cannot_rmdir(const char *path, const char *filemsg)
413
{
414 415 416 417 418
	if (filemsg)
		giterr_set(GITERR_OS, "Could not remove directory. File '%s' %s",
				   path, filemsg);
	else
		giterr_set(GITERR_OS, "Could not remove directory '%s'", path);
419

420 421
	return -1;
}
422

423 424 425 426 427 428 429 430 431 432
static int futils__rm_first_parent(git_buf *path, const char *ceiling)
{
	int error = GIT_ENOTFOUND;
	struct stat st;

	while (error == GIT_ENOTFOUND) {
		git_buf_rtruncate_at_char(path, '/');

		if (!path->size || git__prefixcmp(path->ptr, ceiling) != 0)
			error = 0;
433
		else if (p_lstat_posixly(path->ptr, &st) == 0) {
434 435 436 437 438 439 440 441 442 443 444 445 446 447
			if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))
				error = p_unlink(path->ptr);
			else if (!S_ISDIR(st.st_mode))
				error = -1; /* fail to remove non-regular file */
		} else if (errno != ENOTDIR)
			error = -1;
	}

	if (error)
		futils__error_cannot_rmdir(path->ptr, "cannot remove parent");

	return error;
}

448 449
static int futils__rmdir_recurs_foreach(void *opaque, git_buf *path)
{
450
	struct stat st;
451
	futils__rmdir_data *data = opaque;
452

453
	if ((data->error = p_lstat_posixly(path->ptr, &st)) < 0) {
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
		if (errno == ENOENT)
			data->error = 0;
		else if (errno == ENOTDIR) {
			/* asked to remove a/b/c/d/e and a/b is a normal file */
			if ((data->flags & GIT_RMDIR_REMOVE_BLOCKERS) != 0)
				data->error = futils__rm_first_parent(path, data->base);
			else
				futils__error_cannot_rmdir(
					path->ptr, "parent is not directory");
		}
		else
			futils__error_cannot_rmdir(path->ptr, "cannot access");
	}

	else if (S_ISDIR(st.st_mode)) {
469 470 471 472 473 474 475 476
		int error = git_path_direach(path, futils__rmdir_recurs_foreach, data);
		if (error < 0)
			return (error == GIT_EUSER) ? data->error : error;

		data->error = p_rmdir(path->ptr);

		if (data->error < 0) {
			if ((data->flags & GIT_RMDIR_SKIP_NONEMPTY) != 0 &&
477
				(errno == ENOTEMPTY || errno == EEXIST || errno == EBUSY))
478 479 480
				data->error = 0;
			else
				futils__error_cannot_rmdir(path->ptr, NULL);
481
		}
482 483
	}

484 485
	else if ((data->flags & GIT_RMDIR_REMOVE_FILES) != 0) {
		data->error = p_unlink(path->ptr);
486

487 488
		if (data->error < 0)
			futils__error_cannot_rmdir(path->ptr, "cannot be removed");
489 490
	}

491
	else if ((data->flags & GIT_RMDIR_SKIP_NONEMPTY) == 0)
492
		data->error = futils__error_cannot_rmdir(path->ptr, "still present");
493

494 495 496 497 498
	return data->error;
}

static int futils__rmdir_empty_parent(void *opaque, git_buf *path)
{
499 500 501 502 503
	futils__rmdir_data *data = opaque;
	int error;

	if (git_buf_len(path) <= data->baselen)
		return GIT_ITEROVER;
504

505
	error = p_rmdir(git_buf_cstr(path));
506 507 508 509 510 511 512

	if (error) {
		int en = errno;

		if (en == ENOENT || en == ENOTDIR) {
			giterr_clear();
			error = 0;
513
		} else if (en == ENOTEMPTY || en == EEXIST || en == EBUSY) {
514 515 516
			giterr_clear();
			error = GIT_ITEROVER;
		} else {
517
			futils__error_cannot_rmdir(git_buf_cstr(path), NULL);
518 519 520 521
		}
	}

	return error;
522 523
}

524
int git_futils_rmdir_r(
525
	const char *path, const char *base, uint32_t flags)
526
{
527
	int error;
528
	git_buf fullpath = GIT_BUF_INIT;
529
	futils__rmdir_data data;
530 531 532 533 534

	/* build path and find "root" where we should start calling mkdir */
	if (git_path_join_unrooted(&fullpath, path, base, NULL) < 0)
		return -1;

535 536 537 538
	data.base    = base ? base : "";
	data.baselen = base ? strlen(base) : 0;
	data.flags   = flags;
	data.error   = 0;
539 540 541 542 543 544 545 546 547 548 549

	error = futils__rmdir_recurs_foreach(&data, &fullpath);

	/* remove now-empty parents if requested */
	if (!error && (flags & GIT_RMDIR_EMPTY_PARENTS) != 0) {
		error = git_path_walk_up(
			&fullpath, base, futils__rmdir_empty_parent, &data);

		if (error == GIT_ITEROVER)
			error = 0;
	}
550 551

	git_buf_free(&fullpath);
552 553

	return error;
554 555
}

556 557 558 559 560 561
int git_futils_cleanupdir_r(const char *path)
{
	int error;
	git_buf fullpath = GIT_BUF_INIT;
	futils__rmdir_data data;

562
	if ((error = git_buf_put(&fullpath, path, strlen(path))) < 0)
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
		goto clean_up;

	data.base    = "";
	data.baselen = 0;
	data.flags   = GIT_RMDIR_REMOVE_FILES;
	data.error   = 0;

	if (!git_path_exists(path)) {
		giterr_set(GITERR_OS, "Path does not exist: %s" , path);
		error = GIT_ERROR;
		goto clean_up;
	}

	if (!git_path_isdir(path)) {
		giterr_set(GITERR_OS, "Path is not a directory: %s" , path);
		error = GIT_ERROR;
		goto clean_up;
	}

	error = git_path_direach(&fullpath, futils__rmdir_recurs_foreach, &data);
	if (error == GIT_EUSER)
		error = data.error;

clean_up:
	git_buf_free(&fullpath);
	return error;
}

591

592
static int git_futils_guess_system_dirs(git_buf *out)
593 594
{
#ifdef GIT_WIN32
595
	return git_win32__find_system_dirs(out, L"etc\\");
596
#else
597
	return git_buf_sets(out, "/etc");
598 599
#endif
}
600

601
static int git_futils_guess_global_dirs(git_buf *out)
602 603
{
#ifdef GIT_WIN32
Russell Belfer committed
604
	return git_win32__find_global_dirs(out);
605
#else
606
	return git_buf_sets(out, getenv("HOME"));
607 608
#endif
}
609

610
static int git_futils_guess_xdg_dirs(git_buf *out)
611 612
{
#ifdef GIT_WIN32
Russell Belfer committed
613
	return git_win32__find_xdg_dirs(out);
614 615 616 617
#else
	const char *env = NULL;

	if ((env = getenv("XDG_CONFIG_HOME")) != NULL)
618
		return git_buf_joinpath(out, env, "git");
619
	else if ((env = getenv("HOME")) != NULL)
620
		return git_buf_joinpath(out, env, ".config/git");
621

622 623
	git_buf_clear(out);
	return 0;
624
#endif
625
}
626

627 628 629 630 631 632 633 634 635
static int git_futils_guess_template_dirs(git_buf *out)
{
#ifdef GIT_WIN32
	return git_win32__find_system_dirs(out, L"share\\git-core\\templates");
#else
	return git_buf_sets(out, "/usr/share/git-core/templates");
#endif
}

636 637 638
typedef int (*git_futils_dirs_guess_cb)(git_buf *out);

static git_buf git_futils__dirs[GIT_FUTILS_DIR__MAX] =
639
	{ GIT_BUF_INIT, GIT_BUF_INIT, GIT_BUF_INIT, GIT_BUF_INIT };
640 641 642 643 644

static git_futils_dirs_guess_cb git_futils__dir_guess[GIT_FUTILS_DIR__MAX] = {
	git_futils_guess_system_dirs,
	git_futils_guess_global_dirs,
	git_futils_guess_xdg_dirs,
645
	git_futils_guess_template_dirs,
646 647
};

648 649 650
int git_futils_dirs_global_init(void)
{
	git_futils_dir_t i;
651
	const git_buf *path;
652 653
	int error = 0;

654 655
	for (i = 0; !error && i < GIT_FUTILS_DIR__MAX; i++)
		error = git_futils_dirs_get(&path, i);
656 657 658 659

	return error;
}

660 661 662 663 664 665
static int git_futils_check_selector(git_futils_dir_t which)
{
	if (which < GIT_FUTILS_DIR__MAX)
		return 0;
	giterr_set(GITERR_INVALID, "config directory selector out of range");
	return -1;
666
}
667

668
int git_futils_dirs_get(const git_buf **out, git_futils_dir_t which)
669
{
670
	assert(out);
671

672
	*out = NULL;
673

674
	GITERR_CHECK_ERROR(git_futils_check_selector(which));
675

676 677 678
	if (!git_buf_len(&git_futils__dirs[which]))
		GITERR_CHECK_ERROR(
			git_futils__dir_guess[which](&git_futils__dirs[which]));
679

680 681 682 683
	*out = &git_futils__dirs[which];
	return 0;
}

684
int git_futils_dirs_get_str(char *out, size_t outlen, git_futils_dir_t which)
685
{
686 687
	const git_buf *path = NULL;

688
	GITERR_CHECK_ERROR(git_futils_check_selector(which));
689 690 691 692 693 694
	GITERR_CHECK_ERROR(git_futils_dirs_get(&path, which));

	if (!out || path->size >= outlen) {
		giterr_set(GITERR_NOMEMORY, "Buffer is too short for the path");
		return GIT_EBUFS;
	}
695

696 697 698
	git_buf_copy_cstr(out, outlen, path);
	return 0;
}
699

700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
#define PATH_MAGIC "$PATH"

int git_futils_dirs_set(git_futils_dir_t which, const char *search_path)
{
	const char *expand_path = NULL;
	git_buf merge = GIT_BUF_INIT;

	GITERR_CHECK_ERROR(git_futils_check_selector(which));

	if (search_path != NULL)
		expand_path = strstr(search_path, PATH_MAGIC);

	/* init with default if not yet done and needed (ignoring error) */
	if ((!search_path || expand_path) &&
		!git_buf_len(&git_futils__dirs[which]))
715 716
		git_futils__dir_guess[which](&git_futils__dirs[which]);

717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
	/* if $PATH is not referenced, then just set the path */
	if (!expand_path)
		return git_buf_sets(&git_futils__dirs[which], search_path);

	/* otherwise set to join(before $PATH, old value, after $PATH) */
	if (expand_path > search_path)
		git_buf_set(&merge, search_path, expand_path - search_path);

	if (git_buf_len(&git_futils__dirs[which]))
		git_buf_join(&merge, GIT_PATH_LIST_SEPARATOR,
			merge.ptr, git_futils__dirs[which].ptr);

	expand_path += strlen(PATH_MAGIC);
	if (*expand_path)
		git_buf_join(&merge, GIT_PATH_LIST_SEPARATOR, merge.ptr, expand_path);

	git_buf_swap(&git_futils__dirs[which], &merge);
	git_buf_free(&merge);

	return git_buf_oom(&git_futils__dirs[which]) ? -1 : 0;
}

void git_futils_dirs_free(void)
{
	int i;
	for (i = 0; i < GIT_FUTILS_DIR__MAX; ++i)
		git_buf_free(&git_futils__dirs[i]);
744 745 746 747 748
}

static int git_futils_find_in_dirlist(
	git_buf *path, const char *name, git_futils_dir_t which, const char *label)
{
749 750 751
	size_t len;
	const char *scan, *next = NULL;
	const git_buf *syspath;
752

753
	GITERR_CHECK_ERROR(git_futils_dirs_get(&syspath, which));
754

755 756 757 758 759 760 761 762
	for (scan = git_buf_cstr(syspath); scan; scan = next) {
		for (next = strchr(scan, GIT_PATH_LIST_SEPARATOR);
			 next && next > scan && next[-1] == '\\';
			 next = strchr(next + 1, GIT_PATH_LIST_SEPARATOR))
			/* find unescaped separator or end of string */;

		len = next ? (size_t)(next++ - scan) : strlen(scan);
		if (!len)
763 764
			continue;

765 766
		GITERR_CHECK_ERROR(git_buf_set(path, scan, len));
		GITERR_CHECK_ERROR(git_buf_joinpath(path, path->ptr, name));
767

768
		if (git_path_exists(path->ptr))
769
			return 0;
770 771
	}

772
	git_buf_clear(path);
773
	giterr_set(GITERR_OS, "The %s file '%s' doesn't exist", label, name);
774
	return GIT_ENOTFOUND;
775
}
776

777 778 779 780 781
int git_futils_find_system_file(git_buf *path, const char *filename)
{
	return git_futils_find_in_dirlist(
		path, filename, GIT_FUTILS_DIR_SYSTEM, "system");
}
782

783 784 785 786 787
int git_futils_find_global_file(git_buf *path, const char *filename)
{
	return git_futils_find_in_dirlist(
		path, filename, GIT_FUTILS_DIR_GLOBAL, "global");
}
788

789 790 791 792
int git_futils_find_xdg_file(git_buf *path, const char *filename)
{
	return git_futils_find_in_dirlist(
		path, filename, GIT_FUTILS_DIR_XDG, "global/xdg");
793
}
794 795 796 797 798 799 800 801 802 803 804

int git_futils_fake_symlink(const char *old, const char *new)
{
	int retcode = GIT_ERROR;
	int fd = git_futils_creat_withpath(new, 0755, 0644);
	if (fd >= 0) {
		retcode = p_write(fd, old, strlen(old));
		p_close(fd);
	}
	return retcode;
}
805

806
static int cp_by_fd(int ifd, int ofd, bool close_fd_when_done)
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
{
	int error = 0;
	char buffer[4096];
	ssize_t len = 0;

	while (!error && (len = p_read(ifd, buffer, sizeof(buffer))) > 0)
		/* p_write() does not have the same semantics as write().  It loops
		 * internally and will return 0 when it has completed writing.
		 */
		error = p_write(ofd, buffer, len);

	if (len < 0) {
		giterr_set(GITERR_OS, "Read error while copying file");
		error = (int)len;
	}

823
	if (close_fd_when_done) {
824 825 826 827 828 829 830
		p_close(ifd);
		p_close(ofd);
	}

	return error;
}

831
int git_futils_cp(const char *from, const char *to, mode_t filemode)
832 833 834 835 836 837 838 839 840 841 842 843 844 845
{
	int ifd, ofd;

	if ((ifd = git_futils_open_ro(from)) < 0)
		return ifd;

	if ((ofd = p_open(to, O_WRONLY | O_CREAT | O_EXCL, filemode)) < 0) {
		if (errno == ENOENT || errno == ENOTDIR)
			ofd = GIT_ENOTFOUND;
		giterr_set(GITERR_OS, "Failed to open '%s' for writing", to);
		p_close(ifd);
		return ofd;
	}

846
	return cp_by_fd(ifd, ofd, true);
847 848
}

849
static int cp_link(const char *from, const char *to, size_t link_size)
850 851 852
{
	int error = 0;
	ssize_t read_len;
853
	char *link_data = git__malloc(link_size + 1);
854 855
	GITERR_CHECK_ALLOC(link_data);

856 857
	read_len = p_readlink(from, link_data, link_size);
	if (read_len != (ssize_t)link_size) {
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
		giterr_set(GITERR_OS, "Failed to read symlink data for '%s'", from);
		error = -1;
	}
	else {
		link_data[read_len] = '\0';

		if (p_symlink(link_data, to) < 0) {
			giterr_set(GITERR_OS, "Could not symlink '%s' as '%s'",
				link_data, to);
			error = -1;
		}
	}

	git__free(link_data);
	return error;
}

typedef struct {
	const char *to_root;
	git_buf to;
	ssize_t from_prefix;
	uint32_t flags;
	uint32_t mkdir_flags;
	mode_t dirmode;
882
	int error;
883 884
} cp_r_info;

885 886 887 888 889 890 891 892 893 894
#define GIT_CPDIR__MKDIR_DONE_FOR_TO_ROOT (1u << 10)

static int _cp_r_mkdir(cp_r_info *info, git_buf *from)
{
	int error = 0;

	/* create root directory the first time we need to create a directory */
	if ((info->flags & GIT_CPDIR__MKDIR_DONE_FOR_TO_ROOT) == 0) {
		error = git_futils_mkdir(
			info->to_root, NULL, info->dirmode,
895
			(info->flags & GIT_CPDIR_CHMOD_DIRS) ? GIT_MKDIR_CHMOD : 0);
896 897 898 899 900 901 902 903 904 905 906 907 908

		info->flags |= GIT_CPDIR__MKDIR_DONE_FOR_TO_ROOT;
	}

	/* create directory with root as base to prevent excess chmods */
	if (!error)
		error = git_futils_mkdir(
			from->ptr + info->from_prefix, info->to_root,
			info->dirmode, info->mkdir_flags);

	return error;
}

909 910
static int _cp_r_callback(void *ref, git_buf *from)
{
911
	int error = 0;
912 913 914 915 916 917 918 919 920
	cp_r_info *info = ref;
	struct stat from_st, to_st;
	bool exists = false;

	if ((info->flags & GIT_CPDIR_COPY_DOTFILES) == 0 &&
		from->ptr[git_path_basename_offset(from)] == '.')
		return 0;

	if (git_buf_joinpath(
921 922 923 924
			&info->to, info->to_root, from->ptr + info->from_prefix) < 0) {
		error = -1;
		goto exit;
	}
925 926

	if (p_lstat(info->to.ptr, &to_st) < 0) {
927
		if (errno != ENOENT && errno != ENOTDIR) {
928 929
			giterr_set(GITERR_OS,
				"Could not access %s while copying files", info->to.ptr);
930 931
			error = -1;
			goto exit;
932 933 934 935
		}
	} else
		exists = true;

936
	if ((error = git_path_lstat(from->ptr, &from_st)) < 0)
937
		goto exit;
938 939 940 941 942

	if (S_ISDIR(from_st.st_mode)) {
		mode_t oldmode = info->dirmode;

		/* if we are not chmod'ing, then overwrite dirmode */
943
		if ((info->flags & GIT_CPDIR_CHMOD_DIRS) == 0)
944 945 946 947
			info->dirmode = from_st.st_mode;

		/* make directory now if CREATE_EMPTY_DIRS is requested and needed */
		if (!exists && (info->flags & GIT_CPDIR_CREATE_EMPTY_DIRS) != 0)
948
			error = _cp_r_mkdir(info, from);
949 950

		/* recurse onto target directory */
951 952 953
		if (!error && (!exists || S_ISDIR(to_st.st_mode)) &&
			((error = git_path_direach(from, _cp_r_callback, info)) == GIT_EUSER))
			error = info->error;
954 955 956 957

		if (oldmode != 0)
			info->dirmode = oldmode;

958
		goto exit;
959 960 961 962 963 964 965 966 967
	}

	if (exists) {
		if ((info->flags & GIT_CPDIR_OVERWRITE) == 0)
			return 0;

		if (p_unlink(info->to.ptr) < 0) {
			giterr_set(GITERR_OS, "Cannot overwrite existing file '%s'",
				info->to.ptr);
968 969
			error = -1;
			goto exit;
970 971 972 973 974 975 976 977 978 979 980
		}
	}

	/* Done if this isn't a regular file or a symlink */
	if (!S_ISREG(from_st.st_mode) &&
		(!S_ISLNK(from_st.st_mode) ||
		 (info->flags & GIT_CPDIR_COPY_SYMLINKS) == 0))
		return 0;

	/* Make container directory on demand if needed */
	if ((info->flags & GIT_CPDIR_CREATE_EMPTY_DIRS) == 0 &&
981
		(error = _cp_r_mkdir(info, from)) < 0)
982
		goto exit;
983 984 985

	/* make symlink or regular file */
	if (S_ISLNK(from_st.st_mode))
986 987 988 989
		error = cp_link(from->ptr, info->to.ptr, (size_t)from_st.st_size);
	else {
		mode_t usemode = from_st.st_mode;

990
		if ((info->flags & GIT_CPDIR_SIMPLE_TO_MODE) != 0)
991
			usemode = GIT_PERMS_FOR_WRITE(usemode);
992 993 994 995

		error = git_futils_cp(from->ptr, info->to.ptr, usemode);
	}

996 997
exit:
	info->error = error;
998
	return error;
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
}

int git_futils_cp_r(
	const char *from,
	const char *to,
	uint32_t flags,
	mode_t dirmode)
{
	int error;
	git_buf path = GIT_BUF_INIT;
	cp_r_info info;

1011
	if (git_buf_joinpath(&path, from, "") < 0) /* ensure trailing slash */
1012 1013 1014 1015 1016 1017
		return -1;

	info.to_root = to;
	info.flags   = flags;
	info.dirmode = dirmode;
	info.from_prefix = path.size;
1018
	info.error = 0;
1019 1020 1021 1022
	git_buf_init(&info.to, 0);

	/* precalculate mkdir flags */
	if ((flags & GIT_CPDIR_CREATE_EMPTY_DIRS) == 0) {
1023 1024 1025
		/* if not creating empty dirs, then use mkdir to create the path on
		 * demand right before files are copied.
		 */
1026
		info.mkdir_flags = GIT_MKDIR_PATH | GIT_MKDIR_SKIP_LAST;
1027
		if ((flags & GIT_CPDIR_CHMOD_DIRS) != 0)
1028 1029
			info.mkdir_flags |= GIT_MKDIR_CHMOD_PATH;
	} else {
1030
		/* otherwise, we will do simple mkdir as directories are encountered */
1031
		info.mkdir_flags =
1032
			((flags & GIT_CPDIR_CHMOD_DIRS) != 0) ? GIT_MKDIR_CHMOD : 0;
1033 1034 1035 1036 1037
	}

	error = _cp_r_callback(&info, &path);

	git_buf_free(&path);
Russell Belfer committed
1038
	git_buf_free(&info.to);
1039

1040 1041 1042
	if (error == GIT_EUSER)
		error = info.error;

1043 1044
	return error;
}
1045

Vicent Marti committed
1046 1047
int git_futils_filestamp_check(
	git_futils_filestamp *stamp, const char *path)
1048 1049 1050
{
	struct stat st;

1051 1052
	/* if the stamp is NULL, then always reload */
	if (stamp == NULL)
1053 1054
		return 1;

1055 1056
	if (p_stat(path, &st) < 0) {
		giterr_set(GITERR_OS, "Could not stat '%s'", path);
1057
		return GIT_ENOTFOUND;
1058
	}
1059

1060 1061 1062
	if (stamp->mtime == (git_time_t)st.st_mtime &&
		stamp->size  == (git_off_t)st.st_size   &&
		stamp->ino   == (unsigned int)st.st_ino)
1063 1064
		return 0;

1065 1066 1067
	stamp->mtime = (git_time_t)st.st_mtime;
	stamp->size  = (git_off_t)st.st_size;
	stamp->ino   = (unsigned int)st.st_ino;
1068 1069 1070 1071

	return 1;
}

Vicent Marti committed
1072 1073
void git_futils_filestamp_set(
	git_futils_filestamp *target, const git_futils_filestamp *source)
1074 1075 1076 1077 1078 1079 1080 1081
{
	assert(target);

	if (source)
		memcpy(target, source, sizeof(*target));
	else
		memset(target, 0, sizeof(*target));
}