submodule.c 36 KB
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3 4 5 6 7 8 9
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "common.h"
#include "git2/config.h"
10
#include "git2/sys/config.h"
11 12 13 14 15
#include "git2/types.h"
#include "git2/repository.h"
#include "git2/index.h"
#include "git2/submodule.h"
#include "buffer.h"
16
#include "buf_text.h"
17 18 19 20 21
#include "vector.h"
#include "posix.h"
#include "config_file.h"
#include "config.h"
#include "repository.h"
Russell Belfer committed
22 23 24
#include "submodule.h"
#include "tree.h"
#include "iterator.h"
25 26
#include "path.h"
#include "index.h"
Russell Belfer committed
27 28

#define GIT_MODULES_FILE ".gitmodules"
29

30 31 32
static git_cvar_map _sm_update_map[] = {
	{GIT_CVAR_STRING, "checkout", GIT_SUBMODULE_UPDATE_CHECKOUT},
	{GIT_CVAR_STRING, "rebase", GIT_SUBMODULE_UPDATE_REBASE},
Russell Belfer committed
33 34
	{GIT_CVAR_STRING, "merge", GIT_SUBMODULE_UPDATE_MERGE},
	{GIT_CVAR_STRING, "none", GIT_SUBMODULE_UPDATE_NONE},
35 36
};

37
static git_cvar_map _sm_ignore_map[] = {
Russell Belfer committed
38
	{GIT_CVAR_STRING, "none", GIT_SUBMODULE_IGNORE_NONE},
39
	{GIT_CVAR_STRING, "untracked", GIT_SUBMODULE_IGNORE_UNTRACKED},
Russell Belfer committed
40 41
	{GIT_CVAR_STRING, "dirty", GIT_SUBMODULE_IGNORE_DIRTY},
	{GIT_CVAR_STRING, "all", GIT_SUBMODULE_IGNORE_ALL},
42 43
};

44
static kh_inline khint_t str_hash_no_trailing_slash(const char *s)
45
{
46
	khint_t h;
47

48
	for (h = 0; *s; ++s)
49
		if (s[1] != '\0' || *s != '/')
50
			h = (h << 5) - h + *s;
51

52
	return h;
53 54
}

55
static kh_inline int str_equal_no_trailing_slash(const char *a, const char *b)
56
{
57 58
	size_t alen = a ? strlen(a) : 0;
	size_t blen = b ? strlen(b) : 0;
59

60
	if (alen > 0 && a[alen - 1] == '/')
61
		alen--;
62
	if (blen > 0 && b[blen - 1] == '/')
63 64
		blen--;

65
	return (alen == blen && strncmp(a, b, alen) == 0);
66 67
}

Russell Belfer committed
68 69 70 71
__KHASH_IMPL(
	str, static kh_inline, const char *, void *, 1,
	str_hash_no_trailing_slash, str_equal_no_trailing_slash);

72
static int load_submodule_config(git_repository *repo);
Ben Straub committed
73
static git_config_backend *open_gitmodules(git_repository *, bool, const git_oid *);
74 75 76 77 78
static int lookup_head_remote(git_buf *url, git_repository *repo);
static int submodule_get(git_submodule **, git_repository *, const char *, const char *);
static void submodule_release(git_submodule *sm, int decr);
static int submodule_load_from_index(git_repository *, const git_index_entry *);
static int submodule_load_from_head(git_repository*, const char*, const git_oid*);
79
static int submodule_load_from_config(const git_config_entry *, void *);
80 81 82 83 84
static int submodule_load_from_wd_lite(git_submodule *, const char *, void *);
static int submodule_update_config(git_submodule *, const char *, const char *, bool, bool);
static void submodule_mode_mismatch(git_repository *, const char *, unsigned int);
static int submodule_index_status(unsigned int *status, git_submodule *sm);
static int submodule_wd_status(unsigned int *status, git_submodule *sm);
Russell Belfer committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

static int submodule_cmp(const void *a, const void *b)
{
	return strcmp(((git_submodule *)a)->name, ((git_submodule *)b)->name);
}

static int submodule_config_key_trunc_puts(git_buf *key, const char *suffix)
{
	ssize_t idx = git_buf_rfind(key, '.');
	git_buf_truncate(key, (size_t)(idx + 1));
	return git_buf_puts(key, suffix);
}

/*
 * PUBLIC APIS
 */

int git_submodule_lookup(
	git_submodule **sm_ptr, /* NULL if user only wants to test existence */
	git_repository *repo,
	const char *name)       /* trailing slash is allowed */
{
	int error;
	khiter_t pos;

	assert(repo && name);

112
	if ((error = load_submodule_config(repo)) < 0)
Russell Belfer committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
		return error;

	pos = git_strmap_lookup_index(repo->submodules, name);

	if (!git_strmap_valid_index(repo->submodules, pos)) {
		error = GIT_ENOTFOUND;

		/* check if a plausible submodule exists at path */
		if (git_repository_workdir(repo)) {
			git_buf path = GIT_BUF_INIT;

			if (git_buf_joinpath(&path, git_repository_workdir(repo), name) < 0)
				return -1;

			if (git_path_contains_dir(&path, DOT_GIT))
				error = GIT_EEXISTS;

			git_buf_free(&path);
		}

133 134 135 136
		giterr_set(GITERR_SUBMODULE, (error == GIT_ENOTFOUND) ?
			"No submodule named '%s'" :
			"Submodule '%s' has not been added yet", name);

Russell Belfer committed
137 138 139 140 141 142 143 144
		return error;
	}

	if (sm_ptr)
		*sm_ptr = git_strmap_value_at(repo->submodules, pos);

	return 0;
}
145

Russell Belfer committed
146 147 148 149 150 151 152 153
int git_submodule_foreach(
	git_repository *repo,
	int (*callback)(git_submodule *sm, const char *name, void *payload),
	void *payload)
{
	int error;
	git_submodule *sm;
	git_vector seen = GIT_VECTOR_INIT;
154
	git_vector_set_cmp(&seen, submodule_cmp);
Russell Belfer committed
155 156 157

	assert(repo && callback);

158
	if ((error = load_submodule_config(repo)) < 0)
Russell Belfer committed
159 160 161 162 163 164 165 166
		return error;

	git_strmap_foreach_value(repo->submodules, sm, {
		/* Usually the following will not come into play - it just prevents
		 * us from issuing a callback twice for a submodule where the name
		 * and path are not the same.
		 */
		if (sm->refcount > 1) {
167
			if (git_vector_bsearch(NULL, &seen, sm) != GIT_ENOTFOUND)
Russell Belfer committed
168 169 170 171 172
				continue;
			if ((error = git_vector_insert(&seen, sm)) < 0)
				break;
		}

173
		if (callback(sm, sm->name, payload)) {
Russell Belfer committed
174
			giterr_clear();
175
			error = GIT_EUSER;
Russell Belfer committed
176
			break;
177
		}
Russell Belfer committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	});

	git_vector_free(&seen);

	return error;
}

