9 #include "string-list.h"
10 #include "mergesort.h"
12 enum map_direction { FROM_SRC, FROM_DST };
14 static struct refspec s_tag_refspec = {
22 const struct refspec *tag_refspec = &s_tag_refspec;
24 struct counted_string {
31 struct counted_string *instead_of;
36 struct rewrite **rewrite;
41 static struct remote **remotes;
42 static int remotes_alloc;
43 static int remotes_nr;
45 static struct branch **branches;
46 static int branches_alloc;
47 static int branches_nr;
49 static struct branch *current_branch;
50 static const char *default_remote_name;
51 static int explicit_default_remote_name;
53 static struct rewrites rewrites;
54 static struct rewrites rewrites_push;
56 #define BUF_SIZE (2048)
57 static char buffer[BUF_SIZE];
59 static int valid_remote(const struct remote *remote)
61 return (!!remote->url) || (!!remote->foreign_vcs);
64 static const char *alias_url(const char *url, struct rewrites *r)
68 struct counted_string *longest;
73 for (i = 0; i < r->rewrite_nr; i++) {
76 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
77 if (!prefixcmp(url, r->rewrite[i]->instead_of[j].s) &&
79 longest->len < r->rewrite[i]->instead_of[j].len)) {
80 longest = &(r->rewrite[i]->instead_of[j]);
88 ret = xmalloc(r->rewrite[longest_i]->baselen +
89 (strlen(url) - longest->len) + 1);
90 strcpy(ret, r->rewrite[longest_i]->base);
91 strcpy(ret + r->rewrite[longest_i]->baselen, url + longest->len);
95 static void add_push_refspec(struct remote *remote, const char *ref)
97 ALLOC_GROW(remote->push_refspec,
98 remote->push_refspec_nr + 1,
99 remote->push_refspec_alloc);
100 remote->push_refspec[remote->push_refspec_nr++] = ref;
103 static void add_fetch_refspec(struct remote *remote, const char *ref)
105 ALLOC_GROW(remote->fetch_refspec,
106 remote->fetch_refspec_nr + 1,
107 remote->fetch_refspec_alloc);
108 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
111 static void add_url(struct remote *remote, const char *url)
113 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
114 remote->url[remote->url_nr++] = url;
117 static void add_pushurl(struct remote *remote, const char *pushurl)
119 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
120 remote->pushurl[remote->pushurl_nr++] = pushurl;
123 static void add_pushurl_alias(struct remote *remote, const char *url)
125 const char *pushurl = alias_url(url, &rewrites_push);
127 add_pushurl(remote, pushurl);
130 static void add_url_alias(struct remote *remote, const char *url)
132 add_url(remote, alias_url(url, &rewrites));
133 add_pushurl_alias(remote, url);
136 static struct remote *make_remote(const char *name, int len)
141 for (i = 0; i < remotes_nr; i++) {
142 if (len ? (!strncmp(name, remotes[i]->name, len) &&
143 !remotes[i]->name[len]) :
144 !strcmp(name, remotes[i]->name))
148 ret = xcalloc(1, sizeof(struct remote));
149 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
150 remotes[remotes_nr++] = ret;
152 ret->name = xstrndup(name, len);
154 ret->name = xstrdup(name);
158 static void add_merge(struct branch *branch, const char *name)
160 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
161 branch->merge_alloc);
162 branch->merge_name[branch->merge_nr++] = name;
165 static struct branch *make_branch(const char *name, int len)
171 for (i = 0; i < branches_nr; i++) {
172 if (len ? (!strncmp(name, branches[i]->name, len) &&
173 !branches[i]->name[len]) :
174 !strcmp(name, branches[i]->name))
178 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
179 ret = xcalloc(1, sizeof(struct branch));
180 branches[branches_nr++] = ret;
182 ret->name = xstrndup(name, len);
184 ret->name = xstrdup(name);
185 refname = xmalloc(strlen(name) + strlen("refs/heads/") + 1);
186 strcpy(refname, "refs/heads/");
187 strcpy(refname + strlen("refs/heads/"), ret->name);
188 ret->refname = refname;
193 static struct rewrite *make_rewrite(struct rewrites *r, const char *base, int len)
198 for (i = 0; i < r->rewrite_nr; i++) {
200 ? (len == r->rewrite[i]->baselen &&
201 !strncmp(base, r->rewrite[i]->base, len))
202 : !strcmp(base, r->rewrite[i]->base))
203 return r->rewrite[i];
206 ALLOC_GROW(r->rewrite, r->rewrite_nr + 1, r->rewrite_alloc);
207 ret = xcalloc(1, sizeof(struct rewrite));
208 r->rewrite[r->rewrite_nr++] = ret;
210 ret->base = xstrndup(base, len);
214 ret->base = xstrdup(base);
215 ret->baselen = strlen(base);
220 static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
222 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
223 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
224 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
225 rewrite->instead_of_nr++;
228 static void read_remotes_file(struct remote *remote)
230 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
234 remote->origin = REMOTE_REMOTES;
235 while (fgets(buffer, BUF_SIZE, f)) {
239 if (!prefixcmp(buffer, "URL:")) {
242 } else if (!prefixcmp(buffer, "Push:")) {
245 } else if (!prefixcmp(buffer, "Pull:")) {
257 while (isspace(p[-1]))
260 switch (value_list) {
262 add_url_alias(remote, xstrdup(s));
265 add_push_refspec(remote, xstrdup(s));
268 add_fetch_refspec(remote, xstrdup(s));
275 static void read_branches_file(struct remote *remote)
277 const char *slash = strchr(remote->name, '/');
279 struct strbuf branch = STRBUF_INIT;
280 int n = slash ? slash - remote->name : 1000;
281 FILE *f = fopen(git_path("branches/%.*s", n, remote->name), "r");
287 s = fgets(buffer, BUF_SIZE, f);
295 remote->origin = REMOTE_BRANCHES;
297 while (isspace(p[-1]))
301 len += strlen(slash);
302 p = xmalloc(len + 1);
308 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
309 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
310 * the partial URL obtained from the branches file plus
311 * "/netdev-2.6" and does not store it in any tracking ref.
312 * #branch specifier in the file is ignored.
314 * Otherwise, the branches file would have URL and optionally
315 * #branch specified. The "master" (or specified) branch is
316 * fetched and stored in the local branch of the same name.
318 frag = strchr(p, '#');
321 strbuf_addf(&branch, "refs/heads/%s", frag);
323 strbuf_addstr(&branch, "refs/heads/master");
325 strbuf_addf(&branch, ":refs/heads/%s", remote->name);
327 strbuf_reset(&branch);
328 strbuf_addstr(&branch, "HEAD:");
330 add_url_alias(remote, p);
331 add_fetch_refspec(remote, strbuf_detach(&branch, NULL));
333 * Cogito compatible push: push current HEAD to remote #branch
334 * (master if missing)
336 strbuf_init(&branch, 0);
337 strbuf_addstr(&branch, "HEAD");
339 strbuf_addf(&branch, ":refs/heads/%s", frag);
341 strbuf_addstr(&branch, ":refs/heads/master");
342 add_push_refspec(remote, strbuf_detach(&branch, NULL));
343 remote->fetch_tags = 1; /* always auto-follow */
346 static int handle_config(const char *key, const char *value, void *cb)
350 struct remote *remote;
351 struct branch *branch;
352 if (!prefixcmp(key, "branch.")) {
354 subkey = strrchr(name, '.');
357 branch = make_branch(name, subkey - name);
358 if (!strcmp(subkey, ".remote")) {
360 return config_error_nonbool(key);
361 branch->remote_name = xstrdup(value);
362 if (branch == current_branch) {
363 default_remote_name = branch->remote_name;
364 explicit_default_remote_name = 1;
366 } else if (!strcmp(subkey, ".merge")) {
368 return config_error_nonbool(key);
369 add_merge(branch, xstrdup(value));
373 if (!prefixcmp(key, "url.")) {
374 struct rewrite *rewrite;
376 subkey = strrchr(name, '.');
379 if (!strcmp(subkey, ".insteadof")) {
380 rewrite = make_rewrite(&rewrites, name, subkey - name);
382 return config_error_nonbool(key);
383 add_instead_of(rewrite, xstrdup(value));
384 } else if (!strcmp(subkey, ".pushinsteadof")) {
385 rewrite = make_rewrite(&rewrites_push, name, subkey - name);
387 return config_error_nonbool(key);
388 add_instead_of(rewrite, xstrdup(value));
391 if (prefixcmp(key, "remote."))
395 warning("Config remote shorthand cannot begin with '/': %s",
399 subkey = strrchr(name, '.');
402 remote = make_remote(name, subkey - name);
403 remote->origin = REMOTE_CONFIG;
404 if (!strcmp(subkey, ".mirror"))
405 remote->mirror = git_config_bool(key, value);
406 else if (!strcmp(subkey, ".skipdefaultupdate"))
407 remote->skip_default_update = git_config_bool(key, value);
408 else if (!strcmp(subkey, ".skipfetchall"))
409 remote->skip_default_update = git_config_bool(key, value);
410 else if (!strcmp(subkey, ".url")) {
412 if (git_config_string(&v, key, value))
415 } else if (!strcmp(subkey, ".pushurl")) {
417 if (git_config_string(&v, key, value))
419 add_pushurl(remote, v);
420 } else if (!strcmp(subkey, ".push")) {
422 if (git_config_string(&v, key, value))
424 add_push_refspec(remote, v);
425 } else if (!strcmp(subkey, ".fetch")) {
427 if (git_config_string(&v, key, value))
429 add_fetch_refspec(remote, v);
430 } else if (!strcmp(subkey, ".receivepack")) {
432 if (git_config_string(&v, key, value))
434 if (!remote->receivepack)
435 remote->receivepack = v;
437 error("more than one receivepack given, using the first");
438 } else if (!strcmp(subkey, ".uploadpack")) {
440 if (git_config_string(&v, key, value))
442 if (!remote->uploadpack)
443 remote->uploadpack = v;
445 error("more than one uploadpack given, using the first");
446 } else if (!strcmp(subkey, ".tagopt")) {
447 if (!strcmp(value, "--no-tags"))
448 remote->fetch_tags = -1;
449 else if (!strcmp(value, "--tags"))
450 remote->fetch_tags = 2;
451 } else if (!strcmp(subkey, ".proxy")) {
452 return git_config_string((const char **)&remote->http_proxy,
454 } else if (!strcmp(subkey, ".vcs")) {
455 return git_config_string(&remote->foreign_vcs, key, value);
460 static void alias_all_urls(void)
463 for (i = 0; i < remotes_nr; i++) {
464 int add_pushurl_aliases;
467 for (j = 0; j < remotes[i]->pushurl_nr; j++) {
468 remotes[i]->pushurl[j] = alias_url(remotes[i]->pushurl[j], &rewrites);
470 add_pushurl_aliases = remotes[i]->pushurl_nr == 0;
471 for (j = 0; j < remotes[i]->url_nr; j++) {
472 if (add_pushurl_aliases)
473 add_pushurl_alias(remotes[i], remotes[i]->url[j]);
474 remotes[i]->url[j] = alias_url(remotes[i]->url[j], &rewrites);
479 static void read_config(void)
481 unsigned char sha1[20];
482 const char *head_ref;
484 if (default_remote_name) /* did this already */
486 default_remote_name = xstrdup("origin");
487 current_branch = NULL;
488 head_ref = resolve_ref_unsafe("HEAD", sha1, 0, &flag);
489 if (head_ref && (flag & REF_ISSYMREF) &&
490 !prefixcmp(head_ref, "refs/heads/")) {
492 make_branch(head_ref + strlen("refs/heads/"), 0);
494 git_config(handle_config, NULL);
499 * This function frees a refspec array.
500 * Warning: code paths should be checked to ensure that the src
501 * and dst pointers are always freeable pointers as well
502 * as the refspec pointer itself.
504 static void free_refspecs(struct refspec *refspec, int nr_refspec)
511 for (i = 0; i < nr_refspec; i++) {
512 free(refspec[i].src);
513 free(refspec[i].dst);
518 static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
521 struct refspec *rs = xcalloc(sizeof(*rs), nr_refspec);
523 for (i = 0; i < nr_refspec; i++) {
526 const char *lhs, *rhs;
537 rhs = strrchr(lhs, ':');
540 * Before going on, special case ":" (or "+:") as a refspec
541 * for pushing matching refs.
543 if (!fetch && rhs == lhs && rhs[1] == '\0') {
549 size_t rlen = strlen(++rhs);
550 is_glob = (1 <= rlen && strchr(rhs, '*'));
551 rs[i].dst = xstrndup(rhs, rlen);
554 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
555 if (1 <= llen && memchr(lhs, '*', llen)) {
556 if ((rhs && !is_glob) || (!rhs && fetch))
559 } else if (rhs && is_glob) {
563 rs[i].pattern = is_glob;
564 rs[i].src = xstrndup(lhs, llen);
565 flags = REFNAME_ALLOW_ONELEVEL | (is_glob ? REFNAME_REFSPEC_PATTERN : 0);
570 ; /* empty is ok; it means "HEAD" */
571 else if (!check_refname_format(rs[i].src, flags))
572 ; /* valid looking ref is ok */
577 ; /* missing is ok; it is the same as empty */
578 else if (!*rs[i].dst)
579 ; /* empty is ok; it means "do not store" */
580 else if (!check_refname_format(rs[i].dst, flags))
581 ; /* valid looking ref is ok */
587 * - empty is allowed; it means delete.
588 * - when wildcarded, it must be a valid looking ref.
589 * - otherwise, it must be an extended SHA-1, but
590 * there is no existing way to validate this.
595 if (check_refname_format(rs[i].src, flags))
599 ; /* anything goes, for now */
602 * - missing is allowed, but LHS then must be a
604 * - empty is not allowed.
605 * - otherwise it must be a valid looking ref.
608 if (check_refname_format(rs[i].src, flags))
610 } else if (!*rs[i].dst) {
613 if (check_refname_format(rs[i].dst, flags))
623 * nr_refspec must be greater than zero and i must be valid
624 * since it is only possible to reach this point from within
625 * the for loop above.
627 free_refspecs(rs, i+1);
630 die("Invalid refspec '%s'", refspec[i]);
633 int valid_fetch_refspec(const char *fetch_refspec_str)
635 struct refspec *refspec;
637 refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1);
638 free_refspecs(refspec, 1);
642 struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
644 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
647 static struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
649 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
652 void free_refspec(int nr_refspec, struct refspec *refspec)
655 for (i = 0; i < nr_refspec; i++) {
656 free(refspec[i].src);
657 free(refspec[i].dst);
662 static int valid_remote_nick(const char *name)
664 if (!name[0] || is_dot_or_dotdot(name))
666 return !strchr(name, '/'); /* no slash */
669 struct remote *remote_get(const char *name)
678 name = default_remote_name;
679 name_given = explicit_default_remote_name;
682 ret = make_remote(name, 0);
683 if (valid_remote_nick(name)) {
684 if (!valid_remote(ret))
685 read_remotes_file(ret);
686 if (!valid_remote(ret))
687 read_branches_file(ret);
689 if (name_given && !valid_remote(ret))
690 add_url_alias(ret, name);
691 if (!valid_remote(ret))
693 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
694 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
698 int remote_is_configured(const char *name)
703 for (i = 0; i < remotes_nr; i++)
704 if (!strcmp(name, remotes[i]->name))
709 int for_each_remote(each_remote_fn fn, void *priv)
713 for (i = 0; i < remotes_nr && !result; i++) {
714 struct remote *r = remotes[i];
718 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
721 r->push = parse_push_refspec(r->push_refspec_nr,
723 result = fn(r, priv);
728 void ref_remove_duplicates(struct ref *ref_map)
730 struct string_list refs = STRING_LIST_INIT_NODUP;
731 struct string_list_item *item = NULL;
732 struct ref *prev = NULL, *next = NULL;
733 for (; ref_map; prev = ref_map, ref_map = next) {
734 next = ref_map->next;
735 if (!ref_map->peer_ref)
738 item = string_list_lookup(&refs, ref_map->peer_ref->name);
740 if (strcmp(((struct ref *)item->util)->name,
742 die("%s tracks both %s and %s",
743 ref_map->peer_ref->name,
744 ((struct ref *)item->util)->name,
746 prev->next = ref_map->next;
747 free(ref_map->peer_ref);
749 ref_map = prev; /* skip this; we freed it */
753 item = string_list_insert(&refs, ref_map->peer_ref->name);
754 item->util = ref_map;
756 string_list_clear(&refs, 0);
759 int remote_has_url(struct remote *remote, const char *url)
762 for (i = 0; i < remote->url_nr; i++) {
763 if (!strcmp(remote->url[i], url))
769 static int match_name_with_pattern(const char *key, const char *name,
770 const char *value, char **result)
772 const char *kstar = strchr(key, '*');
778 die("Key '%s' of pattern had no '*'", key);
780 ksuffixlen = strlen(kstar + 1);
781 namelen = strlen(name);
782 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
783 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
785 const char *vstar = strchr(value, '*');
789 die("Value '%s' of pattern has no '*'", value);
790 vlen = vstar - value;
791 vsuffixlen = strlen(vstar + 1);
792 *result = xmalloc(vlen + vsuffixlen +
794 klen - ksuffixlen + 1);
795 strncpy(*result, value, vlen);
796 strncpy(*result + vlen,
797 name + klen, namelen - klen - ksuffixlen);
798 strcpy(*result + vlen + namelen - klen - ksuffixlen,
804 static int query_refspecs(struct refspec *refs, int ref_count, struct refspec *query)
807 int find_src = !query->src;
809 if (find_src && !query->dst)
810 return error("query_refspecs: need either src or dst");
812 for (i = 0; i < ref_count; i++) {
813 struct refspec *refspec = &refs[i];
814 const char *key = find_src ? refspec->dst : refspec->src;
815 const char *value = find_src ? refspec->src : refspec->dst;
816 const char *needle = find_src ? query->dst : query->src;
817 char **result = find_src ? &query->src : &query->dst;
821 if (refspec->pattern) {
822 if (match_name_with_pattern(key, needle, value, result)) {
823 query->force = refspec->force;
826 } else if (!strcmp(needle, key)) {
827 *result = xstrdup(value);
828 query->force = refspec->force;
835 char *apply_refspecs(struct refspec *refspecs, int nr_refspec,
838 struct refspec query;
840 memset(&query, 0, sizeof(struct refspec));
841 query.src = (char *)name;
843 if (query_refspecs(refspecs, nr_refspec, &query))
849 int remote_find_tracking(struct remote *remote, struct refspec *refspec)
851 return query_refspecs(remote->fetch, remote->fetch_refspec_nr, refspec);
854 static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
857 size_t len = strlen(name);
858 struct ref *ref = xcalloc(1, sizeof(struct ref) + prefixlen + len + 1);
859 memcpy(ref->name, prefix, prefixlen);
860 memcpy(ref->name + prefixlen, name, len);
864 struct ref *alloc_ref(const char *name)
866 return alloc_ref_with_prefix("", 0, name);
869 struct ref *copy_ref(const struct ref *ref)
875 len = strlen(ref->name);
876 cpy = xmalloc(sizeof(struct ref) + len + 1);
877 memcpy(cpy, ref, sizeof(struct ref) + len + 1);
879 cpy->symref = ref->symref ? xstrdup(ref->symref) : NULL;
880 cpy->remote_status = ref->remote_status ? xstrdup(ref->remote_status) : NULL;
881 cpy->peer_ref = copy_ref(ref->peer_ref);
885 struct ref *copy_ref_list(const struct ref *ref)
887 struct ref *ret = NULL;
888 struct ref **tail = &ret;
890 *tail = copy_ref(ref);
892 tail = &((*tail)->next);
897 static void free_ref(struct ref *ref)
901 free_ref(ref->peer_ref);
902 free(ref->remote_status);
907 void free_refs(struct ref *ref)
917 int ref_compare_name(const void *va, const void *vb)
919 const struct ref *a = va, *b = vb;
920 return strcmp(a->name, b->name);
923 static void *ref_list_get_next(const void *a)
925 return ((const struct ref *)a)->next;
928 static void ref_list_set_next(void *a, void *next)
930 ((struct ref *)a)->next = next;
933 void sort_ref_list(struct ref **l, int (*cmp)(const void *, const void *))
935 *l = llist_mergesort(*l, ref_list_get_next, ref_list_set_next, cmp);
938 static int count_refspec_match(const char *pattern,
940 struct ref **matched_ref)
942 int patlen = strlen(pattern);
943 struct ref *matched_weak = NULL;
944 struct ref *matched = NULL;
948 for (weak_match = match = 0; refs; refs = refs->next) {
949 char *name = refs->name;
950 int namelen = strlen(name);
952 if (!refname_match(pattern, name, ref_rev_parse_rules))
955 /* A match is "weak" if it is with refs outside
956 * heads or tags, and did not specify the pattern
957 * in full (e.g. "refs/remotes/origin/master") or at
958 * least from the toplevel (e.g. "remotes/origin/master");
959 * otherwise "git push $URL master" would result in
960 * ambiguity between remotes/origin/master and heads/master
961 * at the remote site.
963 if (namelen != patlen &&
964 patlen != namelen - 5 &&
965 prefixcmp(name, "refs/heads/") &&
966 prefixcmp(name, "refs/tags/")) {
967 /* We want to catch the case where only weak
968 * matches are found and there are multiple
969 * matches, and where more than one strong
970 * matches are found, as ambiguous. One
971 * strong match with zero or more weak matches
972 * are acceptable as a unique match.
983 *matched_ref = matched_weak;
987 *matched_ref = matched;
992 static void tail_link_ref(struct ref *ref, struct ref ***tail)
1000 static struct ref *alloc_delete_ref(void)
1002 struct ref *ref = alloc_ref("(delete)");
1003 hashclr(ref->new_sha1);
1007 static struct ref *try_explicit_object_name(const char *name)
1009 unsigned char sha1[20];
1013 return alloc_delete_ref();
1014 if (get_sha1(name, sha1))
1016 ref = alloc_ref(name);
1017 hashcpy(ref->new_sha1, sha1);
1021 static struct ref *make_linked_ref(const char *name, struct ref ***tail)
1023 struct ref *ret = alloc_ref(name);
1024 tail_link_ref(ret, tail);
1028 static char *guess_ref(const char *name, struct ref *peer)
1030 struct strbuf buf = STRBUF_INIT;
1031 unsigned char sha1[20];
1033 const char *r = resolve_ref_unsafe(peer->name, sha1, 1, NULL);
1037 if (!prefixcmp(r, "refs/heads/"))
1038 strbuf_addstr(&buf, "refs/heads/");
1039 else if (!prefixcmp(r, "refs/tags/"))
1040 strbuf_addstr(&buf, "refs/tags/");
1044 strbuf_addstr(&buf, name);
1045 return strbuf_detach(&buf, NULL);
1048 static int match_explicit(struct ref *src, struct ref *dst,
1049 struct ref ***dst_tail,
1052 struct ref *matched_src, *matched_dst;
1055 const char *dst_value = rs->dst;
1058 if (rs->pattern || rs->matching)
1061 matched_src = matched_dst = NULL;
1062 switch (count_refspec_match(rs->src, src, &matched_src)) {
1067 /* The source could be in the get_sha1() format
1068 * not a reference name. :refs/other is a
1069 * way to delete 'other' ref at the remote end.
1071 matched_src = try_explicit_object_name(rs->src);
1073 return error("src refspec %s does not match any.", rs->src);
1077 return error("src refspec %s matches more than one.", rs->src);
1081 unsigned char sha1[20];
1084 dst_value = resolve_ref_unsafe(matched_src->name, sha1, 1, &flag);
1086 ((flag & REF_ISSYMREF) &&
1087 prefixcmp(dst_value, "refs/heads/")))
1088 die("%s cannot be resolved to branch.",
1092 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1096 if (!memcmp(dst_value, "refs/", 5))
1097 matched_dst = make_linked_ref(dst_value, dst_tail);
1098 else if (is_null_sha1(matched_src->new_sha1))
1099 error("unable to delete '%s': remote ref does not exist",
1101 else if ((dst_guess = guess_ref(dst_value, matched_src)))
1102 matched_dst = make_linked_ref(dst_guess, dst_tail);
1104 error("unable to push to unqualified destination: %s\n"
1105 "The destination refspec neither matches an "
1106 "existing ref on the remote nor\n"
1107 "begins with refs/, and we are unable to "
1108 "guess a prefix based on the source ref.",
1113 error("dst refspec %s matches more than one.",
1119 if (matched_dst->peer_ref)
1120 return error("dst ref %s receives from more than one src.",
1123 matched_dst->peer_ref = copy_src ? copy_ref(matched_src) : matched_src;
1124 matched_dst->force = rs->force;
1129 static int match_explicit_refs(struct ref *src, struct ref *dst,
1130 struct ref ***dst_tail, struct refspec *rs,
1134 for (i = errs = 0; i < rs_nr; i++)
1135 errs += match_explicit(src, dst, dst_tail, &rs[i]);
1139 static char *get_ref_match(const struct refspec *rs, int rs_nr, const struct ref *ref,
1140 int send_mirror, int direction, const struct refspec **ret_pat)
1142 const struct refspec *pat;
1145 int matching_refs = -1;
1146 for (i = 0; i < rs_nr; i++) {
1147 if (rs[i].matching &&
1148 (matching_refs == -1 || rs[i].force)) {
1153 if (rs[i].pattern) {
1154 const char *dst_side = rs[i].dst ? rs[i].dst : rs[i].src;
1156 if (direction == FROM_SRC)
1157 match = match_name_with_pattern(rs[i].src, ref->name, dst_side, &name);
1159 match = match_name_with_pattern(dst_side, ref->name, rs[i].src, &name);
1166 if (matching_refs == -1)
1169 pat = rs + matching_refs;
1170 if (pat->matching) {
1172 * "matching refs"; traditionally we pushed everything
1173 * including refs outside refs/heads/ hierarchy, but
1174 * that does not make much sense these days.
1176 if (!send_mirror && prefixcmp(ref->name, "refs/heads/"))
1178 name = xstrdup(ref->name);
1185 static struct ref **tail_ref(struct ref **head)
1187 struct ref **tail = head;
1189 tail = &((*tail)->next);
1194 * Given the set of refs the local repository has, the set of refs the
1195 * remote repository has, and the refspec used for push, determine
1196 * what remote refs we will update and with what value by setting
1197 * peer_ref (which object is being pushed) and force (if the push is
1198 * forced) in elements of "dst". The function may add new elements to
1199 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
1201 int match_push_refs(struct ref *src, struct ref **dst,
1202 int nr_refspec, const char **refspec, int flags)
1205 int send_all = flags & MATCH_REFS_ALL;
1206 int send_mirror = flags & MATCH_REFS_MIRROR;
1207 int send_prune = flags & MATCH_REFS_PRUNE;
1209 static const char *default_refspec[] = { ":", NULL };
1210 struct ref *ref, **dst_tail = tail_ref(dst);
1214 refspec = default_refspec;
1216 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
1217 errs = match_explicit_refs(src, *dst, &dst_tail, rs, nr_refspec);
1219 /* pick the remainder */
1220 for (ref = src; ref; ref = ref->next) {
1221 struct ref *dst_peer;
1222 const struct refspec *pat = NULL;
1228 dst_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_SRC, &pat);
1232 dst_peer = find_ref_by_name(*dst, dst_name);
1234 if (dst_peer->peer_ref)
1235 /* We're already sending something to this ref. */
1238 if (pat->matching && !(send_all || send_mirror))
1240 * Remote doesn't have it, and we have no
1241 * explicit pattern, and we don't have
1242 * --all nor --mirror.
1246 /* Create a new one and link it */
1247 dst_peer = make_linked_ref(dst_name, &dst_tail);
1248 hashcpy(dst_peer->new_sha1, ref->new_sha1);
1250 dst_peer->peer_ref = copy_ref(ref);
1251 dst_peer->force = pat->force;
1256 /* check for missing refs on the remote */
1257 for (ref = *dst; ref; ref = ref->next) {
1261 /* We're already sending something to this ref. */
1264 src_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_DST, NULL);
1266 if (!find_ref_by_name(src, src_name))
1267 ref->peer_ref = alloc_delete_ref();
1277 static inline int is_forwardable(struct ref* ref)
1281 if (!prefixcmp(ref->name, "refs/tags/"))
1284 /* old object must be a commit */
1285 o = parse_object(ref->old_sha1);
1286 if (!o || o->type != OBJ_COMMIT)
1289 /* new object must be commit-ish */
1290 o = deref_tag(parse_object(ref->new_sha1), NULL, 0);
1291 if (!o || o->type != OBJ_COMMIT)
1297 void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
1302 for (ref = remote_refs; ref; ref = ref->next) {
1303 int force_ref_update = ref->force || force_update;
1306 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
1307 else if (!send_mirror)
1310 ref->deletion = is_null_sha1(ref->new_sha1);
1311 if (!ref->deletion &&
1312 !hashcmp(ref->old_sha1, ref->new_sha1)) {
1313 ref->status = REF_STATUS_UPTODATE;
1318 * The below logic determines whether an individual
1319 * refspec A:B can be pushed. The push will succeed
1320 * if any of the following are true:
1322 * (1) the remote reference B does not exist
1324 * (2) the remote reference B is being removed (i.e.,
1325 * pushing :B where no source is specified)
1327 * (3) the update meets all fast-forwarding criteria:
1329 * (a) the destination is not under refs/tags/
1330 * (b) the old is a commit
1331 * (c) the new is a descendant of the old
1333 * NOTE: We must actually have the old object in
1334 * order to overwrite it in the remote reference,
1335 * and the new object must be commit-ish. These are
1336 * implied by (b) and (c) respectively.
1338 * (4) it is forced using the +A:B notation, or by
1339 * passing the --force argument
1342 ref->not_forwardable = !is_forwardable(ref);
1346 !is_null_sha1(ref->old_sha1);
1349 ref->nonfastforward =
1350 !has_sha1_file(ref->old_sha1)
1351 || !ref_newer(ref->new_sha1, ref->old_sha1);
1353 if (ref->not_forwardable) {
1354 ref->requires_force = 1;
1355 if (!force_ref_update) {
1356 ref->status = REF_STATUS_REJECT_ALREADY_EXISTS;
1359 } else if (ref->nonfastforward) {
1360 ref->requires_force = 1;
1361 if (!force_ref_update) {
1362 ref->status = REF_STATUS_REJECT_NONFASTFORWARD;
1370 struct branch *branch_get(const char *name)
1375 if (!name || !*name || !strcmp(name, "HEAD"))
1376 ret = current_branch;
1378 ret = make_branch(name, 0);
1379 if (ret && ret->remote_name) {
1380 ret->remote = remote_get(ret->remote_name);
1381 if (ret->merge_nr) {
1383 ret->merge = xcalloc(sizeof(*ret->merge),
1385 for (i = 0; i < ret->merge_nr; i++) {
1386 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1387 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
1388 if (remote_find_tracking(ret->remote, ret->merge[i])
1389 && !strcmp(ret->remote_name, "."))
1390 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
1397 int branch_has_merge_config(struct branch *branch)
1399 return branch && !!branch->merge;
1402 int branch_merge_matches(struct branch *branch,
1404 const char *refname)
1406 if (!branch || i < 0 || i >= branch->merge_nr)
1408 return refname_match(branch->merge[i]->src, refname, ref_fetch_rules);
1411 static int ignore_symref_update(const char *refname)
1413 unsigned char sha1[20];
1416 if (!resolve_ref_unsafe(refname, sha1, 0, &flag))
1417 return 0; /* non-existing refs are OK */
1418 return (flag & REF_ISSYMREF);
1421 static struct ref *get_expanded_map(const struct ref *remote_refs,
1422 const struct refspec *refspec)
1424 const struct ref *ref;
1425 struct ref *ret = NULL;
1426 struct ref **tail = &ret;
1430 for (ref = remote_refs; ref; ref = ref->next) {
1431 if (strchr(ref->name, '^'))
1432 continue; /* a dereference item */
1433 if (match_name_with_pattern(refspec->src, ref->name,
1434 refspec->dst, &expn_name) &&
1435 !ignore_symref_update(expn_name)) {
1436 struct ref *cpy = copy_ref(ref);
1438 cpy->peer_ref = alloc_ref(expn_name);
1441 cpy->peer_ref->force = 1;
1450 static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
1452 const struct ref *ref;
1453 for (ref = refs; ref; ref = ref->next) {
1454 if (refname_match(name, ref->name, ref_fetch_rules))
1460 struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
1462 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
1467 return copy_ref(ref);
1470 static struct ref *get_local_ref(const char *name)
1472 if (!name || name[0] == '\0')
1475 if (!prefixcmp(name, "refs/"))
1476 return alloc_ref(name);
1478 if (!prefixcmp(name, "heads/") ||
1479 !prefixcmp(name, "tags/") ||
1480 !prefixcmp(name, "remotes/"))
1481 return alloc_ref_with_prefix("refs/", 5, name);
1483 return alloc_ref_with_prefix("refs/heads/", 11, name);
1486 int get_fetch_map(const struct ref *remote_refs,
1487 const struct refspec *refspec,
1491 struct ref *ref_map, **rmp;
1493 if (refspec->pattern) {
1494 ref_map = get_expanded_map(remote_refs, refspec);
1496 const char *name = refspec->src[0] ? refspec->src : "HEAD";
1498 ref_map = get_remote_ref(remote_refs, name);
1499 if (!missing_ok && !ref_map)
1500 die("Couldn't find remote ref %s", name);
1502 ref_map->peer_ref = get_local_ref(refspec->dst);
1503 if (ref_map->peer_ref && refspec->force)
1504 ref_map->peer_ref->force = 1;
1508 for (rmp = &ref_map; *rmp; ) {
1509 if ((*rmp)->peer_ref) {
1510 if (prefixcmp((*rmp)->peer_ref->name, "refs/") ||
1511 check_refname_format((*rmp)->peer_ref->name, 0)) {
1512 struct ref *ignore = *rmp;
1513 error("* Ignoring funny ref '%s' locally",
1514 (*rmp)->peer_ref->name);
1515 *rmp = (*rmp)->next;
1516 free(ignore->peer_ref);
1521 rmp = &((*rmp)->next);
1525 tail_link_ref(ref_map, tail);
1530 int resolve_remote_symref(struct ref *ref, struct ref *list)
1534 for (; list; list = list->next)
1535 if (!strcmp(ref->symref, list->name)) {
1536 hashcpy(ref->old_sha1, list->old_sha1);
1542 static void unmark_and_free(struct commit_list *list, unsigned int mark)
1545 struct commit_list *temp = list;
1546 temp->item->object.flags &= ~mark;
1552 int ref_newer(const unsigned char *new_sha1, const unsigned char *old_sha1)
1555 struct commit *old, *new;
1556 struct commit_list *list, *used;
1559 /* Both new and old must be commit-ish and new is descendant of
1560 * old. Otherwise we require --force.
1562 o = deref_tag(parse_object(old_sha1), NULL, 0);
1563 if (!o || o->type != OBJ_COMMIT)
1565 old = (struct commit *) o;
1567 o = deref_tag(parse_object(new_sha1), NULL, 0);
1568 if (!o || o->type != OBJ_COMMIT)
1570 new = (struct commit *) o;
1572 if (parse_commit(new) < 0)
1576 commit_list_insert(new, &list);
1578 new = pop_most_recent_commit(&list, TMP_MARK);
1579 commit_list_insert(new, &used);
1585 unmark_and_free(list, TMP_MARK);
1586 unmark_and_free(used, TMP_MARK);
1591 * Return true if there is anything to report, otherwise false.
1593 int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs)
1595 unsigned char sha1[20];
1596 struct commit *ours, *theirs;
1598 struct rev_info revs;
1599 const char *rev_argv[10], *base;
1603 * Nothing to report unless we are marked to build on top of
1607 !branch->merge || !branch->merge[0] || !branch->merge[0]->dst)
1611 * If what we used to build on no longer exists, there is
1612 * nothing to report.
1614 base = branch->merge[0]->dst;
1615 if (read_ref(base, sha1))
1617 theirs = lookup_commit_reference(sha1);
1621 if (read_ref(branch->refname, sha1))
1623 ours = lookup_commit_reference(sha1);
1627 /* are we the same? */
1631 /* Run "rev-list --left-right ours...theirs" internally... */
1633 rev_argv[rev_argc++] = NULL;
1634 rev_argv[rev_argc++] = "--left-right";
1635 rev_argv[rev_argc++] = symmetric;
1636 rev_argv[rev_argc++] = "--";
1637 rev_argv[rev_argc] = NULL;
1639 strcpy(symmetric, sha1_to_hex(ours->object.sha1));
1640 strcpy(symmetric + 40, "...");
1641 strcpy(symmetric + 43, sha1_to_hex(theirs->object.sha1));
1643 init_revisions(&revs, NULL);
1644 setup_revisions(rev_argc, rev_argv, &revs, NULL);
1645 prepare_revision_walk(&revs);
1647 /* ... and count the commits on each side. */
1651 struct commit *c = get_revision(&revs);
1654 if (c->object.flags & SYMMETRIC_LEFT)
1660 /* clear object flags smudged by the above traversal */
1661 clear_commit_marks(ours, ALL_REV_FLAGS);
1662 clear_commit_marks(theirs, ALL_REV_FLAGS);
1667 * Return true when there is anything to report, otherwise false.
1669 int format_tracking_info(struct branch *branch, struct strbuf *sb)
1671 int num_ours, num_theirs;
1674 if (!stat_tracking_info(branch, &num_ours, &num_theirs))
1677 base = branch->merge[0]->dst;
1678 base = shorten_unambiguous_ref(base, 0);
1681 Q_("Your branch is ahead of '%s' by %d commit.\n",
1682 "Your branch is ahead of '%s' by %d commits.\n",
1685 if (advice_status_hints)
1687 _(" (use \"git push\" to publish your local commits)\n"));
1688 } else if (!num_ours) {
1690 Q_("Your branch is behind '%s' by %d commit, "
1691 "and can be fast-forwarded.\n",
1692 "Your branch is behind '%s' by %d commits, "
1693 "and can be fast-forwarded.\n",
1696 if (advice_status_hints)
1698 _(" (use \"git pull\" to update your local branch)\n"));
1701 Q_("Your branch and '%s' have diverged,\n"
1702 "and have %d and %d different commit each, "
1704 "Your branch and '%s' have diverged,\n"
1705 "and have %d and %d different commits each, "
1708 base, num_ours, num_theirs);
1709 if (advice_status_hints)
1711 _(" (use \"git pull\" to merge the remote branch into yours)\n"));
1716 static int one_local_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
1718 struct ref ***local_tail = cb_data;
1722 /* we already know it starts with refs/ to get here */
1723 if (check_refname_format(refname + 5, 0))
1726 len = strlen(refname) + 1;
1727 ref = xcalloc(1, sizeof(*ref) + len);
1728 hashcpy(ref->new_sha1, sha1);
1729 memcpy(ref->name, refname, len);
1731 *local_tail = &ref->next;
1735 struct ref *get_local_heads(void)
1737 struct ref *local_refs = NULL, **local_tail = &local_refs;
1738 for_each_ref(one_local_ref, &local_tail);
1742 struct ref *guess_remote_head(const struct ref *head,
1743 const struct ref *refs,
1746 const struct ref *r;
1747 struct ref *list = NULL;
1748 struct ref **tail = &list;
1754 * Some transports support directly peeking at
1755 * where HEAD points; if that is the case, then
1756 * we don't have to guess.
1759 return copy_ref(find_ref_by_name(refs, head->symref));
1761 /* If refs/heads/master could be right, it is. */
1763 r = find_ref_by_name(refs, "refs/heads/master");
1764 if (r && !hashcmp(r->old_sha1, head->old_sha1))
1768 /* Look for another ref that points there */
1769 for (r = refs; r; r = r->next) {
1771 !prefixcmp(r->name, "refs/heads/") &&
1772 !hashcmp(r->old_sha1, head->old_sha1)) {
1773 *tail = copy_ref(r);
1774 tail = &((*tail)->next);
1783 struct stale_heads_info {
1784 struct string_list *ref_names;
1785 struct ref **stale_refs_tail;
1786 struct refspec *refs;
1790 static int get_stale_heads_cb(const char *refname,
1791 const unsigned char *sha1, int flags, void *cb_data)
1793 struct stale_heads_info *info = cb_data;
1794 struct refspec query;
1795 memset(&query, 0, sizeof(struct refspec));
1796 query.dst = (char *)refname;
1798 if (query_refspecs(info->refs, info->ref_count, &query))
1799 return 0; /* No matches */
1802 * If we did find a suitable refspec and it's not a symref and
1803 * it's not in the list of refs that currently exist in that
1804 * remote we consider it to be stale.
1806 if (!((flags & REF_ISSYMREF) ||
1807 string_list_has_string(info->ref_names, query.src))) {
1808 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
1809 hashcpy(ref->new_sha1, sha1);
1816 struct ref *get_stale_heads(struct refspec *refs, int ref_count, struct ref *fetch_map)
1818 struct ref *ref, *stale_refs = NULL;
1819 struct string_list ref_names = STRING_LIST_INIT_NODUP;
1820 struct stale_heads_info info;
1821 info.ref_names = &ref_names;
1822 info.stale_refs_tail = &stale_refs;
1824 info.ref_count = ref_count;
1825 for (ref = fetch_map; ref; ref = ref->next)
1826 string_list_append(&ref_names, ref->name);
1827 sort_string_list(&ref_names);
1828 for_each_ref(get_stale_heads_cb, &info);
1829 string_list_clear(&ref_names, 0);