2 #include "repository.h"
12 #include "fetch-pack.h"
14 #include "run-command.h"
16 #include "transport.h"
18 #include "oid-array.h"
21 #include "object-store.h"
22 #include "connected.h"
23 #include "fetch-negotiator.h"
26 #include "commit-reach.h"
27 #include "commit-graph.h"
29 static int transfer_unpack_limit
= -1;
30 static int fetch_unpack_limit
= -1;
31 static int unpack_limit
= 100;
32 static int prefer_ofs_delta
= 1;
34 static int deepen_since_ok
;
35 static int deepen_not_ok
;
36 static int fetch_fsck_objects
= -1;
37 static int transfer_fsck_objects
= -1;
38 static int agent_supported
;
39 static int server_supports_filtering
;
40 static int advertise_sid
;
41 static struct shallow_lock shallow_lock
;
42 static const char *alternate_shallow_file
;
43 static struct fsck_options fsck_options
= FSCK_OPTIONS_MISSING_GITMODULES
;
44 static struct strbuf fsck_msg_types
= STRBUF_INIT
;
45 static struct string_list uri_protocols
= STRING_LIST_INIT_DUP
;
47 /* Remember to update object flag allocation in object.h */
48 #define COMPLETE (1U << 0)
49 #define ALTERNATE (1U << 1)
50 #define COMMON (1U << 6)
51 #define REACH_SCRATCH (1U << 7)
54 * After sending this many "have"s if we do not get any new ACK , we
55 * give up traversing our history.
57 #define MAX_IN_VAIN 256
59 static int multi_ack
, use_sideband
;
60 /* Allow specifying sha1 if it is a ref tip. */
61 #define ALLOW_TIP_SHA1 01
62 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
63 #define ALLOW_REACHABLE_SHA1 02
64 static unsigned int allow_unadvertised_object_request
;
66 __attribute__((format (printf
, 2, 3)))
67 static inline void print_verbose(const struct fetch_pack_args
*args
,
75 va_start(params
, fmt
);
76 vfprintf(stderr
, fmt
, params
);
81 struct alternate_object_cache
{
82 struct object
**items
;
86 static void cache_one_alternate(const struct object_id
*oid
,
89 struct alternate_object_cache
*cache
= vcache
;
90 struct object
*obj
= parse_object(the_repository
, oid
);
92 if (!obj
|| (obj
->flags
& ALTERNATE
))
95 obj
->flags
|= ALTERNATE
;
96 ALLOC_GROW(cache
->items
, cache
->nr
+ 1, cache
->alloc
);
97 cache
->items
[cache
->nr
++] = obj
;
100 static void for_each_cached_alternate(struct fetch_negotiator
*negotiator
,
101 void (*cb
)(struct fetch_negotiator
*,
104 static int initialized
;
105 static struct alternate_object_cache cache
;
109 for_each_alternate_ref(cache_one_alternate
, &cache
);
113 for (i
= 0; i
< cache
.nr
; i
++)
114 cb(negotiator
, cache
.items
[i
]);
117 static struct commit
*deref_without_lazy_fetch(const struct object_id
*oid
,
118 int mark_tags_complete
)
120 enum object_type type
;
121 struct object_info info
= { .typep
= &type
};
124 if (oid_object_info_extended(the_repository
, oid
, &info
,
125 OBJECT_INFO_SKIP_FETCH_OBJECT
| OBJECT_INFO_QUICK
))
127 if (type
== OBJ_TAG
) {
128 struct tag
*tag
= (struct tag
*)
129 parse_object(the_repository
, oid
);
133 if (mark_tags_complete
)
134 tag
->object
.flags
|= COMPLETE
;
135 oid
= &tag
->tagged
->oid
;
141 if (type
== OBJ_COMMIT
) {
142 struct commit
*commit
= lookup_commit(the_repository
, oid
);
143 if (!commit
|| repo_parse_commit(the_repository
, commit
))
151 static int rev_list_insert_ref(struct fetch_negotiator
*negotiator
,
152 const struct object_id
*oid
)
154 struct commit
*c
= deref_without_lazy_fetch(oid
, 0);
157 negotiator
->add_tip(negotiator
, c
);
161 static int rev_list_insert_ref_oid(const char *refname
, const struct object_id
*oid
,
162 int flag
, void *cb_data
)
164 return rev_list_insert_ref(cb_data
, oid
);
175 static void consume_shallow_list(struct fetch_pack_args
*args
,
176 struct packet_reader
*reader
)
178 if (args
->stateless_rpc
&& args
->deepen
) {
179 /* If we sent a depth we will get back "duplicate"
180 * shallow and unshallow commands every time there
181 * is a block of have lines exchanged.
183 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
184 if (starts_with(reader
->line
, "shallow "))
186 if (starts_with(reader
->line
, "unshallow "))
188 die(_("git fetch-pack: expected shallow list"));
190 if (reader
->status
!= PACKET_READ_FLUSH
)
191 die(_("git fetch-pack: expected a flush packet after shallow list"));
195 static enum ack_type
get_ack(struct packet_reader
*reader
,
196 struct object_id
*result_oid
)
201 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
202 die(_("git fetch-pack: expected ACK/NAK, got a flush packet"));
203 len
= reader
->pktlen
;
205 if (!strcmp(reader
->line
, "NAK"))
207 if (skip_prefix(reader
->line
, "ACK ", &arg
)) {
209 if (!parse_oid_hex(arg
, result_oid
, &p
)) {
210 len
-= p
- reader
->line
;
213 if (strstr(p
, "continue"))
215 if (strstr(p
, "common"))
217 if (strstr(p
, "ready"))
222 die(_("git fetch-pack: expected ACK/NAK, got '%s'"), reader
->line
);
225 static void send_request(struct fetch_pack_args
*args
,
226 int fd
, struct strbuf
*buf
)
228 if (args
->stateless_rpc
) {
229 send_sideband(fd
, -1, buf
->buf
, buf
->len
, LARGE_PACKET_MAX
);
232 if (write_in_full(fd
, buf
->buf
, buf
->len
) < 0)
233 die_errno(_("unable to write to remote"));
237 static void insert_one_alternate_object(struct fetch_negotiator
*negotiator
,
240 rev_list_insert_ref(negotiator
, &obj
->oid
);
243 #define INITIAL_FLUSH 16
244 #define PIPESAFE_FLUSH 32
245 #define LARGE_FLUSH 16384
247 static int next_flush(int stateless_rpc
, int count
)
250 if (count
< LARGE_FLUSH
)
253 count
= count
* 11 / 10;
255 if (count
< PIPESAFE_FLUSH
)
258 count
+= PIPESAFE_FLUSH
;
263 static void mark_tips(struct fetch_negotiator
*negotiator
,
264 const struct oid_array
*negotiation_tips
)
268 if (!negotiation_tips
) {
269 for_each_rawref(rev_list_insert_ref_oid
, negotiator
);
273 for (i
= 0; i
< negotiation_tips
->nr
; i
++)
274 rev_list_insert_ref(negotiator
, &negotiation_tips
->oid
[i
]);
278 static int find_common(struct fetch_negotiator
*negotiator
,
279 struct fetch_pack_args
*args
,
280 int fd
[2], struct object_id
*result_oid
,
284 int count
= 0, flushes
= 0, flush_at
= INITIAL_FLUSH
, retval
;
285 const struct object_id
*oid
;
286 unsigned in_vain
= 0;
287 int got_continue
= 0;
289 struct strbuf req_buf
= STRBUF_INIT
;
290 size_t state_len
= 0;
291 struct packet_reader reader
;
293 if (args
->stateless_rpc
&& multi_ack
== 1)
294 die(_("--stateless-rpc requires multi_ack_detailed"));
296 packet_reader_init(&reader
, fd
[0], NULL
, 0,
297 PACKET_READ_CHOMP_NEWLINE
|
298 PACKET_READ_DIE_ON_ERR_PACKET
);
300 mark_tips(negotiator
, args
->negotiation_tips
);
301 for_each_cached_alternate(negotiator
, insert_one_alternate_object
);
304 for ( ; refs
; refs
= refs
->next
) {
305 struct object_id
*remote
= &refs
->old_oid
;
306 const char *remote_hex
;
310 * If that object is complete (i.e. it is an ancestor of a
311 * local ref), we tell them we have it but do not have to
312 * tell them about its ancestors, which they already know
315 * We use lookup_object here because we are only
316 * interested in the case we *know* the object is
317 * reachable and we have already scanned it.
319 if (((o
= lookup_object(the_repository
, remote
)) != NULL
) &&
320 (o
->flags
& COMPLETE
)) {
324 remote_hex
= oid_to_hex(remote
);
326 struct strbuf c
= STRBUF_INIT
;
327 if (multi_ack
== 2) strbuf_addstr(&c
, " multi_ack_detailed");
328 if (multi_ack
== 1) strbuf_addstr(&c
, " multi_ack");
329 if (no_done
) strbuf_addstr(&c
, " no-done");
330 if (use_sideband
== 2) strbuf_addstr(&c
, " side-band-64k");
331 if (use_sideband
== 1) strbuf_addstr(&c
, " side-band");
332 if (args
->deepen_relative
) strbuf_addstr(&c
, " deepen-relative");
333 if (args
->use_thin_pack
) strbuf_addstr(&c
, " thin-pack");
334 if (args
->no_progress
) strbuf_addstr(&c
, " no-progress");
335 if (args
->include_tag
) strbuf_addstr(&c
, " include-tag");
336 if (prefer_ofs_delta
) strbuf_addstr(&c
, " ofs-delta");
337 if (deepen_since_ok
) strbuf_addstr(&c
, " deepen-since");
338 if (deepen_not_ok
) strbuf_addstr(&c
, " deepen-not");
339 if (agent_supported
) strbuf_addf(&c
, " agent=%s",
340 git_user_agent_sanitized());
342 strbuf_addf(&c
, " session-id=%s", trace2_session_id());
343 if (args
->filter_options
.choice
)
344 strbuf_addstr(&c
, " filter");
345 packet_buf_write(&req_buf
, "want %s%s\n", remote_hex
, c
.buf
);
348 packet_buf_write(&req_buf
, "want %s\n", remote_hex
);
353 strbuf_release(&req_buf
);
358 if (is_repository_shallow(the_repository
))
359 write_shallow_commits(&req_buf
, 1, NULL
);
361 packet_buf_write(&req_buf
, "deepen %d", args
->depth
);
362 if (args
->deepen_since
) {
363 timestamp_t max_age
= approxidate(args
->deepen_since
);
364 packet_buf_write(&req_buf
, "deepen-since %"PRItime
, max_age
);
366 if (args
->deepen_not
) {
368 for (i
= 0; i
< args
->deepen_not
->nr
; i
++) {
369 struct string_list_item
*s
= args
->deepen_not
->items
+ i
;
370 packet_buf_write(&req_buf
, "deepen-not %s", s
->string
);
373 if (server_supports_filtering
&& args
->filter_options
.choice
) {
375 expand_list_objects_filter_spec(&args
->filter_options
);
376 packet_buf_write(&req_buf
, "filter %s", spec
);
378 packet_buf_flush(&req_buf
);
379 state_len
= req_buf
.len
;
383 struct object_id oid
;
385 send_request(args
, fd
[1], &req_buf
);
386 while (packet_reader_read(&reader
) == PACKET_READ_NORMAL
) {
387 if (skip_prefix(reader
.line
, "shallow ", &arg
)) {
388 if (get_oid_hex(arg
, &oid
))
389 die(_("invalid shallow line: %s"), reader
.line
);
390 register_shallow(the_repository
, &oid
);
393 if (skip_prefix(reader
.line
, "unshallow ", &arg
)) {
394 if (get_oid_hex(arg
, &oid
))
395 die(_("invalid unshallow line: %s"), reader
.line
);
396 if (!lookup_object(the_repository
, &oid
))
397 die(_("object not found: %s"), reader
.line
);
398 /* make sure that it is parsed as shallow */
399 if (!parse_object(the_repository
, &oid
))
400 die(_("error in object: %s"), reader
.line
);
401 if (unregister_shallow(&oid
))
402 die(_("no shallow found: %s"), reader
.line
);
405 die(_("expected shallow/unshallow, got %s"), reader
.line
);
407 } else if (!args
->stateless_rpc
)
408 send_request(args
, fd
[1], &req_buf
);
410 if (!args
->stateless_rpc
) {
411 /* If we aren't using the stateless-rpc interface
412 * we don't need to retain the headers.
414 strbuf_setlen(&req_buf
, 0);
418 trace2_region_enter("fetch-pack", "negotiation_v0_v1", the_repository
);
421 while ((oid
= negotiator
->next(negotiator
))) {
422 packet_buf_write(&req_buf
, "have %s\n", oid_to_hex(oid
));
423 print_verbose(args
, "have %s", oid_to_hex(oid
));
425 if (flush_at
<= ++count
) {
428 packet_buf_flush(&req_buf
);
429 send_request(args
, fd
[1], &req_buf
);
430 strbuf_setlen(&req_buf
, state_len
);
432 flush_at
= next_flush(args
->stateless_rpc
, count
);
435 * We keep one window "ahead" of the other side, and
436 * will wait for an ACK only on the next one
438 if (!args
->stateless_rpc
&& count
== INITIAL_FLUSH
)
441 consume_shallow_list(args
, &reader
);
443 ack
= get_ack(&reader
, result_oid
);
445 print_verbose(args
, _("got %s %d %s"), "ack",
446 ack
, oid_to_hex(result_oid
));
456 struct commit
*commit
=
457 lookup_commit(the_repository
,
462 die(_("invalid commit %s"), oid_to_hex(result_oid
));
463 was_common
= negotiator
->ack(negotiator
, commit
);
464 if (args
->stateless_rpc
467 /* We need to replay the have for this object
468 * on the next RPC request so the peer knows
469 * it is in common with us.
471 const char *hex
= oid_to_hex(result_oid
);
472 packet_buf_write(&req_buf
, "have %s\n", hex
);
473 state_len
= req_buf
.len
;
475 * Reset in_vain because an ack
476 * for this commit has not been
480 } else if (!args
->stateless_rpc
481 || ack
!= ACK_common
)
485 if (ack
== ACK_ready
)
492 if (got_continue
&& MAX_IN_VAIN
< in_vain
) {
493 print_verbose(args
, _("giving up"));
501 trace2_region_leave("fetch-pack", "negotiation_v0_v1", the_repository
);
502 if (!got_ready
|| !no_done
) {
503 packet_buf_write(&req_buf
, "done\n");
504 send_request(args
, fd
[1], &req_buf
);
506 print_verbose(args
, _("done"));
511 strbuf_release(&req_buf
);
513 if (!got_ready
|| !no_done
)
514 consume_shallow_list(args
, &reader
);
515 while (flushes
|| multi_ack
) {
516 int ack
= get_ack(&reader
, result_oid
);
518 print_verbose(args
, _("got %s (%d) %s"), "ack",
519 ack
, oid_to_hex(result_oid
));
527 /* it is no error to fetch into a completely empty repo */
528 return count
? retval
: 0;
531 static struct commit_list
*complete
;
533 static int mark_complete(const struct object_id
*oid
)
535 struct commit
*commit
= deref_without_lazy_fetch(oid
, 1);
537 if (commit
&& !(commit
->object
.flags
& COMPLETE
)) {
538 commit
->object
.flags
|= COMPLETE
;
539 commit_list_insert(commit
, &complete
);
544 static int mark_complete_oid(const char *refname
, const struct object_id
*oid
,
545 int flag
, void *cb_data
)
547 return mark_complete(oid
);
550 static void mark_recent_complete_commits(struct fetch_pack_args
*args
,
553 while (complete
&& cutoff
<= complete
->item
->date
) {
554 print_verbose(args
, _("Marking %s as complete"),
555 oid_to_hex(&complete
->item
->object
.oid
));
556 pop_most_recent_commit(&complete
, COMPLETE
);
560 static void add_refs_to_oidset(struct oidset
*oids
, struct ref
*refs
)
562 for (; refs
; refs
= refs
->next
)
563 oidset_insert(oids
, &refs
->old_oid
);
566 static int is_unmatched_ref(const struct ref
*ref
)
568 struct object_id oid
;
570 return ref
->match_status
== REF_NOT_MATCHED
&&
571 !parse_oid_hex(ref
->name
, &oid
, &p
) &&
573 oideq(&oid
, &ref
->old_oid
);
576 static void filter_refs(struct fetch_pack_args
*args
,
578 struct ref
**sought
, int nr_sought
)
580 struct ref
*newlist
= NULL
;
581 struct ref
**newtail
= &newlist
;
582 struct ref
*unmatched
= NULL
;
583 struct ref
*ref
, *next
;
584 struct oidset tip_oids
= OIDSET_INIT
;
586 int strict
= !(allow_unadvertised_object_request
&
587 (ALLOW_TIP_SHA1
| ALLOW_REACHABLE_SHA1
));
590 for (ref
= *refs
; ref
; ref
= next
) {
594 if (starts_with(ref
->name
, "refs/") &&
595 check_refname_format(ref
->name
, 0)) {
597 * trash or a peeled value; do not even add it to
603 while (i
< nr_sought
) {
604 int cmp
= strcmp(ref
->name
, sought
[i
]->name
);
606 break; /* definitely do not have it */
608 keep
= 1; /* definitely have it */
609 sought
[i
]->match_status
= REF_MATCHED
;
614 if (!keep
&& args
->fetch_all
&&
615 (!args
->deepen
|| !starts_with(ref
->name
, "refs/tags/")))
622 newtail
= &ref
->next
;
624 ref
->next
= unmatched
;
630 for (i
= 0; i
< nr_sought
; i
++) {
632 if (!is_unmatched_ref(ref
))
635 add_refs_to_oidset(&tip_oids
, unmatched
);
636 add_refs_to_oidset(&tip_oids
, newlist
);
641 /* Append unmatched requests to the list */
642 for (i
= 0; i
< nr_sought
; i
++) {
644 if (!is_unmatched_ref(ref
))
647 if (!strict
|| oidset_contains(&tip_oids
, &ref
->old_oid
)) {
648 ref
->match_status
= REF_MATCHED
;
649 *newtail
= copy_ref(ref
);
650 newtail
= &(*newtail
)->next
;
652 ref
->match_status
= REF_UNADVERTISED_NOT_ALLOWED
;
656 oidset_clear(&tip_oids
);
657 free_refs(unmatched
);
662 static void mark_alternate_complete(struct fetch_negotiator
*unused
,
665 mark_complete(&obj
->oid
);
668 struct loose_object_iter
{
669 struct oidset
*loose_object_set
;
674 * Mark recent commits available locally and reachable from a local ref as
677 * The cutoff time for recency is determined by this heuristic: it is the
678 * earliest commit time of the objects in refs that are commits and that we know
679 * the commit time of.
681 static void mark_complete_and_common_ref(struct fetch_negotiator
*negotiator
,
682 struct fetch_pack_args
*args
,
686 int old_save_commit_buffer
= save_commit_buffer
;
687 timestamp_t cutoff
= 0;
689 save_commit_buffer
= 0;
691 trace2_region_enter("fetch-pack", "parse_remote_refs_and_find_cutoff", NULL
);
692 for (ref
= *refs
; ref
; ref
= ref
->next
) {
695 if (!has_object_file_with_flags(&ref
->old_oid
,
697 OBJECT_INFO_SKIP_FETCH_OBJECT
))
699 o
= parse_object(the_repository
, &ref
->old_oid
);
704 * We already have it -- which may mean that we were
705 * in sync with the other side at some time after
706 * that (it is OK if we guess wrong here).
708 if (o
->type
== OBJ_COMMIT
) {
709 struct commit
*commit
= (struct commit
*)o
;
710 if (!cutoff
|| cutoff
< commit
->date
)
711 cutoff
= commit
->date
;
714 trace2_region_leave("fetch-pack", "parse_remote_refs_and_find_cutoff", NULL
);
717 * This block marks all local refs as COMPLETE, and then recursively marks all
718 * parents of those refs as COMPLETE.
720 trace2_region_enter("fetch-pack", "mark_complete_local_refs", NULL
);
722 for_each_rawref(mark_complete_oid
, NULL
);
723 for_each_cached_alternate(NULL
, mark_alternate_complete
);
724 commit_list_sort_by_date(&complete
);
726 mark_recent_complete_commits(args
, cutoff
);
728 trace2_region_leave("fetch-pack", "mark_complete_local_refs", NULL
);
731 * Mark all complete remote refs as common refs.
732 * Don't mark them common yet; the server has to be told so first.
734 trace2_region_enter("fetch-pack", "mark_common_remote_refs", NULL
);
735 for (ref
= *refs
; ref
; ref
= ref
->next
) {
736 struct commit
*c
= deref_without_lazy_fetch(&ref
->old_oid
, 0);
738 if (!c
|| !(c
->object
.flags
& COMPLETE
))
741 negotiator
->known_common(negotiator
, c
);
743 trace2_region_leave("fetch-pack", "mark_common_remote_refs", NULL
);
745 save_commit_buffer
= old_save_commit_buffer
;
749 * Returns 1 if every object pointed to by the given remote refs is available
750 * locally and reachable from a local ref, and 0 otherwise.
752 static int everything_local(struct fetch_pack_args
*args
,
758 for (retval
= 1, ref
= *refs
; ref
; ref
= ref
->next
) {
759 const struct object_id
*remote
= &ref
->old_oid
;
762 o
= lookup_object(the_repository
, remote
);
763 if (!o
|| !(o
->flags
& COMPLETE
)) {
765 print_verbose(args
, "want %s (%s)", oid_to_hex(remote
),
769 print_verbose(args
, _("already have %s (%s)"), oid_to_hex(remote
),
776 static int sideband_demux(int in
, int out
, void *data
)
781 ret
= recv_sideband("fetch-pack", xd
[0], out
);
786 static void create_promisor_file(const char *keep_name
,
787 struct ref
**sought
, int nr_sought
)
789 struct strbuf promisor_name
= STRBUF_INIT
;
792 strbuf_addstr(&promisor_name
, keep_name
);
793 suffix_stripped
= strbuf_strip_suffix(&promisor_name
, ".keep");
794 if (!suffix_stripped
)
795 BUG("name of pack lockfile should end with .keep (was '%s')",
797 strbuf_addstr(&promisor_name
, ".promisor");
799 write_promisor_file(promisor_name
.buf
, sought
, nr_sought
);
801 strbuf_release(&promisor_name
);
804 static void parse_gitmodules_oids(int fd
, struct oidset
*gitmodules_oids
)
806 int len
= the_hash_algo
->hexsz
+ 1; /* hash + NL */
809 char hex_hash
[GIT_MAX_HEXSZ
+ 1];
810 int read_len
= read_in_full(fd
, hex_hash
, len
);
811 struct object_id oid
;
817 die("invalid length read %d", read_len
);
818 if (parse_oid_hex(hex_hash
, &oid
, &end
) || *end
!= '\n')
820 oidset_insert(gitmodules_oids
, &oid
);
825 * If packfile URIs were provided, pass a non-NULL pointer to index_pack_args.
826 * The strings to pass as the --index-pack-arg arguments to http-fetch will be
827 * stored there. (It must be freed by the caller.)
829 static int get_pack(struct fetch_pack_args
*args
,
830 int xd
[2], struct string_list
*pack_lockfiles
,
831 struct strvec
*index_pack_args
,
832 struct ref
**sought
, int nr_sought
,
833 struct oidset
*gitmodules_oids
)
836 int do_keep
= args
->keep_pack
;
837 const char *cmd_name
;
838 struct pack_header header
;
840 struct child_process cmd
= CHILD_PROCESS_INIT
;
841 int fsck_objects
= 0;
844 memset(&demux
, 0, sizeof(demux
));
846 /* xd[] is talking with upload-pack; subprocess reads from
847 * xd[0], spits out band#2 to stderr, and feeds us band#1
848 * through demux->out.
850 demux
.proc
= sideband_demux
;
853 demux
.isolate_sigpipe
= 1;
854 if (start_async(&demux
))
855 die(_("fetch-pack: unable to fork off sideband demultiplexer"));
860 if (!args
->keep_pack
&& unpack_limit
&& !index_pack_args
) {
862 if (read_pack_header(demux
.out
, &header
))
863 die(_("protocol error: bad pack header"));
865 if (ntohl(header
.hdr_entries
) < unpack_limit
)
871 if (alternate_shallow_file
) {
872 strvec_push(&cmd
.args
, "--shallow-file");
873 strvec_push(&cmd
.args
, alternate_shallow_file
);
876 if (fetch_fsck_objects
>= 0
878 : transfer_fsck_objects
>= 0
879 ? transfer_fsck_objects
883 if (do_keep
|| args
->from_promisor
|| index_pack_args
|| fsck_objects
) {
884 if (pack_lockfiles
|| fsck_objects
)
886 cmd_name
= "index-pack";
887 strvec_push(&cmd
.args
, cmd_name
);
888 strvec_push(&cmd
.args
, "--stdin");
889 if (!args
->quiet
&& !args
->no_progress
)
890 strvec_push(&cmd
.args
, "-v");
891 if (args
->use_thin_pack
)
892 strvec_push(&cmd
.args
, "--fix-thin");
893 if ((do_keep
|| index_pack_args
) && (args
->lock_pack
|| unpack_limit
)) {
894 char hostname
[HOST_NAME_MAX
+ 1];
895 if (xgethostname(hostname
, sizeof(hostname
)))
896 xsnprintf(hostname
, sizeof(hostname
), "localhost");
897 strvec_pushf(&cmd
.args
,
898 "--keep=fetch-pack %"PRIuMAX
" on %s",
899 (uintmax_t)getpid(), hostname
);
901 if (!index_pack_args
&& args
->check_self_contained_and_connected
)
902 strvec_push(&cmd
.args
, "--check-self-contained-and-connected");
905 * We cannot perform any connectivity checks because
906 * not all packs have been downloaded; let the caller
907 * have this responsibility.
909 args
->check_self_contained_and_connected
= 0;
911 if (args
->from_promisor
)
913 * create_promisor_file() may be called afterwards but
914 * we still need index-pack to know that this is a
915 * promisor pack. For example, if transfer.fsckobjects
916 * is true, index-pack needs to know that .gitmodules
917 * is a promisor object (so that it won't complain if
920 strvec_push(&cmd
.args
, "--promisor");
923 cmd_name
= "unpack-objects";
924 strvec_push(&cmd
.args
, cmd_name
);
925 if (args
->quiet
|| args
->no_progress
)
926 strvec_push(&cmd
.args
, "-q");
927 args
->check_self_contained_and_connected
= 0;
931 strvec_pushf(&cmd
.args
, "--pack_header=%"PRIu32
",%"PRIu32
,
932 ntohl(header
.hdr_version
),
933 ntohl(header
.hdr_entries
));
935 if (args
->from_promisor
|| index_pack_args
)
937 * We cannot use --strict in index-pack because it
938 * checks both broken objects and links, but we only
939 * want to check for broken objects.
941 strvec_push(&cmd
.args
, "--fsck-objects");
943 strvec_pushf(&cmd
.args
, "--strict%s",
947 if (index_pack_args
) {
950 for (i
= 0; i
< cmd
.args
.nr
; i
++)
951 strvec_push(index_pack_args
, cmd
.args
.v
[i
]);
956 if (start_command(&cmd
))
957 die(_("fetch-pack: unable to fork off %s"), cmd_name
);
958 if (do_keep
&& (pack_lockfiles
|| fsck_objects
)) {
960 char *pack_lockfile
= index_pack_lockfile(cmd
.out
, &is_well_formed
);
963 die(_("fetch-pack: invalid index-pack output"));
965 string_list_append_nodup(pack_lockfiles
, pack_lockfile
);
966 parse_gitmodules_oids(cmd
.out
, gitmodules_oids
);
971 /* Closed by start_command() */
974 ret
= finish_command(&cmd
);
975 if (!ret
|| (args
->check_self_contained_and_connected
&& ret
== 1))
976 args
->self_contained_and_connected
=
977 args
->check_self_contained_and_connected
&&
980 die(_("%s failed"), cmd_name
);
981 if (use_sideband
&& finish_async(&demux
))
982 die(_("error in sideband demultiplexer"));
985 * Now that index-pack has succeeded, write the promisor file using the
986 * obtained .keep filename if necessary
988 if (do_keep
&& pack_lockfiles
&& pack_lockfiles
->nr
&& args
->from_promisor
)
989 create_promisor_file(pack_lockfiles
->items
[0].string
, sought
, nr_sought
);
994 static int cmp_ref_by_name(const void *a_
, const void *b_
)
996 const struct ref
*a
= *((const struct ref
**)a_
);
997 const struct ref
*b
= *((const struct ref
**)b_
);
998 return strcmp(a
->name
, b
->name
);
1001 static struct ref
*do_fetch_pack(struct fetch_pack_args
*args
,
1003 const struct ref
*orig_ref
,
1004 struct ref
**sought
, int nr_sought
,
1005 struct shallow_info
*si
,
1006 struct string_list
*pack_lockfiles
)
1008 struct repository
*r
= the_repository
;
1009 struct ref
*ref
= copy_ref_list(orig_ref
);
1010 struct object_id oid
;
1011 const char *agent_feature
;
1013 struct fetch_negotiator negotiator_alloc
;
1014 struct fetch_negotiator
*negotiator
;
1016 negotiator
= &negotiator_alloc
;
1017 fetch_negotiator_init(r
, negotiator
);
1019 sort_ref_list(&ref
, ref_compare_name
);
1020 QSORT(sought
, nr_sought
, cmp_ref_by_name
);
1022 if ((agent_feature
= server_feature_value("agent", &agent_len
))) {
1023 agent_supported
= 1;
1025 print_verbose(args
, _("Server version is %.*s"),
1026 agent_len
, agent_feature
);
1029 if (!server_supports("session-id"))
1032 if (server_supports("shallow"))
1033 print_verbose(args
, _("Server supports %s"), "shallow");
1034 else if (args
->depth
> 0 || is_repository_shallow(r
))
1035 die(_("Server does not support shallow clients"));
1036 if (args
->depth
> 0 || args
->deepen_since
|| args
->deepen_not
)
1038 if (server_supports("multi_ack_detailed")) {
1039 print_verbose(args
, _("Server supports %s"), "multi_ack_detailed");
1041 if (server_supports("no-done")) {
1042 print_verbose(args
, _("Server supports %s"), "no-done");
1043 if (args
->stateless_rpc
)
1047 else if (server_supports("multi_ack")) {
1048 print_verbose(args
, _("Server supports %s"), "multi_ack");
1051 if (server_supports("side-band-64k")) {
1052 print_verbose(args
, _("Server supports %s"), "side-band-64k");
1055 else if (server_supports("side-band")) {
1056 print_verbose(args
, _("Server supports %s"), "side-band");
1059 if (server_supports("allow-tip-sha1-in-want")) {
1060 print_verbose(args
, _("Server supports %s"), "allow-tip-sha1-in-want");
1061 allow_unadvertised_object_request
|= ALLOW_TIP_SHA1
;
1063 if (server_supports("allow-reachable-sha1-in-want")) {
1064 print_verbose(args
, _("Server supports %s"), "allow-reachable-sha1-in-want");
1065 allow_unadvertised_object_request
|= ALLOW_REACHABLE_SHA1
;
1067 if (server_supports("thin-pack"))
1068 print_verbose(args
, _("Server supports %s"), "thin-pack");
1070 args
->use_thin_pack
= 0;
1071 if (server_supports("no-progress"))
1072 print_verbose(args
, _("Server supports %s"), "no-progress");
1074 args
->no_progress
= 0;
1075 if (server_supports("include-tag"))
1076 print_verbose(args
, _("Server supports %s"), "include-tag");
1078 args
->include_tag
= 0;
1079 if (server_supports("ofs-delta"))
1080 print_verbose(args
, _("Server supports %s"), "ofs-delta");
1082 prefer_ofs_delta
= 0;
1084 if (server_supports("filter")) {
1085 server_supports_filtering
= 1;
1086 print_verbose(args
, _("Server supports %s"), "filter");
1087 } else if (args
->filter_options
.choice
) {
1088 warning("filtering not recognized by server, ignoring");
1091 if (server_supports("deepen-since")) {
1092 print_verbose(args
, _("Server supports %s"), "deepen-since");
1093 deepen_since_ok
= 1;
1094 } else if (args
->deepen_since
)
1095 die(_("Server does not support --shallow-since"));
1096 if (server_supports("deepen-not")) {
1097 print_verbose(args
, _("Server supports %s"), "deepen-not");
1099 } else if (args
->deepen_not
)
1100 die(_("Server does not support --shallow-exclude"));
1101 if (server_supports("deepen-relative"))
1102 print_verbose(args
, _("Server supports %s"), "deepen-relative");
1103 else if (args
->deepen_relative
)
1104 die(_("Server does not support --deepen"));
1105 if (!server_supports_hash(the_hash_algo
->name
, NULL
))
1106 die(_("Server does not support this repository's object format"));
1108 mark_complete_and_common_ref(negotiator
, args
, &ref
);
1109 filter_refs(args
, &ref
, sought
, nr_sought
);
1110 if (everything_local(args
, &ref
)) {
1111 packet_flush(fd
[1]);
1114 if (find_common(negotiator
, args
, fd
, &oid
, ref
) < 0)
1115 if (!args
->keep_pack
)
1116 /* When cloning, it is not unusual to have
1119 warning(_("no common commits"));
1121 if (args
->stateless_rpc
)
1122 packet_flush(fd
[1]);
1124 setup_alternate_shallow(&shallow_lock
, &alternate_shallow_file
,
1126 else if (si
->nr_ours
|| si
->nr_theirs
) {
1127 if (args
->reject_shallow_remote
)
1128 die(_("source repository is shallow, reject to clone."));
1129 alternate_shallow_file
= setup_temporary_shallow(si
->shallow
);
1131 alternate_shallow_file
= NULL
;
1132 if (get_pack(args
, fd
, pack_lockfiles
, NULL
, sought
, nr_sought
,
1133 &fsck_options
.gitmodules_found
))
1134 die(_("git fetch-pack: fetch failed."));
1135 if (fsck_finish(&fsck_options
))
1140 negotiator
->release(negotiator
);
1144 static void add_shallow_requests(struct strbuf
*req_buf
,
1145 const struct fetch_pack_args
*args
)
1147 if (is_repository_shallow(the_repository
))
1148 write_shallow_commits(req_buf
, 1, NULL
);
1149 if (args
->depth
> 0)
1150 packet_buf_write(req_buf
, "deepen %d", args
->depth
);
1151 if (args
->deepen_since
) {
1152 timestamp_t max_age
= approxidate(args
->deepen_since
);
1153 packet_buf_write(req_buf
, "deepen-since %"PRItime
, max_age
);
1155 if (args
->deepen_not
) {
1157 for (i
= 0; i
< args
->deepen_not
->nr
; i
++) {
1158 struct string_list_item
*s
= args
->deepen_not
->items
+ i
;
1159 packet_buf_write(req_buf
, "deepen-not %s", s
->string
);
1162 if (args
->deepen_relative
)
1163 packet_buf_write(req_buf
, "deepen-relative\n");
1166 static void add_wants(const struct ref
*wants
, struct strbuf
*req_buf
)
1168 int use_ref_in_want
= server_supports_feature("fetch", "ref-in-want", 0);
1170 for ( ; wants
; wants
= wants
->next
) {
1171 const struct object_id
*remote
= &wants
->old_oid
;
1175 * If that object is complete (i.e. it is an ancestor of a
1176 * local ref), we tell them we have it but do not have to
1177 * tell them about its ancestors, which they already know
1180 * We use lookup_object here because we are only
1181 * interested in the case we *know* the object is
1182 * reachable and we have already scanned it.
1184 if (((o
= lookup_object(the_repository
, remote
)) != NULL
) &&
1185 (o
->flags
& COMPLETE
)) {
1189 if (!use_ref_in_want
|| wants
->exact_oid
)
1190 packet_buf_write(req_buf
, "want %s\n", oid_to_hex(remote
));
1192 packet_buf_write(req_buf
, "want-ref %s\n", wants
->name
);
1196 static void add_common(struct strbuf
*req_buf
, struct oidset
*common
)
1198 struct oidset_iter iter
;
1199 const struct object_id
*oid
;
1200 oidset_iter_init(common
, &iter
);
1202 while ((oid
= oidset_iter_next(&iter
))) {
1203 packet_buf_write(req_buf
, "have %s\n", oid_to_hex(oid
));
1207 static int add_haves(struct fetch_negotiator
*negotiator
,
1208 struct strbuf
*req_buf
,
1211 int haves_added
= 0;
1212 const struct object_id
*oid
;
1214 while ((oid
= negotiator
->next(negotiator
))) {
1215 packet_buf_write(req_buf
, "have %s\n", oid_to_hex(oid
));
1216 if (++haves_added
>= *haves_to_send
)
1220 /* Increase haves to send on next round */
1221 *haves_to_send
= next_flush(1, *haves_to_send
);
1226 static void write_fetch_command_and_capabilities(struct strbuf
*req_buf
,
1227 const struct string_list
*server_options
)
1229 const char *hash_name
;
1231 if (server_supports_v2("fetch", 1))
1232 packet_buf_write(req_buf
, "command=fetch");
1233 if (server_supports_v2("agent", 0))
1234 packet_buf_write(req_buf
, "agent=%s", git_user_agent_sanitized());
1235 if (advertise_sid
&& server_supports_v2("session-id", 0))
1236 packet_buf_write(req_buf
, "session-id=%s", trace2_session_id());
1237 if (server_options
&& server_options
->nr
&&
1238 server_supports_v2("server-option", 1)) {
1240 for (i
= 0; i
< server_options
->nr
; i
++)
1241 packet_buf_write(req_buf
, "server-option=%s",
1242 server_options
->items
[i
].string
);
1245 if (server_feature_v2("object-format", &hash_name
)) {
1246 int hash_algo
= hash_algo_by_name(hash_name
);
1247 if (hash_algo_by_ptr(the_hash_algo
) != hash_algo
)
1248 die(_("mismatched algorithms: client %s; server %s"),
1249 the_hash_algo
->name
, hash_name
);
1250 packet_buf_write(req_buf
, "object-format=%s", the_hash_algo
->name
);
1251 } else if (hash_algo_by_ptr(the_hash_algo
) != GIT_HASH_SHA1
) {
1252 die(_("the server does not support algorithm '%s'"),
1253 the_hash_algo
->name
);
1255 packet_buf_delim(req_buf
);
1258 static int send_fetch_request(struct fetch_negotiator
*negotiator
, int fd_out
,
1259 struct fetch_pack_args
*args
,
1260 const struct ref
*wants
, struct oidset
*common
,
1261 int *haves_to_send
, int *in_vain
,
1262 int sideband_all
, int seen_ack
)
1266 struct strbuf req_buf
= STRBUF_INIT
;
1268 write_fetch_command_and_capabilities(&req_buf
, args
->server_options
);
1270 if (args
->use_thin_pack
)
1271 packet_buf_write(&req_buf
, "thin-pack");
1272 if (args
->no_progress
)
1273 packet_buf_write(&req_buf
, "no-progress");
1274 if (args
->include_tag
)
1275 packet_buf_write(&req_buf
, "include-tag");
1276 if (prefer_ofs_delta
)
1277 packet_buf_write(&req_buf
, "ofs-delta");
1279 packet_buf_write(&req_buf
, "sideband-all");
1281 /* Add shallow-info and deepen request */
1282 if (server_supports_feature("fetch", "shallow", 0))
1283 add_shallow_requests(&req_buf
, args
);
1284 else if (is_repository_shallow(the_repository
) || args
->deepen
)
1285 die(_("Server does not support shallow requests"));
1288 if (server_supports_feature("fetch", "filter", 0) &&
1289 args
->filter_options
.choice
) {
1291 expand_list_objects_filter_spec(&args
->filter_options
);
1292 print_verbose(args
, _("Server supports filter"));
1293 packet_buf_write(&req_buf
, "filter %s", spec
);
1294 } else if (args
->filter_options
.choice
) {
1295 warning("filtering not recognized by server, ignoring");
1298 if (server_supports_feature("fetch", "packfile-uris", 0)) {
1300 struct strbuf to_send
= STRBUF_INIT
;
1302 for (i
= 0; i
< uri_protocols
.nr
; i
++) {
1303 const char *s
= uri_protocols
.items
[i
].string
;
1305 if (!strcmp(s
, "https") || !strcmp(s
, "http")) {
1307 strbuf_addch(&to_send
, ',');
1308 strbuf_addstr(&to_send
, s
);
1312 packet_buf_write(&req_buf
, "packfile-uris %s",
1314 strbuf_release(&to_send
);
1319 add_wants(wants
, &req_buf
);
1321 /* Add all of the common commits we've found in previous rounds */
1322 add_common(&req_buf
, common
);
1324 haves_added
= add_haves(negotiator
, &req_buf
, haves_to_send
);
1325 *in_vain
+= haves_added
;
1326 if (!haves_added
|| (seen_ack
&& *in_vain
>= MAX_IN_VAIN
)) {
1328 packet_buf_write(&req_buf
, "done\n");
1333 packet_buf_flush(&req_buf
);
1334 if (write_in_full(fd_out
, req_buf
.buf
, req_buf
.len
) < 0)
1335 die_errno(_("unable to write request to remote"));
1337 strbuf_release(&req_buf
);
1342 * Processes a section header in a server's response and checks if it matches
1343 * `section`. If the value of `peek` is 1, the header line will be peeked (and
1344 * not consumed); if 0, the line will be consumed and the function will die if
1345 * the section header doesn't match what was expected.
1347 static int process_section_header(struct packet_reader
*reader
,
1348 const char *section
, int peek
)
1352 if (packet_reader_peek(reader
) != PACKET_READ_NORMAL
)
1353 die(_("error reading section header '%s'"), section
);
1355 ret
= !strcmp(reader
->line
, section
);
1359 die(_("expected '%s', received '%s'"),
1360 section
, reader
->line
);
1361 packet_reader_read(reader
);
1367 static int process_ack(struct fetch_negotiator
*negotiator
,
1368 struct packet_reader
*reader
,
1369 struct object_id
*common_oid
,
1370 int *received_ready
)
1372 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1375 if (!strcmp(reader
->line
, "NAK"))
1378 if (skip_prefix(reader
->line
, "ACK ", &arg
)) {
1379 if (!get_oid_hex(arg
, common_oid
)) {
1380 struct commit
*commit
;
1381 commit
= lookup_commit(the_repository
, common_oid
);
1383 negotiator
->ack(negotiator
, commit
);
1388 if (!strcmp(reader
->line
, "ready")) {
1389 *received_ready
= 1;
1393 die(_("unexpected acknowledgment line: '%s'"), reader
->line
);
1396 if (reader
->status
!= PACKET_READ_FLUSH
&&
1397 reader
->status
!= PACKET_READ_DELIM
)
1398 die(_("error processing acks: %d"), reader
->status
);
1401 * If an "acknowledgments" section is sent, a packfile is sent if and
1402 * only if "ready" was sent in this section. The other sections
1403 * ("shallow-info" and "wanted-refs") are sent only if a packfile is
1404 * sent. Therefore, a DELIM is expected if "ready" is sent, and a FLUSH
1407 if (*received_ready
&& reader
->status
!= PACKET_READ_DELIM
)
1408 die(_("expected packfile to be sent after 'ready'"));
1409 if (!*received_ready
&& reader
->status
!= PACKET_READ_FLUSH
)
1410 die(_("expected no other sections to be sent after no 'ready'"));
1415 static void receive_shallow_info(struct fetch_pack_args
*args
,
1416 struct packet_reader
*reader
,
1417 struct oid_array
*shallows
,
1418 struct shallow_info
*si
)
1420 int unshallow_received
= 0;
1422 process_section_header(reader
, "shallow-info", 0);
1423 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1425 struct object_id oid
;
1427 if (skip_prefix(reader
->line
, "shallow ", &arg
)) {
1428 if (get_oid_hex(arg
, &oid
))
1429 die(_("invalid shallow line: %s"), reader
->line
);
1430 oid_array_append(shallows
, &oid
);
1433 if (skip_prefix(reader
->line
, "unshallow ", &arg
)) {
1434 if (get_oid_hex(arg
, &oid
))
1435 die(_("invalid unshallow line: %s"), reader
->line
);
1436 if (!lookup_object(the_repository
, &oid
))
1437 die(_("object not found: %s"), reader
->line
);
1438 /* make sure that it is parsed as shallow */
1439 if (!parse_object(the_repository
, &oid
))
1440 die(_("error in object: %s"), reader
->line
);
1441 if (unregister_shallow(&oid
))
1442 die(_("no shallow found: %s"), reader
->line
);
1443 unshallow_received
= 1;
1446 die(_("expected shallow/unshallow, got %s"), reader
->line
);
1449 if (reader
->status
!= PACKET_READ_FLUSH
&&
1450 reader
->status
!= PACKET_READ_DELIM
)
1451 die(_("error processing shallow info: %d"), reader
->status
);
1453 if (args
->deepen
|| unshallow_received
) {
1455 * Treat these as shallow lines caused by our depth settings.
1456 * In v0, these lines cannot cause refs to be rejected; do the
1461 for (i
= 0; i
< shallows
->nr
; i
++)
1462 register_shallow(the_repository
, &shallows
->oid
[i
]);
1463 setup_alternate_shallow(&shallow_lock
, &alternate_shallow_file
,
1466 } else if (shallows
->nr
) {
1468 * Treat these as shallow lines caused by the remote being
1469 * shallow. In v0, remote refs that reach these objects are
1470 * rejected (unless --update-shallow is set); do the same.
1472 prepare_shallow_info(si
, shallows
);
1473 if (si
->nr_ours
|| si
->nr_theirs
) {
1474 if (args
->reject_shallow_remote
)
1475 die(_("source repository is shallow, reject to clone."));
1476 alternate_shallow_file
=
1477 setup_temporary_shallow(si
->shallow
);
1479 alternate_shallow_file
= NULL
;
1481 alternate_shallow_file
= NULL
;
1485 static int cmp_name_ref(const void *name
, const void *ref
)
1487 return strcmp(name
, (*(struct ref
**)ref
)->name
);
1490 static void receive_wanted_refs(struct packet_reader
*reader
,
1491 struct ref
**sought
, int nr_sought
)
1493 process_section_header(reader
, "wanted-refs", 0);
1494 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1495 struct object_id oid
;
1499 if (parse_oid_hex(reader
->line
, &oid
, &end
) || *end
++ != ' ')
1500 die(_("expected wanted-ref, got '%s'"), reader
->line
);
1502 found
= bsearch(end
, sought
, nr_sought
, sizeof(*sought
),
1505 die(_("unexpected wanted-ref: '%s'"), reader
->line
);
1506 oidcpy(&(*found
)->old_oid
, &oid
);
1509 if (reader
->status
!= PACKET_READ_DELIM
)
1510 die(_("error processing wanted refs: %d"), reader
->status
);
1513 static void receive_packfile_uris(struct packet_reader
*reader
,
1514 struct string_list
*uris
)
1516 process_section_header(reader
, "packfile-uris", 0);
1517 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1518 if (reader
->pktlen
< the_hash_algo
->hexsz
||
1519 reader
->line
[the_hash_algo
->hexsz
] != ' ')
1520 die("expected '<hash> <uri>', got: %s\n", reader
->line
);
1522 string_list_append(uris
, reader
->line
);
1524 if (reader
->status
!= PACKET_READ_DELIM
)
1525 die("expected DELIM");
1529 FETCH_CHECK_LOCAL
= 0,
1536 static void do_check_stateless_delimiter(int stateless_rpc
,
1537 struct packet_reader
*reader
)
1539 check_stateless_delimiter(stateless_rpc
, reader
,
1540 _("git fetch-pack: expected response end packet"));
1543 static struct ref
*do_fetch_pack_v2(struct fetch_pack_args
*args
,
1545 const struct ref
*orig_ref
,
1546 struct ref
**sought
, int nr_sought
,
1547 struct oid_array
*shallows
,
1548 struct shallow_info
*si
,
1549 struct string_list
*pack_lockfiles
)
1551 struct repository
*r
= the_repository
;
1552 struct ref
*ref
= copy_ref_list(orig_ref
);
1553 enum fetch_state state
= FETCH_CHECK_LOCAL
;
1554 struct oidset common
= OIDSET_INIT
;
1555 struct packet_reader reader
;
1556 int in_vain
= 0, negotiation_started
= 0;
1557 int haves_to_send
= INITIAL_FLUSH
;
1558 struct fetch_negotiator negotiator_alloc
;
1559 struct fetch_negotiator
*negotiator
;
1561 struct object_id common_oid
;
1562 int received_ready
= 0;
1563 struct string_list packfile_uris
= STRING_LIST_INIT_DUP
;
1565 struct strvec index_pack_args
= STRVEC_INIT
;
1567 negotiator
= &negotiator_alloc
;
1568 fetch_negotiator_init(r
, negotiator
);
1570 packet_reader_init(&reader
, fd
[0], NULL
, 0,
1571 PACKET_READ_CHOMP_NEWLINE
|
1572 PACKET_READ_DIE_ON_ERR_PACKET
);
1573 if (git_env_bool("GIT_TEST_SIDEBAND_ALL", 1) &&
1574 server_supports_feature("fetch", "sideband-all", 0)) {
1575 reader
.use_sideband
= 1;
1576 reader
.me
= "fetch-pack";
1579 while (state
!= FETCH_DONE
) {
1581 case FETCH_CHECK_LOCAL
:
1582 sort_ref_list(&ref
, ref_compare_name
);
1583 QSORT(sought
, nr_sought
, cmp_ref_by_name
);
1585 /* v2 supports these by default */
1586 allow_unadvertised_object_request
|= ALLOW_REACHABLE_SHA1
;
1588 if (args
->depth
> 0 || args
->deepen_since
|| args
->deepen_not
)
1591 /* Filter 'ref' by 'sought' and those that aren't local */
1592 mark_complete_and_common_ref(negotiator
, args
, &ref
);
1593 filter_refs(args
, &ref
, sought
, nr_sought
);
1594 if (everything_local(args
, &ref
))
1597 state
= FETCH_SEND_REQUEST
;
1599 mark_tips(negotiator
, args
->negotiation_tips
);
1600 for_each_cached_alternate(negotiator
,
1601 insert_one_alternate_object
);
1603 case FETCH_SEND_REQUEST
:
1604 if (!negotiation_started
) {
1605 negotiation_started
= 1;
1606 trace2_region_enter("fetch-pack",
1610 if (send_fetch_request(negotiator
, fd
[1], args
, ref
,
1612 &haves_to_send
, &in_vain
,
1613 reader
.use_sideband
,
1615 state
= FETCH_GET_PACK
;
1617 state
= FETCH_PROCESS_ACKS
;
1619 case FETCH_PROCESS_ACKS
:
1620 /* Process ACKs/NAKs */
1621 process_section_header(&reader
, "acknowledgments", 0);
1622 while (process_ack(negotiator
, &reader
, &common_oid
,
1626 oidset_insert(&common
, &common_oid
);
1628 if (received_ready
) {
1630 * Don't check for response delimiter; get_pack() will
1631 * read the rest of this response.
1633 state
= FETCH_GET_PACK
;
1635 do_check_stateless_delimiter(args
->stateless_rpc
, &reader
);
1636 state
= FETCH_SEND_REQUEST
;
1639 case FETCH_GET_PACK
:
1640 trace2_region_leave("fetch-pack",
1643 /* Check for shallow-info section */
1644 if (process_section_header(&reader
, "shallow-info", 1))
1645 receive_shallow_info(args
, &reader
, shallows
, si
);
1647 if (process_section_header(&reader
, "wanted-refs", 1))
1648 receive_wanted_refs(&reader
, sought
, nr_sought
);
1650 /* get the pack(s) */
1651 if (process_section_header(&reader
, "packfile-uris", 1))
1652 receive_packfile_uris(&reader
, &packfile_uris
);
1653 process_section_header(&reader
, "packfile", 0);
1656 * this is the final request we'll make of the server;
1657 * do a half-duplex shutdown to indicate that they can
1658 * hang up as soon as the pack is sent.
1663 if (get_pack(args
, fd
, pack_lockfiles
,
1664 packfile_uris
.nr
? &index_pack_args
: NULL
,
1665 sought
, nr_sought
, &fsck_options
.gitmodules_found
))
1666 die(_("git fetch-pack: fetch failed."));
1667 do_check_stateless_delimiter(args
->stateless_rpc
, &reader
);
1676 for (i
= 0; i
< packfile_uris
.nr
; i
++) {
1678 struct child_process cmd
= CHILD_PROCESS_INIT
;
1679 char packname
[GIT_MAX_HEXSZ
+ 1];
1680 const char *uri
= packfile_uris
.items
[i
].string
+
1681 the_hash_algo
->hexsz
+ 1;
1683 strvec_push(&cmd
.args
, "http-fetch");
1684 strvec_pushf(&cmd
.args
, "--packfile=%.*s",
1685 (int) the_hash_algo
->hexsz
,
1686 packfile_uris
.items
[i
].string
);
1687 for (j
= 0; j
< index_pack_args
.nr
; j
++)
1688 strvec_pushf(&cmd
.args
, "--index-pack-arg=%s",
1689 index_pack_args
.v
[j
]);
1690 strvec_push(&cmd
.args
, uri
);
1694 if (start_command(&cmd
))
1695 die("fetch-pack: unable to spawn http-fetch");
1697 if (read_in_full(cmd
.out
, packname
, 5) < 0 ||
1698 memcmp(packname
, "keep\t", 5))
1699 die("fetch-pack: expected keep then TAB at start of http-fetch output");
1701 if (read_in_full(cmd
.out
, packname
,
1702 the_hash_algo
->hexsz
+ 1) < 0 ||
1703 packname
[the_hash_algo
->hexsz
] != '\n')
1704 die("fetch-pack: expected hash then LF at end of http-fetch output");
1706 packname
[the_hash_algo
->hexsz
] = '\0';
1708 parse_gitmodules_oids(cmd
.out
, &fsck_options
.gitmodules_found
);
1712 if (finish_command(&cmd
))
1713 die("fetch-pack: unable to finish http-fetch");
1715 if (memcmp(packfile_uris
.items
[i
].string
, packname
,
1716 the_hash_algo
->hexsz
))
1717 die("fetch-pack: pack downloaded from %s does not match expected hash %.*s",
1718 uri
, (int) the_hash_algo
->hexsz
,
1719 packfile_uris
.items
[i
].string
);
1721 string_list_append_nodup(pack_lockfiles
,
1722 xstrfmt("%s/pack/pack-%s.keep",
1723 get_object_directory(),
1726 string_list_clear(&packfile_uris
, 0);
1727 strvec_clear(&index_pack_args
);
1729 if (fsck_finish(&fsck_options
))
1733 negotiator
->release(negotiator
);
1735 oidset_clear(&common
);
1739 static int fetch_pack_config_cb(const char *var
, const char *value
, void *cb
)
1741 if (strcmp(var
, "fetch.fsck.skiplist") == 0) {
1744 if (git_config_pathname(&path
, var
, value
))
1746 strbuf_addf(&fsck_msg_types
, "%cskiplist=%s",
1747 fsck_msg_types
.len
? ',' : '=', path
);
1752 if (skip_prefix(var
, "fetch.fsck.", &var
)) {
1753 if (is_valid_msg_type(var
, value
))
1754 strbuf_addf(&fsck_msg_types
, "%c%s=%s",
1755 fsck_msg_types
.len
? ',' : '=', var
, value
);
1757 warning("Skipping unknown msg id '%s'", var
);
1761 return git_default_config(var
, value
, cb
);
1764 static void fetch_pack_config(void)
1766 git_config_get_int("fetch.unpacklimit", &fetch_unpack_limit
);
1767 git_config_get_int("transfer.unpacklimit", &transfer_unpack_limit
);
1768 git_config_get_bool("repack.usedeltabaseoffset", &prefer_ofs_delta
);
1769 git_config_get_bool("fetch.fsckobjects", &fetch_fsck_objects
);
1770 git_config_get_bool("transfer.fsckobjects", &transfer_fsck_objects
);
1771 git_config_get_bool("transfer.advertisesid", &advertise_sid
);
1772 if (!uri_protocols
.nr
) {
1775 if (!git_config_get_string("fetch.uriprotocols", &str
) && str
) {
1776 string_list_split(&uri_protocols
, str
, ',', -1);
1781 git_config(fetch_pack_config_cb
, NULL
);
1784 static void fetch_pack_setup(void)
1786 static int did_setup
;
1789 fetch_pack_config();
1790 if (0 <= transfer_unpack_limit
)
1791 unpack_limit
= transfer_unpack_limit
;
1792 else if (0 <= fetch_unpack_limit
)
1793 unpack_limit
= fetch_unpack_limit
;
1797 static int remove_duplicates_in_refs(struct ref
**ref
, int nr
)
1799 struct string_list names
= STRING_LIST_INIT_NODUP
;
1802 for (src
= dst
= 0; src
< nr
; src
++) {
1803 struct string_list_item
*item
;
1804 item
= string_list_insert(&names
, ref
[src
]->name
);
1806 continue; /* already have it */
1807 item
->util
= ref
[src
];
1809 ref
[dst
] = ref
[src
];
1812 for (src
= dst
; src
< nr
; src
++)
1814 string_list_clear(&names
, 0);
1818 static void update_shallow(struct fetch_pack_args
*args
,
1819 struct ref
**sought
, int nr_sought
,
1820 struct shallow_info
*si
)
1822 struct oid_array ref
= OID_ARRAY_INIT
;
1826 if (args
->deepen
&& alternate_shallow_file
) {
1827 if (*alternate_shallow_file
== '\0') { /* --unshallow */
1828 unlink_or_warn(git_path_shallow(the_repository
));
1829 rollback_shallow_file(the_repository
, &shallow_lock
);
1831 commit_shallow_file(the_repository
, &shallow_lock
);
1832 alternate_shallow_file
= NULL
;
1836 if (!si
->shallow
|| !si
->shallow
->nr
)
1839 if (args
->cloning
) {
1841 * remote is shallow, but this is a clone, there are
1842 * no objects in repo to worry about. Accept any
1843 * shallow points that exist in the pack (iow in repo
1844 * after get_pack() and reprepare_packed_git())
1846 struct oid_array extra
= OID_ARRAY_INIT
;
1847 struct object_id
*oid
= si
->shallow
->oid
;
1848 for (i
= 0; i
< si
->shallow
->nr
; i
++)
1849 if (has_object_file(&oid
[i
]))
1850 oid_array_append(&extra
, &oid
[i
]);
1852 setup_alternate_shallow(&shallow_lock
,
1853 &alternate_shallow_file
,
1855 commit_shallow_file(the_repository
, &shallow_lock
);
1856 alternate_shallow_file
= NULL
;
1858 oid_array_clear(&extra
);
1862 if (!si
->nr_ours
&& !si
->nr_theirs
)
1865 remove_nonexistent_theirs_shallow(si
);
1866 if (!si
->nr_ours
&& !si
->nr_theirs
)
1868 for (i
= 0; i
< nr_sought
; i
++)
1869 oid_array_append(&ref
, &sought
[i
]->old_oid
);
1872 if (args
->update_shallow
) {
1874 * remote is also shallow, .git/shallow may be updated
1875 * so all refs can be accepted. Make sure we only add
1876 * shallow roots that are actually reachable from new
1879 struct oid_array extra
= OID_ARRAY_INIT
;
1880 struct object_id
*oid
= si
->shallow
->oid
;
1881 assign_shallow_commits_to_refs(si
, NULL
, NULL
);
1882 if (!si
->nr_ours
&& !si
->nr_theirs
) {
1883 oid_array_clear(&ref
);
1886 for (i
= 0; i
< si
->nr_ours
; i
++)
1887 oid_array_append(&extra
, &oid
[si
->ours
[i
]]);
1888 for (i
= 0; i
< si
->nr_theirs
; i
++)
1889 oid_array_append(&extra
, &oid
[si
->theirs
[i
]]);
1890 setup_alternate_shallow(&shallow_lock
,
1891 &alternate_shallow_file
,
1893 commit_shallow_file(the_repository
, &shallow_lock
);
1894 oid_array_clear(&extra
);
1895 oid_array_clear(&ref
);
1896 alternate_shallow_file
= NULL
;
1901 * remote is also shallow, check what ref is safe to update
1902 * without updating .git/shallow
1904 CALLOC_ARRAY(status
, nr_sought
);
1905 assign_shallow_commits_to_refs(si
, NULL
, status
);
1906 if (si
->nr_ours
|| si
->nr_theirs
) {
1907 for (i
= 0; i
< nr_sought
; i
++)
1909 sought
[i
]->status
= REF_STATUS_REJECT_SHALLOW
;
1912 oid_array_clear(&ref
);
1915 static int iterate_ref_map(void *cb_data
, struct object_id
*oid
)
1917 struct ref
**rm
= cb_data
;
1918 struct ref
*ref
= *rm
;
1921 return -1; /* end of the list */
1923 oidcpy(oid
, &ref
->old_oid
);
1927 struct ref
*fetch_pack(struct fetch_pack_args
*args
,
1929 const struct ref
*ref
,
1930 struct ref
**sought
, int nr_sought
,
1931 struct oid_array
*shallow
,
1932 struct string_list
*pack_lockfiles
,
1933 enum protocol_version version
)
1935 struct ref
*ref_cpy
;
1936 struct shallow_info si
;
1937 struct oid_array shallows_scratch
= OID_ARRAY_INIT
;
1941 nr_sought
= remove_duplicates_in_refs(sought
, nr_sought
);
1943 if (version
!= protocol_v2
&& !ref
) {
1944 packet_flush(fd
[1]);
1945 die(_("no matching remote head"));
1947 if (version
== protocol_v2
) {
1949 BUG("Protocol V2 does not provide shallows at this point in the fetch");
1950 memset(&si
, 0, sizeof(si
));
1951 ref_cpy
= do_fetch_pack_v2(args
, fd
, ref
, sought
, nr_sought
,
1952 &shallows_scratch
, &si
,
1955 prepare_shallow_info(&si
, shallow
);
1956 ref_cpy
= do_fetch_pack(args
, fd
, ref
, sought
, nr_sought
,
1957 &si
, pack_lockfiles
);
1959 reprepare_packed_git(the_repository
);
1961 if (!args
->cloning
&& args
->deepen
) {
1962 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
1963 struct ref
*iterator
= ref_cpy
;
1964 opt
.shallow_file
= alternate_shallow_file
;
1966 opt
.is_deepening_fetch
= 1;
1967 if (check_connected(iterate_ref_map
, &iterator
, &opt
)) {
1968 error(_("remote did not send all necessary objects"));
1971 rollback_shallow_file(the_repository
, &shallow_lock
);
1974 args
->connectivity_checked
= 1;
1977 update_shallow(args
, sought
, nr_sought
, &si
);
1979 clear_shallow_info(&si
);
1980 oid_array_clear(&shallows_scratch
);
1984 static int add_to_object_array(const struct object_id
*oid
, void *data
)
1986 struct object_array
*a
= data
;
1988 add_object_array(lookup_object(the_repository
, oid
), "", a
);
1992 static void clear_common_flag(struct oidset
*s
)
1994 struct oidset_iter iter
;
1995 const struct object_id
*oid
;
1996 oidset_iter_init(s
, &iter
);
1998 while ((oid
= oidset_iter_next(&iter
))) {
1999 struct object
*obj
= lookup_object(the_repository
, oid
);
2000 obj
->flags
&= ~COMMON
;
2004 void negotiate_using_fetch(const struct oid_array
*negotiation_tips
,
2005 const struct string_list
*server_options
,
2008 struct oidset
*acked_commits
)
2010 struct fetch_negotiator negotiator
;
2011 struct packet_reader reader
;
2012 struct object_array nt_object_array
= OBJECT_ARRAY_INIT
;
2013 struct strbuf req_buf
= STRBUF_INIT
;
2014 int haves_to_send
= INITIAL_FLUSH
;
2017 int last_iteration
= 0;
2018 timestamp_t min_generation
= GENERATION_NUMBER_INFINITY
;
2020 fetch_negotiator_init(the_repository
, &negotiator
);
2021 mark_tips(&negotiator
, negotiation_tips
);
2023 packet_reader_init(&reader
, fd
[0], NULL
, 0,
2024 PACKET_READ_CHOMP_NEWLINE
|
2025 PACKET_READ_DIE_ON_ERR_PACKET
);
2027 oid_array_for_each((struct oid_array
*) negotiation_tips
,
2028 add_to_object_array
,
2031 while (!last_iteration
) {
2033 struct object_id common_oid
;
2034 int received_ready
= 0;
2036 strbuf_reset(&req_buf
);
2037 write_fetch_command_and_capabilities(&req_buf
, server_options
);
2039 packet_buf_write(&req_buf
, "wait-for-done");
2041 haves_added
= add_haves(&negotiator
, &req_buf
, &haves_to_send
);
2042 in_vain
+= haves_added
;
2043 if (!haves_added
|| (seen_ack
&& in_vain
>= MAX_IN_VAIN
))
2047 packet_buf_flush(&req_buf
);
2048 if (write_in_full(fd
[1], req_buf
.buf
, req_buf
.len
) < 0)
2049 die_errno(_("unable to write request to remote"));
2051 /* Process ACKs/NAKs */
2052 process_section_header(&reader
, "acknowledgments", 0);
2053 while (process_ack(&negotiator
, &reader
, &common_oid
,
2055 struct commit
*commit
= lookup_commit(the_repository
,
2058 timestamp_t generation
;
2060 parse_commit_or_die(commit
);
2061 commit
->object
.flags
|= COMMON
;
2062 generation
= commit_graph_generation(commit
);
2063 if (generation
< min_generation
)
2064 min_generation
= generation
;
2068 oidset_insert(acked_commits
, &common_oid
);
2071 die(_("unexpected 'ready' from remote"));
2073 do_check_stateless_delimiter(stateless_rpc
, &reader
);
2074 if (can_all_from_reach_with_flag(&nt_object_array
, COMMON
,
2079 clear_common_flag(acked_commits
);
2080 strbuf_release(&req_buf
);
2083 int report_unmatched_refs(struct ref
**sought
, int nr_sought
)
2087 for (i
= 0; i
< nr_sought
; i
++) {
2090 switch (sought
[i
]->match_status
) {
2093 case REF_NOT_MATCHED
:
2094 error(_("no such remote ref %s"), sought
[i
]->name
);
2096 case REF_UNADVERTISED_NOT_ALLOWED
:
2097 error(_("Server does not allow request for unadvertised object %s"),