void git_submodule_config_free(git_repository *repo)
{
	git_strmap *smcfg;
	git_submodule *sm;

	assert(repo);

	smcfg = repo->submodules;
	repo->submodules = NULL;

	if (smcfg == NULL)
		return;

	git_strmap_foreach_value(smcfg, sm, {
		submodule_release(sm,1);
	});
	git_strmap_free(smcfg);
}

int git_submodule_add_setup(
	git_submodule **submodule,
	git_repository *repo,
	const char *url,
	const char *path,
	int use_gitlink)
{
	int error = 0;
Ben Straub committed
212
	git_config_backend *mods = NULL;
Russell Belfer committed
213 214
	git_submodule *sm;
	git_buf name = GIT_BUF_INIT, real_url = GIT_BUF_INIT;
215
	git_repository_init_options initopt = GIT_REPOSITORY_INIT_OPTIONS_INIT;
Russell Belfer committed
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
	git_repository *subrepo = NULL;

	assert(repo && url && path);

	/* see if there is already an entry for this submodule */

	if (git_submodule_lookup(&sm, repo, path) < 0)
		giterr_clear();
	else {
		giterr_set(GITERR_SUBMODULE,
			"Attempt to add a submodule that already exists");
		return GIT_EEXISTS;
	}

	/* resolve parameters */

	if (url[0] == '.' && (url[1] == '/' || (url[1] == '.' && url[2] == '/'))) {
		if (!(error = lookup_head_remote(&real_url, repo)))
			error = git_path_apply_relative(&real_url, url);
	} else if (strchr(url, ':') != NULL || url[0] == '/') {
		error = git_buf_sets(&real_url, url);
	} else {
		giterr_set(GITERR_SUBMODULE, "Invalid format for submodule URL");
		error = -1;
	}
	if (error)
		goto cleanup;

	/* validate and normalize path */

	if (git__prefixcmp(path, git_repository_workdir(repo)) == 0)
		path += strlen(git_repository_workdir(repo));

	if (git_path_root(path) >= 0) {
		giterr_set(GITERR_SUBMODULE, "Submodule path must be a relative path");
		error = -1;
		goto cleanup;
	}

	/* update .gitmodules */

	if ((mods = open_gitmodules(repo, true, NULL)) == NULL) {
		giterr_set(GITERR_SUBMODULE,
			"Adding submodules to a bare repository is not supported (for now)");
		return -1;
	}

	if ((error = git_buf_printf(&name, "submodule.%s.path", path)) < 0 ||
		(error = git_config_file_set_string(mods, name.ptr, path)) < 0)
		goto cleanup;

	if ((error = submodule_config_key_trunc_puts(&name, "url")) < 0 ||
		(error = git_config_file_set_string(mods, name.ptr, real_url.ptr)) < 0)
		goto cleanup;

	git_buf_clear(&name);

	/* init submodule repository and add origin remote as needed */

	error = git_buf_joinpath(&name, git_repository_workdir(repo), path);
	if (error < 0)
		goto cleanup;

	/* New style: sub-repo goes in <repo-dir>/modules/<name>/ with a
	 * gitlink in the sub-repo workdir directory to that repository
	 *
	 * Old style: sub-repo goes directly into repo/<name>/.git/
	 */

	initopt.flags = GIT_REPOSITORY_INIT_MKPATH |
		GIT_REPOSITORY_INIT_NO_REINIT;
	initopt.origin_url = real_url.ptr;

	if (git_path_exists(name.ptr) &&
		git_path_contains(&name, DOT_GIT))
	{
		/* repo appears to already exist - reinit? */
	}
	else if (use_gitlink) {
		git_buf repodir = GIT_BUF_INIT;

		error = git_buf_join_n(
			&repodir, '/', 3, git_repository_path(repo), "modules", path);
		if (error < 0)
			goto cleanup;

		initopt.workdir_path = name.ptr;
		initopt.flags |= GIT_REPOSITORY_INIT_NO_DOTGIT_DIR;

		error = git_repository_init_ext(&subrepo, repodir.ptr, &initopt);

		git_buf_free(&repodir);
	}
	else {
		error = git_repository_init_ext(&subrepo, name.ptr, &initopt);
	}
	if (error < 0)
		goto cleanup;

	/* add submodule to hash and "reload" it */

317 318 319
	if (!(error = submodule_get(&sm, repo, path, NULL)) &&
		!(error = git_submodule_reload(sm)))
		error = git_submodule_init(sm, false);
Russell Belfer committed
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341

cleanup:
	if (submodule != NULL)
		*submodule = !error ? sm : NULL;

	if (mods != NULL)
		git_config_file_free(mods);
	git_repository_free(subrepo);
	git_buf_free(&real_url);
	git_buf_free(&name);

	return error;
}

int git_submodule_add_finalize(git_submodule *sm)
{
	int error;
	git_index *index;

	assert(sm);

	if ((error = git_repository_index__weakptr(&index, sm->owner)) < 0 ||
342
		(error = git_index_add_bypath(index, GIT_MODULES_FILE)) < 0)
Russell Belfer committed
343 344
		return error;

345
	return git_submodule_add_to_index(sm, true);
Russell Belfer committed
346 347
}

348
int git_submodule_add_to_index(git_submodule *sm, int write_index)
Russell Belfer committed
349 350
{
	int error;
Sascha Cunz committed
351
	git_repository *repo, *sm_repo = NULL;
Russell Belfer committed
352 353 354 355 356 357 358 359 360 361
	git_index *index;
	git_buf path = GIT_BUF_INIT;
	git_commit *head;
	git_index_entry entry;
	struct stat st;

	assert(sm);

	repo = sm->owner;

362 363 364
	/* force reload of wd OID by git_submodule_open */
	sm->flags = sm->flags & ~GIT_SUBMODULE_STATUS__WD_OID_VALID;

Russell Belfer committed
365 366 367 368 369 370 371 372 373 374 375 376 377
	if ((error = git_repository_index__weakptr(&index, repo)) < 0 ||
		(error = git_buf_joinpath(
			&path, git_repository_workdir(repo), sm->path)) < 0 ||
		(error = git_submodule_open(&sm_repo, sm)) < 0)
		goto cleanup;

	/* read stat information for submodule working directory */
	if (p_stat(path.ptr, &st) < 0) {
		giterr_set(GITERR_SUBMODULE,
			"Cannot add submodule without working directory");
		error = -1;
		goto cleanup;
	}
378 379

	memset(&entry, 0, sizeof(entry));
380
	entry.path = sm->path;
381
	git_index_entry__init_from_stat(&entry, &st);
Russell Belfer committed
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

	/* calling git_submodule_open will have set sm->wd_oid if possible */
	if ((sm->flags & GIT_SUBMODULE_STATUS__WD_OID_VALID) == 0) {
		giterr_set(GITERR_SUBMODULE,
			"Cannot add submodule without HEAD to index");
		error = -1;
		goto cleanup;
	}
	git_oid_cpy(&entry.oid, &sm->wd_oid);

	if ((error = git_commit_lookup(&head, sm_repo, &sm->wd_oid)) < 0)
		goto cleanup;

	entry.ctime.seconds = git_commit_time(head);
	entry.ctime.nanoseconds = 0;
	entry.mtime.seconds = git_commit_time(head);
	entry.mtime.nanoseconds = 0;

	git_commit_free(head);

402
	/* add it */
Edward Thomson committed
403
	error = git_index_add(index, &entry);
Russell Belfer committed
404

405 406 407 408 409 410 411 412
	/* write it, if requested */
	if (!error && write_index) {
		error = git_index_write(index);

		if (!error)
			git_oid_cpy(&sm->index_oid, &sm->wd_oid);
	}

Russell Belfer committed
413 414 415 416 417 418 419 420 421
cleanup:
	git_repository_free(sm_repo);
	git_buf_free(&path);
	return error;
}

