]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/fetch.c
Merge branch 'tb/midx-write-cleanup'
[thirdparty/git.git] / builtin / fetch.c
1 /*
2 * "git fetch"
3 */
4 #include "builtin.h"
5 #include "advice.h"
6 #include "config.h"
7 #include "gettext.h"
8 #include "environment.h"
9 #include "hex.h"
10 #include "repository.h"
11 #include "refs.h"
12 #include "refspec.h"
13 #include "object-name.h"
14 #include "object-store-ll.h"
15 #include "oidset.h"
16 #include "oid-array.h"
17 #include "commit.h"
18 #include "string-list.h"
19 #include "remote.h"
20 #include "transport.h"
21 #include "run-command.h"
22 #include "parse-options.h"
23 #include "sigchain.h"
24 #include "submodule-config.h"
25 #include "submodule.h"
26 #include "connected.h"
27 #include "strvec.h"
28 #include "utf8.h"
29 #include "pager.h"
30 #include "path.h"
31 #include "pkt-line.h"
32 #include "list-objects-filter-options.h"
33 #include "commit-reach.h"
34 #include "branch.h"
35 #include "promisor-remote.h"
36 #include "commit-graph.h"
37 #include "shallow.h"
38 #include "trace.h"
39 #include "trace2.h"
40 #include "bundle-uri.h"
41
42 #define FORCED_UPDATES_DELAY_WARNING_IN_MS (10 * 1000)
43
44 static const char * const builtin_fetch_usage[] = {
45 N_("git fetch [<options>] [<repository> [<refspec>...]]"),
46 N_("git fetch [<options>] <group>"),
47 N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
48 N_("git fetch --all [<options>]"),
49 NULL
50 };
51
52 enum {
53 TAGS_UNSET = 0,
54 TAGS_DEFAULT = 1,
55 TAGS_SET = 2
56 };
57
58 enum display_format {
59 DISPLAY_FORMAT_FULL,
60 DISPLAY_FORMAT_COMPACT,
61 DISPLAY_FORMAT_PORCELAIN,
62 };
63
64 struct display_state {
65 struct strbuf buf;
66
67 int refcol_width;
68 enum display_format format;
69
70 char *url;
71 int url_len, shown_url;
72 };
73
74 static uint64_t forced_updates_ms = 0;
75 static int prefetch = 0;
76 static int prune = -1; /* unspecified */
77 #define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
78
79 static int prune_tags = -1; /* unspecified */
80 #define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
81
82 static int append, dry_run, force, keep, update_head_ok;
83 static int write_fetch_head = 1;
84 static int verbosity, deepen_relative, set_upstream, refetch;
85 static int progress = -1;
86 static int tags = TAGS_DEFAULT, update_shallow, deepen;
87 static int atomic_fetch;
88 static enum transport_family family;
89 static const char *depth;
90 static const char *deepen_since;
91 static const char *upload_pack;
92 static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
93 static struct strbuf default_rla = STRBUF_INIT;
94 static struct transport *gtransport;
95 static struct transport *gsecondary;
96 static struct refspec refmap = REFSPEC_INIT_FETCH;
97 static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT;
98 static struct string_list server_options = STRING_LIST_INIT_DUP;
99 static struct string_list negotiation_tip = STRING_LIST_INIT_NODUP;
100
101 struct fetch_config {
102 enum display_format display_format;
103 int all;
104 int prune;
105 int prune_tags;
106 int show_forced_updates;
107 int recurse_submodules;
108 int parallel;
109 int submodule_fetch_jobs;
110 };
111
112 static int git_fetch_config(const char *k, const char *v,
113 const struct config_context *ctx, void *cb)
114 {
115 struct fetch_config *fetch_config = cb;
116
117 if (!strcmp(k, "fetch.all")) {
118 fetch_config->all = git_config_bool(k, v);
119 return 0;
120 }
121
122 if (!strcmp(k, "fetch.prune")) {
123 fetch_config->prune = git_config_bool(k, v);
124 return 0;
125 }
126
127 if (!strcmp(k, "fetch.prunetags")) {
128 fetch_config->prune_tags = git_config_bool(k, v);
129 return 0;
130 }
131
132 if (!strcmp(k, "fetch.showforcedupdates")) {
133 fetch_config->show_forced_updates = git_config_bool(k, v);
134 return 0;
135 }
136
137 if (!strcmp(k, "submodule.recurse")) {
138 int r = git_config_bool(k, v) ?
139 RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
140 fetch_config->recurse_submodules = r;
141 return 0;
142 }
143
144 if (!strcmp(k, "submodule.fetchjobs")) {
145 fetch_config->submodule_fetch_jobs = parse_submodule_fetchjobs(k, v, ctx->kvi);
146 return 0;
147 } else if (!strcmp(k, "fetch.recursesubmodules")) {
148 fetch_config->recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
149 return 0;
150 }
151
152 if (!strcmp(k, "fetch.parallel")) {
153 fetch_config->parallel = git_config_int(k, v, ctx->kvi);
154 if (fetch_config->parallel < 0)
155 die(_("fetch.parallel cannot be negative"));
156 if (!fetch_config->parallel)
157 fetch_config->parallel = online_cpus();
158 return 0;
159 }
160
161 if (!strcmp(k, "fetch.output")) {
162 if (!v)
163 return config_error_nonbool(k);
164 else if (!strcasecmp(v, "full"))
165 fetch_config->display_format = DISPLAY_FORMAT_FULL;
166 else if (!strcasecmp(v, "compact"))
167 fetch_config->display_format = DISPLAY_FORMAT_COMPACT;
168 else
169 die(_("invalid value for '%s': '%s'"),
170 "fetch.output", v);
171 }
172
173 return git_default_config(k, v, ctx, cb);
174 }
175
176 static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
177 {
178 BUG_ON_OPT_NEG(unset);
179
180 /*
181 * "git fetch --refmap='' origin foo"
182 * can be used to tell the command not to store anywhere
183 */
184 refspec_append(opt->value, arg);
185
186 return 0;
187 }
188
189 static void unlock_pack(unsigned int flags)
190 {
191 if (gtransport)
192 transport_unlock_pack(gtransport, flags);
193 if (gsecondary)
194 transport_unlock_pack(gsecondary, flags);
195 }
196
197 static void unlock_pack_atexit(void)
198 {
199 unlock_pack(0);
200 }
201
202 static void unlock_pack_on_signal(int signo)
203 {
204 unlock_pack(TRANSPORT_UNLOCK_PACK_IN_SIGNAL_HANDLER);
205 sigchain_pop(signo);
206 raise(signo);
207 }
208
209 static void add_merge_config(struct ref **head,
210 const struct ref *remote_refs,
211 struct branch *branch,
212 struct ref ***tail)
213 {
214 int i;
215
216 for (i = 0; i < branch->merge_nr; i++) {
217 struct ref *rm, **old_tail = *tail;
218 struct refspec_item refspec;
219
220 for (rm = *head; rm; rm = rm->next) {
221 if (branch_merge_matches(branch, i, rm->name)) {
222 rm->fetch_head_status = FETCH_HEAD_MERGE;
223 break;
224 }
225 }
226 if (rm)
227 continue;
228
229 /*
230 * Not fetched to a remote-tracking branch? We need to fetch
231 * it anyway to allow this branch's "branch.$name.merge"
232 * to be honored by 'git pull', but we do not have to
233 * fail if branch.$name.merge is misconfigured to point
234 * at a nonexisting branch. If we were indeed called by
235 * 'git pull', it will notice the misconfiguration because
236 * there is no entry in the resulting FETCH_HEAD marked
237 * for merging.
238 */
239 memset(&refspec, 0, sizeof(refspec));
240 refspec.src = branch->merge[i]->src;
241 get_fetch_map(remote_refs, &refspec, tail, 1);
242 for (rm = *old_tail; rm; rm = rm->next)
243 rm->fetch_head_status = FETCH_HEAD_MERGE;
244 }
245 }
246
247 static void create_fetch_oidset(struct ref **head, struct oidset *out)
248 {
249 struct ref *rm = *head;
250 while (rm) {
251 oidset_insert(out, &rm->old_oid);
252 rm = rm->next;
253 }
254 }
255
256 struct refname_hash_entry {
257 struct hashmap_entry ent;
258 struct object_id oid;
259 int ignore;
260 char refname[FLEX_ARRAY];
261 };
262
263 static int refname_hash_entry_cmp(const void *hashmap_cmp_fn_data UNUSED,
264 const struct hashmap_entry *eptr,
265 const struct hashmap_entry *entry_or_key,
266 const void *keydata)
267 {
268 const struct refname_hash_entry *e1, *e2;
269
270 e1 = container_of(eptr, const struct refname_hash_entry, ent);
271 e2 = container_of(entry_or_key, const struct refname_hash_entry, ent);
272 return strcmp(e1->refname, keydata ? keydata : e2->refname);
273 }
274
275 static struct refname_hash_entry *refname_hash_add(struct hashmap *map,
276 const char *refname,
277 const struct object_id *oid)
278 {
279 struct refname_hash_entry *ent;
280 size_t len = strlen(refname);
281
282 FLEX_ALLOC_MEM(ent, refname, refname, len);
283 hashmap_entry_init(&ent->ent, strhash(refname));
284 oidcpy(&ent->oid, oid);
285 hashmap_add(map, &ent->ent);
286 return ent;
287 }
288
289 static int add_one_refname(const char *refname,
290 const struct object_id *oid,
291 int flag UNUSED, void *cbdata)
292 {
293 struct hashmap *refname_map = cbdata;
294
295 (void) refname_hash_add(refname_map, refname, oid);
296 return 0;
297 }
298
299 static void refname_hash_init(struct hashmap *map)
300 {
301 hashmap_init(map, refname_hash_entry_cmp, NULL, 0);
302 }
303
304 static int refname_hash_exists(struct hashmap *map, const char *refname)
305 {
306 return !!hashmap_get_from_hash(map, strhash(refname), refname);
307 }
308
309 static void clear_item(struct refname_hash_entry *item)
310 {
311 item->ignore = 1;
312 }
313
314
315 static void add_already_queued_tags(const char *refname,
316 const struct object_id *old_oid UNUSED,
317 const struct object_id *new_oid,
318 void *cb_data)
319 {
320 struct hashmap *queued_tags = cb_data;
321 if (starts_with(refname, "refs/tags/") && new_oid)
322 (void) refname_hash_add(queued_tags, refname, new_oid);
323 }
324
325 static void find_non_local_tags(const struct ref *refs,
326 struct ref_transaction *transaction,
327 struct ref **head,
328 struct ref ***tail)
329 {
330 struct hashmap existing_refs;
331 struct hashmap remote_refs;
332 struct oidset fetch_oids = OIDSET_INIT;
333 struct string_list remote_refs_list = STRING_LIST_INIT_NODUP;
334 struct string_list_item *remote_ref_item;
335 const struct ref *ref;
336 struct refname_hash_entry *item = NULL;
337 const int quick_flags = OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT;
338
339 refname_hash_init(&existing_refs);
340 refname_hash_init(&remote_refs);
341 create_fetch_oidset(head, &fetch_oids);
342
343 refs_for_each_ref(get_main_ref_store(the_repository), add_one_refname,
344 &existing_refs);
345
346 /*
347 * If we already have a transaction, then we need to filter out all
348 * tags which have already been queued up.
349 */
350 if (transaction)
351 ref_transaction_for_each_queued_update(transaction,
352 add_already_queued_tags,
353 &existing_refs);
354
355 for (ref = refs; ref; ref = ref->next) {
356 if (!starts_with(ref->name, "refs/tags/"))
357 continue;
358
359 /*
360 * The peeled ref always follows the matching base
361 * ref, so if we see a peeled ref that we don't want
362 * to fetch then we can mark the ref entry in the list
363 * as one to ignore by setting util to NULL.
364 */
365 if (ends_with(ref->name, "^{}")) {
366 if (item &&
367 !repo_has_object_file_with_flags(the_repository, &ref->old_oid, quick_flags) &&
368 !oidset_contains(&fetch_oids, &ref->old_oid) &&
369 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
370 !oidset_contains(&fetch_oids, &item->oid))
371 clear_item(item);
372 item = NULL;
373 continue;
374 }
375
376 /*
377 * If item is non-NULL here, then we previously saw a
378 * ref not followed by a peeled reference, so we need
379 * to check if it is a lightweight tag that we want to
380 * fetch.
381 */
382 if (item &&
383 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
384 !oidset_contains(&fetch_oids, &item->oid))
385 clear_item(item);
386
387 item = NULL;
388
389 /* skip duplicates and refs that we already have */
390 if (refname_hash_exists(&remote_refs, ref->name) ||
391 refname_hash_exists(&existing_refs, ref->name))
392 continue;
393
394 item = refname_hash_add(&remote_refs, ref->name, &ref->old_oid);
395 string_list_insert(&remote_refs_list, ref->name);
396 }
397 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
398
399 /*
400 * We may have a final lightweight tag that needs to be
401 * checked to see if it needs fetching.
402 */
403 if (item &&
404 !repo_has_object_file_with_flags(the_repository, &item->oid, quick_flags) &&
405 !oidset_contains(&fetch_oids, &item->oid))
406 clear_item(item);
407
408 /*
409 * For all the tags in the remote_refs_list,
410 * add them to the list of refs to be fetched
411 */
412 for_each_string_list_item(remote_ref_item, &remote_refs_list) {
413 const char *refname = remote_ref_item->string;
414 struct ref *rm;
415 unsigned int hash = strhash(refname);
416
417 item = hashmap_get_entry_from_hash(&remote_refs, hash, refname,
418 struct refname_hash_entry, ent);
419 if (!item)
420 BUG("unseen remote ref?");
421
422 /* Unless we have already decided to ignore this item... */
423 if (item->ignore)
424 continue;
425
426 rm = alloc_ref(item->refname);
427 rm->peer_ref = alloc_ref(item->refname);
428 oidcpy(&rm->old_oid, &item->oid);
429 **tail = rm;
430 *tail = &rm->next;
431 }
432 hashmap_clear_and_free(&remote_refs, struct refname_hash_entry, ent);
433 string_list_clear(&remote_refs_list, 0);
434 oidset_clear(&fetch_oids);
435 }
436
437 static void filter_prefetch_refspec(struct refspec *rs)
438 {
439 int i;
440
441 if (!prefetch)
442 return;
443
444 for (i = 0; i < rs->nr; i++) {
445 struct strbuf new_dst = STRBUF_INIT;
446 char *old_dst;
447 const char *sub = NULL;
448
449 if (rs->items[i].negative)
450 continue;
451 if (!rs->items[i].dst ||
452 (rs->items[i].src &&
453 starts_with(rs->items[i].src,
454 ref_namespace[NAMESPACE_TAGS].ref))) {
455 int j;
456
457 free(rs->items[i].src);
458 free(rs->items[i].dst);
459
460 for (j = i + 1; j < rs->nr; j++) {
461 rs->items[j - 1] = rs->items[j];
462 rs->raw[j - 1] = rs->raw[j];
463 }
464 rs->nr--;
465 i--;
466 continue;
467 }
468
469 old_dst = rs->items[i].dst;
470 strbuf_addstr(&new_dst, ref_namespace[NAMESPACE_PREFETCH].ref);
471
472 /*
473 * If old_dst starts with "refs/", then place
474 * sub after that prefix. Otherwise, start at
475 * the beginning of the string.
476 */
477 if (!skip_prefix(old_dst, "refs/", &sub))
478 sub = old_dst;
479 strbuf_addstr(&new_dst, sub);
480
481 rs->items[i].dst = strbuf_detach(&new_dst, NULL);
482 rs->items[i].force = 1;
483
484 free(old_dst);
485 }
486 }
487
488 static struct ref *get_ref_map(struct remote *remote,
489 const struct ref *remote_refs,
490 struct refspec *rs,
491 int tags, int *autotags)
492 {
493 int i;
494 struct ref *rm;
495 struct ref *ref_map = NULL;
496 struct ref **tail = &ref_map;
497
498 /* opportunistically-updated references: */
499 struct ref *orefs = NULL, **oref_tail = &orefs;
500
501 struct hashmap existing_refs;
502 int existing_refs_populated = 0;
503
504 filter_prefetch_refspec(rs);
505 if (remote)
506 filter_prefetch_refspec(&remote->fetch);
507
508 if (rs->nr) {
509 struct refspec *fetch_refspec;
510
511 for (i = 0; i < rs->nr; i++) {
512 get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
513 if (rs->items[i].dst && rs->items[i].dst[0])
514 *autotags = 1;
515 }
516 /* Merge everything on the command line (but not --tags) */
517 for (rm = ref_map; rm; rm = rm->next)
518 rm->fetch_head_status = FETCH_HEAD_MERGE;
519
520 /*
521 * For any refs that we happen to be fetching via
522 * command-line arguments, the destination ref might
523 * have been missing or have been different than the
524 * remote-tracking ref that would be derived from the
525 * configured refspec. In these cases, we want to
526 * take the opportunity to update their configured
527 * remote-tracking reference. However, we do not want
528 * to mention these entries in FETCH_HEAD at all, as
529 * they would simply be duplicates of existing
530 * entries, so we set them FETCH_HEAD_IGNORE below.
531 *
532 * We compute these entries now, based only on the
533 * refspecs specified on the command line. But we add
534 * them to the list following the refspecs resulting
535 * from the tags option so that one of the latter,
536 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
537 * by ref_remove_duplicates() in favor of one of these
538 * opportunistic entries with FETCH_HEAD_IGNORE.
539 */
540 if (refmap.nr)
541 fetch_refspec = &refmap;
542 else
543 fetch_refspec = &remote->fetch;
544
545 for (i = 0; i < fetch_refspec->nr; i++)
546 get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
547 } else if (refmap.nr) {
548 die("--refmap option is only meaningful with command-line refspec(s)");
549 } else {
550 /* Use the defaults */
551 struct branch *branch = branch_get(NULL);
552 int has_merge = branch_has_merge_config(branch);
553 if (remote &&
554 (remote->fetch.nr ||
555 /* Note: has_merge implies non-NULL branch->remote_name */
556 (has_merge && !strcmp(branch->remote_name, remote->name)))) {
557 for (i = 0; i < remote->fetch.nr; i++) {
558 get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
559 if (remote->fetch.items[i].dst &&
560 remote->fetch.items[i].dst[0])
561 *autotags = 1;
562 if (!i && !has_merge && ref_map &&
563 !remote->fetch.items[0].pattern)
564 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
565 }
566 /*
567 * if the remote we're fetching from is the same
568 * as given in branch.<name>.remote, we add the
569 * ref given in branch.<name>.merge, too.
570 *
571 * Note: has_merge implies non-NULL branch->remote_name
572 */
573 if (has_merge &&
574 !strcmp(branch->remote_name, remote->name))
575 add_merge_config(&ref_map, remote_refs, branch, &tail);
576 } else if (!prefetch) {
577 ref_map = get_remote_ref(remote_refs, "HEAD");
578 if (!ref_map)
579 die(_("couldn't find remote ref HEAD"));
580 ref_map->fetch_head_status = FETCH_HEAD_MERGE;
581 tail = &ref_map->next;
582 }
583 }
584
585 if (tags == TAGS_SET)
586 /* also fetch all tags */
587 get_fetch_map(remote_refs, tag_refspec, &tail, 0);
588 else if (tags == TAGS_DEFAULT && *autotags)
589 find_non_local_tags(remote_refs, NULL, &ref_map, &tail);
590
591 /* Now append any refs to be updated opportunistically: */
592 *tail = orefs;
593 for (rm = orefs; rm; rm = rm->next) {
594 rm->fetch_head_status = FETCH_HEAD_IGNORE;
595 tail = &rm->next;
596 }
597
598 /*
599 * apply negative refspecs first, before we remove duplicates. This is
600 * necessary as negative refspecs might remove an otherwise conflicting
601 * duplicate.
602 */
603 if (rs->nr)
604 ref_map = apply_negative_refspecs(ref_map, rs);
605 else
606 ref_map = apply_negative_refspecs(ref_map, &remote->fetch);
607
608 ref_map = ref_remove_duplicates(ref_map);
609
610 for (rm = ref_map; rm; rm = rm->next) {
611 if (rm->peer_ref) {
612 const char *refname = rm->peer_ref->name;
613 struct refname_hash_entry *peer_item;
614 unsigned int hash = strhash(refname);
615
616 if (!existing_refs_populated) {
617 refname_hash_init(&existing_refs);
618 refs_for_each_ref(get_main_ref_store(the_repository),
619 add_one_refname,
620 &existing_refs);
621 existing_refs_populated = 1;
622 }
623
624 peer_item = hashmap_get_entry_from_hash(&existing_refs,
625 hash, refname,
626 struct refname_hash_entry, ent);
627 if (peer_item) {
628 struct object_id *old_oid = &peer_item->oid;
629 oidcpy(&rm->peer_ref->old_oid, old_oid);
630 }
631 }
632 }
633 if (existing_refs_populated)
634 hashmap_clear_and_free(&existing_refs, struct refname_hash_entry, ent);
635
636 return ref_map;
637 }
638
639 #define STORE_REF_ERROR_OTHER 1
640 #define STORE_REF_ERROR_DF_CONFLICT 2
641
642 static int s_update_ref(const char *action,
643 struct ref *ref,
644 struct ref_transaction *transaction,
645 int check_old)
646 {
647 char *msg;
648 char *rla = getenv("GIT_REFLOG_ACTION");
649 struct ref_transaction *our_transaction = NULL;
650 struct strbuf err = STRBUF_INIT;
651 int ret;
652
653 if (dry_run)
654 return 0;
655 if (!rla)
656 rla = default_rla.buf;
657 msg = xstrfmt("%s: %s", rla, action);
658
659 /*
660 * If no transaction was passed to us, we manage the transaction
661 * ourselves. Otherwise, we trust the caller to handle the transaction
662 * lifecycle.
663 */
664 if (!transaction) {
665 transaction = our_transaction = ref_store_transaction_begin(get_main_ref_store(the_repository),
666 &err);
667 if (!transaction) {
668 ret = STORE_REF_ERROR_OTHER;
669 goto out;
670 }
671 }
672
673 ret = ref_transaction_update(transaction, ref->name, &ref->new_oid,
674 check_old ? &ref->old_oid : NULL,
675 NULL, NULL, 0, msg, &err);
676 if (ret) {
677 ret = STORE_REF_ERROR_OTHER;
678 goto out;
679 }
680
681 if (our_transaction) {
682 switch (ref_transaction_commit(our_transaction, &err)) {
683 case 0:
684 break;
685 case TRANSACTION_NAME_CONFLICT:
686 ret = STORE_REF_ERROR_DF_CONFLICT;
687 goto out;
688 default:
689 ret = STORE_REF_ERROR_OTHER;
690 goto out;
691 }
692 }
693
694 out:
695 ref_transaction_free(our_transaction);
696 if (ret)
697 error("%s", err.buf);
698 strbuf_release(&err);
699 free(msg);
700 return ret;
701 }
702
703 static int refcol_width(const struct ref *ref_map, int compact_format)
704 {
705 const struct ref *ref;
706 int max, width = 10;
707
708 max = term_columns();
709 if (compact_format)
710 max = max * 2 / 3;
711
712 for (ref = ref_map; ref; ref = ref->next) {
713 int rlen, llen = 0, len;
714
715 if (ref->status == REF_STATUS_REJECT_SHALLOW ||
716 !ref->peer_ref ||
717 !strcmp(ref->name, "HEAD"))
718 continue;
719
720 /* uptodate lines are only shown on high verbosity level */
721 if (verbosity <= 0 && oideq(&ref->peer_ref->old_oid, &ref->old_oid))
722 continue;
723
724 rlen = utf8_strwidth(prettify_refname(ref->name));
725 if (!compact_format)
726 llen = utf8_strwidth(prettify_refname(ref->peer_ref->name));
727
728 /*
729 * rough estimation to see if the output line is too long and
730 * should not be counted (we can't do precise calculation
731 * anyway because we don't know if the error explanation part
732 * will be printed in update_local_ref)
733 */
734 len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
735 if (len >= max)
736 continue;
737
738 if (width < rlen)
739 width = rlen;
740 }
741
742 return width;
743 }
744
745 static void display_state_init(struct display_state *display_state, struct ref *ref_map,
746 const char *raw_url, enum display_format format)
747 {
748 int i;
749
750 memset(display_state, 0, sizeof(*display_state));
751 strbuf_init(&display_state->buf, 0);
752 display_state->format = format;
753
754 if (raw_url)
755 display_state->url = transport_anonymize_url(raw_url);
756 else
757 display_state->url = xstrdup("foreign");
758
759 display_state->url_len = strlen(display_state->url);
760 for (i = display_state->url_len - 1; display_state->url[i] == '/' && 0 <= i; i--)
761 ;
762 display_state->url_len = i + 1;
763 if (4 < i && !strncmp(".git", display_state->url + i - 3, 4))
764 display_state->url_len = i - 3;
765
766 if (verbosity < 0)
767 return;
768
769 switch (display_state->format) {
770 case DISPLAY_FORMAT_FULL:
771 case DISPLAY_FORMAT_COMPACT:
772 display_state->refcol_width = refcol_width(ref_map,
773 display_state->format == DISPLAY_FORMAT_COMPACT);
774 break;
775 case DISPLAY_FORMAT_PORCELAIN:
776 /* We don't need to precompute anything here. */
777 break;
778 default:
779 BUG("unexpected display format %d", display_state->format);
780 }
781 }
782
783 static void display_state_release(struct display_state *display_state)
784 {
785 strbuf_release(&display_state->buf);
786 free(display_state->url);
787 }
788
789 static void print_remote_to_local(struct display_state *display_state,
790 const char *remote, const char *local)
791 {
792 strbuf_addf(&display_state->buf, "%-*s -> %s",
793 display_state->refcol_width, remote, local);
794 }
795
796 static int find_and_replace(struct strbuf *haystack,
797 const char *needle,
798 const char *placeholder)
799 {
800 const char *p = NULL;
801 int plen, nlen;
802
803 nlen = strlen(needle);
804 if (ends_with(haystack->buf, needle))
805 p = haystack->buf + haystack->len - nlen;
806 else
807 p = strstr(haystack->buf, needle);
808 if (!p)
809 return 0;
810
811 if (p > haystack->buf && p[-1] != '/')
812 return 0;
813
814 plen = strlen(p);
815 if (plen > nlen && p[nlen] != '/')
816 return 0;
817
818 strbuf_splice(haystack, p - haystack->buf, nlen,
819 placeholder, strlen(placeholder));
820 return 1;
821 }
822
823 static void print_compact(struct display_state *display_state,
824 const char *remote, const char *local)
825 {
826 struct strbuf r = STRBUF_INIT;
827 struct strbuf l = STRBUF_INIT;
828
829 if (!strcmp(remote, local)) {
830 strbuf_addf(&display_state->buf, "%-*s -> *", display_state->refcol_width, remote);
831 return;
832 }
833
834 strbuf_addstr(&r, remote);
835 strbuf_addstr(&l, local);
836
837 if (!find_and_replace(&r, local, "*"))
838 find_and_replace(&l, remote, "*");
839 print_remote_to_local(display_state, r.buf, l.buf);
840
841 strbuf_release(&r);
842 strbuf_release(&l);
843 }
844
845 static void display_ref_update(struct display_state *display_state, char code,
846 const char *summary, const char *error,
847 const char *remote, const char *local,
848 const struct object_id *old_oid,
849 const struct object_id *new_oid,
850 int summary_width)
851 {
852 FILE *f = stderr;
853
854 if (verbosity < 0)
855 return;
856
857 strbuf_reset(&display_state->buf);
858
859 switch (display_state->format) {
860 case DISPLAY_FORMAT_FULL:
861 case DISPLAY_FORMAT_COMPACT: {
862 int width;
863
864 if (!display_state->shown_url) {
865 strbuf_addf(&display_state->buf, _("From %.*s\n"),
866 display_state->url_len, display_state->url);
867 display_state->shown_url = 1;
868 }
869
870 width = (summary_width + strlen(summary) - gettext_width(summary));
871 remote = prettify_refname(remote);
872 local = prettify_refname(local);
873
874 strbuf_addf(&display_state->buf, " %c %-*s ", code, width, summary);
875
876 if (display_state->format != DISPLAY_FORMAT_COMPACT)
877 print_remote_to_local(display_state, remote, local);
878 else
879 print_compact(display_state, remote, local);
880
881 if (error)
882 strbuf_addf(&display_state->buf, " (%s)", error);
883
884 break;
885 }
886 case DISPLAY_FORMAT_PORCELAIN:
887 strbuf_addf(&display_state->buf, "%c %s %s %s", code,
888 oid_to_hex(old_oid), oid_to_hex(new_oid), local);
889 f = stdout;
890 break;
891 default:
892 BUG("unexpected display format %d", display_state->format);
893 };
894 strbuf_addch(&display_state->buf, '\n');
895
896 fputs(display_state->buf.buf, f);
897 }
898
899 static int update_local_ref(struct ref *ref,
900 struct ref_transaction *transaction,
901 struct display_state *display_state,
902 const struct ref *remote_ref,
903 int summary_width,
904 const struct fetch_config *config)
905 {
906 struct commit *current = NULL, *updated;
907 int fast_forward = 0;
908
909 if (!repo_has_object_file(the_repository, &ref->new_oid))
910 die(_("object %s not found"), oid_to_hex(&ref->new_oid));
911
912 if (oideq(&ref->old_oid, &ref->new_oid)) {
913 if (verbosity > 0)
914 display_ref_update(display_state, '=', _("[up to date]"), NULL,
915 remote_ref->name, ref->name,
916 &ref->old_oid, &ref->new_oid, summary_width);
917 return 0;
918 }
919
920 if (!update_head_ok &&
921 !is_null_oid(&ref->old_oid) &&
922 branch_checked_out(ref->name)) {
923 /*
924 * If this is the head, and it's not okay to update
925 * the head, and the old value of the head isn't empty...
926 */
927 display_ref_update(display_state, '!', _("[rejected]"),
928 _("can't fetch into checked-out branch"),
929 remote_ref->name, ref->name,
930 &ref->old_oid, &ref->new_oid, summary_width);
931 return 1;
932 }
933
934 if (!is_null_oid(&ref->old_oid) &&
935 starts_with(ref->name, "refs/tags/")) {
936 if (force || ref->force) {
937 int r;
938 r = s_update_ref("updating tag", ref, transaction, 0);
939 display_ref_update(display_state, r ? '!' : 't', _("[tag update]"),
940 r ? _("unable to update local ref") : NULL,
941 remote_ref->name, ref->name,
942 &ref->old_oid, &ref->new_oid, summary_width);
943 return r;
944 } else {
945 display_ref_update(display_state, '!', _("[rejected]"),
946 _("would clobber existing tag"),
947 remote_ref->name, ref->name,
948 &ref->old_oid, &ref->new_oid, summary_width);
949 return 1;
950 }
951 }
952
953 current = lookup_commit_reference_gently(the_repository,
954 &ref->old_oid, 1);
955 updated = lookup_commit_reference_gently(the_repository,
956 &ref->new_oid, 1);
957 if (!current || !updated) {
958 const char *msg;
959 const char *what;
960 int r;
961 /*
962 * Nicely describe the new ref we're fetching.
963 * Base this on the remote's ref name, as it's
964 * more likely to follow a standard layout.
965 */
966 if (starts_with(remote_ref->name, "refs/tags/")) {
967 msg = "storing tag";
968 what = _("[new tag]");
969 } else if (starts_with(remote_ref->name, "refs/heads/")) {
970 msg = "storing head";
971 what = _("[new branch]");
972 } else {
973 msg = "storing ref";
974 what = _("[new ref]");
975 }
976
977 r = s_update_ref(msg, ref, transaction, 0);
978 display_ref_update(display_state, r ? '!' : '*', what,
979 r ? _("unable to update local ref") : NULL,
980 remote_ref->name, ref->name,
981 &ref->old_oid, &ref->new_oid, summary_width);
982 return r;
983 }
984
985 if (config->show_forced_updates) {
986 uint64_t t_before = getnanotime();
987 fast_forward = repo_in_merge_bases(the_repository, current,
988 updated);
989 if (fast_forward < 0)
990 exit(128);
991 forced_updates_ms += (getnanotime() - t_before) / 1000000;
992 } else {
993 fast_forward = 1;
994 }
995
996 if (fast_forward) {
997 struct strbuf quickref = STRBUF_INIT;
998 int r;
999
1000 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
1001 strbuf_addstr(&quickref, "..");
1002 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
1003 r = s_update_ref("fast-forward", ref, transaction, 1);
1004 display_ref_update(display_state, r ? '!' : ' ', quickref.buf,
1005 r ? _("unable to update local ref") : NULL,
1006 remote_ref->name, ref->name,
1007 &ref->old_oid, &ref->new_oid, summary_width);
1008 strbuf_release(&quickref);
1009 return r;
1010 } else if (force || ref->force) {
1011 struct strbuf quickref = STRBUF_INIT;
1012 int r;
1013 strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
1014 strbuf_addstr(&quickref, "...");
1015 strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
1016 r = s_update_ref("forced-update", ref, transaction, 1);
1017 display_ref_update(display_state, r ? '!' : '+', quickref.buf,
1018 r ? _("unable to update local ref") : _("forced update"),
1019 remote_ref->name, ref->name,
1020 &ref->old_oid, &ref->new_oid, summary_width);
1021 strbuf_release(&quickref);
1022 return r;
1023 } else {
1024 display_ref_update(display_state, '!', _("[rejected]"), _("non-fast-forward"),
1025 remote_ref->name, ref->name,
1026 &ref->old_oid, &ref->new_oid, summary_width);
1027 return 1;
1028 }
1029 }
1030
1031 static const struct object_id *iterate_ref_map(void *cb_data)
1032 {
1033 struct ref **rm = cb_data;
1034 struct ref *ref = *rm;
1035
1036 while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
1037 ref = ref->next;
1038 if (!ref)
1039 return NULL;
1040 *rm = ref->next;
1041 return &ref->old_oid;
1042 }
1043
1044 struct fetch_head {
1045 FILE *fp;
1046 struct strbuf buf;
1047 };
1048
1049 static int open_fetch_head(struct fetch_head *fetch_head)
1050 {
1051 const char *filename = git_path_fetch_head(the_repository);
1052
1053 if (write_fetch_head) {
1054 fetch_head->fp = fopen(filename, "a");
1055 if (!fetch_head->fp)
1056 return error_errno(_("cannot open '%s'"), filename);
1057 strbuf_init(&fetch_head->buf, 0);
1058 } else {
1059 fetch_head->fp = NULL;
1060 }
1061
1062 return 0;
1063 }
1064
1065 static void append_fetch_head(struct fetch_head *fetch_head,
1066 const struct object_id *old_oid,
1067 enum fetch_head_status fetch_head_status,
1068 const char *note,
1069 const char *url, size_t url_len)
1070 {
1071 char old_oid_hex[GIT_MAX_HEXSZ + 1];
1072 const char *merge_status_marker;
1073 size_t i;
1074
1075 if (!fetch_head->fp)
1076 return;
1077
1078 switch (fetch_head_status) {
1079 case FETCH_HEAD_NOT_FOR_MERGE:
1080 merge_status_marker = "not-for-merge";
1081 break;
1082 case FETCH_HEAD_MERGE:
1083 merge_status_marker = "";
1084 break;
1085 default:
1086 /* do not write anything to FETCH_HEAD */
1087 return;
1088 }
1089
1090 strbuf_addf(&fetch_head->buf, "%s\t%s\t%s",
1091 oid_to_hex_r(old_oid_hex, old_oid), merge_status_marker, note);
1092 for (i = 0; i < url_len; ++i)
1093 if ('\n' == url[i])
1094 strbuf_addstr(&fetch_head->buf, "\\n");
1095 else
1096 strbuf_addch(&fetch_head->buf, url[i]);
1097 strbuf_addch(&fetch_head->buf, '\n');
1098
1099 /*
1100 * When using an atomic fetch, we do not want to update FETCH_HEAD if
1101 * any of the reference updates fails. We thus have to write all
1102 * updates to a buffer first and only commit it as soon as all
1103 * references have been successfully updated.
1104 */
1105 if (!atomic_fetch) {
1106 strbuf_write(&fetch_head->buf, fetch_head->fp);
1107 strbuf_reset(&fetch_head->buf);
1108 }
1109 }
1110
1111 static void commit_fetch_head(struct fetch_head *fetch_head)
1112 {
1113 if (!fetch_head->fp || !atomic_fetch)
1114 return;
1115 strbuf_write(&fetch_head->buf, fetch_head->fp);
1116 }
1117
1118 static void close_fetch_head(struct fetch_head *fetch_head)
1119 {
1120 if (!fetch_head->fp)
1121 return;
1122
1123 fclose(fetch_head->fp);
1124 strbuf_release(&fetch_head->buf);
1125 }
1126
1127 static const char warn_show_forced_updates[] =
1128 N_("fetch normally indicates which branches had a forced update,\n"
1129 "but that check has been disabled; to re-enable, use '--show-forced-updates'\n"
1130 "flag or run 'git config fetch.showForcedUpdates true'");
1131 static const char warn_time_show_forced_updates[] =
1132 N_("it took %.2f seconds to check forced updates; you can use\n"
1133 "'--no-show-forced-updates' or run 'git config fetch.showForcedUpdates false'\n"
1134 "to avoid this check\n");
1135
1136 static int store_updated_refs(struct display_state *display_state,
1137 const char *remote_name,
1138 int connectivity_checked,
1139 struct ref_transaction *transaction, struct ref *ref_map,
1140 struct fetch_head *fetch_head,
1141 const struct fetch_config *config)
1142 {
1143 int rc = 0;
1144 struct strbuf note = STRBUF_INIT;
1145 const char *what, *kind;
1146 struct ref *rm;
1147 int want_status;
1148 int summary_width = 0;
1149
1150 if (verbosity >= 0)
1151 summary_width = transport_summary_width(ref_map);
1152
1153 if (!connectivity_checked) {
1154 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1155
1156 opt.exclude_hidden_refs_section = "fetch";
1157 rm = ref_map;
1158 if (check_connected(iterate_ref_map, &rm, &opt)) {
1159 rc = error(_("%s did not send all necessary objects\n"),
1160 display_state->url);
1161 goto abort;
1162 }
1163 }
1164
1165 /*
1166 * We do a pass for each fetch_head_status type in their enum order, so
1167 * merged entries are written before not-for-merge. That lets readers
1168 * use FETCH_HEAD as a refname to refer to the ref to be merged.
1169 */
1170 for (want_status = FETCH_HEAD_MERGE;
1171 want_status <= FETCH_HEAD_IGNORE;
1172 want_status++) {
1173 for (rm = ref_map; rm; rm = rm->next) {
1174 struct ref *ref = NULL;
1175
1176 if (rm->status == REF_STATUS_REJECT_SHALLOW) {
1177 if (want_status == FETCH_HEAD_MERGE)
1178 warning(_("rejected %s because shallow roots are not allowed to be updated"),
1179 rm->peer_ref ? rm->peer_ref->name : rm->name);
1180 continue;
1181 }
1182
1183 /*
1184 * When writing FETCH_HEAD we need to determine whether
1185 * we already have the commit or not. If not, then the
1186 * reference is not for merge and needs to be written
1187 * to the reflog after other commits which we already
1188 * have. We're not interested in this property though
1189 * in case FETCH_HEAD is not to be updated, so we can
1190 * skip the classification in that case.
1191 */
1192 if (fetch_head->fp) {
1193 struct commit *commit = NULL;
1194
1195 /*
1196 * References in "refs/tags/" are often going to point
1197 * to annotated tags, which are not part of the
1198 * commit-graph. We thus only try to look up refs in
1199 * the graph which are not in that namespace to not
1200 * regress performance in repositories with many
1201 * annotated tags.
1202 */
1203 if (!starts_with(rm->name, "refs/tags/"))
1204 commit = lookup_commit_in_graph(the_repository, &rm->old_oid);
1205 if (!commit) {
1206 commit = lookup_commit_reference_gently(the_repository,
1207 &rm->old_oid,
1208 1);
1209 if (!commit)
1210 rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
1211 }
1212 }
1213
1214 if (rm->fetch_head_status != want_status)
1215 continue;
1216
1217 if (rm->peer_ref) {
1218 ref = alloc_ref(rm->peer_ref->name);
1219 oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
1220 oidcpy(&ref->new_oid, &rm->old_oid);
1221 ref->force = rm->peer_ref->force;
1222 }
1223
1224 if (config->recurse_submodules != RECURSE_SUBMODULES_OFF &&
1225 (!rm->peer_ref || !oideq(&ref->old_oid, &ref->new_oid))) {
1226 check_for_new_submodule_commits(&rm->old_oid);
1227 }
1228
1229 if (!strcmp(rm->name, "HEAD")) {
1230 kind = "";
1231 what = "";
1232 } else if (skip_prefix(rm->name, "refs/heads/", &what)) {
1233 kind = "branch";
1234 } else if (skip_prefix(rm->name, "refs/tags/", &what)) {
1235 kind = "tag";
1236 } else if (skip_prefix(rm->name, "refs/remotes/", &what)) {
1237 kind = "remote-tracking branch";
1238 } else {
1239 kind = "";
1240 what = rm->name;
1241 }
1242
1243 strbuf_reset(&note);
1244 if (*what) {
1245 if (*kind)
1246 strbuf_addf(&note, "%s ", kind);
1247 strbuf_addf(&note, "'%s' of ", what);
1248 }
1249
1250 append_fetch_head(fetch_head, &rm->old_oid,
1251 rm->fetch_head_status,
1252 note.buf, display_state->url,
1253 display_state->url_len);
1254
1255 if (ref) {
1256 rc |= update_local_ref(ref, transaction, display_state,
1257 rm, summary_width, config);
1258 free(ref);
1259 } else if (write_fetch_head || dry_run) {
1260 /*
1261 * Display fetches written to FETCH_HEAD (or
1262 * would be written to FETCH_HEAD, if --dry-run
1263 * is set).
1264 */
1265 display_ref_update(display_state, '*',
1266 *kind ? kind : "branch", NULL,
1267 rm->name,
1268 "FETCH_HEAD",
1269 &rm->new_oid, &rm->old_oid,
1270 summary_width);
1271 }
1272 }
1273 }
1274
1275 if (rc & STORE_REF_ERROR_DF_CONFLICT)
1276 error(_("some local refs could not be updated; try running\n"
1277 " 'git remote prune %s' to remove any old, conflicting "
1278 "branches"), remote_name);
1279
1280 if (advice_enabled(ADVICE_FETCH_SHOW_FORCED_UPDATES)) {
1281 if (!config->show_forced_updates) {
1282 warning(_(warn_show_forced_updates));
1283 } else if (forced_updates_ms > FORCED_UPDATES_DELAY_WARNING_IN_MS) {
1284 warning(_(warn_time_show_forced_updates),
1285 forced_updates_ms / 1000.0);
1286 }
1287 }
1288
1289 abort:
1290 strbuf_release(&note);
1291 return rc;
1292 }
1293
1294 /*
1295 * We would want to bypass the object transfer altogether if
1296 * everything we are going to fetch already exists and is connected
1297 * locally.
1298 */
1299 static int check_exist_and_connected(struct ref *ref_map)
1300 {
1301 struct ref *rm = ref_map;
1302 struct check_connected_options opt = CHECK_CONNECTED_INIT;
1303 struct ref *r;
1304
1305 /*
1306 * If we are deepening a shallow clone we already have these
1307 * objects reachable. Running rev-list here will return with
1308 * a good (0) exit status and we'll bypass the fetch that we
1309 * really need to perform. Claiming failure now will ensure
1310 * we perform the network exchange to deepen our history.
1311 */
1312 if (deepen)
1313 return -1;
1314
1315 /*
1316 * Similarly, if we need to refetch, we always want to perform a full
1317 * fetch ignoring existing objects.
1318 */
1319 if (refetch)
1320 return -1;
1321
1322
1323 /*
1324 * check_connected() allows objects to merely be promised, but
1325 * we need all direct targets to exist.
1326 */
1327 for (r = rm; r; r = r->next) {
1328 if (!repo_has_object_file_with_flags(the_repository, &r->old_oid,
1329 OBJECT_INFO_SKIP_FETCH_OBJECT))
1330 return -1;
1331 }
1332
1333 opt.quiet = 1;
1334 opt.exclude_hidden_refs_section = "fetch";
1335 return check_connected(iterate_ref_map, &rm, &opt);
1336 }
1337
1338 static int fetch_and_consume_refs(struct display_state *display_state,
1339 struct transport *transport,
1340 struct ref_transaction *transaction,
1341 struct ref *ref_map,
1342 struct fetch_head *fetch_head,
1343 const struct fetch_config *config)
1344 {
1345 int connectivity_checked = 1;
1346 int ret;
1347
1348 /*
1349 * We don't need to perform a fetch in case we can already satisfy all
1350 * refs.
1351 */
1352 ret = check_exist_and_connected(ref_map);
1353 if (ret) {
1354 trace2_region_enter("fetch", "fetch_refs", the_repository);
1355 ret = transport_fetch_refs(transport, ref_map);
1356 trace2_region_leave("fetch", "fetch_refs", the_repository);
1357 if (ret)
1358 goto out;
1359 connectivity_checked = transport->smart_options ?
1360 transport->smart_options->connectivity_checked : 0;
1361 }
1362
1363 trace2_region_enter("fetch", "consume_refs", the_repository);
1364 ret = store_updated_refs(display_state, transport->remote->name,
1365 connectivity_checked, transaction, ref_map,
1366 fetch_head, config);
1367 trace2_region_leave("fetch", "consume_refs", the_repository);
1368
1369 out:
1370 transport_unlock_pack(transport, 0);
1371 return ret;
1372 }
1373
1374 static int prune_refs(struct display_state *display_state,
1375 struct refspec *rs,
1376 struct ref_transaction *transaction,
1377 struct ref *ref_map)
1378 {
1379 int result = 0;
1380 struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
1381 struct strbuf err = STRBUF_INIT;
1382 const char *dangling_msg = dry_run
1383 ? _(" (%s will become dangling)")
1384 : _(" (%s has become dangling)");
1385
1386 if (!dry_run) {
1387 if (transaction) {
1388 for (ref = stale_refs; ref; ref = ref->next) {
1389 result = ref_transaction_delete(transaction, ref->name, NULL, 0,
1390 "fetch: prune", &err);
1391 if (result)
1392 goto cleanup;
1393 }
1394 } else {
1395 struct string_list refnames = STRING_LIST_INIT_NODUP;
1396
1397 for (ref = stale_refs; ref; ref = ref->next)
1398 string_list_append(&refnames, ref->name);
1399
1400 result = refs_delete_refs(get_main_ref_store(the_repository),
1401 "fetch: prune", &refnames,
1402 0);
1403 string_list_clear(&refnames, 0);
1404 }
1405 }
1406
1407 if (verbosity >= 0) {
1408 int summary_width = transport_summary_width(stale_refs);
1409
1410 for (ref = stale_refs; ref; ref = ref->next) {
1411 display_ref_update(display_state, '-', _("[deleted]"), NULL,
1412 _("(none)"), ref->name,
1413 &ref->new_oid, &ref->old_oid,
1414 summary_width);
1415 refs_warn_dangling_symref(get_main_ref_store(the_repository),
1416 stderr, dangling_msg, ref->name);
1417 }
1418 }
1419
1420 cleanup:
1421 strbuf_release(&err);
1422 free_refs(stale_refs);
1423 return result;
1424 }
1425
1426 static void check_not_current_branch(struct ref *ref_map)
1427 {
1428 const char *path;
1429 for (; ref_map; ref_map = ref_map->next)
1430 if (ref_map->peer_ref &&
1431 starts_with(ref_map->peer_ref->name, "refs/heads/") &&
1432 (path = branch_checked_out(ref_map->peer_ref->name)))
1433 die(_("refusing to fetch into branch '%s' "
1434 "checked out at '%s'"),
1435 ref_map->peer_ref->name, path);
1436 }
1437
1438 static int truncate_fetch_head(void)
1439 {
1440 const char *filename = git_path_fetch_head(the_repository);
1441 FILE *fp = fopen_for_writing(filename);
1442
1443 if (!fp)
1444 return error_errno(_("cannot open '%s'"), filename);
1445 fclose(fp);
1446 return 0;
1447 }
1448
1449 static void set_option(struct transport *transport, const char *name, const char *value)
1450 {
1451 int r = transport_set_option(transport, name, value);
1452 if (r < 0)
1453 die(_("option \"%s\" value \"%s\" is not valid for %s"),
1454 name, value, transport->url);
1455 if (r > 0)
1456 warning(_("option \"%s\" is ignored for %s\n"),
1457 name, transport->url);
1458 }
1459
1460
1461 static int add_oid(const char *refname UNUSED,
1462 const struct object_id *oid,
1463 int flags UNUSED, void *cb_data)
1464 {
1465 struct oid_array *oids = cb_data;
1466
1467 oid_array_append(oids, oid);
1468 return 0;
1469 }
1470
1471 static void add_negotiation_tips(struct git_transport_options *smart_options)
1472 {
1473 struct oid_array *oids = xcalloc(1, sizeof(*oids));
1474 int i;
1475
1476 for (i = 0; i < negotiation_tip.nr; i++) {
1477 const char *s = negotiation_tip.items[i].string;
1478 int old_nr;
1479 if (!has_glob_specials(s)) {
1480 struct object_id oid;
1481 if (repo_get_oid(the_repository, s, &oid))
1482 die(_("%s is not a valid object"), s);
1483 if (!has_object(the_repository, &oid, 0))
1484 die(_("the object %s does not exist"), s);
1485 oid_array_append(oids, &oid);
1486 continue;
1487 }
1488 old_nr = oids->nr;
1489 refs_for_each_glob_ref(get_main_ref_store(the_repository),
1490 add_oid, s, oids);
1491 if (old_nr == oids->nr)
1492 warning("ignoring --negotiation-tip=%s because it does not match any refs",
1493 s);
1494 }
1495 smart_options->negotiation_tips = oids;
1496 }
1497
1498 static struct transport *prepare_transport(struct remote *remote, int deepen)
1499 {
1500 struct transport *transport;
1501
1502 transport = transport_get(remote, NULL);
1503 transport_set_verbosity(transport, verbosity, progress);
1504 transport->family = family;
1505 if (upload_pack)
1506 set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1507 if (keep)
1508 set_option(transport, TRANS_OPT_KEEP, "yes");
1509 if (depth)
1510 set_option(transport, TRANS_OPT_DEPTH, depth);
1511 if (deepen && deepen_since)
1512 set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1513 if (deepen && deepen_not.nr)
1514 set_option(transport, TRANS_OPT_DEEPEN_NOT,
1515 (const char *)&deepen_not);
1516 if (deepen_relative)
1517 set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1518 if (update_shallow)
1519 set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1520 if (refetch)
1521 set_option(transport, TRANS_OPT_REFETCH, "yes");
1522 if (filter_options.choice) {
1523 const char *spec =
1524 expand_list_objects_filter_spec(&filter_options);
1525 set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, spec);
1526 set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1527 }
1528 if (negotiation_tip.nr) {
1529 if (transport->smart_options)
1530 add_negotiation_tips(transport->smart_options);
1531 else
1532 warning("ignoring --negotiation-tip because the protocol does not support it");
1533 }
1534 return transport;
1535 }
1536
1537 static int backfill_tags(struct display_state *display_state,
1538 struct transport *transport,
1539 struct ref_transaction *transaction,
1540 struct ref *ref_map,
1541 struct fetch_head *fetch_head,
1542 const struct fetch_config *config)
1543 {
1544 int retcode, cannot_reuse;
1545
1546 /*
1547 * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1548 * when remote helper is used (setting it to an empty string
1549 * is not unsetting). We could extend the remote helper
1550 * protocol for that, but for now, just force a new connection
1551 * without deepen-since. Similar story for deepen-not.
1552 */
1553 cannot_reuse = transport->cannot_reuse ||
1554 deepen_since || deepen_not.nr;
1555 if (cannot_reuse) {
1556 gsecondary = prepare_transport(transport->remote, 0);
1557 transport = gsecondary;
1558 }
1559
1560 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1561 transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1562 transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1563 retcode = fetch_and_consume_refs(display_state, transport, transaction, ref_map,
1564 fetch_head, config);
1565
1566 if (gsecondary) {
1567 transport_disconnect(gsecondary);
1568 gsecondary = NULL;
1569 }
1570
1571 return retcode;
1572 }
1573
1574 static int do_fetch(struct transport *transport,
1575 struct refspec *rs,
1576 const struct fetch_config *config)
1577 {
1578 struct ref_transaction *transaction = NULL;
1579 struct ref *ref_map = NULL;
1580 struct display_state display_state = { 0 };
1581 int autotags = (transport->remote->fetch_tags == 1);
1582 int retcode = 0;
1583 const struct ref *remote_refs;
1584 struct transport_ls_refs_options transport_ls_refs_options =
1585 TRANSPORT_LS_REFS_OPTIONS_INIT;
1586 int must_list_refs = 1;
1587 struct fetch_head fetch_head = { 0 };
1588 struct strbuf err = STRBUF_INIT;
1589
1590 if (tags == TAGS_DEFAULT) {
1591 if (transport->remote->fetch_tags == 2)
1592 tags = TAGS_SET;
1593 if (transport->remote->fetch_tags == -1)
1594 tags = TAGS_UNSET;
1595 }
1596
1597 /* if not appending, truncate FETCH_HEAD */
1598 if (!append && write_fetch_head) {
1599 retcode = truncate_fetch_head();
1600 if (retcode)
1601 goto cleanup;
1602 }
1603
1604 if (rs->nr) {
1605 int i;
1606
1607 refspec_ref_prefixes(rs, &transport_ls_refs_options.ref_prefixes);
1608
1609 /*
1610 * We can avoid listing refs if all of them are exact
1611 * OIDs
1612 */
1613 must_list_refs = 0;
1614 for (i = 0; i < rs->nr; i++) {
1615 if (!rs->items[i].exact_sha1) {
1616 must_list_refs = 1;
1617 break;
1618 }
1619 }
1620 } else {
1621 struct branch *branch = branch_get(NULL);
1622
1623 if (transport->remote->fetch.nr)
1624 refspec_ref_prefixes(&transport->remote->fetch,
1625 &transport_ls_refs_options.ref_prefixes);
1626 if (branch_has_merge_config(branch) &&
1627 !strcmp(branch->remote_name, transport->remote->name)) {
1628 int i;
1629 for (i = 0; i < branch->merge_nr; i++) {
1630 strvec_push(&transport_ls_refs_options.ref_prefixes,
1631 branch->merge[i]->src);
1632 }
1633 }
1634 }
1635
1636 if (tags == TAGS_SET || tags == TAGS_DEFAULT) {
1637 must_list_refs = 1;
1638 if (transport_ls_refs_options.ref_prefixes.nr)
1639 strvec_push(&transport_ls_refs_options.ref_prefixes,
1640 "refs/tags/");
1641 }
1642
1643 if (must_list_refs) {
1644 trace2_region_enter("fetch", "remote_refs", the_repository);
1645 remote_refs = transport_get_remote_refs(transport,
1646 &transport_ls_refs_options);
1647 trace2_region_leave("fetch", "remote_refs", the_repository);
1648 } else
1649 remote_refs = NULL;
1650
1651 transport_ls_refs_options_release(&transport_ls_refs_options);
1652
1653 ref_map = get_ref_map(transport->remote, remote_refs, rs,
1654 tags, &autotags);
1655 if (!update_head_ok)
1656 check_not_current_branch(ref_map);
1657
1658 retcode = open_fetch_head(&fetch_head);
1659 if (retcode)
1660 goto cleanup;
1661
1662 display_state_init(&display_state, ref_map, transport->url,
1663 config->display_format);
1664
1665 if (atomic_fetch) {
1666 transaction = ref_store_transaction_begin(get_main_ref_store(the_repository),
1667 &err);
1668 if (!transaction) {
1669 retcode = -1;
1670 goto cleanup;
1671 }
1672 }
1673
1674 if (tags == TAGS_DEFAULT && autotags)
1675 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1676 if (prune) {
1677 /*
1678 * We only prune based on refspecs specified
1679 * explicitly (via command line or configuration); we
1680 * don't care whether --tags was specified.
1681 */
1682 if (rs->nr) {
1683 retcode = prune_refs(&display_state, rs, transaction, ref_map);
1684 } else {
1685 retcode = prune_refs(&display_state, &transport->remote->fetch,
1686 transaction, ref_map);
1687 }
1688 if (retcode != 0)
1689 retcode = 1;
1690 }
1691
1692 if (fetch_and_consume_refs(&display_state, transport, transaction, ref_map,
1693 &fetch_head, config)) {
1694 retcode = 1;
1695 goto cleanup;
1696 }
1697
1698 /*
1699 * If neither --no-tags nor --tags was specified, do automated tag
1700 * following.
1701 */
1702 if (tags == TAGS_DEFAULT && autotags) {
1703 struct ref *tags_ref_map = NULL, **tail = &tags_ref_map;
1704
1705 find_non_local_tags(remote_refs, transaction, &tags_ref_map, &tail);
1706 if (tags_ref_map) {
1707 /*
1708 * If backfilling of tags fails then we want to tell
1709 * the user so, but we have to continue regardless to
1710 * populate upstream information of the references we
1711 * have already fetched above. The exception though is
1712 * when `--atomic` is passed: in that case we'll abort
1713 * the transaction and don't commit anything.
1714 */
1715 if (backfill_tags(&display_state, transport, transaction, tags_ref_map,
1716 &fetch_head, config))
1717 retcode = 1;
1718 }
1719
1720 free_refs(tags_ref_map);
1721 }
1722
1723 if (transaction) {
1724 if (retcode)
1725 goto cleanup;
1726
1727 retcode = ref_transaction_commit(transaction, &err);
1728 if (retcode) {
1729 ref_transaction_free(transaction);
1730 transaction = NULL;
1731 goto cleanup;
1732 }
1733 }
1734
1735 commit_fetch_head(&fetch_head);
1736
1737 if (set_upstream) {
1738 struct branch *branch = branch_get("HEAD");
1739 struct ref *rm;
1740 struct ref *source_ref = NULL;
1741
1742 /*
1743 * We're setting the upstream configuration for the
1744 * current branch. The relevant upstream is the
1745 * fetched branch that is meant to be merged with the
1746 * current one, i.e. the one fetched to FETCH_HEAD.
1747 *
1748 * When there are several such branches, consider the
1749 * request ambiguous and err on the safe side by doing
1750 * nothing and just emit a warning.
1751 */
1752 for (rm = ref_map; rm; rm = rm->next) {
1753 if (!rm->peer_ref) {
1754 if (source_ref) {
1755 warning(_("multiple branches detected, incompatible with --set-upstream"));
1756 goto cleanup;
1757 } else {
1758 source_ref = rm;
1759 }
1760 }
1761 }
1762 if (source_ref) {
1763 if (!branch) {
1764 const char *shortname = source_ref->name;
1765 skip_prefix(shortname, "refs/heads/", &shortname);
1766
1767 warning(_("could not set upstream of HEAD to '%s' from '%s' when "
1768 "it does not point to any branch."),
1769 shortname, transport->remote->name);
1770 goto cleanup;
1771 }
1772
1773 if (!strcmp(source_ref->name, "HEAD") ||
1774 starts_with(source_ref->name, "refs/heads/"))
1775 install_branch_config(0,
1776 branch->name,
1777 transport->remote->name,
1778 source_ref->name);
1779 else if (starts_with(source_ref->name, "refs/remotes/"))
1780 warning(_("not setting upstream for a remote remote-tracking branch"));
1781 else if (starts_with(source_ref->name, "refs/tags/"))
1782 warning(_("not setting upstream for a remote tag"));
1783 else
1784 warning(_("unknown branch type"));
1785 } else {
1786 warning(_("no source branch found;\n"
1787 "you need to specify exactly one branch with the --set-upstream option"));
1788 }
1789 }
1790
1791 cleanup:
1792 if (retcode) {
1793 if (err.len) {
1794 error("%s", err.buf);
1795 strbuf_reset(&err);
1796 }
1797 if (transaction && ref_transaction_abort(transaction, &err) &&
1798 err.len)
1799 error("%s", err.buf);
1800 }
1801
1802 display_state_release(&display_state);
1803 close_fetch_head(&fetch_head);
1804 strbuf_release(&err);
1805 free_refs(ref_map);
1806 return retcode;
1807 }
1808
1809 static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1810 {
1811 struct string_list *list = priv;
1812 if (!remote->skip_default_update)
1813 string_list_append(list, remote->name);
1814 return 0;
1815 }
1816
1817 struct remote_group_data {
1818 const char *name;
1819 struct string_list *list;
1820 };
1821
1822 static int get_remote_group(const char *key, const char *value,
1823 const struct config_context *ctx UNUSED,
1824 void *priv)
1825 {
1826 struct remote_group_data *g = priv;
1827
1828 if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1829 /* split list by white space */
1830 while (*value) {
1831 size_t wordlen = strcspn(value, " \t\n");
1832
1833 if (wordlen >= 1)
1834 string_list_append_nodup(g->list,
1835 xstrndup(value, wordlen));
1836 value += wordlen + (value[wordlen] != '\0');
1837 }
1838 }
1839
1840 return 0;
1841 }
1842
1843 static int add_remote_or_group(const char *name, struct string_list *list)
1844 {
1845 int prev_nr = list->nr;
1846 struct remote_group_data g;
1847 g.name = name; g.list = list;
1848
1849 git_config(get_remote_group, &g);
1850 if (list->nr == prev_nr) {
1851 struct remote *remote = remote_get(name);
1852 if (!remote_is_configured(remote, 0))
1853 return 0;
1854 string_list_append(list, remote->name);
1855 }
1856 return 1;
1857 }
1858
1859 static void add_options_to_argv(struct strvec *argv,
1860 const struct fetch_config *config)
1861 {
1862 if (dry_run)
1863 strvec_push(argv, "--dry-run");
1864 if (prune != -1)
1865 strvec_push(argv, prune ? "--prune" : "--no-prune");
1866 if (prune_tags != -1)
1867 strvec_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1868 if (update_head_ok)
1869 strvec_push(argv, "--update-head-ok");
1870 if (force)
1871 strvec_push(argv, "--force");
1872 if (keep)
1873 strvec_push(argv, "--keep");
1874 if (config->recurse_submodules == RECURSE_SUBMODULES_ON)
1875 strvec_push(argv, "--recurse-submodules");
1876 else if (config->recurse_submodules == RECURSE_SUBMODULES_OFF)
1877 strvec_push(argv, "--no-recurse-submodules");
1878 else if (config->recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1879 strvec_push(argv, "--recurse-submodules=on-demand");
1880 if (tags == TAGS_SET)
1881 strvec_push(argv, "--tags");
1882 else if (tags == TAGS_UNSET)
1883 strvec_push(argv, "--no-tags");
1884 if (verbosity >= 2)
1885 strvec_push(argv, "-v");
1886 if (verbosity >= 1)
1887 strvec_push(argv, "-v");
1888 else if (verbosity < 0)
1889 strvec_push(argv, "-q");
1890 if (family == TRANSPORT_FAMILY_IPV4)
1891 strvec_push(argv, "--ipv4");
1892 else if (family == TRANSPORT_FAMILY_IPV6)
1893 strvec_push(argv, "--ipv6");
1894 if (!write_fetch_head)
1895 strvec_push(argv, "--no-write-fetch-head");
1896 if (config->display_format == DISPLAY_FORMAT_PORCELAIN)
1897 strvec_pushf(argv, "--porcelain");
1898 }
1899
1900 /* Fetch multiple remotes in parallel */
1901
1902 struct parallel_fetch_state {
1903 const char **argv;
1904 struct string_list *remotes;
1905 int next, result;
1906 const struct fetch_config *config;
1907 };
1908
1909 static int fetch_next_remote(struct child_process *cp,
1910 struct strbuf *out UNUSED,
1911 void *cb, void **task_cb)
1912 {
1913 struct parallel_fetch_state *state = cb;
1914 char *remote;
1915
1916 if (state->next < 0 || state->next >= state->remotes->nr)
1917 return 0;
1918
1919 remote = state->remotes->items[state->next++].string;
1920 *task_cb = remote;
1921
1922 strvec_pushv(&cp->args, state->argv);
1923 strvec_push(&cp->args, remote);
1924 cp->git_cmd = 1;
1925
1926 if (verbosity >= 0 && state->config->display_format != DISPLAY_FORMAT_PORCELAIN)
1927 printf(_("Fetching %s\n"), remote);
1928
1929 return 1;
1930 }
1931
1932 static int fetch_failed_to_start(struct strbuf *out UNUSED,
1933 void *cb, void *task_cb)
1934 {
1935 struct parallel_fetch_state *state = cb;
1936 const char *remote = task_cb;
1937
1938 state->result = error(_("could not fetch %s"), remote);
1939
1940 return 0;
1941 }
1942
1943 static int fetch_finished(int result, struct strbuf *out,
1944 void *cb, void *task_cb)
1945 {
1946 struct parallel_fetch_state *state = cb;
1947 const char *remote = task_cb;
1948
1949 if (result) {
1950 strbuf_addf(out, _("could not fetch '%s' (exit code: %d)\n"),
1951 remote, result);
1952 state->result = -1;
1953 }
1954
1955 return 0;
1956 }
1957
1958 static int fetch_multiple(struct string_list *list, int max_children,
1959 const struct fetch_config *config)
1960 {
1961 int i, result = 0;
1962 struct strvec argv = STRVEC_INIT;
1963
1964 if (!append && write_fetch_head) {
1965 int errcode = truncate_fetch_head();
1966 if (errcode)
1967 return errcode;
1968 }
1969
1970 /*
1971 * Cancel out the fetch.bundleURI config when running subprocesses,
1972 * to avoid fetching from the same bundle list multiple times.
1973 */
1974 strvec_pushl(&argv, "-c", "fetch.bundleURI=",
1975 "fetch", "--append", "--no-auto-gc",
1976 "--no-write-commit-graph", NULL);
1977 add_options_to_argv(&argv, config);
1978
1979 if (max_children != 1 && list->nr != 1) {
1980 struct parallel_fetch_state state = { argv.v, list, 0, 0, config };
1981 const struct run_process_parallel_opts opts = {
1982 .tr2_category = "fetch",
1983 .tr2_label = "parallel/fetch",
1984
1985 .processes = max_children,
1986
1987 .get_next_task = &fetch_next_remote,
1988 .start_failure = &fetch_failed_to_start,
1989 .task_finished = &fetch_finished,
1990 .data = &state,
1991 };
1992
1993 strvec_push(&argv, "--end-of-options");
1994
1995 run_processes_parallel(&opts);
1996 result = state.result;
1997 } else
1998 for (i = 0; i < list->nr; i++) {
1999 const char *name = list->items[i].string;
2000 struct child_process cmd = CHILD_PROCESS_INIT;
2001
2002 strvec_pushv(&cmd.args, argv.v);
2003 strvec_push(&cmd.args, name);
2004 if (verbosity >= 0 && config->display_format != DISPLAY_FORMAT_PORCELAIN)
2005 printf(_("Fetching %s\n"), name);
2006 cmd.git_cmd = 1;
2007 if (run_command(&cmd)) {
2008 error(_("could not fetch %s"), name);
2009 result = 1;
2010 }
2011 }
2012
2013 strvec_clear(&argv);
2014 return !!result;
2015 }
2016
2017 /*
2018 * Fetching from the promisor remote should use the given filter-spec
2019 * or inherit the default filter-spec from the config.
2020 */
2021 static inline void fetch_one_setup_partial(struct remote *remote)
2022 {
2023 /*
2024 * Explicit --no-filter argument overrides everything, regardless
2025 * of any prior partial clones and fetches.
2026 */
2027 if (filter_options.no_filter)
2028 return;
2029
2030 /*
2031 * If no prior partial clone/fetch and the current fetch DID NOT
2032 * request a partial-fetch, do a normal fetch.
2033 */
2034 if (!repo_has_promisor_remote(the_repository) && !filter_options.choice)
2035 return;
2036
2037 /*
2038 * If this is a partial-fetch request, we enable partial on
2039 * this repo if not already enabled and remember the given
2040 * filter-spec as the default for subsequent fetches to this
2041 * remote if there is currently no default filter-spec.
2042 */
2043 if (filter_options.choice) {
2044 partial_clone_register(remote->name, &filter_options);
2045 return;
2046 }
2047
2048 /*
2049 * Do a partial-fetch from the promisor remote using either the
2050 * explicitly given filter-spec or inherit the filter-spec from
2051 * the config.
2052 */
2053 if (!filter_options.choice)
2054 partial_clone_get_default_filter_spec(&filter_options, remote->name);
2055 return;
2056 }
2057
2058 static int fetch_one(struct remote *remote, int argc, const char **argv,
2059 int prune_tags_ok, int use_stdin_refspecs,
2060 const struct fetch_config *config)
2061 {
2062 struct refspec rs = REFSPEC_INIT_FETCH;
2063 int i;
2064 int exit_code;
2065 int maybe_prune_tags;
2066 int remote_via_config = remote_is_configured(remote, 0);
2067
2068 if (!remote)
2069 die(_("no remote repository specified; please specify either a URL or a\n"
2070 "remote name from which new revisions should be fetched"));
2071
2072 gtransport = prepare_transport(remote, 1);
2073
2074 if (prune < 0) {
2075 /* no command line request */
2076 if (0 <= remote->prune)
2077 prune = remote->prune;
2078 else if (0 <= config->prune)
2079 prune = config->prune;
2080 else
2081 prune = PRUNE_BY_DEFAULT;
2082 }
2083
2084 if (prune_tags < 0) {
2085 /* no command line request */
2086 if (0 <= remote->prune_tags)
2087 prune_tags = remote->prune_tags;
2088 else if (0 <= config->prune_tags)
2089 prune_tags = config->prune_tags;
2090 else
2091 prune_tags = PRUNE_TAGS_BY_DEFAULT;
2092 }
2093
2094 maybe_prune_tags = prune_tags_ok && prune_tags;
2095 if (maybe_prune_tags && remote_via_config)
2096 refspec_append(&remote->fetch, TAG_REFSPEC);
2097
2098 if (maybe_prune_tags && (argc || !remote_via_config))
2099 refspec_append(&rs, TAG_REFSPEC);
2100
2101 for (i = 0; i < argc; i++) {
2102 if (!strcmp(argv[i], "tag")) {
2103 i++;
2104 if (i >= argc)
2105 die(_("you need to specify a tag name"));
2106
2107 refspec_appendf(&rs, "refs/tags/%s:refs/tags/%s",
2108 argv[i], argv[i]);
2109 } else {
2110 refspec_append(&rs, argv[i]);
2111 }
2112 }
2113
2114 if (use_stdin_refspecs) {
2115 struct strbuf line = STRBUF_INIT;
2116 while (strbuf_getline_lf(&line, stdin) != EOF)
2117 refspec_append(&rs, line.buf);
2118 strbuf_release(&line);
2119 }
2120
2121 if (server_options.nr)
2122 gtransport->server_options = &server_options;
2123
2124 sigchain_push_common(unlock_pack_on_signal);
2125 atexit(unlock_pack_atexit);
2126 sigchain_push(SIGPIPE, SIG_IGN);
2127 exit_code = do_fetch(gtransport, &rs, config);
2128 sigchain_pop(SIGPIPE);
2129 refspec_clear(&rs);
2130 transport_disconnect(gtransport);
2131 gtransport = NULL;
2132 return exit_code;
2133 }
2134
2135 int cmd_fetch(int argc, const char **argv, const char *prefix)
2136 {
2137 struct fetch_config config = {
2138 .display_format = DISPLAY_FORMAT_FULL,
2139 .prune = -1,
2140 .prune_tags = -1,
2141 .show_forced_updates = 1,
2142 .recurse_submodules = RECURSE_SUBMODULES_DEFAULT,
2143 .parallel = 1,
2144 .submodule_fetch_jobs = -1,
2145 };
2146 const char *submodule_prefix = "";
2147 const char *bundle_uri;
2148 struct string_list list = STRING_LIST_INIT_DUP;
2149 struct remote *remote = NULL;
2150 int all = -1, multiple = 0;
2151 int result = 0;
2152 int prune_tags_ok = 1;
2153 int enable_auto_gc = 1;
2154 int unshallow = 0;
2155 int max_jobs = -1;
2156 int recurse_submodules_cli = RECURSE_SUBMODULES_DEFAULT;
2157 int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
2158 int fetch_write_commit_graph = -1;
2159 int stdin_refspecs = 0;
2160 int negotiate_only = 0;
2161 int porcelain = 0;
2162 int i;
2163
2164 struct option builtin_fetch_options[] = {
2165 OPT__VERBOSITY(&verbosity),
2166 OPT_BOOL(0, "all", &all,
2167 N_("fetch from all remotes")),
2168 OPT_BOOL(0, "set-upstream", &set_upstream,
2169 N_("set upstream for git pull/fetch")),
2170 OPT_BOOL('a', "append", &append,
2171 N_("append to .git/FETCH_HEAD instead of overwriting")),
2172 OPT_BOOL(0, "atomic", &atomic_fetch,
2173 N_("use atomic transaction to update references")),
2174 OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
2175 N_("path to upload pack on remote end")),
2176 OPT__FORCE(&force, N_("force overwrite of local reference"), 0),
2177 OPT_BOOL('m', "multiple", &multiple,
2178 N_("fetch from multiple remotes")),
2179 OPT_SET_INT('t', "tags", &tags,
2180 N_("fetch all tags and associated objects"), TAGS_SET),
2181 OPT_SET_INT('n', NULL, &tags,
2182 N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
2183 OPT_INTEGER('j', "jobs", &max_jobs,
2184 N_("number of submodules fetched in parallel")),
2185 OPT_BOOL(0, "prefetch", &prefetch,
2186 N_("modify the refspec to place all refs within refs/prefetch/")),
2187 OPT_BOOL('p', "prune", &prune,
2188 N_("prune remote-tracking branches no longer on remote")),
2189 OPT_BOOL('P', "prune-tags", &prune_tags,
2190 N_("prune local tags no longer on remote and clobber changed tags")),
2191 OPT_CALLBACK_F(0, "recurse-submodules", &recurse_submodules_cli, N_("on-demand"),
2192 N_("control recursive fetching of submodules"),
2193 PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules),
2194 OPT_BOOL(0, "dry-run", &dry_run,
2195 N_("dry run")),
2196 OPT_BOOL(0, "porcelain", &porcelain, N_("machine-readable output")),
2197 OPT_BOOL(0, "write-fetch-head", &write_fetch_head,
2198 N_("write fetched references to the FETCH_HEAD file")),
2199 OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
2200 OPT_BOOL('u', "update-head-ok", &update_head_ok,
2201 N_("allow updating of HEAD ref")),
2202 OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
2203 OPT_STRING(0, "depth", &depth, N_("depth"),
2204 N_("deepen history of shallow clone")),
2205 OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
2206 N_("deepen history of shallow repository based on time")),
2207 OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
2208 N_("deepen history of shallow clone, excluding rev")),
2209 OPT_INTEGER(0, "deepen", &deepen_relative,
2210 N_("deepen history of shallow clone")),
2211 OPT_SET_INT_F(0, "unshallow", &unshallow,
2212 N_("convert to a complete repository"),
2213 1, PARSE_OPT_NONEG),
2214 OPT_SET_INT_F(0, "refetch", &refetch,
2215 N_("re-fetch without negotiating common commits"),
2216 1, PARSE_OPT_NONEG),
2217 { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
2218 N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
2219 OPT_CALLBACK_F(0, "recurse-submodules-default",
2220 &recurse_submodules_default, N_("on-demand"),
2221 N_("default for recursive fetching of submodules "
2222 "(lower priority than config files)"),
2223 PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules),
2224 OPT_BOOL(0, "update-shallow", &update_shallow,
2225 N_("accept refs that update .git/shallow")),
2226 OPT_CALLBACK_F(0, "refmap", &refmap, N_("refmap"),
2227 N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg),
2228 OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
2229 OPT_IPVERSION(&family),
2230 OPT_STRING_LIST(0, "negotiation-tip", &negotiation_tip, N_("revision"),
2231 N_("report that we have only objects reachable from this object")),
2232 OPT_BOOL(0, "negotiate-only", &negotiate_only,
2233 N_("do not fetch a packfile; instead, print ancestors of negotiation tips")),
2234 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
2235 OPT_BOOL(0, "auto-maintenance", &enable_auto_gc,
2236 N_("run 'maintenance --auto' after fetching")),
2237 OPT_BOOL(0, "auto-gc", &enable_auto_gc,
2238 N_("run 'maintenance --auto' after fetching")),
2239 OPT_BOOL(0, "show-forced-updates", &config.show_forced_updates,
2240 N_("check for forced-updates on all updated branches")),
2241 OPT_BOOL(0, "write-commit-graph", &fetch_write_commit_graph,
2242 N_("write the commit-graph after fetching")),
2243 OPT_BOOL(0, "stdin", &stdin_refspecs,
2244 N_("accept refspecs from stdin")),
2245 OPT_END()
2246 };
2247
2248 packet_trace_identity("fetch");
2249
2250 /* Record the command line for the reflog */
2251 strbuf_addstr(&default_rla, "fetch");
2252 for (i = 1; i < argc; i++) {
2253 /* This handles non-URLs gracefully */
2254 char *anon = transport_anonymize_url(argv[i]);
2255
2256 strbuf_addf(&default_rla, " %s", anon);
2257 free(anon);
2258 }
2259
2260 git_config(git_fetch_config, &config);
2261 if (the_repository->gitdir) {
2262 prepare_repo_settings(the_repository);
2263 the_repository->settings.command_requires_full_index = 0;
2264 }
2265
2266 argc = parse_options(argc, argv, prefix,
2267 builtin_fetch_options, builtin_fetch_usage, 0);
2268
2269 if (recurse_submodules_cli != RECURSE_SUBMODULES_DEFAULT)
2270 config.recurse_submodules = recurse_submodules_cli;
2271
2272 if (negotiate_only) {
2273 switch (recurse_submodules_cli) {
2274 case RECURSE_SUBMODULES_OFF:
2275 case RECURSE_SUBMODULES_DEFAULT:
2276 /*
2277 * --negotiate-only should never recurse into
2278 * submodules. Skip it by setting recurse_submodules to
2279 * RECURSE_SUBMODULES_OFF.
2280 */
2281 config.recurse_submodules = RECURSE_SUBMODULES_OFF;
2282 break;
2283
2284 default:
2285 die(_("options '%s' and '%s' cannot be used together"),
2286 "--negotiate-only", "--recurse-submodules");
2287 }
2288 }
2289
2290 if (config.recurse_submodules != RECURSE_SUBMODULES_OFF) {
2291 int *sfjc = config.submodule_fetch_jobs == -1
2292 ? &config.submodule_fetch_jobs : NULL;
2293 int *rs = config.recurse_submodules == RECURSE_SUBMODULES_DEFAULT
2294 ? &config.recurse_submodules : NULL;
2295
2296 fetch_config_from_gitmodules(sfjc, rs);
2297 }
2298
2299
2300 if (porcelain) {
2301 switch (recurse_submodules_cli) {
2302 case RECURSE_SUBMODULES_OFF:
2303 case RECURSE_SUBMODULES_DEFAULT:
2304 /*
2305 * Reference updates in submodules would be ambiguous
2306 * in porcelain mode, so we reject this combination.
2307 */
2308 config.recurse_submodules = RECURSE_SUBMODULES_OFF;
2309 break;
2310
2311 default:
2312 die(_("options '%s' and '%s' cannot be used together"),
2313 "--porcelain", "--recurse-submodules");
2314 }
2315
2316 config.display_format = DISPLAY_FORMAT_PORCELAIN;
2317 }
2318
2319 if (negotiate_only && !negotiation_tip.nr)
2320 die(_("--negotiate-only needs one or more --negotiation-tip=*"));
2321
2322 if (deepen_relative) {
2323 if (deepen_relative < 0)
2324 die(_("negative depth in --deepen is not supported"));
2325 if (depth)
2326 die(_("options '%s' and '%s' cannot be used together"), "--deepen", "--depth");
2327 depth = xstrfmt("%d", deepen_relative);
2328 }
2329 if (unshallow) {
2330 if (depth)
2331 die(_("options '%s' and '%s' cannot be used together"), "--depth", "--unshallow");
2332 else if (!is_repository_shallow(the_repository))
2333 die(_("--unshallow on a complete repository does not make sense"));
2334 else
2335 depth = xstrfmt("%d", INFINITE_DEPTH);
2336 }
2337
2338 /* no need to be strict, transport_set_option() will validate it again */
2339 if (depth && atoi(depth) < 1)
2340 die(_("depth %s is not a positive number"), depth);
2341 if (depth || deepen_since || deepen_not.nr)
2342 deepen = 1;
2343
2344 /* FETCH_HEAD never gets updated in --dry-run mode */
2345 if (dry_run)
2346 write_fetch_head = 0;
2347
2348 if (!max_jobs)
2349 max_jobs = online_cpus();
2350
2351 if (!git_config_get_string_tmp("fetch.bundleuri", &bundle_uri) &&
2352 fetch_bundle_uri(the_repository, bundle_uri, NULL))
2353 warning(_("failed to fetch bundles from '%s'"), bundle_uri);
2354
2355 if (all < 0) {
2356 /*
2357 * no --[no-]all given;
2358 * only use config option if no remote was explicitly specified
2359 */
2360 all = (!argc) ? config.all : 0;
2361 }
2362
2363 if (all) {
2364 if (argc == 1)
2365 die(_("fetch --all does not take a repository argument"));
2366 else if (argc > 1)
2367 die(_("fetch --all does not make sense with refspecs"));
2368
2369 (void) for_each_remote(get_one_remote_for_fetch, &list);
2370
2371 /* do not do fetch_multiple() of one */
2372 if (list.nr == 1)
2373 remote = remote_get(list.items[0].string);
2374 } else if (argc == 0) {
2375 /* No arguments -- use default remote */
2376 remote = remote_get(NULL);
2377 } else if (multiple) {
2378 /* All arguments are assumed to be remotes or groups */
2379 for (i = 0; i < argc; i++)
2380 if (!add_remote_or_group(argv[i], &list))
2381 die(_("no such remote or remote group: %s"),
2382 argv[i]);
2383 } else {
2384 /* Single remote or group */
2385 (void) add_remote_or_group(argv[0], &list);
2386 if (list.nr > 1) {
2387 /* More than one remote */
2388 if (argc > 1)
2389 die(_("fetching a group and specifying refspecs does not make sense"));
2390 } else {
2391 /* Zero or one remotes */
2392 remote = remote_get(argv[0]);
2393 prune_tags_ok = (argc == 1);
2394 argc--;
2395 argv++;
2396 }
2397 }
2398 string_list_remove_duplicates(&list, 0);
2399
2400 if (negotiate_only) {
2401 struct oidset acked_commits = OIDSET_INIT;
2402 struct oidset_iter iter;
2403 const struct object_id *oid;
2404
2405 if (!remote)
2406 die(_("must supply remote when using --negotiate-only"));
2407 gtransport = prepare_transport(remote, 1);
2408 if (gtransport->smart_options) {
2409 gtransport->smart_options->acked_commits = &acked_commits;
2410 } else {
2411 warning(_("protocol does not support --negotiate-only, exiting"));
2412 result = 1;
2413 goto cleanup;
2414 }
2415 if (server_options.nr)
2416 gtransport->server_options = &server_options;
2417 result = transport_fetch_refs(gtransport, NULL);
2418
2419 oidset_iter_init(&acked_commits, &iter);
2420 while ((oid = oidset_iter_next(&iter)))
2421 printf("%s\n", oid_to_hex(oid));
2422 oidset_clear(&acked_commits);
2423 } else if (remote) {
2424 if (filter_options.choice || repo_has_promisor_remote(the_repository))
2425 fetch_one_setup_partial(remote);
2426 result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs,
2427 &config);
2428 } else {
2429 int max_children = max_jobs;
2430
2431 if (filter_options.choice)
2432 die(_("--filter can only be used with the remote "
2433 "configured in extensions.partialclone"));
2434
2435 if (atomic_fetch)
2436 die(_("--atomic can only be used when fetching "
2437 "from one remote"));
2438
2439 if (stdin_refspecs)
2440 die(_("--stdin can only be used when fetching "
2441 "from one remote"));
2442
2443 if (max_children < 0)
2444 max_children = config.parallel;
2445
2446 /* TODO should this also die if we have a previous partial-clone? */
2447 result = fetch_multiple(&list, max_children, &config);
2448 }
2449
2450 /*
2451 * This is only needed after fetch_one(), which does not fetch
2452 * submodules by itself.
2453 *
2454 * When we fetch from multiple remotes, fetch_multiple() has
2455 * already updated submodules to grab commits necessary for
2456 * the fetched history from each remote, so there is no need
2457 * to fetch submodules from here.
2458 */
2459 if (!result && remote && (config.recurse_submodules != RECURSE_SUBMODULES_OFF)) {
2460 struct strvec options = STRVEC_INIT;
2461 int max_children = max_jobs;
2462
2463 if (max_children < 0)
2464 max_children = config.submodule_fetch_jobs;
2465 if (max_children < 0)
2466 max_children = config.parallel;
2467
2468 add_options_to_argv(&options, &config);
2469 result = fetch_submodules(the_repository,
2470 &options,
2471 submodule_prefix,
2472 config.recurse_submodules,
2473 recurse_submodules_default,
2474 verbosity < 0,
2475 max_children);
2476 strvec_clear(&options);
2477 }
2478
2479 /*
2480 * Skip irrelevant tasks because we know objects were not
2481 * fetched.
2482 *
2483 * NEEDSWORK: as a future optimization, we can return early
2484 * whenever objects were not fetched e.g. if we already have all
2485 * of them.
2486 */
2487 if (negotiate_only)
2488 goto cleanup;
2489
2490 prepare_repo_settings(the_repository);
2491 if (fetch_write_commit_graph > 0 ||
2492 (fetch_write_commit_graph < 0 &&
2493 the_repository->settings.fetch_write_commit_graph)) {
2494 int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
2495
2496 if (progress)
2497 commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
2498
2499 write_commit_graph_reachable(the_repository->objects->odb,
2500 commit_graph_flags,
2501 NULL);
2502 }
2503
2504 if (enable_auto_gc) {
2505 if (refetch) {
2506 /*
2507 * Hint auto-maintenance strongly to encourage repacking,
2508 * but respect config settings disabling it.
2509 */
2510 int opt_val;
2511 if (git_config_get_int("gc.autopacklimit", &opt_val))
2512 opt_val = -1;
2513 if (opt_val != 0)
2514 git_config_push_parameter("gc.autoPackLimit=1");
2515
2516 if (git_config_get_int("maintenance.incremental-repack.auto", &opt_val))
2517 opt_val = -1;
2518 if (opt_val != 0)
2519 git_config_push_parameter("maintenance.incremental-repack.auto=-1");
2520 }
2521 run_auto_maintenance(verbosity < 0);
2522 }
2523
2524 cleanup:
2525 string_list_clear(&list, 0);
2526 return result;
2527 }