]> git.ipfire.org Git - thirdparty/git.git/blob - remote.c
treewide: be explicit about dependence on gettext.h
[thirdparty/git.git] / remote.c
1 #include "cache.h"
2 #include "alloc.h"
3 #include "config.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "remote.h"
7 #include "urlmatch.h"
8 #include "refs.h"
9 #include "refspec.h"
10 #include "object-store.h"
11 #include "commit.h"
12 #include "diff.h"
13 #include "revision.h"
14 #include "dir.h"
15 #include "tag.h"
16 #include "string-list.h"
17 #include "strvec.h"
18 #include "commit-reach.h"
19 #include "advice.h"
20 #include "connect.h"
21
22 enum map_direction { FROM_SRC, FROM_DST };
23
24 struct counted_string {
25 size_t len;
26 const char *s;
27 };
28
29 static int valid_remote(const struct remote *remote)
30 {
31 return (!!remote->url) || (!!remote->foreign_vcs);
32 }
33
34 static const char *alias_url(const char *url, struct rewrites *r)
35 {
36 int i, j;
37 struct counted_string *longest;
38 int longest_i;
39
40 longest = NULL;
41 longest_i = -1;
42 for (i = 0; i < r->rewrite_nr; i++) {
43 if (!r->rewrite[i])
44 continue;
45 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
46 if (starts_with(url, r->rewrite[i]->instead_of[j].s) &&
47 (!longest ||
48 longest->len < r->rewrite[i]->instead_of[j].len)) {
49 longest = &(r->rewrite[i]->instead_of[j]);
50 longest_i = i;
51 }
52 }
53 }
54 if (!longest)
55 return url;
56
57 return xstrfmt("%s%s", r->rewrite[longest_i]->base, url + longest->len);
58 }
59
60 static void add_url(struct remote *remote, const char *url)
61 {
62 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
63 remote->url[remote->url_nr++] = url;
64 }
65
66 static void add_pushurl(struct remote *remote, const char *pushurl)
67 {
68 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
69 remote->pushurl[remote->pushurl_nr++] = pushurl;
70 }
71
72 static void add_pushurl_alias(struct remote_state *remote_state,
73 struct remote *remote, const char *url)
74 {
75 const char *pushurl = alias_url(url, &remote_state->rewrites_push);
76 if (pushurl != url)
77 add_pushurl(remote, pushurl);
78 }
79
80 static void add_url_alias(struct remote_state *remote_state,
81 struct remote *remote, const char *url)
82 {
83 add_url(remote, alias_url(url, &remote_state->rewrites));
84 add_pushurl_alias(remote_state, remote, url);
85 }
86
87 struct remotes_hash_key {
88 const char *str;
89 int len;
90 };
91
92 static int remotes_hash_cmp(const void *cmp_data UNUSED,
93 const struct hashmap_entry *eptr,
94 const struct hashmap_entry *entry_or_key,
95 const void *keydata)
96 {
97 const struct remote *a, *b;
98 const struct remotes_hash_key *key = keydata;
99
100 a = container_of(eptr, const struct remote, ent);
101 b = container_of(entry_or_key, const struct remote, ent);
102
103 if (key)
104 return strncmp(a->name, key->str, key->len) || a->name[key->len];
105 else
106 return strcmp(a->name, b->name);
107 }
108
109 static struct remote *make_remote(struct remote_state *remote_state,
110 const char *name, int len)
111 {
112 struct remote *ret;
113 struct remotes_hash_key lookup;
114 struct hashmap_entry lookup_entry, *e;
115
116 if (!len)
117 len = strlen(name);
118
119 lookup.str = name;
120 lookup.len = len;
121 hashmap_entry_init(&lookup_entry, memhash(name, len));
122
123 e = hashmap_get(&remote_state->remotes_hash, &lookup_entry, &lookup);
124 if (e)
125 return container_of(e, struct remote, ent);
126
127 CALLOC_ARRAY(ret, 1);
128 ret->prune = -1; /* unspecified */
129 ret->prune_tags = -1; /* unspecified */
130 ret->name = xstrndup(name, len);
131 refspec_init(&ret->push, REFSPEC_PUSH);
132 refspec_init(&ret->fetch, REFSPEC_FETCH);
133
134 ALLOC_GROW(remote_state->remotes, remote_state->remotes_nr + 1,
135 remote_state->remotes_alloc);
136 remote_state->remotes[remote_state->remotes_nr++] = ret;
137
138 hashmap_entry_init(&ret->ent, lookup_entry.hash);
139 if (hashmap_put_entry(&remote_state->remotes_hash, ret, ent))
140 BUG("hashmap_put overwrote entry after hashmap_get returned NULL");
141 return ret;
142 }
143
144 static void remote_clear(struct remote *remote)
145 {
146 int i;
147
148 free((char *)remote->name);
149 free((char *)remote->foreign_vcs);
150
151 for (i = 0; i < remote->url_nr; i++)
152 free((char *)remote->url[i]);
153 FREE_AND_NULL(remote->url);
154
155 for (i = 0; i < remote->pushurl_nr; i++)
156 free((char *)remote->pushurl[i]);
157 FREE_AND_NULL(remote->pushurl);
158 free((char *)remote->receivepack);
159 free((char *)remote->uploadpack);
160 FREE_AND_NULL(remote->http_proxy);
161 FREE_AND_NULL(remote->http_proxy_authmethod);
162 }
163
164 static void add_merge(struct branch *branch, const char *name)
165 {
166 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
167 branch->merge_alloc);
168 branch->merge_name[branch->merge_nr++] = name;
169 }
170
171 struct branches_hash_key {
172 const char *str;
173 int len;
174 };
175
176 static int branches_hash_cmp(const void *cmp_data UNUSED,
177 const struct hashmap_entry *eptr,
178 const struct hashmap_entry *entry_or_key,
179 const void *keydata)
180 {
181 const struct branch *a, *b;
182 const struct branches_hash_key *key = keydata;
183
184 a = container_of(eptr, const struct branch, ent);
185 b = container_of(entry_or_key, const struct branch, ent);
186
187 if (key)
188 return strncmp(a->name, key->str, key->len) ||
189 a->name[key->len];
190 else
191 return strcmp(a->name, b->name);
192 }
193
194 static struct branch *find_branch(struct remote_state *remote_state,
195 const char *name, size_t len)
196 {
197 struct branches_hash_key lookup;
198 struct hashmap_entry lookup_entry, *e;
199
200 lookup.str = name;
201 lookup.len = len;
202 hashmap_entry_init(&lookup_entry, memhash(name, len));
203
204 e = hashmap_get(&remote_state->branches_hash, &lookup_entry, &lookup);
205 if (e)
206 return container_of(e, struct branch, ent);
207
208 return NULL;
209 }
210
211 static void die_on_missing_branch(struct repository *repo,
212 struct branch *branch)
213 {
214 /* branch == NULL is always valid because it represents detached HEAD. */
215 if (branch &&
216 branch != find_branch(repo->remote_state, branch->name,
217 strlen(branch->name)))
218 die("branch %s was not found in the repository", branch->name);
219 }
220
221 static struct branch *make_branch(struct remote_state *remote_state,
222 const char *name, size_t len)
223 {
224 struct branch *ret;
225
226 ret = find_branch(remote_state, name, len);
227 if (ret)
228 return ret;
229
230 CALLOC_ARRAY(ret, 1);
231 ret->name = xstrndup(name, len);
232 ret->refname = xstrfmt("refs/heads/%s", ret->name);
233
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;
238 }
239
240 static struct rewrite *make_rewrite(struct rewrites *r,
241 const char *base, size_t len)
242 {
243 struct rewrite *ret;
244 int i;
245
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];
250 }
251
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;
258 }
259
260 static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
261 {
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++;
266 }
267
268 static const char *skip_spaces(const char *s)
269 {
270 while (isspace(*s))
271 s++;
272 return s;
273 }
274
275 static void read_remotes_file(struct remote_state *remote_state,
276 struct remote *remote)
277 {
278 struct strbuf buf = STRBUF_INIT;
279 FILE *f = fopen_or_warn(git_path("remotes/%s", remote->name), "r");
280
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;
287
288 strbuf_rtrim(&buf);
289
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));
297 }
298 strbuf_release(&buf);
299 fclose(f);
300 }
301
302 static void read_branches_file(struct remote_state *remote_state,
303 struct remote *remote)
304 {
305 char *frag;
306 struct strbuf buf = STRBUF_INIT;
307 FILE *f = fopen_or_warn(git_path("branches/%s", remote->name), "r");
308
309 if (!f)
310 return;
311
312 strbuf_getline_lf(&buf, f);
313 fclose(f);
314 strbuf_trim(&buf);
315 if (!buf.len) {
316 strbuf_release(&buf);
317 return;
318 }
319
320 remote->configured_in_repo = 1;
321 remote->origin = REMOTE_BRANCHES;
322
323 /*
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.
328 */
329 frag = strchr(buf.buf, '#');
330 if (frag)
331 *(frag++) = '\0';
332 else
333 frag = (char *)git_default_branch_name(0);
334
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);
338
339 /*
340 * Cogito compatible push: push current HEAD to remote #branch
341 * (master if missing)
342 */
343 refspec_appendf(&remote->push, "HEAD:refs/heads/%s", frag);
344 remote->fetch_tags = 1; /* always auto-follow */
345 }
346
347 static int handle_config(const char *key, const char *value, void *cb)
348 {
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;
355
356 if (parse_config_key(key, "branch", &name, &namelen, &subkey) >= 0) {
357 /* There is no subsection. */
358 if (!name)
359 return 0;
360 /* There is a subsection, but it is empty. */
361 if (!namelen)
362 return -1;
363 branch = make_branch(remote_state, name, namelen);
364 if (!strcmp(subkey, "remote")) {
365 return git_config_string(&branch->remote_name, key, value);
366 } else if (!strcmp(subkey, "pushremote")) {
367 return git_config_string(&branch->pushremote_name, key, value);
368 } else if (!strcmp(subkey, "merge")) {
369 if (!value)
370 return config_error_nonbool(key);
371 add_merge(branch, xstrdup(value));
372 }
373 return 0;
374 }
375 if (parse_config_key(key, "url", &name, &namelen, &subkey) >= 0) {
376 struct rewrite *rewrite;
377 if (!name)
378 return 0;
379 if (!strcmp(subkey, "insteadof")) {
380 if (!value)
381 return config_error_nonbool(key);
382 rewrite = make_rewrite(&remote_state->rewrites, name,
383 namelen);
384 add_instead_of(rewrite, xstrdup(value));
385 } else if (!strcmp(subkey, "pushinsteadof")) {
386 if (!value)
387 return config_error_nonbool(key);
388 rewrite = make_rewrite(&remote_state->rewrites_push,
389 name, namelen);
390 add_instead_of(rewrite, xstrdup(value));
391 }
392 }
393
394 if (parse_config_key(key, "remote", &name, &namelen, &subkey) < 0)
395 return 0;
396
397 /* Handle remote.* variables */
398 if (!name && !strcmp(subkey, "pushdefault"))
399 return git_config_string(&remote_state->pushremote_name, key,
400 value);
401
402 if (!name)
403 return 0;
404 /* Handle remote.<name>.* variables */
405 if (*name == '/') {
406 warning(_("config remote shorthand cannot begin with '/': %s"),
407 name);
408 return 0;
409 }
410 remote = make_remote(remote_state, name, namelen);
411 remote->origin = REMOTE_CONFIG;
412 if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
413 current_config_scope() == CONFIG_SCOPE_WORKTREE)
414 remote->configured_in_repo = 1;
415 if (!strcmp(subkey, "mirror"))
416 remote->mirror = git_config_bool(key, value);
417 else if (!strcmp(subkey, "skipdefaultupdate"))
418 remote->skip_default_update = git_config_bool(key, value);
419 else if (!strcmp(subkey, "skipfetchall"))
420 remote->skip_default_update = git_config_bool(key, value);
421 else if (!strcmp(subkey, "prune"))
422 remote->prune = git_config_bool(key, value);
423 else if (!strcmp(subkey, "prunetags"))
424 remote->prune_tags = git_config_bool(key, value);
425 else if (!strcmp(subkey, "url")) {
426 const char *v;
427 if (git_config_string(&v, key, value))
428 return -1;
429 add_url(remote, v);
430 } else if (!strcmp(subkey, "pushurl")) {
431 const char *v;
432 if (git_config_string(&v, key, value))
433 return -1;
434 add_pushurl(remote, v);
435 } else if (!strcmp(subkey, "push")) {
436 const char *v;
437 if (git_config_string(&v, key, value))
438 return -1;
439 refspec_append(&remote->push, v);
440 free((char *)v);
441 } else if (!strcmp(subkey, "fetch")) {
442 const char *v;
443 if (git_config_string(&v, key, value))
444 return -1;
445 refspec_append(&remote->fetch, v);
446 free((char *)v);
447 } else if (!strcmp(subkey, "receivepack")) {
448 const char *v;
449 if (git_config_string(&v, key, value))
450 return -1;
451 if (!remote->receivepack)
452 remote->receivepack = v;
453 else
454 error(_("more than one receivepack given, using the first"));
455 } else if (!strcmp(subkey, "uploadpack")) {
456 const char *v;
457 if (git_config_string(&v, key, value))
458 return -1;
459 if (!remote->uploadpack)
460 remote->uploadpack = v;
461 else
462 error(_("more than one uploadpack given, using the first"));
463 } else if (!strcmp(subkey, "tagopt")) {
464 if (!strcmp(value, "--no-tags"))
465 remote->fetch_tags = -1;
466 else if (!strcmp(value, "--tags"))
467 remote->fetch_tags = 2;
468 } else if (!strcmp(subkey, "proxy")) {
469 return git_config_string((const char **)&remote->http_proxy,
470 key, value);
471 } else if (!strcmp(subkey, "proxyauthmethod")) {
472 return git_config_string((const char **)&remote->http_proxy_authmethod,
473 key, value);
474 } else if (!strcmp(subkey, "vcs")) {
475 return git_config_string(&remote->foreign_vcs, key, value);
476 }
477 return 0;
478 }
479
480 static void alias_all_urls(struct remote_state *remote_state)
481 {
482 int i, j;
483 for (i = 0; i < remote_state->remotes_nr; i++) {
484 int add_pushurl_aliases;
485 if (!remote_state->remotes[i])
486 continue;
487 for (j = 0; j < remote_state->remotes[i]->pushurl_nr; j++) {
488 remote_state->remotes[i]->pushurl[j] =
489 alias_url(remote_state->remotes[i]->pushurl[j],
490 &remote_state->rewrites);
491 }
492 add_pushurl_aliases = remote_state->remotes[i]->pushurl_nr == 0;
493 for (j = 0; j < remote_state->remotes[i]->url_nr; j++) {
494 if (add_pushurl_aliases)
495 add_pushurl_alias(
496 remote_state, remote_state->remotes[i],
497 remote_state->remotes[i]->url[j]);
498 remote_state->remotes[i]->url[j] =
499 alias_url(remote_state->remotes[i]->url[j],
500 &remote_state->rewrites);
501 }
502 }
503 }
504
505 static void read_config(struct repository *repo)
506 {
507 int flag;
508
509 if (repo->remote_state->initialized)
510 return;
511 repo->remote_state->initialized = 1;
512
513 repo->remote_state->current_branch = NULL;
514 if (startup_info->have_repository) {
515 const char *head_ref = refs_resolve_ref_unsafe(
516 get_main_ref_store(repo), "HEAD", 0, NULL, &flag);
517 if (head_ref && (flag & REF_ISSYMREF) &&
518 skip_prefix(head_ref, "refs/heads/", &head_ref)) {
519 repo->remote_state->current_branch = make_branch(
520 repo->remote_state, head_ref, strlen(head_ref));
521 }
522 }
523 repo_config(repo, handle_config, repo->remote_state);
524 alias_all_urls(repo->remote_state);
525 }
526
527 static int valid_remote_nick(const char *name)
528 {
529 if (!name[0] || is_dot_or_dotdot(name))
530 return 0;
531
532 /* remote nicknames cannot contain slashes */
533 while (*name)
534 if (is_dir_sep(*name++))
535 return 0;
536 return 1;
537 }
538
539 static const char *remotes_remote_for_branch(struct remote_state *remote_state,
540 struct branch *branch,
541 int *explicit)
542 {
543 if (branch && branch->remote_name) {
544 if (explicit)
545 *explicit = 1;
546 return branch->remote_name;
547 }
548 if (explicit)
549 *explicit = 0;
550 if (remote_state->remotes_nr == 1)
551 return remote_state->remotes[0]->name;
552 return "origin";
553 }
554
555 const char *remote_for_branch(struct branch *branch, int *explicit)
556 {
557 read_config(the_repository);
558 die_on_missing_branch(the_repository, branch);
559
560 return remotes_remote_for_branch(the_repository->remote_state, branch,
561 explicit);
562 }
563
564 static const char *
565 remotes_pushremote_for_branch(struct remote_state *remote_state,
566 struct branch *branch, int *explicit)
567 {
568 if (branch && branch->pushremote_name) {
569 if (explicit)
570 *explicit = 1;
571 return branch->pushremote_name;
572 }
573 if (remote_state->pushremote_name) {
574 if (explicit)
575 *explicit = 1;
576 return remote_state->pushremote_name;
577 }
578 return remotes_remote_for_branch(remote_state, branch, explicit);
579 }
580
581 const char *pushremote_for_branch(struct branch *branch, int *explicit)
582 {
583 read_config(the_repository);
584 die_on_missing_branch(the_repository, branch);
585
586 return remotes_pushremote_for_branch(the_repository->remote_state,
587 branch, explicit);
588 }
589
590 static struct remote *remotes_remote_get(struct remote_state *remote_state,
591 const char *name);
592
593 const char *remote_ref_for_branch(struct branch *branch, int for_push)
594 {
595 read_config(the_repository);
596 die_on_missing_branch(the_repository, branch);
597
598 if (branch) {
599 if (!for_push) {
600 if (branch->merge_nr) {
601 return branch->merge_name[0];
602 }
603 } else {
604 const char *dst,
605 *remote_name = remotes_pushremote_for_branch(
606 the_repository->remote_state, branch,
607 NULL);
608 struct remote *remote = remotes_remote_get(
609 the_repository->remote_state, remote_name);
610
611 if (remote && remote->push.nr &&
612 (dst = apply_refspecs(&remote->push,
613 branch->refname))) {
614 return dst;
615 }
616 }
617 }
618 return NULL;
619 }
620
621 static void validate_remote_url(struct remote *remote)
622 {
623 int i;
624 const char *value;
625 struct strbuf redacted = STRBUF_INIT;
626 int warn_not_die;
627
628 if (git_config_get_string_tmp("transfer.credentialsinurl", &value))
629 return;
630
631 if (!strcmp("warn", value))
632 warn_not_die = 1;
633 else if (!strcmp("die", value))
634 warn_not_die = 0;
635 else if (!strcmp("allow", value))
636 return;
637 else
638 die(_("unrecognized value transfer.credentialsInUrl: '%s'"), value);
639
640 for (i = 0; i < remote->url_nr; i++) {
641 struct url_info url_info = { 0 };
642
643 if (!url_normalize(remote->url[i], &url_info) ||
644 !url_info.passwd_off)
645 goto loop_cleanup;
646
647 strbuf_reset(&redacted);
648 strbuf_add(&redacted, url_info.url, url_info.passwd_off);
649 strbuf_addstr(&redacted, "<redacted>");
650 strbuf_addstr(&redacted,
651 url_info.url + url_info.passwd_off + url_info.passwd_len);
652
653 if (warn_not_die)
654 warning(_("URL '%s' uses plaintext credentials"), redacted.buf);
655 else
656 die(_("URL '%s' uses plaintext credentials"), redacted.buf);
657
658 loop_cleanup:
659 free(url_info.url);
660 }
661
662 strbuf_release(&redacted);
663 }
664
665 static struct remote *
666 remotes_remote_get_1(struct remote_state *remote_state, const char *name,
667 const char *(*get_default)(struct remote_state *,
668 struct branch *, int *))
669 {
670 struct remote *ret;
671 int name_given = 0;
672
673 if (name)
674 name_given = 1;
675 else
676 name = get_default(remote_state, remote_state->current_branch,
677 &name_given);
678
679 ret = make_remote(remote_state, name, 0);
680 if (valid_remote_nick(name) && have_git_dir()) {
681 if (!valid_remote(ret))
682 read_remotes_file(remote_state, ret);
683 if (!valid_remote(ret))
684 read_branches_file(remote_state, ret);
685 }
686 if (name_given && !valid_remote(ret))
687 add_url_alias(remote_state, ret, name);
688 if (!valid_remote(ret))
689 return NULL;
690
691 validate_remote_url(ret);
692
693 return ret;
694 }
695
696 static inline struct remote *
697 remotes_remote_get(struct remote_state *remote_state, const char *name)
698 {
699 return remotes_remote_get_1(remote_state, name,
700 remotes_remote_for_branch);
701 }
702
703 struct remote *remote_get(const char *name)
704 {
705 read_config(the_repository);
706 return remotes_remote_get(the_repository->remote_state, name);
707 }
708
709 static inline struct remote *
710 remotes_pushremote_get(struct remote_state *remote_state, const char *name)
711 {
712 return remotes_remote_get_1(remote_state, name,
713 remotes_pushremote_for_branch);
714 }
715
716 struct remote *pushremote_get(const char *name)
717 {
718 read_config(the_repository);
719 return remotes_pushremote_get(the_repository->remote_state, name);
720 }
721
722 int remote_is_configured(struct remote *remote, int in_repo)
723 {
724 if (!remote)
725 return 0;
726 if (in_repo)
727 return remote->configured_in_repo;
728 return !!remote->origin;
729 }
730
731 int for_each_remote(each_remote_fn fn, void *priv)
732 {
733 int i, result = 0;
734 read_config(the_repository);
735 for (i = 0; i < the_repository->remote_state->remotes_nr && !result;
736 i++) {
737 struct remote *remote =
738 the_repository->remote_state->remotes[i];
739 if (!remote)
740 continue;
741 result = fn(remote, priv);
742 }
743 return result;
744 }
745
746 static void handle_duplicate(struct ref *ref1, struct ref *ref2)
747 {
748 if (strcmp(ref1->name, ref2->name)) {
749 if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
750 ref2->fetch_head_status != FETCH_HEAD_IGNORE) {
751 die(_("Cannot fetch both %s and %s to %s"),
752 ref1->name, ref2->name, ref2->peer_ref->name);
753 } else if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
754 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
755 warning(_("%s usually tracks %s, not %s"),
756 ref2->peer_ref->name, ref2->name, ref1->name);
757 } else if (ref1->fetch_head_status == FETCH_HEAD_IGNORE &&
758 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
759 die(_("%s tracks both %s and %s"),
760 ref2->peer_ref->name, ref1->name, ref2->name);
761 } else {
762 /*
763 * This last possibility doesn't occur because
764 * FETCH_HEAD_IGNORE entries always appear at
765 * the end of the list.
766 */
767 BUG("Internal error");
768 }
769 }
770 free(ref2->peer_ref);
771 free(ref2);
772 }
773
774 struct ref *ref_remove_duplicates(struct ref *ref_map)
775 {
776 struct string_list refs = STRING_LIST_INIT_NODUP;
777 struct ref *retval = NULL;
778 struct ref **p = &retval;
779
780 while (ref_map) {
781 struct ref *ref = ref_map;
782
783 ref_map = ref_map->next;
784 ref->next = NULL;
785
786 if (!ref->peer_ref) {
787 *p = ref;
788 p = &ref->next;
789 } else {
790 struct string_list_item *item =
791 string_list_insert(&refs, ref->peer_ref->name);
792
793 if (item->util) {
794 /* Entry already existed */
795 handle_duplicate((struct ref *)item->util, ref);
796 } else {
797 *p = ref;
798 p = &ref->next;
799 item->util = ref;
800 }
801 }
802 }
803
804 string_list_clear(&refs, 0);
805 return retval;
806 }
807
808 int remote_has_url(struct remote *remote, const char *url)
809 {
810 int i;
811 for (i = 0; i < remote->url_nr; i++) {
812 if (!strcmp(remote->url[i], url))
813 return 1;
814 }
815 return 0;
816 }
817
818 static int match_name_with_pattern(const char *key, const char *name,
819 const char *value, char **result)
820 {
821 const char *kstar = strchr(key, '*');
822 size_t klen;
823 size_t ksuffixlen;
824 size_t namelen;
825 int ret;
826 if (!kstar)
827 die(_("key '%s' of pattern had no '*'"), key);
828 klen = kstar - key;
829 ksuffixlen = strlen(kstar + 1);
830 namelen = strlen(name);
831 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
832 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
833 if (ret && value) {
834 struct strbuf sb = STRBUF_INIT;
835 const char *vstar = strchr(value, '*');
836 if (!vstar)
837 die(_("value '%s' of pattern has no '*'"), value);
838 strbuf_add(&sb, value, vstar - value);
839 strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen);
840 strbuf_addstr(&sb, vstar + 1);
841 *result = strbuf_detach(&sb, NULL);
842 }
843 return ret;
844 }
845
846 static int refspec_match(const struct refspec_item *refspec,
847 const char *name)
848 {
849 if (refspec->pattern)
850 return match_name_with_pattern(refspec->src, name, NULL, NULL);
851
852 return !strcmp(refspec->src, name);
853 }
854
855 int omit_name_by_refspec(const char *name, struct refspec *rs)
856 {
857 int i;
858
859 for (i = 0; i < rs->nr; i++) {
860 if (rs->items[i].negative && refspec_match(&rs->items[i], name))
861 return 1;
862 }
863 return 0;
864 }
865
866 struct ref *apply_negative_refspecs(struct ref *ref_map, struct refspec *rs)
867 {
868 struct ref **tail;
869
870 for (tail = &ref_map; *tail; ) {
871 struct ref *ref = *tail;
872
873 if (omit_name_by_refspec(ref->name, rs)) {
874 *tail = ref->next;
875 free(ref->peer_ref);
876 free(ref);
877 } else
878 tail = &ref->next;
879 }
880
881 return ref_map;
882 }
883
884 static int query_matches_negative_refspec(struct refspec *rs, struct refspec_item *query)
885 {
886 int i, matched_negative = 0;
887 int find_src = !query->src;
888 struct string_list reversed = STRING_LIST_INIT_NODUP;
889 const char *needle = find_src ? query->dst : query->src;
890
891 /*
892 * Check whether the queried ref matches any negative refpsec. If so,
893 * then we should ultimately treat this as not matching the query at
894 * all.
895 *
896 * Note that negative refspecs always match the source, but the query
897 * item uses the destination. To handle this, we apply pattern
898 * refspecs in reverse to figure out if the query source matches any
899 * of the negative refspecs.
900 *
901 * The first loop finds and expands all positive refspecs
902 * matched by the queried ref.
903 *
904 * The second loop checks if any of the results of the first loop
905 * match any negative refspec.
906 */
907 for (i = 0; i < rs->nr; i++) {
908 struct refspec_item *refspec = &rs->items[i];
909 char *expn_name;
910
911 if (refspec->negative)
912 continue;
913
914 /* Note the reversal of src and dst */
915 if (refspec->pattern) {
916 const char *key = refspec->dst ? refspec->dst : refspec->src;
917 const char *value = refspec->src;
918
919 if (match_name_with_pattern(key, needle, value, &expn_name))
920 string_list_append_nodup(&reversed, expn_name);
921 } else if (refspec->matching) {
922 /* For the special matching refspec, any query should match */
923 string_list_append(&reversed, needle);
924 } else if (!refspec->src) {
925 BUG("refspec->src should not be null here");
926 } else if (!strcmp(needle, refspec->src)) {
927 string_list_append(&reversed, refspec->src);
928 }
929 }
930
931 for (i = 0; !matched_negative && i < reversed.nr; i++) {
932 if (omit_name_by_refspec(reversed.items[i].string, rs))
933 matched_negative = 1;
934 }
935
936 string_list_clear(&reversed, 0);
937
938 return matched_negative;
939 }
940
941 static void query_refspecs_multiple(struct refspec *rs,
942 struct refspec_item *query,
943 struct string_list *results)
944 {
945 int i;
946 int find_src = !query->src;
947
948 if (find_src && !query->dst)
949 BUG("query_refspecs_multiple: need either src or dst");
950
951 if (query_matches_negative_refspec(rs, query))
952 return;
953
954 for (i = 0; i < rs->nr; i++) {
955 struct refspec_item *refspec = &rs->items[i];
956 const char *key = find_src ? refspec->dst : refspec->src;
957 const char *value = find_src ? refspec->src : refspec->dst;
958 const char *needle = find_src ? query->dst : query->src;
959 char **result = find_src ? &query->src : &query->dst;
960
961 if (!refspec->dst || refspec->negative)
962 continue;
963 if (refspec->pattern) {
964 if (match_name_with_pattern(key, needle, value, result))
965 string_list_append_nodup(results, *result);
966 } else if (!strcmp(needle, key)) {
967 string_list_append(results, value);
968 }
969 }
970 }
971
972 int query_refspecs(struct refspec *rs, struct refspec_item *query)
973 {
974 int i;
975 int find_src = !query->src;
976 const char *needle = find_src ? query->dst : query->src;
977 char **result = find_src ? &query->src : &query->dst;
978
979 if (find_src && !query->dst)
980 BUG("query_refspecs: need either src or dst");
981
982 if (query_matches_negative_refspec(rs, query))
983 return -1;
984
985 for (i = 0; i < rs->nr; i++) {
986 struct refspec_item *refspec = &rs->items[i];
987 const char *key = find_src ? refspec->dst : refspec->src;
988 const char *value = find_src ? refspec->src : refspec->dst;
989
990 if (!refspec->dst || refspec->negative)
991 continue;
992 if (refspec->pattern) {
993 if (match_name_with_pattern(key, needle, value, result)) {
994 query->force = refspec->force;
995 return 0;
996 }
997 } else if (!strcmp(needle, key)) {
998 *result = xstrdup(value);
999 query->force = refspec->force;
1000 return 0;
1001 }
1002 }
1003 return -1;
1004 }
1005
1006 char *apply_refspecs(struct refspec *rs, const char *name)
1007 {
1008 struct refspec_item query;
1009
1010 memset(&query, 0, sizeof(struct refspec_item));
1011 query.src = (char *)name;
1012
1013 if (query_refspecs(rs, &query))
1014 return NULL;
1015
1016 return query.dst;
1017 }
1018
1019 int remote_find_tracking(struct remote *remote, struct refspec_item *refspec)
1020 {
1021 return query_refspecs(&remote->fetch, refspec);
1022 }
1023
1024 static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
1025 const char *name)
1026 {
1027 size_t len = strlen(name);
1028 struct ref *ref = xcalloc(1, st_add4(sizeof(*ref), prefixlen, len, 1));
1029 memcpy(ref->name, prefix, prefixlen);
1030 memcpy(ref->name + prefixlen, name, len);
1031 return ref;
1032 }
1033
1034 struct ref *alloc_ref(const char *name)
1035 {
1036 return alloc_ref_with_prefix("", 0, name);
1037 }
1038
1039 struct ref *copy_ref(const struct ref *ref)
1040 {
1041 struct ref *cpy;
1042 size_t len;
1043 if (!ref)
1044 return NULL;
1045 len = st_add3(sizeof(struct ref), strlen(ref->name), 1);
1046 cpy = xmalloc(len);
1047 memcpy(cpy, ref, len);
1048 cpy->next = NULL;
1049 cpy->symref = xstrdup_or_null(ref->symref);
1050 cpy->remote_status = xstrdup_or_null(ref->remote_status);
1051 cpy->peer_ref = copy_ref(ref->peer_ref);
1052 return cpy;
1053 }
1054
1055 struct ref *copy_ref_list(const struct ref *ref)
1056 {
1057 struct ref *ret = NULL;
1058 struct ref **tail = &ret;
1059 while (ref) {
1060 *tail = copy_ref(ref);
1061 ref = ref->next;
1062 tail = &((*tail)->next);
1063 }
1064 return ret;
1065 }
1066
1067 void free_one_ref(struct ref *ref)
1068 {
1069 if (!ref)
1070 return;
1071 free_one_ref(ref->peer_ref);
1072 free(ref->remote_status);
1073 free(ref->symref);
1074 free(ref);
1075 }
1076
1077 void free_refs(struct ref *ref)
1078 {
1079 struct ref *next;
1080 while (ref) {
1081 next = ref->next;
1082 free_one_ref(ref);
1083 ref = next;
1084 }
1085 }
1086
1087 int count_refspec_match(const char *pattern,
1088 struct ref *refs,
1089 struct ref **matched_ref)
1090 {
1091 int patlen = strlen(pattern);
1092 struct ref *matched_weak = NULL;
1093 struct ref *matched = NULL;
1094 int weak_match = 0;
1095 int match = 0;
1096
1097 for (weak_match = match = 0; refs; refs = refs->next) {
1098 char *name = refs->name;
1099 int namelen = strlen(name);
1100
1101 if (!refname_match(pattern, name))
1102 continue;
1103
1104 /* A match is "weak" if it is with refs outside
1105 * heads or tags, and did not specify the pattern
1106 * in full (e.g. "refs/remotes/origin/master") or at
1107 * least from the toplevel (e.g. "remotes/origin/master");
1108 * otherwise "git push $URL master" would result in
1109 * ambiguity between remotes/origin/master and heads/master
1110 * at the remote site.
1111 */
1112 if (namelen != patlen &&
1113 patlen != namelen - 5 &&
1114 !starts_with(name, "refs/heads/") &&
1115 !starts_with(name, "refs/tags/")) {
1116 /* We want to catch the case where only weak
1117 * matches are found and there are multiple
1118 * matches, and where more than one strong
1119 * matches are found, as ambiguous. One
1120 * strong match with zero or more weak matches
1121 * are acceptable as a unique match.
1122 */
1123 matched_weak = refs;
1124 weak_match++;
1125 }
1126 else {
1127 matched = refs;
1128 match++;
1129 }
1130 }
1131 if (!matched) {
1132 if (matched_ref)
1133 *matched_ref = matched_weak;
1134 return weak_match;
1135 }
1136 else {
1137 if (matched_ref)
1138 *matched_ref = matched;
1139 return match;
1140 }
1141 }
1142
1143 static void tail_link_ref(struct ref *ref, struct ref ***tail)
1144 {
1145 **tail = ref;
1146 while (ref->next)
1147 ref = ref->next;
1148 *tail = &ref->next;
1149 }
1150
1151 static struct ref *alloc_delete_ref(void)
1152 {
1153 struct ref *ref = alloc_ref("(delete)");
1154 oidclr(&ref->new_oid);
1155 return ref;
1156 }
1157
1158 static int try_explicit_object_name(const char *name,
1159 struct ref **match)
1160 {
1161 struct object_id oid;
1162
1163 if (!*name) {
1164 if (match)
1165 *match = alloc_delete_ref();
1166 return 0;
1167 }
1168
1169 if (get_oid(name, &oid))
1170 return -1;
1171
1172 if (match) {
1173 *match = alloc_ref(name);
1174 oidcpy(&(*match)->new_oid, &oid);
1175 }
1176 return 0;
1177 }
1178
1179 static struct ref *make_linked_ref(const char *name, struct ref ***tail)
1180 {
1181 struct ref *ret = alloc_ref(name);
1182 tail_link_ref(ret, tail);
1183 return ret;
1184 }
1185
1186 static char *guess_ref(const char *name, struct ref *peer)
1187 {
1188 struct strbuf buf = STRBUF_INIT;
1189
1190 const char *r = resolve_ref_unsafe(peer->name, RESOLVE_REF_READING,
1191 NULL, NULL);
1192 if (!r)
1193 return NULL;
1194
1195 if (starts_with(r, "refs/heads/")) {
1196 strbuf_addstr(&buf, "refs/heads/");
1197 } else if (starts_with(r, "refs/tags/")) {
1198 strbuf_addstr(&buf, "refs/tags/");
1199 } else {
1200 return NULL;
1201 }
1202
1203 strbuf_addstr(&buf, name);
1204 return strbuf_detach(&buf, NULL);
1205 }
1206
1207 static int match_explicit_lhs(struct ref *src,
1208 struct refspec_item *rs,
1209 struct ref **match,
1210 int *allocated_match)
1211 {
1212 switch (count_refspec_match(rs->src, src, match)) {
1213 case 1:
1214 if (allocated_match)
1215 *allocated_match = 0;
1216 return 0;
1217 case 0:
1218 /* The source could be in the get_sha1() format
1219 * not a reference name. :refs/other is a
1220 * way to delete 'other' ref at the remote end.
1221 */
1222 if (try_explicit_object_name(rs->src, match) < 0)
1223 return error(_("src refspec %s does not match any"), rs->src);
1224 if (allocated_match)
1225 *allocated_match = 1;
1226 return 0;
1227 default:
1228 return error(_("src refspec %s matches more than one"), rs->src);
1229 }
1230 }
1231
1232 static void show_push_unqualified_ref_name_error(const char *dst_value,
1233 const char *matched_src_name)
1234 {
1235 struct object_id oid;
1236 enum object_type type;
1237
1238 /*
1239 * TRANSLATORS: "matches '%s'%" is the <dst> part of "git push
1240 * <remote> <src>:<dst>" push, and "being pushed ('%s')" is
1241 * the <src>.
1242 */
1243 error(_("The destination you provided is not a full refname (i.e.,\n"
1244 "starting with \"refs/\"). We tried to guess what you meant by:\n"
1245 "\n"
1246 "- Looking for a ref that matches '%s' on the remote side.\n"
1247 "- Checking if the <src> being pushed ('%s')\n"
1248 " is a ref in \"refs/{heads,tags}/\". If so we add a corresponding\n"
1249 " refs/{heads,tags}/ prefix on the remote side.\n"
1250 "\n"
1251 "Neither worked, so we gave up. You must fully qualify the ref."),
1252 dst_value, matched_src_name);
1253
1254 if (!advice_enabled(ADVICE_PUSH_UNQUALIFIED_REF_NAME))
1255 return;
1256
1257 if (get_oid(matched_src_name, &oid))
1258 BUG("'%s' is not a valid object, "
1259 "match_explicit_lhs() should catch this!",
1260 matched_src_name);
1261 type = oid_object_info(the_repository, &oid, NULL);
1262 if (type == OBJ_COMMIT) {
1263 advise(_("The <src> part of the refspec is a commit object.\n"
1264 "Did you mean to create a new branch by pushing to\n"
1265 "'%s:refs/heads/%s'?"),
1266 matched_src_name, dst_value);
1267 } else if (type == OBJ_TAG) {
1268 advise(_("The <src> part of the refspec is a tag object.\n"
1269 "Did you mean to create a new tag by pushing to\n"
1270 "'%s:refs/tags/%s'?"),
1271 matched_src_name, dst_value);
1272 } else if (type == OBJ_TREE) {
1273 advise(_("The <src> part of the refspec is a tree object.\n"
1274 "Did you mean to tag a new tree by pushing to\n"
1275 "'%s:refs/tags/%s'?"),
1276 matched_src_name, dst_value);
1277 } else if (type == OBJ_BLOB) {
1278 advise(_("The <src> part of the refspec is a blob object.\n"
1279 "Did you mean to tag a new blob by pushing to\n"
1280 "'%s:refs/tags/%s'?"),
1281 matched_src_name, dst_value);
1282 } else {
1283 BUG("'%s' should be commit/tag/tree/blob, is '%d'",
1284 matched_src_name, type);
1285 }
1286 }
1287
1288 static int match_explicit(struct ref *src, struct ref *dst,
1289 struct ref ***dst_tail,
1290 struct refspec_item *rs)
1291 {
1292 struct ref *matched_src, *matched_dst;
1293 int allocated_src;
1294
1295 const char *dst_value = rs->dst;
1296 char *dst_guess;
1297
1298 if (rs->pattern || rs->matching || rs->negative)
1299 return 0;
1300
1301 matched_src = matched_dst = NULL;
1302 if (match_explicit_lhs(src, rs, &matched_src, &allocated_src) < 0)
1303 return -1;
1304
1305 if (!dst_value) {
1306 int flag;
1307
1308 dst_value = resolve_ref_unsafe(matched_src->name,
1309 RESOLVE_REF_READING,
1310 NULL, &flag);
1311 if (!dst_value ||
1312 ((flag & REF_ISSYMREF) &&
1313 !starts_with(dst_value, "refs/heads/")))
1314 die(_("%s cannot be resolved to branch"),
1315 matched_src->name);
1316 }
1317
1318 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1319 case 1:
1320 break;
1321 case 0:
1322 if (starts_with(dst_value, "refs/")) {
1323 matched_dst = make_linked_ref(dst_value, dst_tail);
1324 } else if (is_null_oid(&matched_src->new_oid)) {
1325 error(_("unable to delete '%s': remote ref does not exist"),
1326 dst_value);
1327 } else if ((dst_guess = guess_ref(dst_value, matched_src))) {
1328 matched_dst = make_linked_ref(dst_guess, dst_tail);
1329 free(dst_guess);
1330 } else {
1331 show_push_unqualified_ref_name_error(dst_value,
1332 matched_src->name);
1333 }
1334 break;
1335 default:
1336 matched_dst = NULL;
1337 error(_("dst refspec %s matches more than one"),
1338 dst_value);
1339 break;
1340 }
1341 if (!matched_dst)
1342 return -1;
1343 if (matched_dst->peer_ref)
1344 return error(_("dst ref %s receives from more than one src"),
1345 matched_dst->name);
1346 else {
1347 matched_dst->peer_ref = allocated_src ?
1348 matched_src :
1349 copy_ref(matched_src);
1350 matched_dst->force = rs->force;
1351 }
1352 return 0;
1353 }
1354
1355 static int match_explicit_refs(struct ref *src, struct ref *dst,
1356 struct ref ***dst_tail, struct refspec *rs)
1357 {
1358 int i, errs;
1359 for (i = errs = 0; i < rs->nr; i++)
1360 errs += match_explicit(src, dst, dst_tail, &rs->items[i]);
1361 return errs;
1362 }
1363
1364 static char *get_ref_match(const struct refspec *rs, const struct ref *ref,
1365 int send_mirror, int direction,
1366 const struct refspec_item **ret_pat)
1367 {
1368 const struct refspec_item *pat;
1369 char *name;
1370 int i;
1371 int matching_refs = -1;
1372 for (i = 0; i < rs->nr; i++) {
1373 const struct refspec_item *item = &rs->items[i];
1374
1375 if (item->negative)
1376 continue;
1377
1378 if (item->matching &&
1379 (matching_refs == -1 || item->force)) {
1380 matching_refs = i;
1381 continue;
1382 }
1383
1384 if (item->pattern) {
1385 const char *dst_side = item->dst ? item->dst : item->src;
1386 int match;
1387 if (direction == FROM_SRC)
1388 match = match_name_with_pattern(item->src, ref->name, dst_side, &name);
1389 else
1390 match = match_name_with_pattern(dst_side, ref->name, item->src, &name);
1391 if (match) {
1392 matching_refs = i;
1393 break;
1394 }
1395 }
1396 }
1397 if (matching_refs == -1)
1398 return NULL;
1399
1400 pat = &rs->items[matching_refs];
1401 if (pat->matching) {
1402 /*
1403 * "matching refs"; traditionally we pushed everything
1404 * including refs outside refs/heads/ hierarchy, but
1405 * that does not make much sense these days.
1406 */
1407 if (!send_mirror && !starts_with(ref->name, "refs/heads/"))
1408 return NULL;
1409 name = xstrdup(ref->name);
1410 }
1411 if (ret_pat)
1412 *ret_pat = pat;
1413 return name;
1414 }
1415
1416 static struct ref **tail_ref(struct ref **head)
1417 {
1418 struct ref **tail = head;
1419 while (*tail)
1420 tail = &((*tail)->next);
1421 return tail;
1422 }
1423
1424 struct tips {
1425 struct commit **tip;
1426 int nr, alloc;
1427 };
1428
1429 static void add_to_tips(struct tips *tips, const struct object_id *oid)
1430 {
1431 struct commit *commit;
1432
1433 if (is_null_oid(oid))
1434 return;
1435 commit = lookup_commit_reference_gently(the_repository, oid, 1);
1436 if (!commit || (commit->object.flags & TMP_MARK))
1437 return;
1438 commit->object.flags |= TMP_MARK;
1439 ALLOC_GROW(tips->tip, tips->nr + 1, tips->alloc);
1440 tips->tip[tips->nr++] = commit;
1441 }
1442
1443 static void add_missing_tags(struct ref *src, struct ref **dst, struct ref ***dst_tail)
1444 {
1445 struct string_list dst_tag = STRING_LIST_INIT_NODUP;
1446 struct string_list src_tag = STRING_LIST_INIT_NODUP;
1447 struct string_list_item *item;
1448 struct ref *ref;
1449 struct tips sent_tips;
1450
1451 /*
1452 * Collect everything we know they would have at the end of
1453 * this push, and collect all tags they have.
1454 */
1455 memset(&sent_tips, 0, sizeof(sent_tips));
1456 for (ref = *dst; ref; ref = ref->next) {
1457 if (ref->peer_ref &&
1458 !is_null_oid(&ref->peer_ref->new_oid))
1459 add_to_tips(&sent_tips, &ref->peer_ref->new_oid);
1460 else
1461 add_to_tips(&sent_tips, &ref->old_oid);
1462 if (starts_with(ref->name, "refs/tags/"))
1463 string_list_append(&dst_tag, ref->name);
1464 }
1465 clear_commit_marks_many(sent_tips.nr, sent_tips.tip, TMP_MARK);
1466
1467 string_list_sort(&dst_tag);
1468
1469 /* Collect tags they do not have. */
1470 for (ref = src; ref; ref = ref->next) {
1471 if (!starts_with(ref->name, "refs/tags/"))
1472 continue; /* not a tag */
1473 if (string_list_has_string(&dst_tag, ref->name))
1474 continue; /* they already have it */
1475 if (oid_object_info(the_repository, &ref->new_oid, NULL) != OBJ_TAG)
1476 continue; /* be conservative */
1477 item = string_list_append(&src_tag, ref->name);
1478 item->util = ref;
1479 }
1480 string_list_clear(&dst_tag, 0);
1481
1482 /*
1483 * At this point, src_tag lists tags that are missing from
1484 * dst, and sent_tips lists the tips we are pushing or those
1485 * that we know they already have. An element in the src_tag
1486 * that is an ancestor of any of the sent_tips needs to be
1487 * sent to the other side.
1488 */
1489 if (sent_tips.nr) {
1490 const int reachable_flag = 1;
1491 struct commit_list *found_commits;
1492 struct commit **src_commits;
1493 int nr_src_commits = 0, alloc_src_commits = 16;
1494 ALLOC_ARRAY(src_commits, alloc_src_commits);
1495
1496 for_each_string_list_item(item, &src_tag) {
1497 struct ref *ref = item->util;
1498 struct commit *commit;
1499
1500 if (is_null_oid(&ref->new_oid))
1501 continue;
1502 commit = lookup_commit_reference_gently(the_repository,
1503 &ref->new_oid,
1504 1);
1505 if (!commit)
1506 /* not pushing a commit, which is not an error */
1507 continue;
1508
1509 ALLOC_GROW(src_commits, nr_src_commits + 1, alloc_src_commits);
1510 src_commits[nr_src_commits++] = commit;
1511 }
1512
1513 found_commits = get_reachable_subset(sent_tips.tip, sent_tips.nr,
1514 src_commits, nr_src_commits,
1515 reachable_flag);
1516
1517 for_each_string_list_item(item, &src_tag) {
1518 struct ref *dst_ref;
1519 struct ref *ref = item->util;
1520 struct commit *commit;
1521
1522 if (is_null_oid(&ref->new_oid))
1523 continue;
1524 commit = lookup_commit_reference_gently(the_repository,
1525 &ref->new_oid,
1526 1);
1527 if (!commit)
1528 /* not pushing a commit, which is not an error */
1529 continue;
1530
1531 /*
1532 * Is this tag, which they do not have, reachable from
1533 * any of the commits we are sending?
1534 */
1535 if (!(commit->object.flags & reachable_flag))
1536 continue;
1537
1538 /* Add it in */
1539 dst_ref = make_linked_ref(ref->name, dst_tail);
1540 oidcpy(&dst_ref->new_oid, &ref->new_oid);
1541 dst_ref->peer_ref = copy_ref(ref);
1542 }
1543
1544 clear_commit_marks_many(nr_src_commits, src_commits, reachable_flag);
1545 free(src_commits);
1546 free_commit_list(found_commits);
1547 }
1548
1549 string_list_clear(&src_tag, 0);
1550 free(sent_tips.tip);
1551 }
1552
1553 struct ref *find_ref_by_name(const struct ref *list, const char *name)
1554 {
1555 for ( ; list; list = list->next)
1556 if (!strcmp(list->name, name))
1557 return (struct ref *)list;
1558 return NULL;
1559 }
1560
1561 static void prepare_ref_index(struct string_list *ref_index, struct ref *ref)
1562 {
1563 for ( ; ref; ref = ref->next)
1564 string_list_append_nodup(ref_index, ref->name)->util = ref;
1565
1566 string_list_sort(ref_index);
1567 }
1568
1569 /*
1570 * Given only the set of local refs, sanity-check the set of push
1571 * refspecs. We can't catch all errors that match_push_refs would,
1572 * but we can catch some errors early before even talking to the
1573 * remote side.
1574 */
1575 int check_push_refs(struct ref *src, struct refspec *rs)
1576 {
1577 int ret = 0;
1578 int i;
1579
1580 for (i = 0; i < rs->nr; i++) {
1581 struct refspec_item *item = &rs->items[i];
1582
1583 if (item->pattern || item->matching || item->negative)
1584 continue;
1585
1586 ret |= match_explicit_lhs(src, item, NULL, NULL);
1587 }
1588
1589 return ret;
1590 }
1591
1592 /*
1593 * Given the set of refs the local repository has, the set of refs the
1594 * remote repository has, and the refspec used for push, determine
1595 * what remote refs we will update and with what value by setting
1596 * peer_ref (which object is being pushed) and force (if the push is
1597 * forced) in elements of "dst". The function may add new elements to
1598 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
1599 */
1600 int match_push_refs(struct ref *src, struct ref **dst,
1601 struct refspec *rs, int flags)
1602 {
1603 int send_all = flags & MATCH_REFS_ALL;
1604 int send_mirror = flags & MATCH_REFS_MIRROR;
1605 int send_prune = flags & MATCH_REFS_PRUNE;
1606 int errs;
1607 struct ref *ref, **dst_tail = tail_ref(dst);
1608 struct string_list dst_ref_index = STRING_LIST_INIT_NODUP;
1609
1610 /* If no refspec is provided, use the default ":" */
1611 if (!rs->nr)
1612 refspec_append(rs, ":");
1613
1614 errs = match_explicit_refs(src, *dst, &dst_tail, rs);
1615
1616 /* pick the remainder */
1617 for (ref = src; ref; ref = ref->next) {
1618 struct string_list_item *dst_item;
1619 struct ref *dst_peer;
1620 const struct refspec_item *pat = NULL;
1621 char *dst_name;
1622
1623 dst_name = get_ref_match(rs, ref, send_mirror, FROM_SRC, &pat);
1624 if (!dst_name)
1625 continue;
1626
1627 if (!dst_ref_index.nr)
1628 prepare_ref_index(&dst_ref_index, *dst);
1629
1630 dst_item = string_list_lookup(&dst_ref_index, dst_name);
1631 dst_peer = dst_item ? dst_item->util : NULL;
1632 if (dst_peer) {
1633 if (dst_peer->peer_ref)
1634 /* We're already sending something to this ref. */
1635 goto free_name;
1636 } else {
1637 if (pat->matching && !(send_all || send_mirror))
1638 /*
1639 * Remote doesn't have it, and we have no
1640 * explicit pattern, and we don't have
1641 * --all or --mirror.
1642 */
1643 goto free_name;
1644
1645 /* Create a new one and link it */
1646 dst_peer = make_linked_ref(dst_name, &dst_tail);
1647 oidcpy(&dst_peer->new_oid, &ref->new_oid);
1648 string_list_insert(&dst_ref_index,
1649 dst_peer->name)->util = dst_peer;
1650 }
1651 dst_peer->peer_ref = copy_ref(ref);
1652 dst_peer->force = pat->force;
1653 free_name:
1654 free(dst_name);
1655 }
1656
1657 string_list_clear(&dst_ref_index, 0);
1658
1659 if (flags & MATCH_REFS_FOLLOW_TAGS)
1660 add_missing_tags(src, dst, &dst_tail);
1661
1662 if (send_prune) {
1663 struct string_list src_ref_index = STRING_LIST_INIT_NODUP;
1664 /* check for missing refs on the remote */
1665 for (ref = *dst; ref; ref = ref->next) {
1666 char *src_name;
1667
1668 if (ref->peer_ref)
1669 /* We're already sending something to this ref. */
1670 continue;
1671
1672 src_name = get_ref_match(rs, ref, send_mirror, FROM_DST, NULL);
1673 if (src_name) {
1674 if (!src_ref_index.nr)
1675 prepare_ref_index(&src_ref_index, src);
1676 if (!string_list_has_string(&src_ref_index,
1677 src_name))
1678 ref->peer_ref = alloc_delete_ref();
1679 free(src_name);
1680 }
1681 }
1682 string_list_clear(&src_ref_index, 0);
1683 }
1684
1685 *dst = apply_negative_refspecs(*dst, rs);
1686
1687 if (errs)
1688 return -1;
1689 return 0;
1690 }
1691
1692 void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
1693 int force_update)
1694 {
1695 struct ref *ref;
1696
1697 for (ref = remote_refs; ref; ref = ref->next) {
1698 int force_ref_update = ref->force || force_update;
1699 int reject_reason = 0;
1700
1701 if (ref->peer_ref)
1702 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
1703 else if (!send_mirror)
1704 continue;
1705
1706 ref->deletion = is_null_oid(&ref->new_oid);
1707 if (!ref->deletion &&
1708 oideq(&ref->old_oid, &ref->new_oid)) {
1709 ref->status = REF_STATUS_UPTODATE;
1710 continue;
1711 }
1712
1713 /*
1714 * If the remote ref has moved and is now different
1715 * from what we expect, reject any push.
1716 *
1717 * It also is an error if the user told us to check
1718 * with the remote-tracking branch to find the value
1719 * to expect, but we did not have such a tracking
1720 * branch.
1721 *
1722 * If the tip of the remote-tracking ref is unreachable
1723 * from any reflog entry of its local ref indicating a
1724 * possible update since checkout; reject the push.
1725 */
1726 if (ref->expect_old_sha1) {
1727 if (!oideq(&ref->old_oid, &ref->old_oid_expect))
1728 reject_reason = REF_STATUS_REJECT_STALE;
1729 else if (ref->check_reachable && ref->unreachable)
1730 reject_reason =
1731 REF_STATUS_REJECT_REMOTE_UPDATED;
1732 else
1733 /*
1734 * If the ref isn't stale, and is reachable
1735 * from one of the reflog entries of
1736 * the local branch, force the update.
1737 */
1738 force_ref_update = 1;
1739 }
1740
1741 /*
1742 * If the update isn't already rejected then check
1743 * the usual "must fast-forward" rules.
1744 *
1745 * Decide whether an individual refspec A:B can be
1746 * pushed. The push will succeed if any of the
1747 * following are true:
1748 *
1749 * (1) the remote reference B does not exist
1750 *
1751 * (2) the remote reference B is being removed (i.e.,
1752 * pushing :B where no source is specified)
1753 *
1754 * (3) the destination is not under refs/tags/, and
1755 * if the old and new value is a commit, the new
1756 * is a descendant of the old.
1757 *
1758 * (4) it is forced using the +A:B notation, or by
1759 * passing the --force argument
1760 */
1761
1762 if (!reject_reason && !ref->deletion && !is_null_oid(&ref->old_oid)) {
1763 if (starts_with(ref->name, "refs/tags/"))
1764 reject_reason = REF_STATUS_REJECT_ALREADY_EXISTS;
1765 else if (!has_object_file(&ref->old_oid))
1766 reject_reason = REF_STATUS_REJECT_FETCH_FIRST;
1767 else if (!lookup_commit_reference_gently(the_repository, &ref->old_oid, 1) ||
1768 !lookup_commit_reference_gently(the_repository, &ref->new_oid, 1))
1769 reject_reason = REF_STATUS_REJECT_NEEDS_FORCE;
1770 else if (!ref_newer(&ref->new_oid, &ref->old_oid))
1771 reject_reason = REF_STATUS_REJECT_NONFASTFORWARD;
1772 }
1773
1774 /*
1775 * "--force" will defeat any rejection implemented
1776 * by the rules above.
1777 */
1778 if (!force_ref_update)
1779 ref->status = reject_reason;
1780 else if (reject_reason)
1781 ref->forced_update = 1;
1782 }
1783 }
1784
1785 static void set_merge(struct remote_state *remote_state, struct branch *ret)
1786 {
1787 struct remote *remote;
1788 char *ref;
1789 struct object_id oid;
1790 int i;
1791
1792 if (!ret)
1793 return; /* no branch */
1794 if (ret->merge)
1795 return; /* already run */
1796 if (!ret->remote_name || !ret->merge_nr) {
1797 /*
1798 * no merge config; let's make sure we don't confuse callers
1799 * with a non-zero merge_nr but a NULL merge
1800 */
1801 ret->merge_nr = 0;
1802 return;
1803 }
1804
1805 remote = remotes_remote_get(remote_state, ret->remote_name);
1806
1807 CALLOC_ARRAY(ret->merge, ret->merge_nr);
1808 for (i = 0; i < ret->merge_nr; i++) {
1809 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1810 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
1811 if (!remote_find_tracking(remote, ret->merge[i]) ||
1812 strcmp(ret->remote_name, "."))
1813 continue;
1814 if (dwim_ref(ret->merge_name[i], strlen(ret->merge_name[i]),
1815 &oid, &ref, 0) == 1)
1816 ret->merge[i]->dst = ref;
1817 else
1818 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
1819 }
1820 }
1821
1822 struct branch *branch_get(const char *name)
1823 {
1824 struct branch *ret;
1825
1826 read_config(the_repository);
1827 if (!name || !*name || !strcmp(name, "HEAD"))
1828 ret = the_repository->remote_state->current_branch;
1829 else
1830 ret = make_branch(the_repository->remote_state, name,
1831 strlen(name));
1832 set_merge(the_repository->remote_state, ret);
1833 return ret;
1834 }
1835
1836 int branch_has_merge_config(struct branch *branch)
1837 {
1838 return branch && !!branch->merge;
1839 }
1840
1841 int branch_merge_matches(struct branch *branch,
1842 int i,
1843 const char *refname)
1844 {
1845 if (!branch || i < 0 || i >= branch->merge_nr)
1846 return 0;
1847 return refname_match(branch->merge[i]->src, refname);
1848 }
1849
1850 __attribute__((format (printf,2,3)))
1851 static const char *error_buf(struct strbuf *err, const char *fmt, ...)
1852 {
1853 if (err) {
1854 va_list ap;
1855 va_start(ap, fmt);
1856 strbuf_vaddf(err, fmt, ap);
1857 va_end(ap);
1858 }
1859 return NULL;
1860 }
1861
1862 const char *branch_get_upstream(struct branch *branch, struct strbuf *err)
1863 {
1864 if (!branch)
1865 return error_buf(err, _("HEAD does not point to a branch"));
1866
1867 if (!branch->merge || !branch->merge[0]) {
1868 /*
1869 * no merge config; is it because the user didn't define any,
1870 * or because it is not a real branch, and get_branch
1871 * auto-vivified it?
1872 */
1873 if (!ref_exists(branch->refname))
1874 return error_buf(err, _("no such branch: '%s'"),
1875 branch->name);
1876 return error_buf(err,
1877 _("no upstream configured for branch '%s'"),
1878 branch->name);
1879 }
1880
1881 if (!branch->merge[0]->dst)
1882 return error_buf(err,
1883 _("upstream branch '%s' not stored as a remote-tracking branch"),
1884 branch->merge[0]->src);
1885
1886 return branch->merge[0]->dst;
1887 }
1888
1889 static const char *tracking_for_push_dest(struct remote *remote,
1890 const char *refname,
1891 struct strbuf *err)
1892 {
1893 char *ret;
1894
1895 ret = apply_refspecs(&remote->fetch, refname);
1896 if (!ret)
1897 return error_buf(err,
1898 _("push destination '%s' on remote '%s' has no local tracking branch"),
1899 refname, remote->name);
1900 return ret;
1901 }
1902
1903 static const char *branch_get_push_1(struct remote_state *remote_state,
1904 struct branch *branch, struct strbuf *err)
1905 {
1906 struct remote *remote;
1907
1908 remote = remotes_remote_get(
1909 remote_state,
1910 remotes_pushremote_for_branch(remote_state, branch, NULL));
1911 if (!remote)
1912 return error_buf(err,
1913 _("branch '%s' has no remote for pushing"),
1914 branch->name);
1915
1916 if (remote->push.nr) {
1917 char *dst;
1918 const char *ret;
1919
1920 dst = apply_refspecs(&remote->push, branch->refname);
1921 if (!dst)
1922 return error_buf(err,
1923 _("push refspecs for '%s' do not include '%s'"),
1924 remote->name, branch->name);
1925
1926 ret = tracking_for_push_dest(remote, dst, err);
1927 free(dst);
1928 return ret;
1929 }
1930
1931 if (remote->mirror)
1932 return tracking_for_push_dest(remote, branch->refname, err);
1933
1934 switch (push_default) {
1935 case PUSH_DEFAULT_NOTHING:
1936 return error_buf(err, _("push has no destination (push.default is 'nothing')"));
1937
1938 case PUSH_DEFAULT_MATCHING:
1939 case PUSH_DEFAULT_CURRENT:
1940 return tracking_for_push_dest(remote, branch->refname, err);
1941
1942 case PUSH_DEFAULT_UPSTREAM:
1943 return branch_get_upstream(branch, err);
1944
1945 case PUSH_DEFAULT_UNSPECIFIED:
1946 case PUSH_DEFAULT_SIMPLE:
1947 {
1948 const char *up, *cur;
1949
1950 up = branch_get_upstream(branch, err);
1951 if (!up)
1952 return NULL;
1953 cur = tracking_for_push_dest(remote, branch->refname, err);
1954 if (!cur)
1955 return NULL;
1956 if (strcmp(cur, up))
1957 return error_buf(err,
1958 _("cannot resolve 'simple' push to a single destination"));
1959 return cur;
1960 }
1961 }
1962
1963 BUG("unhandled push situation");
1964 }
1965
1966 const char *branch_get_push(struct branch *branch, struct strbuf *err)
1967 {
1968 read_config(the_repository);
1969 die_on_missing_branch(the_repository, branch);
1970
1971 if (!branch)
1972 return error_buf(err, _("HEAD does not point to a branch"));
1973
1974 if (!branch->push_tracking_ref)
1975 branch->push_tracking_ref = branch_get_push_1(
1976 the_repository->remote_state, branch, err);
1977 return branch->push_tracking_ref;
1978 }
1979
1980 static int ignore_symref_update(const char *refname, struct strbuf *scratch)
1981 {
1982 return !refs_read_symbolic_ref(get_main_ref_store(the_repository), refname, scratch);
1983 }
1984
1985 /*
1986 * Create and return a list of (struct ref) consisting of copies of
1987 * each remote_ref that matches refspec. refspec must be a pattern.
1988 * Fill in the copies' peer_ref to describe the local tracking refs to
1989 * which they map. Omit any references that would map to an existing
1990 * local symbolic ref.
1991 */
1992 static struct ref *get_expanded_map(const struct ref *remote_refs,
1993 const struct refspec_item *refspec)
1994 {
1995 struct strbuf scratch = STRBUF_INIT;
1996 const struct ref *ref;
1997 struct ref *ret = NULL;
1998 struct ref **tail = &ret;
1999
2000 for (ref = remote_refs; ref; ref = ref->next) {
2001 char *expn_name = NULL;
2002
2003 strbuf_reset(&scratch);
2004
2005 if (strchr(ref->name, '^'))
2006 continue; /* a dereference item */
2007 if (match_name_with_pattern(refspec->src, ref->name,
2008 refspec->dst, &expn_name) &&
2009 !ignore_symref_update(expn_name, &scratch)) {
2010 struct ref *cpy = copy_ref(ref);
2011
2012 cpy->peer_ref = alloc_ref(expn_name);
2013 if (refspec->force)
2014 cpy->peer_ref->force = 1;
2015 *tail = cpy;
2016 tail = &cpy->next;
2017 }
2018 free(expn_name);
2019 }
2020
2021 strbuf_release(&scratch);
2022 return ret;
2023 }
2024
2025 static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
2026 {
2027 const struct ref *ref;
2028 const struct ref *best_match = NULL;
2029 int best_score = 0;
2030
2031 for (ref = refs; ref; ref = ref->next) {
2032 int score = refname_match(name, ref->name);
2033
2034 if (best_score < score) {
2035 best_match = ref;
2036 best_score = score;
2037 }
2038 }
2039 return best_match;
2040 }
2041
2042 struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
2043 {
2044 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
2045
2046 if (!ref)
2047 return NULL;
2048
2049 return copy_ref(ref);
2050 }
2051
2052 static struct ref *get_local_ref(const char *name)
2053 {
2054 if (!name || name[0] == '\0')
2055 return NULL;
2056
2057 if (starts_with(name, "refs/"))
2058 return alloc_ref(name);
2059
2060 if (starts_with(name, "heads/") ||
2061 starts_with(name, "tags/") ||
2062 starts_with(name, "remotes/"))
2063 return alloc_ref_with_prefix("refs/", 5, name);
2064
2065 return alloc_ref_with_prefix("refs/heads/", 11, name);
2066 }
2067
2068 int get_fetch_map(const struct ref *remote_refs,
2069 const struct refspec_item *refspec,
2070 struct ref ***tail,
2071 int missing_ok)
2072 {
2073 struct ref *ref_map, **rmp;
2074
2075 if (refspec->negative)
2076 return 0;
2077
2078 if (refspec->pattern) {
2079 ref_map = get_expanded_map(remote_refs, refspec);
2080 } else {
2081 const char *name = refspec->src[0] ? refspec->src : "HEAD";
2082
2083 if (refspec->exact_sha1) {
2084 ref_map = alloc_ref(name);
2085 get_oid_hex(name, &ref_map->old_oid);
2086 ref_map->exact_oid = 1;
2087 } else {
2088 ref_map = get_remote_ref(remote_refs, name);
2089 }
2090 if (!missing_ok && !ref_map)
2091 die(_("couldn't find remote ref %s"), name);
2092 if (ref_map) {
2093 ref_map->peer_ref = get_local_ref(refspec->dst);
2094 if (ref_map->peer_ref && refspec->force)
2095 ref_map->peer_ref->force = 1;
2096 }
2097 }
2098
2099 for (rmp = &ref_map; *rmp; ) {
2100 if ((*rmp)->peer_ref) {
2101 if (!starts_with((*rmp)->peer_ref->name, "refs/") ||
2102 check_refname_format((*rmp)->peer_ref->name, 0)) {
2103 struct ref *ignore = *rmp;
2104 error(_("* Ignoring funny ref '%s' locally"),
2105 (*rmp)->peer_ref->name);
2106 *rmp = (*rmp)->next;
2107 free(ignore->peer_ref);
2108 free(ignore);
2109 continue;
2110 }
2111 }
2112 rmp = &((*rmp)->next);
2113 }
2114
2115 if (ref_map)
2116 tail_link_ref(ref_map, tail);
2117
2118 return 0;
2119 }
2120
2121 int resolve_remote_symref(struct ref *ref, struct ref *list)
2122 {
2123 if (!ref->symref)
2124 return 0;
2125 for (; list; list = list->next)
2126 if (!strcmp(ref->symref, list->name)) {
2127 oidcpy(&ref->old_oid, &list->old_oid);
2128 return 0;
2129 }
2130 return 1;
2131 }
2132
2133 /*
2134 * Compute the commit ahead/behind values for the pair branch_name, base.
2135 *
2136 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
2137 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
2138 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
2139 * set to zero).
2140 *
2141 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., ref
2142 * does not exist). Returns 0 if the commits are identical. Returns 1 if
2143 * commits are different.
2144 */
2145
2146 static int stat_branch_pair(const char *branch_name, const char *base,
2147 int *num_ours, int *num_theirs,
2148 enum ahead_behind_flags abf)
2149 {
2150 struct object_id oid;
2151 struct commit *ours, *theirs;
2152 struct rev_info revs;
2153 struct setup_revision_opt opt = {
2154 .free_removed_argv_elements = 1,
2155 };
2156 struct strvec argv = STRVEC_INIT;
2157
2158 /* Cannot stat if what we used to build on no longer exists */
2159 if (read_ref(base, &oid))
2160 return -1;
2161 theirs = lookup_commit_reference(the_repository, &oid);
2162 if (!theirs)
2163 return -1;
2164
2165 if (read_ref(branch_name, &oid))
2166 return -1;
2167 ours = lookup_commit_reference(the_repository, &oid);
2168 if (!ours)
2169 return -1;
2170
2171 *num_theirs = *num_ours = 0;
2172
2173 /* are we the same? */
2174 if (theirs == ours)
2175 return 0;
2176 if (abf == AHEAD_BEHIND_QUICK)
2177 return 1;
2178 if (abf != AHEAD_BEHIND_FULL)
2179 BUG("stat_branch_pair: invalid abf '%d'", abf);
2180
2181 /* Run "rev-list --left-right ours...theirs" internally... */
2182 strvec_push(&argv, ""); /* ignored */
2183 strvec_push(&argv, "--left-right");
2184 strvec_pushf(&argv, "%s...%s",
2185 oid_to_hex(&ours->object.oid),
2186 oid_to_hex(&theirs->object.oid));
2187 strvec_push(&argv, "--");
2188
2189 repo_init_revisions(the_repository, &revs, NULL);
2190 setup_revisions(argv.nr, argv.v, &revs, &opt);
2191 if (prepare_revision_walk(&revs))
2192 die(_("revision walk setup failed"));
2193
2194 /* ... and count the commits on each side. */
2195 while (1) {
2196 struct commit *c = get_revision(&revs);
2197 if (!c)
2198 break;
2199 if (c->object.flags & SYMMETRIC_LEFT)
2200 (*num_ours)++;
2201 else
2202 (*num_theirs)++;
2203 }
2204
2205 /* clear object flags smudged by the above traversal */
2206 clear_commit_marks(ours, ALL_REV_FLAGS);
2207 clear_commit_marks(theirs, ALL_REV_FLAGS);
2208
2209 strvec_clear(&argv);
2210 release_revisions(&revs);
2211 return 1;
2212 }
2213
2214 /*
2215 * Lookup the tracking branch for the given branch and if present, optionally
2216 * compute the commit ahead/behind values for the pair.
2217 *
2218 * If for_push is true, the tracking branch refers to the push branch,
2219 * otherwise it refers to the upstream branch.
2220 *
2221 * The name of the tracking branch (or NULL if it is not defined) is
2222 * returned via *tracking_name, if it is not itself NULL.
2223 *
2224 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
2225 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
2226 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
2227 * set to zero).
2228 *
2229 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., no
2230 * upstream defined, or ref does not exist). Returns 0 if the commits are
2231 * identical. Returns 1 if commits are different.
2232 */
2233 int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs,
2234 const char **tracking_name, int for_push,
2235 enum ahead_behind_flags abf)
2236 {
2237 const char *base;
2238
2239 /* Cannot stat unless we are marked to build on top of somebody else. */
2240 base = for_push ? branch_get_push(branch, NULL) :
2241 branch_get_upstream(branch, NULL);
2242 if (tracking_name)
2243 *tracking_name = base;
2244 if (!base)
2245 return -1;
2246
2247 return stat_branch_pair(branch->refname, base, num_ours, num_theirs, abf);
2248 }
2249
2250 /*
2251 * Return true when there is anything to report, otherwise false.
2252 */
2253 int format_tracking_info(struct branch *branch, struct strbuf *sb,
2254 enum ahead_behind_flags abf)
2255 {
2256 int ours, theirs, sti;
2257 const char *full_base;
2258 char *base;
2259 int upstream_is_gone = 0;
2260
2261 sti = stat_tracking_info(branch, &ours, &theirs, &full_base, 0, abf);
2262 if (sti < 0) {
2263 if (!full_base)
2264 return 0;
2265 upstream_is_gone = 1;
2266 }
2267
2268 base = shorten_unambiguous_ref(full_base, 0);
2269 if (upstream_is_gone) {
2270 strbuf_addf(sb,
2271 _("Your branch is based on '%s', but the upstream is gone.\n"),
2272 base);
2273 if (advice_enabled(ADVICE_STATUS_HINTS))
2274 strbuf_addstr(sb,
2275 _(" (use \"git branch --unset-upstream\" to fixup)\n"));
2276 } else if (!sti) {
2277 strbuf_addf(sb,
2278 _("Your branch is up to date with '%s'.\n"),
2279 base);
2280 } else if (abf == AHEAD_BEHIND_QUICK) {
2281 strbuf_addf(sb,
2282 _("Your branch and '%s' refer to different commits.\n"),
2283 base);
2284 if (advice_enabled(ADVICE_STATUS_HINTS))
2285 strbuf_addf(sb, _(" (use \"%s\" for details)\n"),
2286 "git status --ahead-behind");
2287 } else if (!theirs) {
2288 strbuf_addf(sb,
2289 Q_("Your branch is ahead of '%s' by %d commit.\n",
2290 "Your branch is ahead of '%s' by %d commits.\n",
2291 ours),
2292 base, ours);
2293 if (advice_enabled(ADVICE_STATUS_HINTS))
2294 strbuf_addstr(sb,
2295 _(" (use \"git push\" to publish your local commits)\n"));
2296 } else if (!ours) {
2297 strbuf_addf(sb,
2298 Q_("Your branch is behind '%s' by %d commit, "
2299 "and can be fast-forwarded.\n",
2300 "Your branch is behind '%s' by %d commits, "
2301 "and can be fast-forwarded.\n",
2302 theirs),
2303 base, theirs);
2304 if (advice_enabled(ADVICE_STATUS_HINTS))
2305 strbuf_addstr(sb,
2306 _(" (use \"git pull\" to update your local branch)\n"));
2307 } else {
2308 strbuf_addf(sb,
2309 Q_("Your branch and '%s' have diverged,\n"
2310 "and have %d and %d different commit each, "
2311 "respectively.\n",
2312 "Your branch and '%s' have diverged,\n"
2313 "and have %d and %d different commits each, "
2314 "respectively.\n",
2315 ours + theirs),
2316 base, ours, theirs);
2317 if (advice_enabled(ADVICE_STATUS_HINTS))
2318 strbuf_addstr(sb,
2319 _(" (use \"git pull\" to merge the remote branch into yours)\n"));
2320 }
2321 free(base);
2322 return 1;
2323 }
2324
2325 static int one_local_ref(const char *refname, const struct object_id *oid,
2326 int flag UNUSED,
2327 void *cb_data)
2328 {
2329 struct ref ***local_tail = cb_data;
2330 struct ref *ref;
2331
2332 /* we already know it starts with refs/ to get here */
2333 if (check_refname_format(refname + 5, 0))
2334 return 0;
2335
2336 ref = alloc_ref(refname);
2337 oidcpy(&ref->new_oid, oid);
2338 **local_tail = ref;
2339 *local_tail = &ref->next;
2340 return 0;
2341 }
2342
2343 struct ref *get_local_heads(void)
2344 {
2345 struct ref *local_refs = NULL, **local_tail = &local_refs;
2346
2347 for_each_ref(one_local_ref, &local_tail);
2348 return local_refs;
2349 }
2350
2351 struct ref *guess_remote_head(const struct ref *head,
2352 const struct ref *refs,
2353 int all)
2354 {
2355 const struct ref *r;
2356 struct ref *list = NULL;
2357 struct ref **tail = &list;
2358
2359 if (!head)
2360 return NULL;
2361
2362 /*
2363 * Some transports support directly peeking at
2364 * where HEAD points; if that is the case, then
2365 * we don't have to guess.
2366 */
2367 if (head->symref)
2368 return copy_ref(find_ref_by_name(refs, head->symref));
2369
2370 /* If a remote branch exists with the default branch name, let's use it. */
2371 if (!all) {
2372 char *ref = xstrfmt("refs/heads/%s",
2373 git_default_branch_name(0));
2374
2375 r = find_ref_by_name(refs, ref);
2376 free(ref);
2377 if (r && oideq(&r->old_oid, &head->old_oid))
2378 return copy_ref(r);
2379
2380 /* Fall back to the hard-coded historical default */
2381 r = find_ref_by_name(refs, "refs/heads/master");
2382 if (r && oideq(&r->old_oid, &head->old_oid))
2383 return copy_ref(r);
2384 }
2385
2386 /* Look for another ref that points there */
2387 for (r = refs; r; r = r->next) {
2388 if (r != head &&
2389 starts_with(r->name, "refs/heads/") &&
2390 oideq(&r->old_oid, &head->old_oid)) {
2391 *tail = copy_ref(r);
2392 tail = &((*tail)->next);
2393 if (!all)
2394 break;
2395 }
2396 }
2397
2398 return list;
2399 }
2400
2401 struct stale_heads_info {
2402 struct string_list *ref_names;
2403 struct ref **stale_refs_tail;
2404 struct refspec *rs;
2405 };
2406
2407 static int get_stale_heads_cb(const char *refname, const struct object_id *oid,
2408 int flags, void *cb_data)
2409 {
2410 struct stale_heads_info *info = cb_data;
2411 struct string_list matches = STRING_LIST_INIT_DUP;
2412 struct refspec_item query;
2413 int i, stale = 1;
2414 memset(&query, 0, sizeof(struct refspec_item));
2415 query.dst = (char *)refname;
2416
2417 query_refspecs_multiple(info->rs, &query, &matches);
2418 if (matches.nr == 0)
2419 goto clean_exit; /* No matches */
2420
2421 /*
2422 * If we did find a suitable refspec and it's not a symref and
2423 * it's not in the list of refs that currently exist in that
2424 * remote, we consider it to be stale. In order to deal with
2425 * overlapping refspecs, we need to go over all of the
2426 * matching refs.
2427 */
2428 if (flags & REF_ISSYMREF)
2429 goto clean_exit;
2430
2431 for (i = 0; stale && i < matches.nr; i++)
2432 if (string_list_has_string(info->ref_names, matches.items[i].string))
2433 stale = 0;
2434
2435 if (stale) {
2436 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
2437 oidcpy(&ref->new_oid, oid);
2438 }
2439
2440 clean_exit:
2441 string_list_clear(&matches, 0);
2442 return 0;
2443 }
2444
2445 struct ref *get_stale_heads(struct refspec *rs, struct ref *fetch_map)
2446 {
2447 struct ref *ref, *stale_refs = NULL;
2448 struct string_list ref_names = STRING_LIST_INIT_NODUP;
2449 struct stale_heads_info info;
2450
2451 info.ref_names = &ref_names;
2452 info.stale_refs_tail = &stale_refs;
2453 info.rs = rs;
2454 for (ref = fetch_map; ref; ref = ref->next)
2455 string_list_append(&ref_names, ref->name);
2456 string_list_sort(&ref_names);
2457 for_each_ref(get_stale_heads_cb, &info);
2458 string_list_clear(&ref_names, 0);
2459 return stale_refs;
2460 }
2461
2462 /*
2463 * Compare-and-swap
2464 */
2465 static void clear_cas_option(struct push_cas_option *cas)
2466 {
2467 int i;
2468
2469 for (i = 0; i < cas->nr; i++)
2470 free(cas->entry[i].refname);
2471 free(cas->entry);
2472 memset(cas, 0, sizeof(*cas));
2473 }
2474
2475 static struct push_cas *add_cas_entry(struct push_cas_option *cas,
2476 const char *refname,
2477 size_t refnamelen)
2478 {
2479 struct push_cas *entry;
2480 ALLOC_GROW(cas->entry, cas->nr + 1, cas->alloc);
2481 entry = &cas->entry[cas->nr++];
2482 memset(entry, 0, sizeof(*entry));
2483 entry->refname = xmemdupz(refname, refnamelen);
2484 return entry;
2485 }
2486
2487 static int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset)
2488 {
2489 const char *colon;
2490 struct push_cas *entry;
2491
2492 if (unset) {
2493 /* "--no-<option>" */
2494 clear_cas_option(cas);
2495 return 0;
2496 }
2497
2498 if (!arg) {
2499 /* just "--<option>" */
2500 cas->use_tracking_for_rest = 1;
2501 return 0;
2502 }
2503
2504 /* "--<option>=refname" or "--<option>=refname:value" */
2505 colon = strchrnul(arg, ':');
2506 entry = add_cas_entry(cas, arg, colon - arg);
2507 if (!*colon)
2508 entry->use_tracking = 1;
2509 else if (!colon[1])
2510 oidclr(&entry->expect);
2511 else if (get_oid(colon + 1, &entry->expect))
2512 return error(_("cannot parse expected object name '%s'"),
2513 colon + 1);
2514 return 0;
2515 }
2516
2517 int parseopt_push_cas_option(const struct option *opt, const char *arg, int unset)
2518 {
2519 return parse_push_cas_option(opt->value, arg, unset);
2520 }
2521
2522 int is_empty_cas(const struct push_cas_option *cas)
2523 {
2524 return !cas->use_tracking_for_rest && !cas->nr;
2525 }
2526
2527 /*
2528 * Look at remote.fetch refspec and see if we have a remote
2529 * tracking branch for the refname there. Fill the name of
2530 * the remote-tracking branch in *dst_refname, and the name
2531 * of the commit object at its tip in oid[].
2532 * If we cannot do so, return negative to signal an error.
2533 */
2534 static int remote_tracking(struct remote *remote, const char *refname,
2535 struct object_id *oid, char **dst_refname)
2536 {
2537 char *dst;
2538
2539 dst = apply_refspecs(&remote->fetch, refname);
2540 if (!dst)
2541 return -1; /* no tracking ref for refname at remote */
2542 if (read_ref(dst, oid))
2543 return -1; /* we know what the tracking ref is but we cannot read it */
2544
2545 *dst_refname = dst;
2546 return 0;
2547 }
2548
2549 /*
2550 * The struct "reflog_commit_array" and related helper functions
2551 * are used for collecting commits into an array during reflog
2552 * traversals in "check_and_collect_until()".
2553 */
2554 struct reflog_commit_array {
2555 struct commit **item;
2556 size_t nr, alloc;
2557 };
2558
2559 #define REFLOG_COMMIT_ARRAY_INIT { 0 }
2560
2561 /* Append a commit to the array. */
2562 static void append_commit(struct reflog_commit_array *arr,
2563 struct commit *commit)
2564 {
2565 ALLOC_GROW(arr->item, arr->nr + 1, arr->alloc);
2566 arr->item[arr->nr++] = commit;
2567 }
2568
2569 /* Free and reset the array. */
2570 static void free_commit_array(struct reflog_commit_array *arr)
2571 {
2572 FREE_AND_NULL(arr->item);
2573 arr->nr = arr->alloc = 0;
2574 }
2575
2576 struct check_and_collect_until_cb_data {
2577 struct commit *remote_commit;
2578 struct reflog_commit_array *local_commits;
2579 timestamp_t remote_reflog_timestamp;
2580 };
2581
2582 /* Get the timestamp of the latest entry. */
2583 static int peek_reflog(struct object_id *o_oid UNUSED,
2584 struct object_id *n_oid UNUSED,
2585 const char *ident UNUSED,
2586 timestamp_t timestamp, int tz UNUSED,
2587 const char *message UNUSED, void *cb_data)
2588 {
2589 timestamp_t *ts = cb_data;
2590 *ts = timestamp;
2591 return 1;
2592 }
2593
2594 static int check_and_collect_until(struct object_id *o_oid UNUSED,
2595 struct object_id *n_oid,
2596 const char *ident UNUSED,
2597 timestamp_t timestamp, int tz UNUSED,
2598 const char *message UNUSED, void *cb_data)
2599 {
2600 struct commit *commit;
2601 struct check_and_collect_until_cb_data *cb = cb_data;
2602
2603 /* An entry was found. */
2604 if (oideq(n_oid, &cb->remote_commit->object.oid))
2605 return 1;
2606
2607 if ((commit = lookup_commit_reference(the_repository, n_oid)))
2608 append_commit(cb->local_commits, commit);
2609
2610 /*
2611 * If the reflog entry timestamp is older than the remote ref's
2612 * latest reflog entry, there is no need to check or collect
2613 * entries older than this one.
2614 */
2615 if (timestamp < cb->remote_reflog_timestamp)
2616 return -1;
2617
2618 return 0;
2619 }
2620
2621 #define MERGE_BASES_BATCH_SIZE 8
2622
2623 /*
2624 * Iterate through the reflog of the local ref to check if there is an entry
2625 * for the given remote-tracking ref; runs until the timestamp of an entry is
2626 * older than latest timestamp of remote-tracking ref's reflog. Any commits
2627 * are that seen along the way are collected into an array to check if the
2628 * remote-tracking ref is reachable from any of them.
2629 */
2630 static int is_reachable_in_reflog(const char *local, const struct ref *remote)
2631 {
2632 timestamp_t date;
2633 struct commit *commit;
2634 struct commit **chunk;
2635 struct check_and_collect_until_cb_data cb;
2636 struct reflog_commit_array arr = REFLOG_COMMIT_ARRAY_INIT;
2637 size_t size = 0;
2638 int ret = 0;
2639
2640 commit = lookup_commit_reference(the_repository, &remote->old_oid);
2641 if (!commit)
2642 goto cleanup_return;
2643
2644 /*
2645 * Get the timestamp from the latest entry
2646 * of the remote-tracking ref's reflog.
2647 */
2648 for_each_reflog_ent_reverse(remote->tracking_ref, peek_reflog, &date);
2649
2650 cb.remote_commit = commit;
2651 cb.local_commits = &arr;
2652 cb.remote_reflog_timestamp = date;
2653 ret = for_each_reflog_ent_reverse(local, check_and_collect_until, &cb);
2654
2655 /* We found an entry in the reflog. */
2656 if (ret > 0)
2657 goto cleanup_return;
2658
2659 /*
2660 * Check if the remote commit is reachable from any
2661 * of the commits in the collected array, in batches.
2662 */
2663 for (chunk = arr.item; chunk < arr.item + arr.nr; chunk += size) {
2664 size = arr.item + arr.nr - chunk;
2665 if (MERGE_BASES_BATCH_SIZE < size)
2666 size = MERGE_BASES_BATCH_SIZE;
2667
2668 if ((ret = in_merge_bases_many(commit, size, chunk)))
2669 break;
2670 }
2671
2672 cleanup_return:
2673 free_commit_array(&arr);
2674 return ret;
2675 }
2676
2677 /*
2678 * Check for reachability of a remote-tracking
2679 * ref in the reflog entries of its local ref.
2680 */
2681 static void check_if_includes_upstream(struct ref *remote)
2682 {
2683 struct ref *local = get_local_ref(remote->name);
2684 if (!local)
2685 return;
2686
2687 if (is_reachable_in_reflog(local->name, remote) <= 0)
2688 remote->unreachable = 1;
2689 }
2690
2691 static void apply_cas(struct push_cas_option *cas,
2692 struct remote *remote,
2693 struct ref *ref)
2694 {
2695 int i;
2696
2697 /* Find an explicit --<option>=<name>[:<value>] entry */
2698 for (i = 0; i < cas->nr; i++) {
2699 struct push_cas *entry = &cas->entry[i];
2700 if (!refname_match(entry->refname, ref->name))
2701 continue;
2702 ref->expect_old_sha1 = 1;
2703 if (!entry->use_tracking)
2704 oidcpy(&ref->old_oid_expect, &entry->expect);
2705 else if (remote_tracking(remote, ref->name,
2706 &ref->old_oid_expect,
2707 &ref->tracking_ref))
2708 oidclr(&ref->old_oid_expect);
2709 else
2710 ref->check_reachable = cas->use_force_if_includes;
2711 return;
2712 }
2713
2714 /* Are we using "--<option>" to cover all? */
2715 if (!cas->use_tracking_for_rest)
2716 return;
2717
2718 ref->expect_old_sha1 = 1;
2719 if (remote_tracking(remote, ref->name,
2720 &ref->old_oid_expect,
2721 &ref->tracking_ref))
2722 oidclr(&ref->old_oid_expect);
2723 else
2724 ref->check_reachable = cas->use_force_if_includes;
2725 }
2726
2727 void apply_push_cas(struct push_cas_option *cas,
2728 struct remote *remote,
2729 struct ref *remote_refs)
2730 {
2731 struct ref *ref;
2732 for (ref = remote_refs; ref; ref = ref->next) {
2733 apply_cas(cas, remote, ref);
2734
2735 /*
2736 * If "compare-and-swap" is in "use_tracking[_for_rest]"
2737 * mode, and if "--force-if-includes" was specified, run
2738 * the check.
2739 */
2740 if (ref->check_reachable)
2741 check_if_includes_upstream(ref);
2742 }
2743 }
2744
2745 struct remote_state *remote_state_new(void)
2746 {
2747 struct remote_state *r = xmalloc(sizeof(*r));
2748
2749 memset(r, 0, sizeof(*r));
2750
2751 hashmap_init(&r->remotes_hash, remotes_hash_cmp, NULL, 0);
2752 hashmap_init(&r->branches_hash, branches_hash_cmp, NULL, 0);
2753 return r;
2754 }
2755
2756 void remote_state_clear(struct remote_state *remote_state)
2757 {
2758 int i;
2759
2760 for (i = 0; i < remote_state->remotes_nr; i++)
2761 remote_clear(remote_state->remotes[i]);
2762 FREE_AND_NULL(remote_state->remotes);
2763 remote_state->remotes_alloc = 0;
2764 remote_state->remotes_nr = 0;
2765
2766 hashmap_clear_and_free(&remote_state->remotes_hash, struct remote, ent);
2767 hashmap_clear_and_free(&remote_state->branches_hash, struct remote, ent);
2768 }
2769
2770 /*
2771 * Returns 1 if it was the last chop before ':'.
2772 */
2773 static int chop_last_dir(char **remoteurl, int is_relative)
2774 {
2775 char *rfind = find_last_dir_sep(*remoteurl);
2776 if (rfind) {
2777 *rfind = '\0';
2778 return 0;
2779 }
2780
2781 rfind = strrchr(*remoteurl, ':');
2782 if (rfind) {
2783 *rfind = '\0';
2784 return 1;
2785 }
2786
2787 if (is_relative || !strcmp(".", *remoteurl))
2788 die(_("cannot strip one component off url '%s'"),
2789 *remoteurl);
2790
2791 free(*remoteurl);
2792 *remoteurl = xstrdup(".");
2793 return 0;
2794 }
2795
2796 char *relative_url(const char *remote_url, const char *url,
2797 const char *up_path)
2798 {
2799 int is_relative = 0;
2800 int colonsep = 0;
2801 char *out;
2802 char *remoteurl;
2803 struct strbuf sb = STRBUF_INIT;
2804 size_t len;
2805
2806 if (!url_is_local_not_ssh(url) || is_absolute_path(url))
2807 return xstrdup(url);
2808
2809 len = strlen(remote_url);
2810 if (!len)
2811 BUG("invalid empty remote_url");
2812
2813 remoteurl = xstrdup(remote_url);
2814 if (is_dir_sep(remoteurl[len-1]))
2815 remoteurl[len-1] = '\0';
2816
2817 if (!url_is_local_not_ssh(remoteurl) || is_absolute_path(remoteurl))
2818 is_relative = 0;
2819 else {
2820 is_relative = 1;
2821 /*
2822 * Prepend a './' to ensure all relative
2823 * remoteurls start with './' or '../'
2824 */
2825 if (!starts_with_dot_slash_native(remoteurl) &&
2826 !starts_with_dot_dot_slash_native(remoteurl)) {
2827 strbuf_reset(&sb);
2828 strbuf_addf(&sb, "./%s", remoteurl);
2829 free(remoteurl);
2830 remoteurl = strbuf_detach(&sb, NULL);
2831 }
2832 }
2833 /*
2834 * When the url starts with '../', remove that and the
2835 * last directory in remoteurl.
2836 */
2837 while (*url) {
2838 if (starts_with_dot_dot_slash_native(url)) {
2839 url += 3;
2840 colonsep |= chop_last_dir(&remoteurl, is_relative);
2841 } else if (starts_with_dot_slash_native(url))
2842 url += 2;
2843 else
2844 break;
2845 }
2846 strbuf_reset(&sb);
2847 strbuf_addf(&sb, "%s%s%s", remoteurl, colonsep ? ":" : "/", url);
2848 if (ends_with(url, "/"))
2849 strbuf_setlen(&sb, sb.len - 1);
2850 free(remoteurl);
2851
2852 if (starts_with_dot_slash_native(sb.buf))
2853 out = xstrdup(sb.buf + 2);
2854 else
2855 out = xstrdup(sb.buf);
2856
2857 if (!up_path || !is_relative) {
2858 strbuf_release(&sb);
2859 return out;
2860 }
2861
2862 strbuf_reset(&sb);
2863 strbuf_addf(&sb, "%s%s", up_path, out);
2864 free(out);
2865 return strbuf_detach(&sb, NULL);
2866 }