int git_submodule_save(git_submodule *submodule)
{
	int error = 0;
Ben Straub committed
422
	git_config_backend *mods;
Russell Belfer committed
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
	git_buf key = GIT_BUF_INIT;

	assert(submodule);

	mods = open_gitmodules(submodule->owner, true, NULL);
	if (!mods) {
		giterr_set(GITERR_SUBMODULE,
			"Adding submodules to a bare repository is not supported (for now)");
		return -1;
	}

	if ((error = git_buf_printf(&key, "submodule.%s.", submodule->name)) < 0)
		goto cleanup;

	/* save values for path, url, update, ignore, fetchRecurseSubmodules */

	if ((error = submodule_config_key_trunc_puts(&key, "path")) < 0 ||
		(error = git_config_file_set_string(mods, key.ptr, submodule->path)) < 0)
		goto cleanup;

	if ((error = submodule_config_key_trunc_puts(&key, "url")) < 0 ||
		(error = git_config_file_set_string(mods, key.ptr, submodule->url)) < 0)
		goto cleanup;

	if (!(error = submodule_config_key_trunc_puts(&key, "update")) &&
		submodule->update != GIT_SUBMODULE_UPDATE_DEFAULT)
	{
		const char *val = (submodule->update == GIT_SUBMODULE_UPDATE_CHECKOUT) ?
			NULL : _sm_update_map[submodule->update].str_match;
		error = git_config_file_set_string(mods, key.ptr, val);
	}
	if (error < 0)
		goto cleanup;

	if (!(error = submodule_config_key_trunc_puts(&key, "ignore")) &&
		submodule->ignore != GIT_SUBMODULE_IGNORE_DEFAULT)
	{
		const char *val = (submodule->ignore == GIT_SUBMODULE_IGNORE_NONE) ?
			NULL : _sm_ignore_map[submodule->ignore].str_match;
		error = git_config_file_set_string(mods, key.ptr, val);
	}
	if (error < 0)
		goto cleanup;

	if ((error = submodule_config_key_trunc_puts(
			&key, "fetchRecurseSubmodules")) < 0 ||
		(error = git_config_file_set_string(
			mods, key.ptr, submodule->fetch_recurse ? "true" : "false")) < 0)
		goto cleanup;

	/* update internal defaults */

	submodule->ignore_default = submodule->ignore;
	submodule->update_default = submodule->update;
	submodule->flags |= GIT_SUBMODULE_STATUS_IN_CONFIG;

cleanup:
	if (mods != NULL)
		git_config_file_free(mods);
	git_buf_free(&key);

	return error;
}

git_repository *git_submodule_owner(git_submodule *submodule)
{
	assert(submodule);
	return submodule->owner;
}

const char *git_submodule_name(git_submodule *submodule)
{
	assert(submodule);
	return submodule->name;
}

const char *git_submodule_path(git_submodule *submodule)
{
	assert(submodule);
	return submodule->path;
}

const char *git_submodule_url(git_submodule *submodule)
{
	assert(submodule);
	return submodule->url;
}

int git_submodule_set_url(git_submodule *submodule, const char *url)
{
	assert(submodule && url);

	git__free(submodule->url);

	submodule->url = git__strdup(url);
	GITERR_CHECK_ALLOC(submodule->url);

	return 0;
}

523
const git_oid *git_submodule_index_id(git_submodule *submodule)
Russell Belfer committed
524 525 526 527 528 529 530 531 532
{
	assert(submodule);

	if (submodule->flags & GIT_SUBMODULE_STATUS__INDEX_OID_VALID)
		return &submodule->index_oid;
	else
		return NULL;
}

533
const git_oid *git_submodule_head_id(git_submodule *submodule)
Russell Belfer committed
534 535 536 537 538 539 540 541 542
{
	assert(submodule);

	if (submodule->flags & GIT_SUBMODULE_STATUS__HEAD_OID_VALID)
		return &submodule->head_oid;
	else
		return NULL;
}

543
const git_oid *git_submodule_wd_id(git_submodule *submodule)
Russell Belfer committed
544 545 546 547 548 549 550 551 552
{
	assert(submodule);

	if (!(submodule->flags & GIT_SUBMODULE_STATUS__WD_OID_VALID)) {
		git_repository *subrepo;

		/* calling submodule open grabs the HEAD OID if possible */
		if (!git_submodule_open(&subrepo, submodule))
			git_repository_free(subrepo);
553 554
		else
			giterr_clear();
Russell Belfer committed
555 556 557 558 559 560 561 562 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 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	}

	if (submodule->flags & GIT_SUBMODULE_STATUS__WD_OID_VALID)
		return &submodule->wd_oid;
	else
		return NULL;
}

git_submodule_ignore_t git_submodule_ignore(git_submodule *submodule)
{
	assert(submodule);
	return submodule->ignore;
}

git_submodule_ignore_t git_submodule_set_ignore(
	git_submodule *submodule, git_submodule_ignore_t ignore)
{
	git_submodule_ignore_t old;

	assert(submodule);

	if (ignore == GIT_SUBMODULE_IGNORE_DEFAULT)
		ignore = submodule->ignore_default;

	old = submodule->ignore;
	submodule->ignore = ignore;
	return old;
}

git_submodule_update_t git_submodule_update(git_submodule *submodule)
{
	assert(submodule);
	return submodule->update;
}

git_submodule_update_t git_submodule_set_update(
	git_submodule *submodule, git_submodule_update_t update)
{
	git_submodule_update_t old;

	assert(submodule);

	if (update == GIT_SUBMODULE_UPDATE_DEFAULT)
		update = submodule->update_default;

	old = submodule->update;
	submodule->update = update;
	return old;
}

