]> git.ipfire.org Git - thirdparty/git.git/blame - remote.c
Merge branch 'ds/default-pack-use-sparse-to-true'
[thirdparty/git.git] / remote.c
CommitLineData
5751f490 1#include "cache.h"
b2141fc1 2#include "config.h"
5751f490
DB
3#include "remote.h"
4#include "refs.h"
ec0cb496 5#include "refspec.h"
cbd53a21 6#include "object-store.h"
6d21bf96
JH
7#include "commit.h"
8#include "diff.h"
9#include "revision.h"
8ca12c0d 10#include "dir.h"
ec8452d5 11#include "tag.h"
73cf0822 12#include "string-list.h"
ed81c76b 13#include "mergesort.h"
0b282cc4 14#include "argv-array.h"
64043556 15#include "commit-reach.h"
dd8dd300 16#include "advice.h"
5751f490 17
6ddba5e2
FC
18enum map_direction { FROM_SRC, FROM_DST };
19
844112ca
JH
20struct counted_string {
21 size_t len;
22 const char *s;
23};
55029ae4
DB
24struct rewrite {
25 const char *base;
844112ca
JH
26 size_t baselen;
27 struct counted_string *instead_of;
55029ae4
DB
28 int instead_of_nr;
29 int instead_of_alloc;
30};
d071d942
JT
31struct rewrites {
32 struct rewrite **rewrite;
33 int rewrite_alloc;
34 int rewrite_nr;
35};
55029ae4 36
5751f490 37static struct remote **remotes;
2d31347b
DB
38static int remotes_alloc;
39static int remotes_nr;
d0da003d 40static struct hashmap remotes_hash;
5751f490 41
cf818348 42static struct branch **branches;
2d31347b
DB
43static int branches_alloc;
44static int branches_nr;
cf818348
DB
45
46static struct branch *current_branch;
f24f715e 47static const char *pushremote_name;
cf818348 48
d071d942 49static struct rewrites rewrites;
1c2eafb8 50static struct rewrites rewrites_push;
55029ae4 51
0a4da29d
DB
52static int valid_remote(const struct remote *remote)
53{
c578f51d 54 return (!!remote->url) || (!!remote->foreign_vcs);
0a4da29d
DB
55}
56
d071d942 57static const char *alias_url(const char *url, struct rewrites *r)
55029ae4
DB
58{
59 int i, j;
844112ca
JH
60 struct counted_string *longest;
61 int longest_i;
62
63 longest = NULL;
64 longest_i = -1;
d071d942
JT
65 for (i = 0; i < r->rewrite_nr; i++) {
66 if (!r->rewrite[i])
55029ae4 67 continue;
d071d942 68 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
59556548 69 if (starts_with(url, r->rewrite[i]->instead_of[j].s) &&
844112ca 70 (!longest ||
d071d942
JT
71 longest->len < r->rewrite[i]->instead_of[j].len)) {
72 longest = &(r->rewrite[i]->instead_of[j]);
844112ca 73 longest_i = i;
55029ae4
DB
74 }
75 }
76 }
844112ca
JH
77 if (!longest)
78 return url;
79
75faa45a 80 return xstrfmt("%s%s", r->rewrite[longest_i]->base, url + longest->len);
55029ae4
DB
81}
82
28b91f8a 83static void add_url(struct remote *remote, const char *url)
5751f490 84{
2d31347b
DB
85 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
86 remote->url[remote->url_nr++] = url;
5751f490
DB
87}
88
20346234
MG
89static void add_pushurl(struct remote *remote, const char *pushurl)
90{
91 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
92 remote->pushurl[remote->pushurl_nr++] = pushurl;
93}
94
1c2eafb8
JT
95static void add_pushurl_alias(struct remote *remote, const char *url)
96{
97 const char *pushurl = alias_url(url, &rewrites_push);
98 if (pushurl != url)
99 add_pushurl(remote, pushurl);
100}
101
102static void add_url_alias(struct remote *remote, const char *url)
103{
104 add_url(remote, alias_url(url, &rewrites));
105 add_pushurl_alias(remote, url);
106}
107
d0da003d
PR
108struct remotes_hash_key {
109 const char *str;
110 int len;
111};
112
7663cdc8 113static int remotes_hash_cmp(const void *unused_cmp_data,
939af16e
EW
114 const struct hashmap_entry *eptr,
115 const struct hashmap_entry *entry_or_key,
45dcb35f 116 const void *keydata)
d0da003d 117{
939af16e 118 const struct remote *a, *b;
45dcb35f
SB
119 const struct remotes_hash_key *key = keydata;
120
939af16e
EW
121 a = container_of(eptr, const struct remote, ent);
122 b = container_of(entry_or_key, const struct remote, ent);
123
d0da003d
PR
124 if (key)
125 return strncmp(a->name, key->str, key->len) || a->name[key->len];
126 else
127 return strcmp(a->name, b->name);
128}
129
130static inline void init_remotes_hash(void)
131{
132 if (!remotes_hash.cmpfn)
45dcb35f 133 hashmap_init(&remotes_hash, remotes_hash_cmp, NULL, 0);
d0da003d
PR
134}
135
5751f490
DB
136static struct remote *make_remote(const char *name, int len)
137{
d0da003d
PR
138 struct remote *ret, *replaced;
139 struct remotes_hash_key lookup;
f23a4651 140 struct hashmap_entry lookup_entry, *e;
5751f490 141
d0da003d
PR
142 if (!len)
143 len = strlen(name);
144
145 init_remotes_hash();
146 lookup.str = name;
147 lookup.len = len;
148 hashmap_entry_init(&lookup_entry, memhash(name, len));
149
f23a4651
EW
150 e = hashmap_get(&remotes_hash, &lookup_entry, &lookup);
151 if (e)
152 return container_of(e, struct remote, ent);
5751f490 153
2d31347b 154 ret = xcalloc(1, sizeof(struct remote));
737c5a9c 155 ret->prune = -1; /* unspecified */
97716d21 156 ret->prune_tags = -1; /* unspecified */
6bdb304b
BW
157 ret->name = xstrndup(name, len);
158 refspec_init(&ret->push, REFSPEC_PUSH);
e5349abf 159 refspec_init(&ret->fetch, REFSPEC_FETCH);
6bdb304b 160
2d31347b
DB
161 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
162 remotes[remotes_nr++] = ret;
d0da003d 163
d22245a2 164 hashmap_entry_init(&ret->ent, lookup_entry.hash);
404ab78e 165 replaced = hashmap_put_entry(&remotes_hash, ret, ent);
d0da003d 166 assert(replaced == NULL); /* no previous entry overwritten */
2d31347b 167 return ret;
5751f490
DB
168}
169
cf818348
DB
170static void add_merge(struct branch *branch, const char *name)
171{
2d31347b
DB
172 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
173 branch->merge_alloc);
174 branch->merge_name[branch->merge_nr++] = name;
cf818348
DB
175}
176
177static struct branch *make_branch(const char *name, int len)
178{
2d31347b
DB
179 struct branch *ret;
180 int i;
cf818348 181
2d31347b
DB
182 for (i = 0; i < branches_nr; i++) {
183 if (len ? (!strncmp(name, branches[i]->name, len) &&
184 !branches[i]->name[len]) :
185 !strcmp(name, branches[i]->name))
186 return branches[i];
cf818348
DB
187 }
188
2d31347b
DB
189 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
190 ret = xcalloc(1, sizeof(struct branch));
191 branches[branches_nr++] = ret;
cf818348 192 if (len)
2d31347b 193 ret->name = xstrndup(name, len);
cf818348 194 else
2d31347b 195 ret->name = xstrdup(name);
fa3f60b7 196 ret->refname = xstrfmt("refs/heads/%s", ret->name);
cf818348 197
2d31347b 198 return ret;
cf818348
DB
199}
200
d071d942 201static struct rewrite *make_rewrite(struct rewrites *r, const char *base, int len)
55029ae4
DB
202{
203 struct rewrite *ret;
204 int i;
205
d071d942 206 for (i = 0; i < r->rewrite_nr; i++) {
844112ca 207 if (len
d071d942
JT
208 ? (len == r->rewrite[i]->baselen &&
209 !strncmp(base, r->rewrite[i]->base, len))
210 : !strcmp(base, r->rewrite[i]->base))
211 return r->rewrite[i];
55029ae4
DB
212 }
213
d071d942 214 ALLOC_GROW(r->rewrite, r->rewrite_nr + 1, r->rewrite_alloc);
55029ae4 215 ret = xcalloc(1, sizeof(struct rewrite));
d071d942 216 r->rewrite[r->rewrite_nr++] = ret;
844112ca 217 if (len) {
55029ae4 218 ret->base = xstrndup(base, len);
844112ca
JH
219 ret->baselen = len;
220 }
221 else {
55029ae4 222 ret->base = xstrdup(base);
844112ca
JH
223 ret->baselen = strlen(base);
224 }
55029ae4
DB
225 return ret;
226}
227
228static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
229{
230 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
844112ca
JH
231 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
232 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
233 rewrite->instead_of_nr++;
55029ae4
DB
234}
235
0e265a92
JK
236static const char *skip_spaces(const char *s)
237{
238 while (isspace(*s))
239 s++;
240 return s;
241}
242
5751f490
DB
243static void read_remotes_file(struct remote *remote)
244{
0e265a92 245 struct strbuf buf = STRBUF_INIT;
e9d983f1 246 FILE *f = fopen_or_warn(git_path("remotes/%s", remote->name), "r");
5751f490
DB
247
248 if (!f)
249 return;
e459b073 250 remote->configured_in_repo = 1;
89cf4c70 251 remote->origin = REMOTE_REMOTES;
18814d0e 252 while (strbuf_getline(&buf, f) != EOF) {
0e265a92 253 const char *v;
5751f490 254
0e265a92 255 strbuf_rtrim(&buf);
5751f490 256
0e265a92
JK
257 if (skip_prefix(buf.buf, "URL:", &v))
258 add_url_alias(remote, xstrdup(skip_spaces(v)));
259 else if (skip_prefix(buf.buf, "Push:", &v))
6bdb304b 260 refspec_append(&remote->push, skip_spaces(v));
0e265a92 261 else if (skip_prefix(buf.buf, "Pull:", &v))
e5349abf 262 refspec_append(&remote->fetch, skip_spaces(v));
5751f490 263 }
0e265a92 264 strbuf_release(&buf);
5751f490
DB
265 fclose(f);
266}
267
268static void read_branches_file(struct remote *remote)
269{
cf818348 270 char *frag;
f28e3ab2 271 struct strbuf buf = STRBUF_INIT;
e9d983f1 272 FILE *f = fopen_or_warn(git_path("branches/%s", remote->name), "r");
5751f490
DB
273
274 if (!f)
275 return;
f28e3ab2 276
8f309aeb 277 strbuf_getline_lf(&buf, f);
0fb19906 278 fclose(f);
f28e3ab2
JK
279 strbuf_trim(&buf);
280 if (!buf.len) {
281 strbuf_release(&buf);
5751f490 282 return;
f28e3ab2
JK
283 }
284
e459b073 285 remote->configured_in_repo = 1;
89cf4c70 286 remote->origin = REMOTE_BRANCHES;
472fa4cd
DB
287
288 /*
55cfde25 289 * The branches file would have URL and optionally
472fa4cd 290 * #branch specified. The "master" (or specified) branch is
f28e3ab2
JK
291 * fetched and stored in the local branch matching the
292 * remote name.
472fa4cd 293 */
f28e3ab2
JK
294 frag = strchr(buf.buf, '#');
295 if (frag)
cf818348 296 *(frag++) = '\0';
f28e3ab2
JK
297 else
298 frag = "master";
299
300 add_url_alias(remote, strbuf_detach(&buf, NULL));
e5349abf
BW
301 strbuf_addf(&buf, "refs/heads/%s:refs/heads/%s",
302 frag, remote->name);
303 refspec_append(&remote->fetch, buf.buf);
55cfde25 304
18afe101
MK
305 /*
306 * Cogito compatible push: push current HEAD to remote #branch
307 * (master if missing)
308 */
e5349abf 309 strbuf_reset(&buf);
6bdb304b
BW
310 strbuf_addf(&buf, "HEAD:refs/heads/%s", frag);
311 refspec_append(&remote->push, buf.buf);
d71ab174 312 remote->fetch_tags = 1; /* always auto-follow */
6bdb304b 313 strbuf_release(&buf);
5751f490
DB
314}
315
ef90d6d4 316static int handle_config(const char *key, const char *value, void *cb)
5751f490
DB
317{
318 const char *name;
bc60f8a7 319 int namelen;
5751f490
DB
320 const char *subkey;
321 struct remote *remote;
cf818348 322 struct branch *branch;
bc60f8a7
TG
323 if (parse_config_key(key, "branch", &name, &namelen, &subkey) >= 0) {
324 if (!name)
cf818348 325 return 0;
bc60f8a7
TG
326 branch = make_branch(name, namelen);
327 if (!strcmp(subkey, "remote")) {
e41bf352 328 return git_config_string(&branch->remote_name, key, value);
bc60f8a7 329 } else if (!strcmp(subkey, "pushremote")) {
da66b274 330 return git_config_string(&branch->pushremote_name, key, value);
bc60f8a7 331 } else if (!strcmp(subkey, "merge")) {
d2370cc2
JH
332 if (!value)
333 return config_error_nonbool(key);
cf818348 334 add_merge(branch, xstrdup(value));
d2370cc2 335 }
cf818348 336 return 0;
5751f490 337 }
bc60f8a7 338 if (parse_config_key(key, "url", &name, &namelen, &subkey) >= 0) {
55029ae4 339 struct rewrite *rewrite;
bc60f8a7 340 if (!name)
55029ae4 341 return 0;
bc60f8a7 342 if (!strcmp(subkey, "insteadof")) {
1c2eafb8
JT
343 if (!value)
344 return config_error_nonbool(key);
54e8c112 345 rewrite = make_rewrite(&rewrites, name, namelen);
1c2eafb8 346 add_instead_of(rewrite, xstrdup(value));
bc60f8a7 347 } else if (!strcmp(subkey, "pushinsteadof")) {
55029ae4
DB
348 if (!value)
349 return config_error_nonbool(key);
54e8c112 350 rewrite = make_rewrite(&rewrites_push, name, namelen);
55029ae4
DB
351 add_instead_of(rewrite, xstrdup(value));
352 }
353 }
224c2171 354
bc60f8a7 355 if (parse_config_key(key, "remote", &name, &namelen, &subkey) < 0)
5751f490 356 return 0;
224c2171
RR
357
358 /* Handle remote.* variables */
bc60f8a7 359 if (!name && !strcmp(subkey, "pushdefault"))
224c2171
RR
360 return git_config_string(&pushremote_name, key, value);
361
bc60f8a7
TG
362 if (!name)
363 return 0;
224c2171 364 /* Handle remote.<name>.* variables */
c82efafc 365 if (*name == '/') {
0b9c3afd 366 warning(_("config remote shorthand cannot begin with '/': %s"),
c82efafc
BC
367 name);
368 return 0;
369 }
bc60f8a7 370 remote = make_remote(name, namelen);
89cf4c70 371 remote->origin = REMOTE_CONFIG;
6dc905d9
MR
372 if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
373 current_config_scope() == CONFIG_SCOPE_WORKTREE)
e459b073 374 remote->configured_in_repo = 1;
bc60f8a7 375 if (!strcmp(subkey, "mirror"))
84bb2dfd 376 remote->mirror = git_config_bool(key, value);
bc60f8a7 377 else if (!strcmp(subkey, "skipdefaultupdate"))
84bb2dfd 378 remote->skip_default_update = git_config_bool(key, value);
bc60f8a7 379 else if (!strcmp(subkey, "skipfetchall"))
7cc91a2f 380 remote->skip_default_update = git_config_bool(key, value);
bc60f8a7 381 else if (!strcmp(subkey, "prune"))
737c5a9c 382 remote->prune = git_config_bool(key, value);
97716d21
ÆAB
383 else if (!strcmp(subkey, "prunetags"))
384 remote->prune_tags = git_config_bool(key, value);
bc60f8a7 385 else if (!strcmp(subkey, "url")) {
84bb2dfd
PB
386 const char *v;
387 if (git_config_string(&v, key, value))
388 return -1;
389 add_url(remote, v);
bc60f8a7 390 } else if (!strcmp(subkey, "pushurl")) {
20346234
MG
391 const char *v;
392 if (git_config_string(&v, key, value))
393 return -1;
394 add_pushurl(remote, v);
bc60f8a7 395 } else if (!strcmp(subkey, "push")) {
84bb2dfd
PB
396 const char *v;
397 if (git_config_string(&v, key, value))
398 return -1;
6bdb304b
BW
399 refspec_append(&remote->push, v);
400 free((char *)v);
bc60f8a7 401 } else if (!strcmp(subkey, "fetch")) {
84bb2dfd
PB
402 const char *v;
403 if (git_config_string(&v, key, value))
404 return -1;
e5349abf
BW
405 refspec_append(&remote->fetch, v);
406 free((char *)v);
bc60f8a7 407 } else if (!strcmp(subkey, "receivepack")) {
84bb2dfd
PB
408 const char *v;
409 if (git_config_string(&v, key, value))
410 return -1;
5751f490 411 if (!remote->receivepack)
84bb2dfd 412 remote->receivepack = v;
5751f490 413 else
0b9c3afd 414 error(_("more than one receivepack given, using the first"));
bc60f8a7 415 } else if (!strcmp(subkey, "uploadpack")) {
84bb2dfd
PB
416 const char *v;
417 if (git_config_string(&v, key, value))
418 return -1;
0012ba21 419 if (!remote->uploadpack)
84bb2dfd 420 remote->uploadpack = v;
0012ba21 421 else
0b9c3afd 422 error(_("more than one uploadpack given, using the first"));
bc60f8a7 423 } else if (!strcmp(subkey, "tagopt")) {
d71ab174
DB
424 if (!strcmp(value, "--no-tags"))
425 remote->fetch_tags = -1;
944163a4
ST
426 else if (!strcmp(value, "--tags"))
427 remote->fetch_tags = 2;
bc60f8a7 428 } else if (!strcmp(subkey, "proxy")) {
84bb2dfd
PB
429 return git_config_string((const char **)&remote->http_proxy,
430 key, value);
bc60f8a7 431 } else if (!strcmp(subkey, "proxyauthmethod")) {
ef976395
KF
432 return git_config_string((const char **)&remote->http_proxy_authmethod,
433 key, value);
bc60f8a7 434 } else if (!strcmp(subkey, "vcs")) {
c578f51d 435 return git_config_string(&remote->foreign_vcs, key, value);
84bb2dfd 436 }
5751f490
DB
437 return 0;
438}
439
55029ae4
DB
440static void alias_all_urls(void)
441{
442 int i, j;
443 for (i = 0; i < remotes_nr; i++) {
1c2eafb8 444 int add_pushurl_aliases;
55029ae4
DB
445 if (!remotes[i])
446 continue;
20346234 447 for (j = 0; j < remotes[i]->pushurl_nr; j++) {
d071d942 448 remotes[i]->pushurl[j] = alias_url(remotes[i]->pushurl[j], &rewrites);
20346234 449 }
1c2eafb8
JT
450 add_pushurl_aliases = remotes[i]->pushurl_nr == 0;
451 for (j = 0; j < remotes[i]->url_nr; j++) {
452 if (add_pushurl_aliases)
453 add_pushurl_alias(remotes[i], remotes[i]->url[j]);
454 remotes[i]->url[j] = alias_url(remotes[i]->url[j], &rewrites);
455 }
55029ae4
DB
456 }
457}
458
5751f490
DB
459static void read_config(void)
460{
e41bf352 461 static int loaded;
5751f490 462 int flag;
e41bf352
JK
463
464 if (loaded)
5751f490 465 return;
e41bf352
JK
466 loaded = 1;
467
5751f490 468 current_branch = NULL;
f2f12d16 469 if (startup_info->have_repository) {
744c040b 470 const char *head_ref = resolve_ref_unsafe("HEAD", 0, NULL, &flag);
f2f12d16
JK
471 if (head_ref && (flag & REF_ISSYMREF) &&
472 skip_prefix(head_ref, "refs/heads/", &head_ref)) {
473 current_branch = make_branch(head_ref, 0);
474 }
5751f490 475 }
ef90d6d4 476 git_config(handle_config, NULL);
55029ae4 477 alias_all_urls();
5751f490
DB
478}
479
df93e33c
DB
480static int valid_remote_nick(const char *name)
481{
8ca12c0d 482 if (!name[0] || is_dot_or_dotdot(name))
df93e33c 483 return 0;
d9244ecf
JS
484
485 /* remote nicknames cannot contain slashes */
486 while (*name)
487 if (is_dir_sep(*name++))
488 return 0;
489 return 1;
df93e33c
DB
490}
491
f052154d
JK
492const char *remote_for_branch(struct branch *branch, int *explicit)
493{
494 if (branch && branch->remote_name) {
495 if (explicit)
496 *explicit = 1;
497 return branch->remote_name;
498 }
499 if (explicit)
500 *explicit = 0;
501 return "origin";
502}
503
da66b274
JK
504const char *pushremote_for_branch(struct branch *branch, int *explicit)
505{
506 if (branch && branch->pushremote_name) {
507 if (explicit)
508 *explicit = 1;
509 return branch->pushremote_name;
510 }
511 if (pushremote_name) {
512 if (explicit)
513 *explicit = 1;
514 return pushremote_name;
515 }
516 return remote_for_branch(branch, explicit);
517}
518
af8ccd8a 519const char *remote_ref_for_branch(struct branch *branch, int for_push)
9700fae5
W
520{
521 if (branch) {
522 if (!for_push) {
523 if (branch->merge_nr) {
9700fae5
W
524 return branch->merge_name[0];
525 }
526 } else {
527 const char *dst, *remote_name =
528 pushremote_for_branch(branch, NULL);
529 struct remote *remote = remote_get(remote_name);
530
6bdb304b 531 if (remote && remote->push.nr &&
d000414e 532 (dst = apply_refspecs(&remote->push,
9700fae5 533 branch->refname))) {
9700fae5
W
534 return dst;
535 }
536 }
537 }
af8ccd8a 538 return NULL;
9700fae5
W
539}
540
da66b274
JK
541static struct remote *remote_get_1(const char *name,
542 const char *(*get_default)(struct branch *, int *))
5751f490
DB
543{
544 struct remote *ret;
fa685bdf 545 int name_given = 0;
5751f490 546
8770e6fb
JK
547 read_config();
548
fa685bdf
DB
549 if (name)
550 name_given = 1;
da66b274
JK
551 else
552 name = get_default(current_branch, &name_given);
9326d494 553
5751f490 554 ret = make_remote(name, 0);
4539c218 555 if (valid_remote_nick(name) && have_git_dir()) {
0a4da29d 556 if (!valid_remote(ret))
5751f490 557 read_remotes_file(ret);
0a4da29d 558 if (!valid_remote(ret))
5751f490
DB
559 read_branches_file(ret);
560 }
0a4da29d 561 if (name_given && !valid_remote(ret))
55029ae4 562 add_url_alias(ret, name);
0a4da29d 563 if (!valid_remote(ret))
5751f490
DB
564 return NULL;
565 return ret;
566}
6b62816c 567
f24f715e
RR
568struct remote *remote_get(const char *name)
569{
da66b274 570 return remote_get_1(name, remote_for_branch);
f24f715e
RR
571}
572
573struct remote *pushremote_get(const char *name)
574{
da66b274 575 return remote_get_1(name, pushremote_for_branch);
f24f715e
RR
576}
577
e459b073 578int remote_is_configured(struct remote *remote, int in_repo)
9a23ba33 579{
e459b073
JS
580 if (!remote)
581 return 0;
582 if (in_repo)
583 return remote->configured_in_repo;
584 return !!remote->origin;
9a23ba33
FAG
585}
586
b42f6927
JS
587int for_each_remote(each_remote_fn fn, void *priv)
588{
589 int i, result = 0;
590 read_config();
2d31347b 591 for (i = 0; i < remotes_nr && !result; i++) {
b42f6927
JS
592 struct remote *r = remotes[i];
593 if (!r)
594 continue;
b42f6927
JS
595 result = fn(r, priv);
596 }
597 return result;
598}
599
df02ebda
MH
600static void handle_duplicate(struct ref *ref1, struct ref *ref2)
601{
f096e6e8
MH
602 if (strcmp(ref1->name, ref2->name)) {
603 if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
604 ref2->fetch_head_status != FETCH_HEAD_IGNORE) {
605 die(_("Cannot fetch both %s and %s to %s"),
606 ref1->name, ref2->name, ref2->peer_ref->name);
607 } else if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
608 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
609 warning(_("%s usually tracks %s, not %s"),
610 ref2->peer_ref->name, ref2->name, ref1->name);
611 } else if (ref1->fetch_head_status == FETCH_HEAD_IGNORE &&
612 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
613 die(_("%s tracks both %s and %s"),
614 ref2->peer_ref->name, ref1->name, ref2->name);
615 } else {
616 /*
617 * This last possibility doesn't occur because
618 * FETCH_HEAD_IGNORE entries always appear at
619 * the end of the list.
620 */
92ca8680 621 BUG("Internal error");
f096e6e8
MH
622 }
623 }
df02ebda
MH
624 free(ref2->peer_ref);
625 free(ref2);
626}
627
b9afe665 628struct ref *ref_remove_duplicates(struct ref *ref_map)
2467a4fa 629{
183113a5 630 struct string_list refs = STRING_LIST_INIT_NODUP;
b9afe665
MH
631 struct ref *retval = NULL;
632 struct ref **p = &retval;
73cf0822 633
b9afe665
MH
634 while (ref_map) {
635 struct ref *ref = ref_map;
636
637 ref_map = ref_map->next;
638 ref->next = NULL;
73cf0822 639
b9afe665
MH
640 if (!ref->peer_ref) {
641 *p = ref;
642 p = &ref->next;
09ea1f8e 643 } else {
b9afe665
MH
644 struct string_list_item *item =
645 string_list_insert(&refs, ref->peer_ref->name);
646
647 if (item->util) {
648 /* Entry already existed */
df02ebda 649 handle_duplicate((struct ref *)item->util, ref);
b9afe665
MH
650 } else {
651 *p = ref;
652 p = &ref->next;
653 item->util = ref;
654 }
2467a4fa
DB
655 }
656 }
b9afe665 657
73cf0822 658 string_list_clear(&refs, 0);
b9afe665 659 return retval;
2467a4fa
DB
660}
661
28b91f8a 662int remote_has_url(struct remote *remote, const char *url)
5d46c9d4
DB
663{
664 int i;
28b91f8a
SP
665 for (i = 0; i < remote->url_nr; i++) {
666 if (!strcmp(remote->url[i], url))
5d46c9d4
DB
667 return 1;
668 }
669 return 0;
670}
671
e928213f
DB
672static int match_name_with_pattern(const char *key, const char *name,
673 const char *value, char **result)
a3c84239 674{
08fbdb30
DB
675 const char *kstar = strchr(key, '*');
676 size_t klen;
abd2bde7
DB
677 size_t ksuffixlen;
678 size_t namelen;
08fbdb30
DB
679 int ret;
680 if (!kstar)
0b9c3afd 681 die(_("key '%s' of pattern had no '*'"), key);
08fbdb30 682 klen = kstar - key;
abd2bde7
DB
683 ksuffixlen = strlen(kstar + 1);
684 namelen = strlen(name);
685 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
686 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
e928213f 687 if (ret && value) {
07bfa575 688 struct strbuf sb = STRBUF_INIT;
08fbdb30 689 const char *vstar = strchr(value, '*');
08fbdb30 690 if (!vstar)
0b9c3afd 691 die(_("value '%s' of pattern has no '*'"), value);
07bfa575
RS
692 strbuf_add(&sb, value, vstar - value);
693 strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen);
694 strbuf_addstr(&sb, vstar + 1);
695 *result = strbuf_detach(&sb, NULL);
e928213f 696 }
a3c84239
DB
697 return ret;
698}
699
a2ac50cb
BW
700static void query_refspecs_multiple(struct refspec *rs,
701 struct refspec_item *query,
702 struct string_list *results)
e6f63712
CMN
703{
704 int i;
705 int find_src = !query->src;
706
707 if (find_src && !query->dst)
92ca8680 708 BUG("query_refspecs_multiple: need either src or dst");
e6f63712 709
a2ac50cb
BW
710 for (i = 0; i < rs->nr; i++) {
711 struct refspec_item *refspec = &rs->items[i];
e6f63712
CMN
712 const char *key = find_src ? refspec->dst : refspec->src;
713 const char *value = find_src ? refspec->src : refspec->dst;
714 const char *needle = find_src ? query->dst : query->src;
715 char **result = find_src ? &query->src : &query->dst;
716
717 if (!refspec->dst)
718 continue;
719 if (refspec->pattern) {
720 if (match_name_with_pattern(key, needle, value, result))
721 string_list_append_nodup(results, *result);
722 } else if (!strcmp(needle, key)) {
723 string_list_append(results, value);
724 }
725 }
726}
727
86baf825 728int query_refspecs(struct refspec *rs, struct refspec_item *query)
72ff8943
DB
729{
730 int i;
c500352e 731 int find_src = !query->src;
049bff8f
MH
732 const char *needle = find_src ? query->dst : query->src;
733 char **result = find_src ? &query->src : &query->dst;
72ff8943 734
c500352e 735 if (find_src && !query->dst)
92ca8680 736 BUG("query_refspecs: need either src or dst");
b42f6927 737
86baf825
BW
738 for (i = 0; i < rs->nr; i++) {
739 struct refspec_item *refspec = &rs->items[i];
c500352e
CMN
740 const char *key = find_src ? refspec->dst : refspec->src;
741 const char *value = find_src ? refspec->src : refspec->dst;
b42f6927 742
c500352e 743 if (!refspec->dst)
5d46c9d4 744 continue;
c500352e 745 if (refspec->pattern) {
e928213f 746 if (match_name_with_pattern(key, needle, value, result)) {
c500352e 747 query->force = refspec->force;
5d46c9d4
DB
748 return 0;
749 }
b42f6927
JS
750 } else if (!strcmp(needle, key)) {
751 *result = xstrdup(value);
c500352e 752 query->force = refspec->force;
b42f6927 753 return 0;
5d46c9d4
DB
754 }
755 }
5d46c9d4
DB
756 return -1;
757}
758
d000414e 759char *apply_refspecs(struct refspec *rs, const char *name)
c500352e 760{
0ad4a5ff 761 struct refspec_item query;
c500352e 762
0ad4a5ff 763 memset(&query, 0, sizeof(struct refspec_item));
c500352e
CMN
764 query.src = (char *)name;
765
86baf825 766 if (query_refspecs(rs, &query))
c500352e
CMN
767 return NULL;
768
769 return query.dst;
770}
771
0ad4a5ff 772int remote_find_tracking(struct remote *remote, struct refspec_item *refspec)
c500352e 773{
86baf825 774 return query_refspecs(&remote->fetch, refspec);
c500352e
CMN
775}
776
8009768e
RS
777static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
778 const char *name)
779{
780 size_t len = strlen(name);
50a6c8ef 781 struct ref *ref = xcalloc(1, st_add4(sizeof(*ref), prefixlen, len, 1));
8009768e
RS
782 memcpy(ref->name, prefix, prefixlen);
783 memcpy(ref->name + prefixlen, name, len);
784 return ref;
785}
786
59c69c0c 787struct ref *alloc_ref(const char *name)
dfd255dd 788{
59c69c0c 789 return alloc_ref_with_prefix("", 0, name);
737922aa
KK
790}
791
59a57757 792struct ref *copy_ref(const struct ref *ref)
d71ab174 793{
7b3db095
JS
794 struct ref *cpy;
795 size_t len;
796 if (!ref)
797 return NULL;
50a6c8ef
JK
798 len = st_add3(sizeof(struct ref), strlen(ref->name), 1);
799 cpy = xmalloc(len);
800 memcpy(cpy, ref, len);
7b3db095 801 cpy->next = NULL;
8c53f071
JK
802 cpy->symref = xstrdup_or_null(ref->symref);
803 cpy->remote_status = xstrdup_or_null(ref->remote_status);
7b3db095
JS
804 cpy->peer_ref = copy_ref(ref->peer_ref);
805 return cpy;
d71ab174
DB
806}
807
4577370e
DB
808struct ref *copy_ref_list(const struct ref *ref)
809{
810 struct ref *ret = NULL;
811 struct ref **tail = &ret;
812 while (ref) {
813 *tail = copy_ref(ref);
814 ref = ref->next;
815 tail = &((*tail)->next);
816 }
817 return ret;
818}
819
1027186f 820void free_one_ref(struct ref *ref)
be885d96
DB
821{
822 if (!ref)
823 return;
1027186f 824 free_one_ref(ref->peer_ref);
be885d96
DB
825 free(ref->remote_status);
826 free(ref->symref);
827 free(ref);
828}
829
dfd255dd
DB
830void free_refs(struct ref *ref)
831{
832 struct ref *next;
833 while (ref) {
834 next = ref->next;
1027186f 835 free_one_ref(ref);
dfd255dd
DB
836 ref = next;
837 }
838}
839
ed81c76b
JK
840int ref_compare_name(const void *va, const void *vb)
841{
842 const struct ref *a = va, *b = vb;
843 return strcmp(a->name, b->name);
844}
845
846static void *ref_list_get_next(const void *a)
847{
848 return ((const struct ref *)a)->next;
849}
850
851static void ref_list_set_next(void *a, void *next)
852{
853 ((struct ref *)a)->next = next;
854}
855
856void sort_ref_list(struct ref **l, int (*cmp)(const void *, const void *))
857{
858 *l = llist_mergesort(*l, ref_list_get_next, ref_list_set_next, cmp);
859}
860
ca02465b
JH
861int count_refspec_match(const char *pattern,
862 struct ref *refs,
863 struct ref **matched_ref)
6b62816c
DB
864{
865 int patlen = strlen(pattern);
866 struct ref *matched_weak = NULL;
867 struct ref *matched = NULL;
868 int weak_match = 0;
869 int match = 0;
870
871 for (weak_match = match = 0; refs; refs = refs->next) {
872 char *name = refs->name;
873 int namelen = strlen(name);
6b62816c 874
54457fe5 875 if (!refname_match(pattern, name))
6b62816c
DB
876 continue;
877
878 /* A match is "weak" if it is with refs outside
879 * heads or tags, and did not specify the pattern
880 * in full (e.g. "refs/remotes/origin/master") or at
881 * least from the toplevel (e.g. "remotes/origin/master");
882 * otherwise "git push $URL master" would result in
883 * ambiguity between remotes/origin/master and heads/master
884 * at the remote site.
885 */
886 if (namelen != patlen &&
887 patlen != namelen - 5 &&
59556548
CC
888 !starts_with(name, "refs/heads/") &&
889 !starts_with(name, "refs/tags/")) {
6b62816c
DB
890 /* We want to catch the case where only weak
891 * matches are found and there are multiple
892 * matches, and where more than one strong
893 * matches are found, as ambiguous. One
894 * strong match with zero or more weak matches
895 * are acceptable as a unique match.
896 */
897 matched_weak = refs;
898 weak_match++;
899 }
900 else {
901 matched = refs;
902 match++;
903 }
904 }
905 if (!matched) {
471fd3fe
JK
906 if (matched_ref)
907 *matched_ref = matched_weak;
6b62816c
DB
908 return weak_match;
909 }
910 else {
471fd3fe
JK
911 if (matched_ref)
912 *matched_ref = matched;
6b62816c
DB
913 return match;
914 }
915}
916
1d735267 917static void tail_link_ref(struct ref *ref, struct ref ***tail)
6b62816c
DB
918{
919 **tail = ref;
1d735267
DB
920 while (ref->next)
921 ref = ref->next;
6b62816c 922 *tail = &ref->next;
6b62816c
DB
923}
924
67655246
FC
925static struct ref *alloc_delete_ref(void)
926{
927 struct ref *ref = alloc_ref("(delete)");
f4e54d02 928 oidclr(&ref->new_oid);
67655246
FC
929 return ref;
930}
931
471fd3fe
JK
932static int try_explicit_object_name(const char *name,
933 struct ref **match)
6b62816c 934{
fcd30b13 935 struct object_id oid;
6b62816c 936
471fd3fe
JK
937 if (!*name) {
938 if (match)
939 *match = alloc_delete_ref();
940 return 0;
941 }
942
e82caf38 943 if (get_oid(name, &oid))
471fd3fe
JK
944 return -1;
945
946 if (match) {
947 *match = alloc_ref(name);
fcd30b13 948 oidcpy(&(*match)->new_oid, &oid);
471fd3fe
JK
949 }
950 return 0;
6b62816c
DB
951}
952
1d735267 953static struct ref *make_linked_ref(const char *name, struct ref ***tail)
6b62816c 954{
59c69c0c 955 struct ref *ret = alloc_ref(name);
1d735267
DB
956 tail_link_ref(ret, tail);
957 return ret;
163f0ee5 958}
8558fd9e 959
f8aae120
JK
960static char *guess_ref(const char *name, struct ref *peer)
961{
962 struct strbuf buf = STRBUF_INIT;
f8aae120 963
7695d118 964 const char *r = resolve_ref_unsafe(peer->name, RESOLVE_REF_READING,
744c040b 965 NULL, NULL);
f8aae120
JK
966 if (!r)
967 return NULL;
968
cab53989 969 if (starts_with(r, "refs/heads/")) {
f8aae120 970 strbuf_addstr(&buf, "refs/heads/");
cab53989 971 } else if (starts_with(r, "refs/tags/")) {
f8aae120 972 strbuf_addstr(&buf, "refs/tags/");
cab53989 973 } else {
f8aae120 974 return NULL;
cab53989 975 }
f8aae120
JK
976
977 strbuf_addstr(&buf, name);
978 return strbuf_detach(&buf, NULL);
979}
980
f7ade3d3 981static int match_explicit_lhs(struct ref *src,
0ad4a5ff 982 struct refspec_item *rs,
f7ade3d3
JK
983 struct ref **match,
984 int *allocated_match)
985{
986 switch (count_refspec_match(rs->src, src, match)) {
987 case 1:
471fd3fe
JK
988 if (allocated_match)
989 *allocated_match = 0;
f7ade3d3
JK
990 return 0;
991 case 0:
992 /* The source could be in the get_sha1() format
993 * not a reference name. :refs/other is a
994 * way to delete 'other' ref at the remote end.
995 */
471fd3fe 996 if (try_explicit_object_name(rs->src, match) < 0)
0b9c3afd 997 return error(_("src refspec %s does not match any"), rs->src);
471fd3fe
JK
998 if (allocated_match)
999 *allocated_match = 1;
f7ade3d3
JK
1000 return 0;
1001 default:
0b9c3afd 1002 return error(_("src refspec %s matches more than one"), rs->src);
f7ade3d3
JK
1003 }
1004}
1005
04d17287
ÆAB
1006static void show_push_unqualified_ref_name_error(const char *dst_value,
1007 const char *matched_src_name)
1008{
dd8dd300
ÆAB
1009 struct object_id oid;
1010 enum object_type type;
1011
04d17287
ÆAB
1012 /*
1013 * TRANSLATORS: "matches '%s'%" is the <dst> part of "git push
1014 * <remote> <src>:<dst>" push, and "being pushed ('%s')" is
1015 * the <src>.
1016 */
1017 error(_("The destination you provided is not a full refname (i.e.,\n"
1018 "starting with \"refs/\"). We tried to guess what you meant by:\n"
1019 "\n"
1020 "- Looking for a ref that matches '%s' on the remote side.\n"
1021 "- Checking if the <src> being pushed ('%s')\n"
1022 " is a ref in \"refs/{heads,tags}/\". If so we add a corresponding\n"
1023 " refs/{heads,tags}/ prefix on the remote side.\n"
1024 "\n"
1025 "Neither worked, so we gave up. You must fully qualify the ref."),
1026 dst_value, matched_src_name);
dd8dd300
ÆAB
1027
1028 if (!advice_push_unqualified_ref_name)
1029 return;
1030
1031 if (get_oid(matched_src_name, &oid))
1032 BUG("'%s' is not a valid object, "
1033 "match_explicit_lhs() should catch this!",
1034 matched_src_name);
1035 type = oid_object_info(the_repository, &oid, NULL);
1036 if (type == OBJ_COMMIT) {
1037 advise(_("The <src> part of the refspec is a commit object.\n"
1038 "Did you mean to create a new branch by pushing to\n"
1039 "'%s:refs/heads/%s'?"),
1040 matched_src_name, dst_value);
1041 } else if (type == OBJ_TAG) {
1042 advise(_("The <src> part of the refspec is a tag object.\n"
1043 "Did you mean to create a new tag by pushing to\n"
1044 "'%s:refs/tags/%s'?"),
1045 matched_src_name, dst_value);
1046 } else if (type == OBJ_TREE) {
1047 advise(_("The <src> part of the refspec is a tree object.\n"
1048 "Did you mean to tag a new tree by pushing to\n"
1049 "'%s:refs/tags/%s'?"),
1050 matched_src_name, dst_value);
1051 } else if (type == OBJ_BLOB) {
1052 advise(_("The <src> part of the refspec is a blob object.\n"
1053 "Did you mean to tag a new blob by pushing to\n"
1054 "'%s:refs/tags/%s'?"),
1055 matched_src_name, dst_value);
1056 } else {
1057 BUG("'%s' should be commit/tag/tree/blob, is '%d'",
1058 matched_src_name, type);
1059 }
04d17287
ÆAB
1060}
1061
54a8ad92
JH
1062static int match_explicit(struct ref *src, struct ref *dst,
1063 struct ref ***dst_tail,
0ad4a5ff 1064 struct refspec_item *rs)
6b62816c 1065{
54a8ad92 1066 struct ref *matched_src, *matched_dst;
f7ade3d3 1067 int allocated_src;
8558fd9e 1068
54a8ad92 1069 const char *dst_value = rs->dst;
f8aae120 1070 char *dst_guess;
6b62816c 1071
a83619d6 1072 if (rs->pattern || rs->matching)
9a7bbd1d 1073 return 0;
8558fd9e 1074
54a8ad92 1075 matched_src = matched_dst = NULL;
f7ade3d3
JK
1076 if (match_explicit_lhs(src, rs, &matched_src, &allocated_src) < 0)
1077 return -1;
3c8b7df1 1078
4491e62a 1079 if (!dst_value) {
9f0ea7e8
DB
1080 int flag;
1081
7695d118
RS
1082 dst_value = resolve_ref_unsafe(matched_src->name,
1083 RESOLVE_REF_READING,
744c040b 1084 NULL, &flag);
9f0ea7e8
DB
1085 if (!dst_value ||
1086 ((flag & REF_ISSYMREF) &&
59556548 1087 !starts_with(dst_value, "refs/heads/")))
0b9c3afd 1088 die(_("%s cannot be resolved to branch"),
9f0ea7e8 1089 matched_src->name);
4491e62a 1090 }
3c8b7df1 1091
54a8ad92
JH
1092 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1093 case 1:
1094 break;
1095 case 0:
cab53989 1096 if (starts_with(dst_value, "refs/")) {
1d735267 1097 matched_dst = make_linked_ref(dst_value, dst_tail);
cab53989 1098 } else if (is_null_oid(&matched_src->new_oid)) {
0b9c3afd 1099 error(_("unable to delete '%s': remote ref does not exist"),
5742c82b 1100 dst_value);
cab53989 1101 } else if ((dst_guess = guess_ref(dst_value, matched_src))) {
f8aae120 1102 matched_dst = make_linked_ref(dst_guess, dst_tail);
3dc7ea91 1103 free(dst_guess);
cab53989 1104 } else {
04d17287
ÆAB
1105 show_push_unqualified_ref_name_error(dst_value,
1106 matched_src->name);
cab53989 1107 }
54a8ad92
JH
1108 break;
1109 default:
3c8b7df1 1110 matched_dst = NULL;
0b9c3afd 1111 error(_("dst refspec %s matches more than one"),
54a8ad92
JH
1112 dst_value);
1113 break;
1114 }
9a7bbd1d
JK
1115 if (!matched_dst)
1116 return -1;
1117 if (matched_dst->peer_ref)
0b9c3afd
NTND
1118 return error(_("dst ref %s receives from more than one src"),
1119 matched_dst->name);
54a8ad92 1120 else {
f7ade3d3
JK
1121 matched_dst->peer_ref = allocated_src ?
1122 matched_src :
1123 copy_ref(matched_src);
54a8ad92 1124 matched_dst->force = rs->force;
6b62816c 1125 }
9a7bbd1d 1126 return 0;
54a8ad92
JH
1127}
1128
1129static int match_explicit_refs(struct ref *src, struct ref *dst,
9fa2e5e8 1130 struct ref ***dst_tail, struct refspec *rs)
54a8ad92
JH
1131{
1132 int i, errs;
9fa2e5e8
BW
1133 for (i = errs = 0; i < rs->nr; i++)
1134 errs += match_explicit(src, dst, dst_tail, &rs->items[i]);
9a7bbd1d 1135 return errs;
6b62816c
DB
1136}
1137
f3acb830
BW
1138static char *get_ref_match(const struct refspec *rs, const struct ref *ref,
1139 int send_mirror, int direction,
1140 const struct refspec_item **ret_pat)
8558fd9e 1141{
0ad4a5ff 1142 const struct refspec_item *pat;
db70a04c 1143 char *name;
8558fd9e 1144 int i;
a83619d6 1145 int matching_refs = -1;
f3acb830
BW
1146 for (i = 0; i < rs->nr; i++) {
1147 const struct refspec_item *item = &rs->items[i];
1148 if (item->matching &&
1149 (matching_refs == -1 || item->force)) {
a83619d6
PB
1150 matching_refs = i;
1151 continue;
1152 }
1153
f3acb830
BW
1154 if (item->pattern) {
1155 const char *dst_side = item->dst ? item->dst : item->src;
6ddba5e2
FC
1156 int match;
1157 if (direction == FROM_SRC)
f3acb830 1158 match = match_name_with_pattern(item->src, ref->name, dst_side, &name);
6ddba5e2 1159 else
f3acb830 1160 match = match_name_with_pattern(dst_side, ref->name, item->src, &name);
6ddba5e2 1161 if (match) {
db70a04c
FC
1162 matching_refs = i;
1163 break;
1164 }
1165 }
8558fd9e 1166 }
db70a04c 1167 if (matching_refs == -1)
a83619d6 1168 return NULL;
db70a04c 1169
f3acb830 1170 pat = &rs->items[matching_refs];
db70a04c
FC
1171 if (pat->matching) {
1172 /*
1173 * "matching refs"; traditionally we pushed everything
1174 * including refs outside refs/heads/ hierarchy, but
1175 * that does not make much sense these days.
1176 */
59556548 1177 if (!send_mirror && !starts_with(ref->name, "refs/heads/"))
db70a04c
FC
1178 return NULL;
1179 name = xstrdup(ref->name);
1180 }
1181 if (ret_pat)
1182 *ret_pat = pat;
1183 return name;
8558fd9e
DB
1184}
1185
6d2bf96e
CB
1186static struct ref **tail_ref(struct ref **head)
1187{
1188 struct ref **tail = head;
1189 while (*tail)
1190 tail = &((*tail)->next);
1191 return tail;
1192}
1193
c2aba155
JH
1194struct tips {
1195 struct commit **tip;
1196 int nr, alloc;
1197};
1198
fcd30b13 1199static void add_to_tips(struct tips *tips, const struct object_id *oid)
c2aba155
JH
1200{
1201 struct commit *commit;
1202
fcd30b13 1203 if (is_null_oid(oid))
c2aba155 1204 return;
21e1ee8f 1205 commit = lookup_commit_reference_gently(the_repository, oid, 1);
c2aba155
JH
1206 if (!commit || (commit->object.flags & TMP_MARK))
1207 return;
1208 commit->object.flags |= TMP_MARK;
1209 ALLOC_GROW(tips->tip, tips->nr + 1, tips->alloc);
1210 tips->tip[tips->nr++] = commit;
1211}
1212
1213static void add_missing_tags(struct ref *src, struct ref **dst, struct ref ***dst_tail)
1214{
1215 struct string_list dst_tag = STRING_LIST_INIT_NODUP;
1216 struct string_list src_tag = STRING_LIST_INIT_NODUP;
1217 struct string_list_item *item;
1218 struct ref *ref;
1219 struct tips sent_tips;
1220
1221 /*
1222 * Collect everything we know they would have at the end of
1223 * this push, and collect all tags they have.
1224 */
1225 memset(&sent_tips, 0, sizeof(sent_tips));
1226 for (ref = *dst; ref; ref = ref->next) {
1227 if (ref->peer_ref &&
f4e54d02 1228 !is_null_oid(&ref->peer_ref->new_oid))
fcd30b13 1229 add_to_tips(&sent_tips, &ref->peer_ref->new_oid);
c2aba155 1230 else
fcd30b13 1231 add_to_tips(&sent_tips, &ref->old_oid);
59556548 1232 if (starts_with(ref->name, "refs/tags/"))
c2aba155
JH
1233 string_list_append(&dst_tag, ref->name);
1234 }
1235 clear_commit_marks_many(sent_tips.nr, sent_tips.tip, TMP_MARK);
1236
3383e199 1237 string_list_sort(&dst_tag);
c2aba155
JH
1238
1239 /* Collect tags they do not have. */
1240 for (ref = src; ref; ref = ref->next) {
59556548 1241 if (!starts_with(ref->name, "refs/tags/"))
c2aba155
JH
1242 continue; /* not a tag */
1243 if (string_list_has_string(&dst_tag, ref->name))
1244 continue; /* they already have it */
0df8e965 1245 if (oid_object_info(the_repository, &ref->new_oid, NULL) != OBJ_TAG)
c2aba155
JH
1246 continue; /* be conservative */
1247 item = string_list_append(&src_tag, ref->name);
1248 item->util = ref;
1249 }
1250 string_list_clear(&dst_tag, 0);
1251
1252 /*
1253 * At this point, src_tag lists tags that are missing from
1254 * dst, and sent_tips lists the tips we are pushing or those
1255 * that we know they already have. An element in the src_tag
1256 * that is an ancestor of any of the sent_tips needs to be
1257 * sent to the other side.
1258 */
1259 if (sent_tips.nr) {
85daa01f
DS
1260 const int reachable_flag = 1;
1261 struct commit_list *found_commits;
1262 struct commit **src_commits;
1263 int nr_src_commits = 0, alloc_src_commits = 16;
1264 ALLOC_ARRAY(src_commits, alloc_src_commits);
1265
c2aba155
JH
1266 for_each_string_list_item(item, &src_tag) {
1267 struct ref *ref = item->util;
85daa01f
DS
1268 struct commit *commit;
1269
1270 if (is_null_oid(&ref->new_oid))
1271 continue;
1272 commit = lookup_commit_reference_gently(the_repository,
1273 &ref->new_oid,
1274 1);
1275 if (!commit)
1276 /* not pushing a commit, which is not an error */
1277 continue;
1278
1279 ALLOC_GROW(src_commits, nr_src_commits + 1, alloc_src_commits);
1280 src_commits[nr_src_commits++] = commit;
1281 }
1282
1283 found_commits = get_reachable_subset(sent_tips.tip, sent_tips.nr,
1284 src_commits, nr_src_commits,
1285 reachable_flag);
1286
1287 for_each_string_list_item(item, &src_tag) {
c2aba155 1288 struct ref *dst_ref;
85daa01f 1289 struct ref *ref = item->util;
c2aba155
JH
1290 struct commit *commit;
1291
f4e54d02 1292 if (is_null_oid(&ref->new_oid))
c2aba155 1293 continue;
21e1ee8f
SB
1294 commit = lookup_commit_reference_gently(the_repository,
1295 &ref->new_oid,
bc83266a 1296 1);
c2aba155
JH
1297 if (!commit)
1298 /* not pushing a commit, which is not an error */
1299 continue;
1300
1301 /*
1302 * Is this tag, which they do not have, reachable from
1303 * any of the commits we are sending?
1304 */
85daa01f 1305 if (!(commit->object.flags & reachable_flag))
c2aba155
JH
1306 continue;
1307
1308 /* Add it in */
1309 dst_ref = make_linked_ref(ref->name, dst_tail);
f4e54d02 1310 oidcpy(&dst_ref->new_oid, &ref->new_oid);
c2aba155
JH
1311 dst_ref->peer_ref = copy_ref(ref);
1312 }
85daa01f
DS
1313
1314 clear_commit_marks_many(nr_src_commits, src_commits, reachable_flag);
1315 free(src_commits);
1316 free_commit_list(found_commits);
c2aba155 1317 }
85daa01f 1318
c2aba155
JH
1319 string_list_clear(&src_tag, 0);
1320 free(sent_tips.tip);
1321}
1322
47a59185
JH
1323struct ref *find_ref_by_name(const struct ref *list, const char *name)
1324{
1325 for ( ; list; list = list->next)
1326 if (!strcmp(list->name, name))
1327 return (struct ref *)list;
1328 return NULL;
1329}
1330
f1bd15ab
BC
1331static void prepare_ref_index(struct string_list *ref_index, struct ref *ref)
1332{
1333 for ( ; ref; ref = ref->next)
1334 string_list_append_nodup(ref_index, ref->name)->util = ref;
1335
3383e199 1336 string_list_sort(ref_index);
f1bd15ab
BC
1337}
1338
ba928c13
JK
1339/*
1340 * Given only the set of local refs, sanity-check the set of push
1341 * refspecs. We can't catch all errors that match_push_refs would,
1342 * but we can catch some errors early before even talking to the
1343 * remote side.
1344 */
afb1aed4 1345int check_push_refs(struct ref *src, struct refspec *rs)
ba928c13 1346{
ba928c13
JK
1347 int ret = 0;
1348 int i;
1349
afb1aed4
BW
1350 for (i = 0; i < rs->nr; i++) {
1351 struct refspec_item *item = &rs->items[i];
ba928c13 1352
afb1aed4 1353 if (item->pattern || item->matching)
ba928c13
JK
1354 continue;
1355
afb1aed4 1356 ret |= match_explicit_lhs(src, item, NULL, NULL);
ba928c13
JK
1357 }
1358
ba928c13
JK
1359 return ret;
1360}
1361
54a8ad92 1362/*
29753cdd
JH
1363 * Given the set of refs the local repository has, the set of refs the
1364 * remote repository has, and the refspec used for push, determine
1365 * what remote refs we will update and with what value by setting
1366 * peer_ref (which object is being pushed) and force (if the push is
1367 * forced) in elements of "dst". The function may add new elements to
1368 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
54a8ad92 1369 */
29753cdd 1370int match_push_refs(struct ref *src, struct ref **dst,
5c7ec846 1371 struct refspec *rs, int flags)
6b62816c 1372{
28b9d6e5
AW
1373 int send_all = flags & MATCH_REFS_ALL;
1374 int send_mirror = flags & MATCH_REFS_MIRROR;
6ddba5e2 1375 int send_prune = flags & MATCH_REFS_PRUNE;
5f48cb95 1376 int errs;
b1d8b1f3 1377 struct ref *ref, **dst_tail = tail_ref(dst);
f1bd15ab 1378 struct string_list dst_ref_index = STRING_LIST_INIT_NODUP;
6b62816c 1379
5c7ec846
BW
1380 /* If no refspec is provided, use the default ":" */
1381 if (!rs->nr)
1382 refspec_append(rs, ":");
1383
1384 errs = match_explicit_refs(src, *dst, &dst_tail, rs);
6b62816c
DB
1385
1386 /* pick the remainder */
b1d8b1f3 1387 for (ref = src; ref; ref = ref->next) {
f1bd15ab 1388 struct string_list_item *dst_item;
6b62816c 1389 struct ref *dst_peer;
0ad4a5ff 1390 const struct refspec_item *pat = NULL;
6e66bf3c 1391 char *dst_name;
db70a04c 1392
5c7ec846 1393 dst_name = get_ref_match(rs, ref, send_mirror, FROM_SRC, &pat);
db70a04c 1394 if (!dst_name)
a83619d6
PB
1395 continue;
1396
f1bd15ab
BC
1397 if (!dst_ref_index.nr)
1398 prepare_ref_index(&dst_ref_index, *dst);
1399
1400 dst_item = string_list_lookup(&dst_ref_index, dst_name);
1401 dst_peer = dst_item ? dst_item->util : NULL;
a83619d6
PB
1402 if (dst_peer) {
1403 if (dst_peer->peer_ref)
1404 /* We're already sending something to this ref. */
1405 goto free_name;
a83619d6
PB
1406 } else {
1407 if (pat->matching && !(send_all || send_mirror))
1408 /*
1409 * Remote doesn't have it, and we have no
1410 * explicit pattern, and we don't have
01689909 1411 * --all or --mirror.
a83619d6
PB
1412 */
1413 goto free_name;
28b9d6e5 1414
6b62816c 1415 /* Create a new one and link it */
6d2bf96e 1416 dst_peer = make_linked_ref(dst_name, &dst_tail);
f4e54d02 1417 oidcpy(&dst_peer->new_oid, &ref->new_oid);
f1bd15ab
BC
1418 string_list_insert(&dst_ref_index,
1419 dst_peer->name)->util = dst_peer;
6b62816c 1420 }
b1d8b1f3 1421 dst_peer->peer_ref = copy_ref(ref);
a83619d6 1422 dst_peer->force = pat->force;
6e66bf3c
AR
1423 free_name:
1424 free(dst_name);
6b62816c 1425 }
c2aba155 1426
f1bd15ab
BC
1427 string_list_clear(&dst_ref_index, 0);
1428
c2aba155
JH
1429 if (flags & MATCH_REFS_FOLLOW_TAGS)
1430 add_missing_tags(src, dst, &dst_tail);
1431
6ddba5e2 1432 if (send_prune) {
f1bd15ab 1433 struct string_list src_ref_index = STRING_LIST_INIT_NODUP;
6ddba5e2
FC
1434 /* check for missing refs on the remote */
1435 for (ref = *dst; ref; ref = ref->next) {
1436 char *src_name;
1437
1438 if (ref->peer_ref)
1439 /* We're already sending something to this ref. */
1440 continue;
1441
5c7ec846 1442 src_name = get_ref_match(rs, ref, send_mirror, FROM_DST, NULL);
6ddba5e2 1443 if (src_name) {
f1bd15ab
BC
1444 if (!src_ref_index.nr)
1445 prepare_ref_index(&src_ref_index, src);
1446 if (!string_list_has_string(&src_ref_index,
1447 src_name))
6ddba5e2
FC
1448 ref->peer_ref = alloc_delete_ref();
1449 free(src_name);
1450 }
1451 }
f1bd15ab 1452 string_list_clear(&src_ref_index, 0);
6ddba5e2 1453 }
8ca69370 1454
5f48cb95
JS
1455 if (errs)
1456 return -1;
6b62816c
DB
1457 return 0;
1458}
cf818348 1459
20e8b465 1460void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
631b5ef2 1461 int force_update)
20e8b465
TRC
1462{
1463 struct ref *ref;
1464
1465 for (ref = remote_refs; ref; ref = ref->next) {
8c5f6f71 1466 int force_ref_update = ref->force || force_update;
631b5ef2 1467 int reject_reason = 0;
8c5f6f71 1468
20e8b465 1469 if (ref->peer_ref)
f4e54d02 1470 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
20e8b465
TRC
1471 else if (!send_mirror)
1472 continue;
1473
f4e54d02 1474 ref->deletion = is_null_oid(&ref->new_oid);
20e8b465 1475 if (!ref->deletion &&
4a7e27e9 1476 oideq(&ref->old_oid, &ref->new_oid)) {
20e8b465
TRC
1477 ref->status = REF_STATUS_UPTODATE;
1478 continue;
1479 }
1480
a272b289 1481 /*
b2e93f88
AW
1482 * If the remote ref has moved and is now different
1483 * from what we expect, reject any push.
631b5ef2
JH
1484 *
1485 * It also is an error if the user told us to check
1486 * with the remote-tracking branch to find the value
1487 * to expect, but we did not have such a tracking
1488 * branch.
1489 */
1490 if (ref->expect_old_sha1) {
9001dc2a 1491 if (!oideq(&ref->old_oid, &ref->old_oid_expect))
631b5ef2 1492 reject_reason = REF_STATUS_REJECT_STALE;
b2e93f88
AW
1493 else
1494 /* If the ref isn't stale then force the update. */
1495 force_ref_update = 1;
631b5ef2
JH
1496 }
1497
1498 /*
b2e93f88
AW
1499 * If the update isn't already rejected then check
1500 * the usual "must fast-forward" rules.
631b5ef2 1501 *
256b9d70
JH
1502 * Decide whether an individual refspec A:B can be
1503 * pushed. The push will succeed if any of the
1504 * following are true:
20e8b465 1505 *
a272b289 1506 * (1) the remote reference B does not exist
20e8b465 1507 *
a272b289
CR
1508 * (2) the remote reference B is being removed (i.e.,
1509 * pushing :B where no source is specified)
20e8b465 1510 *
256b9d70
JH
1511 * (3) the destination is not under refs/tags/, and
1512 * if the old and new value is a commit, the new
1513 * is a descendant of the old.
20e8b465 1514 *
a272b289
CR
1515 * (4) it is forced using the +A:B notation, or by
1516 * passing the --force argument
20e8b465
TRC
1517 */
1518
b2e93f88 1519 if (!reject_reason && !ref->deletion && !is_null_oid(&ref->old_oid)) {
59556548 1520 if (starts_with(ref->name, "refs/tags/"))
631b5ef2 1521 reject_reason = REF_STATUS_REJECT_ALREADY_EXISTS;
f4e54d02 1522 else if (!has_object_file(&ref->old_oid))
631b5ef2 1523 reject_reason = REF_STATUS_REJECT_FETCH_FIRST;
21e1ee8f
SB
1524 else if (!lookup_commit_reference_gently(the_repository, &ref->old_oid, 1) ||
1525 !lookup_commit_reference_gently(the_repository, &ref->new_oid, 1))
631b5ef2 1526 reject_reason = REF_STATUS_REJECT_NEEDS_FORCE;
6f3d57b6 1527 else if (!ref_newer(&ref->new_oid, &ref->old_oid))
631b5ef2 1528 reject_reason = REF_STATUS_REJECT_NONFASTFORWARD;
20e8b465 1529 }
631b5ef2
JH
1530
1531 /*
1532 * "--force" will defeat any rejection implemented
1533 * by the rules above.
1534 */
1535 if (!force_ref_update)
1536 ref->status = reject_reason;
1537 else if (reject_reason)
1538 ref->forced_update = 1;
20e8b465
TRC
1539 }
1540}
1541
05e73682
JH
1542static void set_merge(struct branch *ret)
1543{
9e3751d4 1544 struct remote *remote;
05e73682 1545 char *ref;
fcd30b13 1546 struct object_id oid;
05e73682
JH
1547 int i;
1548
ee2499fe
JK
1549 if (!ret)
1550 return; /* no branch */
1551 if (ret->merge)
1552 return; /* already run */
1553 if (!ret->remote_name || !ret->merge_nr) {
1554 /*
1555 * no merge config; let's make sure we don't confuse callers
1556 * with a non-zero merge_nr but a NULL merge
1557 */
1558 ret->merge_nr = 0;
1559 return;
1560 }
1561
9e3751d4
JK
1562 remote = remote_get(ret->remote_name);
1563
05e73682
JH
1564 ret->merge = xcalloc(ret->merge_nr, sizeof(*ret->merge));
1565 for (i = 0; i < ret->merge_nr; i++) {
1566 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1567 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
9e3751d4 1568 if (!remote_find_tracking(remote, ret->merge[i]) ||
05e73682
JH
1569 strcmp(ret->remote_name, "."))
1570 continue;
1571 if (dwim_ref(ret->merge_name[i], strlen(ret->merge_name[i]),
cca5fa64 1572 &oid, &ref) == 1)
05e73682
JH
1573 ret->merge[i]->dst = ref;
1574 else
1575 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
1576 }
1577}
1578
cf818348
DB
1579struct branch *branch_get(const char *name)
1580{
1581 struct branch *ret;
1582
1583 read_config();
1584 if (!name || !*name || !strcmp(name, "HEAD"))
1585 ret = current_branch;
1586 else
1587 ret = make_branch(name, 0);
ee2499fe 1588 set_merge(ret);
cf818348
DB
1589 return ret;
1590}
1591
1592int branch_has_merge_config(struct branch *branch)
1593{
1594 return branch && !!branch->merge;
1595}
1596
85682c19
SP
1597int branch_merge_matches(struct branch *branch,
1598 int i,
1599 const char *refname)
cf818348 1600{
85682c19 1601 if (!branch || i < 0 || i >= branch->merge_nr)
cf818348 1602 return 0;
54457fe5 1603 return refname_match(branch->merge[i]->src, refname);
cf818348 1604}
d71ab174 1605
060e7766 1606__attribute__((format (printf,2,3)))
3a429d0a
JK
1607static const char *error_buf(struct strbuf *err, const char *fmt, ...)
1608{
1609 if (err) {
1610 va_list ap;
1611 va_start(ap, fmt);
1612 strbuf_vaddf(err, fmt, ap);
1613 va_end(ap);
1614 }
1615 return NULL;
1616}
1617
1618const char *branch_get_upstream(struct branch *branch, struct strbuf *err)
1619{
1620 if (!branch)
1621 return error_buf(err, _("HEAD does not point to a branch"));
1ca41a19
JK
1622
1623 if (!branch->merge || !branch->merge[0]) {
1624 /*
1625 * no merge config; is it because the user didn't define any,
1626 * or because it is not a real branch, and get_branch
1627 * auto-vivified it?
1628 */
3a429d0a
JK
1629 if (!ref_exists(branch->refname))
1630 return error_buf(err, _("no such branch: '%s'"),
1631 branch->name);
1ca41a19
JK
1632 return error_buf(err,
1633 _("no upstream configured for branch '%s'"),
1634 branch->name);
1635 }
1636
1637 if (!branch->merge[0]->dst)
3a429d0a
JK
1638 return error_buf(err,
1639 _("upstream branch '%s' not stored as a remote-tracking branch"),
1640 branch->merge[0]->src);
3a429d0a 1641
a9f9f8cc
JK
1642 return branch->merge[0]->dst;
1643}
1644
e291c75a
JK
1645static const char *tracking_for_push_dest(struct remote *remote,
1646 const char *refname,
1647 struct strbuf *err)
1648{
1649 char *ret;
1650
d000414e 1651 ret = apply_refspecs(&remote->fetch, refname);
e291c75a
JK
1652 if (!ret)
1653 return error_buf(err,
1654 _("push destination '%s' on remote '%s' has no local tracking branch"),
1655 refname, remote->name);
1656 return ret;
1657}
1658
1659static const char *branch_get_push_1(struct branch *branch, struct strbuf *err)
1660{
1661 struct remote *remote;
1662
e291c75a
JK
1663 remote = remote_get(pushremote_for_branch(branch, NULL));
1664 if (!remote)
1665 return error_buf(err,
1666 _("branch '%s' has no remote for pushing"),
1667 branch->name);
1668
6bdb304b 1669 if (remote->push.nr) {
e291c75a
JK
1670 char *dst;
1671 const char *ret;
1672
d000414e 1673 dst = apply_refspecs(&remote->push, branch->refname);
e291c75a
JK
1674 if (!dst)
1675 return error_buf(err,
1676 _("push refspecs for '%s' do not include '%s'"),
1677 remote->name, branch->name);
1678
1679 ret = tracking_for_push_dest(remote, dst, err);
1680 free(dst);
1681 return ret;
1682 }
1683
1684 if (remote->mirror)
1685 return tracking_for_push_dest(remote, branch->refname, err);
1686
1687 switch (push_default) {
1688 case PUSH_DEFAULT_NOTHING:
1689 return error_buf(err, _("push has no destination (push.default is 'nothing')"));
1690
1691 case PUSH_DEFAULT_MATCHING:
1692 case PUSH_DEFAULT_CURRENT:
1693 return tracking_for_push_dest(remote, branch->refname, err);
1694
1695 case PUSH_DEFAULT_UPSTREAM:
1696 return branch_get_upstream(branch, err);
1697
1698 case PUSH_DEFAULT_UNSPECIFIED:
1699 case PUSH_DEFAULT_SIMPLE:
1700 {
1701 const char *up, *cur;
1702
1703 up = branch_get_upstream(branch, err);
1704 if (!up)
1705 return NULL;
1706 cur = tracking_for_push_dest(remote, branch->refname, err);
1707 if (!cur)
1708 return NULL;
1709 if (strcmp(cur, up))
1710 return error_buf(err,
1711 _("cannot resolve 'simple' push to a single destination"));
1712 return cur;
1713 }
1714 }
1715
033abf97 1716 BUG("unhandled push situation");
e291c75a
JK
1717}
1718
1719const char *branch_get_push(struct branch *branch, struct strbuf *err)
1720{
b10731f4
KM
1721 if (!branch)
1722 return error_buf(err, _("HEAD does not point to a branch"));
1723
e291c75a
JK
1724 if (!branch->push_tracking_ref)
1725 branch->push_tracking_ref = branch_get_push_1(branch, err);
1726 return branch->push_tracking_ref;
1727}
1728
f8fb971e
JH
1729static int ignore_symref_update(const char *refname)
1730{
f8fb971e
JH
1731 int flag;
1732
744c040b 1733 if (!resolve_ref_unsafe(refname, 0, NULL, &flag))
f8fb971e
JH
1734 return 0; /* non-existing refs are OK */
1735 return (flag & REF_ISSYMREF);
1736}
1737
f166db26
MH
1738/*
1739 * Create and return a list of (struct ref) consisting of copies of
1740 * each remote_ref that matches refspec. refspec must be a pattern.
1741 * Fill in the copies' peer_ref to describe the local tracking refs to
1742 * which they map. Omit any references that would map to an existing
1743 * local symbolic ref.
1744 */
4577370e 1745static struct ref *get_expanded_map(const struct ref *remote_refs,
0ad4a5ff 1746 const struct refspec_item *refspec)
d71ab174 1747{
4577370e 1748 const struct ref *ref;
d71ab174
DB
1749 struct ref *ret = NULL;
1750 struct ref **tail = &ret;
1751
d71ab174 1752 for (ref = remote_refs; ref; ref = ref->next) {
e31a17f7
MH
1753 char *expn_name = NULL;
1754
d71ab174
DB
1755 if (strchr(ref->name, '^'))
1756 continue; /* a dereference item */
e928213f 1757 if (match_name_with_pattern(refspec->src, ref->name,
f8fb971e
JH
1758 refspec->dst, &expn_name) &&
1759 !ignore_symref_update(expn_name)) {
d71ab174 1760 struct ref *cpy = copy_ref(ref);
d71ab174 1761
e928213f 1762 cpy->peer_ref = alloc_ref(expn_name);
d71ab174
DB
1763 if (refspec->force)
1764 cpy->peer_ref->force = 1;
1765 *tail = cpy;
1766 tail = &cpy->next;
1767 }
e31a17f7 1768 free(expn_name);
d71ab174
DB
1769 }
1770
1771 return ret;
1772}
1773
4577370e 1774static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
d71ab174 1775{
4577370e 1776 const struct ref *ref;
60650a48
JH
1777 const struct ref *best_match = NULL;
1778 int best_score = 0;
1779
d71ab174 1780 for (ref = refs; ref; ref = ref->next) {
60650a48
JH
1781 int score = refname_match(name, ref->name);
1782
1783 if (best_score < score) {
1784 best_match = ref;
1785 best_score = score;
1786 }
d71ab174 1787 }
60650a48 1788 return best_match;
d71ab174
DB
1789}
1790
4577370e 1791struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
d71ab174 1792{
4577370e 1793 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
d71ab174
DB
1794
1795 if (!ref)
9ad7c5ae 1796 return NULL;
d71ab174
DB
1797
1798 return copy_ref(ref);
1799}
1800
1801static struct ref *get_local_ref(const char *name)
1802{
3eb96997 1803 if (!name || name[0] == '\0')
d71ab174
DB
1804 return NULL;
1805
59556548 1806 if (starts_with(name, "refs/"))
59c69c0c 1807 return alloc_ref(name);
d71ab174 1808
59556548
CC
1809 if (starts_with(name, "heads/") ||
1810 starts_with(name, "tags/") ||
1811 starts_with(name, "remotes/"))
8009768e 1812 return alloc_ref_with_prefix("refs/", 5, name);
d71ab174 1813
8009768e 1814 return alloc_ref_with_prefix("refs/heads/", 11, name);
d71ab174
DB
1815}
1816
4577370e 1817int get_fetch_map(const struct ref *remote_refs,
0ad4a5ff 1818 const struct refspec_item *refspec,
9ad7c5ae
JH
1819 struct ref ***tail,
1820 int missing_ok)
d71ab174 1821{
ef00d150 1822 struct ref *ref_map, **rmp;
d71ab174
DB
1823
1824 if (refspec->pattern) {
1825 ref_map = get_expanded_map(remote_refs, refspec);
1826 } else {
9ad7c5ae
JH
1827 const char *name = refspec->src[0] ? refspec->src : "HEAD";
1828
6e7b66ee
JH
1829 if (refspec->exact_sha1) {
1830 ref_map = alloc_ref(name);
f4e54d02 1831 get_oid_hex(name, &ref_map->old_oid);
73302051 1832 ref_map->exact_oid = 1;
6e7b66ee
JH
1833 } else {
1834 ref_map = get_remote_ref(remote_refs, name);
1835 }
9ad7c5ae 1836 if (!missing_ok && !ref_map)
0b9c3afd 1837 die(_("couldn't find remote ref %s"), name);
9ad7c5ae
JH
1838 if (ref_map) {
1839 ref_map->peer_ref = get_local_ref(refspec->dst);
1840 if (ref_map->peer_ref && refspec->force)
1841 ref_map->peer_ref->force = 1;
1842 }
d71ab174
DB
1843 }
1844
ef00d150
DB
1845 for (rmp = &ref_map; *rmp; ) {
1846 if ((*rmp)->peer_ref) {
59556548 1847 if (!starts_with((*rmp)->peer_ref->name, "refs/") ||
5c08c1f2 1848 check_refname_format((*rmp)->peer_ref->name, 0)) {
ef00d150 1849 struct ref *ignore = *rmp;
0b9c3afd 1850 error(_("* Ignoring funny ref '%s' locally"),
ef00d150
DB
1851 (*rmp)->peer_ref->name);
1852 *rmp = (*rmp)->next;
1853 free(ignore->peer_ref);
1854 free(ignore);
1855 continue;
1856 }
1857 }
1858 rmp = &((*rmp)->next);
d71ab174
DB
1859 }
1860
8f70a765
AR
1861 if (ref_map)
1862 tail_link_ref(ref_map, tail);
d71ab174
DB
1863
1864 return 0;
1865}
be885d96
DB
1866
1867int resolve_remote_symref(struct ref *ref, struct ref *list)
1868{
1869 if (!ref->symref)
1870 return 0;
1871 for (; list; list = list->next)
1872 if (!strcmp(ref->symref, list->name)) {
f4e54d02 1873 oidcpy(&ref->old_oid, &list->old_oid);
be885d96
DB
1874 return 0;
1875 }
1876 return 1;
1877}
6d21bf96
JH
1878
1879/*
c646d093 1880 * Compute the commit ahead/behind values for the pair branch_name, base.
d7d1b496
JH
1881 *
1882 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
1883 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
1884 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
1885 * set to zero).
1886 *
c646d093
DR
1887 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., ref
1888 * does not exist). Returns 0 if the commits are identical. Returns 1 if
1889 * commits are different.
6d21bf96 1890 */
c646d093
DR
1891
1892static int stat_branch_pair(const char *branch_name, const char *base,
1893 int *num_ours, int *num_theirs,
1894 enum ahead_behind_flags abf)
6d21bf96 1895{
fcd30b13 1896 struct object_id oid;
6d21bf96 1897 struct commit *ours, *theirs;
6d21bf96 1898 struct rev_info revs;
0b282cc4 1899 struct argv_array argv = ARGV_ARRAY_INIT;
6d21bf96 1900
f2e08739 1901 /* Cannot stat if what we used to build on no longer exists */
34c290a6 1902 if (read_ref(base, &oid))
f2e08739 1903 return -1;
2122f675 1904 theirs = lookup_commit_reference(the_repository, &oid);
6d21bf96 1905 if (!theirs)
f2e08739 1906 return -1;
6d21bf96 1907
c646d093 1908 if (read_ref(branch_name, &oid))
f2e08739 1909 return -1;
2122f675 1910 ours = lookup_commit_reference(the_repository, &oid);
6d21bf96 1911 if (!ours)
f2e08739 1912 return -1;
6d21bf96 1913
d7d1b496
JH
1914 *num_theirs = *num_ours = 0;
1915
6d21bf96 1916 /* are we the same? */
d7d1b496 1917 if (theirs == ours)
979cb245 1918 return 0;
d7d1b496
JH
1919 if (abf == AHEAD_BEHIND_QUICK)
1920 return 1;
fd9b544a 1921 if (abf != AHEAD_BEHIND_FULL)
c646d093 1922 BUG("stat_branch_pair: invalid abf '%d'", abf);
6d21bf96 1923
8fbf879e 1924 /* Run "rev-list --left-right ours...theirs" internally... */
0b282cc4
JK
1925 argv_array_push(&argv, ""); /* ignored */
1926 argv_array_push(&argv, "--left-right");
1927 argv_array_pushf(&argv, "%s...%s",
f2fd0760 1928 oid_to_hex(&ours->object.oid),
1929 oid_to_hex(&theirs->object.oid));
0b282cc4 1930 argv_array_push(&argv, "--");
6d21bf96 1931
2abf3503 1932 repo_init_revisions(the_repository, &revs, NULL);
0b282cc4 1933 setup_revisions(argv.argc, argv.argv, &revs, NULL);
81c3ce3c 1934 if (prepare_revision_walk(&revs))
0b9c3afd 1935 die(_("revision walk setup failed"));
6d21bf96
JH
1936
1937 /* ... and count the commits on each side. */
6d21bf96
JH
1938 while (1) {
1939 struct commit *c = get_revision(&revs);
1940 if (!c)
1941 break;
1942 if (c->object.flags & SYMMETRIC_LEFT)
1943 (*num_ours)++;
1944 else
1945 (*num_theirs)++;
1946 }
c0234b2e
JH
1947
1948 /* clear object flags smudged by the above traversal */
1949 clear_commit_marks(ours, ALL_REV_FLAGS);
1950 clear_commit_marks(theirs, ALL_REV_FLAGS);
0b282cc4
JK
1951
1952 argv_array_clear(&argv);
d7d1b496 1953 return 1;
6d21bf96
JH
1954}
1955
c646d093
DR
1956/*
1957 * Lookup the tracking branch for the given branch and if present, optionally
1958 * compute the commit ahead/behind values for the pair.
1959 *
1960 * If for_push is true, the tracking branch refers to the push branch,
1961 * otherwise it refers to the upstream branch.
1962 *
1963 * The name of the tracking branch (or NULL if it is not defined) is
1964 * returned via *tracking_name, if it is not itself NULL.
1965 *
1966 * If abf is AHEAD_BEHIND_FULL, compute the full ahead/behind and return the
1967 * counts in *num_ours and *num_theirs. If abf is AHEAD_BEHIND_QUICK, skip
1968 * the (potentially expensive) a/b computation (*num_ours and *num_theirs are
1969 * set to zero).
1970 *
1971 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., no
1972 * upstream defined, or ref does not exist). Returns 0 if the commits are
1973 * identical. Returns 1 if commits are different.
1974 */
1975int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs,
1976 const char **tracking_name, int for_push,
1977 enum ahead_behind_flags abf)
1978{
1979 const char *base;
1980
1981 /* Cannot stat unless we are marked to build on top of somebody else. */
1982 base = for_push ? branch_get_push(branch, NULL) :
1983 branch_get_upstream(branch, NULL);
1984 if (tracking_name)
1985 *tracking_name = base;
1986 if (!base)
1987 return -1;
1988
1989 return stat_branch_pair(branch->refname, base, num_ours, num_theirs, abf);
1990}
1991
6d21bf96
JH
1992/*
1993 * Return true when there is anything to report, otherwise false.
1994 */
f39a757d
JH
1995int format_tracking_info(struct branch *branch, struct strbuf *sb,
1996 enum ahead_behind_flags abf)
6d21bf96 1997{
f39a757d 1998 int ours, theirs, sti;
979cb245 1999 const char *full_base;
2f50babe 2000 char *base;
f2e08739 2001 int upstream_is_gone = 0;
6d21bf96 2002
c646d093 2003 sti = stat_tracking_info(branch, &ours, &theirs, &full_base, 0, abf);
f39a757d 2004 if (sti < 0) {
979cb245
JK
2005 if (!full_base)
2006 return 0;
f2e08739 2007 upstream_is_gone = 1;
f2e08739 2008 }
6d21bf96 2009
979cb245 2010 base = shorten_unambiguous_ref(full_base, 0);
f2e08739
JX
2011 if (upstream_is_gone) {
2012 strbuf_addf(sb,
2013 _("Your branch is based on '%s', but the upstream is gone.\n"),
2014 base);
2015 if (advice_status_hints)
a22ae753 2016 strbuf_addstr(sb,
f2e08739 2017 _(" (use \"git branch --unset-upstream\" to fixup)\n"));
f39a757d 2018 } else if (!sti) {
f223459b 2019 strbuf_addf(sb,
7560f547 2020 _("Your branch is up to date with '%s'.\n"),
f223459b 2021 base);
f39a757d
JH
2022 } else if (abf == AHEAD_BEHIND_QUICK) {
2023 strbuf_addf(sb,
2024 _("Your branch and '%s' refer to different commits.\n"),
2025 base);
2026 if (advice_status_hints)
2027 strbuf_addf(sb, _(" (use \"%s\" for details)\n"),
2028 "git status --ahead-behind");
f2e08739 2029 } else if (!theirs) {
8a5b7494
JX
2030 strbuf_addf(sb,
2031 Q_("Your branch is ahead of '%s' by %d commit.\n",
2032 "Your branch is ahead of '%s' by %d commits.\n",
f2e08739
JX
2033 ours),
2034 base, ours);
491e3075 2035 if (advice_status_hints)
a22ae753 2036 strbuf_addstr(sb,
491e3075 2037 _(" (use \"git push\" to publish your local commits)\n"));
f2e08739 2038 } else if (!ours) {
8a5b7494
JX
2039 strbuf_addf(sb,
2040 Q_("Your branch is behind '%s' by %d commit, "
2041 "and can be fast-forwarded.\n",
2042 "Your branch is behind '%s' by %d commits, "
2043 "and can be fast-forwarded.\n",
f2e08739
JX
2044 theirs),
2045 base, theirs);
491e3075 2046 if (advice_status_hints)
a22ae753 2047 strbuf_addstr(sb,
491e3075 2048 _(" (use \"git pull\" to update your local branch)\n"));
c190ced6 2049 } else {
8a5b7494
JX
2050 strbuf_addf(sb,
2051 Q_("Your branch and '%s' have diverged,\n"
2052 "and have %d and %d different commit each, "
2053 "respectively.\n",
2054 "Your branch and '%s' have diverged,\n"
2055 "and have %d and %d different commits each, "
2056 "respectively.\n",
f54bea44 2057 ours + theirs),
f2e08739 2058 base, ours, theirs);
491e3075 2059 if (advice_status_hints)
a22ae753 2060 strbuf_addstr(sb,
491e3075 2061 _(" (use \"git pull\" to merge the remote branch into yours)\n"));
c190ced6 2062 }
2f50babe 2063 free(base);
6d21bf96
JH
2064 return 1;
2065}
454e2025 2066
455ade65
MH
2067static int one_local_ref(const char *refname, const struct object_id *oid,
2068 int flag, void *cb_data)
454e2025
JS
2069{
2070 struct ref ***local_tail = cb_data;
2071 struct ref *ref;
454e2025
JS
2072
2073 /* we already know it starts with refs/ to get here */
8d9c5010 2074 if (check_refname_format(refname + 5, 0))
454e2025
JS
2075 return 0;
2076
96ffc06f 2077 ref = alloc_ref(refname);
f4e54d02 2078 oidcpy(&ref->new_oid, oid);
454e2025
JS
2079 **local_tail = ref;
2080 *local_tail = &ref->next;
2081 return 0;
2082}
2083
2084struct ref *get_local_heads(void)
2085{
55f0566f 2086 struct ref *local_refs = NULL, **local_tail = &local_refs;
2b2a5be3 2087
454e2025
JS
2088 for_each_ref(one_local_ref, &local_tail);
2089 return local_refs;
2090}
8ef51733 2091
4229f1fa
JS
2092struct ref *guess_remote_head(const struct ref *head,
2093 const struct ref *refs,
2094 int all)
8ef51733 2095{
8ef51733 2096 const struct ref *r;
4229f1fa
JS
2097 struct ref *list = NULL;
2098 struct ref **tail = &list;
8ef51733 2099
6cb4e6cc 2100 if (!head)
8ef51733
JS
2101 return NULL;
2102
fbb074c2
JK
2103 /*
2104 * Some transports support directly peeking at
2105 * where HEAD points; if that is the case, then
2106 * we don't have to guess.
2107 */
2108 if (head->symref)
2109 return copy_ref(find_ref_by_name(refs, head->symref));
2110
8ef51733 2111 /* If refs/heads/master could be right, it is. */
4229f1fa
JS
2112 if (!all) {
2113 r = find_ref_by_name(refs, "refs/heads/master");
4a7e27e9 2114 if (r && oideq(&r->old_oid, &head->old_oid))
4229f1fa
JS
2115 return copy_ref(r);
2116 }
8ef51733
JS
2117
2118 /* Look for another ref that points there */
4229f1fa 2119 for (r = refs; r; r = r->next) {
61adfd30 2120 if (r != head &&
59556548 2121 starts_with(r->name, "refs/heads/") &&
4a7e27e9 2122 oideq(&r->old_oid, &head->old_oid)) {
4229f1fa
JS
2123 *tail = copy_ref(r);
2124 tail = &((*tail)->next);
2125 if (!all)
2126 break;
2127 }
2128 }
8ef51733 2129
4229f1fa 2130 return list;
8ef51733 2131}
f2ef6075
JS
2132
2133struct stale_heads_info {
f2ef6075
JS
2134 struct string_list *ref_names;
2135 struct ref **stale_refs_tail;
a2ac50cb 2136 struct refspec *rs;
f2ef6075
JS
2137};
2138
455ade65
MH
2139static int get_stale_heads_cb(const char *refname, const struct object_id *oid,
2140 int flags, void *cb_data)
f2ef6075
JS
2141{
2142 struct stale_heads_info *info = cb_data;
e6f63712 2143 struct string_list matches = STRING_LIST_INIT_DUP;
0ad4a5ff 2144 struct refspec_item query;
e6f63712 2145 int i, stale = 1;
0ad4a5ff 2146 memset(&query, 0, sizeof(struct refspec_item));
ed43de6e
CMN
2147 query.dst = (char *)refname;
2148
a2ac50cb 2149 query_refspecs_multiple(info->rs, &query, &matches);
e6f63712
CMN
2150 if (matches.nr == 0)
2151 goto clean_exit; /* No matches */
ed43de6e
CMN
2152
2153 /*
2154 * If we did find a suitable refspec and it's not a symref and
2155 * it's not in the list of refs that currently exist in that
e6f63712
CMN
2156 * remote, we consider it to be stale. In order to deal with
2157 * overlapping refspecs, we need to go over all of the
2158 * matching refs.
ed43de6e 2159 */
e6f63712
CMN
2160 if (flags & REF_ISSYMREF)
2161 goto clean_exit;
2162
2163 for (i = 0; stale && i < matches.nr; i++)
2164 if (string_list_has_string(info->ref_names, matches.items[i].string))
2165 stale = 0;
2166
2167 if (stale) {
ed43de6e 2168 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
f4e54d02 2169 oidcpy(&ref->new_oid, oid);
f2ef6075 2170 }
ed43de6e 2171
e6f63712
CMN
2172clean_exit:
2173 string_list_clear(&matches, 0);
f2ef6075
JS
2174 return 0;
2175}
2176
a2ac50cb 2177struct ref *get_stale_heads(struct refspec *rs, struct ref *fetch_map)
f2ef6075
JS
2178{
2179 struct ref *ref, *stale_refs = NULL;
183113a5 2180 struct string_list ref_names = STRING_LIST_INIT_NODUP;
f2ef6075 2181 struct stale_heads_info info;
2b2a5be3 2182
f2ef6075
JS
2183 info.ref_names = &ref_names;
2184 info.stale_refs_tail = &stale_refs;
a2ac50cb 2185 info.rs = rs;
f2ef6075 2186 for (ref = fetch_map; ref; ref = ref->next)
1d2f80fa 2187 string_list_append(&ref_names, ref->name);
3383e199 2188 string_list_sort(&ref_names);
f2ef6075
JS
2189 for_each_ref(get_stale_heads_cb, &info);
2190 string_list_clear(&ref_names, 0);
2191 return stale_refs;
2192}
28f5d176
JH
2193
2194/*
2195 * Compare-and-swap
2196 */
a355b11d 2197static void clear_cas_option(struct push_cas_option *cas)
28f5d176
JH
2198{
2199 int i;
2200
2201 for (i = 0; i < cas->nr; i++)
2202 free(cas->entry[i].refname);
2203 free(cas->entry);
2204 memset(cas, 0, sizeof(*cas));
2205}
2206
2207static struct push_cas *add_cas_entry(struct push_cas_option *cas,
2208 const char *refname,
2209 size_t refnamelen)
2210{
2211 struct push_cas *entry;
2212 ALLOC_GROW(cas->entry, cas->nr + 1, cas->alloc);
2213 entry = &cas->entry[cas->nr++];
2214 memset(entry, 0, sizeof(*entry));
2215 entry->refname = xmemdupz(refname, refnamelen);
2216 return entry;
2217}
2218
8668976b 2219static int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset)
28f5d176
JH
2220{
2221 const char *colon;
2222 struct push_cas *entry;
2223
2224 if (unset) {
2225 /* "--no-<option>" */
2226 clear_cas_option(cas);
2227 return 0;
2228 }
2229
2230 if (!arg) {
2231 /* just "--<option>" */
2232 cas->use_tracking_for_rest = 1;
2233 return 0;
2234 }
2235
2236 /* "--<option>=refname" or "--<option>=refname:value" */
2237 colon = strchrnul(arg, ':');
2238 entry = add_cas_entry(cas, arg, colon - arg);
2239 if (!*colon)
2240 entry->use_tracking = 1;
eee98e74 2241 else if (!colon[1])
b8566f8f 2242 oidclr(&entry->expect);
2243 else if (get_oid(colon + 1, &entry->expect))
0b9c3afd
NTND
2244 return error(_("cannot parse expected object name '%s'"),
2245 colon + 1);
28f5d176
JH
2246 return 0;
2247}
2248
2249int parseopt_push_cas_option(const struct option *opt, const char *arg, int unset)
2250{
2251 return parse_push_cas_option(opt->value, arg, unset);
2252}
91048a95
JH
2253
2254int is_empty_cas(const struct push_cas_option *cas)
2255{
2256 return !cas->use_tracking_for_rest && !cas->nr;
2257}
2258
2259/*
2260 * Look at remote.fetch refspec and see if we have a remote
2261 * tracking branch for the refname there. Fill its current
2262 * value in sha1[].
2263 * If we cannot do so, return negative to signal an error.
2264 */
2265static int remote_tracking(struct remote *remote, const char *refname,
fcd30b13 2266 struct object_id *oid)
91048a95
JH
2267{
2268 char *dst;
2269
d000414e 2270 dst = apply_refspecs(&remote->fetch, refname);
91048a95
JH
2271 if (!dst)
2272 return -1; /* no tracking ref for refname at remote */
34c290a6 2273 if (read_ref(dst, oid))
91048a95
JH
2274 return -1; /* we know what the tracking ref is but we cannot read it */
2275 return 0;
2276}
2277
2278static void apply_cas(struct push_cas_option *cas,
2279 struct remote *remote,
2280 struct ref *ref)
2281{
2282 int i;
2283
2284 /* Find an explicit --<option>=<name>[:<value>] entry */
2285 for (i = 0; i < cas->nr; i++) {
2286 struct push_cas *entry = &cas->entry[i];
54457fe5 2287 if (!refname_match(entry->refname, ref->name))
91048a95
JH
2288 continue;
2289 ref->expect_old_sha1 = 1;
2290 if (!entry->use_tracking)
b8566f8f 2291 oidcpy(&ref->old_oid_expect, &entry->expect);
fcd30b13 2292 else if (remote_tracking(remote, ref->name, &ref->old_oid_expect))
64ac39af 2293 oidclr(&ref->old_oid_expect);
91048a95
JH
2294 return;
2295 }
2296
2297 /* Are we using "--<option>" to cover all? */
2298 if (!cas->use_tracking_for_rest)
2299 return;
2300
2301 ref->expect_old_sha1 = 1;
fcd30b13 2302 if (remote_tracking(remote, ref->name, &ref->old_oid_expect))
64ac39af 2303 oidclr(&ref->old_oid_expect);
91048a95
JH
2304}
2305
2306void apply_push_cas(struct push_cas_option *cas,
2307 struct remote *remote,
2308 struct ref *remote_refs)
2309{
2310 struct ref *ref;
2311 for (ref = remote_refs; ref; ref = ref->next)
2312 apply_cas(cas, remote, ref);
2313}