6 #include "repository.h"
7 #include "object-store.h"
13 #include "list-objects.h"
14 #include "list-objects-filter.h"
15 #include "list-objects-filter-options.h"
16 #include "run-command.h"
20 #include "string-list.h"
21 #include "argv-array.h"
22 #include "prio-queue.h"
25 #include "upload-pack.h"
27 #include "commit-graph.h"
28 #include "commit-reach.h"
31 /* Remember to update object flag allocation in object.h */
32 #define THEY_HAVE (1u << 11)
33 #define OUR_REF (1u << 12)
34 #define WANTED (1u << 13)
35 #define COMMON_KNOWN (1u << 14)
37 #define SHALLOW (1u << 16)
38 #define NOT_SHALLOW (1u << 17)
39 #define CLIENT_SHALLOW (1u << 18)
40 #define HIDDEN_REF (1u << 19)
42 #define ALL_FLAGS (THEY_HAVE | OUR_REF | WANTED | COMMON_KNOWN | SHALLOW | \
43 NOT_SHALLOW | CLIENT_SHALLOW | HIDDEN_REF)
45 static timestamp_t oldest_have
;
47 /* Allow specifying sha1 if it is a ref tip. */
48 #define ALLOW_TIP_SHA1 01
49 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
50 #define ALLOW_REACHABLE_SHA1 02
51 /* Allow request of any sha1. Implies ALLOW_TIP_SHA1 and ALLOW_REACHABLE_SHA1. */
52 #define ALLOW_ANY_SHA1 07
53 static unsigned int allow_unadvertised_object_request
;
54 static int shallow_nr
;
55 static struct object_array extra_edge_obj
;
58 * Please annotate, and if possible group together, fields used only
59 * for protocol v0 or only for protocol v2.
61 struct upload_pack_data
{
62 struct string_list symref
; /* v0 only */
63 struct object_array want_obj
;
64 struct object_array have_obj
;
65 struct oid_array haves
; /* v2 only */
66 struct string_list wanted_refs
; /* v2 only */
68 struct object_array shallows
;
69 struct string_list deepen_not
;
71 timestamp_t deepen_since
;
76 unsigned int timeout
; /* v0 only */
80 MULTI_ACK_DETAILED
= 2
81 } multi_ack
; /* v0 only */
83 /* 0 for no sideband, otherwise DEFAULT_PACKET_MAX or LARGE_PACKET_MAX */
86 struct list_objects_filter_options filter_options
;
88 struct packet_writer writer
;
90 const char *pack_objects_hook
;
92 unsigned stateless_rpc
: 1; /* v0 only */
93 unsigned no_done
: 1; /* v0 only */
94 unsigned daemon_mode
: 1; /* v0 only */
95 unsigned filter_capability_requested
: 1; /* v0 only */
97 unsigned use_thin_pack
: 1;
98 unsigned use_ofs_delta
: 1;
99 unsigned no_progress
: 1;
100 unsigned use_include_tag
: 1;
101 unsigned allow_filter
: 1;
103 unsigned done
: 1; /* v2 only */
104 unsigned allow_ref_in_want
: 1; /* v2 only */
105 unsigned allow_sideband_all
: 1; /* v2 only */
108 static void upload_pack_data_init(struct upload_pack_data
*data
)
110 struct string_list symref
= STRING_LIST_INIT_DUP
;
111 struct string_list wanted_refs
= STRING_LIST_INIT_DUP
;
112 struct object_array want_obj
= OBJECT_ARRAY_INIT
;
113 struct object_array have_obj
= OBJECT_ARRAY_INIT
;
114 struct oid_array haves
= OID_ARRAY_INIT
;
115 struct object_array shallows
= OBJECT_ARRAY_INIT
;
116 struct string_list deepen_not
= STRING_LIST_INIT_DUP
;
118 memset(data
, 0, sizeof(*data
));
119 data
->symref
= symref
;
120 data
->wanted_refs
= wanted_refs
;
121 data
->want_obj
= want_obj
;
122 data
->have_obj
= have_obj
;
124 data
->shallows
= shallows
;
125 data
->deepen_not
= deepen_not
;
126 packet_writer_init(&data
->writer
, 1);
131 static void upload_pack_data_clear(struct upload_pack_data
*data
)
133 string_list_clear(&data
->symref
, 1);
134 string_list_clear(&data
->wanted_refs
, 1);
135 object_array_clear(&data
->want_obj
);
136 object_array_clear(&data
->have_obj
);
137 oid_array_clear(&data
->haves
);
138 object_array_clear(&data
->shallows
);
139 string_list_clear(&data
->deepen_not
, 0);
140 list_objects_filter_release(&data
->filter_options
);
142 free((char *)data
->pack_objects_hook
);
145 static void reset_timeout(unsigned int timeout
)
150 static void send_client_data(int fd
, const char *data
, ssize_t sz
,
154 send_sideband(1, fd
, data
, sz
, use_sideband
);
161 /* XXX: are we happy to lose stuff here? */
162 xwrite(fd
, data
, sz
);
165 write_or_die(fd
, data
, sz
);
168 static int write_one_shallow(const struct commit_graft
*graft
, void *cb_data
)
171 if (graft
->nr_parent
== -1)
172 fprintf(fp
, "--shallow %s\n", oid_to_hex(&graft
->oid
));
176 static void create_pack_file(struct upload_pack_data
*pack_data
)
178 struct child_process pack_objects
= CHILD_PROCESS_INIT
;
179 char data
[8193], progress
[128];
180 char abort_msg
[] = "aborting due to possible repository "
181 "corruption on the remote side.";
187 if (!pack_data
->pack_objects_hook
)
188 pack_objects
.git_cmd
= 1;
190 argv_array_push(&pack_objects
.args
, pack_data
->pack_objects_hook
);
191 argv_array_push(&pack_objects
.args
, "git");
192 pack_objects
.use_shell
= 1;
196 argv_array_push(&pack_objects
.args
, "--shallow-file");
197 argv_array_push(&pack_objects
.args
, "");
199 argv_array_push(&pack_objects
.args
, "pack-objects");
200 argv_array_push(&pack_objects
.args
, "--revs");
201 if (pack_data
->use_thin_pack
)
202 argv_array_push(&pack_objects
.args
, "--thin");
204 argv_array_push(&pack_objects
.args
, "--stdout");
206 argv_array_push(&pack_objects
.args
, "--shallow");
207 if (!pack_data
->no_progress
)
208 argv_array_push(&pack_objects
.args
, "--progress");
209 if (pack_data
->use_ofs_delta
)
210 argv_array_push(&pack_objects
.args
, "--delta-base-offset");
211 if (pack_data
->use_include_tag
)
212 argv_array_push(&pack_objects
.args
, "--include-tag");
213 if (pack_data
->filter_options
.choice
) {
215 expand_list_objects_filter_spec(&pack_data
->filter_options
);
216 if (pack_objects
.use_shell
) {
217 struct strbuf buf
= STRBUF_INIT
;
218 sq_quote_buf(&buf
, spec
);
219 argv_array_pushf(&pack_objects
.args
, "--filter=%s", buf
.buf
);
220 strbuf_release(&buf
);
222 argv_array_pushf(&pack_objects
.args
, "--filter=%s",
227 pack_objects
.in
= -1;
228 pack_objects
.out
= -1;
229 pack_objects
.err
= -1;
231 if (start_command(&pack_objects
))
232 die("git upload-pack: unable to fork git-pack-objects");
234 pipe_fd
= xfdopen(pack_objects
.in
, "w");
237 for_each_commit_graft(write_one_shallow
, pipe_fd
);
239 for (i
= 0; i
< pack_data
->want_obj
.nr
; i
++)
240 fprintf(pipe_fd
, "%s\n",
241 oid_to_hex(&pack_data
->want_obj
.objects
[i
].item
->oid
));
242 fprintf(pipe_fd
, "--not\n");
243 for (i
= 0; i
< pack_data
->have_obj
.nr
; i
++)
244 fprintf(pipe_fd
, "%s\n",
245 oid_to_hex(&pack_data
->have_obj
.objects
[i
].item
->oid
));
246 for (i
= 0; i
< extra_edge_obj
.nr
; i
++)
247 fprintf(pipe_fd
, "%s\n",
248 oid_to_hex(&extra_edge_obj
.objects
[i
].item
->oid
));
249 fprintf(pipe_fd
, "\n");
253 /* We read from pack_objects.err to capture stderr output for
254 * progress bar, and pack_objects.out to capture the pack data.
258 struct pollfd pfd
[2];
259 int pe
, pu
, pollsize
, polltimeout
;
262 reset_timeout(pack_data
->timeout
);
267 if (0 <= pack_objects
.out
) {
268 pfd
[pollsize
].fd
= pack_objects
.out
;
269 pfd
[pollsize
].events
= POLLIN
;
273 if (0 <= pack_objects
.err
) {
274 pfd
[pollsize
].fd
= pack_objects
.err
;
275 pfd
[pollsize
].events
= POLLIN
;
283 polltimeout
= pack_data
->keepalive
< 0
285 : 1000 * pack_data
->keepalive
;
287 ret
= poll(pfd
, pollsize
, polltimeout
);
290 if (errno
!= EINTR
) {
291 error_errno("poll failed, resuming");
296 if (0 <= pe
&& (pfd
[pe
].revents
& (POLLIN
|POLLHUP
))) {
297 /* Status ready; we ship that in the side-band
298 * or dump to the standard error.
300 sz
= xread(pack_objects
.err
, progress
,
303 send_client_data(2, progress
, sz
,
304 pack_data
->use_sideband
);
306 close(pack_objects
.err
);
307 pack_objects
.err
= -1;
311 /* give priority to status messages */
314 if (0 <= pu
&& (pfd
[pu
].revents
& (POLLIN
|POLLHUP
))) {
315 /* Data ready; we keep the last byte to ourselves
316 * in case we detect broken rev-list, so that we
317 * can leave the stream corrupted. This is
318 * unfortunate -- unpack-objects would happily
319 * accept a valid packdata with trailing garbage,
320 * so appending garbage after we pass all the
321 * pack data is not good enough to signal
322 * breakage to downstream.
330 sz
= xread(pack_objects
.out
, cp
,
331 sizeof(data
) - outsz
);
335 close(pack_objects
.out
);
336 pack_objects
.out
= -1;
342 buffered
= data
[sz
-1] & 0xFF;
347 send_client_data(1, data
, sz
,
348 pack_data
->use_sideband
);
352 * We hit the keepalive timeout without saying anything; send
353 * an empty message on the data sideband just to let the other
354 * side know we're still working on it, but don't have any data
357 * If we don't have a sideband channel, there's no room in the
358 * protocol to say anything, so those clients are just out of
361 if (!ret
&& pack_data
->use_sideband
) {
362 static const char buf
[] = "0005\1";
363 write_or_die(1, buf
, 5);
367 if (finish_command(&pack_objects
)) {
368 error("git upload-pack: git-pack-objects died with error.");
375 send_client_data(1, data
, 1,
376 pack_data
->use_sideband
);
377 fprintf(stderr
, "flushed.\n");
379 if (pack_data
->use_sideband
)
384 send_client_data(3, abort_msg
, sizeof(abort_msg
),
385 pack_data
->use_sideband
);
386 die("git upload-pack: %s", abort_msg
);
389 static int got_oid(const char *hex
, struct object_id
*oid
,
390 struct object_array
*have_obj
)
393 int we_knew_they_have
= 0;
395 if (get_oid_hex(hex
, oid
))
396 die("git upload-pack: expected SHA1 object, got '%s'", hex
);
397 if (!has_object_file(oid
))
400 o
= parse_object(the_repository
, oid
);
402 die("oops (%s)", oid_to_hex(oid
));
403 if (o
->type
== OBJ_COMMIT
) {
404 struct commit_list
*parents
;
405 struct commit
*commit
= (struct commit
*)o
;
406 if (o
->flags
& THEY_HAVE
)
407 we_knew_they_have
= 1;
409 o
->flags
|= THEY_HAVE
;
410 if (!oldest_have
|| (commit
->date
< oldest_have
))
411 oldest_have
= commit
->date
;
412 for (parents
= commit
->parents
;
414 parents
= parents
->next
)
415 parents
->item
->object
.flags
|= THEY_HAVE
;
417 if (!we_knew_they_have
) {
418 add_object_array(o
, NULL
, have_obj
);
424 static int ok_to_give_up(const struct object_array
*have_obj
,
425 struct object_array
*want_obj
)
427 uint32_t min_generation
= GENERATION_NUMBER_ZERO
;
432 return can_all_from_reach_with_flag(want_obj
, THEY_HAVE
,
433 COMMON_KNOWN
, oldest_have
,
437 static int get_common_commits(struct upload_pack_data
*data
,
438 struct packet_reader
*reader
)
440 struct object_id oid
;
441 char last_hex
[GIT_MAX_HEXSZ
+ 1];
446 save_commit_buffer
= 0;
451 reset_timeout(data
->timeout
);
453 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
) {
454 if (data
->multi_ack
== MULTI_ACK_DETAILED
457 && ok_to_give_up(&data
->have_obj
, &data
->want_obj
)) {
459 packet_write_fmt(1, "ACK %s ready\n", last_hex
);
461 if (data
->have_obj
.nr
== 0 || data
->multi_ack
)
462 packet_write_fmt(1, "NAK\n");
464 if (data
->no_done
&& sent_ready
) {
465 packet_write_fmt(1, "ACK %s\n", last_hex
);
468 if (data
->stateless_rpc
)
474 if (skip_prefix(reader
->line
, "have ", &arg
)) {
475 switch (got_oid(arg
, &oid
, &data
->have_obj
)) {
476 case -1: /* they have what we do not */
479 && ok_to_give_up(&data
->have_obj
, &data
->want_obj
)) {
480 const char *hex
= oid_to_hex(&oid
);
481 if (data
->multi_ack
== MULTI_ACK_DETAILED
) {
483 packet_write_fmt(1, "ACK %s ready\n", hex
);
485 packet_write_fmt(1, "ACK %s continue\n", hex
);
490 oid_to_hex_r(last_hex
, &oid
);
491 if (data
->multi_ack
== MULTI_ACK_DETAILED
)
492 packet_write_fmt(1, "ACK %s common\n", last_hex
);
493 else if (data
->multi_ack
)
494 packet_write_fmt(1, "ACK %s continue\n", last_hex
);
495 else if (data
->have_obj
.nr
== 1)
496 packet_write_fmt(1, "ACK %s\n", last_hex
);
501 if (!strcmp(reader
->line
, "done")) {
502 if (data
->have_obj
.nr
> 0) {
504 packet_write_fmt(1, "ACK %s\n", last_hex
);
507 packet_write_fmt(1, "NAK\n");
510 die("git upload-pack: expected SHA1 list, got '%s'", reader
->line
);
514 static int is_our_ref(struct object
*o
)
516 int allow_hidden_ref
= (allow_unadvertised_object_request
&
517 (ALLOW_TIP_SHA1
| ALLOW_REACHABLE_SHA1
));
518 return o
->flags
& ((allow_hidden_ref
? HIDDEN_REF
: 0) | OUR_REF
);
522 * on successful case, it's up to the caller to close cmd->out
524 static int do_reachable_revlist(struct child_process
*cmd
,
525 struct object_array
*src
,
526 struct object_array
*reachable
)
528 static const char *argv
[] = {
529 "rev-list", "--stdin", NULL
,
532 char namebuf
[GIT_MAX_HEXSZ
+ 2]; /* ^ + hash + LF */
534 const unsigned hexsz
= the_hash_algo
->hexsz
;
543 * If the next rev-list --stdin encounters an unknown commit,
544 * it terminates, which will cause SIGPIPE in the write loop
547 sigchain_push(SIGPIPE
, SIG_IGN
);
549 if (start_command(cmd
))
553 namebuf
[hexsz
+ 1] = '\n';
554 for (i
= get_max_object_index(); 0 < i
; ) {
555 o
= get_indexed_object(--i
);
558 if (reachable
&& o
->type
== OBJ_COMMIT
)
559 o
->flags
&= ~TMP_MARK
;
562 memcpy(namebuf
+ 1, oid_to_hex(&o
->oid
), hexsz
);
563 if (write_in_full(cmd
->in
, namebuf
, hexsz
+ 2) < 0)
566 namebuf
[hexsz
] = '\n';
567 for (i
= 0; i
< src
->nr
; i
++) {
568 o
= src
->objects
[i
].item
;
571 add_object_array(o
, NULL
, reachable
);
574 if (reachable
&& o
->type
== OBJ_COMMIT
)
575 o
->flags
|= TMP_MARK
;
576 memcpy(namebuf
, oid_to_hex(&o
->oid
), hexsz
);
577 if (write_in_full(cmd
->in
, namebuf
, hexsz
+ 1) < 0)
582 sigchain_pop(SIGPIPE
);
587 sigchain_pop(SIGPIPE
);
596 static int get_reachable_list(struct object_array
*src
,
597 struct object_array
*reachable
)
599 struct child_process cmd
= CHILD_PROCESS_INIT
;
602 char namebuf
[GIT_MAX_HEXSZ
+ 2]; /* ^ + hash + LF */
603 const unsigned hexsz
= the_hash_algo
->hexsz
;
605 if (do_reachable_revlist(&cmd
, src
, reachable
) < 0)
608 while ((i
= read_in_full(cmd
.out
, namebuf
, hexsz
+ 1)) == hexsz
+ 1) {
609 struct object_id oid
;
612 if (parse_oid_hex(namebuf
, &oid
, &p
) || *p
!= '\n')
615 o
= lookup_object(the_repository
, &oid
);
616 if (o
&& o
->type
== OBJ_COMMIT
) {
617 o
->flags
&= ~TMP_MARK
;
620 for (i
= get_max_object_index(); 0 < i
; i
--) {
621 o
= get_indexed_object(i
- 1);
622 if (o
&& o
->type
== OBJ_COMMIT
&&
623 (o
->flags
& TMP_MARK
)) {
624 add_object_array(o
, NULL
, reachable
);
625 o
->flags
&= ~TMP_MARK
;
630 if (finish_command(&cmd
))
636 static int has_unreachable(struct object_array
*src
)
638 struct child_process cmd
= CHILD_PROCESS_INIT
;
642 if (do_reachable_revlist(&cmd
, src
, NULL
) < 0)
646 * The commits out of the rev-list are not ancestors of
649 i
= read_in_full(cmd
.out
, buf
, 1);
656 * rev-list may have died by encountering a bad commit
657 * in the history, in which case we do want to bail out
658 * even when it showed no commit.
660 if (finish_command(&cmd
))
663 /* All the non-tip ones are ancestors of what we advertised */
667 sigchain_pop(SIGPIPE
);
673 static void check_non_tip(struct upload_pack_data
*data
)
678 * In the normal in-process case without
679 * uploadpack.allowReachableSHA1InWant,
680 * non-tip requests can never happen.
682 if (!data
->stateless_rpc
683 && !(allow_unadvertised_object_request
& ALLOW_REACHABLE_SHA1
))
685 if (!has_unreachable(&data
->want_obj
))
686 /* All the non-tip ones are ancestors of what we advertised */
690 /* Pick one of them (we know there at least is one) */
691 for (i
= 0; i
< data
->want_obj
.nr
; i
++) {
692 struct object
*o
= data
->want_obj
.objects
[i
].item
;
693 if (!is_our_ref(o
)) {
694 packet_writer_error(&data
->writer
,
695 "upload-pack: not our ref %s",
696 oid_to_hex(&o
->oid
));
697 die("git upload-pack: not our ref %s",
698 oid_to_hex(&o
->oid
));
703 static void send_shallow(struct packet_writer
*writer
,
704 struct commit_list
*result
)
707 struct object
*object
= &result
->item
->object
;
708 if (!(object
->flags
& (CLIENT_SHALLOW
|NOT_SHALLOW
))) {
709 packet_writer_write(writer
, "shallow %s",
710 oid_to_hex(&object
->oid
));
711 register_shallow(the_repository
, &object
->oid
);
714 result
= result
->next
;
718 static void send_unshallow(struct packet_writer
*writer
,
719 const struct object_array
*shallows
,
720 struct object_array
*want_obj
)
724 for (i
= 0; i
< shallows
->nr
; i
++) {
725 struct object
*object
= shallows
->objects
[i
].item
;
726 if (object
->flags
& NOT_SHALLOW
) {
727 struct commit_list
*parents
;
728 packet_writer_write(writer
, "unshallow %s",
729 oid_to_hex(&object
->oid
));
730 object
->flags
&= ~CLIENT_SHALLOW
;
732 * We want to _register_ "object" as shallow, but we
733 * also need to traverse object's parents to deepen a
734 * shallow clone. Unregister it for now so we can
735 * parse and add the parents to the want list, then
738 unregister_shallow(&object
->oid
);
740 parse_commit_or_die((struct commit
*)object
);
741 parents
= ((struct commit
*)object
)->parents
;
743 add_object_array(&parents
->item
->object
,
745 parents
= parents
->next
;
747 add_object_array(object
, NULL
, &extra_edge_obj
);
749 /* make sure commit traversal conforms to client */
750 register_shallow(the_repository
, &object
->oid
);
754 static int check_ref(const char *refname_full
, const struct object_id
*oid
,
755 int flag
, void *cb_data
);
756 static void deepen(struct packet_writer
*writer
, int depth
, int deepen_relative
,
757 struct object_array
*shallows
, struct object_array
*want_obj
)
759 if (depth
== INFINITE_DEPTH
&& !is_repository_shallow(the_repository
)) {
762 for (i
= 0; i
< shallows
->nr
; i
++) {
763 struct object
*object
= shallows
->objects
[i
].item
;
764 object
->flags
|= NOT_SHALLOW
;
766 } else if (deepen_relative
) {
767 struct object_array reachable_shallows
= OBJECT_ARRAY_INIT
;
768 struct commit_list
*result
;
771 * Checking for reachable shallows requires that our refs be
772 * marked with OUR_REF.
774 head_ref_namespaced(check_ref
, NULL
);
775 for_each_namespaced_ref(check_ref
, NULL
);
777 get_reachable_list(shallows
, &reachable_shallows
);
778 result
= get_shallow_commits(&reachable_shallows
,
780 SHALLOW
, NOT_SHALLOW
);
781 send_shallow(writer
, result
);
782 free_commit_list(result
);
783 object_array_clear(&reachable_shallows
);
785 struct commit_list
*result
;
787 result
= get_shallow_commits(want_obj
, depth
,
788 SHALLOW
, NOT_SHALLOW
);
789 send_shallow(writer
, result
);
790 free_commit_list(result
);
793 send_unshallow(writer
, shallows
, want_obj
);
796 static void deepen_by_rev_list(struct packet_writer
*writer
, int ac
,
798 struct object_array
*shallows
,
799 struct object_array
*want_obj
)
801 struct commit_list
*result
;
803 disable_commit_graph(the_repository
);
804 result
= get_shallow_commits_by_rev_list(ac
, av
, SHALLOW
, NOT_SHALLOW
);
805 send_shallow(writer
, result
);
806 free_commit_list(result
);
807 send_unshallow(writer
, shallows
, want_obj
);
810 /* Returns 1 if a shallow list is sent or 0 otherwise */
811 static int send_shallow_list(struct packet_writer
*writer
,
812 int depth
, int deepen_rev_list
,
813 timestamp_t deepen_since
,
814 struct string_list
*deepen_not
,
816 struct object_array
*shallows
,
817 struct object_array
*want_obj
)
821 if (depth
> 0 && deepen_rev_list
)
822 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
824 deepen(writer
, depth
, deepen_relative
, shallows
, want_obj
);
826 } else if (deepen_rev_list
) {
827 struct argv_array av
= ARGV_ARRAY_INIT
;
830 argv_array_push(&av
, "rev-list");
832 argv_array_pushf(&av
, "--max-age=%"PRItime
, deepen_since
);
833 if (deepen_not
->nr
) {
834 argv_array_push(&av
, "--not");
835 for (i
= 0; i
< deepen_not
->nr
; i
++) {
836 struct string_list_item
*s
= deepen_not
->items
+ i
;
837 argv_array_push(&av
, s
->string
);
839 argv_array_push(&av
, "--not");
841 for (i
= 0; i
< want_obj
->nr
; i
++) {
842 struct object
*o
= want_obj
->objects
[i
].item
;
843 argv_array_push(&av
, oid_to_hex(&o
->oid
));
845 deepen_by_rev_list(writer
, av
.argc
, av
.argv
, shallows
, want_obj
);
846 argv_array_clear(&av
);
849 if (shallows
->nr
> 0) {
851 for (i
= 0; i
< shallows
->nr
; i
++)
852 register_shallow(the_repository
,
853 &shallows
->objects
[i
].item
->oid
);
857 shallow_nr
+= shallows
->nr
;
861 static int process_shallow(const char *line
, struct object_array
*shallows
)
864 if (skip_prefix(line
, "shallow ", &arg
)) {
865 struct object_id oid
;
866 struct object
*object
;
867 if (get_oid_hex(arg
, &oid
))
868 die("invalid shallow line: %s", line
);
869 object
= parse_object(the_repository
, &oid
);
872 if (object
->type
!= OBJ_COMMIT
)
873 die("invalid shallow object %s", oid_to_hex(&oid
));
874 if (!(object
->flags
& CLIENT_SHALLOW
)) {
875 object
->flags
|= CLIENT_SHALLOW
;
876 add_object_array(object
, NULL
, shallows
);
884 static int process_deepen(const char *line
, int *depth
)
887 if (skip_prefix(line
, "deepen ", &arg
)) {
889 *depth
= (int)strtol(arg
, &end
, 0);
890 if (!end
|| *end
|| *depth
<= 0)
891 die("Invalid deepen: %s", line
);
898 static int process_deepen_since(const char *line
, timestamp_t
*deepen_since
, int *deepen_rev_list
)
901 if (skip_prefix(line
, "deepen-since ", &arg
)) {
903 *deepen_since
= parse_timestamp(arg
, &end
, 0);
904 if (!end
|| *end
|| !deepen_since
||
905 /* revisions.c's max_age -1 is special */
907 die("Invalid deepen-since: %s", line
);
908 *deepen_rev_list
= 1;
914 static int process_deepen_not(const char *line
, struct string_list
*deepen_not
, int *deepen_rev_list
)
917 if (skip_prefix(line
, "deepen-not ", &arg
)) {
919 struct object_id oid
;
920 if (expand_ref(the_repository
, arg
, strlen(arg
), &oid
, &ref
) != 1)
921 die("git upload-pack: ambiguous deepen-not: %s", line
);
922 string_list_append(deepen_not
, ref
);
924 *deepen_rev_list
= 1;
930 static void receive_needs(struct upload_pack_data
*data
,
931 struct packet_reader
*reader
)
938 const char *features
;
939 struct object_id oid_buf
;
942 reset_timeout(data
->timeout
);
943 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
946 if (process_shallow(reader
->line
, &data
->shallows
))
948 if (process_deepen(reader
->line
, &data
->depth
))
950 if (process_deepen_since(reader
->line
, &data
->deepen_since
, &data
->deepen_rev_list
))
952 if (process_deepen_not(reader
->line
, &data
->deepen_not
, &data
->deepen_rev_list
))
955 if (skip_prefix(reader
->line
, "filter ", &arg
)) {
956 if (!data
->filter_capability_requested
)
957 die("git upload-pack: filtering capability not negotiated");
958 list_objects_filter_die_if_populated(&data
->filter_options
);
959 parse_list_objects_filter(&data
->filter_options
, arg
);
963 if (!skip_prefix(reader
->line
, "want ", &arg
) ||
964 parse_oid_hex(arg
, &oid_buf
, &features
))
965 die("git upload-pack: protocol error, "
966 "expected to get object ID, not '%s'", reader
->line
);
968 if (parse_feature_request(features
, "deepen-relative"))
969 data
->deepen_relative
= 1;
970 if (parse_feature_request(features
, "multi_ack_detailed"))
971 data
->multi_ack
= MULTI_ACK_DETAILED
;
972 else if (parse_feature_request(features
, "multi_ack"))
973 data
->multi_ack
= MULTI_ACK
;
974 if (parse_feature_request(features
, "no-done"))
976 if (parse_feature_request(features
, "thin-pack"))
977 data
->use_thin_pack
= 1;
978 if (parse_feature_request(features
, "ofs-delta"))
979 data
->use_ofs_delta
= 1;
980 if (parse_feature_request(features
, "side-band-64k"))
981 data
->use_sideband
= LARGE_PACKET_MAX
;
982 else if (parse_feature_request(features
, "side-band"))
983 data
->use_sideband
= DEFAULT_PACKET_MAX
;
984 if (parse_feature_request(features
, "no-progress"))
985 data
->no_progress
= 1;
986 if (parse_feature_request(features
, "include-tag"))
987 data
->use_include_tag
= 1;
988 if (data
->allow_filter
&&
989 parse_feature_request(features
, "filter"))
990 data
->filter_capability_requested
= 1;
992 o
= parse_object(the_repository
, &oid_buf
);
994 packet_writer_error(&data
->writer
,
995 "upload-pack: not our ref %s",
996 oid_to_hex(&oid_buf
));
997 die("git upload-pack: not our ref %s",
998 oid_to_hex(&oid_buf
));
1000 if (!(o
->flags
& WANTED
)) {
1002 if (!((allow_unadvertised_object_request
& ALLOW_ANY_SHA1
) == ALLOW_ANY_SHA1
1005 add_object_array(o
, NULL
, &data
->want_obj
);
1010 * We have sent all our refs already, and the other end
1011 * should have chosen out of them. When we are operating
1012 * in the stateless RPC mode, however, their choice may
1013 * have been based on the set of older refs advertised
1014 * by another process that handled the initial request.
1017 check_non_tip(data
);
1019 if (!data
->use_sideband
&& data
->daemon_mode
)
1020 data
->no_progress
= 1;
1022 if (data
->depth
== 0 && !data
->deepen_rev_list
&& data
->shallows
.nr
== 0)
1025 if (send_shallow_list(&data
->writer
,
1027 data
->deepen_rev_list
,
1030 data
->deepen_relative
,
1036 /* return non-zero if the ref is hidden, otherwise 0 */
1037 static int mark_our_ref(const char *refname
, const char *refname_full
,
1038 const struct object_id
*oid
)
1040 struct object
*o
= lookup_unknown_object(oid
);
1042 if (ref_is_hidden(refname
, refname_full
)) {
1043 o
->flags
|= HIDDEN_REF
;
1046 o
->flags
|= OUR_REF
;
1050 static int check_ref(const char *refname_full
, const struct object_id
*oid
,
1051 int flag
, void *cb_data
)
1053 const char *refname
= strip_namespace(refname_full
);
1055 mark_our_ref(refname
, refname_full
, oid
);
1059 static void format_symref_info(struct strbuf
*buf
, struct string_list
*symref
)
1061 struct string_list_item
*item
;
1065 for_each_string_list_item(item
, symref
)
1066 strbuf_addf(buf
, " symref=%s:%s", item
->string
, (char *)item
->util
);
1069 static int send_ref(const char *refname
, const struct object_id
*oid
,
1070 int flag
, void *cb_data
)
1072 static const char *capabilities
= "multi_ack thin-pack side-band"
1073 " side-band-64k ofs-delta shallow deepen-since deepen-not"
1074 " deepen-relative no-progress include-tag multi_ack_detailed";
1075 const char *refname_nons
= strip_namespace(refname
);
1076 struct object_id peeled
;
1077 struct upload_pack_data
*data
= cb_data
;
1079 if (mark_our_ref(refname_nons
, refname
, oid
))
1083 struct strbuf symref_info
= STRBUF_INIT
;
1085 format_symref_info(&symref_info
, &data
->symref
);
1086 packet_write_fmt(1, "%s %s%c%s%s%s%s%s%s agent=%s\n",
1087 oid_to_hex(oid
), refname_nons
,
1089 (allow_unadvertised_object_request
& ALLOW_TIP_SHA1
) ?
1090 " allow-tip-sha1-in-want" : "",
1091 (allow_unadvertised_object_request
& ALLOW_REACHABLE_SHA1
) ?
1092 " allow-reachable-sha1-in-want" : "",
1093 data
->stateless_rpc
? " no-done" : "",
1095 data
->allow_filter
? " filter" : "",
1096 git_user_agent_sanitized());
1097 strbuf_release(&symref_info
);
1099 packet_write_fmt(1, "%s %s\n", oid_to_hex(oid
), refname_nons
);
1101 capabilities
= NULL
;
1102 if (!peel_ref(refname
, &peeled
))
1103 packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled
), refname_nons
);
1107 static int find_symref(const char *refname
, const struct object_id
*oid
,
1108 int flag
, void *cb_data
)
1110 const char *symref_target
;
1111 struct string_list_item
*item
;
1113 if ((flag
& REF_ISSYMREF
) == 0)
1115 symref_target
= resolve_ref_unsafe(refname
, 0, NULL
, &flag
);
1116 if (!symref_target
|| (flag
& REF_ISSYMREF
) == 0)
1117 die("'%s' is a symref but it is not?", refname
);
1118 item
= string_list_append(cb_data
, strip_namespace(refname
));
1119 item
->util
= xstrdup(strip_namespace(symref_target
));
1123 static int upload_pack_config(const char *var
, const char *value
, void *cb_data
)
1125 struct upload_pack_data
*data
= cb_data
;
1127 if (!strcmp("uploadpack.allowtipsha1inwant", var
)) {
1128 if (git_config_bool(var
, value
))
1129 allow_unadvertised_object_request
|= ALLOW_TIP_SHA1
;
1131 allow_unadvertised_object_request
&= ~ALLOW_TIP_SHA1
;
1132 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var
)) {
1133 if (git_config_bool(var
, value
))
1134 allow_unadvertised_object_request
|= ALLOW_REACHABLE_SHA1
;
1136 allow_unadvertised_object_request
&= ~ALLOW_REACHABLE_SHA1
;
1137 } else if (!strcmp("uploadpack.allowanysha1inwant", var
)) {
1138 if (git_config_bool(var
, value
))
1139 allow_unadvertised_object_request
|= ALLOW_ANY_SHA1
;
1141 allow_unadvertised_object_request
&= ~ALLOW_ANY_SHA1
;
1142 } else if (!strcmp("uploadpack.keepalive", var
)) {
1143 data
->keepalive
= git_config_int(var
, value
);
1144 if (!data
->keepalive
)
1145 data
->keepalive
= -1;
1146 } else if (!strcmp("uploadpack.allowfilter", var
)) {
1147 data
->allow_filter
= git_config_bool(var
, value
);
1148 } else if (!strcmp("uploadpack.allowrefinwant", var
)) {
1149 data
->allow_ref_in_want
= git_config_bool(var
, value
);
1150 } else if (!strcmp("uploadpack.allowsidebandall", var
)) {
1151 data
->allow_sideband_all
= git_config_bool(var
, value
);
1152 } else if (!strcmp("core.precomposeunicode", var
)) {
1153 precomposed_unicode
= git_config_bool(var
, value
);
1156 if (current_config_scope() != CONFIG_SCOPE_LOCAL
&&
1157 current_config_scope() != CONFIG_SCOPE_WORKTREE
) {
1158 if (!strcmp("uploadpack.packobjectshook", var
))
1159 return git_config_string(&data
->pack_objects_hook
, var
, value
);
1162 return parse_hide_refs_config(var
, value
, "uploadpack");
1165 void upload_pack(struct upload_pack_options
*options
)
1167 struct packet_reader reader
;
1168 struct upload_pack_data data
;
1170 upload_pack_data_init(&data
);
1172 git_config(upload_pack_config
, &data
);
1174 data
.stateless_rpc
= options
->stateless_rpc
;
1175 data
.daemon_mode
= options
->daemon_mode
;
1176 data
.timeout
= options
->timeout
;
1178 head_ref_namespaced(find_symref
, &data
.symref
);
1180 if (options
->advertise_refs
|| !data
.stateless_rpc
) {
1181 reset_timeout(data
.timeout
);
1182 head_ref_namespaced(send_ref
, &data
);
1183 for_each_namespaced_ref(send_ref
, &data
);
1184 advertise_shallow_grafts(1);
1187 head_ref_namespaced(check_ref
, NULL
);
1188 for_each_namespaced_ref(check_ref
, NULL
);
1191 if (!options
->advertise_refs
) {
1192 packet_reader_init(&reader
, 0, NULL
, 0,
1193 PACKET_READ_CHOMP_NEWLINE
|
1194 PACKET_READ_DIE_ON_ERR_PACKET
);
1196 receive_needs(&data
, &reader
);
1197 if (data
.want_obj
.nr
) {
1198 get_common_commits(&data
, &reader
);
1199 create_pack_file(&data
);
1203 upload_pack_data_clear(&data
);
1206 static int parse_want(struct packet_writer
*writer
, const char *line
,
1207 struct object_array
*want_obj
)
1210 if (skip_prefix(line
, "want ", &arg
)) {
1211 struct object_id oid
;
1214 if (get_oid_hex(arg
, &oid
))
1215 die("git upload-pack: protocol error, "
1216 "expected to get oid, not '%s'", line
);
1218 o
= parse_object(the_repository
, &oid
);
1220 packet_writer_error(writer
,
1221 "upload-pack: not our ref %s",
1223 die("git upload-pack: not our ref %s",
1227 if (!(o
->flags
& WANTED
)) {
1229 add_object_array(o
, NULL
, want_obj
);
1238 static int parse_want_ref(struct packet_writer
*writer
, const char *line
,
1239 struct string_list
*wanted_refs
,
1240 struct object_array
*want_obj
)
1243 if (skip_prefix(line
, "want-ref ", &arg
)) {
1244 struct object_id oid
;
1245 struct string_list_item
*item
;
1248 if (read_ref(arg
, &oid
)) {
1249 packet_writer_error(writer
, "unknown ref %s", arg
);
1250 die("unknown ref %s", arg
);
1253 item
= string_list_append(wanted_refs
, arg
);
1254 item
->util
= oiddup(&oid
);
1256 o
= parse_object_or_die(&oid
, arg
);
1257 if (!(o
->flags
& WANTED
)) {
1259 add_object_array(o
, NULL
, want_obj
);
1268 static int parse_have(const char *line
, struct oid_array
*haves
)
1271 if (skip_prefix(line
, "have ", &arg
)) {
1272 struct object_id oid
;
1274 if (get_oid_hex(arg
, &oid
))
1275 die("git upload-pack: expected SHA1 object, got '%s'", arg
);
1276 oid_array_append(haves
, &oid
);
1283 static void process_args(struct packet_reader
*request
,
1284 struct upload_pack_data
*data
)
1286 while (packet_reader_read(request
) == PACKET_READ_NORMAL
) {
1287 const char *arg
= request
->line
;
1291 if (parse_want(&data
->writer
, arg
, &data
->want_obj
))
1293 if (data
->allow_ref_in_want
&&
1294 parse_want_ref(&data
->writer
, arg
, &data
->wanted_refs
,
1297 /* process have line */
1298 if (parse_have(arg
, &data
->haves
))
1301 /* process args like thin-pack */
1302 if (!strcmp(arg
, "thin-pack")) {
1303 data
->use_thin_pack
= 1;
1306 if (!strcmp(arg
, "ofs-delta")) {
1307 data
->use_ofs_delta
= 1;
1310 if (!strcmp(arg
, "no-progress")) {
1311 data
->no_progress
= 1;
1314 if (!strcmp(arg
, "include-tag")) {
1315 data
->use_include_tag
= 1;
1318 if (!strcmp(arg
, "done")) {
1323 /* Shallow related arguments */
1324 if (process_shallow(arg
, &data
->shallows
))
1326 if (process_deepen(arg
, &data
->depth
))
1328 if (process_deepen_since(arg
, &data
->deepen_since
,
1329 &data
->deepen_rev_list
))
1331 if (process_deepen_not(arg
, &data
->deepen_not
,
1332 &data
->deepen_rev_list
))
1334 if (!strcmp(arg
, "deepen-relative")) {
1335 data
->deepen_relative
= 1;
1339 if (data
->allow_filter
&& skip_prefix(arg
, "filter ", &p
)) {
1340 list_objects_filter_die_if_populated(&data
->filter_options
);
1341 parse_list_objects_filter(&data
->filter_options
, p
);
1345 if ((git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
1346 data
->allow_sideband_all
) &&
1347 !strcmp(arg
, "sideband-all")) {
1348 data
->writer
.use_sideband
= 1;
1352 /* ignore unknown lines maybe? */
1353 die("unexpected line: '%s'", arg
);
1356 if (request
->status
!= PACKET_READ_FLUSH
)
1357 die(_("expected flush after fetch arguments"));
1360 static int process_haves(struct oid_array
*haves
, struct oid_array
*common
,
1361 struct object_array
*have_obj
)
1366 for (i
= 0; i
< haves
->nr
; i
++) {
1367 const struct object_id
*oid
= &haves
->oid
[i
];
1369 int we_knew_they_have
= 0;
1371 if (!has_object_file(oid
))
1374 oid_array_append(common
, oid
);
1376 o
= parse_object(the_repository
, oid
);
1378 die("oops (%s)", oid_to_hex(oid
));
1379 if (o
->type
== OBJ_COMMIT
) {
1380 struct commit_list
*parents
;
1381 struct commit
*commit
= (struct commit
*)o
;
1382 if (o
->flags
& THEY_HAVE
)
1383 we_knew_they_have
= 1;
1385 o
->flags
|= THEY_HAVE
;
1386 if (!oldest_have
|| (commit
->date
< oldest_have
))
1387 oldest_have
= commit
->date
;
1388 for (parents
= commit
->parents
;
1390 parents
= parents
->next
)
1391 parents
->item
->object
.flags
|= THEY_HAVE
;
1393 if (!we_knew_they_have
)
1394 add_object_array(o
, NULL
, have_obj
);
1400 static int send_acks(struct packet_writer
*writer
, struct oid_array
*acks
,
1401 const struct object_array
*have_obj
,
1402 struct object_array
*want_obj
)
1406 packet_writer_write(writer
, "acknowledgments\n");
1410 packet_writer_write(writer
, "NAK\n");
1412 for (i
= 0; i
< acks
->nr
; i
++) {
1413 packet_writer_write(writer
, "ACK %s\n",
1414 oid_to_hex(&acks
->oid
[i
]));
1417 if (ok_to_give_up(have_obj
, want_obj
)) {
1419 packet_writer_write(writer
, "ready\n");
1426 static int process_haves_and_send_acks(struct upload_pack_data
*data
)
1428 struct oid_array common
= OID_ARRAY_INIT
;
1431 process_haves(&data
->haves
, &common
, &data
->have_obj
);
1434 } else if (send_acks(&data
->writer
, &common
,
1435 &data
->have_obj
, &data
->want_obj
)) {
1436 packet_writer_delim(&data
->writer
);
1440 packet_writer_flush(&data
->writer
);
1444 oid_array_clear(&data
->haves
);
1445 oid_array_clear(&common
);
1449 static void send_wanted_ref_info(struct upload_pack_data
*data
)
1451 const struct string_list_item
*item
;
1453 if (!data
->wanted_refs
.nr
)
1456 packet_writer_write(&data
->writer
, "wanted-refs\n");
1458 for_each_string_list_item(item
, &data
->wanted_refs
) {
1459 packet_writer_write(&data
->writer
, "%s %s\n",
1460 oid_to_hex(item
->util
),
1464 packet_writer_delim(&data
->writer
);
1467 static void send_shallow_info(struct upload_pack_data
*data
)
1469 /* No shallow info needs to be sent */
1470 if (!data
->depth
&& !data
->deepen_rev_list
&& !data
->shallows
.nr
&&
1471 !is_repository_shallow(the_repository
))
1474 packet_writer_write(&data
->writer
, "shallow-info\n");
1476 if (!send_shallow_list(&data
->writer
, data
->depth
,
1477 data
->deepen_rev_list
,
1478 data
->deepen_since
, &data
->deepen_not
,
1479 data
->deepen_relative
,
1480 &data
->shallows
, &data
->want_obj
) &&
1481 is_repository_shallow(the_repository
))
1482 deepen(&data
->writer
, INFINITE_DEPTH
, data
->deepen_relative
,
1483 &data
->shallows
, &data
->want_obj
);
1489 FETCH_PROCESS_ARGS
= 0,
1495 int upload_pack_v2(struct repository
*r
, struct argv_array
*keys
,
1496 struct packet_reader
*request
)
1498 enum fetch_state state
= FETCH_PROCESS_ARGS
;
1499 struct upload_pack_data data
;
1501 clear_object_flags(ALL_FLAGS
);
1503 upload_pack_data_init(&data
);
1504 data
.use_sideband
= LARGE_PACKET_MAX
;
1506 git_config(upload_pack_config
, &data
);
1508 while (state
!= FETCH_DONE
) {
1510 case FETCH_PROCESS_ARGS
:
1511 process_args(request
, &data
);
1513 if (!data
.want_obj
.nr
) {
1515 * Request didn't contain any 'want' lines,
1516 * guess they didn't want anything.
1519 } else if (data
.haves
.nr
) {
1521 * Request had 'have' lines, so lets ACK them.
1523 state
= FETCH_SEND_ACKS
;
1526 * Request had 'want's but no 'have's so we can
1527 * immedietly go to construct and send a pack.
1529 state
= FETCH_SEND_PACK
;
1532 case FETCH_SEND_ACKS
:
1533 if (process_haves_and_send_acks(&data
))
1534 state
= FETCH_SEND_PACK
;
1538 case FETCH_SEND_PACK
:
1539 send_wanted_ref_info(&data
);
1540 send_shallow_info(&data
);
1542 packet_writer_write(&data
.writer
, "packfile\n");
1543 create_pack_file(&data
);
1551 upload_pack_data_clear(&data
);
1555 int upload_pack_advertise(struct repository
*r
,
1556 struct strbuf
*value
)
1559 int allow_filter_value
;
1560 int allow_ref_in_want
;
1561 int allow_sideband_all_value
;
1563 strbuf_addstr(value
, "shallow");
1565 if (!repo_config_get_bool(the_repository
,
1566 "uploadpack.allowfilter",
1567 &allow_filter_value
) &&
1569 strbuf_addstr(value
, " filter");
1571 if (!repo_config_get_bool(the_repository
,
1572 "uploadpack.allowrefinwant",
1573 &allow_ref_in_want
) &&
1575 strbuf_addstr(value
, " ref-in-want");
1577 if (git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
1578 (!repo_config_get_bool(the_repository
,
1579 "uploadpack.allowsidebandall",
1580 &allow_sideband_all_value
) &&
1581 allow_sideband_all_value
))
1582 strbuf_addstr(value
, " sideband-all");