605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
int git_submodule_fetch_recurse_submodules(
	git_submodule *submodule)
{
	assert(submodule);
	return submodule->fetch_recurse;
}

int git_submodule_set_fetch_recurse_submodules(
	git_submodule *submodule,
	int fetch_recurse_submodules)
{
	int old;

	assert(submodule);

	old = submodule->fetch_recurse;
	submodule->fetch_recurse = (fetch_recurse_submodules != 0);
	return old;
}

Russell Belfer committed
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
int git_submodule_init(git_submodule *submodule, int overwrite)
{
	int error;

	/* write "submodule.NAME.url" */

	if (!submodule->url) {
		giterr_set(GITERR_SUBMODULE,
			"No URL configured for submodule '%s'", submodule->name);
		return -1;
	}

	error = submodule_update_config(
		submodule, "url", submodule->url, overwrite != 0, false);
	if (error < 0)
		return error;

	/* write "submodule.NAME.update" if not default */

	if (submodule->update == GIT_SUBMODULE_UPDATE_CHECKOUT)
		error = submodule_update_config(
			submodule, "update", NULL, (overwrite != 0), false);
	else if (submodule->update != GIT_SUBMODULE_UPDATE_DEFAULT)
		error = submodule_update_config(
			submodule, "update",
			_sm_update_map[submodule->update].str_match,
			(overwrite != 0), false);

	return error;
}

int git_submodule_sync(git_submodule *submodule)
{
	if (!submodule->url) {
		giterr_set(GITERR_SUBMODULE,
			"No URL configured for submodule '%s'", submodule->name);
		return -1;
	}

	/* copy URL over to config only if it already exists */

	return submodule_update_config(
		submodule, "url", submodule->url, true, true);
}

int git_submodule_open(
	git_repository **subrepo,
	git_submodule *submodule)
{
	int error;
	git_buf path = GIT_BUF_INIT;
	git_repository *repo;
	const char *workdir;

	assert(submodule && subrepo);

	repo = submodule->owner;
	workdir = git_repository_workdir(repo);

	if (!workdir) {
		giterr_set(GITERR_REPOSITORY,
			"Cannot open submodule repository in a bare repo");
		return GIT_ENOTFOUND;
	}

	if ((submodule->flags & GIT_SUBMODULE_STATUS_IN_WD) == 0) {
		giterr_set(GITERR_REPOSITORY,
			"Cannot open submodule repository that is not checked out");
		return GIT_ENOTFOUND;
	}

	if (git_buf_joinpath(&path, workdir, submodule->path) < 0)
		return -1;

	error = git_repository_open(subrepo, path.ptr);

	git_buf_free(&path);

	/* if we have opened the submodule successfully, let's grab the HEAD OID */
704
	if (!error) {
705
		if (!git_reference_name_to_id(
Russell Belfer committed
706 707 708 709 710 711 712 713 714 715 716 717
				&submodule->wd_oid, *subrepo, GIT_HEAD_FILE))
			submodule->flags |= GIT_SUBMODULE_STATUS__WD_OID_VALID;
		else
			giterr_clear();
	}

	return error;
}

int git_submodule_reload_all(git_repository *repo)
{
	assert(repo);
718 719
	git_submodule_config_free(repo);
	return load_submodule_config(repo);
Russell Belfer committed
720 721 722 723 724 725
}

int git_submodule_reload(git_submodule *submodule)
{
	git_repository *repo;
	git_index *index;
726 727
	int error;
	size_t pos;
Russell Belfer committed
728
	git_tree *head;
Ben Straub committed
729
	git_config_backend *mods;
Russell Belfer committed
730 731 732 733 734 735 736 737 738

	assert(submodule);

	/* refresh index data */

	repo = submodule->owner;
	if (git_repository_index__weakptr(&index, repo) < 0)
		return -1;

739 740 741 742
	submodule->flags = submodule->flags &
		~(GIT_SUBMODULE_STATUS_IN_INDEX |
		  GIT_SUBMODULE_STATUS__INDEX_OID_VALID);

743
	if (!git_index_find(&pos, index, submodule->path)) {
Ben Straub committed
744
		const git_index_entry *entry = git_index_get_byindex(index, pos);
Russell Belfer committed
745

746 747 748 749 750 751 752
		if (S_ISGITLINK(entry->mode)) {
			if ((error = submodule_load_from_index(repo, entry)) < 0)
				return error;
		} else {
			submodule_mode_mismatch(
				repo, entry->path, GIT_SUBMODULE_STATUS__INDEX_NOT_SUBMODULE);
		}
Russell Belfer committed
753 754 755 756 757 758 759 760 761 762 763 764
	}

	/* refresh HEAD tree data */

	if (!(error = git_repository_head_tree(&head, repo))) {
		git_tree_entry *te;

		submodule->flags = submodule->flags &
			~(GIT_SUBMODULE_STATUS_IN_HEAD |
			  GIT_SUBMODULE_STATUS__HEAD_OID_VALID);

		if (!(error = git_tree_entry_bypath(&te, head, submodule->path))) {
765 766 767 768 769 770 771 772

			if (S_ISGITLINK(te->attr)) {
				error = submodule_load_from_head(repo, submodule->path, &te->oid);
			} else {
				submodule_mode_mismatch(
					repo, submodule->path,
					GIT_SUBMODULE_STATUS__HEAD_NOT_SUBMODULE);
			}
Russell Belfer committed
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792

			git_tree_entry_free(te);
		}
		else if (error == GIT_ENOTFOUND) {
			giterr_clear();
			error = 0;
		}

		git_tree_free(head);
	}

	if (error < 0)
		return error;

	/* refresh config data */

	if ((mods = open_gitmodules(repo, false, NULL)) != NULL) {
		git_buf path = GIT_BUF_INIT;

		git_buf_sets(&path, "submodule\\.");
793
		git_buf_text_puts_escape_regex(&path, submodule->name);
Russell Belfer committed
794 795 796 797 798 799 800 801 802
		git_buf_puts(&path, ".*");

		if (git_buf_oom(&path))
			error = -1;
		else
			error = git_config_file_foreach_match(
				mods, path.ptr, submodule_load_from_config, repo);

		git_buf_free(&path);
803
		git_config_file_free(mods);
Russell Belfer committed
804 805
	}

806 807 808 809 810 811 812 813 814 815
	if (error < 0)
		return error;

	/* refresh wd data */

	submodule->flags = submodule->flags &
		~(GIT_SUBMODULE_STATUS_IN_WD | GIT_SUBMODULE_STATUS__WD_OID_VALID);

	error = submodule_load_from_wd_lite(submodule, submodule->path, NULL);

Russell Belfer committed
816 817 818 819 820 821 822
	return error;
}

