push: default to single remote even when not named origin
[git/debian.git] / remote.c
blob930fdc9c2f606ab60cc9b9209230f7d9ce5f5556
1 #include "cache.h"
2 #include "config.h"
3 #include "remote.h"
4 #include "refs.h"
5 #include "refspec.h"
6 #include "object-store.h"
7 #include "commit.h"
8 #include "diff.h"
9 #include "revision.h"
10 #include "dir.h"
11 #include "tag.h"
12 #include "string-list.h"
13 #include "mergesort.h"
14 #include "strvec.h"
15 #include "commit-reach.h"
16 #include "advice.h"
18 enum map_direction { FROM_SRC, FROM_DST };
20 struct counted_string {
21 size_t len;
22 const char *s;
25 static int valid_remote(const struct remote *remote)
27 return (!!remote->url) || (!!remote->foreign_vcs);
30 static const char *alias_url(const char *url, struct rewrites *r)
32 int i, j;
33 struct counted_string *longest;
34 int longest_i;
36 longest = NULL;
37 longest_i = -1;
38 for (i = 0; i < r->rewrite_nr; i++) {
39 if (!r->rewrite[i])
40 continue;
41 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
42 if (starts_with(url, r->rewrite[i]->instead_of[j].s) &&
43 (!longest ||
44 longest->len < r->rewrite[i]->instead_of[j].len)) {
45 longest = &(r->rewrite[i]->instead_of[j]);
46 longest_i = i;
50 if (!longest)
51 return url;
53 return xstrfmt("%s%s", r->rewrite[longest_i]->base, url + longest->len);
56 static void add_url(struct remote *remote, const char *url)
58 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
59 remote->url[remote->url_nr++] = url;
62 static void add_pushurl(struct remote *remote, const char *pushurl)
64 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
65 remote->pushurl[remote->pushurl_nr++] = pushurl;
68 static void add_pushurl_alias(struct remote_state *remote_state,
69 struct remote *remote, const char *url)
71 const char *pushurl = alias_url(url, &remote_state->rewrites_push);
72 if (pushurl != url)
73 add_pushurl(remote, pushurl);
76 static void add_url_alias(struct remote_state *remote_state,
77 struct remote *remote, const char *url)
79 add_url(remote, alias_url(url, &remote_state->rewrites));
80 add_pushurl_alias(remote_state, remote, url);
83 struct remotes_hash_key {
84 const char *str;
85 int len;
88 static int remotes_hash_cmp(const void *unused_cmp_data,
89 const struct hashmap_entry *eptr,
90 const struct hashmap_entry *entry_or_key,
91 const void *keydata)
93 const struct remote *a, *b;
94 const struct remotes_hash_key *key = keydata;
96 a = container_of(eptr, const struct remote, ent);
97 b = container_of(entry_or_key, const struct remote, ent);
99 if (key)
100 return strncmp(a->name, key->str, key->len) || a->name[key->len];
101 else
102 return strcmp(a->name, b->name);
105 static struct remote *make_remote(struct remote_state *remote_state,
106 const char *name, int len)
108 struct remote *ret;
109 struct remotes_hash_key lookup;
110 struct hashmap_entry lookup_entry, *e;
112 if (!len)
113 len = strlen(name);
115 lookup.str = name;
116 lookup.len = len;
117 hashmap_entry_init(&lookup_entry, memhash(name, len));
119 e = hashmap_get(&remote_state->remotes_hash, &lookup_entry, &lookup);
120 if (e)
121 return container_of(e, struct remote, ent);
123 CALLOC_ARRAY(ret, 1);
124 ret->prune = -1; /* unspecified */
125 ret->prune_tags = -1; /* unspecified */
126 ret->name = xstrndup(name, len);
127 refspec_init(&ret->push, REFSPEC_PUSH);
128 refspec_init(&ret->fetch, REFSPEC_FETCH);
130 ALLOC_GROW(remote_state->remotes, remote_state->remotes_nr + 1,
131 remote_state->remotes_alloc);
132 remote_state->remotes[remote_state->remotes_nr++] = ret;
134 hashmap_entry_init(&ret->ent, lookup_entry.hash);
135 if (hashmap_put_entry(&remote_state->remotes_hash, ret, ent))
136 BUG("hashmap_put overwrote entry after hashmap_get returned NULL");
137 return ret;
140 static void remote_clear(struct remote *remote)
142 int i;
144 free((char *)remote->name);
145 free((char *)remote->foreign_vcs);
147 for (i = 0; i < remote->url_nr; i++) {
148 free((char *)remote->url[i]);
150 FREE_AND_NULL(remote->pushurl);
152 for (i = 0; i < remote->pushurl_nr; i++) {
153 free((char *)remote->pushurl[i]);
155 FREE_AND_NULL(remote->pushurl);
156 free((char *)remote->receivepack);
157 free((char *)remote->uploadpack);
158 FREE_AND_NULL(remote->http_proxy);
159 FREE_AND_NULL(remote->http_proxy_authmethod);
162 static void add_merge(struct branch *branch, const char *name)
164 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
165 branch->merge_alloc);
166 branch->merge_name[branch->merge_nr++] = name;
169 struct branches_hash_key {
170 const char *str;
171 int len;
174 static int branches_hash_cmp(const void *unused_cmp_data,
175 const struct hashmap_entry *eptr,
176 const struct hashmap_entry *entry_or_key,
177 const void *keydata)
179 const struct branch *a, *b;
180 const struct branches_hash_key *key = keydata;
182 a = container_of(eptr, const struct branch, ent);
183 b = container_of(entry_or_key, const struct branch, ent);
185 if (key)
186 return strncmp(a->name, key->str, key->len) ||
187 a->name[key->len];
188 else
189 return strcmp(a->name, b->name);
192 static struct branch *find_branch(struct remote_state *remote_state,
193 const char *name, size_t len)
195 struct branches_hash_key lookup;
196 struct hashmap_entry lookup_entry, *e;
198 if (!len)
199 len = strlen(name);
201 lookup.str = name;
202 lookup.len = len;
203 hashmap_entry_init(&lookup_entry, memhash(name, len));
205 e = hashmap_get(&remote_state->branches_hash, &lookup_entry, &lookup);
206 if (e)
207 return container_of(e, struct branch, ent);
209 return NULL;
212 static void die_on_missing_branch(struct repository *repo,
213 struct branch *branch)
215 /* branch == NULL is always valid because it represents detached HEAD. */
216 if (branch &&
217 branch != find_branch(repo->remote_state, branch->name, 0))
218 die("branch %s was not found in the repository", branch->name);
221 static struct branch *make_branch(struct remote_state *remote_state,
222 const char *name, size_t len)
224 struct branch *ret;
226 ret = find_branch(remote_state, name, len);
227 if (ret)
228 return ret;
230 CALLOC_ARRAY(ret, 1);
231 ret->name = xstrndup(name, len);
232 ret->refname = xstrfmt("refs/heads/%s", ret->name);
234 hashmap_entry_init(&ret->ent, memhash(name, len));
235 if (hashmap_put_entry(&remote_state->branches_hash, ret, ent))
236 BUG("hashmap_put overwrote entry after hashmap_get returned NULL");
237 return ret;
240 static struct rewrite *make_rewrite(struct rewrites *r,
241 const char *base, size_t len)
243 struct rewrite *ret;
244 int i;
246 for (i = 0; i < r->rewrite_nr; i++) {
247 if (len == r->rewrite[i]->baselen &&
248 !strncmp(base, r->rewrite[i]->base, len))
249 return r->rewrite[i];
252 ALLOC_GROW(r->rewrite, r->rewrite_nr + 1, r->rewrite_alloc);
253 CALLOC_ARRAY(ret, 1);
254 r->rewrite[r->rewrite_nr++] = ret;
255 ret->base = xstrndup(base, len);
256 ret->baselen = len;
257 return ret;
260 static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
262 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
263 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
264 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
265 rewrite->instead_of_nr++;
268 static const char *skip_spaces(const char *s)
270 while (isspace(*s))
271 s++;
272 return s;
275 static void read_remotes_file(struct remote_state *remote_state,
276 struct remote *remote)
278 struct strbuf buf = STRBUF_INIT;
279 FILE *f = fopen_or_warn(git_path("remotes/%s", remote->name), "r");
281 if (!f)
282 return;
283 remote->configured_in_repo = 1;
284 remote->origin = REMOTE_REMOTES;
285 while (strbuf_getline(&buf, f) != EOF) {
286 const char *v;
288 strbuf_rtrim(&buf);
290 if (skip_prefix(buf.buf, "URL:", &v))
291 add_url_alias(remote_state, remote,
292 xstrdup(skip_spaces(v)));
293 else if (skip_prefix(buf.buf, "Push:", &v))
294 refspec_append(&remote->push, skip_spaces(v));
295 else if (skip_prefix(buf.buf, "Pull:", &v))
296 refspec_append(&remote->fetch, skip_spaces(v));
298 strbuf_release(&buf);
299 fclose(f);
302 static void read_branches_file(struct remote_state *remote_state,
303 struct remote *remote)
305 char *frag;
306 struct strbuf buf = STRBUF_INIT;
307 FILE *f = fopen_or_warn(git_path("branches/%s", remote->name), "r");
309 if (!f)
310 return;
312 strbuf_getline_lf(&buf, f);
313 fclose(f);
314 strbuf_trim(&buf);
315 if (!buf.len) {
316 strbuf_release(&buf);
317 return;
320 remote->configured_in_repo = 1;
321 remote->origin = REMOTE_BRANCHES;
324 * The branches file would have URL and optionally
325 * #branch specified. The default (or specified) branch is
326 * fetched and stored in the local branch matching the
327 * remote name.
329 frag = strchr(buf.buf, '#');
330 if (frag)
331 *(frag++) = '\0';
332 else
333 frag = (char *)git_default_branch_name(0);
335 add_url_alias(remote_state, remote, strbuf_detach(&buf, NULL));
336 refspec_appendf(&remote->fetch, "refs/heads/%s:refs/heads/%s",
337 frag, remote->name);
340 * Cogito compatible push: push current HEAD to remote #branch
341 * (master if missing)
343 refspec_appendf(&remote->push, "HEAD:refs/heads/%s", frag);
344 remote->fetch_tags = 1; /* always auto-follow */
347 static int handle_config(const char *key, const char *value, void *cb)
349 const char *name;
350 size_t namelen;
351 const char *subkey;
352 struct remote *remote;
353 struct branch *branch;
354 struct remote_state *remote_state = cb;
356 if (parse_config_key(key, "branch", &name, &namelen, &subkey) >= 0) {
357 if (!name)
358 return 0;
359 branch = make_branch(remote_state, name, namelen);
360 if (!strcmp(subkey, "remote")) {
361 return git_config_string(&branch->remote_name, key, value);
362 } else if (!strcmp(subkey, "pushremote")) {
363 return git_config_string(&branch->pushremote_name, key, value);
364 } else if (!strcmp(subkey, "merge")) {
365 if (!value)
366 return config_error_nonbool(key);
367 add_merge(branch, xstrdup(value));
369 return 0;
371 if (parse_config_key(key, "url", &name, &namelen, &subkey) >= 0) {
372 struct rewrite *rewrite;
373 if (!name)
374 return 0;
375 if (!strcmp(subkey, "insteadof")) {
376 if (!value)
377 return config_error_nonbool(key);
378 rewrite = make_rewrite(&remote_state->rewrites, name,
379 namelen);
380 add_instead_of(rewrite, xstrdup(value));
381 } else if (!strcmp(subkey, "pushinsteadof")) {
382 if (!value)
383 return config_error_nonbool(key);
384 rewrite = make_rewrite(&remote_state->rewrites_push,
385 name, namelen);
386 add_instead_of(rewrite, xstrdup(value));
390 if (parse_config_key(key, "remote", &name, &namelen, &subkey) < 0)
391 return 0;
393 /* Handle remote.* variables */
394 if (!name && !strcmp(subkey, "pushdefault"))
395 return git_config_string(&remote_state->pushremote_name, key,
396 value);
398 if (!name)
399 return 0;
400 /* Handle remote.<name>.* variables */
401 if (*name == '/') {
402 warning(_("config remote shorthand cannot begin with '/': %s"),
403 name);
404 return 0;
406 remote = make_remote(remote_state, name, namelen);
407 remote->origin = REMOTE_CONFIG;
408 if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
409 current_config_scope() == CONFIG_SCOPE_WORKTREE)
410 remote->configured_in_repo = 1;
411 if (!strcmp(subkey, "mirror"))
412 remote->mirror = git_config_bool(key, value);
413 else if (!strcmp(subkey, "skipdefaultupdate"))
414 remote->skip_default_update = git_config_bool(key, value);
415 else if (!strcmp(subkey, "skipfetchall"))
416 remote->skip_default_update = git_config_bool(key, value);
417 else if (!strcmp(subkey, "prune"))
418 remote->prune = git_config_bool(key, value);
419 else if (!strcmp(subkey, "prunetags"))
420 remote->prune_tags = git_config_bool(key, value);
421 else if (!strcmp(subkey, "url")) {
422 const char *v;
423 if (git_config_string(&v, key, value))
424 return -1;
425 add_url(remote, v);
426 } else if (!strcmp(subkey, "pushurl")) {
427 const char *v;
428 if (git_config_string(&v, key, value))
429 return -1;
430 add_pushurl(remote, v);
431 } else if (!strcmp(subkey, "push")) {
432 const char *v;
433 if (git_config_string(&v, key, value))
434 return -1;
435 refspec_append(&remote->push, v);
436 free((char *)v);
437 } else if (!strcmp(subkey, "fetch")) {
438 const char *v;
439 if (git_config_string(&v, key, value))
440 return -1;
441 refspec_append(&remote->fetch, v);
442 free((char *)v);
443 } else if (!strcmp(subkey, "receivepack")) {
444 const char *v;
445 if (git_config_string(&v, key, value))
446 return -1;
447 if (!remote->receivepack)
448 remote->receivepack = v;
449 else
450 error(_("more than one receivepack given, using the first"));
451 } else if (!strcmp(subkey, "uploadpack")) {
452 const char *v;
453 if (git_config_string(&v, key, value))
454 return -1;
455 if (!remote->uploadpack)
456 remote->uploadpack = v;
457 else
458 error(_("more than one uploadpack given, using the first"));
459 } else if (!strcmp(subkey, "tagopt")) {
460 if (!strcmp(value, "--no-tags"))
461 remote->fetch_tags = -1;
462 else if (!strcmp(value, "--tags"))
463 remote->fetch_tags = 2;
464 } else if (!strcmp(subkey, "proxy")) {
465 return git_config_string((const char **)&remote->http_proxy,
466 key, value);
467 } else if (!strcmp(subkey, "proxyauthmethod")) {
468 return git_config_string((const char **)&remote->http_proxy_authmethod,
469 key, value);
470 } else if (!strcmp(subkey, "vcs")) {
471 return git_config_string(&remote->foreign_vcs, key, value);
473 return 0;
476 static void alias_all_urls(struct remote_state *remote_state)
478 int i, j;
479 for (i = 0; i < remote_state->remotes_nr; i++) {
480 int add_pushurl_aliases;
481 if (!remote_state->remotes[i])
482 continue;
483 for (j = 0; j < remote_state->remotes[i]->pushurl_nr; j++) {
484 remote_state->remotes[i]->pushurl[j] =
485 alias_url(remote_state->remotes[i]->pushurl[j],
486 &remote_state->rewrites);
488 add_pushurl_aliases = remote_state->remotes[i]->pushurl_nr == 0;
489 for (j = 0; j < remote_state->remotes[i]->url_nr; j++) {
490 if (add_pushurl_aliases)
491 add_pushurl_alias(
492 remote_state, remote_state->remotes[i],
493 remote_state->remotes[i]->url[j]);
494 remote_state->remotes[i]->url[j] =
495 alias_url(remote_state->remotes[i]->url[j],
496 &remote_state->rewrites);
501 static void read_config(struct repository *repo)
503 int flag;
505 if (repo->remote_state->initialized)
506 return;
507 repo->remote_state->initialized = 1;
509 repo->remote_state->current_branch = NULL;
510 if (startup_info->have_repository) {
511 const char *head_ref = refs_resolve_ref_unsafe(
512 get_main_ref_store(repo), "HEAD", 0, NULL, &flag);
513 if (head_ref && (flag & REF_ISSYMREF) &&
514 skip_prefix(head_ref, "refs/heads/", &head_ref)) {
515 repo->remote_state->current_branch = make_branch(
516 repo->remote_state, head_ref, strlen(head_ref));
519 repo_config(repo, handle_config, repo->remote_state);
520 alias_all_urls(repo->remote_state);
523 static int valid_remote_nick(const char *name)
525 if (!name[0] || is_dot_or_dotdot(name))
526 return 0;
528 /* remote nicknames cannot contain slashes */
529 while (*name)
530 if (is_dir_sep(*name++))
531 return 0;
532 return 1;
535 static const char *remotes_remote_for_branch(struct remote_state *remote_state,
536 struct branch *branch,
537 int *explicit)
539 if (branch && branch->remote_name) {
540 if (explicit)
541 *explicit = 1;
542 return branch->remote_name;
544 if (explicit)
545 *explicit = 0;
546 if (remote_state->remotes_nr == 1)
547 return remote_state->remotes[0]->name;
548 return "origin";
551 const char *remote_for_branch(struct branch *branch, int *explicit)
553 read_config(the_repository);
554 die_on_missing_branch(the_repository, branch);
556 return remotes_remote_for_branch(the_repository->remote_state, branch,
557 explicit);
560 static const char *
561 remotes_pushremote_for_branch(struct remote_state *remote_state,
562 struct branch *branch, int *explicit)
564 if (branch && branch->pushremote_name) {
565 if (explicit)
566 *explicit = 1;
567 return branch->pushremote_name;
569 if (remote_state->pushremote_name) {
570 if (explicit)
571 *explicit = 1;
572 return remote_state->pushremote_name;
574 return remotes_remote_for_branch(remote_state, branch, explicit);
577 const char *pushremote_for_branch(struct branch *branch, int *explicit)
579 read_config(the_repository);
580 die_on_missing_branch(the_repository, branch);
582 return remotes_pushremote_for_branch(the_repository->remote_state,
583 branch, explicit);
586 static struct remote *remotes_remote_get(struct remote_state *remote_state,
587 const char *name);
589 const char *remote_ref_for_branch(struct branch *branch, int for_push)
591 read_config(the_repository);
592 die_on_missing_branch(the_repository, branch);
594 if (branch) {
595 if (!for_push) {
596 if (branch->merge_nr) {
597 return branch->merge_name[0];
599 } else {
600 const char *dst,
601 *remote_name = remotes_pushremote_for_branch(
602 the_repository->remote_state, branch,
603 NULL);
604 struct remote *remote = remotes_remote_get(
605 the_repository->remote_state, remote_name);
607 if (remote && remote->push.nr &&
608 (dst = apply_refspecs(&remote->push,
609 branch->refname))) {
610 return dst;
614 return NULL;
617 static struct remote *
618 remotes_remote_get_1(struct remote_state *remote_state, const char *name,
619 const char *(*get_default)(struct remote_state *,
620 struct branch *, int *))
622 struct remote *ret;
623 int name_given = 0;
625 if (name)
626 name_given = 1;
627 else
628 name = get_default(remote_state, remote_state->current_branch,
629 &name_given);
631 ret = make_remote(remote_state, name, 0);
632 if (valid_remote_nick(name) && have_git_dir()) {
633 if (!valid_remote(ret))
634 read_remotes_file(remote_state, ret);
635 if (!valid_remote(ret))
636 read_branches_file(remote_state, ret);
638 if (name_given && !valid_remote(ret))
639 add_url_alias(remote_state, ret, name);
640 if (!valid_remote(ret))
641 return NULL;
642 return ret;
645 static inline struct remote *
646 remotes_remote_get(struct remote_state *remote_state, const char *name)
648 return remotes_remote_get_1(remote_state, name,
649 remotes_remote_for_branch);
652 struct remote *remote_get(const char *name)
654 read_config(the_repository);
655 return remotes_remote_get(the_repository->remote_state, name);
658 static inline struct remote *
659 remotes_pushremote_get(struct remote_state *remote_state, const char *name)
661 return remotes_remote_get_1(remote_state, name,
662 remotes_pushremote_for_branch);
665 struct remote *pushremote_get(const char *name)
667 read_config(the_repository);
668 return remotes_pushremote_get(the_repository->remote_state, name);
671 int remote_is_configured(struct remote *remote, int in_repo)
673 if (!remote)
674 return 0;
675 if (in_repo)
676 return remote->configured_in_repo;
677 return !!remote->origin;
680 int for_each_remote(each_remote_fn fn, void *priv)
682 int i, result = 0;
683 read_config(the_repository);
684 for (i = 0; i < the_repository->remote_state->remotes_nr && !result;
685 i++) {
686 struct remote *remote =
687 the_repository->remote_state->remotes[i];
688 if (!remote)
689 continue;
690 result = fn(remote, priv);
692 return result;
695 static void handle_duplicate(struct ref *ref1, struct ref *ref2)
697 if (strcmp(ref1->name, ref2->name)) {
698 if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
699 ref2->fetch_head_status != FETCH_HEAD_IGNORE) {
700 die(_("Cannot fetch both %s and %s to %s"),
701 ref1->name, ref2->name, ref2->peer_ref->name);
702 } else if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
703 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
704 warning(_("%s usually tracks %s, not %s"),
705 ref2->peer_ref->name, ref2->name, ref1->name);
706 } else if (ref1->fetch_head_status == FETCH_HEAD_IGNORE &&
707 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
708 die(_("%s tracks both %s and %s"),
709 ref2->peer_ref->name, ref1->name, ref2->name);
710 } else {
712 * This last possibility doesn't occur because
713 * FETCH_HEAD_IGNORE entries always appear at
714 * the end of the list.
716 BUG("Internal error");
719 free(ref2->peer_ref);
720 free(ref2);
723 struct ref *ref_remove_duplicates(struct ref *ref_map)
725 struct string_list refs = STRING_LIST_INIT_NODUP;
726 struct ref *retval = NULL;
727 struct ref **p = &retval;
729 while (ref_map) {
730 struct ref *ref = ref_map;
732 ref_map = ref_map->next;
733 ref->next = NULL;
735 if (!ref->peer_ref) {
736 *p = ref;
737 p = &ref->next;
738 } else {
739 struct string_list_item *item =
740 string_list_insert(&refs, ref->peer_ref->name);
742 if (item->util) {
743 /* Entry already existed */
744 handle_duplicate((struct ref *)item->util, ref);
745 } else {
746 *p = ref;
747 p = &ref->next;
748 item->util = ref;
753 string_list_clear(&refs, 0);
754 return retval;
757 int remote_has_url(struct remote *remote, const char *url)
759 int i;
760 for (i = 0; i < remote->url_nr; i++) {
761 if (!strcmp(remote->url[i], url))
762 return 1;
764 return 0;
767 static int match_name_with_pattern(const char *key, const char *name,
768 const char *value, char **result)
770 const char *kstar = strchr(key, '*');
771 size_t klen;
772 size_t ksuffixlen;
773 size_t namelen;
774 int ret;
775 if (!kstar)
776 die(_("key '%s' of pattern had no '*'"), key);
777 klen = kstar - key;
778 ksuffixlen = strlen(kstar + 1);
779 namelen = strlen(name);
780 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
781 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
782 if (ret && value) {
783 struct strbuf sb = STRBUF_INIT;
784 const char *vstar = strchr(value, '*');
785 if (!vstar)
786 die(_("value '%s' of pattern has no '*'"), value);
787 strbuf_add(&sb, value, vstar - value);
788 strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen);
789 strbuf_addstr(&sb, vstar + 1);
790 *result = strbuf_detach(&sb, NULL);
792 return ret;
795 static int refspec_match(const struct refspec_item *refspec,
796 const char *name)
798 if (refspec->pattern)
799 return match_name_with_pattern(refspec->src, name, NULL, NULL);
801 return !strcmp(refspec->src, name);
804 static int omit_name_by_refspec(const char *name, struct refspec *rs)
806 int i;
808 for (i = 0; i < rs->nr; i++) {
809 if (rs->items[i].negative && refspec_match(&rs->items[i], name))
810 return 1;
812 return 0;
815 struct ref *apply_negative_refspecs(struct ref *ref_map, struct refspec *rs)
817 struct ref **tail;
819 for (tail = &ref_map; *tail; ) {
820 struct ref *ref = *tail;
822 if (omit_name_by_refspec(ref->name, rs)) {
823 *tail = ref->next;
824 free(ref->peer_ref);
825 free(ref);
826 } else
827 tail = &ref->next;
830 return ref_map;
833 static int query_matches_negative_refspec(struct refspec *rs, struct refspec_item *query)
835 int i, matched_negative = 0;
836 int find_src = !query->src;
837 struct string_list reversed = STRING_LIST_INIT_NODUP;
838 const char *needle = find_src ? query->dst : query->src;
841 * Check whether the queried ref matches any negative refpsec. If so,
842 * then we should ultimately treat this as not matching the query at
843 * all.
845 * Note that negative refspecs always match the source, but the query
846 * item uses the destination. To handle this, we apply pattern
847 * refspecs in reverse to figure out if the query source matches any
848 * of the negative refspecs.
850 * The first loop finds and expands all positive refspecs
851 * matched by the queried ref.
853 * The second loop checks if any of the results of the first loop
854 * match any negative refspec.
856 for (i = 0; i < rs->nr; i++) {
857 struct refspec_item *refspec = &rs->items[i];
858 char *expn_name;
860 if (refspec->negative)
861 continue;
863 /* Note the reversal of src and dst */
864 if (refspec->pattern) {
865 const char *key = refspec->dst ? refspec->dst : refspec->src;
866 const char *value = refspec->src;
868 if (match_name_with_pattern(key, needle, value, &expn_name))
869 string_list_append_nodup(&reversed, expn_name);
870 } else if (refspec->matching) {
871 /* For the special matching refspec, any query should match */
872 string_list_append(&reversed, needle);
873 } else if (!refspec->src) {
874 BUG("refspec->src should not be null here");
875 } else if (!strcmp(needle, refspec->src)) {
876 string_list_append(&reversed, refspec->src);
880 for (i = 0; !matched_negative && i < reversed.nr; i++) {
881 if (omit_name_by_refspec(reversed.items[i].string, rs))
882 matched_negative = 1;
885 string_list_clear(&reversed, 0);
887 return matched_negative;
890 static void query_refspecs_multiple(struct refspec *rs,
891 struct refspec_item *query,
892 struct string_list *results)
894 int i;
895 int find_src = !query->src;
897 if (find_src && !query->dst)
898 BUG("query_refspecs_multiple: need either src or dst");
900 if (query_matches_negative_refspec(rs, query))
901 return;
903 for (i = 0; i < rs->nr; i++) {
904 struct refspec_item *refspec = &rs->items[i];
905 const char *key = find_src ? refspec->dst : refspec->src;
906 const char *value = find_src ? refspec->src : refspec->dst;
907 const char *needle = find_src ? query->dst : query->src;
908 char **result = find_src ? &query->src : &query->dst;
910 if (!refspec->dst || refspec->negative)
911 continue;
912 if (refspec->pattern) {
913 if (match_name_with_pattern(key, needle, value, result))
914 string_list_append_nodup(results, *result);
915 } else if (!strcmp(needle, key)) {
916 string_list_append(results, value);
921 int query_refspecs(struct refspec *rs, struct refspec_item *query)
923 int i;
924 int find_src = !query->src;
925 const char *needle = find_src ? query->dst : query->src;
926 char **result = find_src ? &query->src : &query->dst;
928 if (find_src && !query->dst)
929 BUG("query_refspecs: need either src or dst");
931 if (query_matches_negative_refspec(rs, query))
932 return -1;
934 for (i = 0; i < rs->nr; i++) {
935 struct refspec_item *refspec = &rs->items[i];
936 const char *key = find_src ? refspec->dst : refspec->src;
937 const char *value = find_src ? refspec->src : refspec->dst;
939 if (!refspec->dst || refspec->negative)
940 continue;
941 if (refspec->pattern) {
942 if (match_name_with_pattern(key, needle, value, result)) {
943 query->force = refspec->force;
944 return 0;
946 } else if (!strcmp(needle, key)) {
947 *result = xstrdup(value);
948 query->force = refspec->force;
949 return 0;
952 return -1;
955 char *apply_refspecs(struct refspec *rs, const char *name)
957 struct refspec_item query;
959 memset(&query, 0, sizeof(struct refspec_item));
960 query.src = (char *)name;
962 if (query_refspecs(rs, &query))
963 return NULL;
965 return query.dst;
968 int remote_find_tracking(struct remote *remote, struct refspec_item *refspec)
970 return query_refspecs(&remote->fetch, refspec);
973 static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
974 const char *name)
976 size_t len = strlen(name);
977 struct ref *ref = xcalloc(1, st_add4(sizeof(*ref), prefixlen, len, 1));
978 memcpy(ref->name, prefix, prefixlen);
979 memcpy(ref->name + prefixlen, name, len);
980 return ref;
983 struct ref *alloc_ref(const char *name)
985 return alloc_ref_with_prefix("", 0, name);
988 struct ref *copy_ref(const struct ref *ref)
990 struct ref *cpy;
991 size_t len;
992 if (!ref)
993 return NULL;
994 len = st_add3(sizeof(struct ref), strlen(ref->name), 1);
995 cpy = xmalloc(len);
996 memcpy(cpy, ref, len);
997 cpy->next = NULL;
998 cpy->symref = xstrdup_or_null(ref->symref);
999 cpy->remote_status = xstrdup_or_null(ref->remote_status);
1000 cpy->peer_ref = copy_ref(ref->peer_ref);
1001 return cpy;
1004 struct ref *copy_ref_list(const struct ref *ref)
1006 struct ref *ret = NULL;
1007 struct ref **tail = &ret;
1008 while (ref) {
1009 *tail = copy_ref(ref);
1010 ref = ref->next;
1011 tail = &((*tail)->next);
1013 return ret;
1016 void free_one_ref(struct ref *ref)
1018 if (!ref)
1019 return;
1020 free_one_ref(ref->peer_ref);
1021 free(ref->remote_status);
1022 free(ref->symref);
1023 free(ref);
1026 void free_refs(struct ref *ref)
1028 struct ref *next;
1029 while (ref) {
1030 next = ref->next;
1031 free_one_ref(ref);
1032 ref = next;
1036 int ref_compare_name(const void *va, const void *vb)
1038 const struct ref *a = va, *b = vb;
1039 return strcmp(a->name, b->name);
1042 static void *ref_list_get_next(const void *a)
1044 return ((const struct ref *)a)->next;
1047 static void ref_list_set_next(void *a, void *next)
1049 ((struct ref *)a)->next = next;
1052 void sort_ref_list(struct ref **l, int (*cmp)(const void *, const void *))
1054 *l = llist_mergesort(*l, ref_list_get_next, ref_list_set_next, cmp);
1057 int count_refspec_match(const char *pattern,
1058 struct ref *refs,
1059 struct ref **matched_ref)
1061 int patlen = strlen(pattern);
1062 struct ref *matched_weak = NULL;
1063 struct ref *matched = NULL;
1064 int weak_match = 0;
1065 int match = 0;
1067 for (weak_match = match = 0; refs; refs = refs->next) {
1068 char *name = refs->name;
1069 int namelen = strlen(name);
1071 if (!refname_match(pattern, name))
1072 continue;
1074 /* A match is "weak" if it is with refs outside
1075 * heads or tags, and did not specify the pattern
1076 * in full (e.g. "refs/remotes/origin/master") or at
1077 * least from the toplevel (e.g. "remotes/origin/master");
1078 * otherwise "git push $URL master" would result in
1079 * ambiguity between remotes/origin/master and heads/master
1080 * at the remote site.
1082 if (namelen != patlen &&
1083 patlen != namelen - 5 &&
1084 !starts_with(name, "refs/heads/") &&
1085 !starts_with(name, "refs/tags/")) {
1086 /* We want to catch the case where only weak
1087 * matches are found and there are multiple
1088 * matches, and where more than one strong
1089 * matches are found, as ambiguous. One
1090 * strong match with zero or more weak matches
1091 * are acceptable as a unique match.
1093 matched_weak = refs;
1094 weak_match++;
1096 else {
1097 matched = refs;
1098 match++;
1101 if (!matched) {
1102 if (matched_ref)
1103 *matched_ref = matched_weak;
1104 return weak_match;
1106 else {
1107 if (matched_ref)
1108 *matched_ref = matched;
1109 return match;
1113 static void tail_link_ref(struct ref *ref, struct ref ***tail)
1115 **tail = ref;
1116 while (ref->next)
1117 ref = ref->next;
1118 *tail = &ref->next;
1121 static struct ref *alloc_delete_ref(void)
1123 struct ref *ref = alloc_ref("(delete)");
1124 oidclr(&ref->new_oid);
1125 return ref;
1128 static int try_explicit_object_name(const char *name,
1129 struct ref **match)
1131 struct object_id oid;
1133 if (!*name) {
1134 if (match)
1135 *match = alloc_delete_ref();
1136 return 0;
1139 if (get_oid(name, &oid))
1140 return -1;
1142 if (match) {
1143 *match = alloc_ref(name);
1144 oidcpy(&(*match)->new_oid, &oid);
1146 return 0;
1149 static struct ref *make_linked_ref(const char *name, struct ref ***tail)
1151 struct ref *ret = alloc_ref(name);
1152 tail_link_ref(ret, tail);
1153 return ret;
1156 static char *guess_ref(const char *name, struct ref *peer)
1158 struct strbuf buf = STRBUF_INIT;
1160 const char *r = resolve_ref_unsafe(peer->name, RESOLVE_REF_READING,
1161 NULL, NULL);
1162 if (!r)
1163 return NULL;
1165 if (starts_with(r, "refs/heads/")) {
1166 strbuf_addstr(&buf, "refs/heads/");
1167 } else if (starts_with(r, "refs/tags/")) {
1168 strbuf_addstr(&buf, "refs/tags/");
1169 } else {
1170 return NULL;
1173 strbuf_addstr(&buf, name);
1174 return strbuf_detach(&buf, NULL);
1177 static int match_explicit_lhs(struct ref *src,
1178 struct refspec_item *rs,
1179 struct ref **match,
1180 int *allocated_match)
1182 switch (count_refspec_match(rs->src, src, match)) {
1183 case 1:
1184 if (allocated_match)
1185 *allocated_match = 0;
1186 return 0;
1187 case 0:
1188 /* The source could be in the get_sha1() format
1189 * not a reference name. :refs/other is a
1190 * way to delete 'other' ref at the remote end.
1192 if (try_explicit_object_name(rs->src, match) < 0)
1193 return error(_("src refspec %s does not match any"), rs->src);
1194 if (allocated_match)
1195 *allocated_match = 1;
1196 return 0;
1197 default:
1198 return error(_("src refspec %s matches more than one"), rs->src);
1202 static void show_push_unqualified_ref_name_error(const char *dst_value,
1203 const char *matched_src_name)
1205 struct object_id oid;
1206 enum object_type type;
1209 * TRANSLATORS: "matches '%s'%" is the <dst> part of "git push
1210 * <remote> <src>:<dst>" push, and "being pushed ('%s')" is
1211 * the <src>.
1213 error(_("The destination you provided is not a full refname (i.e.,\n"
1214 "starting with \"refs/\"). We tried to guess what you meant by:\n"
1215 "\n"
1216 "- Looking for a ref that matches '%s' on the remote side.\n"
1217 "- Checking if the <src> being pushed ('%s')\n"
1218 " is a ref in \"refs/{heads,tags}/\". If so we add a corresponding\n"
1219 " refs/{heads,tags}/ prefix on the remote side.\n"
1220 "\n"
1221 "Neither worked, so we gave up. You must fully qualify the ref."),
1222 dst_value, matched_src_name);
1224 if (!advice_enabled(ADVICE_PUSH_UNQUALIFIED_REF_NAME))
1225 return;
1227 if (get_oid(matched_src_name, &oid))
1228 BUG("'%s' is not a valid object, "
1229 "match_explicit_lhs() should catch this!",
1230 matched_src_name);
1231 type = oid_object_info(the_repository, &oid, NULL);
1232 if (type == OBJ_COMMIT) {
1233 advise(_("The <src> part of the refspec is a commit object.\n"
1234 "Did you mean to create a new branch by pushing to\n"
1235 "'%s:refs/heads/%s'?"),
1236 matched_src_name, dst_value);
1237 } else if (type == OBJ_TAG) {
1238 advise(_("The <src> part of the refspec is a tag object.\n"
1239 "Did you mean to create a new tag by pushing to\n"
1240 "'%s:refs/tags/%s'?"),
1241 matched_src_name, dst_value);
1242 } else if (type == OBJ_TREE) {
1243 advise(_("The <src> part of the refspec is a tree object.\n"
1244 "Did you mean to tag a new tree by pushing to\n"
1245 "'%s:refs/tags/%s'?"),
1246 matched_src_name, dst_value);
1247 } else if (type == OBJ_BLOB) {
1248 advise(_("The <src> part of the refspec is a blob object.\n"
1249 "Did you mean to tag a new blob by pushing to\n"
1250 "'%s:refs/tags/%s'?"),
1251 matched_src_name, dst_value);
1252 } else {
1253 BUG("'%s' should be commit/tag/tree/blob, is '%d'",
1254 matched_src_name, type);
1258 static int match_explicit(struct ref *src, struct ref *dst,
1259 struct ref ***dst_tail,
1260 struct refspec_item *rs)
1262 struct ref *matched_src, *matched_dst;
1263 int allocated_src;
1265 const char *dst_value = rs->dst;
1266 char *dst_guess;
1268 if (rs->pattern || rs->matching || rs->negative)
1269 return 0;
1271 matched_src = matched_dst = NULL;
1272 if (match_explicit_lhs(src, rs, &matched_src, &allocated_src) < 0)
1273 return -1;
1275 if (!dst_value) {
1276 int flag;
1278 dst_value = resolve_ref_unsafe(matched_src->name,
1279 RESOLVE_REF_READING,
1280 NULL, &flag);
1281 if (!dst_value ||
1282 ((flag & REF_ISSYMREF) &&
1283 !starts_with(dst_value, "refs/heads/")))
1284 die(_("%s cannot be resolved to branch"),
1285 matched_src->name);
1288 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1289 case 1:
1290 break;
1291 case 0:
1292 if (starts_with(dst_value, "refs/")) {
1293 matched_dst = make_linked_ref(dst_value, dst_tail);
1294 } else if (is_null_oid(&matched_src->new_oid)) {
1295 error(_("unable to delete '%s': remote ref does not exist"),
1296 dst_value);
1297 } else if ((dst_guess = guess_ref(dst_value, matched_src))) {
1298 matched_dst = make_linked_ref(dst_guess, dst_tail);
1299 free(dst_guess);
1300 } else {
1301 show_push_unqualified_ref_name_error(dst_value,
1302 matched_src->name);
1304 break;
1305 default:
1306 matched_dst = NULL;
1307 error(_("dst refspec %s matches more than one"),
1308 dst_value);
1309 break;
1311 if (!matched_dst)
1312 return -1;
1313 if (matched_dst->peer_ref)
1314 return error(_("dst ref %s receives from more than one src"),
1315 matched_dst->name);
1316 else {
1317 matched_dst->peer_ref = allocated_src ?
1318 matched_src :
1319 copy_ref(matched_src);
1320 matched_dst->force = rs->force;
1322 return 0;
1325 static int match_explicit_refs(struct ref *src, struct ref *dst,
1326 struct ref ***dst_tail, struct refspec *rs)
1328 int i, errs;
1329 for (i = errs = 0; i < rs->nr; i++)
1330 errs += match_explicit(src, dst, dst_tail, &rs->items[i]);
1331 return errs;
1334 static char *get_ref_match(const struct refspec *rs, const struct ref *ref,
1335 int send_mirror, int direction,
1336 const struct refspec_item **ret_pat)
1338 const struct refspec_item *pat;
1339 char *name;
1340 int i;
1341 int matching_refs = -1;
1342 for (i = 0; i < rs->nr; i++) {
1343 const struct refspec_item *item = &rs->items[i];
1345 if (item->negative)
1346 continue;
1348 if (item->matching &&
1349 (matching_refs == -1 || item->force)) {
1350 matching_refs = i;
1351 continue;
1354 if (item->pattern) {
1355 const char *dst_side = item->dst ? item->dst : item->src;
1356 int match;
1357 if (direction == FROM_SRC)
1358 match = match_name_with_pattern(item->src, ref->name, dst_side, &name);
1359 else
1360 match = match_name_with_pattern(dst_side, ref->name, item->src, &name);
1361 if (match) {
1362 matching_refs = i;
1363 break;
1367 if (matching_refs == -1)
1368 return NULL;
1370 pat = &rs->items[matching_refs];
1371 if (pat->matching) {
1373 * "matching refs"; traditionally we pushed everything
1374 * including refs outside refs/heads/ hierarchy, but
1375 * that does not make much sense these days.
1377 if (!send_mirror && !starts_with(ref->name, "refs/heads/"))
1378 return NULL;
1379 name = xstrdup(ref->name);
1381 if (ret_pat)
1382 *ret_pat = pat;
1383 return name;
1386 static struct ref **tail_ref(struct ref **head)
1388 struct ref **tail = head;
1389 while (*tail)
1390 tail = &((*tail)->next);
1391 return tail;
1394 struct tips {
1395 struct commit **tip;
1396 int nr, alloc;
1399 static void add_to_tips(struct tips *tips, const struct object_id *oid)
1401 struct commit *commit;
1403 if (is_null_oid(oid))
1404 return;
1405 commit = lookup_commit_reference_gently(the_repository, oid, 1);
1406 if (!commit || (commit->object.flags & TMP_MARK))
1407 return;
1408 commit->object.flags |= TMP_MARK;
1409 ALLOC_GROW(tips->tip, tips->nr + 1, tips->alloc);
1410 tips->tip[tips->nr++] = commit;
1413 static void add_missing_tags(struct ref *src, struct ref **dst, struct ref ***dst_tail)
1415 struct string_list dst_tag = STRING_LIST_INIT_NODUP;
1416 struct string_list src_tag = STRING_LIST_INIT_NODUP;
1417 struct string_list_item *item;
1418 struct ref *ref;
1419 struct tips sent_tips;
1422 * Collect everything we know they would have at the end of
1423 * this push, and collect all tags they have.
1425 memset(&sent_tips, 0, sizeof(sent_tips));
1426 for (ref = *dst; ref; ref = ref->next) {
1427 if (ref->peer_ref &&
1428 !is_null_oid(&ref->peer_ref->new_oid))
1429 add_to_tips(&sent_tips, &ref->peer_ref->new_oid);
1430 else
1431 add_to_tips(&sent_tips, &ref->old_oid);
1432 if (starts_with(ref->name, "refs/tags/"))
1433 string_list_append(&dst_tag, ref->name);
1435 clear_commit_marks_many(sent_tips.nr, sent_tips.tip, TMP_MARK);
1437 string_list_sort(&dst_tag);
1439 /* Collect tags they do not have. */
1440 for (ref = src; ref; ref = ref->next) {
1441 if (!starts_with(ref->name, "refs/tags/"))
1442 continue; /* not a tag */
1443 if (string_list_has_string(&dst_tag, ref->name))
1444 continue; /* they already have it */
1445 if (oid_object_info(the_repository, &ref->new_oid, NULL) != OBJ_TAG)
1446 continue; /* be conservative */
1447 item = string_list_append(&src_tag, ref->name);
1448 item->util = ref;
1450 string_list_clear(&dst_tag, 0);
1453 * At this point, src_tag lists tags that are missing from
1454 * dst, and sent_tips lists the tips we are pushing or those
1455 * that we know they already have. An element in the src_tag
1456 * that is an ancestor of any of the sent_tips needs to be
1457 * sent to the other side.
1459 if (sent_tips.nr) {
1460 const int reachable_flag = 1;
1461 struct commit_list *found_commits;
1462 struct commit **src_commits;
1463 int nr_src_commits = 0, alloc_src_commits = 16;
1464 ALLOC_ARRAY(src_commits, alloc_src_commits);
1466 for_each_string_list_item(item, &src_tag) {
1467 struct ref *ref = item->util;
1468 struct commit *commit;
1470 if (is_null_oid(&ref->new_oid))
1471 continue;
1472 commit = lookup_commit_reference_gently(the_repository,
1473 &ref->new_oid,
1475 if (!commit)
1476 /* not pushing a commit, which is not an error */
1477 continue;
1479 ALLOC_GROW(src_commits, nr_src_commits + 1, alloc_src_commits);
1480 src_commits[nr_src_commits++] = commit;
1483 found_commits = get_reachable_subset(sent_tips.tip, sent_tips.nr,
1484 src_commits, nr_src_commits,
1485 reachable_flag);
1487 for_each_string_list_item(item, &src_tag) {
1488 struct ref *dst_ref;
1489 struct ref *ref = item->util;
1490 struct commit *commit;
1492 if (is_null_oid(&ref->new_oid))
1493 continue;
1494 commit = lookup_commit_reference_gently(the_repository,
1495 &ref->new_oid,
1497 if (!commit)
1498 /* not pushing a commit, which is not an error */
1499 continue;
1502 * Is this tag, which they do not have, reachable from
1503 * any of the commits we are sending?
1505 if (!(commit->object.flags & reachable_flag))
1506 continue;
1508 /* Add it in */
1509 dst_ref = make_linked_ref(ref->name, dst_tail);
1510 oidcpy(&dst_ref->new_oid, &ref->new_oid);
1511 dst_ref->peer_ref = copy_ref(ref);
1514 clear_commit_marks_many(nr_src_commits, src_commits, reachable_flag);
1515 free(src_commits);
1516 free_commit_list(found_commits);
1519 string_list_clear(&src_tag, 0);
1520 free(sent_tips.tip);
1523 struct ref *find_ref_by_name(const struct ref *list, const char *name)
1525 for ( ; list; list = list->next)
1526 if (!strcmp(list->name, name))
1527 return (struct ref *)list;
1528 return NULL;
1531 static void prepare_ref_index(struct string_list *ref_index, struct ref *ref)
1533 for ( ; ref; ref = ref->next)
1534 string_list_append_nodup(ref_index, ref->name)->util = ref;
1536 string_list_sort(ref_index);
1540 * Given only the set of local refs, sanity-check the set of push
1541 * refspecs. We can't catch all errors that match_push_refs would,
1542 * but we can catch some errors early before even talking to the
1543 * remote side.
1545 int check_push_refs(struct ref *src, struct refspec *rs)
1547 int ret = 0;
1548 int i;
1550 for (i = 0; i < rs->nr; i++) {
1551 struct refspec_item *item = &rs->items[i];
1553 if (item->pattern || item->matching || item->negative)
1554 continue;
1556 ret |= match_explicit_lhs(src, item, NULL, NULL);
1559 return ret;
1563 * Given the set of refs the local repository has, the set of refs the
1564 * remote repository has, and the refspec used for push, determine
1565 * what remote refs we will update and with what value by setting
1566 * peer_ref (which object is being pushed) and force (if the push is
1567 * forced) in elements of "dst". The function may add new elements to
1568 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
1570 int match_push_refs(struct ref *src, struct ref **dst,
1571 struct refspec *rs, int flags)
1573 int send_all = flags & MATCH_REFS_ALL;
1574 int send_mirror = flags & MATCH_REFS_MIRROR;
1575 int send_prune = flags & MATCH_REFS_PRUNE;
1576 int errs;
1577 struct ref *ref, **dst_tail = tail_ref(dst);
1578 struct string_list dst_ref_index = STRING_LIST_INIT_NODUP;
1580 /* If no refspec is provided, use the default ":" */
1581 if (!rs->nr)
1582 refspec_append(rs, ":");
1584 errs = match_explicit_refs(src, *dst, &dst_tail, rs);
1586 /* pick the remainder */
1587 for (ref = src; ref; ref = ref->next) {
1588 struct string_list_item *dst_item;
1589 struct ref *dst_peer;
1590 const struct refspec_item *pat = NULL;
1591 char *dst_name;
1593 dst_name = get_ref_match(rs, ref, send_mirror, FROM_SRC, &pat);
1594 if (!dst_name)
1595 continue;
1597 if (!dst_ref_index.nr)
1598 prepare_ref_index(&dst_ref_index, *dst);
1600 dst_item = string_list_lookup(&dst_ref_index, dst_name);
1601 dst_peer = dst_item ? dst_item->util : NULL;
1602 if (dst_peer) {
1603 if (dst_peer->peer_ref)
1604 /* We're already sending something to this ref. */
1605 goto free_name;
1606 } else {
1607 if (pat->matching && !(send_all || send_mirror))
1609 * Remote doesn't have it, and we have no
1610 * explicit pattern, and we don't have
1611 * --all or --mirror.
1613 goto free_name;
1615 /* Create a new one and link it */
1616 dst_peer = make_linked_ref(dst_name, &dst_tail);
1617 oidcpy(&dst_peer->new_oid, &ref->new_oid);
1618 string_list_insert(&dst_ref_index,
1619 dst_peer->name)->util = dst_peer;
1621 dst_peer->peer_ref = copy_ref(ref);
1622 dst_peer->force = pat->force;
1623 free_name:
1624 free(dst_name);
1627 string_list_clear(&dst_ref_index, 0);
1629 if (flags & MATCH_REFS_FOLLOW_TAGS)
1630 add_missing_tags(src, dst, &dst_tail);
1632 if (send_prune) {
1633 struct string_list src_ref_index = STRING_LIST_INIT_NODUP;
1634 /* check for missing refs on the remote */
1635 for (ref = *dst; ref; ref = ref->next) {
1636 char *src_name;
1638 if (ref->peer_ref)
1639 /* We're already sending something to this ref. */
1640 continue;
1642 src_name = get_ref_match(rs, ref, send_mirror, FROM_DST, NULL);
1643 if (src_name) {
1644 if (!src_ref_index.nr)
1645 prepare_ref_index(&src_ref_index, src);
1646 if (!string_list_has_string(&src_ref_index,
1647 src_name))
1648 ref->peer_ref = alloc_delete_ref();
1649 free(src_name);
1652 string_list_clear(&src_ref_index, 0);
1655 *dst = apply_negative_refspecs(*dst, rs);
1657 if (errs)
1658 return -1;
1659 return 0;
1662 void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
1663 int force_update)
1665 struct ref *ref;
1667 for (ref = remote_refs; ref; ref = ref->next) {
1668 int force_ref_update = ref->force || force_update;
1669 int reject_reason = 0;
1671 if (ref->peer_ref)
1672 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
1673 else if (!send_mirror)
1674 continue;
1676 ref->deletion = is_null_oid(&ref->new_oid);
1677 if (!ref->deletion &&
1678 oideq(&ref->old_oid, &ref->new_oid)) {
1679 ref->status = REF_STATUS_UPTODATE;
1680 continue;
1684 * If the remote ref has moved and is now different
1685 * from what we expect, reject any push.
1687 * It also is an error if the user told us to check
1688 * with the remote-tracking branch to find the value
1689 * to expect, but we did not have such a tracking
1690 * branch.
1692 * If the tip of the remote-tracking ref is unreachable
1693 * from any reflog entry of its local ref indicating a
1694 * possible update since checkout; reject the push.
1696 if (ref->expect_old_sha1) {
1697 if (!oideq(&ref->old_oid, &ref->old_oid_expect))
1698 reject_reason = REF_STATUS_REJECT_STALE;
1699 else if (ref->check_reachable && ref->unreachable)
1700 reject_reason =
1701 REF_STATUS_REJECT_REMOTE_UPDATED;
1702 else
1704 * If the ref isn't stale, and is reachable
1705 * from one of the reflog entries of
1706 * the local branch, force the update.
1708 force_ref_update = 1;
1712 * If the update isn't already rejected then check
1713 * the usual "must fast-forward" rules.
1715 * Decide whether an individual refspec A:B can be
1716 * pushed. The push will succeed if any of the
1717 * following are true:
1719 * (1) the remote reference B does not exist
1721 * (2) the remote reference B is being removed (i.e.,
1722 * pushing :B where no source is specified)
1724 * (3) the destination is not under refs/tags/, and
1725 * if the old and new value is a commit, the new
1726 * is a descendant of the old.
1728 * (4) it is forced using the +A:B notation, or by
1729 * passing the --force argument
1732 if (!reject_reason && !ref->deletion && !is_null_oid(&ref->old_oid)) {
1733 if (starts_with(ref->name, "refs/tags/"))
1734 reject_reason = REF_STATUS_REJECT_ALREADY_EXISTS;
1735 else if (!has_object_file(&ref->old_oid))
1736 reject_reason = REF_STATUS_REJECT_FETCH_FIRST;
1737 else if (!lookup_commit_reference_gently(the_repository, &ref->old_oid, 1) ||
1738 !lookup_commit_reference_gently(the_repository, &ref->new_oid, 1))
1739 reject_reason = REF_STATUS_REJECT_NEEDS_FORCE;
1740 else if (!ref_newer(&ref->new_oid, &ref->old_oid))
1741 reject_reason = REF_STATUS_REJECT_NONFASTFORWARD;
1745 * "--force" will defeat any rejection implemented
1746 * by the rules above.
1748 if (!force_ref_update)
1749 ref->status = reject_reason;
1750 else if (reject_reason)
1751 ref->forced_update = 1;
1755 static void set_merge(struct remote_state *remote_state, struct branch *ret)
1757 struct remote *remote;
1758 char *ref;
1759 struct object_id oid;
1760 int i;
1762 if (!ret)
1763 return; /* no branch */
1764 if (ret->merge)
1765 return; /* already run */
1766 if (!ret->remote_name || !ret->merge_nr) {
1768 * no merge config; let's make sure we don't confuse callers
1769 * with a non-zero merge_nr but a NULL merge
1771 ret->merge_nr = 0;
1772 return;
1775 remote = remotes_remote_get(remote_state, ret->remote_name);
1777 CALLOC_ARRAY(ret->merge, ret->merge_nr);
1778 for (i = 0; i < ret->merge_nr; i++) {
1779 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1780 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
1781 if (!remote_find_tracking(remote, ret->merge[i]) ||
1782 strcmp(ret->remote_name, "."))
1783 continue;
1784 if (dwim_ref(ret->merge_name[i], strlen(ret->merge_name[i]),
1785 &oid, &ref, 0) == 1)
1786 ret->merge[i]->dst = ref;
1787 else
1788 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
1792 struct branch *branch_get(const char *name)
1794 struct branch *ret;
1796 read_config(the_repository);
1797 if (!name || !*name || !strcmp(name, "HEAD"))
1798 ret = the_repository->remote_state->current_branch;
1799 else
1800 ret = make_branch(the_repository->remote_state, name,
1801 strlen(name));
1802 set_merge(the_repository->remote_state, ret);
1803 return ret;
1806 int branch_has_merge_config(struct branch *branch)
1808 return branch && !!branch->merge;
1811 int branch_merge_matches(struct branch *branch,
1812 int i,
1813 const char *refname)
1815 if (!branch || i < 0 || i >= branch->merge_nr)
1816 return 0;
1817 return refname_match(branch->merge[i]->src, refname);
1820 __attribute__((format (printf,2,3)))
1821 static const char *error_buf(struct strbuf *err, const char *fmt, ...)
1823 if (err) {
1824 va_list ap;
1825 va_start(ap, fmt);
1826 strbuf_vaddf(err, fmt, ap);
1827 va_end(ap);
1829 return NULL;
1832 const char *branch_get_upstream(struct branch *branch, struct strbuf *err)
1834 if (!branch)
1835 return error_buf(err, _("HEAD does not point to a branch"));
1837 if (!branch->merge || !branch->merge[0]) {
1839 * no merge config; is it because the user didn't define any,
1840 * or because it is not a real branch, and get_branch
1841 * auto-vivified it?
1843 if (!ref_exists(branch->refname))
1844 return error_buf(err, _("no such branch: '%s'"),
1845 branch->name);
1846 return error_buf(err,
1847 _("no upstream configured for branch '%s'"),
1848 branch->name);
1851 if (!branch->merge[0]->dst)
1852 return error_buf(err,
1853 _("upstream branch '%s' not stored as a remote-tracking branch"),
1854 branch->merge[0]->src);
1856 return branch->merge[0]->dst;
1859 static const char *tracking_for_push_dest(struct remote *remote,
1860 const char *refname,
1861 struct strbuf *err)
1863 char *ret;
1865 ret = apply_refspecs(&remote->fetch, refname);
1866 if (!ret)
1867 return error_buf(err,
1868 _("push destination '%s' on remote '%s' has no local tracking branch"),
1869 refname, remote->name);
1870 return ret;
1873 static const char *branch_get_push_1(struct remote_state *remote_state,
1874 struct branch *branch, struct strbuf *err)
1876 struct remote *remote;
1878 remote = remotes_remote_get(
1879 remote_state,
1880 remotes_pushremote_for_branch(remote_state, branch, NULL));
1881 if (!remote)
1882 return error_buf(err,
1883 _("branch '%s' has no remote for pushing"),
1884 branch->name);
1886 if (remote->push.nr) {
1887 char *dst;
1888 const char *ret;
1890 dst = apply_refspecs(&remote->push, branch->refname);
1891 if (!dst)
1892 return error_buf(err,
1893 _("push refspecs for '%s' do not include '%s'"),
1894 remote->name, branch->name);
1896 ret = tracking_for_push_dest(remote, dst, err);
1897 free(dst);
1898 return ret;
1901 if (remote->mirror)
1902 return tracking_for_push_dest(remote, branch->refname, err);
1904 switch (push_default) {
1905 case PUSH_DEFAULT_NOTHING:
1906 return error_buf(err, _("push has no destination (push.default is 'nothing')"));
1908 case PUSH_DEFAULT_MATCHING:
1909 case PUSH_DEFAULT_CURRENT:
1910 return tracking_for_push_dest(remote, branch->refname, err);
1912 case PUSH_DEFAULT_UPSTREAM:
1913 return branch_get_upstream(branch, err);
1915 case PUSH_DEFAULT_UNSPECIFIED:
1916 case PUSH_DEFAULT_SIMPLE:
1918 const char *up, *cur;
1920 up = branch_get_upstream(branch, err);
1921 if (!up)
1922 return NULL;
1923 cur = tracking_for_push_dest(remote, branch->refname, err);
1924 if (!cur)
1925 return NULL;
1926 if (strcmp(cur, up))
1927 return error_buf(err,
1928 _("cannot resolve 'simple' push to a single destination"));
1929 return cur;
1933 BUG("unhandled push situation");
1936 const char *branch_get_push(struct branch *branch, struct strbuf *err)
1938 read_config(the_repository);
1939 die_on_missing_branch(the_repository, branch);
1941 if (!branch)
1942 return error_buf(err, _("HEAD does not point to a branch"));
1944 if (!branch->push_tracking_ref)
1945 branch->push_tracking_ref = branch_get_push_1(
1946 the_repository->remote_state, branch, err);
1947 return branch->push_tracking_ref;
1950 static int ignore_symref_update(const char *refname, struct strbuf *scratch)
1952 return !refs_read_symbolic_ref(get_main_ref_store(the_repository), refname, scratch);
1956 * Create and return a list of (struct ref) consisting of copies of
1957 * each remote_ref that matches refspec. refspec must be a pattern.
1958 * Fill in the copies' peer_ref to describe the local tracking refs to
1959 * which they map. Omit any references that would map to an existing
1960 * local symbolic ref.
1962 static struct ref *get_expanded_map(const struct ref *remote_refs,
1963 const struct refspec_item *refspec)
1965 struct strbuf scratch = STRBUF_INIT;
1966 const struct ref *ref;
1967 struct ref *ret = NULL;
1968 struct ref **tail = &ret;
1970 for (ref = remote_refs; ref; ref = ref->next) {
1971 char *expn_name = NULL;
1973 strbuf_reset(&scratch);
1975 if (strchr(ref->name, '^'))
1976 continue; /* a dereference item */
1977 if (match_name_with_pattern(refspec->src, ref->name,
1978 refspec->dst, &expn_name) &&
1979 !ignore_symref_update(expn_name, &scratch)) {
1980 struct ref *cpy = copy_ref(ref);
1982 cpy->peer_ref = alloc_ref(expn_name);
1983 if (refspec->force)
1984 cpy->peer_ref->force = 1;
1985 *tail = cpy;
1986 tail = &cpy->next;
1988 free(expn_name);
1991 strbuf_release(&scratch);
1992 return ret;
1995 static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
1997 const struct ref *ref;
1998 const struct ref *best_match = NULL;
1999 int best_score = 0;
2001 for (ref = refs; ref; ref = ref->next) {
2002 int score = refname_match(name, ref->name);
2004 if (best_score < score) {
2005 best_match = ref;
2006 best_score = score;
2009 return best_match;
2012 struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
2014 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
2016 if (!ref)
2017 return NULL;
2019 return copy_ref(ref);
2022 static struct ref *get_local_ref(const char *name)
2024 if (!name || name[0] == '\0')
2025 return NULL;
2027 if (starts_with(name, "refs/"))
2028 return alloc_ref(name);
2030 if (starts_with(name, "heads/") ||
2031 starts_with(name, "tags/") ||
2032 starts_with(name, "remotes/"))
2033 return alloc_ref_with_prefix("refs/", 5, name);
2035 return alloc_ref_with_prefix("refs/heads/", 11, name);
2038 int get_fetch_map(const struct ref *remote_refs,
2039 const struct refspec_item *refspec,
2040 struct ref ***tail,
2041 int missing_ok)
2043 struct ref *ref_map, **rmp;
2045 if (refspec->negative)
2046 return 0;
2048 if (refspec->pattern) {
2049 ref_map = get_expanded_map(remote_refs, refspec);
2050 } else {
2051 const char *name = refspec->src[0] ? refspec->src : "HEAD";
2053 if (refspec->exact_sha1) {
2054 ref_map = alloc_ref(name);
2055 get_oid_hex(name, &ref_map->old_oid);
2056 ref_map->exact_oid = 1;
2057 } else {
2058 ref_map = get_remote_ref(remote_refs, name);
2060 if (!missing_ok && !ref_map)
2061 die(_("couldn't find remote ref %s"), name);
2062 if (ref_map) {
2063 ref_map->peer_ref = get_local_ref(refspec->dst);
2064 if (ref_map->peer_ref && refspec->force)
2065 ref_map->peer_ref->force = 1;
2069 for (rmp = &ref_map; *rmp; ) {
2070 if ((*rmp)->peer_ref) {
2071 if (!starts_with((*rmp)->peer_ref->name, "refs/") ||
2072 check_refname_format((*rmp)->peer_ref->name, 0)) {
2073 struct ref *ignore = *rmp;
2074 error(_("* Ignoring funny ref '%s' locally"),
2075 (*rmp)->peer_ref->name);
2076 *rmp = (*rmp)->next;
2077 free(ignore->peer_ref);
2078 free(ignore);
2079 continue;
2082 rmp = &((*rmp)->next);
2085 if (ref_map)
2086 tail_link_ref(ref_map, tail);
2088 return 0;
2091 int resolve_remote_symref(struct ref *ref, struct ref *list)
2093 if (!ref->symref)
2094 return 0;
2095 for (; list; list = list->next)
2096 if (!strcmp(ref->symref, list->name)) {
2097 oidcpy(&ref->old_oid, &list->old_oid);
2098 return 0;
2100 return 1;
2104 * Compute the commit ahead/behind values for the pair branch_name, base.
2106 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
2107 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
2108 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
2109 * set to zero).
2111 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., ref
2112 * does not exist). Returns 0 if the commits are identical. Returns 1 if
2113 * commits are different.
2116 static int stat_branch_pair(const char *branch_name, const char *base,
2117 int *num_ours, int *num_theirs,
2118 enum ahead_behind_flags abf)
2120 struct object_id oid;
2121 struct commit *ours, *theirs;
2122 struct rev_info revs;
2123 struct strvec argv = STRVEC_INIT;
2125 /* Cannot stat if what we used to build on no longer exists */
2126 if (read_ref(base, &oid))
2127 return -1;
2128 theirs = lookup_commit_reference(the_repository, &oid);
2129 if (!theirs)
2130 return -1;
2132 if (read_ref(branch_name, &oid))
2133 return -1;
2134 ours = lookup_commit_reference(the_repository, &oid);
2135 if (!ours)
2136 return -1;
2138 *num_theirs = *num_ours = 0;
2140 /* are we the same? */
2141 if (theirs == ours)
2142 return 0;
2143 if (abf == AHEAD_BEHIND_QUICK)
2144 return 1;
2145 if (abf != AHEAD_BEHIND_FULL)
2146 BUG("stat_branch_pair: invalid abf '%d'", abf);
2148 /* Run "rev-list --left-right ours...theirs" internally... */
2149 strvec_push(&argv, ""); /* ignored */
2150 strvec_push(&argv, "--left-right");
2151 strvec_pushf(&argv, "%s...%s",
2152 oid_to_hex(&ours->object.oid),
2153 oid_to_hex(&theirs->object.oid));
2154 strvec_push(&argv, "--");
2156 repo_init_revisions(the_repository, &revs, NULL);
2157 setup_revisions(argv.nr, argv.v, &revs, NULL);
2158 if (prepare_revision_walk(&revs))
2159 die(_("revision walk setup failed"));
2161 /* ... and count the commits on each side. */
2162 while (1) {
2163 struct commit *c = get_revision(&revs);
2164 if (!c)
2165 break;
2166 if (c->object.flags & SYMMETRIC_LEFT)
2167 (*num_ours)++;
2168 else
2169 (*num_theirs)++;
2172 /* clear object flags smudged by the above traversal */
2173 clear_commit_marks(ours, ALL_REV_FLAGS);
2174 clear_commit_marks(theirs, ALL_REV_FLAGS);
2176 strvec_clear(&argv);
2177 return 1;
2181 * Lookup the tracking branch for the given branch and if present, optionally
2182 * compute the commit ahead/behind values for the pair.
2184 * If for_push is true, the tracking branch refers to the push branch,
2185 * otherwise it refers to the upstream branch.
2187 * The name of the tracking branch (or NULL if it is not defined) is
2188 * returned via *tracking_name, if it is not itself NULL.
2190 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
2191 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
2192 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
2193 * set to zero).
2195 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., no
2196 * upstream defined, or ref does not exist). Returns 0 if the commits are
2197 * identical. Returns 1 if commits are different.
2199 int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs,
2200 const char **tracking_name, int for_push,
2201 enum ahead_behind_flags abf)
2203 const char *base;
2205 /* Cannot stat unless we are marked to build on top of somebody else. */
2206 base = for_push ? branch_get_push(branch, NULL) :
2207 branch_get_upstream(branch, NULL);
2208 if (tracking_name)
2209 *tracking_name = base;
2210 if (!base)
2211 return -1;
2213 return stat_branch_pair(branch->refname, base, num_ours, num_theirs, abf);
2217 * Return true when there is anything to report, otherwise false.
2219 int format_tracking_info(struct branch *branch, struct strbuf *sb,
2220 enum ahead_behind_flags abf)
2222 int ours, theirs, sti;
2223 const char *full_base;
2224 char *base;
2225 int upstream_is_gone = 0;
2227 sti = stat_tracking_info(branch, &ours, &theirs, &full_base, 0, abf);
2228 if (sti < 0) {
2229 if (!full_base)
2230 return 0;
2231 upstream_is_gone = 1;
2234 base = shorten_unambiguous_ref(full_base, 0);
2235 if (upstream_is_gone) {
2236 strbuf_addf(sb,
2237 _("Your branch is based on '%s', but the upstream is gone.\n"),
2238 base);
2239 if (advice_enabled(ADVICE_STATUS_HINTS))
2240 strbuf_addstr(sb,
2241 _(" (use \"git branch --unset-upstream\" to fixup)\n"));
2242 } else if (!sti) {
2243 strbuf_addf(sb,
2244 _("Your branch is up to date with '%s'.\n"),
2245 base);
2246 } else if (abf == AHEAD_BEHIND_QUICK) {
2247 strbuf_addf(sb,
2248 _("Your branch and '%s' refer to different commits.\n"),
2249 base);
2250 if (advice_enabled(ADVICE_STATUS_HINTS))
2251 strbuf_addf(sb, _(" (use \"%s\" for details)\n"),
2252 "git status --ahead-behind");
2253 } else if (!theirs) {
2254 strbuf_addf(sb,
2255 Q_("Your branch is ahead of '%s' by %d commit.\n",
2256 "Your branch is ahead of '%s' by %d commits.\n",
2257 ours),
2258 base, ours);
2259 if (advice_enabled(ADVICE_STATUS_HINTS))
2260 strbuf_addstr(sb,
2261 _(" (use \"git push\" to publish your local commits)\n"));
2262 } else if (!ours) {
2263 strbuf_addf(sb,
2264 Q_("Your branch is behind '%s' by %d commit, "
2265 "and can be fast-forwarded.\n",
2266 "Your branch is behind '%s' by %d commits, "
2267 "and can be fast-forwarded.\n",
2268 theirs),
2269 base, theirs);
2270 if (advice_enabled(ADVICE_STATUS_HINTS))
2271 strbuf_addstr(sb,
2272 _(" (use \"git pull\" to update your local branch)\n"));
2273 } else {
2274 strbuf_addf(sb,
2275 Q_("Your branch and '%s' have diverged,\n"
2276 "and have %d and %d different commit each, "
2277 "respectively.\n",
2278 "Your branch and '%s' have diverged,\n"
2279 "and have %d and %d different commits each, "
2280 "respectively.\n",
2281 ours + theirs),
2282 base, ours, theirs);
2283 if (advice_enabled(ADVICE_STATUS_HINTS))
2284 strbuf_addstr(sb,
2285 _(" (use \"git pull\" to merge the remote branch into yours)\n"));
2287 free(base);
2288 return 1;
2291 static int one_local_ref(const char *refname, const struct object_id *oid,
2292 int flag, void *cb_data)
2294 struct ref ***local_tail = cb_data;
2295 struct ref *ref;
2297 /* we already know it starts with refs/ to get here */
2298 if (check_refname_format(refname + 5, 0))
2299 return 0;
2301 ref = alloc_ref(refname);
2302 oidcpy(&ref->new_oid, oid);
2303 **local_tail = ref;
2304 *local_tail = &ref->next;
2305 return 0;
2308 struct ref *get_local_heads(void)
2310 struct ref *local_refs = NULL, **local_tail = &local_refs;
2312 for_each_ref(one_local_ref, &local_tail);
2313 return local_refs;
2316 struct ref *guess_remote_head(const struct ref *head,
2317 const struct ref *refs,
2318 int all)
2320 const struct ref *r;
2321 struct ref *list = NULL;
2322 struct ref **tail = &list;
2324 if (!head)
2325 return NULL;
2328 * Some transports support directly peeking at
2329 * where HEAD points; if that is the case, then
2330 * we don't have to guess.
2332 if (head->symref)
2333 return copy_ref(find_ref_by_name(refs, head->symref));
2335 /* If a remote branch exists with the default branch name, let's use it. */
2336 if (!all) {
2337 char *ref = xstrfmt("refs/heads/%s",
2338 git_default_branch_name(0));
2340 r = find_ref_by_name(refs, ref);
2341 free(ref);
2342 if (r && oideq(&r->old_oid, &head->old_oid))
2343 return copy_ref(r);
2345 /* Fall back to the hard-coded historical default */
2346 r = find_ref_by_name(refs, "refs/heads/master");
2347 if (r && oideq(&r->old_oid, &head->old_oid))
2348 return copy_ref(r);
2351 /* Look for another ref that points there */
2352 for (r = refs; r; r = r->next) {
2353 if (r != head &&
2354 starts_with(r->name, "refs/heads/") &&
2355 oideq(&r->old_oid, &head->old_oid)) {
2356 *tail = copy_ref(r);
2357 tail = &((*tail)->next);
2358 if (!all)
2359 break;
2363 return list;
2366 struct stale_heads_info {
2367 struct string_list *ref_names;
2368 struct ref **stale_refs_tail;
2369 struct refspec *rs;
2372 static int get_stale_heads_cb(const char *refname, const struct object_id *oid,
2373 int flags, void *cb_data)
2375 struct stale_heads_info *info = cb_data;
2376 struct string_list matches = STRING_LIST_INIT_DUP;
2377 struct refspec_item query;
2378 int i, stale = 1;
2379 memset(&query, 0, sizeof(struct refspec_item));
2380 query.dst = (char *)refname;
2382 query_refspecs_multiple(info->rs, &query, &matches);
2383 if (matches.nr == 0)
2384 goto clean_exit; /* No matches */
2387 * If we did find a suitable refspec and it's not a symref and
2388 * it's not in the list of refs that currently exist in that
2389 * remote, we consider it to be stale. In order to deal with
2390 * overlapping refspecs, we need to go over all of the
2391 * matching refs.
2393 if (flags & REF_ISSYMREF)
2394 goto clean_exit;
2396 for (i = 0; stale && i < matches.nr; i++)
2397 if (string_list_has_string(info->ref_names, matches.items[i].string))
2398 stale = 0;
2400 if (stale) {
2401 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
2402 oidcpy(&ref->new_oid, oid);
2405 clean_exit:
2406 string_list_clear(&matches, 0);
2407 return 0;
2410 struct ref *get_stale_heads(struct refspec *rs, struct ref *fetch_map)
2412 struct ref *ref, *stale_refs = NULL;
2413 struct string_list ref_names = STRING_LIST_INIT_NODUP;
2414 struct stale_heads_info info;
2416 info.ref_names = &ref_names;
2417 info.stale_refs_tail = &stale_refs;
2418 info.rs = rs;
2419 for (ref = fetch_map; ref; ref = ref->next)
2420 string_list_append(&ref_names, ref->name);
2421 string_list_sort(&ref_names);
2422 for_each_ref(get_stale_heads_cb, &info);
2423 string_list_clear(&ref_names, 0);
2424 return stale_refs;
2428 * Compare-and-swap
2430 static void clear_cas_option(struct push_cas_option *cas)
2432 int i;
2434 for (i = 0; i < cas->nr; i++)
2435 free(cas->entry[i].refname);
2436 free(cas->entry);
2437 memset(cas, 0, sizeof(*cas));
2440 static struct push_cas *add_cas_entry(struct push_cas_option *cas,
2441 const char *refname,
2442 size_t refnamelen)
2444 struct push_cas *entry;
2445 ALLOC_GROW(cas->entry, cas->nr + 1, cas->alloc);
2446 entry = &cas->entry[cas->nr++];
2447 memset(entry, 0, sizeof(*entry));
2448 entry->refname = xmemdupz(refname, refnamelen);
2449 return entry;
2452 static int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset)
2454 const char *colon;
2455 struct push_cas *entry;
2457 if (unset) {
2458 /* "--no-<option>" */
2459 clear_cas_option(cas);
2460 return 0;
2463 if (!arg) {
2464 /* just "--<option>" */
2465 cas->use_tracking_for_rest = 1;
2466 return 0;
2469 /* "--<option>=refname" or "--<option>=refname:value" */
2470 colon = strchrnul(arg, ':');
2471 entry = add_cas_entry(cas, arg, colon - arg);
2472 if (!*colon)
2473 entry->use_tracking = 1;
2474 else if (!colon[1])
2475 oidclr(&entry->expect);
2476 else if (get_oid(colon + 1, &entry->expect))
2477 return error(_("cannot parse expected object name '%s'"),
2478 colon + 1);
2479 return 0;
2482 int parseopt_push_cas_option(const struct option *opt, const char *arg, int unset)
2484 return parse_push_cas_option(opt->value, arg, unset);
2487 int is_empty_cas(const struct push_cas_option *cas)
2489 return !cas->use_tracking_for_rest && !cas->nr;
2493 * Look at remote.fetch refspec and see if we have a remote
2494 * tracking branch for the refname there. Fill the name of
2495 * the remote-tracking branch in *dst_refname, and the name
2496 * of the commit object at its tip in oid[].
2497 * If we cannot do so, return negative to signal an error.
2499 static int remote_tracking(struct remote *remote, const char *refname,
2500 struct object_id *oid, char **dst_refname)
2502 char *dst;
2504 dst = apply_refspecs(&remote->fetch, refname);
2505 if (!dst)
2506 return -1; /* no tracking ref for refname at remote */
2507 if (read_ref(dst, oid))
2508 return -1; /* we know what the tracking ref is but we cannot read it */
2510 *dst_refname = dst;
2511 return 0;
2515 * The struct "reflog_commit_array" and related helper functions
2516 * are used for collecting commits into an array during reflog
2517 * traversals in "check_and_collect_until()".
2519 struct reflog_commit_array {
2520 struct commit **item;
2521 size_t nr, alloc;
2524 #define REFLOG_COMMIT_ARRAY_INIT { 0 }
2526 /* Append a commit to the array. */
2527 static void append_commit(struct reflog_commit_array *arr,
2528 struct commit *commit)
2530 ALLOC_GROW(arr->item, arr->nr + 1, arr->alloc);
2531 arr->item[arr->nr++] = commit;
2534 /* Free and reset the array. */
2535 static void free_commit_array(struct reflog_commit_array *arr)
2537 FREE_AND_NULL(arr->item);
2538 arr->nr = arr->alloc = 0;
2541 struct check_and_collect_until_cb_data {
2542 struct commit *remote_commit;
2543 struct reflog_commit_array *local_commits;
2544 timestamp_t remote_reflog_timestamp;
2547 /* Get the timestamp of the latest entry. */
2548 static int peek_reflog(struct object_id *o_oid, struct object_id *n_oid,
2549 const char *ident, timestamp_t timestamp,
2550 int tz, const char *message, void *cb_data)
2552 timestamp_t *ts = cb_data;
2553 *ts = timestamp;
2554 return 1;
2557 static int check_and_collect_until(struct object_id *o_oid,
2558 struct object_id *n_oid,
2559 const char *ident, timestamp_t timestamp,
2560 int tz, const char *message, void *cb_data)
2562 struct commit *commit;
2563 struct check_and_collect_until_cb_data *cb = cb_data;
2565 /* An entry was found. */
2566 if (oideq(n_oid, &cb->remote_commit->object.oid))
2567 return 1;
2569 if ((commit = lookup_commit_reference(the_repository, n_oid)))
2570 append_commit(cb->local_commits, commit);
2573 * If the reflog entry timestamp is older than the remote ref's
2574 * latest reflog entry, there is no need to check or collect
2575 * entries older than this one.
2577 if (timestamp < cb->remote_reflog_timestamp)
2578 return -1;
2580 return 0;
2583 #define MERGE_BASES_BATCH_SIZE 8
2586 * Iterate through the reflog of the local ref to check if there is an entry
2587 * for the given remote-tracking ref; runs until the timestamp of an entry is
2588 * older than latest timestamp of remote-tracking ref's reflog. Any commits
2589 * are that seen along the way are collected into an array to check if the
2590 * remote-tracking ref is reachable from any of them.
2592 static int is_reachable_in_reflog(const char *local, const struct ref *remote)
2594 timestamp_t date;
2595 struct commit *commit;
2596 struct commit **chunk;
2597 struct check_and_collect_until_cb_data cb;
2598 struct reflog_commit_array arr = REFLOG_COMMIT_ARRAY_INIT;
2599 size_t size = 0;
2600 int ret = 0;
2602 commit = lookup_commit_reference(the_repository, &remote->old_oid);
2603 if (!commit)
2604 goto cleanup_return;
2607 * Get the timestamp from the latest entry
2608 * of the remote-tracking ref's reflog.
2610 for_each_reflog_ent_reverse(remote->tracking_ref, peek_reflog, &date);
2612 cb.remote_commit = commit;
2613 cb.local_commits = &arr;
2614 cb.remote_reflog_timestamp = date;
2615 ret = for_each_reflog_ent_reverse(local, check_and_collect_until, &cb);
2617 /* We found an entry in the reflog. */
2618 if (ret > 0)
2619 goto cleanup_return;
2622 * Check if the remote commit is reachable from any
2623 * of the commits in the collected array, in batches.
2625 for (chunk = arr.item; chunk < arr.item + arr.nr; chunk += size) {
2626 size = arr.item + arr.nr - chunk;
2627 if (MERGE_BASES_BATCH_SIZE < size)
2628 size = MERGE_BASES_BATCH_SIZE;
2630 if ((ret = in_merge_bases_many(commit, size, chunk)))
2631 break;
2634 cleanup_return:
2635 free_commit_array(&arr);
2636 return ret;
2640 * Check for reachability of a remote-tracking
2641 * ref in the reflog entries of its local ref.
2643 static void check_if_includes_upstream(struct ref *remote)
2645 struct ref *local = get_local_ref(remote->name);
2646 if (!local)
2647 return;
2649 if (is_reachable_in_reflog(local->name, remote) <= 0)
2650 remote->unreachable = 1;
2653 static void apply_cas(struct push_cas_option *cas,
2654 struct remote *remote,
2655 struct ref *ref)
2657 int i;
2659 /* Find an explicit --<option>=<name>[:<value>] entry */
2660 for (i = 0; i < cas->nr; i++) {
2661 struct push_cas *entry = &cas->entry[i];
2662 if (!refname_match(entry->refname, ref->name))
2663 continue;
2664 ref->expect_old_sha1 = 1;
2665 if (!entry->use_tracking)
2666 oidcpy(&ref->old_oid_expect, &entry->expect);
2667 else if (remote_tracking(remote, ref->name,
2668 &ref->old_oid_expect,
2669 &ref->tracking_ref))
2670 oidclr(&ref->old_oid_expect);
2671 else
2672 ref->check_reachable = cas->use_force_if_includes;
2673 return;
2676 /* Are we using "--<option>" to cover all? */
2677 if (!cas->use_tracking_for_rest)
2678 return;
2680 ref->expect_old_sha1 = 1;
2681 if (remote_tracking(remote, ref->name,
2682 &ref->old_oid_expect,
2683 &ref->tracking_ref))
2684 oidclr(&ref->old_oid_expect);
2685 else
2686 ref->check_reachable = cas->use_force_if_includes;
2689 void apply_push_cas(struct push_cas_option *cas,
2690 struct remote *remote,
2691 struct ref *remote_refs)
2693 struct ref *ref;
2694 for (ref = remote_refs; ref; ref = ref->next) {
2695 apply_cas(cas, remote, ref);
2698 * If "compare-and-swap" is in "use_tracking[_for_rest]"
2699 * mode, and if "--force-if-includes" was specified, run
2700 * the check.
2702 if (ref->check_reachable)
2703 check_if_includes_upstream(ref);
2707 struct remote_state *remote_state_new(void)
2709 struct remote_state *r = xmalloc(sizeof(*r));
2711 memset(r, 0, sizeof(*r));
2713 hashmap_init(&r->remotes_hash, remotes_hash_cmp, NULL, 0);
2714 hashmap_init(&r->branches_hash, branches_hash_cmp, NULL, 0);
2715 return r;
2718 void remote_state_clear(struct remote_state *remote_state)
2720 int i;
2722 for (i = 0; i < remote_state->remotes_nr; i++) {
2723 remote_clear(remote_state->remotes[i]);
2725 FREE_AND_NULL(remote_state->remotes);
2726 remote_state->remotes_alloc = 0;
2727 remote_state->remotes_nr = 0;
2729 hashmap_clear_and_free(&remote_state->remotes_hash, struct remote, ent);
2730 hashmap_clear_and_free(&remote_state->branches_hash, struct remote, ent);