]> git.ipfire.org Git - thirdparty/git.git/blame - remote.c
test-lib.sh: Help test_create_repo() find the templates dir
[thirdparty/git.git] / remote.c
CommitLineData
5751f490
DB
1#include "cache.h"
2#include "remote.h"
3#include "refs.h"
6d21bf96
JH
4#include "commit.h"
5#include "diff.h"
6#include "revision.h"
8ca12c0d 7#include "dir.h"
ec8452d5 8#include "tag.h"
5751f490 9
e0aaa29f
DB
10static struct refspec s_tag_refspec = {
11 0,
12 1,
b84c343c 13 0,
08fbdb30
DB
14 "refs/tags/*",
15 "refs/tags/*"
e0aaa29f
DB
16};
17
18const struct refspec *tag_refspec = &s_tag_refspec;
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};
31
5751f490 32static struct remote **remotes;
2d31347b
DB
33static int remotes_alloc;
34static int remotes_nr;
5751f490 35
cf818348 36static struct branch **branches;
2d31347b
DB
37static int branches_alloc;
38static int branches_nr;
cf818348
DB
39
40static struct branch *current_branch;
41static const char *default_remote_name;
fa685bdf 42static int explicit_default_remote_name;
cf818348 43
55029ae4
DB
44static struct rewrite **rewrite;
45static int rewrite_alloc;
46static int rewrite_nr;
47
5751f490
DB
48#define BUF_SIZE (2048)
49static char buffer[BUF_SIZE];
50
55029ae4
DB
51static const char *alias_url(const char *url)
52{
53 int i, j;
844112ca
JH
54 char *ret;
55 struct counted_string *longest;
56 int longest_i;
57
58 longest = NULL;
59 longest_i = -1;
55029ae4
DB
60 for (i = 0; i < rewrite_nr; i++) {
61 if (!rewrite[i])
62 continue;
63 for (j = 0; j < rewrite[i]->instead_of_nr; j++) {
844112ca
JH
64 if (!prefixcmp(url, rewrite[i]->instead_of[j].s) &&
65 (!longest ||
66 longest->len < rewrite[i]->instead_of[j].len)) {
67 longest = &(rewrite[i]->instead_of[j]);
68 longest_i = i;
55029ae4
DB
69 }
70 }
71 }
844112ca
JH
72 if (!longest)
73 return url;
74
e8eec71d 75 ret = xmalloc(rewrite[longest_i]->baselen +
844112ca
JH
76 (strlen(url) - longest->len) + 1);
77 strcpy(ret, rewrite[longest_i]->base);
78 strcpy(ret + rewrite[longest_i]->baselen, url + longest->len);
79 return ret;
55029ae4
DB
80}
81
5751f490
DB
82static void add_push_refspec(struct remote *remote, const char *ref)
83{
2d31347b
DB
84 ALLOC_GROW(remote->push_refspec,
85 remote->push_refspec_nr + 1,
86 remote->push_refspec_alloc);
87 remote->push_refspec[remote->push_refspec_nr++] = ref;
5751f490
DB
88}
89
5d46c9d4
DB
90static void add_fetch_refspec(struct remote *remote, const char *ref)
91{
2d31347b
DB
92 ALLOC_GROW(remote->fetch_refspec,
93 remote->fetch_refspec_nr + 1,
94 remote->fetch_refspec_alloc);
95 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
5d46c9d4
DB
96}
97
28b91f8a 98static void add_url(struct remote *remote, const char *url)
5751f490 99{
2d31347b
DB
100 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
101 remote->url[remote->url_nr++] = url;
5751f490
DB
102}
103
55029ae4
DB
104static void add_url_alias(struct remote *remote, const char *url)
105{
106 add_url(remote, alias_url(url));
107}
108
5751f490
DB
109static struct remote *make_remote(const char *name, int len)
110{
2d31347b
DB
111 struct remote *ret;
112 int i;
5751f490 113
2d31347b
DB
114 for (i = 0; i < remotes_nr; i++) {
115 if (len ? (!strncmp(name, remotes[i]->name, len) &&
116 !remotes[i]->name[len]) :
117 !strcmp(name, remotes[i]->name))
118 return remotes[i];
5751f490
DB
119 }
120
2d31347b
DB
121 ret = xcalloc(1, sizeof(struct remote));
122 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
123 remotes[remotes_nr++] = ret;
5751f490 124 if (len)
2d31347b 125 ret->name = xstrndup(name, len);
5751f490 126 else
2d31347b
DB
127 ret->name = xstrdup(name);
128 return ret;
5751f490
DB
129}
130
cf818348
DB
131static void add_merge(struct branch *branch, const char *name)
132{
2d31347b
DB
133 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
134 branch->merge_alloc);
135 branch->merge_name[branch->merge_nr++] = name;
cf818348
DB
136}
137
138static struct branch *make_branch(const char *name, int len)
139{
2d31347b
DB
140 struct branch *ret;
141 int i;
cf818348
DB
142 char *refname;
143
2d31347b
DB
144 for (i = 0; i < branches_nr; i++) {
145 if (len ? (!strncmp(name, branches[i]->name, len) &&
146 !branches[i]->name[len]) :
147 !strcmp(name, branches[i]->name))
148 return branches[i];
cf818348
DB
149 }
150
2d31347b
DB
151 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
152 ret = xcalloc(1, sizeof(struct branch));
153 branches[branches_nr++] = ret;
cf818348 154 if (len)
2d31347b 155 ret->name = xstrndup(name, len);
cf818348 156 else
2d31347b 157 ret->name = xstrdup(name);
e8eec71d 158 refname = xmalloc(strlen(name) + strlen("refs/heads/") + 1);
cf818348 159 strcpy(refname, "refs/heads/");
2d31347b
DB
160 strcpy(refname + strlen("refs/heads/"), ret->name);
161 ret->refname = refname;
cf818348 162
2d31347b 163 return ret;
cf818348
DB
164}
165
55029ae4
DB
166static struct rewrite *make_rewrite(const char *base, int len)
167{
168 struct rewrite *ret;
169 int i;
170
171 for (i = 0; i < rewrite_nr; i++) {
844112ca
JH
172 if (len
173 ? (len == rewrite[i]->baselen &&
174 !strncmp(base, rewrite[i]->base, len))
175 : !strcmp(base, rewrite[i]->base))
55029ae4
DB
176 return rewrite[i];
177 }
178
179 ALLOC_GROW(rewrite, rewrite_nr + 1, rewrite_alloc);
180 ret = xcalloc(1, sizeof(struct rewrite));
181 rewrite[rewrite_nr++] = ret;
844112ca 182 if (len) {
55029ae4 183 ret->base = xstrndup(base, len);
844112ca
JH
184 ret->baselen = len;
185 }
186 else {
55029ae4 187 ret->base = xstrdup(base);
844112ca
JH
188 ret->baselen = strlen(base);
189 }
55029ae4
DB
190 return ret;
191}
192
193static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
194{
195 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
844112ca
JH
196 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
197 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
198 rewrite->instead_of_nr++;
55029ae4
DB
199}
200
5751f490
DB
201static void read_remotes_file(struct remote *remote)
202{
203 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
204
205 if (!f)
206 return;
89cf4c70 207 remote->origin = REMOTE_REMOTES;
5751f490
DB
208 while (fgets(buffer, BUF_SIZE, f)) {
209 int value_list;
210 char *s, *p;
211
212 if (!prefixcmp(buffer, "URL:")) {
213 value_list = 0;
214 s = buffer + 4;
215 } else if (!prefixcmp(buffer, "Push:")) {
216 value_list = 1;
217 s = buffer + 5;
5d46c9d4
DB
218 } else if (!prefixcmp(buffer, "Pull:")) {
219 value_list = 2;
220 s = buffer + 5;
5751f490
DB
221 } else
222 continue;
223
224 while (isspace(*s))
225 s++;
226 if (!*s)
227 continue;
228
229 p = s + strlen(s);
230 while (isspace(p[-1]))
231 *--p = 0;
232
233 switch (value_list) {
234 case 0:
55029ae4 235 add_url_alias(remote, xstrdup(s));
5751f490
DB
236 break;
237 case 1:
238 add_push_refspec(remote, xstrdup(s));
239 break;
5d46c9d4
DB
240 case 2:
241 add_fetch_refspec(remote, xstrdup(s));
242 break;
5751f490
DB
243 }
244 }
245 fclose(f);
246}
247
248static void read_branches_file(struct remote *remote)
249{
250 const char *slash = strchr(remote->name, '/');
cf818348 251 char *frag;
f285a2d7 252 struct strbuf branch = STRBUF_INIT;
5751f490
DB
253 int n = slash ? slash - remote->name : 1000;
254 FILE *f = fopen(git_path("branches/%.*s", n, remote->name), "r");
255 char *s, *p;
256 int len;
257
258 if (!f)
259 return;
260 s = fgets(buffer, BUF_SIZE, f);
261 fclose(f);
262 if (!s)
263 return;
264 while (isspace(*s))
265 s++;
266 if (!*s)
267 return;
89cf4c70 268 remote->origin = REMOTE_BRANCHES;
5751f490
DB
269 p = s + strlen(s);
270 while (isspace(p[-1]))
271 *--p = 0;
272 len = p - s;
273 if (slash)
274 len += strlen(slash);
275 p = xmalloc(len + 1);
276 strcpy(p, s);
277 if (slash)
278 strcat(p, slash);
472fa4cd
DB
279
280 /*
281 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
282 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
283 * the partial URL obtained from the branches file plus
284 * "/netdev-2.6" and does not store it in any tracking ref.
285 * #branch specifier in the file is ignored.
286 *
287 * Otherwise, the branches file would have URL and optionally
288 * #branch specified. The "master" (or specified) branch is
289 * fetched and stored in the local branch of the same name.
290 */
cf818348
DB
291 frag = strchr(p, '#');
292 if (frag) {
293 *(frag++) = '\0';
472fa4cd
DB
294 strbuf_addf(&branch, "refs/heads/%s", frag);
295 } else
296 strbuf_addstr(&branch, "refs/heads/master");
297 if (!slash) {
298 strbuf_addf(&branch, ":refs/heads/%s", remote->name);
cf818348 299 } else {
472fa4cd
DB
300 strbuf_reset(&branch);
301 strbuf_addstr(&branch, "HEAD:");
cf818348 302 }
55029ae4 303 add_url_alias(remote, p);
472fa4cd 304 add_fetch_refspec(remote, strbuf_detach(&branch, 0));
18afe101
MK
305 /*
306 * Cogito compatible push: push current HEAD to remote #branch
307 * (master if missing)
308 */
309 strbuf_init(&branch, 0);
310 strbuf_addstr(&branch, "HEAD");
311 if (frag)
312 strbuf_addf(&branch, ":refs/heads/%s", frag);
313 else
314 strbuf_addstr(&branch, ":refs/heads/master");
315 add_push_refspec(remote, strbuf_detach(&branch, 0));
d71ab174 316 remote->fetch_tags = 1; /* always auto-follow */
5751f490
DB
317}
318
ef90d6d4 319static int handle_config(const char *key, const char *value, void *cb)
5751f490
DB
320{
321 const char *name;
322 const char *subkey;
323 struct remote *remote;
cf818348
DB
324 struct branch *branch;
325 if (!prefixcmp(key, "branch.")) {
326 name = key + 7;
327 subkey = strrchr(name, '.');
cf818348
DB
328 if (!subkey)
329 return 0;
896c0535 330 branch = make_branch(name, subkey - name);
cf818348 331 if (!strcmp(subkey, ".remote")) {
d2370cc2
JH
332 if (!value)
333 return config_error_nonbool(key);
cf818348 334 branch->remote_name = xstrdup(value);
fa685bdf 335 if (branch == current_branch) {
cf818348 336 default_remote_name = branch->remote_name;
fa685bdf
DB
337 explicit_default_remote_name = 1;
338 }
d2370cc2
JH
339 } else if (!strcmp(subkey, ".merge")) {
340 if (!value)
341 return config_error_nonbool(key);
cf818348 342 add_merge(branch, xstrdup(value));
d2370cc2 343 }
cf818348 344 return 0;
5751f490 345 }
55029ae4
DB
346 if (!prefixcmp(key, "url.")) {
347 struct rewrite *rewrite;
60e3aba9 348 name = key + 4;
55029ae4
DB
349 subkey = strrchr(name, '.');
350 if (!subkey)
351 return 0;
352 rewrite = make_rewrite(name, subkey - name);
353 if (!strcmp(subkey, ".insteadof")) {
354 if (!value)
355 return config_error_nonbool(key);
356 add_instead_of(rewrite, xstrdup(value));
357 }
358 }
5751f490
DB
359 if (prefixcmp(key, "remote."))
360 return 0;
361 name = key + 7;
c82efafc
BC
362 if (*name == '/') {
363 warning("Config remote shorthand cannot begin with '/': %s",
364 name);
365 return 0;
366 }
5751f490
DB
367 subkey = strrchr(name, '.');
368 if (!subkey)
369 return error("Config with no key for remote %s", name);
5751f490 370 remote = make_remote(name, subkey - name);
89cf4c70 371 remote->origin = REMOTE_CONFIG;
84bb2dfd
PB
372 if (!strcmp(subkey, ".mirror"))
373 remote->mirror = git_config_bool(key, value);
374 else if (!strcmp(subkey, ".skipdefaultupdate"))
375 remote->skip_default_update = git_config_bool(key, value);
376
377 else if (!strcmp(subkey, ".url")) {
378 const char *v;
379 if (git_config_string(&v, key, value))
380 return -1;
381 add_url(remote, v);
5751f490 382 } else if (!strcmp(subkey, ".push")) {
84bb2dfd
PB
383 const char *v;
384 if (git_config_string(&v, key, value))
385 return -1;
386 add_push_refspec(remote, v);
5d46c9d4 387 } else if (!strcmp(subkey, ".fetch")) {
84bb2dfd
PB
388 const char *v;
389 if (git_config_string(&v, key, value))
390 return -1;
391 add_fetch_refspec(remote, v);
5751f490 392 } else if (!strcmp(subkey, ".receivepack")) {
84bb2dfd
PB
393 const char *v;
394 if (git_config_string(&v, key, value))
395 return -1;
5751f490 396 if (!remote->receivepack)
84bb2dfd 397 remote->receivepack = v;
5751f490
DB
398 else
399 error("more than one receivepack given, using the first");
0012ba21 400 } else if (!strcmp(subkey, ".uploadpack")) {
84bb2dfd
PB
401 const char *v;
402 if (git_config_string(&v, key, value))
403 return -1;
0012ba21 404 if (!remote->uploadpack)
84bb2dfd 405 remote->uploadpack = v;
0012ba21
DB
406 else
407 error("more than one uploadpack given, using the first");
d71ab174
DB
408 } else if (!strcmp(subkey, ".tagopt")) {
409 if (!strcmp(value, "--no-tags"))
410 remote->fetch_tags = -1;
14c98218 411 } else if (!strcmp(subkey, ".proxy")) {
84bb2dfd
PB
412 return git_config_string((const char **)&remote->http_proxy,
413 key, value);
414 }
5751f490
DB
415 return 0;
416}
417
55029ae4
DB
418static void alias_all_urls(void)
419{
420 int i, j;
421 for (i = 0; i < remotes_nr; i++) {
422 if (!remotes[i])
423 continue;
424 for (j = 0; j < remotes[i]->url_nr; j++) {
425 remotes[i]->url[j] = alias_url(remotes[i]->url[j]);
426 }
427 }
428}
429
5751f490
DB
430static void read_config(void)
431{
432 unsigned char sha1[20];
433 const char *head_ref;
434 int flag;
435 if (default_remote_name) // did this already
436 return;
437 default_remote_name = xstrdup("origin");
438 current_branch = NULL;
439 head_ref = resolve_ref("HEAD", sha1, 0, &flag);
440 if (head_ref && (flag & REF_ISSYMREF) &&
441 !prefixcmp(head_ref, "refs/heads/")) {
cf818348
DB
442 current_branch =
443 make_branch(head_ref + strlen("refs/heads/"), 0);
5751f490 444 }
ef90d6d4 445 git_config(handle_config, NULL);
55029ae4 446 alias_all_urls();
5751f490
DB
447}
448
47c6ef1c
JH
449/*
450 * We need to make sure the tracking branches are well formed, but a
451 * wildcard refspec in "struct refspec" must have a trailing slash. We
452 * temporarily drop the trailing '/' while calling check_ref_format(),
453 * and put it back. The caller knows that a CHECK_REF_FORMAT_ONELEVEL
454 * error return is Ok for a wildcard refspec.
455 */
456static int verify_refname(char *name, int is_glob)
457{
08fbdb30 458 int result;
47c6ef1c 459
47c6ef1c 460 result = check_ref_format(name);
08fbdb30
DB
461 if (is_glob && result == CHECK_REF_FORMAT_WILDCARD)
462 result = CHECK_REF_FORMAT_OK;
47c6ef1c
JH
463 return result;
464}
465
2cb1f36d
BC
466/*
467 * This function frees a refspec array.
468 * Warning: code paths should be checked to ensure that the src
469 * and dst pointers are always freeable pointers as well
470 * as the refspec pointer itself.
471 */
697d7f5d 472static void free_refspecs(struct refspec *refspec, int nr_refspec)
2cb1f36d
BC
473{
474 int i;
475
476 if (!refspec)
477 return;
478
479 for (i = 0; i < nr_refspec; i++) {
480 free(refspec[i].src);
481 free(refspec[i].dst);
482 }
483 free(refspec);
484}
485
24b6177e 486static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
6b62816c
DB
487{
488 int i;
ef00d150 489 int st;
6b62816c 490 struct refspec *rs = xcalloc(sizeof(*rs), nr_refspec);
46220ca1 491
6b62816c 492 for (i = 0; i < nr_refspec; i++) {
47c6ef1c 493 size_t llen;
46220ca1
JH
494 int is_glob;
495 const char *lhs, *rhs;
496
8e76bf3f 497 is_glob = 0;
46220ca1
JH
498
499 lhs = refspec[i];
500 if (*lhs == '+') {
6b62816c 501 rs[i].force = 1;
46220ca1 502 lhs++;
6b62816c 503 }
46220ca1
JH
504
505 rhs = strrchr(lhs, ':');
a83619d6
PB
506
507 /*
508 * Before going on, special case ":" (or "+:") as a refspec
509 * for matching refs.
510 */
511 if (!fetch && rhs == lhs && rhs[1] == '\0') {
512 rs[i].matching = 1;
513 continue;
514 }
515
46220ca1 516 if (rhs) {
47c6ef1c 517 size_t rlen = strlen(++rhs);
abd2bde7 518 is_glob = (1 <= rlen && strchr(rhs, '*'));
08fbdb30 519 rs[i].dst = xstrndup(rhs, rlen);
6b62816c 520 }
ef00d150 521
46220ca1 522 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
abd2bde7 523 if (1 <= llen && memchr(lhs, '*', llen)) {
7d19da46
JH
524 if ((rhs && !is_glob) || (!rhs && fetch))
525 goto invalid;
526 is_glob = 1;
7d19da46
JH
527 } else if (rhs && is_glob) {
528 goto invalid;
ef00d150 529 }
7d19da46 530
46220ca1
JH
531 rs[i].pattern = is_glob;
532 rs[i].src = xstrndup(lhs, llen);
533
534 if (fetch) {
535 /*
536 * LHS
537 * - empty is allowed; it means HEAD.
538 * - otherwise it must be a valid looking ref.
539 */
540 if (!*rs[i].src)
541 ; /* empty is ok */
542 else {
47c6ef1c 543 st = verify_refname(rs[i].src, is_glob);
46220ca1
JH
544 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
545 goto invalid;
546 }
547 /*
548 * RHS
7d19da46 549 * - missing is ok, and is same as empty.
46220ca1
JH
550 * - empty is ok; it means not to store.
551 * - otherwise it must be a valid looking ref.
552 */
553 if (!rs[i].dst) {
554 ; /* ok */
555 } else if (!*rs[i].dst) {
556 ; /* ok */
557 } else {
47c6ef1c 558 st = verify_refname(rs[i].dst, is_glob);
46220ca1
JH
559 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
560 goto invalid;
561 }
562 } else {
563 /*
564 * LHS
565 * - empty is allowed; it means delete.
566 * - when wildcarded, it must be a valid looking ref.
567 * - otherwise, it must be an extended SHA-1, but
568 * there is no existing way to validate this.
569 */
570 if (!*rs[i].src)
571 ; /* empty is ok */
572 else if (is_glob) {
47c6ef1c 573 st = verify_refname(rs[i].src, is_glob);
46220ca1
JH
574 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
575 goto invalid;
576 }
577 else
578 ; /* anything goes, for now */
579 /*
580 * RHS
581 * - missing is allowed, but LHS then must be a
582 * valid looking ref.
583 * - empty is not allowed.
584 * - otherwise it must be a valid looking ref.
585 */
586 if (!rs[i].dst) {
47c6ef1c 587 st = verify_refname(rs[i].src, is_glob);
46220ca1
JH
588 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
589 goto invalid;
590 } else if (!*rs[i].dst) {
591 goto invalid;
592 } else {
47c6ef1c 593 st = verify_refname(rs[i].dst, is_glob);
46220ca1
JH
594 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
595 goto invalid;
596 }
ef00d150 597 }
6b62816c
DB
598 }
599 return rs;
46220ca1
JH
600
601 invalid:
24b6177e 602 if (verify) {
2cb1f36d
BC
603 /*
604 * nr_refspec must be greater than zero and i must be valid
605 * since it is only possible to reach this point from within
606 * the for loop above.
607 */
608 free_refspecs(rs, i+1);
24b6177e
JF
609 return NULL;
610 }
46220ca1
JH
611 die("Invalid refspec '%s'", refspec[i]);
612}
613
24b6177e
JF
614int valid_fetch_refspec(const char *fetch_refspec_str)
615{
616 const char *fetch_refspec[] = { fetch_refspec_str };
617 struct refspec *refspec;
618
619 refspec = parse_refspec_internal(1, fetch_refspec, 1, 1);
2cb1f36d 620 free_refspecs(refspec, 1);
24b6177e
JF
621 return !!refspec;
622}
623
46220ca1
JH
624struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
625{
24b6177e 626 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
46220ca1
JH
627}
628
697d7f5d 629static struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
46220ca1 630{
24b6177e 631 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
6b62816c
DB
632}
633
df93e33c
DB
634static int valid_remote_nick(const char *name)
635{
8ca12c0d 636 if (!name[0] || is_dot_or_dotdot(name))
df93e33c
DB
637 return 0;
638 return !strchr(name, '/'); /* no slash */
639}
640
5751f490
DB
641struct remote *remote_get(const char *name)
642{
643 struct remote *ret;
fa685bdf 644 int name_given = 0;
5751f490
DB
645
646 read_config();
fa685bdf
DB
647 if (name)
648 name_given = 1;
649 else {
5751f490 650 name = default_remote_name;
fa685bdf
DB
651 name_given = explicit_default_remote_name;
652 }
9326d494 653
5751f490 654 ret = make_remote(name, 0);
df93e33c 655 if (valid_remote_nick(name)) {
28b91f8a 656 if (!ret->url)
5751f490 657 read_remotes_file(ret);
28b91f8a 658 if (!ret->url)
5751f490
DB
659 read_branches_file(ret);
660 }
9326d494 661 if (name_given && !ret->url)
55029ae4 662 add_url_alias(ret, name);
28b91f8a 663 if (!ret->url)
5751f490 664 return NULL;
46220ca1
JH
665 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
666 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
5751f490
DB
667 return ret;
668}
6b62816c 669
9a23ba33
FAG
670int remote_is_configured(const char *name)
671{
672 int i;
673 read_config();
674
675 for (i = 0; i < remotes_nr; i++)
676 if (!strcmp(name, remotes[i]->name))
677 return 1;
678 return 0;
679}
680
b42f6927
JS
681int for_each_remote(each_remote_fn fn, void *priv)
682{
683 int i, result = 0;
684 read_config();
2d31347b 685 for (i = 0; i < remotes_nr && !result; i++) {
b42f6927
JS
686 struct remote *r = remotes[i];
687 if (!r)
688 continue;
689 if (!r->fetch)
46220ca1
JH
690 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
691 r->fetch_refspec);
b42f6927 692 if (!r->push)
46220ca1
JH
693 r->push = parse_push_refspec(r->push_refspec_nr,
694 r->push_refspec);
b42f6927
JS
695 result = fn(r, priv);
696 }
697 return result;
698}
699
2467a4fa
DB
700void ref_remove_duplicates(struct ref *ref_map)
701{
702 struct ref **posn;
703 struct ref *next;
704 for (; ref_map; ref_map = ref_map->next) {
705 if (!ref_map->peer_ref)
706 continue;
707 posn = &ref_map->next;
708 while (*posn) {
709 if ((*posn)->peer_ref &&
710 !strcmp((*posn)->peer_ref->name,
711 ref_map->peer_ref->name)) {
712 if (strcmp((*posn)->name, ref_map->name))
713 die("%s tracks both %s and %s",
714 ref_map->peer_ref->name,
715 (*posn)->name, ref_map->name);
716 next = (*posn)->next;
717 free((*posn)->peer_ref);
718 free(*posn);
719 *posn = next;
720 } else {
721 posn = &(*posn)->next;
722 }
723 }
724 }
725}
726
28b91f8a 727int remote_has_url(struct remote *remote, const char *url)
5d46c9d4
DB
728{
729 int i;
28b91f8a
SP
730 for (i = 0; i < remote->url_nr; i++) {
731 if (!strcmp(remote->url[i], url))
5d46c9d4
DB
732 return 1;
733 }
734 return 0;
735}
736
e928213f
DB
737static int match_name_with_pattern(const char *key, const char *name,
738 const char *value, char **result)
a3c84239 739{
08fbdb30
DB
740 const char *kstar = strchr(key, '*');
741 size_t klen;
abd2bde7
DB
742 size_t ksuffixlen;
743 size_t namelen;
08fbdb30
DB
744 int ret;
745 if (!kstar)
746 die("Key '%s' of pattern had no '*'", key);
747 klen = kstar - key;
abd2bde7
DB
748 ksuffixlen = strlen(kstar + 1);
749 namelen = strlen(name);
750 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
751 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
e928213f 752 if (ret && value) {
08fbdb30
DB
753 const char *vstar = strchr(value, '*');
754 size_t vlen;
abd2bde7 755 size_t vsuffixlen;
08fbdb30
DB
756 if (!vstar)
757 die("Value '%s' of pattern has no '*'", value);
758 vlen = vstar - value;
abd2bde7
DB
759 vsuffixlen = strlen(vstar + 1);
760 *result = xmalloc(vlen + vsuffixlen +
e928213f 761 strlen(name) -
abd2bde7
DB
762 klen - ksuffixlen + 1);
763 strncpy(*result, value, vlen);
764 strncpy(*result + vlen,
765 name + klen, namelen - klen - ksuffixlen);
766 strcpy(*result + vlen + namelen - klen - ksuffixlen,
767 vstar + 1);
e928213f 768 }
a3c84239
DB
769 return ret;
770}
771
5d46c9d4
DB
772int remote_find_tracking(struct remote *remote, struct refspec *refspec)
773{
b42f6927
JS
774 int find_src = refspec->src == NULL;
775 char *needle, **result;
5d46c9d4 776 int i;
b42f6927
JS
777
778 if (find_src) {
009c5bcd 779 if (!refspec->dst)
b42f6927
JS
780 return error("find_tracking: need either src or dst");
781 needle = refspec->dst;
782 result = &refspec->src;
783 } else {
784 needle = refspec->src;
785 result = &refspec->dst;
786 }
787
5d46c9d4
DB
788 for (i = 0; i < remote->fetch_refspec_nr; i++) {
789 struct refspec *fetch = &remote->fetch[i];
b42f6927
JS
790 const char *key = find_src ? fetch->dst : fetch->src;
791 const char *value = find_src ? fetch->src : fetch->dst;
5d46c9d4
DB
792 if (!fetch->dst)
793 continue;
794 if (fetch->pattern) {
e928213f 795 if (match_name_with_pattern(key, needle, value, result)) {
5d46c9d4
DB
796 refspec->force = fetch->force;
797 return 0;
798 }
b42f6927
JS
799 } else if (!strcmp(needle, key)) {
800 *result = xstrdup(value);
801 refspec->force = fetch->force;
802 return 0;
5d46c9d4
DB
803 }
804 }
5d46c9d4
DB
805 return -1;
806}
807
8009768e
RS
808static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
809 const char *name)
810{
811 size_t len = strlen(name);
812 struct ref *ref = xcalloc(1, sizeof(struct ref) + prefixlen + len + 1);
813 memcpy(ref->name, prefix, prefixlen);
814 memcpy(ref->name + prefixlen, name, len);
815 return ref;
816}
817
59c69c0c 818struct ref *alloc_ref(const char *name)
dfd255dd 819{
59c69c0c 820 return alloc_ref_with_prefix("", 0, name);
737922aa
KK
821}
822
4577370e 823static struct ref *copy_ref(const struct ref *ref)
d71ab174 824{
7b3db095
JS
825 struct ref *cpy;
826 size_t len;
827 if (!ref)
828 return NULL;
829 len = strlen(ref->name);
830 cpy = xmalloc(sizeof(struct ref) + len + 1);
831 memcpy(cpy, ref, sizeof(struct ref) + len + 1);
832 cpy->next = NULL;
833 cpy->symref = ref->symref ? xstrdup(ref->symref) : NULL;
834 cpy->remote_status = ref->remote_status ? xstrdup(ref->remote_status) : NULL;
835 cpy->peer_ref = copy_ref(ref->peer_ref);
836 return cpy;
d71ab174
DB
837}
838
4577370e
DB
839struct ref *copy_ref_list(const struct ref *ref)
840{
841 struct ref *ret = NULL;
842 struct ref **tail = &ret;
843 while (ref) {
844 *tail = copy_ref(ref);
845 ref = ref->next;
846 tail = &((*tail)->next);
847 }
848 return ret;
849}
850
697d7f5d 851static void free_ref(struct ref *ref)
be885d96
DB
852{
853 if (!ref)
854 return;
7b3db095 855 free_ref(ref->peer_ref);
be885d96
DB
856 free(ref->remote_status);
857 free(ref->symref);
858 free(ref);
859}
860
dfd255dd
DB
861void free_refs(struct ref *ref)
862{
863 struct ref *next;
864 while (ref) {
865 next = ref->next;
be885d96 866 free_ref(ref);
dfd255dd
DB
867 ref = next;
868 }
869}
870
6b62816c
DB
871static int count_refspec_match(const char *pattern,
872 struct ref *refs,
873 struct ref **matched_ref)
874{
875 int patlen = strlen(pattern);
876 struct ref *matched_weak = NULL;
877 struct ref *matched = NULL;
878 int weak_match = 0;
879 int match = 0;
880
881 for (weak_match = match = 0; refs; refs = refs->next) {
882 char *name = refs->name;
883 int namelen = strlen(name);
6b62816c 884
ae36bdcf 885 if (!refname_match(pattern, name, ref_rev_parse_rules))
6b62816c
DB
886 continue;
887
888 /* A match is "weak" if it is with refs outside
889 * heads or tags, and did not specify the pattern
890 * in full (e.g. "refs/remotes/origin/master") or at
891 * least from the toplevel (e.g. "remotes/origin/master");
892 * otherwise "git push $URL master" would result in
893 * ambiguity between remotes/origin/master and heads/master
894 * at the remote site.
895 */
896 if (namelen != patlen &&
897 patlen != namelen - 5 &&
898 prefixcmp(name, "refs/heads/") &&
899 prefixcmp(name, "refs/tags/")) {
900 /* We want to catch the case where only weak
901 * matches are found and there are multiple
902 * matches, and where more than one strong
903 * matches are found, as ambiguous. One
904 * strong match with zero or more weak matches
905 * are acceptable as a unique match.
906 */
907 matched_weak = refs;
908 weak_match++;
909 }
910 else {
911 matched = refs;
912 match++;
913 }
914 }
915 if (!matched) {
916 *matched_ref = matched_weak;
917 return weak_match;
918 }
919 else {
920 *matched_ref = matched;
921 return match;
922 }
923}
924
1d735267 925static void tail_link_ref(struct ref *ref, struct ref ***tail)
6b62816c
DB
926{
927 **tail = ref;
1d735267
DB
928 while (ref->next)
929 ref = ref->next;
6b62816c 930 *tail = &ref->next;
6b62816c
DB
931}
932
933static struct ref *try_explicit_object_name(const char *name)
934{
935 unsigned char sha1[20];
936 struct ref *ref;
6b62816c
DB
937
938 if (!*name) {
59c69c0c 939 ref = alloc_ref("(delete)");
6b62816c
DB
940 hashclr(ref->new_sha1);
941 return ref;
942 }
943 if (get_sha1(name, sha1))
944 return NULL;
59c69c0c 945 ref = alloc_ref(name);
6b62816c
DB
946 hashcpy(ref->new_sha1, sha1);
947 return ref;
948}
949
1d735267 950static struct ref *make_linked_ref(const char *name, struct ref ***tail)
6b62816c 951{
59c69c0c 952 struct ref *ret = alloc_ref(name);
1d735267
DB
953 tail_link_ref(ret, tail);
954 return ret;
163f0ee5 955}
8558fd9e 956
f8aae120
JK
957static char *guess_ref(const char *name, struct ref *peer)
958{
959 struct strbuf buf = STRBUF_INIT;
960 unsigned char sha1[20];
961
962 const char *r = resolve_ref(peer->name, sha1, 1, NULL);
963 if (!r)
964 return NULL;
965
966 if (!prefixcmp(r, "refs/heads/"))
967 strbuf_addstr(&buf, "refs/heads/");
968 else if (!prefixcmp(r, "refs/tags/"))
969 strbuf_addstr(&buf, "refs/tags/");
970 else
971 return NULL;
972
973 strbuf_addstr(&buf, name);
974 return strbuf_detach(&buf, NULL);
975}
976
54a8ad92
JH
977static int match_explicit(struct ref *src, struct ref *dst,
978 struct ref ***dst_tail,
9a7bbd1d 979 struct refspec *rs)
6b62816c 980{
54a8ad92 981 struct ref *matched_src, *matched_dst;
cdf690e5 982 int copy_src;
8558fd9e 983
54a8ad92 984 const char *dst_value = rs->dst;
f8aae120 985 char *dst_guess;
6b62816c 986
a83619d6 987 if (rs->pattern || rs->matching)
9a7bbd1d 988 return 0;
8558fd9e 989
54a8ad92
JH
990 matched_src = matched_dst = NULL;
991 switch (count_refspec_match(rs->src, src, &matched_src)) {
992 case 1:
cdf690e5 993 copy_src = 1;
54a8ad92
JH
994 break;
995 case 0:
996 /* The source could be in the get_sha1() format
997 * not a reference name. :refs/other is a
998 * way to delete 'other' ref at the remote end.
999 */
1000 matched_src = try_explicit_object_name(rs->src);
7dfee372 1001 if (!matched_src)
9a7bbd1d 1002 return error("src refspec %s does not match any.", rs->src);
cdf690e5 1003 copy_src = 0;
54a8ad92
JH
1004 break;
1005 default:
9a7bbd1d 1006 return error("src refspec %s matches more than one.", rs->src);
54a8ad92 1007 }
3c8b7df1 1008
4491e62a 1009 if (!dst_value) {
9f0ea7e8
DB
1010 unsigned char sha1[20];
1011 int flag;
1012
9f0ea7e8
DB
1013 dst_value = resolve_ref(matched_src->name, sha1, 1, &flag);
1014 if (!dst_value ||
1015 ((flag & REF_ISSYMREF) &&
1016 prefixcmp(dst_value, "refs/heads/")))
1017 die("%s cannot be resolved to branch.",
1018 matched_src->name);
4491e62a 1019 }
3c8b7df1 1020
54a8ad92
JH
1021 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1022 case 1:
1023 break;
1024 case 0:
163f0ee5 1025 if (!memcmp(dst_value, "refs/", 5))
1d735267 1026 matched_dst = make_linked_ref(dst_value, dst_tail);
f8aae120
JK
1027 else if((dst_guess = guess_ref(dst_value, matched_src)))
1028 matched_dst = make_linked_ref(dst_guess, dst_tail);
3c8b7df1 1029 else
f8aae120
JK
1030 error("unable to push to unqualified destination: %s\n"
1031 "The destination refspec neither matches an "
1032 "existing ref on the remote nor\n"
1033 "begins with refs/, and we are unable to "
1034 "guess a prefix based on the source ref.",
1035 dst_value);
54a8ad92
JH
1036 break;
1037 default:
3c8b7df1 1038 matched_dst = NULL;
54a8ad92
JH
1039 error("dst refspec %s matches more than one.",
1040 dst_value);
1041 break;
1042 }
9a7bbd1d
JK
1043 if (!matched_dst)
1044 return -1;
1045 if (matched_dst->peer_ref)
1046 return error("dst ref %s receives from more than one src.",
54a8ad92 1047 matched_dst->name);
54a8ad92 1048 else {
cdf690e5 1049 matched_dst->peer_ref = copy_src ? copy_ref(matched_src) : matched_src;
54a8ad92 1050 matched_dst->force = rs->force;
6b62816c 1051 }
9a7bbd1d 1052 return 0;
54a8ad92
JH
1053}
1054
1055static int match_explicit_refs(struct ref *src, struct ref *dst,
1056 struct ref ***dst_tail, struct refspec *rs,
1057 int rs_nr)
1058{
1059 int i, errs;
1060 for (i = errs = 0; i < rs_nr; i++)
9a7bbd1d
JK
1061 errs += match_explicit(src, dst, dst_tail, &rs[i]);
1062 return errs;
6b62816c
DB
1063}
1064
6e66bf3c
AR
1065static const struct refspec *check_pattern_match(const struct refspec *rs,
1066 int rs_nr,
1067 const struct ref *src)
8558fd9e
DB
1068{
1069 int i;
a83619d6 1070 int matching_refs = -1;
8558fd9e 1071 for (i = 0; i < rs_nr; i++) {
a83619d6
PB
1072 if (rs[i].matching &&
1073 (matching_refs == -1 || rs[i].force)) {
1074 matching_refs = i;
1075 continue;
1076 }
1077
e928213f
DB
1078 if (rs[i].pattern && match_name_with_pattern(rs[i].src, src->name,
1079 NULL, NULL))
6e66bf3c 1080 return rs + i;
8558fd9e 1081 }
a83619d6
PB
1082 if (matching_refs != -1)
1083 return rs + matching_refs;
1084 else
1085 return NULL;
8558fd9e
DB
1086}
1087
54a8ad92
JH
1088/*
1089 * Note. This is used only by "push"; refspec matching rules for
1090 * push and fetch are subtly different, so do not try to reuse it
1091 * without thinking.
1092 */
6b62816c 1093int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
28b9d6e5 1094 int nr_refspec, const char **refspec, int flags)
6b62816c 1095{
a83619d6 1096 struct refspec *rs;
28b9d6e5
AW
1097 int send_all = flags & MATCH_REFS_ALL;
1098 int send_mirror = flags & MATCH_REFS_MIRROR;
5f48cb95 1099 int errs;
a83619d6 1100 static const char *default_refspec[] = { ":", 0 };
6b62816c 1101
a83619d6
PB
1102 if (!nr_refspec) {
1103 nr_refspec = 1;
1104 refspec = default_refspec;
1105 }
1106 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
5f48cb95 1107 errs = match_explicit_refs(src, dst, dst_tail, rs, nr_refspec);
6b62816c
DB
1108
1109 /* pick the remainder */
1110 for ( ; src; src = src->next) {
1111 struct ref *dst_peer;
6e66bf3c
AR
1112 const struct refspec *pat = NULL;
1113 char *dst_name;
6b62816c
DB
1114 if (src->peer_ref)
1115 continue;
a83619d6
PB
1116
1117 pat = check_pattern_match(rs, nr_refspec, src);
1118 if (!pat)
1119 continue;
1120
1121 if (pat->matching) {
098e711e
JH
1122 /*
1123 * "matching refs"; traditionally we pushed everything
1124 * including refs outside refs/heads/ hierarchy, but
1125 * that does not make much sense these days.
1126 */
a83619d6
PB
1127 if (!send_mirror && prefixcmp(src->name, "refs/heads/"))
1128 continue;
1129 dst_name = xstrdup(src->name);
8558fd9e 1130
a83619d6 1131 } else {
efd8f793 1132 const char *dst_side = pat->dst ? pat->dst : pat->src;
e928213f
DB
1133 if (!match_name_with_pattern(pat->src, src->name,
1134 dst_side, &dst_name))
1135 die("Didn't think it matches any more");
a83619d6 1136 }
6e66bf3c 1137 dst_peer = find_ref_by_name(dst, dst_name);
a83619d6
PB
1138 if (dst_peer) {
1139 if (dst_peer->peer_ref)
1140 /* We're already sending something to this ref. */
1141 goto free_name;
1142
1143 } else {
1144 if (pat->matching && !(send_all || send_mirror))
1145 /*
1146 * Remote doesn't have it, and we have no
1147 * explicit pattern, and we don't have
1148 * --all nor --mirror.
1149 */
1150 goto free_name;
28b9d6e5 1151
6b62816c 1152 /* Create a new one and link it */
1d735267 1153 dst_peer = make_linked_ref(dst_name, dst_tail);
6b62816c 1154 hashcpy(dst_peer->new_sha1, src->new_sha1);
6b62816c 1155 }
cdf690e5 1156 dst_peer->peer_ref = copy_ref(src);
a83619d6 1157 dst_peer->force = pat->force;
6e66bf3c
AR
1158 free_name:
1159 free(dst_name);
6b62816c 1160 }
5f48cb95
JS
1161 if (errs)
1162 return -1;
6b62816c
DB
1163 return 0;
1164}
cf818348
DB
1165
1166struct branch *branch_get(const char *name)
1167{
1168 struct branch *ret;
1169
1170 read_config();
1171 if (!name || !*name || !strcmp(name, "HEAD"))
1172 ret = current_branch;
1173 else
1174 ret = make_branch(name, 0);
1175 if (ret && ret->remote_name) {
1176 ret->remote = remote_get(ret->remote_name);
1177 if (ret->merge_nr) {
1178 int i;
1179 ret->merge = xcalloc(sizeof(*ret->merge),
1180 ret->merge_nr);
1181 for (i = 0; i < ret->merge_nr; i++) {
1182 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1183 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
5e6e2b48
MG
1184 if (remote_find_tracking(ret->remote, ret->merge[i])
1185 && !strcmp(ret->remote_name, "."))
1186 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
cf818348
DB
1187 }
1188 }
1189 }
1190 return ret;
1191}
1192
1193int branch_has_merge_config(struct branch *branch)
1194{
1195 return branch && !!branch->merge;
1196}
1197
85682c19
SP
1198int branch_merge_matches(struct branch *branch,
1199 int i,
1200 const char *refname)
cf818348 1201{
85682c19 1202 if (!branch || i < 0 || i >= branch->merge_nr)
cf818348 1203 return 0;
605b4978 1204 return refname_match(branch->merge[i]->src, refname, ref_fetch_rules);
cf818348 1205}
d71ab174 1206
4577370e 1207static struct ref *get_expanded_map(const struct ref *remote_refs,
d71ab174
DB
1208 const struct refspec *refspec)
1209{
4577370e 1210 const struct ref *ref;
d71ab174
DB
1211 struct ref *ret = NULL;
1212 struct ref **tail = &ret;
1213
e928213f 1214 char *expn_name;
d71ab174
DB
1215
1216 for (ref = remote_refs; ref; ref = ref->next) {
1217 if (strchr(ref->name, '^'))
1218 continue; /* a dereference item */
e928213f
DB
1219 if (match_name_with_pattern(refspec->src, ref->name,
1220 refspec->dst, &expn_name)) {
d71ab174 1221 struct ref *cpy = copy_ref(ref);
d71ab174 1222
e928213f
DB
1223 cpy->peer_ref = alloc_ref(expn_name);
1224 free(expn_name);
d71ab174
DB
1225 if (refspec->force)
1226 cpy->peer_ref->force = 1;
1227 *tail = cpy;
1228 tail = &cpy->next;
1229 }
1230 }
1231
1232 return ret;
1233}
1234
4577370e 1235static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
d71ab174 1236{
4577370e 1237 const struct ref *ref;
d71ab174 1238 for (ref = refs; ref; ref = ref->next) {
605b4978 1239 if (refname_match(name, ref->name, ref_fetch_rules))
d71ab174
DB
1240 return ref;
1241 }
1242 return NULL;
1243}
1244
4577370e 1245struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
d71ab174 1246{
4577370e 1247 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
d71ab174
DB
1248
1249 if (!ref)
9ad7c5ae 1250 return NULL;
d71ab174
DB
1251
1252 return copy_ref(ref);
1253}
1254
1255static struct ref *get_local_ref(const char *name)
1256{
d71ab174
DB
1257 if (!name)
1258 return NULL;
1259
59c69c0c
RS
1260 if (!prefixcmp(name, "refs/"))
1261 return alloc_ref(name);
d71ab174
DB
1262
1263 if (!prefixcmp(name, "heads/") ||
1264 !prefixcmp(name, "tags/") ||
8009768e
RS
1265 !prefixcmp(name, "remotes/"))
1266 return alloc_ref_with_prefix("refs/", 5, name);
d71ab174 1267
8009768e 1268 return alloc_ref_with_prefix("refs/heads/", 11, name);
d71ab174
DB
1269}
1270
4577370e 1271int get_fetch_map(const struct ref *remote_refs,
d71ab174 1272 const struct refspec *refspec,
9ad7c5ae
JH
1273 struct ref ***tail,
1274 int missing_ok)
d71ab174 1275{
ef00d150 1276 struct ref *ref_map, **rmp;
d71ab174
DB
1277
1278 if (refspec->pattern) {
1279 ref_map = get_expanded_map(remote_refs, refspec);
1280 } else {
9ad7c5ae
JH
1281 const char *name = refspec->src[0] ? refspec->src : "HEAD";
1282
1283 ref_map = get_remote_ref(remote_refs, name);
1284 if (!missing_ok && !ref_map)
1285 die("Couldn't find remote ref %s", name);
1286 if (ref_map) {
1287 ref_map->peer_ref = get_local_ref(refspec->dst);
1288 if (ref_map->peer_ref && refspec->force)
1289 ref_map->peer_ref->force = 1;
1290 }
d71ab174
DB
1291 }
1292
ef00d150
DB
1293 for (rmp = &ref_map; *rmp; ) {
1294 if ((*rmp)->peer_ref) {
1295 int st = check_ref_format((*rmp)->peer_ref->name + 5);
1296 if (st && st != CHECK_REF_FORMAT_ONELEVEL) {
1297 struct ref *ignore = *rmp;
1298 error("* Ignoring funny ref '%s' locally",
1299 (*rmp)->peer_ref->name);
1300 *rmp = (*rmp)->next;
1301 free(ignore->peer_ref);
1302 free(ignore);
1303 continue;
1304 }
1305 }
1306 rmp = &((*rmp)->next);
d71ab174
DB
1307 }
1308
8f70a765
AR
1309 if (ref_map)
1310 tail_link_ref(ref_map, tail);
d71ab174
DB
1311
1312 return 0;
1313}
be885d96
DB
1314
1315int resolve_remote_symref(struct ref *ref, struct ref *list)
1316{
1317 if (!ref->symref)
1318 return 0;
1319 for (; list; list = list->next)
1320 if (!strcmp(ref->symref, list->name)) {
1321 hashcpy(ref->old_sha1, list->old_sha1);
1322 return 0;
1323 }
1324 return 1;
1325}
6d21bf96 1326
ec8452d5
JS
1327static void unmark_and_free(struct commit_list *list, unsigned int mark)
1328{
1329 while (list) {
1330 struct commit_list *temp = list;
1331 temp->item->object.flags &= ~mark;
1332 list = temp->next;
1333 free(temp);
1334 }
1335}
1336
1337int ref_newer(const unsigned char *new_sha1, const unsigned char *old_sha1)
1338{
1339 struct object *o;
1340 struct commit *old, *new;
1341 struct commit_list *list, *used;
1342 int found = 0;
1343
1344 /* Both new and old must be commit-ish and new is descendant of
1345 * old. Otherwise we require --force.
1346 */
1347 o = deref_tag(parse_object(old_sha1), NULL, 0);
1348 if (!o || o->type != OBJ_COMMIT)
1349 return 0;
1350 old = (struct commit *) o;
1351
1352 o = deref_tag(parse_object(new_sha1), NULL, 0);
1353 if (!o || o->type != OBJ_COMMIT)
1354 return 0;
1355 new = (struct commit *) o;
1356
1357 if (parse_commit(new) < 0)
1358 return 0;
1359
1360 used = list = NULL;
1361 commit_list_insert(new, &list);
1362 while (list) {
1363 new = pop_most_recent_commit(&list, TMP_MARK);
1364 commit_list_insert(new, &used);
1365 if (new == old) {
1366 found = 1;
1367 break;
1368 }
1369 }
1370 unmark_and_free(list, TMP_MARK);
1371 unmark_and_free(used, TMP_MARK);
1372 return found;
1373}
1374
6d21bf96
JH
1375/*
1376 * Return true if there is anything to report, otherwise false.
1377 */
1378int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs)
1379{
1380 unsigned char sha1[20];
1381 struct commit *ours, *theirs;
1382 char symmetric[84];
1383 struct rev_info revs;
1384 const char *rev_argv[10], *base;
1385 int rev_argc;
1386
1387 /*
1388 * Nothing to report unless we are marked to build on top of
1389 * somebody else.
1390 */
1391 if (!branch ||
1392 !branch->merge || !branch->merge[0] || !branch->merge[0]->dst)
1393 return 0;
1394
1395 /*
1396 * If what we used to build on no longer exists, there is
1397 * nothing to report.
1398 */
1399 base = branch->merge[0]->dst;
1400 if (!resolve_ref(base, sha1, 1, NULL))
1401 return 0;
1402 theirs = lookup_commit(sha1);
1403 if (!theirs)
1404 return 0;
1405
1406 if (!resolve_ref(branch->refname, sha1, 1, NULL))
1407 return 0;
1408 ours = lookup_commit(sha1);
1409 if (!ours)
1410 return 0;
1411
1412 /* are we the same? */
1413 if (theirs == ours)
1414 return 0;
1415
19de5d69 1416 /* Run "rev-list --no-merges --left-right ours...theirs" internally... */
6d21bf96
JH
1417 rev_argc = 0;
1418 rev_argv[rev_argc++] = NULL;
19de5d69 1419 rev_argv[rev_argc++] = "--no-merges";
6d21bf96
JH
1420 rev_argv[rev_argc++] = "--left-right";
1421 rev_argv[rev_argc++] = symmetric;
1422 rev_argv[rev_argc++] = "--";
1423 rev_argv[rev_argc] = NULL;
1424
1425 strcpy(symmetric, sha1_to_hex(ours->object.sha1));
1426 strcpy(symmetric + 40, "...");
1427 strcpy(symmetric + 43, sha1_to_hex(theirs->object.sha1));
1428
1429 init_revisions(&revs, NULL);
1430 setup_revisions(rev_argc, rev_argv, &revs, NULL);
1431 prepare_revision_walk(&revs);
1432
1433 /* ... and count the commits on each side. */
1434 *num_ours = 0;
1435 *num_theirs = 0;
1436 while (1) {
1437 struct commit *c = get_revision(&revs);
1438 if (!c)
1439 break;
1440 if (c->object.flags & SYMMETRIC_LEFT)
1441 (*num_ours)++;
1442 else
1443 (*num_theirs)++;
1444 }
c0234b2e
JH
1445
1446 /* clear object flags smudged by the above traversal */
1447 clear_commit_marks(ours, ALL_REV_FLAGS);
1448 clear_commit_marks(theirs, ALL_REV_FLAGS);
6d21bf96
JH
1449 return 1;
1450}
1451
1452/*
1453 * Return true when there is anything to report, otherwise false.
1454 */
1455int format_tracking_info(struct branch *branch, struct strbuf *sb)
1456{
1457 int num_ours, num_theirs;
4de53ce0 1458 const char *base;
6d21bf96
JH
1459
1460 if (!stat_tracking_info(branch, &num_ours, &num_theirs))
1461 return 0;
1462
1463 base = branch->merge[0]->dst;
45972ffb 1464 base = shorten_unambiguous_ref(base, 0);
6d21bf96 1465 if (!num_theirs)
4de53ce0 1466 strbuf_addf(sb, "Your branch is ahead of '%s' "
6d21bf96 1467 "by %d commit%s.\n",
4de53ce0 1468 base, num_ours, (num_ours == 1) ? "" : "s");
6d21bf96 1469 else if (!num_ours)
4de53ce0
AP
1470 strbuf_addf(sb, "Your branch is behind '%s' "
1471 "by %d commit%s, "
6d21bf96 1472 "and can be fast-forwarded.\n",
4de53ce0 1473 base, num_theirs, (num_theirs == 1) ? "" : "s");
6d21bf96 1474 else
4de53ce0
AP
1475 strbuf_addf(sb, "Your branch and '%s' have diverged,\n"
1476 "and have %d and %d different commit(s) each, "
1477 "respectively.\n",
1478 base, num_ours, num_theirs);
6d21bf96
JH
1479 return 1;
1480}
454e2025
JS
1481
1482static int one_local_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
1483{
1484 struct ref ***local_tail = cb_data;
1485 struct ref *ref;
1486 int len;
1487
1488 /* we already know it starts with refs/ to get here */
1489 if (check_ref_format(refname + 5))
1490 return 0;
1491
1492 len = strlen(refname) + 1;
1493 ref = xcalloc(1, sizeof(*ref) + len);
1494 hashcpy(ref->new_sha1, sha1);
1495 memcpy(ref->name, refname, len);
1496 **local_tail = ref;
1497 *local_tail = &ref->next;
1498 return 0;
1499}
1500
1501struct ref *get_local_heads(void)
1502{
55f0566f 1503 struct ref *local_refs = NULL, **local_tail = &local_refs;
454e2025
JS
1504 for_each_ref(one_local_ref, &local_tail);
1505 return local_refs;
1506}
8ef51733 1507
4229f1fa
JS
1508struct ref *guess_remote_head(const struct ref *head,
1509 const struct ref *refs,
1510 int all)
8ef51733 1511{
8ef51733 1512 const struct ref *r;
4229f1fa
JS
1513 struct ref *list = NULL;
1514 struct ref **tail = &list;
8ef51733 1515
6cb4e6cc 1516 if (!head)
8ef51733
JS
1517 return NULL;
1518
fbb074c2
JK
1519 /*
1520 * Some transports support directly peeking at
1521 * where HEAD points; if that is the case, then
1522 * we don't have to guess.
1523 */
1524 if (head->symref)
1525 return copy_ref(find_ref_by_name(refs, head->symref));
1526
8ef51733 1527 /* If refs/heads/master could be right, it is. */
4229f1fa
JS
1528 if (!all) {
1529 r = find_ref_by_name(refs, "refs/heads/master");
1530 if (r && !hashcmp(r->old_sha1, head->old_sha1))
1531 return copy_ref(r);
1532 }
8ef51733
JS
1533
1534 /* Look for another ref that points there */
4229f1fa
JS
1535 for (r = refs; r; r = r->next) {
1536 if (r != head && !hashcmp(r->old_sha1, head->old_sha1)) {
1537 *tail = copy_ref(r);
1538 tail = &((*tail)->next);
1539 if (!all)
1540 break;
1541 }
1542 }
8ef51733 1543
4229f1fa 1544 return list;
8ef51733 1545}