int git_submodule_status(
	unsigned int *status,
	git_submodule *submodule)
{
823 824 825
	int error = 0;
	unsigned int status_val;

Russell Belfer committed
826 827
	assert(status && submodule);

828
	status_val = GIT_SUBMODULE_STATUS__CLEAR_INTERNAL(submodule->flags);
829

830 831 832 833
	if (submodule->ignore != GIT_SUBMODULE_IGNORE_ALL) {
		if (!(error = submodule_index_status(&status_val, submodule)))
			error = submodule_wd_status(&status_val, submodule);
	}
Russell Belfer committed
834

835
	*status = status_val;
Russell Belfer committed
836

837
	return error;
Russell Belfer committed
838 839
}

840 841 842 843 844 845 846 847 848 849 850 851 852 853
int git_submodule_location(
	unsigned int *location_status,
	git_submodule *submodule)
{
	assert(location_status && submodule);

	*location_status = submodule->flags &
		(GIT_SUBMODULE_STATUS_IN_HEAD | GIT_SUBMODULE_STATUS_IN_INDEX |
		 GIT_SUBMODULE_STATUS_IN_CONFIG | GIT_SUBMODULE_STATUS_IN_WD);

	return 0;
}


Russell Belfer committed
854 855 856 857 858
/*
 * INTERNAL FUNCTIONS
 */

static git_submodule *submodule_alloc(git_repository *repo, const char *name)
859
{
860
	git_submodule *sm;
861

862 863
	if (!name || !strlen(name)) {
		giterr_set(GITERR_SUBMODULE, "Invalid submodule name");
864 865 866
		return NULL;
	}

867 868 869 870 871 872 873 874
	sm = git__calloc(1, sizeof(git_submodule));
	if (sm == NULL)
		goto fail;

	sm->path = sm->name = git__strdup(name);
	if (!sm->name)
		goto fail;

Russell Belfer committed
875
	sm->owner = repo;
876
	sm->refcount = 1;
Russell Belfer committed
877 878

	return sm;
879 880 881 882

fail:
	submodule_release(sm, 0);
	return NULL;
Russell Belfer committed
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
}

static void submodule_release(git_submodule *sm, int decr)
{
	if (!sm)
		return;

	sm->refcount -= decr;

	if (sm->refcount == 0) {
		if (sm->name != sm->path) {
			git__free(sm->path);
			sm->path = NULL;
		}

		git__free(sm->name);
		sm->name = NULL;

		git__free(sm->url);
		sm->url = NULL;

		sm->owner = NULL;

		git__free(sm);
	}
}

910 911 912 913 914
static int submodule_get(
	git_submodule **sm_ptr,
	git_repository *repo,
	const char *name,
	const char *alternate)
Russell Belfer committed
915 916 917 918
{
	git_strmap *smcfg = repo->submodules;
	khiter_t pos;
	git_submodule *sm;
919
	int error;
Russell Belfer committed
920

921
	assert(repo && name);
Russell Belfer committed
922

923
	pos = git_strmap_lookup_index(smcfg, name);
Russell Belfer committed
924

925 926
	if (!git_strmap_valid_index(smcfg, pos) && alternate)
		pos = git_strmap_lookup_index(smcfg, alternate);
Russell Belfer committed
927

928 929
	if (!git_strmap_valid_index(smcfg, pos)) {
		sm = submodule_alloc(repo, name);
Russell Belfer committed
930

931 932 933
		/* insert value at name - if another thread beats us to it, then use
		 * their record and release our own.
		 */
934
		pos = kh_put(str, smcfg, sm->name, &error);
935 936 937 938 939 940 941 942 943 944 945 946

		if (error < 0) {
			submodule_release(sm, 1);
			sm = NULL;
		} else if (error == 0) {
			submodule_release(sm, 1);
			sm = git_strmap_value_at(smcfg, pos);
		} else {
			git_strmap_set_value_at(smcfg, pos, sm);
		}
	} else {
		sm = git_strmap_value_at(smcfg, pos);
Russell Belfer committed
947 948
	}

949
	*sm_ptr = sm;
Russell Belfer committed
950

951
	return (sm != NULL) ? 0 : -1;
952 953
}

Russell Belfer committed
954 955
static int submodule_load_from_index(
	git_repository *repo, const git_index_entry *entry)
956
{
957
	git_submodule *sm;
958

959
	if (submodule_get(&sm, repo, entry->path, NULL) < 0)
Russell Belfer committed
960
		return -1;
961

Russell Belfer committed
962 963 964
	if (sm->flags & GIT_SUBMODULE_STATUS_IN_INDEX) {
		sm->flags |= GIT_SUBMODULE_STATUS__INDEX_MULTIPLE_ENTRIES;
		return 0;
965 966
	}

Russell Belfer committed
967
	sm->flags |= GIT_SUBMODULE_STATUS_IN_INDEX;
968

Russell Belfer committed
969 970
	git_oid_cpy(&sm->index_oid, &entry->oid);
	sm->flags |= GIT_SUBMODULE_STATUS__INDEX_OID_VALID;
971

972
	return 0;
Russell Belfer committed
973
}
974

Russell Belfer committed
975 976 977
static int submodule_load_from_head(
	git_repository *repo, const char *path, const git_oid *oid)
{
978
	git_submodule *sm;
979

980
	if (submodule_get(&sm, repo, path, NULL) < 0)
Russell Belfer committed
981
		return -1;
982

Russell Belfer committed
983
	sm->flags |= GIT_SUBMODULE_STATUS_IN_HEAD;
984

Russell Belfer committed
985 986
	git_oid_cpy(&sm->head_oid, oid);
	sm->flags |= GIT_SUBMODULE_STATUS__HEAD_OID_VALID;
987

988 989 990 991 992 993 994 995
	return 0;
}

static int submodule_config_error(const char *property, const char *value)
{
	giterr_set(GITERR_INVALID,
		"Invalid value for submodule '%s' property: '%s'", property, value);
	return -1;
996 997
}

Russell Belfer committed
998
static int submodule_load_from_config(
999
	const git_config_entry *entry, void *data)
