🌐 AI搜索 & 代理 主页
blob: 6e5c1a876f5044ffdea71531695ce04305b072f1 [file] [log] [blame]
Daniel Barkalow5751f492007-05-12 15:45:531#include "cache.h"
2#include "remote.h"
3#include "refs.h"
Junio C Hamano6d21bf92008-07-02 07:51:184#include "commit.h"
5#include "diff.h"
6#include "revision.h"
Alexander Potashev8ca12c02009-01-10 12:07:507#include "dir.h"
Jay Soffianec8452d2009-02-25 08:32:128#include "tag.h"
Julian Phillips73cf0822009-10-25 21:28:119#include "string-list.h"
Jeff Kinged81c762012-05-21 22:19:2810#include "mergesort.h"
Jeff King0b282cc2015-09-24 21:07:5811#include "argv-array.h"
Daniel Barkalow5751f492007-05-12 15:45:5312
Felipe Contreras6ddba5e2012-02-22 22:43:4113enum map_direction { FROM_SRC, FROM_DST };
14
Daniel Barkalowe0aaa292008-04-17 23:32:3515static struct refspec s_tag_refspec = {
16 0,
17 1,
Junio C Hamanob84c3432008-05-25 20:38:4418 0,
Junio C Hamano6e7b66e2013-01-29 22:02:1519 0,
Daniel Barkalow08fbdb32009-03-07 06:11:3620 "refs/tags/*",
21 "refs/tags/*"
Daniel Barkalowe0aaa292008-04-17 23:32:3522};
23
24const struct refspec *tag_refspec = &s_tag_refspec;
25
Junio C Hamano844112c2008-02-25 06:25:0426struct counted_string {
27 size_t len;
28 const char *s;
29};
Daniel Barkalow55029ae2008-02-20 18:43:5330struct rewrite {
31 const char *base;
Junio C Hamano844112c2008-02-25 06:25:0432 size_t baselen;
33 struct counted_string *instead_of;
Daniel Barkalow55029ae2008-02-20 18:43:5334 int instead_of_nr;
35 int instead_of_alloc;
36};
Josh Triplettd071d942009-09-07 08:56:0037struct rewrites {
38 struct rewrite **rewrite;
39 int rewrite_alloc;
40 int rewrite_nr;
41};
Daniel Barkalow55029ae2008-02-20 18:43:5342
Daniel Barkalow5751f492007-05-12 15:45:5343static struct remote **remotes;
Daniel Barkalow2d313472008-02-19 04:41:4144static int remotes_alloc;
45static int remotes_nr;
Patrick Reynoldsd0da0032014-07-29 14:43:3946static struct hashmap remotes_hash;
Daniel Barkalow5751f492007-05-12 15:45:5347
Daniel Barkalowcf818342007-09-11 03:02:5648static struct branch **branches;
Daniel Barkalow2d313472008-02-19 04:41:4149static int branches_alloc;
50static int branches_nr;
Daniel Barkalowcf818342007-09-11 03:02:5651
52static struct branch *current_branch;
Ramkumar Ramachandraf24f7152013-04-02 07:40:3253static const char *pushremote_name;
Daniel Barkalowcf818342007-09-11 03:02:5654
Josh Triplettd071d942009-09-07 08:56:0055static struct rewrites rewrites;
Josh Triplett1c2eafb2009-09-07 08:56:3356static struct rewrites rewrites_push;
Daniel Barkalow55029ae2008-02-20 18:43:5357
Daniel Barkalow0a4da292009-11-18 01:42:2358static int valid_remote(const struct remote *remote)
59{
Daniel Barkalowc578f512009-11-18 01:42:2560 return (!!remote->url) || (!!remote->foreign_vcs);
Daniel Barkalow0a4da292009-11-18 01:42:2361}
62
Josh Triplettd071d942009-09-07 08:56:0063static const char *alias_url(const char *url, struct rewrites *r)
Daniel Barkalow55029ae2008-02-20 18:43:5364{
65 int i, j;
Junio C Hamano844112c2008-02-25 06:25:0466 struct counted_string *longest;
67 int longest_i;
68
69 longest = NULL;
70 longest_i = -1;
Josh Triplettd071d942009-09-07 08:56:0071 for (i = 0; i < r->rewrite_nr; i++) {
72 if (!r->rewrite[i])
Daniel Barkalow55029ae2008-02-20 18:43:5373 continue;
Josh Triplettd071d942009-09-07 08:56:0074 for (j = 0; j < r->rewrite[i]->instead_of_nr; j++) {
Christian Couder59556542013-11-30 20:55:4075 if (starts_with(url, r->rewrite[i]->instead_of[j].s) &&
Junio C Hamano844112c2008-02-25 06:25:0476 (!longest ||
Josh Triplettd071d942009-09-07 08:56:0077 longest->len < r->rewrite[i]->instead_of[j].len)) {
78 longest = &(r->rewrite[i]->instead_of[j]);
Junio C Hamano844112c2008-02-25 06:25:0479 longest_i = i;
Daniel Barkalow55029ae2008-02-20 18:43:5380 }
81 }
82 }
Junio C Hamano844112c2008-02-25 06:25:0483 if (!longest)
84 return url;
85
Jeff King75faa452015-09-24 21:07:0386 return xstrfmt("%s%s", r->rewrite[longest_i]->base, url + longest->len);
Daniel Barkalow55029ae2008-02-20 18:43:5387}
88
Daniel Barkalow5751f492007-05-12 15:45:5389static void add_push_refspec(struct remote *remote, const char *ref)
90{
Daniel Barkalow2d313472008-02-19 04:41:4191 ALLOC_GROW(remote->push_refspec,
92 remote->push_refspec_nr + 1,
93 remote->push_refspec_alloc);
94 remote->push_refspec[remote->push_refspec_nr++] = ref;
Daniel Barkalow5751f492007-05-12 15:45:5395}
96
Daniel Barkalow5d46c9d2007-05-12 15:46:0397static void add_fetch_refspec(struct remote *remote, const char *ref)
98{
Daniel Barkalow2d313472008-02-19 04:41:4199 ALLOC_GROW(remote->fetch_refspec,
100 remote->fetch_refspec_nr + 1,
101 remote->fetch_refspec_alloc);
102 remote->fetch_refspec[remote->fetch_refspec_nr++] = ref;
Daniel Barkalow5d46c9d2007-05-12 15:46:03103}
104
Shawn O. Pearce28b91f82007-09-19 04:49:27105static void add_url(struct remote *remote, const char *url)
Daniel Barkalow5751f492007-05-12 15:45:53106{
Daniel Barkalow2d313472008-02-19 04:41:41107 ALLOC_GROW(remote->url, remote->url_nr + 1, remote->url_alloc);
108 remote->url[remote->url_nr++] = url;
Daniel Barkalow5751f492007-05-12 15:45:53109}
110
Michael J Gruber20346232009-06-09 16:01:34111static void add_pushurl(struct remote *remote, const char *pushurl)
112{
113 ALLOC_GROW(remote->pushurl, remote->pushurl_nr + 1, remote->pushurl_alloc);
114 remote->pushurl[remote->pushurl_nr++] = pushurl;
115}
116
Josh Triplett1c2eafb2009-09-07 08:56:33117static void add_pushurl_alias(struct remote *remote, const char *url)
118{
119 const char *pushurl = alias_url(url, &rewrites_push);
120 if (pushurl != url)
121 add_pushurl(remote, pushurl);
122}
123
124static void add_url_alias(struct remote *remote, const char *url)
125{
126 add_url(remote, alias_url(url, &rewrites));
127 add_pushurl_alias(remote, url);
128}
129
Patrick Reynoldsd0da0032014-07-29 14:43:39130struct remotes_hash_key {
131 const char *str;
132 int len;
133};
134
135static int remotes_hash_cmp(const struct remote *a, const struct remote *b, const struct remotes_hash_key *key)
136{
137 if (key)
138 return strncmp(a->name, key->str, key->len) || a->name[key->len];
139 else
140 return strcmp(a->name, b->name);
141}
142
143static inline void init_remotes_hash(void)
144{
145 if (!remotes_hash.cmpfn)
146 hashmap_init(&remotes_hash, (hashmap_cmp_fn)remotes_hash_cmp, 0);
147}
148
Daniel Barkalow5751f492007-05-12 15:45:53149static struct remote *make_remote(const char *name, int len)
150{
Patrick Reynoldsd0da0032014-07-29 14:43:39151 struct remote *ret, *replaced;
152 struct remotes_hash_key lookup;
153 struct hashmap_entry lookup_entry;
Daniel Barkalow5751f492007-05-12 15:45:53154
Patrick Reynoldsd0da0032014-07-29 14:43:39155 if (!len)
156 len = strlen(name);
157
158 init_remotes_hash();
159 lookup.str = name;
160 lookup.len = len;
161 hashmap_entry_init(&lookup_entry, memhash(name, len));
162
163 if ((ret = hashmap_get(&remotes_hash, &lookup_entry, &lookup)) != NULL)
164 return ret;
Daniel Barkalow5751f492007-05-12 15:45:53165
Daniel Barkalow2d313472008-02-19 04:41:41166 ret = xcalloc(1, sizeof(struct remote));
Michael Schubert737c5a92013-07-13 09:36:24167 ret->prune = -1; /* unspecified */
Daniel Barkalow2d313472008-02-19 04:41:41168 ALLOC_GROW(remotes, remotes_nr + 1, remotes_alloc);
169 remotes[remotes_nr++] = ret;
Patrick Reynoldsd0da0032014-07-29 14:43:39170 ret->name = xstrndup(name, len);
171
172 hashmap_entry_init(ret, lookup_entry.hash);
173 replaced = hashmap_put(&remotes_hash, ret);
174 assert(replaced == NULL); /* no previous entry overwritten */
Daniel Barkalow2d313472008-02-19 04:41:41175 return ret;
Daniel Barkalow5751f492007-05-12 15:45:53176}
177
Daniel Barkalowcf818342007-09-11 03:02:56178static void add_merge(struct branch *branch, const char *name)
179{
Daniel Barkalow2d313472008-02-19 04:41:41180 ALLOC_GROW(branch->merge_name, branch->merge_nr + 1,
181 branch->merge_alloc);
182 branch->merge_name[branch->merge_nr++] = name;
Daniel Barkalowcf818342007-09-11 03:02:56183}
184
185static struct branch *make_branch(const char *name, int len)
186{
Daniel Barkalow2d313472008-02-19 04:41:41187 struct branch *ret;
188 int i;
Daniel Barkalowcf818342007-09-11 03:02:56189
Daniel Barkalow2d313472008-02-19 04:41:41190 for (i = 0; i < branches_nr; i++) {
191 if (len ? (!strncmp(name, branches[i]->name, len) &&
192 !branches[i]->name[len]) :
193 !strcmp(name, branches[i]->name))
194 return branches[i];
Daniel Barkalowcf818342007-09-11 03:02:56195 }
196
Daniel Barkalow2d313472008-02-19 04:41:41197 ALLOC_GROW(branches, branches_nr + 1, branches_alloc);
198 ret = xcalloc(1, sizeof(struct branch));
199 branches[branches_nr++] = ret;
Daniel Barkalowcf818342007-09-11 03:02:56200 if (len)
Daniel Barkalow2d313472008-02-19 04:41:41201 ret->name = xstrndup(name, len);
Daniel Barkalowcf818342007-09-11 03:02:56202 else
Daniel Barkalow2d313472008-02-19 04:41:41203 ret->name = xstrdup(name);
Jeff Kingfa3f60b2014-06-18 20:02:13204 ret->refname = xstrfmt("refs/heads/%s", ret->name);
Daniel Barkalowcf818342007-09-11 03:02:56205
Daniel Barkalow2d313472008-02-19 04:41:41206 return ret;
Daniel Barkalowcf818342007-09-11 03:02:56207}
208
Josh Triplettd071d942009-09-07 08:56:00209static struct rewrite *make_rewrite(struct rewrites *r, const char *base, int len)
Daniel Barkalow55029ae2008-02-20 18:43:53210{
211 struct rewrite *ret;
212 int i;
213
Josh Triplettd071d942009-09-07 08:56:00214 for (i = 0; i < r->rewrite_nr; i++) {
Junio C Hamano844112c2008-02-25 06:25:04215 if (len
Josh Triplettd071d942009-09-07 08:56:00216 ? (len == r->rewrite[i]->baselen &&
217 !strncmp(base, r->rewrite[i]->base, len))
218 : !strcmp(base, r->rewrite[i]->base))
219 return r->rewrite[i];
Daniel Barkalow55029ae2008-02-20 18:43:53220 }
221
Josh Triplettd071d942009-09-07 08:56:00222 ALLOC_GROW(r->rewrite, r->rewrite_nr + 1, r->rewrite_alloc);
Daniel Barkalow55029ae2008-02-20 18:43:53223 ret = xcalloc(1, sizeof(struct rewrite));
Josh Triplettd071d942009-09-07 08:56:00224 r->rewrite[r->rewrite_nr++] = ret;
Junio C Hamano844112c2008-02-25 06:25:04225 if (len) {
Daniel Barkalow55029ae2008-02-20 18:43:53226 ret->base = xstrndup(base, len);
Junio C Hamano844112c2008-02-25 06:25:04227 ret->baselen = len;
228 }
229 else {
Daniel Barkalow55029ae2008-02-20 18:43:53230 ret->base = xstrdup(base);
Junio C Hamano844112c2008-02-25 06:25:04231 ret->baselen = strlen(base);
232 }
Daniel Barkalow55029ae2008-02-20 18:43:53233 return ret;
234}
235
236static void add_instead_of(struct rewrite *rewrite, const char *instead_of)
237{
238 ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc);
Junio C Hamano844112c2008-02-25 06:25:04239 rewrite->instead_of[rewrite->instead_of_nr].s = instead_of;
240 rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of);
241 rewrite->instead_of_nr++;
Daniel Barkalow55029ae2008-02-20 18:43:53242}
243
Jeff King0e265a92015-09-24 21:07:20244static const char *skip_spaces(const char *s)
245{
246 while (isspace(*s))
247 s++;
248 return s;
249}
250
Daniel Barkalow5751f492007-05-12 15:45:53251static void read_remotes_file(struct remote *remote)
252{
Jeff King0e265a92015-09-24 21:07:20253 struct strbuf buf = STRBUF_INIT;
Daniel Barkalow5751f492007-05-12 15:45:53254 FILE *f = fopen(git_path("remotes/%s", remote->name), "r");
255
256 if (!f)
257 return;
Miklos Vajna89cf4c72008-11-10 20:43:00258 remote->origin = REMOTE_REMOTES;
Jeff King0e265a92015-09-24 21:07:20259 while (strbuf_getline(&buf, f, '\n') != EOF) {
260 const char *v;
Daniel Barkalow5751f492007-05-12 15:45:53261
Jeff King0e265a92015-09-24 21:07:20262 strbuf_rtrim(&buf);
Daniel Barkalow5751f492007-05-12 15:45:53263
Jeff King0e265a92015-09-24 21:07:20264 if (skip_prefix(buf.buf, "URL:", &v))
265 add_url_alias(remote, xstrdup(skip_spaces(v)));
266 else if (skip_prefix(buf.buf, "Push:", &v))
267 add_push_refspec(remote, xstrdup(skip_spaces(v)));
268 else if (skip_prefix(buf.buf, "Pull:", &v))
269 add_fetch_refspec(remote, xstrdup(skip_spaces(v)));
Daniel Barkalow5751f492007-05-12 15:45:53270 }
Jeff King0e265a92015-09-24 21:07:20271 strbuf_release(&buf);
Daniel Barkalow5751f492007-05-12 15:45:53272 fclose(f);
273}
274
275static void read_branches_file(struct remote *remote)
276{
Daniel Barkalowcf818342007-09-11 03:02:56277 char *frag;
Jeff Kingf28e3ab2015-09-24 21:07:18278 struct strbuf buf = STRBUF_INIT;
279 FILE *f = fopen(git_path("branches/%s", remote->name), "r");
Daniel Barkalow5751f492007-05-12 15:45:53280
281 if (!f)
282 return;
Jeff Kingf28e3ab2015-09-24 21:07:18283
284 strbuf_getline(&buf, f, '\n');
Johannes Sixt0fb19902015-10-23 06:02:51285 fclose(f);
Jeff Kingf28e3ab2015-09-24 21:07:18286 strbuf_trim(&buf);
287 if (!buf.len) {
288 strbuf_release(&buf);
Daniel Barkalow5751f492007-05-12 15:45:53289 return;
Jeff Kingf28e3ab2015-09-24 21:07:18290 }
291
Miklos Vajna89cf4c72008-11-10 20:43:00292 remote->origin = REMOTE_BRANCHES;
Daniel Barkalow472fa4c2008-03-25 23:35:28293
294 /*
Ramkumar Ramachandra55cfde22013-06-22 07:58:12295 * The branches file would have URL and optionally
Daniel Barkalow472fa4c2008-03-25 23:35:28296 * #branch specified. The "master" (or specified) branch is
Jeff Kingf28e3ab2015-09-24 21:07:18297 * fetched and stored in the local branch matching the
298 * remote name.
Daniel Barkalow472fa4c2008-03-25 23:35:28299 */
Jeff Kingf28e3ab2015-09-24 21:07:18300 frag = strchr(buf.buf, '#');
301 if (frag)
Daniel Barkalowcf818342007-09-11 03:02:56302 *(frag++) = '\0';
Jeff Kingf28e3ab2015-09-24 21:07:18303 else
304 frag = "master";
Ramkumar Ramachandra55cfde22013-06-22 07:58:12305
Jeff Kingf28e3ab2015-09-24 21:07:18306 add_url_alias(remote, strbuf_detach(&buf, NULL));
307 add_fetch_refspec(remote, xstrfmt("refs/heads/%s:refs/heads/%s",
308 frag, remote->name));
309
Martin Koegler18afe102008-11-10 21:47:11310 /*
311 * Cogito compatible push: push current HEAD to remote #branch
312 * (master if missing)
313 */
Jeff Kingf28e3ab2015-09-24 21:07:18314 add_push_refspec(remote, xstrfmt("HEAD:refs/heads/%s", frag));
Daniel Barkalowd71ab172007-09-11 03:03:08315 remote->fetch_tags = 1; /* always auto-follow */
Daniel Barkalow5751f492007-05-12 15:45:53316}
317
Johannes Schindelinef90d6d2008-05-14 17:46:53318static int handle_config(const char *key, const char *value, void *cb)
Daniel Barkalow5751f492007-05-12 15:45:53319{
320 const char *name;
321 const char *subkey;
322 struct remote *remote;
Daniel Barkalowcf818342007-09-11 03:02:56323 struct branch *branch;
Christian Couder59556542013-11-30 20:55:40324 if (starts_with(key, "branch.")) {
Daniel Barkalowcf818342007-09-11 03:02:56325 name = key + 7;
326 subkey = strrchr(name, '.');
Daniel Barkalowcf818342007-09-11 03:02:56327 if (!subkey)
328 return 0;
Junio C Hamano896c0532007-12-15 04:34:56329 branch = make_branch(name, subkey - name);
Daniel Barkalowcf818342007-09-11 03:02:56330 if (!strcmp(subkey, ".remote")) {
Jeff Kinge41bf352015-05-01 22:44:41331 return git_config_string(&branch->remote_name, key, value);
Ramkumar Ramachandra9f765ce2013-04-02 07:40:34332 } else if (!strcmp(subkey, ".pushremote")) {
Jeff Kingda66b272015-05-21 04:45:20333 return git_config_string(&branch->pushremote_name, key, value);
Junio C Hamanod2370cc2008-02-11 19:00:10334 } else if (!strcmp(subkey, ".merge")) {
335 if (!value)
336 return config_error_nonbool(key);
Daniel Barkalowcf818342007-09-11 03:02:56337 add_merge(branch, xstrdup(value));
Junio C Hamanod2370cc2008-02-11 19:00:10338 }
Daniel Barkalowcf818342007-09-11 03:02:56339 return 0;
Daniel Barkalow5751f492007-05-12 15:45:53340 }
Christian Couder59556542013-11-30 20:55:40341 if (starts_with(key, "url.")) {
Daniel Barkalow55029ae2008-02-20 18:43:53342 struct rewrite *rewrite;
Daniel Barkalow60e3aba2008-04-12 19:32:00343 name = key + 4;
Daniel Barkalow55029ae2008-02-20 18:43:53344 subkey = strrchr(name, '.');
345 if (!subkey)
346 return 0;
Daniel Barkalow55029ae2008-02-20 18:43:53347 if (!strcmp(subkey, ".insteadof")) {
Josh Triplett1c2eafb2009-09-07 08:56:33348 rewrite = make_rewrite(&rewrites, name, subkey - name);
349 if (!value)
350 return config_error_nonbool(key);
351 add_instead_of(rewrite, xstrdup(value));
352 } else if (!strcmp(subkey, ".pushinsteadof")) {
353 rewrite = make_rewrite(&rewrites_push, name, subkey - name);
Daniel Barkalow55029ae2008-02-20 18:43:53354 if (!value)
355 return config_error_nonbool(key);
356 add_instead_of(rewrite, xstrdup(value));
357 }
358 }
Ramkumar Ramachandra224c2172013-04-02 07:40:33359
Christian Couder59556542013-11-30 20:55:40360 if (!starts_with(key, "remote."))
Daniel Barkalow5751f492007-05-12 15:45:53361 return 0;
362 name = key + 7;
Ramkumar Ramachandra224c2172013-04-02 07:40:33363
364 /* Handle remote.* variables */
365 if (!strcmp(name, "pushdefault"))
366 return git_config_string(&pushremote_name, key, value);
367
368 /* Handle remote.<name>.* variables */
Brandon Caseyc82efaf2008-10-14 20:30:21369 if (*name == '/') {
370 warning("Config remote shorthand cannot begin with '/': %s",
371 name);
372 return 0;
373 }
Daniel Barkalow5751f492007-05-12 15:45:53374 subkey = strrchr(name, '.');
375 if (!subkey)
Johannes Sixtcd294bc2009-04-23 13:49:05376 return 0;
Daniel Barkalow5751f492007-05-12 15:45:53377 remote = make_remote(name, subkey - name);
Miklos Vajna89cf4c72008-11-10 20:43:00378 remote->origin = REMOTE_CONFIG;
Paolo Bonzini84bb2df2008-04-17 11:17:20379 if (!strcmp(subkey, ".mirror"))
380 remote->mirror = git_config_bool(key, value);
381 else if (!strcmp(subkey, ".skipdefaultupdate"))
382 remote->skip_default_update = git_config_bool(key, value);
Björn Gustavsson7cc91a22009-11-09 20:11:06383 else if (!strcmp(subkey, ".skipfetchall"))
384 remote->skip_default_update = git_config_bool(key, value);
Michael Schubert737c5a92013-07-13 09:36:24385 else if (!strcmp(subkey, ".prune"))
386 remote->prune = git_config_bool(key, value);
Paolo Bonzini84bb2df2008-04-17 11:17:20387 else if (!strcmp(subkey, ".url")) {
388 const char *v;
389 if (git_config_string(&v, key, value))
390 return -1;
391 add_url(remote, v);
Michael J Gruber20346232009-06-09 16:01:34392 } else if (!strcmp(subkey, ".pushurl")) {
393 const char *v;
394 if (git_config_string(&v, key, value))
395 return -1;
396 add_pushurl(remote, v);
Daniel Barkalow5751f492007-05-12 15:45:53397 } else if (!strcmp(subkey, ".push")) {
Paolo Bonzini84bb2df2008-04-17 11:17:20398 const char *v;
399 if (git_config_string(&v, key, value))
400 return -1;
401 add_push_refspec(remote, v);
Daniel Barkalow5d46c9d2007-05-12 15:46:03402 } else if (!strcmp(subkey, ".fetch")) {
Paolo Bonzini84bb2df2008-04-17 11:17:20403 const char *v;
404 if (git_config_string(&v, key, value))
405 return -1;
406 add_fetch_refspec(remote, v);
Daniel Barkalow5751f492007-05-12 15:45:53407 } else if (!strcmp(subkey, ".receivepack")) {
Paolo Bonzini84bb2df2008-04-17 11:17:20408 const char *v;
409 if (git_config_string(&v, key, value))
410 return -1;
Daniel Barkalow5751f492007-05-12 15:45:53411 if (!remote->receivepack)
Paolo Bonzini84bb2df2008-04-17 11:17:20412 remote->receivepack = v;
Daniel Barkalow5751f492007-05-12 15:45:53413 else
414 error("more than one receivepack given, using the first");
Daniel Barkalow0012ba22007-09-11 03:02:51415 } else if (!strcmp(subkey, ".uploadpack")) {
Paolo Bonzini84bb2df2008-04-17 11:17:20416 const char *v;
417 if (git_config_string(&v, key, value))
418 return -1;
Daniel Barkalow0012ba22007-09-11 03:02:51419 if (!remote->uploadpack)
Paolo Bonzini84bb2df2008-04-17 11:17:20420 remote->uploadpack = v;
Daniel Barkalow0012ba22007-09-11 03:02:51421 else
422 error("more than one uploadpack given, using the first");
Daniel Barkalowd71ab172007-09-11 03:03:08423 } else if (!strcmp(subkey, ".tagopt")) {
424 if (!strcmp(value, "--no-tags"))
425 remote->fetch_tags = -1;
Samuel Tardieu944163a2010-04-19 23:31:25426 else if (!strcmp(value, "--tags"))
427 remote->fetch_tags = 2;
Sam Vilain14c98212007-12-03 21:48:54428 } else if (!strcmp(subkey, ".proxy")) {
Paolo Bonzini84bb2df2008-04-17 11:17:20429 return git_config_string((const char **)&remote->http_proxy,
430 key, value);
Daniel Barkalowc578f512009-11-18 01:42:25431 } else if (!strcmp(subkey, ".vcs")) {
432 return git_config_string(&remote->foreign_vcs, key, value);
Paolo Bonzini84bb2df2008-04-17 11:17:20433 }
Daniel Barkalow5751f492007-05-12 15:45:53434 return 0;
435}
436
Daniel Barkalow55029ae2008-02-20 18:43:53437static void alias_all_urls(void)
438{
439 int i, j;
440 for (i = 0; i < remotes_nr; i++) {
Josh Triplett1c2eafb2009-09-07 08:56:33441 int add_pushurl_aliases;
Daniel Barkalow55029ae2008-02-20 18:43:53442 if (!remotes[i])
443 continue;
Michael J Gruber20346232009-06-09 16:01:34444 for (j = 0; j < remotes[i]->pushurl_nr; j++) {
Josh Triplettd071d942009-09-07 08:56:00445 remotes[i]->pushurl[j] = alias_url(remotes[i]->pushurl[j], &rewrites);
Michael J Gruber20346232009-06-09 16:01:34446 }
Josh Triplett1c2eafb2009-09-07 08:56:33447 add_pushurl_aliases = remotes[i]->pushurl_nr == 0;
448 for (j = 0; j < remotes[i]->url_nr; j++) {
449 if (add_pushurl_aliases)
450 add_pushurl_alias(remotes[i], remotes[i]->url[j]);
451 remotes[i]->url[j] = alias_url(remotes[i]->url[j], &rewrites);
452 }
Daniel Barkalow55029ae2008-02-20 18:43:53453 }
454}
455
Daniel Barkalow5751f492007-05-12 15:45:53456static void read_config(void)
457{
Jeff Kinge41bf352015-05-01 22:44:41458 static int loaded;
brian m. carlsonfcd30b12015-11-10 02:22:30459 struct object_id oid;
Daniel Barkalow5751f492007-05-12 15:45:53460 const char *head_ref;
461 int flag;
Jeff Kinge41bf352015-05-01 22:44:41462
463 if (loaded)
Daniel Barkalow5751f492007-05-12 15:45:53464 return;
Jeff Kinge41bf352015-05-01 22:44:41465 loaded = 1;
466
Daniel Barkalow5751f492007-05-12 15:45:53467 current_branch = NULL;
brian m. carlsonfcd30b12015-11-10 02:22:30468 head_ref = resolve_ref_unsafe("HEAD", 0, oid.hash, &flag);
Daniel Barkalow5751f492007-05-12 15:45:53469 if (head_ref && (flag & REF_ISSYMREF) &&
Jeff King95b567c2014-06-18 19:48:29470 skip_prefix(head_ref, "refs/heads/", &head_ref)) {
471 current_branch = make_branch(head_ref, 0);
Daniel Barkalow5751f492007-05-12 15:45:53472 }
Johannes Schindelinef90d6d2008-05-14 17:46:53473 git_config(handle_config, NULL);
Daniel Barkalow55029ae2008-02-20 18:43:53474 alias_all_urls();
Daniel Barkalow5751f492007-05-12 15:45:53475}
476
Junio C Hamano47c6ef12008-07-27 06:15:51477/*
Brandon Casey2cb1f362008-08-22 00:16:30478 * This function frees a refspec array.
479 * Warning: code paths should be checked to ensure that the src
480 * and dst pointers are always freeable pointers as well
481 * as the refspec pointer itself.
482 */
Nanako Shiraishi697d7f52008-09-25 09:41:00483static void free_refspecs(struct refspec *refspec, int nr_refspec)
Brandon Casey2cb1f362008-08-22 00:16:30484{
485 int i;
486
487 if (!refspec)
488 return;
489
490 for (i = 0; i < nr_refspec; i++) {
491 free(refspec[i].src);
492 free(refspec[i].dst);
493 }
494 free(refspec);
495}
496
Jonas Fonseca24b61772008-04-13 09:56:54497static struct refspec *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
Daniel Barkalow6b628162007-05-12 15:45:59498{
499 int i;
Brian Gesiakda7a4782014-05-26 15:33:55500 struct refspec *rs = xcalloc(nr_refspec, sizeof(*rs));
Junio C Hamano46220ca2008-03-21 06:34:37501
Daniel Barkalow6b628162007-05-12 15:45:59502 for (i = 0; i < nr_refspec; i++) {
Junio C Hamano47c6ef12008-07-27 06:15:51503 size_t llen;
Junio C Hamano46220ca2008-03-21 06:34:37504 int is_glob;
505 const char *lhs, *rhs;
Michael Haggerty8d9c5012011-09-15 21:10:25506 int flags;
Junio C Hamano46220ca2008-03-21 06:34:37507
Benjamin Kramer8e76bf32009-03-13 12:51:33508 is_glob = 0;
Junio C Hamano46220ca2008-03-21 06:34:37509
510 lhs = refspec[i];
511 if (*lhs == '+') {
Daniel Barkalow6b628162007-05-12 15:45:59512 rs[i].force = 1;
Junio C Hamano46220ca2008-03-21 06:34:37513 lhs++;
Daniel Barkalow6b628162007-05-12 15:45:59514 }
Junio C Hamano46220ca2008-03-21 06:34:37515
516 rhs = strrchr(lhs, ':');
Paolo Bonzinia83619d2008-04-28 15:32:12517
518 /*
519 * Before going on, special case ":" (or "+:") as a refspec
Junio C Hamanodef24992013-01-29 20:58:50520 * for pushing matching refs.
Paolo Bonzinia83619d2008-04-28 15:32:12521 */
522 if (!fetch && rhs == lhs && rhs[1] == '\0') {
523 rs[i].matching = 1;
524 continue;
525 }
526
Junio C Hamano46220ca2008-03-21 06:34:37527 if (rhs) {
Junio C Hamano47c6ef12008-07-27 06:15:51528 size_t rlen = strlen(++rhs);
Daniel Barkalowabd2bde2009-03-07 06:11:39529 is_glob = (1 <= rlen && strchr(rhs, '*'));
Daniel Barkalow08fbdb32009-03-07 06:11:36530 rs[i].dst = xstrndup(rhs, rlen);
Junio C Hamano46220ca2008-03-21 06:34:37531 }
532
533 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
Daniel Barkalowabd2bde2009-03-07 06:11:39534 if (1 <= llen && memchr(lhs, '*', llen)) {
Junio C Hamano7d19da42008-03-26 04:15:52535 if ((rhs && !is_glob) || (!rhs && fetch))
536 goto invalid;
537 is_glob = 1;
Junio C Hamano7d19da42008-03-26 04:15:52538 } else if (rhs && is_glob) {
539 goto invalid;
Junio C Hamano46220ca2008-03-21 06:34:37540 }
Junio C Hamano7d19da42008-03-26 04:15:52541
Junio C Hamano46220ca2008-03-21 06:34:37542 rs[i].pattern = is_glob;
543 rs[i].src = xstrndup(lhs, llen);
Michael Haggerty8d9c5012011-09-15 21:10:25544 flags = REFNAME_ALLOW_ONELEVEL | (is_glob ? REFNAME_REFSPEC_PATTERN : 0);
Junio C Hamano46220ca2008-03-21 06:34:37545
546 if (fetch) {
brian m. carlsonfcd30b12015-11-10 02:22:30547 struct object_id unused;
Junio C Hamano6e7b66e2013-01-29 22:02:15548
Junio C Hamanodef24992013-01-29 20:58:50549 /* LHS */
Junio C Hamano46220ca2008-03-21 06:34:37550 if (!*rs[i].src)
Junio C Hamanodef24992013-01-29 20:58:50551 ; /* empty is ok; it means "HEAD" */
brian m. carlsonfcd30b12015-11-10 02:22:30552 else if (llen == GIT_SHA1_HEXSZ && !get_oid_hex(rs[i].src, &unused))
Junio C Hamano6e7b66e2013-01-29 22:02:15553 rs[i].exact_sha1 = 1; /* ok */
Junio C Hamanodef24992013-01-29 20:58:50554 else if (!check_refname_format(rs[i].src, flags))
555 ; /* valid looking ref is ok */
556 else
Michael Haggerty8d9c5012011-09-15 21:10:25557 goto invalid;
Junio C Hamanodef24992013-01-29 20:58:50558 /* RHS */
Michael Haggerty8d9c5012011-09-15 21:10:25559 if (!rs[i].dst)
Junio C Hamanodef24992013-01-29 20:58:50560 ; /* missing is ok; it is the same as empty */
Michael Haggerty8d9c5012011-09-15 21:10:25561 else if (!*rs[i].dst)
Junio C Hamanodef24992013-01-29 20:58:50562 ; /* empty is ok; it means "do not store" */
563 else if (!check_refname_format(rs[i].dst, flags))
564 ; /* valid looking ref is ok */
565 else
Michael Haggerty8d9c5012011-09-15 21:10:25566 goto invalid;
Daniel Barkalow6b628162007-05-12 15:45:59567 } else {
Junio C Hamano46220ca2008-03-21 06:34:37568 /*
569 * LHS
570 * - empty is allowed; it means delete.
571 * - when wildcarded, it must be a valid looking ref.
572 * - otherwise, it must be an extended SHA-1, but
573 * there is no existing way to validate this.
574 */
575 if (!*rs[i].src)
576 ; /* empty is ok */
577 else if (is_glob) {
Michael Haggerty8d9c5012011-09-15 21:10:25578 if (check_refname_format(rs[i].src, flags))
Junio C Hamano46220ca2008-03-21 06:34:37579 goto invalid;
580 }
581 else
582 ; /* anything goes, for now */
583 /*
584 * RHS
585 * - missing is allowed, but LHS then must be a
586 * valid looking ref.
587 * - empty is not allowed.
588 * - otherwise it must be a valid looking ref.
589 */
590 if (!rs[i].dst) {
Michael Haggerty8d9c5012011-09-15 21:10:25591 if (check_refname_format(rs[i].src, flags))
Junio C Hamano46220ca2008-03-21 06:34:37592 goto invalid;
593 } else if (!*rs[i].dst) {
594 goto invalid;
595 } else {
Michael Haggerty8d9c5012011-09-15 21:10:25596 if (check_refname_format(rs[i].dst, flags))
Junio C Hamano46220ca2008-03-21 06:34:37597 goto invalid;
598 }
Daniel Barkalowef00d152008-03-18 02:05:23599 }
Daniel Barkalow6b628162007-05-12 15:45:59600 }
601 return rs;
Junio C Hamano46220ca2008-03-21 06:34:37602
603 invalid:
Jonas Fonseca24b61772008-04-13 09:56:54604 if (verify) {
Brandon Casey2cb1f362008-08-22 00:16:30605 /*
606 * nr_refspec must be greater than zero and i must be valid
607 * since it is only possible to reach this point from within
608 * the for loop above.
609 */
610 free_refspecs(rs, i+1);
Jonas Fonseca24b61772008-04-13 09:56:54611 return NULL;
612 }
Junio C Hamano46220ca2008-03-21 06:34:37613 die("Invalid refspec '%s'", refspec[i]);
614}
615
Jonas Fonseca24b61772008-04-13 09:56:54616int valid_fetch_refspec(const char *fetch_refspec_str)
617{
Jonas Fonseca24b61772008-04-13 09:56:54618 struct refspec *refspec;
619
Gary V. Vaughan66dbfd52010-05-14 09:31:33620 refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1);
Brandon Casey2cb1f362008-08-22 00:16:30621 free_refspecs(refspec, 1);
Jonas Fonseca24b61772008-04-13 09:56:54622 return !!refspec;
623}
624
Junio C Hamano46220ca2008-03-21 06:34:37625struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec)
626{
Jonas Fonseca24b61772008-04-13 09:56:54627 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
Junio C Hamano46220ca2008-03-21 06:34:37628}
629
Nanako Shiraishi697d7f52008-09-25 09:41:00630static struct refspec *parse_push_refspec(int nr_refspec, const char **refspec)
Junio C Hamano46220ca2008-03-21 06:34:37631{
Jonas Fonseca24b61772008-04-13 09:56:54632 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
Daniel Barkalow6b628162007-05-12 15:45:59633}
634
Daniel Barkalow72ff8942009-11-18 01:42:28635void free_refspec(int nr_refspec, struct refspec *refspec)
636{
637 int i;
638 for (i = 0; i < nr_refspec; i++) {
639 free(refspec[i].src);
640 free(refspec[i].dst);
641 }
642 free(refspec);
643}
644
Daniel Barkalowdf93e332008-02-15 19:14:18645static int valid_remote_nick(const char *name)
646{
Alexander Potashev8ca12c02009-01-10 12:07:50647 if (!name[0] || is_dot_or_dotdot(name))
Daniel Barkalowdf93e332008-02-15 19:14:18648 return 0;
649 return !strchr(name, '/'); /* no slash */
650}
651
Jeff Kingf0521542015-05-21 04:45:16652const char *remote_for_branch(struct branch *branch, int *explicit)
653{
654 if (branch && branch->remote_name) {
655 if (explicit)
656 *explicit = 1;
657 return branch->remote_name;
658 }
659 if (explicit)
660 *explicit = 0;
661 return "origin";
662}
663
Jeff Kingda66b272015-05-21 04:45:20664const char *pushremote_for_branch(struct branch *branch, int *explicit)
665{
666 if (branch && branch->pushremote_name) {
667 if (explicit)
668 *explicit = 1;
669 return branch->pushremote_name;
670 }
671 if (pushremote_name) {
672 if (explicit)
673 *explicit = 1;
674 return pushremote_name;
675 }
676 return remote_for_branch(branch, explicit);
677}
678
679static struct remote *remote_get_1(const char *name,
680 const char *(*get_default)(struct branch *, int *))
Daniel Barkalow5751f492007-05-12 15:45:53681{
682 struct remote *ret;
Daniel Barkalowfa685bd2009-03-11 05:47:20683 int name_given = 0;
Daniel Barkalow5751f492007-05-12 15:45:53684
Jeff King8770e6f2015-05-21 04:45:23685 read_config();
686
Daniel Barkalowfa685bd2009-03-11 05:47:20687 if (name)
688 name_given = 1;
Jeff Kingda66b272015-05-21 04:45:20689 else
690 name = get_default(current_branch, &name_given);
Junio C Hamano9326d492009-03-16 07:35:09691
Daniel Barkalow5751f492007-05-12 15:45:53692 ret = make_remote(name, 0);
Daniel Barkalowdf93e332008-02-15 19:14:18693 if (valid_remote_nick(name)) {
Daniel Barkalow0a4da292009-11-18 01:42:23694 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 15:45:53695 read_remotes_file(ret);
Daniel Barkalow0a4da292009-11-18 01:42:23696 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 15:45:53697 read_branches_file(ret);
698 }
Daniel Barkalow0a4da292009-11-18 01:42:23699 if (name_given && !valid_remote(ret))
Daniel Barkalow55029ae2008-02-20 18:43:53700 add_url_alias(ret, name);
Daniel Barkalow0a4da292009-11-18 01:42:23701 if (!valid_remote(ret))
Daniel Barkalow5751f492007-05-12 15:45:53702 return NULL;
Junio C Hamano46220ca2008-03-21 06:34:37703 ret->fetch = parse_fetch_refspec(ret->fetch_refspec_nr, ret->fetch_refspec);
704 ret->push = parse_push_refspec(ret->push_refspec_nr, ret->push_refspec);
Daniel Barkalow5751f492007-05-12 15:45:53705 return ret;
706}
Daniel Barkalow6b628162007-05-12 15:45:59707
Ramkumar Ramachandraf24f7152013-04-02 07:40:32708struct remote *remote_get(const char *name)
709{
Jeff Kingda66b272015-05-21 04:45:20710 return remote_get_1(name, remote_for_branch);
Ramkumar Ramachandraf24f7152013-04-02 07:40:32711}
712
713struct remote *pushremote_get(const char *name)
714{
Jeff Kingda66b272015-05-21 04:45:20715 return remote_get_1(name, pushremote_for_branch);
Ramkumar Ramachandraf24f7152013-04-02 07:40:32716}
717
Finn Arne Gangstad9a23ba32009-04-06 13:41:01718int remote_is_configured(const char *name)
719{
Patrick Reynoldsd0da0032014-07-29 14:43:39720 struct remotes_hash_key lookup;
721 struct hashmap_entry lookup_entry;
Finn Arne Gangstad9a23ba32009-04-06 13:41:01722 read_config();
723
Patrick Reynoldsd0da0032014-07-29 14:43:39724 init_remotes_hash();
725 lookup.str = name;
726 lookup.len = strlen(name);
727 hashmap_entry_init(&lookup_entry, memhash(name, lookup.len));
728
729 return hashmap_get(&remotes_hash, &lookup_entry, &lookup) != NULL;
Finn Arne Gangstad9a23ba32009-04-06 13:41:01730}
731
Johannes Schindelinb42f6922007-07-10 17:48:40732int for_each_remote(each_remote_fn fn, void *priv)
733{
734 int i, result = 0;
735 read_config();
Daniel Barkalow2d313472008-02-19 04:41:41736 for (i = 0; i < remotes_nr && !result; i++) {
Johannes Schindelinb42f6922007-07-10 17:48:40737 struct remote *r = remotes[i];
738 if (!r)
739 continue;
740 if (!r->fetch)
Junio C Hamano46220ca2008-03-21 06:34:37741 r->fetch = parse_fetch_refspec(r->fetch_refspec_nr,
742 r->fetch_refspec);
Johannes Schindelinb42f6922007-07-10 17:48:40743 if (!r->push)
Junio C Hamano46220ca2008-03-21 06:34:37744 r->push = parse_push_refspec(r->push_refspec_nr,
745 r->push_refspec);
Johannes Schindelinb42f6922007-07-10 17:48:40746 result = fn(r, priv);
747 }
748 return result;
749}
750
Michael Haggertydf02ebd2013-10-30 05:33:10751static void handle_duplicate(struct ref *ref1, struct ref *ref2)
752{
Michael Haggertyf096e6e2013-10-30 05:33:12753 if (strcmp(ref1->name, ref2->name)) {
754 if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
755 ref2->fetch_head_status != FETCH_HEAD_IGNORE) {
756 die(_("Cannot fetch both %s and %s to %s"),
757 ref1->name, ref2->name, ref2->peer_ref->name);
758 } else if (ref1->fetch_head_status != FETCH_HEAD_IGNORE &&
759 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
760 warning(_("%s usually tracks %s, not %s"),
761 ref2->peer_ref->name, ref2->name, ref1->name);
762 } else if (ref1->fetch_head_status == FETCH_HEAD_IGNORE &&
763 ref2->fetch_head_status == FETCH_HEAD_IGNORE) {
764 die(_("%s tracks both %s and %s"),
765 ref2->peer_ref->name, ref1->name, ref2->name);
766 } else {
767 /*
768 * This last possibility doesn't occur because
769 * FETCH_HEAD_IGNORE entries always appear at
770 * the end of the list.
771 */
772 die(_("Internal error"));
773 }
774 }
Michael Haggertydf02ebd2013-10-30 05:33:10775 free(ref2->peer_ref);
776 free(ref2);
777}
778
Michael Haggertyb9afe662013-10-30 05:33:09779struct ref *ref_remove_duplicates(struct ref *ref_map)
Daniel Barkalow2467a4f2007-10-08 04:25:07780{
Thiago Farina183113a2010-07-04 19:46:19781 struct string_list refs = STRING_LIST_INIT_NODUP;
Michael Haggertyb9afe662013-10-30 05:33:09782 struct ref *retval = NULL;
783 struct ref **p = &retval;
Julian Phillips73cf0822009-10-25 21:28:11784
Michael Haggertyb9afe662013-10-30 05:33:09785 while (ref_map) {
786 struct ref *ref = ref_map;
Julian Phillips73cf0822009-10-25 21:28:11787
Michael Haggertyb9afe662013-10-30 05:33:09788 ref_map = ref_map->next;
789 ref->next = NULL;
790
791 if (!ref->peer_ref) {
792 *p = ref;
793 p = &ref->next;
Michael Haggerty09ea1f82013-10-30 05:33:07794 } else {
Michael Haggertyb9afe662013-10-30 05:33:09795 struct string_list_item *item =
796 string_list_insert(&refs, ref->peer_ref->name);
797
798 if (item->util) {
799 /* Entry already existed */
Michael Haggertydf02ebd2013-10-30 05:33:10800 handle_duplicate((struct ref *)item->util, ref);
Michael Haggertyb9afe662013-10-30 05:33:09801 } else {
802 *p = ref;
803 p = &ref->next;
804 item->util = ref;
805 }
Daniel Barkalow2467a4f2007-10-08 04:25:07806 }
Daniel Barkalow2467a4f2007-10-08 04:25:07807 }
Michael Haggertyb9afe662013-10-30 05:33:09808
Julian Phillips73cf0822009-10-25 21:28:11809 string_list_clear(&refs, 0);
Michael Haggertyb9afe662013-10-30 05:33:09810 return retval;
Daniel Barkalow2467a4f2007-10-08 04:25:07811}
812
Shawn O. Pearce28b91f82007-09-19 04:49:27813int remote_has_url(struct remote *remote, const char *url)
Daniel Barkalow5d46c9d2007-05-12 15:46:03814{
815 int i;
Shawn O. Pearce28b91f82007-09-19 04:49:27816 for (i = 0; i < remote->url_nr; i++) {
817 if (!strcmp(remote->url[i], url))
Daniel Barkalow5d46c9d2007-05-12 15:46:03818 return 1;
819 }
820 return 0;
821}
822
Daniel Barkalowe9282132009-03-07 06:11:34823static int match_name_with_pattern(const char *key, const char *name,
824 const char *value, char **result)
Daniel Barkalowa3c84232009-03-07 06:11:29825{
Daniel Barkalow08fbdb32009-03-07 06:11:36826 const char *kstar = strchr(key, '*');
827 size_t klen;
Daniel Barkalowabd2bde2009-03-07 06:11:39828 size_t ksuffixlen;
829 size_t namelen;
Daniel Barkalow08fbdb32009-03-07 06:11:36830 int ret;
831 if (!kstar)
832 die("Key '%s' of pattern had no '*'", key);
833 klen = kstar - key;
Daniel Barkalowabd2bde2009-03-07 06:11:39834 ksuffixlen = strlen(kstar + 1);
835 namelen = strlen(name);
836 ret = !strncmp(name, key, klen) && namelen >= klen + ksuffixlen &&
837 !memcmp(name + namelen - ksuffixlen, kstar + 1, ksuffixlen);
Daniel Barkalowe9282132009-03-07 06:11:34838 if (ret && value) {
René Scharfe07bfa572014-09-21 08:23:37839 struct strbuf sb = STRBUF_INIT;
Daniel Barkalow08fbdb32009-03-07 06:11:36840 const char *vstar = strchr(value, '*');
Daniel Barkalow08fbdb32009-03-07 06:11:36841 if (!vstar)
842 die("Value '%s' of pattern has no '*'", value);
René Scharfe07bfa572014-09-21 08:23:37843 strbuf_add(&sb, value, vstar - value);
844 strbuf_add(&sb, name + klen, namelen - klen - ksuffixlen);
845 strbuf_addstr(&sb, vstar + 1);
846 *result = strbuf_detach(&sb, NULL);
Daniel Barkalowe9282132009-03-07 06:11:34847 }
Daniel Barkalowa3c84232009-03-07 06:11:29848 return ret;
849}
850
Carlos Martín Nietoe6f63712014-02-27 09:00:10851static void query_refspecs_multiple(struct refspec *refs, int ref_count, struct refspec *query, struct string_list *results)
852{
853 int i;
854 int find_src = !query->src;
855
856 if (find_src && !query->dst)
857 error("query_refspecs_multiple: need either src or dst");
858
859 for (i = 0; i < ref_count; i++) {
860 struct refspec *refspec = &refs[i];
861 const char *key = find_src ? refspec->dst : refspec->src;
862 const char *value = find_src ? refspec->src : refspec->dst;
863 const char *needle = find_src ? query->dst : query->src;
864 char **result = find_src ? &query->src : &query->dst;
865
866 if (!refspec->dst)
867 continue;
868 if (refspec->pattern) {
869 if (match_name_with_pattern(key, needle, value, result))
870 string_list_append_nodup(results, *result);
871 } else if (!strcmp(needle, key)) {
872 string_list_append(results, value);
873 }
874 }
875}
876
Junio C Hamanoca024652013-12-03 23:41:15877int query_refspecs(struct refspec *refs, int ref_count, struct refspec *query)
Daniel Barkalow72ff8942009-11-18 01:42:28878{
879 int i;
Carlos Martín Nietoc5003522011-10-15 05:04:24880 int find_src = !query->src;
Michael Haggerty049bff82013-10-30 05:33:01881 const char *needle = find_src ? query->dst : query->src;
882 char **result = find_src ? &query->src : &query->dst;
Daniel Barkalow72ff8942009-11-18 01:42:28883
Carlos Martín Nietoc5003522011-10-15 05:04:24884 if (find_src && !query->dst)
885 return error("query_refspecs: need either src or dst");
Johannes Schindelinb42f6922007-07-10 17:48:40886
Carlos Martín Nietoc5003522011-10-15 05:04:24887 for (i = 0; i < ref_count; i++) {
888 struct refspec *refspec = &refs[i];
889 const char *key = find_src ? refspec->dst : refspec->src;
890 const char *value = find_src ? refspec->src : refspec->dst;
Carlos Martín Nietoc5003522011-10-15 05:04:24891
Shawn O. Pearce009c5bc2007-09-25 04:13:14892 if (!refspec->dst)
Daniel Barkalow5d46c9d2007-05-12 15:46:03893 continue;
Carlos Martín Nietoc5003522011-10-15 05:04:24894 if (refspec->pattern) {
Daniel Barkalowe9282132009-03-07 06:11:34895 if (match_name_with_pattern(key, needle, value, result)) {
Carlos Martín Nietoc5003522011-10-15 05:04:24896 query->force = refspec->force;
Daniel Barkalow5d46c9d2007-05-12 15:46:03897 return 0;
898 }
Johannes Schindelinb42f6922007-07-10 17:48:40899 } else if (!strcmp(needle, key)) {
900 *result = xstrdup(value);
Carlos Martín Nietoc5003522011-10-15 05:04:24901 query->force = refspec->force;
Johannes Schindelinb42f6922007-07-10 17:48:40902 return 0;
Daniel Barkalow5d46c9d2007-05-12 15:46:03903 }
904 }
Daniel Barkalow5d46c9d2007-05-12 15:46:03905 return -1;
906}
907
Carlos Martín Nietoc5003522011-10-15 05:04:24908char *apply_refspecs(struct refspec *refspecs, int nr_refspec,
909 const char *name)
910{
911 struct refspec query;
912
913 memset(&query, 0, sizeof(struct refspec));
914 query.src = (char *)name;
915
916 if (query_refspecs(refspecs, nr_refspec, &query))
917 return NULL;
918
919 return query.dst;
920}
921
922int remote_find_tracking(struct remote *remote, struct refspec *refspec)
923{
924 return query_refspecs(remote->fetch, remote->fetch_refspec_nr, refspec);
925}
926
René Scharfe80097682008-10-18 08:37:40927static struct ref *alloc_ref_with_prefix(const char *prefix, size_t prefixlen,
928 const char *name)
929{
930 size_t len = strlen(name);
Jeff King50a6c8e2016-02-22 22:44:35931 struct ref *ref = xcalloc(1, st_add4(sizeof(*ref), prefixlen, len, 1));
René Scharfe80097682008-10-18 08:37:40932 memcpy(ref->name, prefix, prefixlen);
933 memcpy(ref->name + prefixlen, name, len);
934 return ref;
935}
936
René Scharfe59c69c02008-10-18 08:44:18937struct ref *alloc_ref(const char *name)
Daniel Barkalowdfd255d2007-07-10 04:47:23938{
René Scharfe59c69c02008-10-18 08:44:18939 return alloc_ref_with_prefix("", 0, name);
Krzysztof Kowalczyk737922a2008-05-10 23:26:58940}
941
Jeff King59a57752011-06-07 23:03:03942struct ref *copy_ref(const struct ref *ref)
Daniel Barkalowd71ab172007-09-11 03:03:08943{
Jay Soffian7b3db092009-02-27 19:10:04944 struct ref *cpy;
945 size_t len;
946 if (!ref)
947 return NULL;
Jeff King50a6c8e2016-02-22 22:44:35948 len = st_add3(sizeof(struct ref), strlen(ref->name), 1);
949 cpy = xmalloc(len);
950 memcpy(cpy, ref, len);
Jay Soffian7b3db092009-02-27 19:10:04951 cpy->next = NULL;
Jeff King8c53f072015-01-13 01:59:09952 cpy->symref = xstrdup_or_null(ref->symref);
953 cpy->remote_status = xstrdup_or_null(ref->remote_status);
Jay Soffian7b3db092009-02-27 19:10:04954 cpy->peer_ref = copy_ref(ref->peer_ref);
955 return cpy;
Daniel Barkalowd71ab172007-09-11 03:03:08956}
957
Daniel Barkalow45773702007-10-30 01:05:40958struct ref *copy_ref_list(const struct ref *ref)
959{
960 struct ref *ret = NULL;
961 struct ref **tail = &ret;
962 while (ref) {
963 *tail = copy_ref(ref);
964 ref = ref->next;
965 tail = &((*tail)->next);
966 }
967 return ret;
968}
969
Nanako Shiraishi697d7f52008-09-25 09:41:00970static void free_ref(struct ref *ref)
Daniel Barkalowbe885d92008-04-26 19:53:12971{
972 if (!ref)
973 return;
Jay Soffian7b3db092009-02-27 19:10:04974 free_ref(ref->peer_ref);
Daniel Barkalowbe885d92008-04-26 19:53:12975 free(ref->remote_status);
976 free(ref->symref);
977 free(ref);
978}
979
Daniel Barkalowdfd255d2007-07-10 04:47:23980void free_refs(struct ref *ref)
981{
982 struct ref *next;
983 while (ref) {
984 next = ref->next;
Daniel Barkalowbe885d92008-04-26 19:53:12985 free_ref(ref);
Daniel Barkalowdfd255d2007-07-10 04:47:23986 ref = next;
987 }
988}
989
Jeff Kinged81c762012-05-21 22:19:28990int ref_compare_name(const void *va, const void *vb)
991{
992 const struct ref *a = va, *b = vb;
993 return strcmp(a->name, b->name);
994}
995
996static void *ref_list_get_next(const void *a)
997{
998 return ((const struct ref *)a)->next;
999}
1000
1001static void ref_list_set_next(void *a, void *next)
1002{
1003 ((struct ref *)a)->next = next;
1004}
1005
1006void sort_ref_list(struct ref **l, int (*cmp)(const void *, const void *))
1007{
1008 *l = llist_mergesort(*l, ref_list_get_next, ref_list_set_next, cmp);
1009}
1010
Junio C Hamanoca024652013-12-03 23:41:151011int count_refspec_match(const char *pattern,
1012 struct ref *refs,
1013 struct ref **matched_ref)
Daniel Barkalow6b628162007-05-12 15:45:591014{
1015 int patlen = strlen(pattern);
1016 struct ref *matched_weak = NULL;
1017 struct ref *matched = NULL;
1018 int weak_match = 0;
1019 int match = 0;
1020
1021 for (weak_match = match = 0; refs; refs = refs->next) {
1022 char *name = refs->name;
1023 int namelen = strlen(name);
Daniel Barkalow6b628162007-05-12 15:45:591024
Michael Haggerty54457fe2014-01-14 03:16:071025 if (!refname_match(pattern, name))
Daniel Barkalow6b628162007-05-12 15:45:591026 continue;
1027
1028 /* A match is "weak" if it is with refs outside
1029 * heads or tags, and did not specify the pattern
1030 * in full (e.g. "refs/remotes/origin/master") or at
1031 * least from the toplevel (e.g. "remotes/origin/master");
1032 * otherwise "git push $URL master" would result in
1033 * ambiguity between remotes/origin/master and heads/master
1034 * at the remote site.
1035 */
1036 if (namelen != patlen &&
1037 patlen != namelen - 5 &&
Christian Couder59556542013-11-30 20:55:401038 !starts_with(name, "refs/heads/") &&
1039 !starts_with(name, "refs/tags/")) {
Daniel Barkalow6b628162007-05-12 15:45:591040 /* We want to catch the case where only weak
1041 * matches are found and there are multiple
1042 * matches, and where more than one strong
1043 * matches are found, as ambiguous. One
1044 * strong match with zero or more weak matches
1045 * are acceptable as a unique match.
1046 */
1047 matched_weak = refs;
1048 weak_match++;
1049 }
1050 else {
1051 matched = refs;
1052 match++;
1053 }
1054 }
1055 if (!matched) {
Jeff King471fd3f2014-03-05 19:03:431056 if (matched_ref)
1057 *matched_ref = matched_weak;
Daniel Barkalow6b628162007-05-12 15:45:591058 return weak_match;
1059 }
1060 else {
Jeff King471fd3f2014-03-05 19:03:431061 if (matched_ref)
1062 *matched_ref = matched;
Daniel Barkalow6b628162007-05-12 15:45:591063 return match;
1064 }
1065}
1066
Daniel Barkalow1d735262007-07-10 04:47:261067static void tail_link_ref(struct ref *ref, struct ref ***tail)
Daniel Barkalow6b628162007-05-12 15:45:591068{
1069 **tail = ref;
Daniel Barkalow1d735262007-07-10 04:47:261070 while (ref->next)
1071 ref = ref->next;
Daniel Barkalow6b628162007-05-12 15:45:591072 *tail = &ref->next;
Daniel Barkalow6b628162007-05-12 15:45:591073}
1074
Felipe Contreras67655242012-02-22 22:43:401075static struct ref *alloc_delete_ref(void)
1076{
1077 struct ref *ref = alloc_ref("(delete)");
brian m. carlsonf4e54d02015-11-10 02:22:201078 oidclr(&ref->new_oid);
Felipe Contreras67655242012-02-22 22:43:401079 return ref;
1080}
1081
Jeff King471fd3f2014-03-05 19:03:431082static int try_explicit_object_name(const char *name,
1083 struct ref **match)
Daniel Barkalow6b628162007-05-12 15:45:591084{
brian m. carlsonfcd30b12015-11-10 02:22:301085 struct object_id oid;
Daniel Barkalow6b628162007-05-12 15:45:591086
Jeff King471fd3f2014-03-05 19:03:431087 if (!*name) {
1088 if (match)
1089 *match = alloc_delete_ref();
1090 return 0;
1091 }
1092
brian m. carlsonfcd30b12015-11-10 02:22:301093 if (get_sha1(name, oid.hash))
Jeff King471fd3f2014-03-05 19:03:431094 return -1;
1095
1096 if (match) {
1097 *match = alloc_ref(name);
brian m. carlsonfcd30b12015-11-10 02:22:301098 oidcpy(&(*match)->new_oid, &oid);
Jeff King471fd3f2014-03-05 19:03:431099 }
1100 return 0;
Daniel Barkalow6b628162007-05-12 15:45:591101}
1102
Daniel Barkalow1d735262007-07-10 04:47:261103static struct ref *make_linked_ref(const char *name, struct ref ***tail)
Junio C Hamano163f0ee2007-06-09 07:07:341104{
René Scharfe59c69c02008-10-18 08:44:181105 struct ref *ret = alloc_ref(name);
Daniel Barkalow1d735262007-07-10 04:47:261106 tail_link_ref(ret, tail);
1107 return ret;
Junio C Hamano163f0ee2007-06-09 07:07:341108}
1109
Jeff Kingf8aae122008-04-23 09:16:061110static char *guess_ref(const char *name, struct ref *peer)
1111{
1112 struct strbuf buf = STRBUF_INIT;
brian m. carlsonfcd30b12015-11-10 02:22:301113 struct object_id oid;
Jeff Kingf8aae122008-04-23 09:16:061114
Ronnie Sahlberg7695d112014-07-15 19:59:361115 const char *r = resolve_ref_unsafe(peer->name, RESOLVE_REF_READING,
brian m. carlsonfcd30b12015-11-10 02:22:301116 oid.hash, NULL);
Jeff Kingf8aae122008-04-23 09:16:061117 if (!r)
1118 return NULL;
1119
Christian Couder59556542013-11-30 20:55:401120 if (starts_with(r, "refs/heads/"))
Jeff Kingf8aae122008-04-23 09:16:061121 strbuf_addstr(&buf, "refs/heads/");
Christian Couder59556542013-11-30 20:55:401122 else if (starts_with(r, "refs/tags/"))
Jeff Kingf8aae122008-04-23 09:16:061123 strbuf_addstr(&buf, "refs/tags/");
1124 else
1125 return NULL;
1126
1127 strbuf_addstr(&buf, name);
1128 return strbuf_detach(&buf, NULL);
1129}
1130
Jeff Kingf7ade3d2014-03-05 19:03:211131static int match_explicit_lhs(struct ref *src,
1132 struct refspec *rs,
1133 struct ref **match,
1134 int *allocated_match)
1135{
1136 switch (count_refspec_match(rs->src, src, match)) {
1137 case 1:
Jeff King471fd3f2014-03-05 19:03:431138 if (allocated_match)
1139 *allocated_match = 0;
Jeff Kingf7ade3d2014-03-05 19:03:211140 return 0;
1141 case 0:
1142 /* The source could be in the get_sha1() format
1143 * not a reference name. :refs/other is a
1144 * way to delete 'other' ref at the remote end.
1145 */
Jeff King471fd3f2014-03-05 19:03:431146 if (try_explicit_object_name(rs->src, match) < 0)
Jeff Kingf7ade3d2014-03-05 19:03:211147 return error("src refspec %s does not match any.", rs->src);
Jeff King471fd3f2014-03-05 19:03:431148 if (allocated_match)
1149 *allocated_match = 1;
Jeff Kingf7ade3d2014-03-05 19:03:211150 return 0;
1151 default:
1152 return error("src refspec %s matches more than one.", rs->src);
1153 }
1154}
1155
Junio C Hamano54a8ad92007-06-09 06:22:581156static int match_explicit(struct ref *src, struct ref *dst,
1157 struct ref ***dst_tail,
Jeff King9a7bbd12008-06-16 16:15:021158 struct refspec *rs)
Junio C Hamano54a8ad92007-06-09 06:22:581159{
1160 struct ref *matched_src, *matched_dst;
Jeff Kingf7ade3d2014-03-05 19:03:211161 int allocated_src;
Junio C Hamano54a8ad92007-06-09 06:22:581162
1163 const char *dst_value = rs->dst;
Jeff Kingf8aae122008-04-23 09:16:061164 char *dst_guess;
Junio C Hamano54a8ad92007-06-09 06:22:581165
Paolo Bonzinia83619d2008-04-28 15:32:121166 if (rs->pattern || rs->matching)
Jeff King9a7bbd12008-06-16 16:15:021167 return 0;
Junio C Hamano54a8ad92007-06-09 06:22:581168
Junio C Hamano54a8ad92007-06-09 06:22:581169 matched_src = matched_dst = NULL;
Jeff Kingf7ade3d2014-03-05 19:03:211170 if (match_explicit_lhs(src, rs, &matched_src, &allocated_src) < 0)
1171 return -1;
Junio C Hamano3c8b7df2007-06-09 07:14:041172
Shawn O. Pearce4491e622007-09-25 04:13:251173 if (!dst_value) {
brian m. carlsonfcd30b12015-11-10 02:22:301174 struct object_id oid;
Daniel Barkalow9f0ea7e2008-02-20 17:54:051175 int flag;
1176
Ronnie Sahlberg7695d112014-07-15 19:59:361177 dst_value = resolve_ref_unsafe(matched_src->name,
1178 RESOLVE_REF_READING,
brian m. carlsonfcd30b12015-11-10 02:22:301179 oid.hash, &flag);
Daniel Barkalow9f0ea7e2008-02-20 17:54:051180 if (!dst_value ||
1181 ((flag & REF_ISSYMREF) &&
Christian Couder59556542013-11-30 20:55:401182 !starts_with(dst_value, "refs/heads/")))
Daniel Barkalow9f0ea7e2008-02-20 17:54:051183 die("%s cannot be resolved to branch.",
1184 matched_src->name);
Shawn O. Pearce4491e622007-09-25 04:13:251185 }
Junio C Hamano3c8b7df2007-06-09 07:14:041186
Junio C Hamano54a8ad92007-06-09 06:22:581187 switch (count_refspec_match(dst_value, dst, &matched_dst)) {
1188 case 1:
1189 break;
1190 case 0:
René Scharfe50e19a82014-06-06 17:24:481191 if (starts_with(dst_value, "refs/"))
Daniel Barkalow1d735262007-07-10 04:47:261192 matched_dst = make_linked_ref(dst_value, dst_tail);
brian m. carlsonf4e54d02015-11-10 02:22:201193 else if (is_null_oid(&matched_src->new_oid))
Jeff King5742c822012-07-03 18:04:391194 error("unable to delete '%s': remote ref does not exist",
1195 dst_value);
Brian Gianforcaroeeefa7c2009-09-01 05:35:101196 else if ((dst_guess = guess_ref(dst_value, matched_src)))
Jeff Kingf8aae122008-04-23 09:16:061197 matched_dst = make_linked_ref(dst_guess, dst_tail);
Junio C Hamano3c8b7df2007-06-09 07:14:041198 else
Jeff Kingf8aae122008-04-23 09:16:061199 error("unable to push to unqualified destination: %s\n"
1200 "The destination refspec neither matches an "
1201 "existing ref on the remote nor\n"
1202 "begins with refs/, and we are unable to "
1203 "guess a prefix based on the source ref.",
1204 dst_value);
Junio C Hamano54a8ad92007-06-09 06:22:581205 break;
1206 default:
Junio C Hamano3c8b7df2007-06-09 07:14:041207 matched_dst = NULL;
Junio C Hamano54a8ad92007-06-09 06:22:581208 error("dst refspec %s matches more than one.",
1209 dst_value);
1210 break;
1211 }
Jeff King9a7bbd12008-06-16 16:15:021212 if (!matched_dst)
1213 return -1;
1214 if (matched_dst->peer_ref)
1215 return error("dst ref %s receives from more than one src.",
Junio C Hamano54a8ad92007-06-09 06:22:581216 matched_dst->name);
Junio C Hamano54a8ad92007-06-09 06:22:581217 else {
Jeff Kingf7ade3d2014-03-05 19:03:211218 matched_dst->peer_ref = allocated_src ?
1219 matched_src :
1220 copy_ref(matched_src);
Junio C Hamano54a8ad92007-06-09 06:22:581221 matched_dst->force = rs->force;
1222 }
Jeff King9a7bbd12008-06-16 16:15:021223 return 0;
Junio C Hamano54a8ad92007-06-09 06:22:581224}
1225
Daniel Barkalow6b628162007-05-12 15:45:591226static int match_explicit_refs(struct ref *src, struct ref *dst,
1227 struct ref ***dst_tail, struct refspec *rs,
1228 int rs_nr)
1229{
1230 int i, errs;
Junio C Hamano54a8ad92007-06-09 06:22:581231 for (i = errs = 0; i < rs_nr; i++)
Jeff King9a7bbd12008-06-16 16:15:021232 errs += match_explicit(src, dst, dst_tail, &rs[i]);
1233 return errs;
Daniel Barkalow6b628162007-05-12 15:45:591234}
1235
Felipe Contrerasdb70a042012-02-22 22:43:391236static char *get_ref_match(const struct refspec *rs, int rs_nr, const struct ref *ref,
Felipe Contreras6ddba5e2012-02-22 22:43:411237 int send_mirror, int direction, const struct refspec **ret_pat)
Daniel Barkalow8558fd92007-05-25 05:20:561238{
Felipe Contrerasdb70a042012-02-22 22:43:391239 const struct refspec *pat;
1240 char *name;
Daniel Barkalow8558fd92007-05-25 05:20:561241 int i;
Paolo Bonzinia83619d2008-04-28 15:32:121242 int matching_refs = -1;
Daniel Barkalow8558fd92007-05-25 05:20:561243 for (i = 0; i < rs_nr; i++) {
Paolo Bonzinia83619d2008-04-28 15:32:121244 if (rs[i].matching &&
1245 (matching_refs == -1 || rs[i].force)) {
1246 matching_refs = i;
1247 continue;
1248 }
1249
Felipe Contrerasdb70a042012-02-22 22:43:391250 if (rs[i].pattern) {
1251 const char *dst_side = rs[i].dst ? rs[i].dst : rs[i].src;
Felipe Contreras6ddba5e2012-02-22 22:43:411252 int match;
1253 if (direction == FROM_SRC)
1254 match = match_name_with_pattern(rs[i].src, ref->name, dst_side, &name);
1255 else
1256 match = match_name_with_pattern(dst_side, ref->name, rs[i].src, &name);
1257 if (match) {
Felipe Contrerasdb70a042012-02-22 22:43:391258 matching_refs = i;
1259 break;
1260 }
1261 }
Daniel Barkalow8558fd92007-05-25 05:20:561262 }
Felipe Contrerasdb70a042012-02-22 22:43:391263 if (matching_refs == -1)
Paolo Bonzinia83619d2008-04-28 15:32:121264 return NULL;
Felipe Contrerasdb70a042012-02-22 22:43:391265
1266 pat = rs + matching_refs;
1267 if (pat->matching) {
1268 /*
1269 * "matching refs"; traditionally we pushed everything
1270 * including refs outside refs/heads/ hierarchy, but
1271 * that does not make much sense these days.
1272 */
Christian Couder59556542013-11-30 20:55:401273 if (!send_mirror && !starts_with(ref->name, "refs/heads/"))
Felipe Contrerasdb70a042012-02-22 22:43:391274 return NULL;
1275 name = xstrdup(ref->name);
1276 }
1277 if (ret_pat)
1278 *ret_pat = pat;
1279 return name;
Daniel Barkalow8558fd92007-05-25 05:20:561280}
1281
Clemens Buchacher6d2bf962009-05-31 14:26:481282static struct ref **tail_ref(struct ref **head)
1283{
1284 struct ref **tail = head;
1285 while (*tail)
1286 tail = &((*tail)->next);
1287 return tail;
1288}
1289
Junio C Hamanoc2aba152013-03-04 20:09:501290struct tips {
1291 struct commit **tip;
1292 int nr, alloc;
1293};
1294
brian m. carlsonfcd30b12015-11-10 02:22:301295static void add_to_tips(struct tips *tips, const struct object_id *oid)
Junio C Hamanoc2aba152013-03-04 20:09:501296{
1297 struct commit *commit;
1298
brian m. carlsonfcd30b12015-11-10 02:22:301299 if (is_null_oid(oid))
Junio C Hamanoc2aba152013-03-04 20:09:501300 return;
brian m. carlsonfcd30b12015-11-10 02:22:301301 commit = lookup_commit_reference_gently(oid->hash, 1);
Junio C Hamanoc2aba152013-03-04 20:09:501302 if (!commit || (commit->object.flags & TMP_MARK))
1303 return;
1304 commit->object.flags |= TMP_MARK;
1305 ALLOC_GROW(tips->tip, tips->nr + 1, tips->alloc);
1306 tips->tip[tips->nr++] = commit;
1307}
1308
1309static void add_missing_tags(struct ref *src, struct ref **dst, struct ref ***dst_tail)
1310{
1311 struct string_list dst_tag = STRING_LIST_INIT_NODUP;
1312 struct string_list src_tag = STRING_LIST_INIT_NODUP;
1313 struct string_list_item *item;
1314 struct ref *ref;
1315 struct tips sent_tips;
1316
1317 /*
1318 * Collect everything we know they would have at the end of
1319 * this push, and collect all tags they have.
1320 */
1321 memset(&sent_tips, 0, sizeof(sent_tips));
1322 for (ref = *dst; ref; ref = ref->next) {
1323 if (ref->peer_ref &&
brian m. carlsonf4e54d02015-11-10 02:22:201324 !is_null_oid(&ref->peer_ref->new_oid))
brian m. carlsonfcd30b12015-11-10 02:22:301325 add_to_tips(&sent_tips, &ref->peer_ref->new_oid);
Junio C Hamanoc2aba152013-03-04 20:09:501326 else
brian m. carlsonfcd30b12015-11-10 02:22:301327 add_to_tips(&sent_tips, &ref->old_oid);
Christian Couder59556542013-11-30 20:55:401328 if (starts_with(ref->name, "refs/tags/"))
Junio C Hamanoc2aba152013-03-04 20:09:501329 string_list_append(&dst_tag, ref->name);
1330 }
1331 clear_commit_marks_many(sent_tips.nr, sent_tips.tip, TMP_MARK);
1332
Michael Haggerty3383e192014-11-25 08:02:351333 string_list_sort(&dst_tag);
Junio C Hamanoc2aba152013-03-04 20:09:501334
1335 /* Collect tags they do not have. */
1336 for (ref = src; ref; ref = ref->next) {
Christian Couder59556542013-11-30 20:55:401337 if (!starts_with(ref->name, "refs/tags/"))
Junio C Hamanoc2aba152013-03-04 20:09:501338 continue; /* not a tag */
1339 if (string_list_has_string(&dst_tag, ref->name))
1340 continue; /* they already have it */
brian m. carlsonf4e54d02015-11-10 02:22:201341 if (sha1_object_info(ref->new_oid.hash, NULL) != OBJ_TAG)
Junio C Hamanoc2aba152013-03-04 20:09:501342 continue; /* be conservative */
1343 item = string_list_append(&src_tag, ref->name);
1344 item->util = ref;
1345 }
1346 string_list_clear(&dst_tag, 0);
1347
1348 /*
1349 * At this point, src_tag lists tags that are missing from
1350 * dst, and sent_tips lists the tips we are pushing or those
1351 * that we know they already have. An element in the src_tag
1352 * that is an ancestor of any of the sent_tips needs to be
1353 * sent to the other side.
1354 */
1355 if (sent_tips.nr) {
1356 for_each_string_list_item(item, &src_tag) {
1357 struct ref *ref = item->util;
1358 struct ref *dst_ref;
1359 struct commit *commit;
1360
brian m. carlsonf4e54d02015-11-10 02:22:201361 if (is_null_oid(&ref->new_oid))
Junio C Hamanoc2aba152013-03-04 20:09:501362 continue;
brian m. carlsonf4e54d02015-11-10 02:22:201363 commit = lookup_commit_reference_gently(ref->new_oid.hash, 1);
Junio C Hamanoc2aba152013-03-04 20:09:501364 if (!commit)
1365 /* not pushing a commit, which is not an error */
1366 continue;
1367
1368 /*
1369 * Is this tag, which they do not have, reachable from
1370 * any of the commits we are sending?
1371 */
1372 if (!in_merge_bases_many(commit, sent_tips.nr, sent_tips.tip))
1373 continue;
1374
1375 /* Add it in */
1376 dst_ref = make_linked_ref(ref->name, dst_tail);
brian m. carlsonf4e54d02015-11-10 02:22:201377 oidcpy(&dst_ref->new_oid, &ref->new_oid);
Junio C Hamanoc2aba152013-03-04 20:09:501378 dst_ref->peer_ref = copy_ref(ref);
1379 }
1380 }
1381 string_list_clear(&src_tag, 0);
1382 free(sent_tips.tip);
1383}
1384
Junio C Hamano47a59182013-07-08 20:56:531385struct ref *find_ref_by_name(const struct ref *list, const char *name)
1386{
1387 for ( ; list; list = list->next)
1388 if (!strcmp(list->name, name))
1389 return (struct ref *)list;
1390 return NULL;
1391}
1392
Brandon Caseyf1bd15a2013-07-08 08:58:391393static void prepare_ref_index(struct string_list *ref_index, struct ref *ref)
1394{
1395 for ( ; ref; ref = ref->next)
1396 string_list_append_nodup(ref_index, ref->name)->util = ref;
1397
Michael Haggerty3383e192014-11-25 08:02:351398 string_list_sort(ref_index);
Brandon Caseyf1bd15a2013-07-08 08:58:391399}
1400
Junio C Hamano54a8ad92007-06-09 06:22:581401/*
Jeff Kingba928c12014-03-05 19:04:541402 * Given only the set of local refs, sanity-check the set of push
1403 * refspecs. We can't catch all errors that match_push_refs would,
1404 * but we can catch some errors early before even talking to the
1405 * remote side.
1406 */
1407int check_push_refs(struct ref *src, int nr_refspec, const char **refspec_names)
1408{
1409 struct refspec *refspec = parse_push_refspec(nr_refspec, refspec_names);
1410 int ret = 0;
1411 int i;
1412
1413 for (i = 0; i < nr_refspec; i++) {
1414 struct refspec *rs = refspec + i;
1415
1416 if (rs->pattern || rs->matching)
1417 continue;
1418
1419 ret |= match_explicit_lhs(src, rs, NULL, NULL);
1420 }
1421
1422 free_refspec(nr_refspec, refspec);
1423 return ret;
1424}
1425
1426/*
Junio C Hamano29753cd2011-09-09 18:54:581427 * Given the set of refs the local repository has, the set of refs the
1428 * remote repository has, and the refspec used for push, determine
1429 * what remote refs we will update and with what value by setting
1430 * peer_ref (which object is being pushed) and force (if the push is
1431 * forced) in elements of "dst". The function may add new elements to
1432 * dst (e.g. pushing to a new branch, done in match_explicit_refs).
Junio C Hamano54a8ad92007-06-09 06:22:581433 */
Junio C Hamano29753cd2011-09-09 18:54:581434int match_push_refs(struct ref *src, struct ref **dst,
1435 int nr_refspec, const char **refspec, int flags)
Daniel Barkalow6b628162007-05-12 15:45:591436{
Paolo Bonzinia83619d2008-04-28 15:32:121437 struct refspec *rs;
Andy Whitcroft28b9d6e2007-11-09 23:32:101438 int send_all = flags & MATCH_REFS_ALL;
1439 int send_mirror = flags & MATCH_REFS_MIRROR;
Felipe Contreras6ddba5e2012-02-22 22:43:411440 int send_prune = flags & MATCH_REFS_PRUNE;
Jay Soffian5f48cb92009-02-25 08:32:171441 int errs;
Linus Torvalds2af202b2009-06-18 17:28:431442 static const char *default_refspec[] = { ":", NULL };
Felipe Contrerasb1d8b1f2012-02-22 22:43:381443 struct ref *ref, **dst_tail = tail_ref(dst);
Brandon Caseyf1bd15a2013-07-08 08:58:391444 struct string_list dst_ref_index = STRING_LIST_INIT_NODUP;
Daniel Barkalow6b628162007-05-12 15:45:591445
Paolo Bonzinia83619d2008-04-28 15:32:121446 if (!nr_refspec) {
1447 nr_refspec = 1;
1448 refspec = default_refspec;
1449 }
1450 rs = parse_push_refspec(nr_refspec, (const char **) refspec);
Clemens Buchacher6d2bf962009-05-31 14:26:481451 errs = match_explicit_refs(src, *dst, &dst_tail, rs, nr_refspec);
Daniel Barkalow6b628162007-05-12 15:45:591452
1453 /* pick the remainder */
Felipe Contrerasb1d8b1f2012-02-22 22:43:381454 for (ref = src; ref; ref = ref->next) {
Brandon Caseyf1bd15a2013-07-08 08:58:391455 struct string_list_item *dst_item;
Daniel Barkalow6b628162007-05-12 15:45:591456 struct ref *dst_peer;
Alex Riesen6e66bf32007-06-07 23:43:051457 const struct refspec *pat = NULL;
1458 char *dst_name;
Felipe Contrerasdb70a042012-02-22 22:43:391459
Felipe Contreras6ddba5e2012-02-22 22:43:411460 dst_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_SRC, &pat);
Felipe Contrerasdb70a042012-02-22 22:43:391461 if (!dst_name)
Paolo Bonzinia83619d2008-04-28 15:32:121462 continue;
1463
Brandon Caseyf1bd15a2013-07-08 08:58:391464 if (!dst_ref_index.nr)
1465 prepare_ref_index(&dst_ref_index, *dst);
1466
1467 dst_item = string_list_lookup(&dst_ref_index, dst_name);
1468 dst_peer = dst_item ? dst_item->util : NULL;
Paolo Bonzinia83619d2008-04-28 15:32:121469 if (dst_peer) {
1470 if (dst_peer->peer_ref)
1471 /* We're already sending something to this ref. */
1472 goto free_name;
Paolo Bonzinia83619d2008-04-28 15:32:121473 } else {
1474 if (pat->matching && !(send_all || send_mirror))
1475 /*
1476 * Remote doesn't have it, and we have no
1477 * explicit pattern, and we don't have
Justin Lebar01689902014-03-31 22:11:461478 * --all or --mirror.
Paolo Bonzinia83619d2008-04-28 15:32:121479 */
1480 goto free_name;
1481
Daniel Barkalow6b628162007-05-12 15:45:591482 /* Create a new one and link it */
Clemens Buchacher6d2bf962009-05-31 14:26:481483 dst_peer = make_linked_ref(dst_name, &dst_tail);
brian m. carlsonf4e54d02015-11-10 02:22:201484 oidcpy(&dst_peer->new_oid, &ref->new_oid);
Brandon Caseyf1bd15a2013-07-08 08:58:391485 string_list_insert(&dst_ref_index,
1486 dst_peer->name)->util = dst_peer;
Daniel Barkalow6b628162007-05-12 15:45:591487 }
Felipe Contrerasb1d8b1f2012-02-22 22:43:381488 dst_peer->peer_ref = copy_ref(ref);
Paolo Bonzinia83619d2008-04-28 15:32:121489 dst_peer->force = pat->force;
Alex Riesen6e66bf32007-06-07 23:43:051490 free_name:
1491 free(dst_name);
Daniel Barkalow6b628162007-05-12 15:45:591492 }
Junio C Hamanoc2aba152013-03-04 20:09:501493
Brandon Caseyf1bd15a2013-07-08 08:58:391494 string_list_clear(&dst_ref_index, 0);
1495
Junio C Hamanoc2aba152013-03-04 20:09:501496 if (flags & MATCH_REFS_FOLLOW_TAGS)
1497 add_missing_tags(src, dst, &dst_tail);
1498
Felipe Contreras6ddba5e2012-02-22 22:43:411499 if (send_prune) {
Brandon Caseyf1bd15a2013-07-08 08:58:391500 struct string_list src_ref_index = STRING_LIST_INIT_NODUP;
Felipe Contreras6ddba5e2012-02-22 22:43:411501 /* check for missing refs on the remote */
1502 for (ref = *dst; ref; ref = ref->next) {
1503 char *src_name;
1504
1505 if (ref->peer_ref)
1506 /* We're already sending something to this ref. */
1507 continue;
1508
1509 src_name = get_ref_match(rs, nr_refspec, ref, send_mirror, FROM_DST, NULL);
1510 if (src_name) {
Brandon Caseyf1bd15a2013-07-08 08:58:391511 if (!src_ref_index.nr)
1512 prepare_ref_index(&src_ref_index, src);
1513 if (!string_list_has_string(&src_ref_index,
1514 src_name))
Felipe Contreras6ddba5e2012-02-22 22:43:411515 ref->peer_ref = alloc_delete_ref();
1516 free(src_name);
1517 }
1518 }
Brandon Caseyf1bd15a2013-07-08 08:58:391519 string_list_clear(&src_ref_index, 0);
Felipe Contreras6ddba5e2012-02-22 22:43:411520 }
Jay Soffian5f48cb92009-02-25 08:32:171521 if (errs)
1522 return -1;
Daniel Barkalow6b628162007-05-12 15:45:591523 return 0;
1524}
Daniel Barkalowcf818342007-09-11 03:02:561525
Tay Ray Chuan20e8b462010-01-08 02:12:421526void set_ref_status_for_push(struct ref *remote_refs, int send_mirror,
Junio C Hamano631b5ef2013-07-08 21:42:401527 int force_update)
Tay Ray Chuan20e8b462010-01-08 02:12:421528{
1529 struct ref *ref;
1530
1531 for (ref = remote_refs; ref; ref = ref->next) {
Chris Rorvick8c5f6f72012-11-30 01:41:361532 int force_ref_update = ref->force || force_update;
Junio C Hamano631b5ef2013-07-08 21:42:401533 int reject_reason = 0;
Chris Rorvick8c5f6f72012-11-30 01:41:361534
Tay Ray Chuan20e8b462010-01-08 02:12:421535 if (ref->peer_ref)
brian m. carlsonf4e54d02015-11-10 02:22:201536 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
Tay Ray Chuan20e8b462010-01-08 02:12:421537 else if (!send_mirror)
1538 continue;
1539
brian m. carlsonf4e54d02015-11-10 02:22:201540 ref->deletion = is_null_oid(&ref->new_oid);
Tay Ray Chuan20e8b462010-01-08 02:12:421541 if (!ref->deletion &&
brian m. carlsonf4e54d02015-11-10 02:22:201542 !oidcmp(&ref->old_oid, &ref->new_oid)) {
Tay Ray Chuan20e8b462010-01-08 02:12:421543 ref->status = REF_STATUS_UPTODATE;
1544 continue;
1545 }
1546
Chris Rorvicka272b282012-11-30 01:41:401547 /*
Andrew Wheelerb2e93f82016-01-29 23:18:421548 * If the remote ref has moved and is now different
1549 * from what we expect, reject any push.
Junio C Hamano631b5ef2013-07-08 21:42:401550 *
1551 * It also is an error if the user told us to check
1552 * with the remote-tracking branch to find the value
1553 * to expect, but we did not have such a tracking
1554 * branch.
1555 */
1556 if (ref->expect_old_sha1) {
1557 if (ref->expect_old_no_trackback ||
brian m. carlsonf4e54d02015-11-10 02:22:201558 oidcmp(&ref->old_oid, &ref->old_oid_expect))
Junio C Hamano631b5ef2013-07-08 21:42:401559 reject_reason = REF_STATUS_REJECT_STALE;
Andrew Wheelerb2e93f82016-01-29 23:18:421560 else
1561 /* If the ref isn't stale then force the update. */
1562 force_ref_update = 1;
Junio C Hamano631b5ef2013-07-08 21:42:401563 }
1564
1565 /*
Andrew Wheelerb2e93f82016-01-29 23:18:421566 * If the update isn't already rejected then check
1567 * the usual "must fast-forward" rules.
Junio C Hamano631b5ef2013-07-08 21:42:401568 *
Junio C Hamano256b9d72013-01-16 21:02:271569 * Decide whether an individual refspec A:B can be
1570 * pushed. The push will succeed if any of the
1571 * following are true:
Tay Ray Chuan20e8b462010-01-08 02:12:421572 *
Chris Rorvicka272b282012-11-30 01:41:401573 * (1) the remote reference B does not exist
Tay Ray Chuan20e8b462010-01-08 02:12:421574 *
Chris Rorvicka272b282012-11-30 01:41:401575 * (2) the remote reference B is being removed (i.e.,
1576 * pushing :B where no source is specified)
Tay Ray Chuan20e8b462010-01-08 02:12:421577 *
Junio C Hamano256b9d72013-01-16 21:02:271578 * (3) the destination is not under refs/tags/, and
1579 * if the old and new value is a commit, the new
1580 * is a descendant of the old.
Tay Ray Chuan20e8b462010-01-08 02:12:421581 *
Chris Rorvicka272b282012-11-30 01:41:401582 * (4) it is forced using the +A:B notation, or by
1583 * passing the --force argument
Tay Ray Chuan20e8b462010-01-08 02:12:421584 */
1585
Andrew Wheelerb2e93f82016-01-29 23:18:421586 if (!reject_reason && !ref->deletion && !is_null_oid(&ref->old_oid)) {
Christian Couder59556542013-11-30 20:55:401587 if (starts_with(ref->name, "refs/tags/"))
Junio C Hamano631b5ef2013-07-08 21:42:401588 reject_reason = REF_STATUS_REJECT_ALREADY_EXISTS;
brian m. carlsonf4e54d02015-11-10 02:22:201589 else if (!has_object_file(&ref->old_oid))
Junio C Hamano631b5ef2013-07-08 21:42:401590 reject_reason = REF_STATUS_REJECT_FETCH_FIRST;
brian m. carlsonf4e54d02015-11-10 02:22:201591 else if (!lookup_commit_reference_gently(ref->old_oid.hash, 1) ||
1592 !lookup_commit_reference_gently(ref->new_oid.hash, 1))
Junio C Hamano631b5ef2013-07-08 21:42:401593 reject_reason = REF_STATUS_REJECT_NEEDS_FORCE;
brian m. carlson6f3d57b2015-11-10 02:22:251594 else if (!ref_newer(&ref->new_oid, &ref->old_oid))
Junio C Hamano631b5ef2013-07-08 21:42:401595 reject_reason = REF_STATUS_REJECT_NONFASTFORWARD;
Tay Ray Chuan20e8b462010-01-08 02:12:421596 }
Junio C Hamano631b5ef2013-07-08 21:42:401597
1598 /*
1599 * "--force" will defeat any rejection implemented
1600 * by the rules above.
1601 */
1602 if (!force_ref_update)
1603 ref->status = reject_reason;
1604 else if (reject_reason)
1605 ref->forced_update = 1;
Tay Ray Chuan20e8b462010-01-08 02:12:421606 }
1607}
1608
Junio C Hamano05e73682014-10-14 21:42:041609static void set_merge(struct branch *ret)
1610{
Jeff King9e3751d2015-05-21 04:45:131611 struct remote *remote;
Junio C Hamano05e73682014-10-14 21:42:041612 char *ref;
brian m. carlsonfcd30b12015-11-10 02:22:301613 struct object_id oid;
Junio C Hamano05e73682014-10-14 21:42:041614 int i;
1615
Jeff Kingee2499f2015-05-21 04:45:091616 if (!ret)
1617 return; /* no branch */
1618 if (ret->merge)
1619 return; /* already run */
1620 if (!ret->remote_name || !ret->merge_nr) {
1621 /*
1622 * no merge config; let's make sure we don't confuse callers
1623 * with a non-zero merge_nr but a NULL merge
1624 */
1625 ret->merge_nr = 0;
1626 return;
1627 }
1628
Jeff King9e3751d2015-05-21 04:45:131629 remote = remote_get(ret->remote_name);
1630
Junio C Hamano05e73682014-10-14 21:42:041631 ret->merge = xcalloc(ret->merge_nr, sizeof(*ret->merge));
1632 for (i = 0; i < ret->merge_nr; i++) {
1633 ret->merge[i] = xcalloc(1, sizeof(**ret->merge));
1634 ret->merge[i]->src = xstrdup(ret->merge_name[i]);
Jeff King9e3751d2015-05-21 04:45:131635 if (!remote_find_tracking(remote, ret->merge[i]) ||
Junio C Hamano05e73682014-10-14 21:42:041636 strcmp(ret->remote_name, "."))
1637 continue;
1638 if (dwim_ref(ret->merge_name[i], strlen(ret->merge_name[i]),
brian m. carlsonfcd30b12015-11-10 02:22:301639 oid.hash, &ref) == 1)
Junio C Hamano05e73682014-10-14 21:42:041640 ret->merge[i]->dst = ref;
1641 else
1642 ret->merge[i]->dst = xstrdup(ret->merge_name[i]);
1643 }
1644}
1645
Daniel Barkalowcf818342007-09-11 03:02:561646struct branch *branch_get(const char *name)
1647{
1648 struct branch *ret;
1649
1650 read_config();
1651 if (!name || !*name || !strcmp(name, "HEAD"))
1652 ret = current_branch;
1653 else
1654 ret = make_branch(name, 0);
Jeff Kingee2499f2015-05-21 04:45:091655 set_merge(ret);
Daniel Barkalowcf818342007-09-11 03:02:561656 return ret;
1657}
1658
1659int branch_has_merge_config(struct branch *branch)
1660{
1661 return branch && !!branch->merge;
1662}
1663
Shawn O. Pearce85682c12007-09-18 08:54:531664int branch_merge_matches(struct branch *branch,
1665 int i,
1666 const char *refname)
Daniel Barkalowcf818342007-09-11 03:02:561667{
Shawn O. Pearce85682c12007-09-18 08:54:531668 if (!branch || i < 0 || i >= branch->merge_nr)
Daniel Barkalowcf818342007-09-11 03:02:561669 return 0;
Michael Haggerty54457fe2014-01-14 03:16:071670 return refname_match(branch->merge[i]->src, refname);
Daniel Barkalowcf818342007-09-11 03:02:561671}
Daniel Barkalowd71ab172007-09-11 03:03:081672
Jeff King3a429d02015-05-21 04:45:321673__attribute((format (printf,2,3)))
1674static const char *error_buf(struct strbuf *err, const char *fmt, ...)
Jeff Kinga9f9f8c2015-05-21 04:45:281675{
Jeff King3a429d02015-05-21 04:45:321676 if (err) {
1677 va_list ap;
1678 va_start(ap, fmt);
1679 strbuf_vaddf(err, fmt, ap);
1680 va_end(ap);
1681 }
1682 return NULL;
1683}
1684
1685const char *branch_get_upstream(struct branch *branch, struct strbuf *err)
1686{
1687 if (!branch)
1688 return error_buf(err, _("HEAD does not point to a branch"));
Jeff King1ca41a12015-05-22 00:46:431689
1690 if (!branch->merge || !branch->merge[0]) {
1691 /*
1692 * no merge config; is it because the user didn't define any,
1693 * or because it is not a real branch, and get_branch
1694 * auto-vivified it?
1695 */
Jeff King3a429d02015-05-21 04:45:321696 if (!ref_exists(branch->refname))
1697 return error_buf(err, _("no such branch: '%s'"),
1698 branch->name);
Jeff King1ca41a12015-05-22 00:46:431699 return error_buf(err,
1700 _("no upstream configured for branch '%s'"),
1701 branch->name);
1702 }
1703
1704 if (!branch->merge[0]->dst)
Jeff King3a429d02015-05-21 04:45:321705 return error_buf(err,
1706 _("upstream branch '%s' not stored as a remote-tracking branch"),
1707 branch->merge[0]->src);
Jeff King3a429d02015-05-21 04:45:321708
Jeff Kinga9f9f8c2015-05-21 04:45:281709 return branch->merge[0]->dst;
1710}
1711
Jeff Kinge291c752015-05-21 04:45:361712static const char *tracking_for_push_dest(struct remote *remote,
1713 const char *refname,
1714 struct strbuf *err)
1715{
1716 char *ret;
1717
1718 ret = apply_refspecs(remote->fetch, remote->fetch_refspec_nr, refname);
1719 if (!ret)
1720 return error_buf(err,
1721 _("push destination '%s' on remote '%s' has no local tracking branch"),
1722 refname, remote->name);
1723 return ret;
1724}
1725
1726static const char *branch_get_push_1(struct branch *branch, struct strbuf *err)
1727{
1728 struct remote *remote;
1729
1730 if (!branch)
1731 return error_buf(err, _("HEAD does not point to a branch"));
1732
1733 remote = remote_get(pushremote_for_branch(branch, NULL));
1734 if (!remote)
1735 return error_buf(err,
1736 _("branch '%s' has no remote for pushing"),
1737 branch->name);
1738
1739 if (remote->push_refspec_nr) {
1740 char *dst;
1741 const char *ret;
1742
1743 dst = apply_refspecs(remote->push, remote->push_refspec_nr,
1744 branch->refname);
1745 if (!dst)
1746 return error_buf(err,
1747 _("push refspecs for '%s' do not include '%s'"),
1748 remote->name, branch->name);
1749
1750 ret = tracking_for_push_dest(remote, dst, err);
1751 free(dst);
1752 return ret;
1753 }
1754
1755 if (remote->mirror)
1756 return tracking_for_push_dest(remote, branch->refname, err);
1757
1758 switch (push_default) {
1759 case PUSH_DEFAULT_NOTHING:
1760 return error_buf(err, _("push has no destination (push.default is 'nothing')"));
1761
1762 case PUSH_DEFAULT_MATCHING:
1763 case PUSH_DEFAULT_CURRENT:
1764 return tracking_for_push_dest(remote, branch->refname, err);
1765
1766 case PUSH_DEFAULT_UPSTREAM:
1767 return branch_get_upstream(branch, err);
1768
1769 case PUSH_DEFAULT_UNSPECIFIED:
1770 case PUSH_DEFAULT_SIMPLE:
1771 {
1772 const char *up, *cur;
1773
1774 up = branch_get_upstream(branch, err);
1775 if (!up)
1776 return NULL;
1777 cur = tracking_for_push_dest(remote, branch->refname, err);
1778 if (!cur)
1779 return NULL;
1780 if (strcmp(cur, up))
1781 return error_buf(err,
1782 _("cannot resolve 'simple' push to a single destination"));
1783 return cur;
1784 }
1785 }
1786
1787 die("BUG: unhandled push situation");
1788}
1789
1790const char *branch_get_push(struct branch *branch, struct strbuf *err)
1791{
1792 if (!branch->push_tracking_ref)
1793 branch->push_tracking_ref = branch_get_push_1(branch, err);
1794 return branch->push_tracking_ref;
1795}
1796
Junio C Hamanof8fb9712012-12-11 21:00:521797static int ignore_symref_update(const char *refname)
1798{
brian m. carlsonfcd30b12015-11-10 02:22:301799 struct object_id oid;
Junio C Hamanof8fb9712012-12-11 21:00:521800 int flag;
1801
brian m. carlsonfcd30b12015-11-10 02:22:301802 if (!resolve_ref_unsafe(refname, 0, oid.hash, &flag))
Junio C Hamanof8fb9712012-12-11 21:00:521803 return 0; /* non-existing refs are OK */
1804 return (flag & REF_ISSYMREF);
1805}
1806
Michael Haggertyf166db22013-10-30 05:32:561807/*
1808 * Create and return a list of (struct ref) consisting of copies of
1809 * each remote_ref that matches refspec. refspec must be a pattern.
1810 * Fill in the copies' peer_ref to describe the local tracking refs to
1811 * which they map. Omit any references that would map to an existing
1812 * local symbolic ref.
1813 */
Daniel Barkalow45773702007-10-30 01:05:401814static struct ref *get_expanded_map(const struct ref *remote_refs,
Daniel Barkalowd71ab172007-09-11 03:03:081815 const struct refspec *refspec)
1816{
Daniel Barkalow45773702007-10-30 01:05:401817 const struct ref *ref;
Daniel Barkalowd71ab172007-09-11 03:03:081818 struct ref *ret = NULL;
1819 struct ref **tail = &ret;
1820
Daniel Barkalowd71ab172007-09-11 03:03:081821 for (ref = remote_refs; ref; ref = ref->next) {
Michael Haggertye31a17f2013-10-30 05:32:571822 char *expn_name = NULL;
1823
Daniel Barkalowd71ab172007-09-11 03:03:081824 if (strchr(ref->name, '^'))
1825 continue; /* a dereference item */
Daniel Barkalowe9282132009-03-07 06:11:341826 if (match_name_with_pattern(refspec->src, ref->name,
Junio C Hamanof8fb9712012-12-11 21:00:521827 refspec->dst, &expn_name) &&
1828 !ignore_symref_update(expn_name)) {
Daniel Barkalowd71ab172007-09-11 03:03:081829 struct ref *cpy = copy_ref(ref);
Daniel Barkalowd71ab172007-09-11 03:03:081830
Daniel Barkalowe9282132009-03-07 06:11:341831 cpy->peer_ref = alloc_ref(expn_name);
Daniel Barkalowd71ab172007-09-11 03:03:081832 if (refspec->force)
1833 cpy->peer_ref->force = 1;
1834 *tail = cpy;
1835 tail = &cpy->next;
1836 }
Michael Haggertye31a17f2013-10-30 05:32:571837 free(expn_name);
Daniel Barkalowd71ab172007-09-11 03:03:081838 }
1839
1840 return ret;
1841}
1842
Daniel Barkalow45773702007-10-30 01:05:401843static const struct ref *find_ref_by_name_abbrev(const struct ref *refs, const char *name)
Daniel Barkalowd71ab172007-09-11 03:03:081844{
Daniel Barkalow45773702007-10-30 01:05:401845 const struct ref *ref;
Daniel Barkalowd71ab172007-09-11 03:03:081846 for (ref = refs; ref; ref = ref->next) {
Michael Haggerty54457fe2014-01-14 03:16:071847 if (refname_match(name, ref->name))
Daniel Barkalowd71ab172007-09-11 03:03:081848 return ref;
1849 }
1850 return NULL;
1851}
1852
Daniel Barkalow45773702007-10-30 01:05:401853struct ref *get_remote_ref(const struct ref *remote_refs, const char *name)
Daniel Barkalowd71ab172007-09-11 03:03:081854{
Daniel Barkalow45773702007-10-30 01:05:401855 const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name);
Daniel Barkalowd71ab172007-09-11 03:03:081856
1857 if (!ref)
Junio C Hamano9ad7c5a2007-10-27 06:09:481858 return NULL;
Daniel Barkalowd71ab172007-09-11 03:03:081859
1860 return copy_ref(ref);
1861}
1862
1863static struct ref *get_local_ref(const char *name)
1864{
Clemens Buchacher3eb96992009-06-17 13:38:361865 if (!name || name[0] == '\0')
Daniel Barkalowd71ab172007-09-11 03:03:081866 return NULL;
1867
Christian Couder59556542013-11-30 20:55:401868 if (starts_with(name, "refs/"))
René Scharfe59c69c02008-10-18 08:44:181869 return alloc_ref(name);
Daniel Barkalowd71ab172007-09-11 03:03:081870
Christian Couder59556542013-11-30 20:55:401871 if (starts_with(name, "heads/") ||
1872 starts_with(name, "tags/") ||
1873 starts_with(name, "remotes/"))
René Scharfe80097682008-10-18 08:37:401874 return alloc_ref_with_prefix("refs/", 5, name);
Daniel Barkalowd71ab172007-09-11 03:03:081875
René Scharfe80097682008-10-18 08:37:401876 return alloc_ref_with_prefix("refs/heads/", 11, name);
Daniel Barkalowd71ab172007-09-11 03:03:081877}
1878
Daniel Barkalow45773702007-10-30 01:05:401879int get_fetch_map(const struct ref *remote_refs,
Daniel Barkalowd71ab172007-09-11 03:03:081880 const struct refspec *refspec,
Junio C Hamano9ad7c5a2007-10-27 06:09:481881 struct ref ***tail,
1882 int missing_ok)
Daniel Barkalowd71ab172007-09-11 03:03:081883{
Daniel Barkalowef00d152008-03-18 02:05:231884 struct ref *ref_map, **rmp;
Daniel Barkalowd71ab172007-09-11 03:03:081885
1886 if (refspec->pattern) {
1887 ref_map = get_expanded_map(remote_refs, refspec);
1888 } else {
Junio C Hamano9ad7c5a2007-10-27 06:09:481889 const char *name = refspec->src[0] ? refspec->src : "HEAD";
Daniel Barkalowd71ab172007-09-11 03:03:081890
Junio C Hamano6e7b66e2013-01-29 22:02:151891 if (refspec->exact_sha1) {
1892 ref_map = alloc_ref(name);
brian m. carlsonf4e54d02015-11-10 02:22:201893 get_oid_hex(name, &ref_map->old_oid);
Junio C Hamano6e7b66e2013-01-29 22:02:151894 } else {
1895 ref_map = get_remote_ref(remote_refs, name);
1896 }
Junio C Hamano9ad7c5a2007-10-27 06:09:481897 if (!missing_ok && !ref_map)
1898 die("Couldn't find remote ref %s", name);
1899 if (ref_map) {
1900 ref_map->peer_ref = get_local_ref(refspec->dst);
1901 if (ref_map->peer_ref && refspec->force)
1902 ref_map->peer_ref->force = 1;
1903 }
Daniel Barkalowd71ab172007-09-11 03:03:081904 }
1905
Daniel Barkalowef00d152008-03-18 02:05:231906 for (rmp = &ref_map; *rmp; ) {
1907 if ((*rmp)->peer_ref) {
Christian Couder59556542013-11-30 20:55:401908 if (!starts_with((*rmp)->peer_ref->name, "refs/") ||
Junio C Hamano5c08c1f2012-05-04 22:35:181909 check_refname_format((*rmp)->peer_ref->name, 0)) {
Daniel Barkalowef00d152008-03-18 02:05:231910 struct ref *ignore = *rmp;
1911 error("* Ignoring funny ref '%s' locally",
1912 (*rmp)->peer_ref->name);
1913 *rmp = (*rmp)->next;
1914 free(ignore->peer_ref);
1915 free(ignore);
1916 continue;
1917 }
1918 }
1919 rmp = &((*rmp)->next);
Daniel Barkalowd71ab172007-09-11 03:03:081920 }
1921
Alex Riesen8f70a762007-10-12 20:40:041922 if (ref_map)
1923 tail_link_ref(ref_map, tail);
Daniel Barkalowd71ab172007-09-11 03:03:081924
1925 return 0;
1926}
Daniel Barkalowbe885d92008-04-26 19:53:121927
1928int resolve_remote_symref(struct ref *ref, struct ref *list)
1929{
1930 if (!ref->symref)
1931 return 0;
1932 for (; list; list = list->next)
1933 if (!strcmp(ref->symref, list->name)) {
brian m. carlsonf4e54d02015-11-10 02:22:201934 oidcpy(&ref->old_oid, &list->old_oid);
Daniel Barkalowbe885d92008-04-26 19:53:121935 return 0;
1936 }
1937 return 1;
1938}
Junio C Hamano6d21bf92008-07-02 07:51:181939
Jay Soffianec8452d2009-02-25 08:32:121940static void unmark_and_free(struct commit_list *list, unsigned int mark)
1941{
1942 while (list) {
René Scharfee510ab82015-10-24 16:21:311943 struct commit *commit = pop_commit(&list);
1944 commit->object.flags &= ~mark;
Jay Soffianec8452d2009-02-25 08:32:121945 }
1946}
1947
brian m. carlson6f3d57b2015-11-10 02:22:251948int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid)
Jay Soffianec8452d2009-02-25 08:32:121949{
1950 struct object *o;
1951 struct commit *old, *new;
1952 struct commit_list *list, *used;
1953 int found = 0;
1954
Junio C Hamano75e5c0d2013-01-23 21:55:301955 /*
1956 * Both new and old must be commit-ish and new is descendant of
Jay Soffianec8452d2009-02-25 08:32:121957 * old. Otherwise we require --force.
1958 */
brian m. carlson6f3d57b2015-11-10 02:22:251959 o = deref_tag(parse_object(old_oid->hash), NULL, 0);
Jay Soffianec8452d2009-02-25 08:32:121960 if (!o || o->type != OBJ_COMMIT)
1961 return 0;
1962 old = (struct commit *) o;
1963
brian m. carlson6f3d57b2015-11-10 02:22:251964 o = deref_tag(parse_object(new_oid->hash), NULL, 0);
Jay Soffianec8452d2009-02-25 08:32:121965 if (!o || o->type != OBJ_COMMIT)
1966 return 0;
1967 new = (struct commit *) o;
1968
1969 if (parse_commit(new) < 0)
1970 return 0;
1971
1972 used = list = NULL;
1973 commit_list_insert(new, &list);
1974 while (list) {
1975 new = pop_most_recent_commit(&list, TMP_MARK);
1976 commit_list_insert(new, &used);
1977 if (new == old) {
1978 found = 1;
1979 break;
1980 }
1981 }
1982 unmark_and_free(list, TMP_MARK);
1983 unmark_and_free(used, TMP_MARK);
1984 return found;
1985}
1986
Junio C Hamano6d21bf92008-07-02 07:51:181987/*
Jiang Xinf2e08732013-08-26 07:02:481988 * Compare a branch with its upstream, and save their differences (number
Jeff King979cb242015-05-22 00:49:111989 * of commits) in *num_ours and *num_theirs. The name of the upstream branch
1990 * (or NULL if no upstream is defined) is returned via *upstream_name, if it
1991 * is not itself NULL.
Jiang Xinf2e08732013-08-26 07:02:481992 *
Jeff King979cb242015-05-22 00:49:111993 * Returns -1 if num_ours and num_theirs could not be filled in (e.g., no
1994 * upstream defined, or ref does not exist), 0 otherwise.
Junio C Hamano6d21bf92008-07-02 07:51:181995 */
Jeff King979cb242015-05-22 00:49:111996int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs,
1997 const char **upstream_name)
Junio C Hamano6d21bf92008-07-02 07:51:181998{
brian m. carlsonfcd30b12015-11-10 02:22:301999 struct object_id oid;
Junio C Hamano6d21bf92008-07-02 07:51:182000 struct commit *ours, *theirs;
Junio C Hamano6d21bf92008-07-02 07:51:182001 struct rev_info revs;
Jeff King0b282cc2015-09-24 21:07:582002 const char *base;
2003 struct argv_array argv = ARGV_ARRAY_INIT;
Junio C Hamano6d21bf92008-07-02 07:51:182004
Jiang Xinf2e08732013-08-26 07:02:482005 /* Cannot stat unless we are marked to build on top of somebody else. */
Jeff King3a429d02015-05-21 04:45:322006 base = branch_get_upstream(branch, NULL);
Jeff King979cb242015-05-22 00:49:112007 if (upstream_name)
2008 *upstream_name = base;
Jeff Kinga9f9f8c2015-05-21 04:45:282009 if (!base)
Jeff King979cb242015-05-22 00:49:112010 return -1;
Junio C Hamano6d21bf92008-07-02 07:51:182011
Jiang Xinf2e08732013-08-26 07:02:482012 /* Cannot stat if what we used to build on no longer exists */
brian m. carlsonfcd30b12015-11-10 02:22:302013 if (read_ref(base, oid.hash))
Jiang Xinf2e08732013-08-26 07:02:482014 return -1;
brian m. carlsonfcd30b12015-11-10 02:22:302015 theirs = lookup_commit_reference(oid.hash);
Junio C Hamano6d21bf92008-07-02 07:51:182016 if (!theirs)
Jiang Xinf2e08732013-08-26 07:02:482017 return -1;
Junio C Hamano6d21bf92008-07-02 07:51:182018
brian m. carlsonfcd30b12015-11-10 02:22:302019 if (read_ref(branch->refname, oid.hash))
Jiang Xinf2e08732013-08-26 07:02:482020 return -1;
brian m. carlsonfcd30b12015-11-10 02:22:302021 ours = lookup_commit_reference(oid.hash);
Junio C Hamano6d21bf92008-07-02 07:51:182022 if (!ours)
Jiang Xinf2e08732013-08-26 07:02:482023 return -1;
Junio C Hamano6d21bf92008-07-02 07:51:182024
2025 /* are we the same? */
Jiang Xinf2e08732013-08-26 07:02:482026 if (theirs == ours) {
2027 *num_theirs = *num_ours = 0;
Jeff King979cb242015-05-22 00:49:112028 return 0;
Jiang Xinf2e08732013-08-26 07:02:482029 }
Junio C Hamano6d21bf92008-07-02 07:51:182030
Junio C Hamano8fbf8792009-04-21 23:32:182031 /* Run "rev-list --left-right ours...theirs" internally... */
Jeff King0b282cc2015-09-24 21:07:582032 argv_array_push(&argv, ""); /* ignored */
2033 argv_array_push(&argv, "--left-right");
2034 argv_array_pushf(&argv, "%s...%s",
brian m. carlsonf2fd0762015-11-10 02:22:282035 oid_to_hex(&ours->object.oid),
2036 oid_to_hex(&theirs->object.oid));
Jeff King0b282cc2015-09-24 21:07:582037 argv_array_push(&argv, "--");
Junio C Hamano6d21bf92008-07-02 07:51:182038
2039 init_revisions(&revs, NULL);
Jeff King0b282cc2015-09-24 21:07:582040 setup_revisions(argv.argc, argv.argv, &revs, NULL);
Stefan Beller81c3ce32014-08-10 21:33:262041 if (prepare_revision_walk(&revs))
2042 die("revision walk setup failed");
Junio C Hamano6d21bf92008-07-02 07:51:182043
2044 /* ... and count the commits on each side. */
2045 *num_ours = 0;
2046 *num_theirs = 0;
2047 while (1) {
2048 struct commit *c = get_revision(&revs);
2049 if (!c)
2050 break;
2051 if (c->object.flags & SYMMETRIC_LEFT)
2052 (*num_ours)++;
2053 else
2054 (*num_theirs)++;
2055 }
Junio C Hamanoc0234b22008-07-03 19:09:482056
2057 /* clear object flags smudged by the above traversal */
2058 clear_commit_marks(ours, ALL_REV_FLAGS);
2059 clear_commit_marks(theirs, ALL_REV_FLAGS);
Jeff King0b282cc2015-09-24 21:07:582060
2061 argv_array_clear(&argv);
Jeff King979cb242015-05-22 00:49:112062 return 0;
Junio C Hamano6d21bf92008-07-02 07:51:182063}
2064
2065/*
2066 * Return true when there is anything to report, otherwise false.
2067 */
2068int format_tracking_info(struct branch *branch, struct strbuf *sb)
2069{
Jiang Xinf2e08732013-08-26 07:02:482070 int ours, theirs;
Jeff King979cb242015-05-22 00:49:112071 const char *full_base;
Stefan Beller2f50bab2014-08-10 19:43:332072 char *base;
Jiang Xinf2e08732013-08-26 07:02:482073 int upstream_is_gone = 0;
Junio C Hamano6d21bf92008-07-02 07:51:182074
Jeff King979cb242015-05-22 00:49:112075 if (stat_tracking_info(branch, &ours, &theirs, &full_base) < 0) {
2076 if (!full_base)
2077 return 0;
Jiang Xinf2e08732013-08-26 07:02:482078 upstream_is_gone = 1;
Jiang Xinf2e08732013-08-26 07:02:482079 }
Junio C Hamano6d21bf92008-07-02 07:51:182080
Jeff King979cb242015-05-22 00:49:112081 base = shorten_unambiguous_ref(full_base, 0);
Jiang Xinf2e08732013-08-26 07:02:482082 if (upstream_is_gone) {
2083 strbuf_addf(sb,
2084 _("Your branch is based on '%s', but the upstream is gone.\n"),
2085 base);
2086 if (advice_status_hints)
2087 strbuf_addf(sb,
2088 _(" (use \"git branch --unset-upstream\" to fixup)\n"));
Jiang Xinf2234592013-08-26 07:02:492089 } else if (!ours && !theirs) {
2090 strbuf_addf(sb,
2091 _("Your branch is up-to-date with '%s'.\n"),
2092 base);
Jiang Xinf2e08732013-08-26 07:02:482093 } else if (!theirs) {
Jiang Xin8a5b7492012-02-02 02:02:232094 strbuf_addf(sb,
2095 Q_("Your branch is ahead of '%s' by %d commit.\n",
2096 "Your branch is ahead of '%s' by %d commits.\n",
Jiang Xinf2e08732013-08-26 07:02:482097 ours),
2098 base, ours);
Jeff King491e3072012-12-03 06:16:572099 if (advice_status_hints)
2100 strbuf_addf(sb,
2101 _(" (use \"git push\" to publish your local commits)\n"));
Jiang Xinf2e08732013-08-26 07:02:482102 } else if (!ours) {
Jiang Xin8a5b7492012-02-02 02:02:232103 strbuf_addf(sb,
2104 Q_("Your branch is behind '%s' by %d commit, "
2105 "and can be fast-forwarded.\n",
2106 "Your branch is behind '%s' by %d commits, "
2107 "and can be fast-forwarded.\n",
Jiang Xinf2e08732013-08-26 07:02:482108 theirs),
2109 base, theirs);
Jeff King491e3072012-12-03 06:16:572110 if (advice_status_hints)
2111 strbuf_addf(sb,
2112 _(" (use \"git pull\" to update your local branch)\n"));
Matthieu Moyc190ced2012-11-15 10:45:002113 } else {
Jiang Xin8a5b7492012-02-02 02:02:232114 strbuf_addf(sb,
2115 Q_("Your branch and '%s' have diverged,\n"
2116 "and have %d and %d different commit each, "
2117 "respectively.\n",
2118 "Your branch and '%s' have diverged,\n"
2119 "and have %d and %d different commits each, "
2120 "respectively.\n",
Jiang Xinf2e08732013-08-26 07:02:482121 theirs),
2122 base, ours, theirs);
Jeff King491e3072012-12-03 06:16:572123 if (advice_status_hints)
2124 strbuf_addf(sb,
2125 _(" (use \"git pull\" to merge the remote branch into yours)\n"));
Matthieu Moyc190ced2012-11-15 10:45:002126 }
Stefan Beller2f50bab2014-08-10 19:43:332127 free(base);
Junio C Hamano6d21bf92008-07-02 07:51:182128 return 1;
2129}
Jay Soffian454e2022009-02-25 08:32:112130
Michael Haggerty455ade62015-05-25 18:39:012131static int one_local_ref(const char *refname, const struct object_id *oid,
2132 int flag, void *cb_data)
Jay Soffian454e2022009-02-25 08:32:112133{
2134 struct ref ***local_tail = cb_data;
2135 struct ref *ref;
Jay Soffian454e2022009-02-25 08:32:112136
2137 /* we already know it starts with refs/ to get here */
Michael Haggerty8d9c5012011-09-15 21:10:252138 if (check_refname_format(refname + 5, 0))
Jay Soffian454e2022009-02-25 08:32:112139 return 0;
2140
Jeff King96ffc062016-02-22 22:44:322141 ref = alloc_ref(refname);
brian m. carlsonf4e54d02015-11-10 02:22:202142 oidcpy(&ref->new_oid, oid);
Jay Soffian454e2022009-02-25 08:32:112143 **local_tail = ref;
2144 *local_tail = &ref->next;
2145 return 0;
2146}
2147
2148struct ref *get_local_heads(void)
2149{
Nguyễn Thái Ngọc Duy55f05662009-04-16 22:16:232150 struct ref *local_refs = NULL, **local_tail = &local_refs;
Michael Haggerty2b2a5be2015-05-25 18:38:282151
Jay Soffian454e2022009-02-25 08:32:112152 for_each_ref(one_local_ref, &local_tail);
2153 return local_refs;
2154}
Jay Soffian8ef51732009-02-25 08:32:132155
Jay Soffian4229f1f2009-02-27 19:10:052156struct ref *guess_remote_head(const struct ref *head,
2157 const struct ref *refs,
2158 int all)
Jay Soffian8ef51732009-02-25 08:32:132159{
Jay Soffian8ef51732009-02-25 08:32:132160 const struct ref *r;
Jay Soffian4229f1f2009-02-27 19:10:052161 struct ref *list = NULL;
2162 struct ref **tail = &list;
Jay Soffian8ef51732009-02-25 08:32:132163
Jay Soffian6cb4e6c2009-02-25 08:32:142164 if (!head)
Jay Soffian8ef51732009-02-25 08:32:132165 return NULL;
2166
Jeff Kingfbb074c2009-02-27 19:10:062167 /*
2168 * Some transports support directly peeking at
2169 * where HEAD points; if that is the case, then
2170 * we don't have to guess.
2171 */
2172 if (head->symref)
2173 return copy_ref(find_ref_by_name(refs, head->symref));
2174
Jay Soffian8ef51732009-02-25 08:32:132175 /* If refs/heads/master could be right, it is. */
Jay Soffian4229f1f2009-02-27 19:10:052176 if (!all) {
2177 r = find_ref_by_name(refs, "refs/heads/master");
brian m. carlsonf4e54d02015-11-10 02:22:202178 if (r && !oidcmp(&r->old_oid, &head->old_oid))
Jay Soffian4229f1f2009-02-27 19:10:052179 return copy_ref(r);
2180 }
Jay Soffian8ef51732009-02-25 08:32:132181
2182 /* Look for another ref that points there */
Jay Soffian4229f1f2009-02-27 19:10:052183 for (r = refs; r; r = r->next) {
Jeff King61adfd32011-06-03 05:11:132184 if (r != head &&
Christian Couder59556542013-11-30 20:55:402185 starts_with(r->name, "refs/heads/") &&
brian m. carlsonf4e54d02015-11-10 02:22:202186 !oidcmp(&r->old_oid, &head->old_oid)) {
Jay Soffian4229f1f2009-02-27 19:10:052187 *tail = copy_ref(r);
2188 tail = &((*tail)->next);
2189 if (!all)
2190 break;
2191 }
2192 }
Jay Soffian8ef51732009-02-25 08:32:132193
Jay Soffian4229f1f2009-02-27 19:10:052194 return list;
Jay Soffian8ef51732009-02-25 08:32:132195}
Jay Soffianf2ef6072009-11-10 05:03:312196
2197struct stale_heads_info {
Jay Soffianf2ef6072009-11-10 05:03:312198 struct string_list *ref_names;
2199 struct ref **stale_refs_tail;
Carlos Martín Nietoed43de62011-10-15 05:04:252200 struct refspec *refs;
2201 int ref_count;
Jay Soffianf2ef6072009-11-10 05:03:312202};
2203
Michael Haggerty455ade62015-05-25 18:39:012204static int get_stale_heads_cb(const char *refname, const struct object_id *oid,
2205 int flags, void *cb_data)
Jay Soffianf2ef6072009-11-10 05:03:312206{
2207 struct stale_heads_info *info = cb_data;
Carlos Martín Nietoe6f63712014-02-27 09:00:102208 struct string_list matches = STRING_LIST_INIT_DUP;
Carlos Martín Nietoed43de62011-10-15 05:04:252209 struct refspec query;
Carlos Martín Nietoe6f63712014-02-27 09:00:102210 int i, stale = 1;
Carlos Martín Nietoed43de62011-10-15 05:04:252211 memset(&query, 0, sizeof(struct refspec));
2212 query.dst = (char *)refname;
2213
Carlos Martín Nietoe6f63712014-02-27 09:00:102214 query_refspecs_multiple(info->refs, info->ref_count, &query, &matches);
2215 if (matches.nr == 0)
2216 goto clean_exit; /* No matches */
Carlos Martín Nietoed43de62011-10-15 05:04:252217
2218 /*
2219 * If we did find a suitable refspec and it's not a symref and
2220 * it's not in the list of refs that currently exist in that
Carlos Martín Nietoe6f63712014-02-27 09:00:102221 * remote, we consider it to be stale. In order to deal with
2222 * overlapping refspecs, we need to go over all of the
2223 * matching refs.
Carlos Martín Nietoed43de62011-10-15 05:04:252224 */
Carlos Martín Nietoe6f63712014-02-27 09:00:102225 if (flags & REF_ISSYMREF)
2226 goto clean_exit;
2227
2228 for (i = 0; stale && i < matches.nr; i++)
2229 if (string_list_has_string(info->ref_names, matches.items[i].string))
2230 stale = 0;
2231
2232 if (stale) {
Carlos Martín Nietoed43de62011-10-15 05:04:252233 struct ref *ref = make_linked_ref(refname, &info->stale_refs_tail);
brian m. carlsonf4e54d02015-11-10 02:22:202234 oidcpy(&ref->new_oid, oid);
Jay Soffianf2ef6072009-11-10 05:03:312235 }
Carlos Martín Nietoed43de62011-10-15 05:04:252236
Carlos Martín Nietoe6f63712014-02-27 09:00:102237clean_exit:
2238 string_list_clear(&matches, 0);
Jay Soffianf2ef6072009-11-10 05:03:312239 return 0;
2240}
2241
Carlos Martín Nietoed43de62011-10-15 05:04:252242struct ref *get_stale_heads(struct refspec *refs, int ref_count, struct ref *fetch_map)
Jay Soffianf2ef6072009-11-10 05:03:312243{
2244 struct ref *ref, *stale_refs = NULL;
Thiago Farina183113a2010-07-04 19:46:192245 struct string_list ref_names = STRING_LIST_INIT_NODUP;
Jay Soffianf2ef6072009-11-10 05:03:312246 struct stale_heads_info info;
Michael Haggerty2b2a5be2015-05-25 18:38:282247
Jay Soffianf2ef6072009-11-10 05:03:312248 info.ref_names = &ref_names;
2249 info.stale_refs_tail = &stale_refs;
Carlos Martín Nietoed43de62011-10-15 05:04:252250 info.refs = refs;
2251 info.ref_count = ref_count;
Jay Soffianf2ef6072009-11-10 05:03:312252 for (ref = fetch_map; ref; ref = ref->next)
Julian Phillips1d2f80f2010-06-25 23:41:382253 string_list_append(&ref_names, ref->name);
Michael Haggerty3383e192014-11-25 08:02:352254 string_list_sort(&ref_names);
Jay Soffianf2ef6072009-11-10 05:03:312255 for_each_ref(get_stale_heads_cb, &info);
2256 string_list_clear(&ref_names, 0);
2257 return stale_refs;
2258}
Junio C Hamano28f5d172013-07-08 22:34:362259
2260/*
2261 * Compare-and-swap
2262 */
Junio C Hamanoa355b112015-01-14 22:58:442263static void clear_cas_option(struct push_cas_option *cas)
Junio C Hamano28f5d172013-07-08 22:34:362264{
2265 int i;
2266
2267 for (i = 0; i < cas->nr; i++)
2268 free(cas->entry[i].refname);
2269 free(cas->entry);
2270 memset(cas, 0, sizeof(*cas));
2271}
2272
2273static struct push_cas *add_cas_entry(struct push_cas_option *cas,
2274 const char *refname,
2275 size_t refnamelen)
2276{
2277 struct push_cas *entry;
2278 ALLOC_GROW(cas->entry, cas->nr + 1, cas->alloc);
2279 entry = &cas->entry[cas->nr++];
2280 memset(entry, 0, sizeof(*entry));
2281 entry->refname = xmemdupz(refname, refnamelen);
2282 return entry;
2283}
2284
2285int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset)
2286{
2287 const char *colon;
2288 struct push_cas *entry;
2289
2290 if (unset) {
2291 /* "--no-<option>" */
2292 clear_cas_option(cas);
2293 return 0;
2294 }
2295
2296 if (!arg) {
2297 /* just "--<option>" */
2298 cas->use_tracking_for_rest = 1;
2299 return 0;
2300 }
2301
2302 /* "--<option>=refname" or "--<option>=refname:value" */
2303 colon = strchrnul(arg, ':');
2304 entry = add_cas_entry(cas, arg, colon - arg);
2305 if (!*colon)
2306 entry->use_tracking = 1;
2307 else if (get_sha1(colon + 1, entry->expect))
2308 return error("cannot parse expected object name '%s'", colon + 1);
2309 return 0;
2310}
2311
2312int parseopt_push_cas_option(const struct option *opt, const char *arg, int unset)
2313{
2314 return parse_push_cas_option(opt->value, arg, unset);
2315}
Junio C Hamano91048a92013-07-09 18:01:062316
2317int is_empty_cas(const struct push_cas_option *cas)
2318{
2319 return !cas->use_tracking_for_rest && !cas->nr;
2320}
2321
2322/*
2323 * Look at remote.fetch refspec and see if we have a remote
2324 * tracking branch for the refname there. Fill its current
2325 * value in sha1[].
2326 * If we cannot do so, return negative to signal an error.
2327 */
2328static int remote_tracking(struct remote *remote, const char *refname,
brian m. carlsonfcd30b12015-11-10 02:22:302329 struct object_id *oid)
Junio C Hamano91048a92013-07-09 18:01:062330{
2331 char *dst;
2332
2333 dst = apply_refspecs(remote->fetch, remote->fetch_refspec_nr, refname);
2334 if (!dst)
2335 return -1; /* no tracking ref for refname at remote */
brian m. carlsonfcd30b12015-11-10 02:22:302336 if (read_ref(dst, oid->hash))
Junio C Hamano91048a92013-07-09 18:01:062337 return -1; /* we know what the tracking ref is but we cannot read it */
2338 return 0;
2339}
2340
2341static void apply_cas(struct push_cas_option *cas,
2342 struct remote *remote,
2343 struct ref *ref)
2344{
2345 int i;
2346
2347 /* Find an explicit --<option>=<name>[:<value>] entry */
2348 for (i = 0; i < cas->nr; i++) {
2349 struct push_cas *entry = &cas->entry[i];
Michael Haggerty54457fe2014-01-14 03:16:072350 if (!refname_match(entry->refname, ref->name))
Junio C Hamano91048a92013-07-09 18:01:062351 continue;
2352 ref->expect_old_sha1 = 1;
2353 if (!entry->use_tracking)
brian m. carlsonf4e54d02015-11-10 02:22:202354 hashcpy(ref->old_oid_expect.hash, cas->entry[i].expect);
brian m. carlsonfcd30b12015-11-10 02:22:302355 else if (remote_tracking(remote, ref->name, &ref->old_oid_expect))
Junio C Hamano91048a92013-07-09 18:01:062356 ref->expect_old_no_trackback = 1;
2357 return;
2358 }
2359
2360 /* Are we using "--<option>" to cover all? */
2361 if (!cas->use_tracking_for_rest)
2362 return;
2363
2364 ref->expect_old_sha1 = 1;
brian m. carlsonfcd30b12015-11-10 02:22:302365 if (remote_tracking(remote, ref->name, &ref->old_oid_expect))
Junio C Hamano91048a92013-07-09 18:01:062366 ref->expect_old_no_trackback = 1;
2367}
2368
2369void apply_push_cas(struct push_cas_option *cas,
2370 struct remote *remote,
2371 struct ref *remote_refs)
2372{
2373 struct ref *ref;
2374 for (ref = remote_refs; ref; ref = ref->next)
2375 apply_cas(cas, remote, ref);
2376}