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