1000
{
Russell Belfer committed
1001 1002
	git_repository *repo = data;
	git_strmap *smcfg = repo->submodules;
1003
	const char *namestart, *property, *alternate = NULL;
1004
	const char *key = entry->name, *value = entry->value;
1005 1006 1007
	git_buf name = GIT_BUF_INIT;
	git_submodule *sm;
	bool is_path;
1008
	int error = 0;
1009 1010 1011 1012 1013 1014 1015 1016 1017

	if (git__prefixcmp(key, "submodule.") != 0)
		return 0;

	namestart = key + strlen("submodule.");
	property  = strrchr(namestart, '.');
	if (property == NULL)
		return 0;
	property++;
Russell Belfer committed
1018
	is_path = (strcasecmp(property, "path") == 0);
1019 1020 1021 1022

	if (git_buf_set(&name, namestart, property - namestart - 1) < 0)
		return -1;

1023 1024 1025 1026
	if (submodule_get(&sm, repo, name.ptr, is_path ? value : NULL) < 0) {
		git_buf_free(&name);
		return -1;
	}
1027

Russell Belfer committed
1028 1029
	sm->flags |= GIT_SUBMODULE_STATUS_IN_CONFIG;

1030 1031 1032
	/* Only from config might we get differing names & paths.  If so, then
	 * update the submodule and insert under the alternative key.
	 */
1033

1034 1035 1036
	/* TODO: if case insensitive filesystem, then the following strcmps
	 * should be strcasecmp
	 */
1037

1038 1039 1040 1041 1042 1043
	if (strcmp(sm->name, name.ptr) != 0) {
		alternate = sm->name = git_buf_detach(&name);
	} else if (is_path && value && strcmp(sm->path, value) != 0) {
		alternate = sm->path = git__strdup(value);
		if (!sm->path)
			error = -1;
1044
	}
1045 1046 1047
	if (alternate) {
		void *old_sm = NULL;
		git_strmap_insert2(smcfg, alternate, sm, old_sm, error);
1048

1049 1050 1051 1052 1053 1054 1055 1056
		if (error >= 0)
			sm->refcount++; /* inserted under a new key */

		/* if we replaced an old module under this key, release the old one */
		if (old_sm && ((git_submodule *)old_sm) != sm) {
			submodule_release(old_sm, 1);
			/* TODO: log warning about multiple submodules with same path */
		}
1057 1058
	}

1059 1060 1061 1062
	git_buf_free(&name);
	if (error < 0)
		return error;

Russell Belfer committed
1063 1064 1065 1066
	/* TODO: Look up path in index and if it is present but not a GITLINK
	 * then this should be deleted (at least to match git's behavior)
	 */

1067 1068 1069 1070
	if (is_path)
		return 0;

	/* copy other properties into submodule entry */
Russell Belfer committed
1071
	if (strcasecmp(property, "url") == 0) {
1072 1073 1074
		git__free(sm->url);
		sm->url = NULL;

Russell Belfer committed
1075
		if (value != NULL && (sm->url = git__strdup(value)) == NULL)
1076
			return -1;
1077
	}
Russell Belfer committed
1078
	else if (strcasecmp(property, "update") == 0) {
1079 1080
		int val;
		if (git_config_lookup_map_value(
1081
			&val, _sm_update_map, ARRAY_SIZE(_sm_update_map), value) < 0)
1082
			return submodule_config_error("update", value);
Russell Belfer committed
1083
		sm->update_default = sm->update = (git_submodule_update_t)val;
1084
	}
Russell Belfer committed
1085
	else if (strcasecmp(property, "fetchRecurseSubmodules") == 0) {
1086 1087
		if (git__parse_bool(&sm->fetch_recurse, value) < 0)
			return submodule_config_error("fetchRecurseSubmodules", value);
1088
	}
Russell Belfer committed
1089
	else if (strcasecmp(property, "ignore") == 0) {
1090 1091
		int val;
		if (git_config_lookup_map_value(
1092
			&val, _sm_ignore_map, ARRAY_SIZE(_sm_ignore_map), value) < 0)
1093
			return submodule_config_error("ignore", value);
Russell Belfer committed
1094
		sm->ignore_default = sm->ignore = (git_submodule_ignore_t)val;
1095 1096 1097 1098 1099 1100
	}
	/* ignore other unknown submodule properties */

	return 0;
}

Russell Belfer committed
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
static int submodule_load_from_wd_lite(
	git_submodule *sm, const char *name, void *payload)
{
	git_repository *repo = git_submodule_owner(sm);
	git_buf path = GIT_BUF_INIT;

	GIT_UNUSED(name);
	GIT_UNUSED(payload);

	if (git_buf_joinpath(&path, git_repository_workdir(repo), sm->path) < 0)
		return -1;

	if (git_path_isdir(path.ptr))
		sm->flags |= GIT_SUBMODULE_STATUS__WD_SCANNED;

	if (git_path_contains(&path, DOT_GIT))
		sm->flags |= GIT_SUBMODULE_STATUS_IN_WD;

	git_buf_free(&path);

	return 0;
}

1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
static void submodule_mode_mismatch(
	git_repository *repo, const char *path, unsigned int flag)
{
	khiter_t pos = git_strmap_lookup_index(repo->submodules, path);

	if (git_strmap_valid_index(repo->submodules, pos)) {
		git_submodule *sm = git_strmap_value_at(repo->submodules, pos);

		sm->flags |= flag;
	}
}

Russell Belfer committed
1136 1137
static int load_submodule_config_from_index(
	git_repository *repo, git_oid *gitmodules_oid)
1138 1139
{
	int error;
1140
	git_index *index;
Russell Belfer committed
1141 1142
	git_iterator *i;
	const git_index_entry *entry;
1143

1144
	if ((error = git_repository_index__weakptr(&index, repo)) < 0 ||
1145
		(error = git_iterator_for_index(&i, index, 0, NULL, NULL)) < 0)
Russell Belfer committed
1146
		return error;
1147

1148
	while (!(error = git_iterator_advance(&entry, i))) {
1149 1150

		if (S_ISGITLINK(entry->mode)) {
Russell Belfer committed
1151 1152 1153
			error = submodule_load_from_index(repo, entry);
			if (error < 0)
				break;
1154 1155 1156 1157 1158 1159 1160
		} else {
			submodule_mode_mismatch(
				repo, entry->path, GIT_SUBMODULE_STATUS__INDEX_NOT_SUBMODULE);

			if (strcmp(entry->path, GIT_MODULES_FILE) == 0)
				git_oid_cpy(gitmodules_oid, &entry->oid);
		}
1161 1162
	}

1163 1164 1165
	if (error == GIT_ITEROVER)
		error = 0;

Russell Belfer committed
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
	git_iterator_free(i);

	return error;
}

