]> git.ipfire.org Git - thirdparty/git.git/blame - remote.c
git-send-email: Do not attempt to STARTTLS more than once
[thirdparty/git.git] / remote.c
CommitLineData
5751f490
DB
1#include "cache.h"
2#include "remote.h"
3#include "refs.h"
4
e0aaa29f
DB
5static struct refspec s_tag_refspec = {
6 0,
7 1,
b84c343c 8 0,
e0aaa29f
DB
9 "refs/tags/",
10 "refs/tags/"
11};
12
13const struct refspec *tag_refspec = &s_tag_refspec;
14
844112ca
JH
15struct counted_string {
16 size_t len;
17 const char *s;
18};
55029ae4
DB
19struct rewrite {
20 const char *base;
844112ca
JH
21 size_t baselen;
22 struct counted_string *instead_of;
55029ae4
DB
23 int instead_of_nr;
24 int instead_of_alloc;
25};
26
5751f490 27static struct remote **remotes;
2d31347b
DB
28static int remotes_alloc;
29static int remotes_nr;
5751f490 30
cf818348 31static struct branch **branches;
2d31347b
DB
32static int branches_alloc;
33static int branches_nr;
cf818348
DB
34
35static struct branch *current_branch;
36static const char *default_remote_name;
37
55029ae4
DB
38static struct rewrite **rewrite;
39static int rewrite_alloc;
40static int rewrite_nr;
41
5751f490
DB
42#define BUF_SIZE (2048)
43static char buffer[BUF_SIZE];
44
55029ae4
DB
45static const char *alias_url(const char *url)
46{
47 int i, j;
844112ca
JH
48 char *ret;
49 struct counted_string *longest;
50 int longest_i;
51
52 longest = NULL;
53 longest_i = -1;
55029ae4
DB
54 for (i = 0; i < rewrite_nr; i++) {
55 if (!rewrite[i])
56 continue;
57 for (j = 0; j < rewrite[i]->instead_of_nr; j++) {
844112ca
JH
58 if (!prefixcmp(url, rewrite[i]->instead_of[j].s) &&
59 (!longest ||
60 longest->len < rewrite[i]->instead_of[j].len)) {
61 longest = &(rewrite[i]->instead_of[j]);
62 longest_i = i;
55029ae4
DB
63 }
64 }
65 }
844112ca
JH
66 if (!longest)
67 return url;
68
69 ret = malloc(rewrite[longest_i]->baselen +
70 (strlen(url) - longest->len) + 1);
71 strcpy(ret, rewrite[longest_i]->base);
72 strcpy(ret + rewrite[longest_i]->baselen, url + longest->len);
73 return ret;
55029ae4
DB
74}
75
5751f490
DB
76static void add_push_refspec(struct remote *remote, const char *ref)
77{
2d31347b
DB
78 ALLOC_GROW(remote->push_refspec,
79 remote->push_refspec_nr + 1,
80 remote->push_refspec_alloc);
81 remote->push_refspec[remote->push_refspec_nr++] = ref;
5751f490
DB
82}
83
5d46c9d4
DB
84static void add_fetch_refspec(struct remote *remote, const char *ref)
85{
2d31347b
DB
86 ALLOC_GROW(remote->fetch_refspec,
87 remote->fetch_refspec_nr + 1,
88 remote->fetch_refspec_alloc);
89 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
5d46c9d4
DB
90}
91
28b91f8a 92static void add_url(struct remote *remote, const char *url)
5751f490 93{
2d31347b
DB
94 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
95 remote->url[remote->url_nr++] = url;
5751f490
DB
96}
97
55029ae4
DB
98static void add_url_alias(struct remote *remote, const char *url)
99{
100 add_url(remote, alias_url(url));
101}
102
5751f490
DB
103static struct remote *make_remote(const char *name, int len)
104{
2d31347b
DB
105 struct remote *ret;
106 int i;
5751f490 107
2d31347b
DB
108 for (i = 0; i < remotes_nr; i++) {
109 if (len ? (!strncmp(name, remotes[i]->name, len) &&
110 !remotes[i]->name[len]) :
111 !strcmp(name, remotes[i]->name))
112 return remotes[i];
5751f490
DB
113 }
114
2d31347b
DB
115 ret = xcalloc(1, sizeof(struct remote));
116 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
117 remotes[remotes_nr++] = ret;
5751f490 118 if (len)
2d31347b 119 ret->name = xstrndup(name, len);
5751f490 120 else
2d31347b
DB
121 ret->name = xstrdup(name);
122 return ret;
5751f490
DB
123}
124
cf818348
DB
125static void add_merge(struct branch *branch, const char *name)
126{
2d31347b
DB
127 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
128 branch->merge_alloc);
129 branch->merge_name[branch->merge_nr++] = name;
cf818348
DB
130}
131
132static struct branch *make_branch(const char *name, int len)
133{
2d31347b
DB
134 struct branch *ret;
135 int i;
cf818348
DB
136 char *refname;
137
2d31347b
DB
138 for (i = 0; i < branches_nr; i++) {
139 if (len ? (!strncmp(name, branches[i]->name, len) &&
140 !branches[i]->name[len]) :
141 !strcmp(name, branches[i]->name))
142 return branches[i];
cf818348
DB
143 }
144
2d31347b
DB
145 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
146 ret = xcalloc(1, sizeof(struct branch));
147 branches[branches_nr++] = ret;
cf818348 148 if (len)
2d31347b 149 ret->name = xstrndup(name, len);
cf818348 150 else
2d31347b 151 ret->name = xstrdup(name);
cf818348
DB
152 refname = malloc(strlen(name) + strlen("refs/heads/") + 1);
153 strcpy(refname, "refs/heads/");
2d31347b
DB
154 strcpy(refname + strlen("refs/heads/"), ret->name);
155 ret->refname = refname;
cf818348 156
2d31347b 157 return ret;
cf818348
DB
158}
159
55029ae4
DB
160static struct rewrite *make_rewrite(const char *base, int len)
161{
162 struct rewrite *ret;
163 int i;
164
165 for (i = 0; i < rewrite_nr; i++) {
844112ca
JH
166 if (len
167 ? (len == rewrite[i]->baselen &&
168 !strncmp(base, rewrite[i]->base, len))
169 : !strcmp(base, rewrite[i]->base))
55029ae4
DB
170 return rewrite[i];
171 }
172
173 ALLOC_GROW(rewrite, rewrite_nr + 1, rewrite_alloc);
174 ret = xcalloc(1, sizeof(struct rewrite));
175 rewrite[rewrite_nr++] = ret;
844112ca 176 if (len) {
55029ae4 177 ret->base = xstrndup(base, len);
844112ca
JH
178 ret->baselen = len;
179 }
180 else {
55029ae4 181 ret->base = xstrdup(base);
844112ca
JH
182 ret->baselen = strlen(base);
183 }
55029ae4
DB
184 return ret;
185}
186
187static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
188{
189 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
844112ca
JH
190 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
191 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
192 rewrite->instead_of_nr++;
55029ae4
DB
193}
194
5751f490
DB
195static void read_remotes_file(struct remote *remote)
196{
197 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
198
199 if (!f)
200 return;
201 while (fgets(buffer, BUF_SIZE, f)) {
202 int value_list;
203 char *s, *p;
204
205 if (!prefixcmp(buffer, "URL:")) {
206 value_list = 0;
207 s = buffer + 4;
208 } else if (!prefixcmp(buffer, "Push:")) {
209 value_list = 1;
210 s = buffer + 5;
5d46c9d4
DB
211 } else if (!prefixcmp(buffer, "Pull:")) {
212 value_list = 2;
213 s = buffer + 5;
5751f490
DB
214 } else
215 continue;
216
217 while (isspace(*s))
218 s++;
219 if (!*s)
220 continue;
221
222 p = s + strlen(s);
223 while (isspace(p[-1]))
224 *--p = 0;
225
226 switch (value_list) {
227 case 0:
55029ae4 228 add_url_alias(remote, xstrdup(s));
5751f490
DB
229 break;
230 case 1:
231 add_push_refspec(remote, xstrdup(s));
232 break;
5d46c9d4
DB
233 case 2:
234 add_fetch_refspec(remote, xstrdup(s));
235 break;
5751f490
DB
236 }
237 }
238 fclose(f);
239}
240
241static void read_branches_file(struct remote *remote)
242{
243 const char *slash = strchr(remote->name, '/');
cf818348 244 char *frag;
472fa4cd 245 struct strbuf branch;
5751f490
DB
246 int n = slash ? slash - remote->name : 1000;
247 FILE *f = fopen(git_path("branches/%.*s", n, remote->name), "r");
248 char *s, *p;
249 int len;
250
251 if (!f)
252 return;
253 s = fgets(buffer, BUF_SIZE, f);
254 fclose(f);
255 if (!s)
256 return;
257 while (isspace(*s))
258 s++;
259 if (!*s)
260 return;
261 p = s + strlen(s);
262 while (isspace(p[-1]))
263 *--p = 0;
264 len = p - s;
265 if (slash)
266 len += strlen(slash);
267 p = xmalloc(len + 1);
268 strcpy(p, s);
269 if (slash)
270 strcat(p, slash);
472fa4cd
DB
271
272 /*
273 * With "slash", e.g. "git fetch jgarzik/netdev-2.6" when
274 * reading from $GIT_DIR/branches/jgarzik fetches "HEAD" from
275 * the partial URL obtained from the branches file plus
276 * "/netdev-2.6" and does not store it in any tracking ref.
277 * #branch specifier in the file is ignored.
278 *
279 * Otherwise, the branches file would have URL and optionally
280 * #branch specified. The "master" (or specified) branch is
281 * fetched and stored in the local branch of the same name.
282 */
283 strbuf_init(&branch, 0);
cf818348
DB
284 frag = strchr(p, '#');
285 if (frag) {
286 *(frag++) = '\0';
472fa4cd
DB
287 strbuf_addf(&branch, "refs/heads/%s", frag);
288 } else
289 strbuf_addstr(&branch, "refs/heads/master");
290 if (!slash) {
291 strbuf_addf(&branch, ":refs/heads/%s", remote->name);
cf818348 292 } else {
472fa4cd
DB
293 strbuf_reset(&branch);
294 strbuf_addstr(&branch, "HEAD:");
cf818348 295 }
55029ae4 296 add_url_alias(remote, p);
472fa4cd 297 add_fetch_refspec(remote, strbuf_detach(&branch, 0));
d71ab174 298 remote->fetch_tags = 1; /* always auto-follow */
5751f490
DB
299}
300
ef90d6d4 301static int handle_config(const char *key, const char *value, void *cb)
5751f490
DB
302{
303 const char *name;
304 const char *subkey;
305 struct remote *remote;
cf818348
DB
306 struct branch *branch;
307 if (!prefixcmp(key, "branch.")) {
308 name = key + 7;
309 subkey = strrchr(name, '.');
cf818348
DB
310 if (!subkey)
311 return 0;
896c0535 312 branch = make_branch(name, subkey - name);
cf818348 313 if (!strcmp(subkey, ".remote")) {
d2370cc2
JH
314 if (!value)
315 return config_error_nonbool(key);
cf818348
DB
316 branch->remote_name = xstrdup(value);
317 if (branch == current_branch)
318 default_remote_name = branch->remote_name;
d2370cc2
JH
319 } else if (!strcmp(subkey, ".merge")) {
320 if (!value)
321 return config_error_nonbool(key);
cf818348 322 add_merge(branch, xstrdup(value));
d2370cc2 323 }
cf818348 324 return 0;
5751f490 325 }
55029ae4
DB
326 if (!prefixcmp(key, "url.")) {
327 struct rewrite *rewrite;
60e3aba9 328 name = key + 4;
55029ae4
DB
329 subkey = strrchr(name, '.');
330 if (!subkey)
331 return 0;
332 rewrite = make_rewrite(name, subkey - name);
333 if (!strcmp(subkey, ".insteadof")) {
334 if (!value)
335 return config_error_nonbool(key);
336 add_instead_of(rewrite, xstrdup(value));
337 }
338 }
5751f490
DB
339 if (prefixcmp(key, "remote."))
340 return 0;
341 name = key + 7;
342 subkey = strrchr(name, '.');
343 if (!subkey)
344 return error("Config with no key for remote %s", name);
345 if (*subkey == '/') {
346 warning("Config remote shorthand cannot begin with '/': %s", name);
347 return 0;
348 }
349 remote = make_remote(name, subkey - name);
84bb2dfd
PB
350 if (!strcmp(subkey, ".mirror"))
351 remote->mirror = git_config_bool(key, value);
352 else if (!strcmp(subkey, ".skipdefaultupdate"))
353 remote->skip_default_update = git_config_bool(key, value);
354
355 else if (!strcmp(subkey, ".url")) {
356 const char *v;
357 if (git_config_string(&v, key, value))
358 return -1;
359 add_url(remote, v);
5751f490 360 } else if (!strcmp(subkey, ".push")) {
84bb2dfd
PB
361 const char *v;
362 if (git_config_string(&v, key, value))
363 return -1;
364 add_push_refspec(remote, v);
5d46c9d4 365 } else if (!strcmp(subkey, ".fetch")) {
84bb2dfd
PB
366 const char *v;
367 if (git_config_string(&v, key, value))
368 return -1;
369 add_fetch_refspec(remote, v);
5751f490 370 } else if (!strcmp(subkey, ".receivepack")) {
84bb2dfd
PB
371 const char *v;
372 if (git_config_string(&v, key, value))
373 return -1;
5751f490 374 if (!remote->receivepack)
84bb2dfd 375 remote->receivepack = v;
5751f490
DB
376 else
377 error("more than one receivepack given, using the first");
0012ba21 378 } else if (!strcmp(subkey, ".uploadpack")) {
84bb2dfd
PB
379 const char *v;
380 if (git_config_string(&v, key, value))
381 return -1;
0012ba21 382 if (!remote->uploadpack)
84bb2dfd 383 remote->uploadpack = v;
0012ba21
DB
384 else
385 error("more than one uploadpack given, using the first");
d71ab174
DB
386 } else if (!strcmp(subkey, ".tagopt")) {
387 if (!strcmp(value, "--no-tags"))
388 remote->fetch_tags = -1;
14c98218 389 } else if (!strcmp(subkey, ".proxy")) {
84bb2dfd
PB
390 return git_config_string((const char **)&remote->http_proxy,
391 key, value);
392 }
5751f490
DB
393 return 0;
394}
395
55029ae4
DB
396static void alias_all_urls(void)
397{
398 int i, j;
399 for (i = 0; i < remotes_nr; i++) {
400 if (!remotes[i])
401 continue;
402 for (j = 0; j < remotes[i]->url_nr; j++) {
403 remotes[i]->url[j] = alias_url(remotes[i]->url[j]);
404 }
405 }
406}
407
5751f490
DB
408static void read_config(void)
409{
410 unsigned char sha1[20];
411 const char *head_ref;
412 int flag;
413 if (default_remote_name) // did this already
414 return;
415 default_remote_name = xstrdup("origin");
416 current_branch = NULL;
417 head_ref = resolve_ref("HEAD", sha1, 0, &flag);
418 if (head_ref && (flag & REF_ISSYMREF) &&
419 !prefixcmp(head_ref, "refs/heads/")) {
cf818348
DB
420 current_branch =
421 make_branch(head_ref + strlen("refs/heads/"), 0);
5751f490 422 }
ef90d6d4 423 git_config(handle_config, NULL);
55029ae4 424 alias_all_urls();
5751f490
DB
425}
426
24b6177e 427static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
6b62816c
DB
428{
429 int i;
ef00d150 430 int st;
6b62816c 431 struct refspec *rs = xcalloc(sizeof(*rs), nr_refspec);
46220ca1 432
6b62816c 433 for (i = 0; i < nr_refspec; i++) {
46220ca1
JH
434 size_t llen, rlen;
435 int is_glob;
436 const char *lhs, *rhs;
437
438 llen = rlen = is_glob = 0;
439
440 lhs = refspec[i];
441 if (*lhs == '+') {
6b62816c 442 rs[i].force = 1;
46220ca1 443 lhs++;
6b62816c 444 }
46220ca1
JH
445
446 rhs = strrchr(lhs, ':');
a83619d6
PB
447
448 /*
449 * Before going on, special case ":" (or "+:") as a refspec
450 * for matching refs.
451 */
452 if (!fetch && rhs == lhs && rhs[1] == '\0') {
453 rs[i].matching = 1;
454 continue;
455 }
456
46220ca1
JH
457 if (rhs) {
458 rhs++;
459 rlen = strlen(rhs);
460 is_glob = (2 <= rlen && !strcmp(rhs + rlen - 2, "/*"));
7d19da46
JH
461 if (is_glob)
462 rlen -= 2;
463 rs[i].dst = xstrndup(rhs, rlen);
6b62816c 464 }
ef00d150 465
46220ca1 466 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
7d19da46
JH
467 if (2 <= llen && !memcmp(lhs + llen - 2, "/*", 2)) {
468 if ((rhs && !is_glob) || (!rhs && fetch))
469 goto invalid;
470 is_glob = 1;
46220ca1 471 llen -= 2;
7d19da46
JH
472 } else if (rhs && is_glob) {
473 goto invalid;
ef00d150 474 }
7d19da46 475
46220ca1
JH
476 rs[i].pattern = is_glob;
477 rs[i].src = xstrndup(lhs, llen);
478
479 if (fetch) {
480 /*
481 * LHS
482 * - empty is allowed; it means HEAD.
483 * - otherwise it must be a valid looking ref.
484 */
485 if (!*rs[i].src)
486 ; /* empty is ok */
487 else {
488 st = check_ref_format(rs[i].src);
489 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
490 goto invalid;
491 }
492 /*
493 * RHS
7d19da46 494 * - missing is ok, and is same as empty.
46220ca1
JH
495 * - empty is ok; it means not to store.
496 * - otherwise it must be a valid looking ref.
497 */
498 if (!rs[i].dst) {
499 ; /* ok */
500 } else if (!*rs[i].dst) {
501 ; /* ok */
502 } else {
503 st = check_ref_format(rs[i].dst);
504 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
505 goto invalid;
506 }
507 } else {
508 /*
509 * LHS
510 * - empty is allowed; it means delete.
511 * - when wildcarded, it must be a valid looking ref.
512 * - otherwise, it must be an extended SHA-1, but
513 * there is no existing way to validate this.
514 */
515 if (!*rs[i].src)
516 ; /* empty is ok */
517 else if (is_glob) {
518 st = check_ref_format(rs[i].src);
519 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
520 goto invalid;
521 }
522 else
523 ; /* anything goes, for now */
524 /*
525 * RHS
526 * - missing is allowed, but LHS then must be a
527 * valid looking ref.
528 * - empty is not allowed.
529 * - otherwise it must be a valid looking ref.
530 */
531 if (!rs[i].dst) {
532 st = check_ref_format(rs[i].src);
533 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
534 goto invalid;
535 } else if (!*rs[i].dst) {
536 goto invalid;
537 } else {
538 st = check_ref_format(rs[i].dst);
539 if (st && st != CHECK_REF_FORMAT_ONELEVEL)
540 goto invalid;
541 }
ef00d150 542 }
6b62816c
DB
543 }
544 return rs;
46220ca1
JH
545
546 invalid:
24b6177e
JF
547 if (verify) {
548 free(rs);
549 return NULL;
550 }
46220ca1
JH
551 die("Invalid refspec '%s'", refspec[i]);
552}
553
24b6177e
JF
554int valid_fetch_refspec(const char *fetch_refspec_str)
555{
556 const char *fetch_refspec[] = { fetch_refspec_str };
557 struct refspec *refspec;
558
559 refspec = parse_refspec_internal(1, fetch_refspec, 1, 1);
560 if (refspec)
561 free(refspec);
562 return !!refspec;
563}
564
46220ca1
JH
565struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
566{
24b6177e 567 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
46220ca1
JH
568}
569
570struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
571{
24b6177e 572 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
6b62816c
DB
573}
574
df93e33c
DB
575static int valid_remote_nick(const char *name)
576{
577 if (!name[0] || /* not empty */
578 (name[0] == '.' && /* not "." */
579 (!name[1] || /* not ".." */
580 (name[1] == '.' && !name[2]))))
581 return 0;
582 return !strchr(name, '/'); /* no slash */
583}
584
5751f490
DB
585struct remote *remote_get(const char *name)
586{
587 struct remote *ret;
588
589 read_config();
590 if (!name)
591 name = default_remote_name;
592 ret = make_remote(name, 0);
df93e33c 593 if (valid_remote_nick(name)) {
28b91f8a 594 if (!ret->url)
5751f490 595 read_remotes_file(ret);
28b91f8a 596 if (!ret->url)
5751f490
DB
597 read_branches_file(ret);
598 }
28b91f8a 599 if (!ret->url)
55029ae4 600 add_url_alias(ret, name);
28b91f8a 601 if (!ret->url)
5751f490 602 return NULL;
46220ca1
JH
603 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
604 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
5751f490
DB
605 return ret;
606}
6b62816c 607
b42f6927
JS
608int for_each_remote(each_remote_fn fn, void *priv)
609{
610 int i, result = 0;
611 read_config();
2d31347b 612 for (i = 0; i < remotes_nr && !result; i++) {
b42f6927
JS
613 struct remote *r = remotes[i];
614 if (!r)
615 continue;
616 if (!r->fetch)
46220ca1
JH
617 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
618 r->fetch_refspec);
b42f6927 619 if (!r->push)
46220ca1
JH
620 r->push = parse_push_refspec(r->push_refspec_nr,
621 r->push_refspec);
b42f6927
JS
622 result = fn(r, priv);
623 }
624 return result;
625}
626
2467a4fa
DB
627void ref_remove_duplicates(struct ref *ref_map)
628{
629 struct ref **posn;
630 struct ref *next;
631 for (; ref_map; ref_map = ref_map->next) {
632 if (!ref_map->peer_ref)
633 continue;
634 posn = &ref_map->next;
635 while (*posn) {
636 if ((*posn)->peer_ref &&
637 !strcmp((*posn)->peer_ref->name,
638 ref_map->peer_ref->name)) {
639 if (strcmp((*posn)->name, ref_map->name))
640 die("%s tracks both %s and %s",
641 ref_map->peer_ref->name,
642 (*posn)->name, ref_map->name);
643 next = (*posn)->next;
644 free((*posn)->peer_ref);
645 free(*posn);
646 *posn = next;
647 } else {
648 posn = &(*posn)->next;
649 }
650 }
651 }
652}
653
28b91f8a 654int remote_has_url(struct remote *remote, const char *url)
5d46c9d4
DB
655{
656 int i;
28b91f8a
SP
657 for (i = 0; i < remote->url_nr; i++) {
658 if (!strcmp(remote->url[i], url))
5d46c9d4
DB
659 return 1;
660 }
661 return 0;
662}
663
664int remote_find_tracking(struct remote *remote, struct refspec *refspec)
665{
b42f6927
JS
666 int find_src = refspec->src == NULL;
667 char *needle, **result;
5d46c9d4 668 int i;
b42f6927
JS
669
670 if (find_src) {
009c5bcd 671 if (!refspec->dst)
b42f6927
JS
672 return error("find_tracking: need either src or dst");
673 needle = refspec->dst;
674 result = &refspec->src;
675 } else {
676 needle = refspec->src;
677 result = &refspec->dst;
678 }
679
5d46c9d4
DB
680 for (i = 0; i < remote->fetch_refspec_nr; i++) {
681 struct refspec *fetch = &remote->fetch[i];
b42f6927
JS
682 const char *key = find_src ? fetch->dst : fetch->src;
683 const char *value = find_src ? fetch->src : fetch->dst;
5d46c9d4
DB
684 if (!fetch->dst)
685 continue;
686 if (fetch->pattern) {
ef00d150
DB
687 if (!prefixcmp(needle, key) &&
688 needle[strlen(key)] == '/') {
b42f6927
JS
689 *result = xmalloc(strlen(value) +
690 strlen(needle) -
691 strlen(key) + 1);
692 strcpy(*result, value);
693 strcpy(*result + strlen(value),
694 needle + strlen(key));
5d46c9d4
DB
695 refspec->force = fetch->force;
696 return 0;
697 }
b42f6927
JS
698 } else if (!strcmp(needle, key)) {
699 *result = xstrdup(value);
700 refspec->force = fetch->force;
701 return 0;
5d46c9d4
DB
702 }
703 }
5d46c9d4
DB
704 return -1;
705}
706
dfd255dd
DB
707struct ref *alloc_ref(unsigned namelen)
708{
709 struct ref *ret = xmalloc(sizeof(struct ref) + namelen);
710 memset(ret, 0, sizeof(struct ref) + namelen);
711 return ret;
712}
713
737922aa
KK
714struct ref *alloc_ref_from_str(const char* str)
715{
716 struct ref *ret = alloc_ref(strlen(str) + 1);
717 strcpy(ret->name, str);
718 return ret;
719}
720
4577370e 721static struct ref *copy_ref(const struct ref *ref)
d71ab174
DB
722{
723 struct ref *ret = xmalloc(sizeof(struct ref) + strlen(ref->name) + 1);
724 memcpy(ret, ref, sizeof(struct ref) + strlen(ref->name) + 1);
725 ret->next = NULL;
726 return ret;
727}
728
4577370e
DB
729struct ref *copy_ref_list(const struct ref *ref)
730{
731 struct ref *ret = NULL;
732 struct ref **tail = &ret;
733 while (ref) {
734 *tail = copy_ref(ref);
735 ref = ref->next;
736 tail = &((*tail)->next);
737 }
738 return ret;
739}
740
be885d96
DB
741void free_ref(struct ref *ref)
742{
743 if (!ref)
744 return;
745 free(ref->remote_status);
746 free(ref->symref);
747 free(ref);
748}
749
dfd255dd
DB
750void free_refs(struct ref *ref)
751{
752 struct ref *next;
753 while (ref) {
754 next = ref->next;
8e0f7003 755 free(ref->peer_ref);
be885d96 756 free_ref(ref);
dfd255dd
DB
757 ref = next;
758 }
759}
760
6b62816c
DB
761static int count_refspec_match(const char *pattern,
762 struct ref *refs,
763 struct ref **matched_ref)
764{
765 int patlen = strlen(pattern);
766 struct ref *matched_weak = NULL;
767 struct ref *matched = NULL;
768 int weak_match = 0;
769 int match = 0;
770
771 for (weak_match = match = 0; refs; refs = refs->next) {
772 char *name = refs->name;
773 int namelen = strlen(name);
6b62816c 774
ae36bdcf 775 if (!refname_match(pattern, name, ref_rev_parse_rules))
6b62816c
DB
776 continue;
777
778 /* A match is "weak" if it is with refs outside
779 * heads or tags, and did not specify the pattern
780 * in full (e.g. "refs/remotes/origin/master") or at
781 * least from the toplevel (e.g. "remotes/origin/master");
782 * otherwise "git push $URL master" would result in
783 * ambiguity between remotes/origin/master and heads/master
784 * at the remote site.
785 */
786 if (namelen != patlen &&
787 patlen != namelen - 5 &&
788 prefixcmp(name, "refs/heads/") &&
789 prefixcmp(name, "refs/tags/")) {
790 /* We want to catch the case where only weak
791 * matches are found and there are multiple
792 * matches, and where more than one strong
793 * matches are found, as ambiguous. One
794 * strong match with zero or more weak matches
795 * are acceptable as a unique match.
796 */
797 matched_weak = refs;
798 weak_match++;
799 }
800 else {
801 matched = refs;
802 match++;
803 }
804 }
805 if (!matched) {
806 *matched_ref = matched_weak;
807 return weak_match;
808 }
809 else {
810 *matched_ref = matched;
811 return match;
812 }
813}
814
1d735267 815static void tail_link_ref(struct ref *ref, struct ref ***tail)
6b62816c
DB
816{
817 **tail = ref;
1d735267
DB
818 while (ref->next)
819 ref = ref->next;
6b62816c 820 *tail = &ref->next;
6b62816c
DB
821}
822
823static struct ref *try_explicit_object_name(const char *name)
824{
825 unsigned char sha1[20];
826 struct ref *ref;
6b62816c
DB
827
828 if (!*name) {
dfd255dd 829 ref = alloc_ref(20);
6b62816c
DB
830 strcpy(ref->name, "(delete)");
831 hashclr(ref->new_sha1);
832 return ref;
833 }
834 if (get_sha1(name, sha1))
835 return NULL;
737922aa 836 ref = alloc_ref_from_str(name);
6b62816c
DB
837 hashcpy(ref->new_sha1, sha1);
838 return ref;
839}
840
1d735267 841static struct ref *make_linked_ref(const char *name, struct ref ***tail)
6b62816c 842{
737922aa 843 struct ref *ret = alloc_ref_from_str(name);
1d735267
DB
844 tail_link_ref(ret, tail);
845 return ret;
163f0ee5 846}
8558fd9e 847
f8aae120
JK
848static char *guess_ref(const char *name, struct ref *peer)
849{
850 struct strbuf buf = STRBUF_INIT;
851 unsigned char sha1[20];
852
853 const char *r = resolve_ref(peer->name, sha1, 1, NULL);
854 if (!r)
855 return NULL;
856
857 if (!prefixcmp(r, "refs/heads/"))
858 strbuf_addstr(&buf, "refs/heads/");
859 else if (!prefixcmp(r, "refs/tags/"))
860 strbuf_addstr(&buf, "refs/tags/");
861 else
862 return NULL;
863
864 strbuf_addstr(&buf, name);
865 return strbuf_detach(&buf, NULL);
866}
867
54a8ad92
JH
868static int match_explicit(struct ref *src, struct ref *dst,
869 struct ref ***dst_tail,
9a7bbd1d 870 struct refspec *rs)
6b62816c 871{
54a8ad92 872 struct ref *matched_src, *matched_dst;
8558fd9e 873
54a8ad92 874 const char *dst_value = rs->dst;
f8aae120 875 char *dst_guess;
6b62816c 876
a83619d6 877 if (rs->pattern || rs->matching)
9a7bbd1d 878 return 0;
8558fd9e 879
54a8ad92
JH
880 matched_src = matched_dst = NULL;
881 switch (count_refspec_match(rs->src, src, &matched_src)) {
882 case 1:
883 break;
884 case 0:
885 /* The source could be in the get_sha1() format
886 * not a reference name. :refs/other is a
887 * way to delete 'other' ref at the remote end.
888 */
889 matched_src = try_explicit_object_name(rs->src);
7dfee372 890 if (!matched_src)
9a7bbd1d 891 return error("src refspec %s does not match any.", rs->src);
54a8ad92
JH
892 break;
893 default:
9a7bbd1d 894 return error("src refspec %s matches more than one.", rs->src);
54a8ad92 895 }
3c8b7df1 896
4491e62a 897 if (!dst_value) {
9f0ea7e8
DB
898 unsigned char sha1[20];
899 int flag;
900
9f0ea7e8
DB
901 dst_value = resolve_ref(matched_src->name, sha1, 1, &flag);
902 if (!dst_value ||
903 ((flag & REF_ISSYMREF) &&
904 prefixcmp(dst_value, "refs/heads/")))
905 die("%s cannot be resolved to branch.",
906 matched_src->name);
4491e62a 907 }
3c8b7df1 908
54a8ad92
JH
909 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
910 case 1:
911 break;
912 case 0:
163f0ee5 913 if (!memcmp(dst_value, "refs/", 5))
1d735267 914 matched_dst = make_linked_ref(dst_value, dst_tail);
f8aae120
JK
915 else if((dst_guess = guess_ref(dst_value, matched_src)))
916 matched_dst = make_linked_ref(dst_guess, dst_tail);
3c8b7df1 917 else
f8aae120
JK
918 error("unable to push to unqualified destination: %s\n"
919 "The destination refspec neither matches an "
920 "existing ref on the remote nor\n"
921 "begins with refs/, and we are unable to "
922 "guess a prefix based on the source ref.",
923 dst_value);
54a8ad92
JH
924 break;
925 default:
3c8b7df1 926 matched_dst = NULL;
54a8ad92
JH
927 error("dst refspec %s matches more than one.",
928 dst_value);
929 break;
930 }
9a7bbd1d
JK
931 if (!matched_dst)
932 return -1;
933 if (matched_dst->peer_ref)
934 return error("dst ref %s receives from more than one src.",
54a8ad92 935 matched_dst->name);
54a8ad92
JH
936 else {
937 matched_dst->peer_ref = matched_src;
938 matched_dst->force = rs->force;
6b62816c 939 }
9a7bbd1d 940 return 0;
54a8ad92
JH
941}
942
943static int match_explicit_refs(struct ref *src, struct ref *dst,
944 struct ref ***dst_tail, struct refspec *rs,
945 int rs_nr)
946{
947 int i, errs;
948 for (i = errs = 0; i < rs_nr; i++)
9a7bbd1d
JK
949 errs += match_explicit(src, dst, dst_tail, &rs[i]);
950 return errs;
6b62816c
DB
951}
952
6e66bf3c
AR
953static const struct refspec *check_pattern_match(const struct refspec *rs,
954 int rs_nr,
955 const struct ref *src)
8558fd9e
DB
956{
957 int i;
a83619d6 958 int matching_refs = -1;
8558fd9e 959 for (i = 0; i < rs_nr; i++) {
a83619d6
PB
960 if (rs[i].matching &&
961 (matching_refs == -1 || rs[i].force)) {
962 matching_refs = i;
963 continue;
964 }
965
ef00d150
DB
966 if (rs[i].pattern &&
967 !prefixcmp(src->name, rs[i].src) &&
968 src->name[strlen(rs[i].src)] == '/')
6e66bf3c 969 return rs + i;
8558fd9e 970 }
a83619d6
PB
971 if (matching_refs != -1)
972 return rs + matching_refs;
973 else
974 return NULL;
8558fd9e
DB
975}
976
54a8ad92
JH
977/*
978 * Note. This is used only by "push"; refspec matching rules for
979 * push and fetch are subtly different, so do not try to reuse it
980 * without thinking.
981 */
6b62816c 982int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
28b9d6e5 983 int nr_refspec, const char **refspec, int flags)
6b62816c 984{
a83619d6 985 struct refspec *rs;
28b9d6e5
AW
986 int send_all = flags & MATCH_REFS_ALL;
987 int send_mirror = flags & MATCH_REFS_MIRROR;
a83619d6 988 static const char *default_refspec[] = { ":", 0 };
6b62816c 989
a83619d6
PB
990 if (!nr_refspec) {
991 nr_refspec = 1;
992 refspec = default_refspec;
993 }
994 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
8558fd9e
DB
995 if (match_explicit_refs(src, dst, dst_tail, rs, nr_refspec))
996 return -1;
6b62816c
DB
997
998 /* pick the remainder */
999 for ( ; src; src = src->next) {
1000 struct ref *dst_peer;
6e66bf3c
AR
1001 const struct refspec *pat = NULL;
1002 char *dst_name;
6b62816c
DB
1003 if (src->peer_ref)
1004 continue;
a83619d6
PB
1005
1006 pat = check_pattern_match(rs, nr_refspec, src);
1007 if (!pat)
1008 continue;
1009
1010 if (pat->matching) {
098e711e
JH
1011 /*
1012 * "matching refs"; traditionally we pushed everything
1013 * including refs outside refs/heads/ hierarchy, but
1014 * that does not make much sense these days.
1015 */
a83619d6
PB
1016 if (!send_mirror && prefixcmp(src->name, "refs/heads/"))
1017 continue;
1018 dst_name = xstrdup(src->name);
8558fd9e 1019
a83619d6 1020 } else {
efd8f793
DB
1021 const char *dst_side = pat->dst ? pat->dst : pat->src;
1022 dst_name = xmalloc(strlen(dst_side) +
6e66bf3c
AR
1023 strlen(src->name) -
1024 strlen(pat->src) + 2);
efd8f793 1025 strcpy(dst_name, dst_side);
6e66bf3c 1026 strcat(dst_name, src->name + strlen(pat->src));
a83619d6 1027 }
6e66bf3c 1028 dst_peer = find_ref_by_name(dst, dst_name);
a83619d6
PB
1029 if (dst_peer) {
1030 if (dst_peer->peer_ref)
1031 /* We're already sending something to this ref. */
1032 goto free_name;
1033
1034 } else {
1035 if (pat->matching && !(send_all || send_mirror))
1036 /*
1037 * Remote doesn't have it, and we have no
1038 * explicit pattern, and we don't have
1039 * --all nor --mirror.
1040 */
1041 goto free_name;
28b9d6e5 1042
6b62816c 1043 /* Create a new one and link it */
1d735267 1044 dst_peer = make_linked_ref(dst_name, dst_tail);
6b62816c 1045 hashcpy(dst_peer->new_sha1, src->new_sha1);
6b62816c
DB
1046 }
1047 dst_peer->peer_ref = src;
a83619d6 1048 dst_peer->force = pat->force;
6e66bf3c
AR
1049 free_name:
1050 free(dst_name);
6b62816c
DB
1051 }
1052 return 0;
1053}
cf818348
DB
1054
1055struct branch *branch_get(const char *name)
1056{
1057 struct branch *ret;
1058
1059 read_config();
1060 if (!name || !*name || !strcmp(name, "HEAD"))
1061 ret = current_branch;
1062 else
1063 ret = make_branch(name, 0);
1064 if (ret && ret->remote_name) {
1065 ret->remote = remote_get(ret->remote_name);
1066 if (ret->merge_nr) {
1067 int i;
1068 ret->merge = xcalloc(sizeof(*ret->merge),
1069 ret->merge_nr);
1070 for (i = 0; i < ret->merge_nr; i++) {
1071 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1072 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
1073 remote_find_tracking(ret->remote,
1074 ret->merge[i]);
1075 }
1076 }
1077 }
1078 return ret;
1079}
1080
1081int branch_has_merge_config(struct branch *branch)
1082{
1083 return branch && !!branch->merge;
1084}
1085
85682c19
SP
1086int branch_merge_matches(struct branch *branch,
1087 int i,
1088 const char *refname)
cf818348 1089{
85682c19 1090 if (!branch || i < 0 || i >= branch->merge_nr)
cf818348 1091 return 0;
605b4978 1092 return refname_match(branch->merge[i]->src, refname, ref_fetch_rules);
cf818348 1093}
d71ab174 1094
4577370e 1095static struct ref *get_expanded_map(const struct ref *remote_refs,
d71ab174
DB
1096 const struct refspec *refspec)
1097{
4577370e 1098 const struct ref *ref;
d71ab174
DB
1099 struct ref *ret = NULL;
1100 struct ref **tail = &ret;
1101
1102 int remote_prefix_len = strlen(refspec->src);
1103 int local_prefix_len = strlen(refspec->dst);
1104
1105 for (ref = remote_refs; ref; ref = ref->next) {
1106 if (strchr(ref->name, '^'))
1107 continue; /* a dereference item */
1108 if (!prefixcmp(ref->name, refspec->src)) {
4577370e 1109 const char *match;
d71ab174
DB
1110 struct ref *cpy = copy_ref(ref);
1111 match = ref->name + remote_prefix_len;
1112
1113 cpy->peer_ref = alloc_ref(local_prefix_len +
1114 strlen(match) + 1);
1115 sprintf(cpy->peer_ref->name, "%s%s",
1116 refspec->dst, match);
1117 if (refspec->force)
1118 cpy->peer_ref->force = 1;
1119 *tail = cpy;
1120 tail = &cpy->next;
1121 }
1122 }
1123
1124 return ret;
1125}
1126
4577370e 1127static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
d71ab174 1128{
4577370e 1129 const struct ref *ref;
d71ab174 1130 for (ref = refs; ref; ref = ref->next) {
605b4978 1131 if (refname_match(name, ref->name, ref_fetch_rules))
d71ab174
DB
1132 return ref;
1133 }
1134 return NULL;
1135}
1136
4577370e 1137struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
d71ab174 1138{
4577370e 1139 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
d71ab174
DB
1140
1141 if (!ref)
9ad7c5ae 1142 return NULL;
d71ab174
DB
1143
1144 return copy_ref(ref);
1145}
1146
1147static struct ref *get_local_ref(const char *name)
1148{
1149 struct ref *ret;
1150 if (!name)
1151 return NULL;
1152
1153 if (!prefixcmp(name, "refs/")) {
737922aa 1154 return alloc_ref_from_str(name);
d71ab174
DB
1155 }
1156
1157 if (!prefixcmp(name, "heads/") ||
1158 !prefixcmp(name, "tags/") ||
1159 !prefixcmp(name, "remotes/")) {
1160 ret = alloc_ref(strlen(name) + 6);
1161 sprintf(ret->name, "refs/%s", name);
1162 return ret;
1163 }
1164
1165 ret = alloc_ref(strlen(name) + 12);
1166 sprintf(ret->name, "refs/heads/%s", name);
1167 return ret;
1168}
1169
4577370e 1170int get_fetch_map(const struct ref *remote_refs,
d71ab174 1171 const struct refspec *refspec,
9ad7c5ae
JH
1172 struct ref ***tail,
1173 int missing_ok)
d71ab174 1174{
ef00d150 1175 struct ref *ref_map, **rmp;
d71ab174
DB
1176
1177 if (refspec->pattern) {
1178 ref_map = get_expanded_map(remote_refs, refspec);
1179 } else {
9ad7c5ae
JH
1180 const char *name = refspec->src[0] ? refspec->src : "HEAD";
1181
1182 ref_map = get_remote_ref(remote_refs, name);
1183 if (!missing_ok && !ref_map)
1184 die("Couldn't find remote ref %s", name);
1185 if (ref_map) {
1186 ref_map->peer_ref = get_local_ref(refspec->dst);
1187 if (ref_map->peer_ref && refspec->force)
1188 ref_map->peer_ref->force = 1;
1189 }
d71ab174
DB
1190 }
1191
ef00d150
DB
1192 for (rmp = &ref_map; *rmp; ) {
1193 if ((*rmp)->peer_ref) {
1194 int st = check_ref_format((*rmp)->peer_ref->name + 5);
1195 if (st && st != CHECK_REF_FORMAT_ONELEVEL) {
1196 struct ref *ignore = *rmp;
1197 error("* Ignoring funny ref '%s' locally",
1198 (*rmp)->peer_ref->name);
1199 *rmp = (*rmp)->next;
1200 free(ignore->peer_ref);
1201 free(ignore);
1202 continue;
1203 }
1204 }
1205 rmp = &((*rmp)->next);
d71ab174
DB
1206 }
1207
8f70a765
AR
1208 if (ref_map)
1209 tail_link_ref(ref_map, tail);
d71ab174
DB
1210
1211 return 0;
1212}
be885d96
DB
1213
1214int resolve_remote_symref(struct ref *ref, struct ref *list)
1215{
1216 if (!ref->symref)
1217 return 0;
1218 for (; list; list = list->next)
1219 if (!strcmp(ref->symref, list->name)) {
1220 hashcpy(ref->old_sha1, list->old_sha1);
1221 return 0;
1222 }
1223 return 1;
1224}