]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/fetch.c
hashmap_get{,_from_hash} return "struct hashmap_entry *"
[thirdparty/git.git] / builtin / fetch.c
1 /*
2 * "git fetch"
3 */
4 #include "cache.h"
5 #include "config.h"
6 #include "repository.h"
7 #include "refs.h"
8 #include "refspec.h"
9 #include "object-store.h"
10 #include "commit.h"
11 #include "builtin.h"
12 #include "string-list.h"
13 #include "remote.h"
14 #include "transport.h"
15 #include "run-command.h"
16 #include "parse-options.h"
17 #include "sigchain.h"
18 #include "submodule-config.h"
19 #include "submodule.h"
20 #include "connected.h"
21 #include "argv-array.h"
22 #include "utf8.h"
23 #include "packfile.h"
24 #include "list-objects-filter-options.h"
25 #include "commit-reach.h"
26
27 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
28
29 static const char * const builtin_fetch_usage[] = {
30 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
31 N_("git fetch [<options>] <group>"),
32 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
33 N_("git fetch --all [<options>]"),
34 NULL
35 };
36
37 enum {
38 TAGS_UNSET = 0,
39 TAGS_DEFAULT = 1,
40 TAGS_SET = 2
41 };
42
43 static int fetch_prune_config = -1; /* unspecified */
44 static int fetch_show_forced_updates = 1;
45 static uint64_t forced_updates_ms = 0;
46 static int prune = -1; /* unspecified */
47 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
48
49 static int fetch_prune_tags_config = -1; /* unspecified */
50 static int prune_tags = -1; /* unspecified */
51 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
52
53 static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity, deepen_relative;
54 static int progress = -1;
55 static int enable_auto_gc = 1;
56 static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
57 static int max_children = 1;
58 static enum transport_family family;
59 static const char *depth;
60 static const char *deepen_since;
61 static const char *upload_pack;
62 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
63 static struct strbuf default_rla = STRBUF_INIT;
64 static struct transport *gtransport;
65 static struct transport *gsecondary;
66 static const char *submodule_prefix = "";
67 static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
68 static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
69 static int shown_url = 0;
70 static struct refspec refmap = REFSPEC_INIT_FETCH;
71 static struct list_objects_filter_options filter_options;
72 static struct string_list server_options = STRING_LIST_INIT_DUP;
73 static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
74
75 static int git_fetch_config(const char *k, const char *v, void *cb)
76 {
77 if (!strcmp(k, "fetch.prune")) {
78 fetch_prune_config = git_config_bool(k, v);
79 return 0;
80 }
81
82 if (!strcmp(k, "fetch.prunetags")) {
83 fetch_prune_tags_config = git_config_bool(k, v);
84 return 0;
85 }
86
87 if (!strcmp(k, "fetch.showforcedupdates")) {
88 fetch_show_forced_updates = git_config_bool(k, v);
89 return 0;
90 }
91
92 if (!strcmp(k, "submodule.recurse")) {
93 int r = git_config_bool(k, v) ?
94 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
95 recurse_submodules = r;
96 }
97
98 if (!strcmp(k, "submodule.fetchjobs")) {
99 max_children = parse_submodule_fetchjobs(k, v);
100 return 0;
101 } else if (!strcmp(k, "fetch.recursesubmodules")) {
102 recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
103 return 0;
104 }
105
106 return git_default_config(k, v, cb);
107 }
108
109 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
110 {
111 BUG_ON_OPT_NEG(unset);
112
113 /*
114 * "git fetch --refmap='' origin foo"
115 * can be used to tell the command not to store anywhere
116 */
117 refspec_append(&refmap, arg);
118
119 return 0;
120 }
121
122 static struct option builtin_fetch_options[] = {
123 OPT__VERBOSITY(&verbosity),
124 OPT_BOOL(0, "all", &all,
125 N_("fetch from all remotes")),
126 OPT_BOOL('a', "append", &append,
127 N_("append to .git/FETCH_HEAD instead of overwriting")),
128 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
129 N_("path to upload pack on remote end")),
130 OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
131 OPT_BOOL('m', "multiple", &multiple,
132 N_("fetch from multiple remotes")),
133 OPT_SET_INT('t', "tags", &tags,
134 N_("fetch all tags and associated objects"), TAGS_SET),
135 OPT_SET_INT('n', NULL, &tags,
136 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
137 OPT_INTEGER('j', "jobs", &max_children,
138 N_("number of submodules fetched in parallel")),
139 OPT_BOOL('p', "prune", &prune,
140 N_("prune remote-tracking branches no longer on remote")),
141 OPT_BOOL('P', "prune-tags", &prune_tags,
142 N_("prune local tags no longer on remote and clobber changed tags")),
143 { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, N_("on-demand"),
144 N_("control recursive fetching of submodules"),
145 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
146 OPT_BOOL(0, "dry-run", &dry_run,
147 N_("dry run")),
148 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
149 OPT_BOOL('u', "update-head-ok", &update_head_ok,
150 N_("allow updating of HEAD ref")),
151 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
152 OPT_STRING(0, "depth", &depth, N_("depth"),
153 N_("deepen history of shallow clone")),
154 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
155 N_("deepen history of shallow repository based on time")),
156 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
157 N_("deepen history of shallow clone, excluding rev")),
158 OPT_INTEGER(0, "deepen", &deepen_relative,
159 N_("deepen history of shallow clone")),
160 OPT_SET_INT_F(0, "unshallow", &unshallow,
161 N_("convert to a complete repository"),
162 1, PARSE_OPT_NONEG),
163 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
164 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
165 { OPTION_CALLBACK, 0, "recurse-submodules-default",
166 &recurse_submodules_default, N_("on-demand"),
167 N_("default for recursive fetching of submodules "
168 "(lower priority than config files)"),
169 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules },
170 OPT_BOOL(0, "update-shallow", &update_shallow,
171 N_("accept refs that update .git/shallow")),
172 { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
173 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
174 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
175 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
176 TRANSPORT_FAMILY_IPV4),
177 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
178 TRANSPORT_FAMILY_IPV6),
179 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
180 N_("report that we have only objects reachable from this object")),
181 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
182 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
183 N_("run 'gc --auto' after fetching")),
184 OPT_BOOL(0, "show-forced-updates", &fetch_show_forced_updates,
185 N_("check for forced-updates on all updated branches")),
186 OPT_END()
187 };
188
189 static void unlock_pack(void)
190 {
191 if (gtransport)
192 transport_unlock_pack(gtransport);
193 if (gsecondary)
194 transport_unlock_pack(gsecondary);
195 }
196
197 static void unlock_pack_on_signal(int signo)
198 {
199 unlock_pack();
200 sigchain_pop(signo);
201 raise(signo);
202 }
203
204 static void add_merge_config(struct ref **head,
205 const struct ref *remote_refs,
206 struct branch *branch,
207 struct ref ***tail)
208 {
209 int i;
210
211 for (i = 0; i < branch->merge_nr; i++) {
212 struct ref *rm, **old_tail = *tail;
213 struct refspec_item refspec;
214
215 for (rm = *head; rm; rm = rm->next) {
216 if (branch_merge_matches(branch, i, rm->name)) {
217 rm->fetch_head_status = FETCH_HEAD_MERGE;
218 break;
219 }
220 }
221 if (rm)
222 continue;
223
224 /*
225 * Not fetched to a remote-tracking branch? We need to fetch
226 * it anyway to allow this branch's "branch.$name.merge"
227 * to be honored by 'git pull', but we do not have to
228 * fail if branch.$name.merge is misconfigured to point
229 * at a nonexisting branch. If we were indeed called by
230 * 'git pull', it will notice the misconfiguration because
231 * there is no entry in the resulting FETCH_HEAD marked
232 * for merging.
233 */
234 memset(&refspec, 0, sizeof(refspec));
235 refspec.src = branch->merge[i]->src;
236 get_fetch_map(remote_refs, &refspec, tail, 1);
237 for (rm = *old_tail; rm; rm = rm->next)
238 rm->fetch_head_status = FETCH_HEAD_MERGE;
239 }
240 }
241
242 static int will_fetch(struct ref **head, const unsigned char *sha1)
243 {
244 struct ref *rm = *head;
245 while (rm) {
246 if (hasheq(rm->old_oid.hash, sha1))
247 return 1;
248 rm = rm->next;
249 }
250 return 0;
251 }
252
253 struct refname_hash_entry {
254 struct hashmap_entry ent; /* must be the first member */
255 struct object_id oid;
256 int ignore;
257 char refname[FLEX_ARRAY];
258 };
259
260 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data,
261 const void *e1_,
262 const void *e2_,
263 const void *keydata)
264 {
265 const struct refname_hash_entry *e1 = e1_;
266 const struct refname_hash_entry *e2 = e2_;
267
268 return strcmp(e1->refname, keydata ? keydata : e2->refname);
269 }
270
271 static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
272 const char *refname,
273 const struct object_id *oid)
274 {
275 struct refname_hash_entry *ent;
276 size_t len = strlen(refname);
277
278 FLEX_ALLOC_MEM(ent, refname, refname, len);
279 hashmap_entry_init(&ent->ent, strhash(refname));
280 oidcpy(&ent->oid, oid);
281 hashmap_add(map, &ent->ent);
282 return ent;
283 }
284
285 static int add_one_refname(const char *refname,
286 const struct object_id *oid,
287 int flag, void *cbdata)
288 {
289 struct hashmap *refname_map = cbdata;
290
291 (void) refname_hash_add(refname_map, refname, oid);
292 return 0;
293 }
294
295 static void refname_hash_init(struct hashmap *map)
296 {
297 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
298 }
299
300 static int refname_hash_exists(struct hashmap *map, const char *refname)
301 {
302 return !!hashmap_get_from_hash(map, strhash(refname), refname);
303 }
304
305 static void clear_item(struct refname_hash_entry *item)
306 {
307 item->ignore = 1;
308 }
309
310 static void find_non_local_tags(const struct ref *refs,
311 struct ref **head,
312 struct ref ***tail)
313 {
314 struct hashmap existing_refs;
315 struct hashmap remote_refs;
316 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
317 struct string_list_item *remote_ref_item;
318 const struct ref *ref;
319 struct refname_hash_entry *item = NULL;
320
321 refname_hash_init(&existing_refs);
322 refname_hash_init(&remote_refs);
323
324 for_each_ref(add_one_refname, &existing_refs);
325 for (ref = refs; ref; ref = ref->next) {
326 if (!starts_with(ref->name, "refs/tags/"))
327 continue;
328
329 /*
330 * The peeled ref always follows the matching base
331 * ref, so if we see a peeled ref that we don't want
332 * to fetch then we can mark the ref entry in the list
333 * as one to ignore by setting util to NULL.
334 */
335 if (ends_with(ref->name, "^{}")) {
336 if (item &&
337 !has_object_file_with_flags(&ref->old_oid,
338 OBJECT_INFO_QUICK) &&
339 !will_fetch(head, ref->old_oid.hash) &&
340 !has_object_file_with_flags(&item->oid, OBJECT_INFO_QUICK) &&
341 !will_fetch(head, item->oid.hash))
342 clear_item(item);
343 item = NULL;
344 continue;
345 }
346
347 /*
348 * If item is non-NULL here, then we previously saw a
349 * ref not followed by a peeled reference, so we need
350 * to check if it is a lightweight tag that we want to
351 * fetch.
352 */
353 if (item &&
354 !has_object_file_with_flags(&item->oid, OBJECT_INFO_QUICK) &&
355 !will_fetch(head, item->oid.hash))
356 clear_item(item);
357
358 item = NULL;
359
360 /* skip duplicates and refs that we already have */
361 if (refname_hash_exists(&remote_refs, ref->name) ||
362 refname_hash_exists(&existing_refs, ref->name))
363 continue;
364
365 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
366 string_list_insert(&remote_refs_list, ref->name);
367 }
368 hashmap_free(&existing_refs, 1);
369
370 /*
371 * We may have a final lightweight tag that needs to be
372 * checked to see if it needs fetching.
373 */
374 if (item &&
375 !has_object_file_with_flags(&item->oid, OBJECT_INFO_QUICK) &&
376 !will_fetch(head, item->oid.hash))
377 clear_item(item);
378
379 /*
380 * For all the tags in the remote_refs_list,
381 * add them to the list of refs to be fetched
382 */
383 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
384 const char *refname = remote_ref_item->string;
385 struct ref *rm;
386 unsigned int hash = strhash(refname);
387
388 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
389 struct refname_hash_entry, ent);
390 if (!item)
391 BUG("unseen remote ref?");
392
393 /* Unless we have already decided to ignore this item... */
394 if (item->ignore)
395 continue;
396
397 rm = alloc_ref(item->refname);
398 rm->peer_ref = alloc_ref(item->refname);
399 oidcpy(&rm->old_oid, &item->oid);
400 **tail = rm;
401 *tail = &rm->next;
402 }
403 hashmap_free(&remote_refs, 1);
404 string_list_clear(&remote_refs_list, 0);
405 }
406
407 static struct ref *get_ref_map(struct remote *remote,
408 const struct ref *remote_refs,
409 struct refspec *rs,
410 int tags, int *autotags)
411 {
412 int i;
413 struct ref *rm;
414 struct ref *ref_map = NULL;
415 struct ref **tail = &ref_map;
416
417 /* opportunistically-updated references: */
418 struct ref *orefs = NULL, **oref_tail = &orefs;
419
420 struct hashmap existing_refs;
421
422 if (rs->nr) {
423 struct refspec *fetch_refspec;
424
425 for (i = 0; i < rs->nr; i++) {
426 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
427 if (rs->items[i].dst && rs->items[i].dst[0])
428 *autotags = 1;
429 }
430 /* Merge everything on the command line (but not --tags) */
431 for (rm = ref_map; rm; rm = rm->next)
432 rm->fetch_head_status = FETCH_HEAD_MERGE;
433
434 /*
435 * For any refs that we happen to be fetching via
436 * command-line arguments, the destination ref might
437 * have been missing or have been different than the
438 * remote-tracking ref that would be derived from the
439 * configured refspec. In these cases, we want to
440 * take the opportunity to update their configured
441 * remote-tracking reference. However, we do not want
442 * to mention these entries in FETCH_HEAD at all, as
443 * they would simply be duplicates of existing
444 * entries, so we set them FETCH_HEAD_IGNORE below.
445 *
446 * We compute these entries now, based only on the
447 * refspecs specified on the command line. But we add
448 * them to the list following the refspecs resulting
449 * from the tags option so that one of the latter,
450 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
451 * by ref_remove_duplicates() in favor of one of these
452 * opportunistic entries with FETCH_HEAD_IGNORE.
453 */
454 if (refmap.nr)
455 fetch_refspec = &refmap;
456 else
457 fetch_refspec = &remote->fetch;
458
459 for (i = 0; i < fetch_refspec->nr; i++)
460 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
461 } else if (refmap.nr) {
462 die("--refmap option is only meaningful with command-line refspec(s).");
463 } else {
464 /* Use the defaults */
465 struct branch *branch = branch_get(NULL);
466 int has_merge = branch_has_merge_config(branch);
467 if (remote &&
468 (remote->fetch.nr ||
469 /* Note: has_merge implies non-NULL branch->remote_name */
470 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
471 for (i = 0; i < remote->fetch.nr; i++) {
472 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
473 if (remote->fetch.items[i].dst &&
474 remote->fetch.items[i].dst[0])
475 *autotags = 1;
476 if (!i && !has_merge && ref_map &&
477 !remote->fetch.items[0].pattern)
478 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
479 }
480 /*
481 * if the remote we're fetching from is the same
482 * as given in branch.<name>.remote, we add the
483 * ref given in branch.<name>.merge, too.
484 *
485 * Note: has_merge implies non-NULL branch->remote_name
486 */
487 if (has_merge &&
488 !strcmp(branch->remote_name, remote->name))
489 add_merge_config(&ref_map, remote_refs, branch, &tail);
490 } else {
491 ref_map = get_remote_ref(remote_refs, "HEAD");
492 if (!ref_map)
493 die(_("Couldn't find remote ref HEAD"));
494 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
495 tail = &ref_map->next;
496 }
497 }
498
499 if (tags == TAGS_SET)
500 /* also fetch all tags */
501 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
502 else if (tags == TAGS_DEFAULT && *autotags)
503 find_non_local_tags(remote_refs, &ref_map, &tail);
504
505 /* Now append any refs to be updated opportunistically: */
506 *tail = orefs;
507 for (rm = orefs; rm; rm = rm->next) {
508 rm->fetch_head_status = FETCH_HEAD_IGNORE;
509 tail = &rm->next;
510 }
511
512 ref_map = ref_remove_duplicates(ref_map);
513
514 refname_hash_init(&existing_refs);
515 for_each_ref(add_one_refname, &existing_refs);
516
517 for (rm = ref_map; rm; rm = rm->next) {
518 if (rm->peer_ref) {
519 const char *refname = rm->peer_ref->name;
520 struct refname_hash_entry *peer_item;
521 unsigned int hash = strhash(refname);
522
523 peer_item = hashmap_get_entry_from_hash(&existing_refs,
524 hash, refname,
525 struct refname_hash_entry, ent);
526 if (peer_item) {
527 struct object_id *old_oid = &peer_item->oid;
528 oidcpy(&rm->peer_ref->old_oid, old_oid);
529 }
530 }
531 }
532 hashmap_free(&existing_refs, 1);
533
534 return ref_map;
535 }
536
537 #define STORE_REF_ERROR_OTHER 1
538 #define STORE_REF_ERROR_DF_CONFLICT 2
539
540 static int s_update_ref(const char *action,
541 struct ref *ref,
542 int check_old)
543 {
544 char *msg;
545 char *rla = getenv("GIT_REFLOG_ACTION");
546 struct ref_transaction *transaction;
547 struct strbuf err = STRBUF_INIT;
548 int ret, df_conflict = 0;
549
550 if (dry_run)
551 return 0;
552 if (!rla)
553 rla = default_rla.buf;
554 msg = xstrfmt("%s: %s", rla, action);
555
556 transaction = ref_transaction_begin(&err);
557 if (!transaction ||
558 ref_transaction_update(transaction, ref->name,
559 &ref->new_oid,
560 check_old ? &ref->old_oid : NULL,
561 0, msg, &err))
562 goto fail;
563
564 ret = ref_transaction_commit(transaction, &err);
565 if (ret) {
566 df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
567 goto fail;
568 }
569
570 ref_transaction_free(transaction);
571 strbuf_release(&err);
572 free(msg);
573 return 0;
574 fail:
575 ref_transaction_free(transaction);
576 error("%s", err.buf);
577 strbuf_release(&err);
578 free(msg);
579 return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
580 : STORE_REF_ERROR_OTHER;
581 }
582
583 static int refcol_width = 10;
584 static int compact_format;
585
586 static void adjust_refcol_width(const struct ref *ref)
587 {
588 int max, rlen, llen, len;
589
590 /* uptodate lines are only shown on high verbosity level */
591 if (!verbosity && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
592 return;
593
594 max = term_columns();
595 rlen = utf8_strwidth(prettify_refname(ref->name));
596
597 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
598
599 /*
600 * rough estimation to see if the output line is too long and
601 * should not be counted (we can't do precise calculation
602 * anyway because we don't know if the error explanation part
603 * will be printed in update_local_ref)
604 */
605 if (compact_format) {
606 llen = 0;
607 max = max * 2 / 3;
608 }
609 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
610 if (len >= max)
611 return;
612
613 /*
614 * Not precise calculation for compact mode because '*' can
615 * appear on the left hand side of '->' and shrink the column
616 * back.
617 */
618 if (refcol_width < rlen)
619 refcol_width = rlen;
620 }
621
622 static void prepare_format_display(struct ref *ref_map)
623 {
624 struct ref *rm;
625 const char *format = "full";
626
627 git_config_get_string_const("fetch.output", &format);
628 if (!strcasecmp(format, "full"))
629 compact_format = 0;
630 else if (!strcasecmp(format, "compact"))
631 compact_format = 1;
632 else
633 die(_("configuration fetch.output contains invalid value %s"),
634 format);
635
636 for (rm = ref_map; rm; rm = rm->next) {
637 if (rm->status == REF_STATUS_REJECT_SHALLOW ||
638 !rm->peer_ref ||
639 !strcmp(rm->name, "HEAD"))
640 continue;
641
642 adjust_refcol_width(rm);
643 }
644 }
645
646 static void print_remote_to_local(struct strbuf *display,
647 const char *remote, const char *local)
648 {
649 strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
650 }
651
652 static int find_and_replace(struct strbuf *haystack,
653 const char *needle,
654 const char *placeholder)
655 {
656 const char *p = NULL;
657 int plen, nlen;
658
659 nlen = strlen(needle);
660 if (ends_with(haystack->buf, needle))
661 p = haystack->buf + haystack->len - nlen;
662 else
663 p = strstr(haystack->buf, needle);
664 if (!p)
665 return 0;
666
667 if (p > haystack->buf && p[-1] != '/')
668 return 0;
669
670 plen = strlen(p);
671 if (plen > nlen && p[nlen] != '/')
672 return 0;
673
674 strbuf_splice(haystack, p - haystack->buf, nlen,
675 placeholder, strlen(placeholder));
676 return 1;
677 }
678
679 static void print_compact(struct strbuf *display,
680 const char *remote, const char *local)
681 {
682 struct strbuf r = STRBUF_INIT;
683 struct strbuf l = STRBUF_INIT;
684
685 if (!strcmp(remote, local)) {
686 strbuf_addf(display, "%-*s -> *", refcol_width, remote);
687 return;
688 }
689
690 strbuf_addstr(&r, remote);
691 strbuf_addstr(&l, local);
692
693 if (!find_and_replace(&r, local, "*"))
694 find_and_replace(&l, remote, "*");
695 print_remote_to_local(display, r.buf, l.buf);
696
697 strbuf_release(&r);
698 strbuf_release(&l);
699 }
700
701 static void format_display(struct strbuf *display, char code,
702 const char *summary, const char *error,
703 const char *remote, const char *local,
704 int summary_width)
705 {
706 int width = (summary_width + strlen(summary) - gettext_width(summary));
707
708 strbuf_addf(display, "%c %-*s ", code, width, summary);
709 if (!compact_format)
710 print_remote_to_local(display, remote, local);
711 else
712 print_compact(display, remote, local);
713 if (error)
714 strbuf_addf(display, " (%s)", error);
715 }
716
717 static int update_local_ref(struct ref *ref,
718 const char *remote,
719 const struct ref *remote_ref,
720 struct strbuf *display,
721 int summary_width)
722 {
723 struct commit *current = NULL, *updated;
724 enum object_type type;
725 struct branch *current_branch = branch_get(NULL);
726 const char *pretty_ref = prettify_refname(ref->name);
727 int fast_forward = 0;
728
729 type = oid_object_info(the_repository, &ref->new_oid, NULL);
730 if (type < 0)
731 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
732
733 if (oideq(&ref->old_oid, &ref->new_oid)) {
734 if (verbosity > 0)
735 format_display(display, '=', _("[up to date]"), NULL,
736 remote, pretty_ref, summary_width);
737 return 0;
738 }
739
740 if (current_branch &&
741 !strcmp(ref->name, current_branch->name) &&
742 !(update_head_ok || is_bare_repository()) &&
743 !is_null_oid(&ref->old_oid)) {
744 /*
745 * If this is the head, and it's not okay to update
746 * the head, and the old value of the head isn't empty...
747 */
748 format_display(display, '!', _("[rejected]"),
749 _("can't fetch in current branch"),
750 remote, pretty_ref, summary_width);
751 return 1;
752 }
753
754 if (!is_null_oid(&ref->old_oid) &&
755 starts_with(ref->name, "refs/tags/")) {
756 if (force || ref->force) {
757 int r;
758 r = s_update_ref("updating tag", ref, 0);
759 format_display(display, r ? '!' : 't', _("[tag update]"),
760 r ? _("unable to update local ref") : NULL,
761 remote, pretty_ref, summary_width);
762 return r;
763 } else {
764 format_display(display, '!', _("[rejected]"), _("would clobber existing tag"),
765 remote, pretty_ref, summary_width);
766 return 1;
767 }
768 }
769
770 current = lookup_commit_reference_gently(the_repository,
771 &ref->old_oid, 1);
772 updated = lookup_commit_reference_gently(the_repository,
773 &ref->new_oid, 1);
774 if (!current || !updated) {
775 const char *msg;
776 const char *what;
777 int r;
778 /*
779 * Nicely describe the new ref we're fetching.
780 * Base this on the remote's ref name, as it's
781 * more likely to follow a standard layout.
782 */
783 const char *name = remote_ref ? remote_ref->name : "";
784 if (starts_with(name, "refs/tags/")) {
785 msg = "storing tag";
786 what = _("[new tag]");
787 } else if (starts_with(name, "refs/heads/")) {
788 msg = "storing head";
789 what = _("[new branch]");
790 } else {
791 msg = "storing ref";
792 what = _("[new ref]");
793 }
794
795 r = s_update_ref(msg, ref, 0);
796 format_display(display, r ? '!' : '*', what,
797 r ? _("unable to update local ref") : NULL,
798 remote, pretty_ref, summary_width);
799 return r;
800 }
801
802 if (fetch_show_forced_updates) {
803 uint64_t t_before = getnanotime();
804 fast_forward = in_merge_bases(current, updated);
805 forced_updates_ms += (getnanotime() - t_before) / 1000000;
806 } else {
807 fast_forward = 1;
808 }
809
810 if (fast_forward) {
811 struct strbuf quickref = STRBUF_INIT;
812 int r;
813
814 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
815 strbuf_addstr(&quickref, "..");
816 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
817 r = s_update_ref("fast-forward", ref, 1);
818 format_display(display, r ? '!' : ' ', quickref.buf,
819 r ? _("unable to update local ref") : NULL,
820 remote, pretty_ref, summary_width);
821 strbuf_release(&quickref);
822 return r;
823 } else if (force || ref->force) {
824 struct strbuf quickref = STRBUF_INIT;
825 int r;
826 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
827 strbuf_addstr(&quickref, "...");
828 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
829 r = s_update_ref("forced-update", ref, 1);
830 format_display(display, r ? '!' : '+', quickref.buf,
831 r ? _("unable to update local ref") : _("forced update"),
832 remote, pretty_ref, summary_width);
833 strbuf_release(&quickref);
834 return r;
835 } else {
836 format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
837 remote, pretty_ref, summary_width);
838 return 1;
839 }
840 }
841
842 static int iterate_ref_map(void *cb_data, struct object_id *oid)
843 {
844 struct ref **rm = cb_data;
845 struct ref *ref = *rm;
846
847 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
848 ref = ref->next;
849 if (!ref)
850 return -1; /* end of the list */
851 *rm = ref->next;
852 oidcpy(oid, &ref->old_oid);
853 return 0;
854 }
855
856 static const char warn_show_forced_updates[] =
857 N_("Fetch normally indicates which branches had a forced update,\n"
858 "but that check has been disabled. To re-enable, use '--show-forced-updates'\n"
859 "flag or run 'git config fetch.showForcedUpdates true'.");
860 static const char warn_time_show_forced_updates[] =
861 N_("It took %.2f seconds to check forced updates. You can use\n"
862 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
863 " to avoid this check.\n");
864
865 static int store_updated_refs(const char *raw_url, const char *remote_name,
866 int connectivity_checked, struct ref *ref_map)
867 {
868 FILE *fp;
869 struct commit *commit;
870 int url_len, i, rc = 0;
871 struct strbuf note = STRBUF_INIT;
872 const char *what, *kind;
873 struct ref *rm;
874 char *url;
875 const char *filename = dry_run ? "/dev/null" : git_path_fetch_head(the_repository);
876 int want_status;
877 int summary_width = transport_summary_width(ref_map);
878
879 fp = fopen(filename, "a");
880 if (!fp)
881 return error_errno(_("cannot open %s"), filename);
882
883 if (raw_url)
884 url = transport_anonymize_url(raw_url);
885 else
886 url = xstrdup("foreign");
887
888 if (!connectivity_checked) {
889 rm = ref_map;
890 if (check_connected(iterate_ref_map, &rm, NULL)) {
891 rc = error(_("%s did not send all necessary objects\n"), url);
892 goto abort;
893 }
894 }
895
896 prepare_format_display(ref_map);
897
898 /*
899 * We do a pass for each fetch_head_status type in their enum order, so
900 * merged entries are written before not-for-merge. That lets readers
901 * use FETCH_HEAD as a refname to refer to the ref to be merged.
902 */
903 for (want_status = FETCH_HEAD_MERGE;
904 want_status <= FETCH_HEAD_IGNORE;
905 want_status++) {
906 for (rm = ref_map; rm; rm = rm->next) {
907 struct ref *ref = NULL;
908 const char *merge_status_marker = "";
909
910 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
911 if (want_status == FETCH_HEAD_MERGE)
912 warning(_("reject %s because shallow roots are not allowed to be updated"),
913 rm->peer_ref ? rm->peer_ref->name : rm->name);
914 continue;
915 }
916
917 commit = lookup_commit_reference_gently(the_repository,
918 &rm->old_oid,
919 1);
920 if (!commit)
921 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
922
923 if (rm->fetch_head_status != want_status)
924 continue;
925
926 if (rm->peer_ref) {
927 ref = alloc_ref(rm->peer_ref->name);
928 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
929 oidcpy(&ref->new_oid, &rm->old_oid);
930 ref->force = rm->peer_ref->force;
931 }
932
933 if (recurse_submodules != RECURSE_SUBMODULES_OFF)
934 check_for_new_submodule_commits(&rm->old_oid);
935
936 if (!strcmp(rm->name, "HEAD")) {
937 kind = "";
938 what = "";
939 }
940 else if (starts_with(rm->name, "refs/heads/")) {
941 kind = "branch";
942 what = rm->name + 11;
943 }
944 else if (starts_with(rm->name, "refs/tags/")) {
945 kind = "tag";
946 what = rm->name + 10;
947 }
948 else if (starts_with(rm->name, "refs/remotes/")) {
949 kind = "remote-tracking branch";
950 what = rm->name + 13;
951 }
952 else {
953 kind = "";
954 what = rm->name;
955 }
956
957 url_len = strlen(url);
958 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
959 ;
960 url_len = i + 1;
961 if (4 < i && !strncmp(".git", url + i - 3, 4))
962 url_len = i - 3;
963
964 strbuf_reset(&note);
965 if (*what) {
966 if (*kind)
967 strbuf_addf(&note, "%s ", kind);
968 strbuf_addf(&note, "'%s' of ", what);
969 }
970 switch (rm->fetch_head_status) {
971 case FETCH_HEAD_NOT_FOR_MERGE:
972 merge_status_marker = "not-for-merge";
973 /* fall-through */
974 case FETCH_HEAD_MERGE:
975 fprintf(fp, "%s\t%s\t%s",
976 oid_to_hex(&rm->old_oid),
977 merge_status_marker,
978 note.buf);
979 for (i = 0; i < url_len; ++i)
980 if ('\n' == url[i])
981 fputs("\\n", fp);
982 else
983 fputc(url[i], fp);
984 fputc('\n', fp);
985 break;
986 default:
987 /* do not write anything to FETCH_HEAD */
988 break;
989 }
990
991 strbuf_reset(&note);
992 if (ref) {
993 rc |= update_local_ref(ref, what, rm, &note,
994 summary_width);
995 free(ref);
996 } else
997 format_display(&note, '*',
998 *kind ? kind : "branch", NULL,
999 *what ? what : "HEAD",
1000 "FETCH_HEAD", summary_width);
1001 if (note.len) {
1002 if (verbosity >= 0 && !shown_url) {
1003 fprintf(stderr, _("From %.*s\n"),
1004 url_len, url);
1005 shown_url = 1;
1006 }
1007 if (verbosity >= 0)
1008 fprintf(stderr, " %s\n", note.buf);
1009 }
1010 }
1011 }
1012
1013 if (rc & STORE_REF_ERROR_DF_CONFLICT)
1014 error(_("some local refs could not be updated; try running\n"
1015 " 'git remote prune %s' to remove any old, conflicting "
1016 "branches"), remote_name);
1017
1018 if (advice_fetch_show_forced_updates) {
1019 if (!fetch_show_forced_updates) {
1020 warning(_(warn_show_forced_updates));
1021 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
1022 warning(_(warn_time_show_forced_updates),
1023 forced_updates_ms / 1000.0);
1024 }
1025 }
1026
1027 abort:
1028 strbuf_release(&note);
1029 free(url);
1030 fclose(fp);
1031 return rc;
1032 }
1033
1034 /*
1035 * We would want to bypass the object transfer altogether if
1036 * everything we are going to fetch already exists and is connected
1037 * locally.
1038 */
1039 static int check_exist_and_connected(struct ref *ref_map)
1040 {
1041 struct ref *rm = ref_map;
1042 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1043 struct ref *r;
1044
1045 /*
1046 * If we are deepening a shallow clone we already have these
1047 * objects reachable. Running rev-list here will return with
1048 * a good (0) exit status and we'll bypass the fetch that we
1049 * really need to perform. Claiming failure now will ensure
1050 * we perform the network exchange to deepen our history.
1051 */
1052 if (deepen)
1053 return -1;
1054
1055 /*
1056 * check_connected() allows objects to merely be promised, but
1057 * we need all direct targets to exist.
1058 */
1059 for (r = rm; r; r = r->next) {
1060 if (!has_object_file(&r->old_oid))
1061 return -1;
1062 }
1063
1064 opt.quiet = 1;
1065 return check_connected(iterate_ref_map, &rm, &opt);
1066 }
1067
1068 static int fetch_refs(struct transport *transport, struct ref *ref_map)
1069 {
1070 int ret = check_exist_and_connected(ref_map);
1071 if (ret)
1072 ret = transport_fetch_refs(transport, ref_map);
1073 if (!ret)
1074 /*
1075 * Keep the new pack's ".keep" file around to allow the caller
1076 * time to update refs to reference the new objects.
1077 */
1078 return 0;
1079 transport_unlock_pack(transport);
1080 return ret;
1081 }
1082
1083 /* Update local refs based on the ref values fetched from a remote */
1084 static int consume_refs(struct transport *transport, struct ref *ref_map)
1085 {
1086 int connectivity_checked = transport->smart_options
1087 ? transport->smart_options->connectivity_checked : 0;
1088 int ret = store_updated_refs(transport->url,
1089 transport->remote->name,
1090 connectivity_checked,
1091 ref_map);
1092 transport_unlock_pack(transport);
1093 return ret;
1094 }
1095
1096 static int prune_refs(struct refspec *rs, struct ref *ref_map,
1097 const char *raw_url)
1098 {
1099 int url_len, i, result = 0;
1100 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1101 char *url;
1102 int summary_width = transport_summary_width(stale_refs);
1103 const char *dangling_msg = dry_run
1104 ? _(" (%s will become dangling)")
1105 : _(" (%s has become dangling)");
1106
1107 if (raw_url)
1108 url = transport_anonymize_url(raw_url);
1109 else
1110 url = xstrdup("foreign");
1111
1112 url_len = strlen(url);
1113 for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
1114 ;
1115
1116 url_len = i + 1;
1117 if (4 < i && !strncmp(".git", url + i - 3, 4))
1118 url_len = i - 3;
1119
1120 if (!dry_run) {
1121 struct string_list refnames = STRING_LIST_INIT_NODUP;
1122
1123 for (ref = stale_refs; ref; ref = ref->next)
1124 string_list_append(&refnames, ref->name);
1125
1126 result = delete_refs("fetch: prune", &refnames, 0);
1127 string_list_clear(&refnames, 0);
1128 }
1129
1130 if (verbosity >= 0) {
1131 for (ref = stale_refs; ref; ref = ref->next) {
1132 struct strbuf sb = STRBUF_INIT;
1133 if (!shown_url) {
1134 fprintf(stderr, _("From %.*s\n"), url_len, url);
1135 shown_url = 1;
1136 }
1137 format_display(&sb, '-', _("[deleted]"), NULL,
1138 _("(none)"), prettify_refname(ref->name),
1139 summary_width);
1140 fprintf(stderr, " %s\n",sb.buf);
1141 strbuf_release(&sb);
1142 warn_dangling_symref(stderr, dangling_msg, ref->name);
1143 }
1144 }
1145
1146 free(url);
1147 free_refs(stale_refs);
1148 return result;
1149 }
1150
1151 static void check_not_current_branch(struct ref *ref_map)
1152 {
1153 struct branch *current_branch = branch_get(NULL);
1154
1155 if (is_bare_repository() || !current_branch)
1156 return;
1157
1158 for (; ref_map; ref_map = ref_map->next)
1159 if (ref_map->peer_ref && !strcmp(current_branch->refname,
1160 ref_map->peer_ref->name))
1161 die(_("Refusing to fetch into current branch %s "
1162 "of non-bare repository"), current_branch->refname);
1163 }
1164
1165 static int truncate_fetch_head(void)
1166 {
1167 const char *filename = git_path_fetch_head(the_repository);
1168 FILE *fp = fopen_for_writing(filename);
1169
1170 if (!fp)
1171 return error_errno(_("cannot open %s"), filename);
1172 fclose(fp);
1173 return 0;
1174 }
1175
1176 static void set_option(struct transport *transport, const char *name, const char *value)
1177 {
1178 int r = transport_set_option(transport, name, value);
1179 if (r < 0)
1180 die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1181 name, value, transport->url);
1182 if (r > 0)
1183 warning(_("Option \"%s\" is ignored for %s\n"),
1184 name, transport->url);
1185 }
1186
1187
1188 static int add_oid(const char *refname, const struct object_id *oid, int flags,
1189 void *cb_data)
1190 {
1191 struct oid_array *oids = cb_data;
1192
1193 oid_array_append(oids, oid);
1194 return 0;
1195 }
1196
1197 static void add_negotiation_tips(struct git_transport_options *smart_options)
1198 {
1199 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1200 int i;
1201
1202 for (i = 0; i < negotiation_tip.nr; i++) {
1203 const char *s = negotiation_tip.items[i].string;
1204 int old_nr;
1205 if (!has_glob_specials(s)) {
1206 struct object_id oid;
1207 if (get_oid(s, &oid))
1208 die("%s is not a valid object", s);
1209 oid_array_append(oids, &oid);
1210 continue;
1211 }
1212 old_nr = oids->nr;
1213 for_each_glob_ref(add_oid, s, oids);
1214 if (old_nr == oids->nr)
1215 warning("Ignoring --negotiation-tip=%s because it does not match any refs",
1216 s);
1217 }
1218 smart_options->negotiation_tips = oids;
1219 }
1220
1221 static struct transport *prepare_transport(struct remote *remote, int deepen)
1222 {
1223 struct transport *transport;
1224
1225 transport = transport_get(remote, NULL);
1226 transport_set_verbosity(transport, verbosity, progress);
1227 transport->family = family;
1228 if (upload_pack)
1229 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1230 if (keep)
1231 set_option(transport, TRANS_OPT_KEEP, "yes");
1232 if (depth)
1233 set_option(transport, TRANS_OPT_DEPTH, depth);
1234 if (deepen && deepen_since)
1235 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1236 if (deepen && deepen_not.nr)
1237 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1238 (const char *)&deepen_not);
1239 if (deepen_relative)
1240 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1241 if (update_shallow)
1242 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1243 if (filter_options.choice) {
1244 struct strbuf expanded_filter_spec = STRBUF_INIT;
1245 expand_list_objects_filter_spec(&filter_options,
1246 &expanded_filter_spec);
1247 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1248 expanded_filter_spec.buf);
1249 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1250 strbuf_release(&expanded_filter_spec);
1251 }
1252 if (negotiation_tip.nr) {
1253 if (transport->smart_options)
1254 add_negotiation_tips(transport->smart_options);
1255 else
1256 warning("Ignoring --negotiation-tip because the protocol does not support it.");
1257 }
1258 return transport;
1259 }
1260
1261 static void backfill_tags(struct transport *transport, struct ref *ref_map)
1262 {
1263 int cannot_reuse;
1264
1265 /*
1266 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1267 * when remote helper is used (setting it to an empty string
1268 * is not unsetting). We could extend the remote helper
1269 * protocol for that, but for now, just force a new connection
1270 * without deepen-since. Similar story for deepen-not.
1271 */
1272 cannot_reuse = transport->cannot_reuse ||
1273 deepen_since || deepen_not.nr;
1274 if (cannot_reuse) {
1275 gsecondary = prepare_transport(transport->remote, 0);
1276 transport = gsecondary;
1277 }
1278
1279 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1280 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1281 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1282 if (!fetch_refs(transport, ref_map))
1283 consume_refs(transport, ref_map);
1284
1285 if (gsecondary) {
1286 transport_disconnect(gsecondary);
1287 gsecondary = NULL;
1288 }
1289 }
1290
1291 static int do_fetch(struct transport *transport,
1292 struct refspec *rs)
1293 {
1294 struct ref *ref_map;
1295 int autotags = (transport->remote->fetch_tags == 1);
1296 int retcode = 0;
1297 const struct ref *remote_refs;
1298 struct argv_array ref_prefixes = ARGV_ARRAY_INIT;
1299 int must_list_refs = 1;
1300
1301 if (tags == TAGS_DEFAULT) {
1302 if (transport->remote->fetch_tags == 2)
1303 tags = TAGS_SET;
1304 if (transport->remote->fetch_tags == -1)
1305 tags = TAGS_UNSET;
1306 }
1307
1308 /* if not appending, truncate FETCH_HEAD */
1309 if (!append && !dry_run) {
1310 retcode = truncate_fetch_head();
1311 if (retcode)
1312 goto cleanup;
1313 }
1314
1315 if (rs->nr) {
1316 int i;
1317
1318 refspec_ref_prefixes(rs, &ref_prefixes);
1319
1320 /*
1321 * We can avoid listing refs if all of them are exact
1322 * OIDs
1323 */
1324 must_list_refs = 0;
1325 for (i = 0; i < rs->nr; i++) {
1326 if (!rs->items[i].exact_sha1) {
1327 must_list_refs = 1;
1328 break;
1329 }
1330 }
1331 } else if (transport->remote && transport->remote->fetch.nr)
1332 refspec_ref_prefixes(&transport->remote->fetch, &ref_prefixes);
1333
1334 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1335 must_list_refs = 1;
1336 if (ref_prefixes.argc)
1337 argv_array_push(&ref_prefixes, "refs/tags/");
1338 }
1339
1340 if (must_list_refs)
1341 remote_refs = transport_get_remote_refs(transport, &ref_prefixes);
1342 else
1343 remote_refs = NULL;
1344
1345 argv_array_clear(&ref_prefixes);
1346
1347 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1348 tags, &autotags);
1349 if (!update_head_ok)
1350 check_not_current_branch(ref_map);
1351
1352 if (tags == TAGS_DEFAULT && autotags)
1353 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1354 if (prune) {
1355 /*
1356 * We only prune based on refspecs specified
1357 * explicitly (via command line or configuration); we
1358 * don't care whether --tags was specified.
1359 */
1360 if (rs->nr) {
1361 prune_refs(rs, ref_map, transport->url);
1362 } else {
1363 prune_refs(&transport->remote->fetch,
1364 ref_map,
1365 transport->url);
1366 }
1367 }
1368 if (fetch_refs(transport, ref_map) || consume_refs(transport, ref_map)) {
1369 free_refs(ref_map);
1370 retcode = 1;
1371 goto cleanup;
1372 }
1373 free_refs(ref_map);
1374
1375 /* if neither --no-tags nor --tags was specified, do automated tag
1376 * following ... */
1377 if (tags == TAGS_DEFAULT && autotags) {
1378 struct ref **tail = &ref_map;
1379 ref_map = NULL;
1380 find_non_local_tags(remote_refs, &ref_map, &tail);
1381 if (ref_map)
1382 backfill_tags(transport, ref_map);
1383 free_refs(ref_map);
1384 }
1385
1386 cleanup:
1387 return retcode;
1388 }
1389
1390 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1391 {
1392 struct string_list *list = priv;
1393 if (!remote->skip_default_update)
1394 string_list_append(list, remote->name);
1395 return 0;
1396 }
1397
1398 struct remote_group_data {
1399 const char *name;
1400 struct string_list *list;
1401 };
1402
1403 static int get_remote_group(const char *key, const char *value, void *priv)
1404 {
1405 struct remote_group_data *g = priv;
1406
1407 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1408 /* split list by white space */
1409 while (*value) {
1410 size_t wordlen = strcspn(value, " \t\n");
1411
1412 if (wordlen >= 1)
1413 string_list_append_nodup(g->list,
1414 xstrndup(value, wordlen));
1415 value += wordlen + (value[wordlen] != '\0');
1416 }
1417 }
1418
1419 return 0;
1420 }
1421
1422 static int add_remote_or_group(const char *name, struct string_list *list)
1423 {
1424 int prev_nr = list->nr;
1425 struct remote_group_data g;
1426 g.name = name; g.list = list;
1427
1428 git_config(get_remote_group, &g);
1429 if (list->nr == prev_nr) {
1430 struct remote *remote = remote_get(name);
1431 if (!remote_is_configured(remote, 0))
1432 return 0;
1433 string_list_append(list, remote->name);
1434 }
1435 return 1;
1436 }
1437
1438 static void add_options_to_argv(struct argv_array *argv)
1439 {
1440 if (dry_run)
1441 argv_array_push(argv, "--dry-run");
1442 if (prune != -1)
1443 argv_array_push(argv, prune ? "--prune" : "--no-prune");
1444 if (prune_tags != -1)
1445 argv_array_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1446 if (update_head_ok)
1447 argv_array_push(argv, "--update-head-ok");
1448 if (force)
1449 argv_array_push(argv, "--force");
1450 if (keep)
1451 argv_array_push(argv, "--keep");
1452 if (recurse_submodules == RECURSE_SUBMODULES_ON)
1453 argv_array_push(argv, "--recurse-submodules");
1454 else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1455 argv_array_push(argv, "--recurse-submodules=on-demand");
1456 if (tags == TAGS_SET)
1457 argv_array_push(argv, "--tags");
1458 else if (tags == TAGS_UNSET)
1459 argv_array_push(argv, "--no-tags");
1460 if (verbosity >= 2)
1461 argv_array_push(argv, "-v");
1462 if (verbosity >= 1)
1463 argv_array_push(argv, "-v");
1464 else if (verbosity < 0)
1465 argv_array_push(argv, "-q");
1466
1467 }
1468
1469 static int fetch_multiple(struct string_list *list)
1470 {
1471 int i, result = 0;
1472 struct argv_array argv = ARGV_ARRAY_INIT;
1473
1474 if (!append && !dry_run) {
1475 int errcode = truncate_fetch_head();
1476 if (errcode)
1477 return errcode;
1478 }
1479
1480 argv_array_pushl(&argv, "fetch", "--append", "--no-auto-gc", NULL);
1481 add_options_to_argv(&argv);
1482
1483 for (i = 0; i < list->nr; i++) {
1484 const char *name = list->items[i].string;
1485 argv_array_push(&argv, name);
1486 if (verbosity >= 0)
1487 printf(_("Fetching %s\n"), name);
1488 if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
1489 error(_("Could not fetch %s"), name);
1490 result = 1;
1491 }
1492 argv_array_pop(&argv);
1493 }
1494
1495 argv_array_clear(&argv);
1496 return result;
1497 }
1498
1499 /*
1500 * Fetching from the promisor remote should use the given filter-spec
1501 * or inherit the default filter-spec from the config.
1502 */
1503 static inline void fetch_one_setup_partial(struct remote *remote)
1504 {
1505 /*
1506 * Explicit --no-filter argument overrides everything, regardless
1507 * of any prior partial clones and fetches.
1508 */
1509 if (filter_options.no_filter)
1510 return;
1511
1512 /*
1513 * If no prior partial clone/fetch and the current fetch DID NOT
1514 * request a partial-fetch, do a normal fetch.
1515 */
1516 if (!repository_format_partial_clone && !filter_options.choice)
1517 return;
1518
1519 /*
1520 * If this is the FIRST partial-fetch request, we enable partial
1521 * on this repo and remember the given filter-spec as the default
1522 * for subsequent fetches to this remote.
1523 */
1524 if (!repository_format_partial_clone && filter_options.choice) {
1525 partial_clone_register(remote->name, &filter_options);
1526 return;
1527 }
1528
1529 /*
1530 * We are currently limited to only ONE promisor remote and only
1531 * allow partial-fetches from the promisor remote.
1532 */
1533 if (strcmp(remote->name, repository_format_partial_clone)) {
1534 if (filter_options.choice)
1535 die(_("--filter can only be used with the remote "
1536 "configured in extensions.partialClone"));
1537 return;
1538 }
1539
1540 /*
1541 * Do a partial-fetch from the promisor remote using either the
1542 * explicitly given filter-spec or inherit the filter-spec from
1543 * the config.
1544 */
1545 if (!filter_options.choice)
1546 partial_clone_get_default_filter_spec(&filter_options);
1547 return;
1548 }
1549
1550 static int fetch_one(struct remote *remote, int argc, const char **argv, int prune_tags_ok)
1551 {
1552 struct refspec rs = REFSPEC_INIT_FETCH;
1553 int i;
1554 int exit_code;
1555 int maybe_prune_tags;
1556 int remote_via_config = remote_is_configured(remote, 0);
1557
1558 if (!remote)
1559 die(_("No remote repository specified. Please, specify either a URL or a\n"
1560 "remote name from which new revisions should be fetched."));
1561
1562 gtransport = prepare_transport(remote, 1);
1563
1564 if (prune < 0) {
1565 /* no command line request */
1566 if (0 <= remote->prune)
1567 prune = remote->prune;
1568 else if (0 <= fetch_prune_config)
1569 prune = fetch_prune_config;
1570 else
1571 prune = PRUNE_BY_DEFAULT;
1572 }
1573
1574 if (prune_tags < 0) {
1575 /* no command line request */
1576 if (0 <= remote->prune_tags)
1577 prune_tags = remote->prune_tags;
1578 else if (0 <= fetch_prune_tags_config)
1579 prune_tags = fetch_prune_tags_config;
1580 else
1581 prune_tags = PRUNE_TAGS_BY_DEFAULT;
1582 }
1583
1584 maybe_prune_tags = prune_tags_ok && prune_tags;
1585 if (maybe_prune_tags && remote_via_config)
1586 refspec_append(&remote->fetch, TAG_REFSPEC);
1587
1588 if (maybe_prune_tags && (argc || !remote_via_config))
1589 refspec_append(&rs, TAG_REFSPEC);
1590
1591 for (i = 0; i < argc; i++) {
1592 if (!strcmp(argv[i], "tag")) {
1593 char *tag;
1594 i++;
1595 if (i >= argc)
1596 die(_("You need to specify a tag name."));
1597
1598 tag = xstrfmt("refs/tags/%s:refs/tags/%s",
1599 argv[i], argv[i]);
1600 refspec_append(&rs, tag);
1601 free(tag);
1602 } else {
1603 refspec_append(&rs, argv[i]);
1604 }
1605 }
1606
1607 if (server_options.nr)
1608 gtransport->server_options = &server_options;
1609
1610 sigchain_push_common(unlock_pack_on_signal);
1611 atexit(unlock_pack);
1612 sigchain_push(SIGPIPE, SIG_IGN);
1613 exit_code = do_fetch(gtransport, &rs);
1614 sigchain_pop(SIGPIPE);
1615 refspec_clear(&rs);
1616 transport_disconnect(gtransport);
1617 gtransport = NULL;
1618 return exit_code;
1619 }
1620
1621 int cmd_fetch(int argc, const char **argv, const char *prefix)
1622 {
1623 int i;
1624 struct string_list list = STRING_LIST_INIT_DUP;
1625 struct remote *remote = NULL;
1626 int result = 0;
1627 int prune_tags_ok = 1;
1628 struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
1629
1630 packet_trace_identity("fetch");
1631
1632 fetch_if_missing = 0;
1633
1634 /* Record the command line for the reflog */
1635 strbuf_addstr(&default_rla, "fetch");
1636 for (i = 1; i < argc; i++)
1637 strbuf_addf(&default_rla, " %s", argv[i]);
1638
1639 fetch_config_from_gitmodules(&max_children, &recurse_submodules);
1640 git_config(git_fetch_config, NULL);
1641
1642 argc = parse_options(argc, argv, prefix,
1643 builtin_fetch_options, builtin_fetch_usage, 0);
1644
1645 if (deepen_relative) {
1646 if (deepen_relative < 0)
1647 die(_("Negative depth in --deepen is not supported"));
1648 if (depth)
1649 die(_("--deepen and --depth are mutually exclusive"));
1650 depth = xstrfmt("%d", deepen_relative);
1651 }
1652 if (unshallow) {
1653 if (depth)
1654 die(_("--depth and --unshallow cannot be used together"));
1655 else if (!is_repository_shallow(the_repository))
1656 die(_("--unshallow on a complete repository does not make sense"));
1657 else
1658 depth = xstrfmt("%d", INFINITE_DEPTH);
1659 }
1660
1661 /* no need to be strict, transport_set_option() will validate it again */
1662 if (depth && atoi(depth) < 1)
1663 die(_("depth %s is not a positive number"), depth);
1664 if (depth || deepen_since || deepen_not.nr)
1665 deepen = 1;
1666
1667 if (filter_options.choice && !repository_format_partial_clone)
1668 die("--filter can only be used when extensions.partialClone is set");
1669
1670 if (all) {
1671 if (argc == 1)
1672 die(_("fetch --all does not take a repository argument"));
1673 else if (argc > 1)
1674 die(_("fetch --all does not make sense with refspecs"));
1675 (void) for_each_remote(get_one_remote_for_fetch, &list);
1676 } else if (argc == 0) {
1677 /* No arguments -- use default remote */
1678 remote = remote_get(NULL);
1679 } else if (multiple) {
1680 /* All arguments are assumed to be remotes or groups */
1681 for (i = 0; i < argc; i++)
1682 if (!add_remote_or_group(argv[i], &list))
1683 die(_("No such remote or remote group: %s"), argv[i]);
1684 } else {
1685 /* Single remote or group */
1686 (void) add_remote_or_group(argv[0], &list);
1687 if (list.nr > 1) {
1688 /* More than one remote */
1689 if (argc > 1)
1690 die(_("Fetching a group and specifying refspecs does not make sense"));
1691 } else {
1692 /* Zero or one remotes */
1693 remote = remote_get(argv[0]);
1694 prune_tags_ok = (argc == 1);
1695 argc--;
1696 argv++;
1697 }
1698 }
1699
1700 if (remote) {
1701 if (filter_options.choice || repository_format_partial_clone)
1702 fetch_one_setup_partial(remote);
1703 result = fetch_one(remote, argc, argv, prune_tags_ok);
1704 } else {
1705 if (filter_options.choice)
1706 die(_("--filter can only be used with the remote "
1707 "configured in extensions.partialclone"));
1708 /* TODO should this also die if we have a previous partial-clone? */
1709 result = fetch_multiple(&list);
1710 }
1711
1712 if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
1713 struct argv_array options = ARGV_ARRAY_INIT;
1714
1715 add_options_to_argv(&options);
1716 result = fetch_populated_submodules(the_repository,
1717 &options,
1718 submodule_prefix,
1719 recurse_submodules,
1720 recurse_submodules_default,
1721 verbosity < 0,
1722 max_children);
1723 argv_array_clear(&options);
1724 }
1725
1726 string_list_clear(&list, 0);
1727
1728 close_object_store(the_repository->objects);
1729
1730 if (enable_auto_gc) {
1731 argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
1732 if (verbosity < 0)
1733 argv_array_push(&argv_gc_auto, "--quiet");
1734 run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1735 argv_array_clear(&argv_gc_auto);
1736 }
1737
1738 return result;
1739 }