static int load_submodule_config_from_head(
	git_repository *repo, git_oid *gitmodules_oid)
{
	int error;
	git_tree *head;
	git_iterator *i;
	const git_index_entry *entry;

1179 1180 1181 1182 1183
	/* if we can't look up current head, then there's no submodule in it */
	if (git_repository_head_tree(&head, repo) < 0) {
		giterr_clear();
		return 0;
	}
Russell Belfer committed
1184

1185
	if ((error = git_iterator_for_tree(&i, head, 0, NULL, NULL)) < 0) {
Russell Belfer committed
1186 1187 1188 1189
		git_tree_free(head);
		return error;
	}

1190
	while (!(error = git_iterator_advance(&entry, i))) {
Russell Belfer committed
1191 1192 1193 1194 1195

		if (S_ISGITLINK(entry->mode)) {
			error = submodule_load_from_head(repo, entry->path, &entry->oid);
			if (error < 0)
				break;
1196 1197 1198 1199 1200 1201 1202 1203
		} else {
			submodule_mode_mismatch(
				repo, entry->path, GIT_SUBMODULE_STATUS__HEAD_NOT_SUBMODULE);

			if (strcmp(entry->path, GIT_MODULES_FILE) == 0 &&
				git_oid_iszero(gitmodules_oid))
				git_oid_cpy(gitmodules_oid, &entry->oid);
		}
Russell Belfer committed
1204 1205
	}

1206 1207 1208
	if (error == GIT_ITEROVER)
		error = 0;

Russell Belfer committed
1209 1210 1211 1212 1213 1214
	git_iterator_free(i);
	git_tree_free(head);

	return error;
}

Ben Straub committed
1215
static git_config_backend *open_gitmodules(
Russell Belfer committed
1216 1217 1218 1219 1220 1221
	git_repository *repo,
	bool okay_to_create,
	const git_oid *gitmodules_oid)
{
	const char *workdir = git_repository_workdir(repo);
	git_buf path = GIT_BUF_INIT;
Ben Straub committed
1222
	git_config_backend *mods = NULL;
Russell Belfer committed
1223 1224 1225 1226 1227 1228 1229 1230

	if (workdir != NULL) {
		if (git_buf_joinpath(&path, workdir, GIT_MODULES_FILE) != 0)
			return NULL;

		if (okay_to_create || git_path_isfile(path.ptr)) {
			/* git_config_file__ondisk should only fail if OOM */
			if (git_config_file__ondisk(&mods, path.ptr) < 0)
1231
				mods = NULL;
Russell Belfer committed
1232
			/* open should only fail here if the file is malformed */
1233
			else if (git_config_file_open(mods, GIT_CONFIG_LEVEL_LOCAL) < 0) {
Russell Belfer committed
1234 1235 1236
				git_config_file_free(mods);
				mods = NULL;
			}
1237 1238 1239
		}
	}

Russell Belfer committed
1240 1241 1242 1243 1244 1245 1246 1247
	if (!mods && gitmodules_oid && !git_oid_iszero(gitmodules_oid)) {
		/* TODO: Retrieve .gitmodules content from ODB */

		/* Should we actually do this?  Core git does not, but it means you
		 * can't really get much information about submodules on bare repos.
		 */
	}

1248 1249
	git_buf_free(&path);

Russell Belfer committed
1250 1251 1252
	return mods;
}

1253
static int load_submodule_config(git_repository *repo)
Russell Belfer committed
1254 1255 1256 1257
{
	int error;
	git_oid gitmodules_oid;
	git_buf path = GIT_BUF_INIT;
Ben Straub committed
1258
	git_config_backend *mods = NULL;
Russell Belfer committed
1259

1260
	if (repo->submodules)
Russell Belfer committed
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
		return 0;

	memset(&gitmodules_oid, 0, sizeof(gitmodules_oid));

	/* Submodule data is kept in a hashtable keyed by both name and path.
	 * These are usually the same, but that is not guaranteed.
	 */
	if (!repo->submodules) {
		repo->submodules = git_strmap_alloc();
		GITERR_CHECK_ALLOC(repo->submodules);
1271 1272
	}

Russell Belfer committed
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	/* add submodule information from index */

	if ((error = load_submodule_config_from_index(repo, &gitmodules_oid)) < 0)
		goto cleanup;

	/* add submodule information from HEAD */

	if ((error = load_submodule_config_from_head(repo, &gitmodules_oid)) < 0)
		goto cleanup;

	/* add submodule information from .gitmodules */

	if ((mods = open_gitmodules(repo, false, &gitmodules_oid)) != NULL)
		error = git_config_file_foreach(mods, submodule_load_from_config, repo);

	if (error != 0)
		goto cleanup;

	/* shallow scan submodules in work tree */
1292

Russell Belfer committed
1293 1294
	if (!git_repository_is_bare(repo))
		error = git_submodule_foreach(repo, submodule_load_from_wd_lite, NULL);
1295 1296

cleanup:
Russell Belfer committed
1297 1298
	git_buf_free(&path);

1299 1300
	if (mods != NULL)
		git_config_file_free(mods);
Russell Belfer committed
1301

1302
	if (error)
Russell Belfer committed
1303 1304
		git_submodule_config_free(repo);

1305 1306 1307
	return error;
}

Russell Belfer committed
1308
static int lookup_head_remote(git_buf *url, git_repository *repo)
1309
{
Russell Belfer committed
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
	int error;
	git_config *cfg;
	git_reference *head = NULL, *remote = NULL;
	const char *tgt, *scan;
	git_buf key = GIT_BUF_INIT;

	/* 1. resolve HEAD -> refs/heads/BRANCH
	 * 2. lookup config branch.BRANCH.remote -> ORIGIN
	 * 3. lookup remote.ORIGIN.url
	 */
1320

Russell Belfer committed
1321 1322
	if ((error = git_repository_config__weakptr(&cfg, repo)) < 0)
		return error;
1323

Russell Belfer committed
1324 1325 1326 1327 1328 1329
	if (git_reference_lookup(&head, repo, GIT_HEAD_FILE) < 0) {
		giterr_set(GITERR_SUBMODULE,
			"Cannot resolve relative URL when HEAD cannot be resolved");
		error = GIT_ENOTFOUND;
		goto cleanup;
	}
1330

Russell Belfer committed
1331 1332 1333 1334 1335 1336 1337
	if (git_reference_type(head) != GIT_REF_SYMBOLIC) {
		giterr_set(GITERR_SUBMODULE,
			"Cannot resolve relative URL when HEAD is not symbolic");
		error = GIT_ENOTFOUND;
		goto cleanup;
	}

1338
	if ((error = git_branch_upstream(&remote, head)) < 0)
Russell Belfer committed
1339 1340 1341 1342 1343
		goto cleanup;

	/* remote should refer to something like refs/remotes/ORIGIN/BRANCH */

	if (git_reference_type(remote) != GIT_REF_SYMBOLIC ||
1344
		git__prefixcmp(git_reference_symbolic_target(remote), GIT_REFS_REMOTES_DIR) != 0)
Russell Belfer committed
1345 1346 1347 1348 1349 1350 1351
	{
		giterr_set(GITERR_SUBMODULE,
			"Cannot resolve relative URL when HEAD is not symbolic");
		error = GIT_ENOTFOUND;
		goto cleanup;
	}

1352
	scan = tgt = git_reference_symbolic_target(remote) + strlen(GIT_REFS_REMOTES_DIR);
Russell Belfer committed
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
	while (*scan && (*scan != '/' || (scan > tgt && scan[-1] != '\\')))
		scan++; /* find non-escaped slash to end ORIGIN name */

	error = git_buf_printf(&key, "remote.%.*s.url", (int)(scan - tgt), tgt);
	if (error < 0)
		goto cleanup;

	if ((error = git_config_get_string(&tgt, cfg, key.ptr)) < 0)
		goto cleanup;

	error = git_buf_sets(url, tgt);

cleanup:
	git_buf_free(&key);
	git_reference_free(head);
	git_reference_free(remote);

	return error;
1371 1372
}

Russell Belfer committed
1373 1374 1375 1376 1377 1378
static int submodule_update_config(
	git_submodule *submodule,
	const char *attr,
	const char *value,
	bool overwrite,
	bool only_existing)
1379
{
Russell Belfer committed
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
	int error;
	git_config *config;
	git_buf key = GIT_BUF_INIT;
	const char *old = NULL;

	assert(submodule);

	error = git_repository_config__weakptr(&config, submodule->owner);
	if (error < 0)
		return error;

	error = git_buf_printf(&key, "submodule.%s.%s", submodule->name, attr);
	if (error < 0)
		goto cleanup;

	if (git_config_get_string(&old, config, key.ptr) < 0)
		giterr_clear();

	if (!old && only_existing)
		goto cleanup;
	if (old && !overwrite)
		goto cleanup;
	if ((!old && !value) || (old && value && strcmp(old, value) == 0))
		goto cleanup;

	if (!value)
Ben Straub committed
1406
		error = git_config_delete_entry(config, key.ptr);
Russell Belfer committed
1407 1408 1409 1410 1411 1412
	else
		error = git_config_set_string(config, key.ptr, value);

cleanup:
	git_buf_free(&key);
	return error;
1413 1414
}

1415
static int submodule_index_status(unsigned int *status, git_submodule *sm)
Russell Belfer committed
1416
{
1417 1418
	const git_oid *head_oid  = git_submodule_head_id(sm);
	const git_oid *index_oid = git_submodule_index_id(sm);
Russell Belfer committed
1419

1420 1421 1422 1423 1424 1425 1426 1427
	if (!head_oid) {
		if (index_oid)
			*status |= GIT_SUBMODULE_STATUS_INDEX_ADDED;
	}
	else if (!index_oid)
		*status |= GIT_SUBMODULE_STATUS_INDEX_DELETED;
	else if (!git_oid_equal(head_oid, index_oid))
		*status |= GIT_SUBMODULE_STATUS_INDEX_MODIFIED;
Russell Belfer committed
1428

1429
	return 0;
Russell Belfer committed
1430 1431
}

1432
static int submodule_wd_status(unsigned int *status, git_submodule *sm)
1433
{
1434 1435 1436
	int error = 0;
	const git_oid *wd_oid, *index_oid;
	git_repository *sm_repo = NULL;
1437

1438
	/* open repo now if we need it (so wd_id() call won't reopen) */
1439 1440 1441 1442 1443 1444
	if ((sm->ignore == GIT_SUBMODULE_IGNORE_NONE ||
		 sm->ignore == GIT_SUBMODULE_IGNORE_UNTRACKED) &&
		(sm->flags & GIT_SUBMODULE_STATUS_IN_WD) != 0)
	{
		if ((error = git_submodule_open(&sm_repo, sm)) < 0)
			return error;
Russell Belfer committed
1445
	}
1446

1447 1448
	index_oid = git_submodule_index_id(sm);
	wd_oid    = git_submodule_wd_id(sm);
Russell Belfer committed
1449

1450 1451 1452
	if (!index_oid) {
		if (wd_oid)
			*status |= GIT_SUBMODULE_STATUS_WD_ADDED;
Russell Belfer committed
1453
	}
1454 1455 1456 1457 1458 1459
	else if (!wd_oid) {
		if ((sm->flags & GIT_SUBMODULE_STATUS__WD_SCANNED) != 0 &&
			(sm->flags & GIT_SUBMODULE_STATUS_IN_WD) == 0)
			*status |= GIT_SUBMODULE_STATUS_WD_UNINITIALIZED;
		else
			*status |= GIT_SUBMODULE_STATUS_WD_DELETED;
Russell Belfer committed
1460
	}
1461 1462
	else if (!git_oid_equal(index_oid, wd_oid))
		*status |= GIT_SUBMODULE_STATUS_WD_MODIFIED;
Russell Belfer committed
1463

1464 1465
	if (sm_repo != NULL) {
		git_tree *sm_head;
1466
		git_diff_options opt = GIT_DIFF_OPTIONS_INIT;
1467
		git_diff_list *diff;
Russell Belfer committed
1468

1469 1470 1471 1472
		/* the diffs below could be optimized with an early termination
		 * option to the git_diff functions, but for now this is sufficient
		 * (and certainly no worse that what core git does).
		 */
Russell Belfer committed
1473

1474
		/* perform head-to-index diff on submodule */
Russell Belfer committed
1475

1476 1477
		if ((error = git_repository_head_tree(&sm_head, sm_repo)) < 0)
			return error;
1478

1479 1480
		if (sm->ignore == GIT_SUBMODULE_IGNORE_NONE)
			opt.flags |= GIT_DIFF_INCLUDE_UNTRACKED;
1481

1482
		error = git_diff_tree_to_index(&diff, sm_repo, sm_head, NULL, &opt);
Russell Belfer committed
1483

1484
		if (!error) {
1485
			if (git_diff_num_deltas(diff) > 0)
1486
				*status |= GIT_SUBMODULE_STATUS_WD_INDEX_MODIFIED;
Russell Belfer committed
1487

1488 1489 1490
			git_diff_list_free(diff);
			diff = NULL;
		}
Russell Belfer committed
1491

1492
		git_tree_free(sm_head);
1493

1494 1495
		if (error < 0)
			return error;
Russell Belfer committed
1496

1497
		/* perform index-to-workdir diff on submodule */
Russell Belfer committed
1498

1499
		error = git_diff_index_to_workdir(&diff, sm_repo, NULL, &opt);
Russell Belfer committed
1500

1501
		if (!error) {
Russell Belfer committed
1502
			size_t untracked =
1503
				git_diff_num_deltas_of_type(diff, GIT_DELTA_UNTRACKED);
1504

1505 1506
			if (untracked > 0)
				*status |= GIT_SUBMODULE_STATUS_WD_UNTRACKED;
1507

1508
			if (git_diff_num_deltas(diff) != untracked)
1509
				*status |= GIT_SUBMODULE_STATUS_WD_WD_MODIFIED;
1510

1511 1512
			git_diff_list_free(diff);
			diff = NULL;
Russell Belfer committed
1513 1514
		}

1515 1516
		git_repository_free(sm_repo);
	}
Russell Belfer committed
1517 1518

	return error;
1519
}