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"
30 /* Remember to update object flag allocation in object.h */
31 #define THEY_HAVE (1u << 11)
32 #define OUR_REF (1u << 12)
33 #define WANTED (1u << 13)
34 #define COMMON_KNOWN (1u << 14)
36 #define SHALLOW (1u << 16)
37 #define NOT_SHALLOW (1u << 17)
38 #define CLIENT_SHALLOW (1u << 18)
39 #define HIDDEN_REF (1u << 19)
41 #define ALL_FLAGS (THEY_HAVE | OUR_REF | WANTED | COMMON_KNOWN | SHALLOW | \
42 NOT_SHALLOW | CLIENT_SHALLOW | HIDDEN_REF)
44 static timestamp_t oldest_have;
48 static int use_thin_pack, use_ofs_delta, use_include_tag;
49 static int no_progress, daemon_mode;
50 /* Allow specifying sha1 if it is a ref tip. */
51 #define ALLOW_TIP_SHA1 01
52 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
53 #define ALLOW_REACHABLE_SHA1 02
54 /* Allow request of any sha1. Implies ALLOW_TIP_SHA1 and ALLOW_REACHABLE_SHA1. */
55 #define ALLOW_ANY_SHA1 07
56 static unsigned int allow_unadvertised_object_request;
57 static int shallow_nr;
58 static struct object_array extra_edge_obj;
59 static unsigned int timeout;
60 static int keepalive = 5;
62 * otherwise maximum packet size (up to 65520 bytes).
64 static int use_sideband;
65 static int stateless_rpc;
66 static const char *pack_objects_hook;
68 static int filter_capability_requested;
69 static int allow_filter;
70 static int allow_ref_in_want;
72 static int allow_sideband_all;
74 static void reset_timeout(void)
79 static void send_client_data(int fd, const char *data, ssize_t sz)
82 send_sideband(1, fd, data, sz, use_sideband);
89 /* XXX: are we happy to lose stuff here? */
93 write_or_die(fd, data, sz);
96 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
99 if (graft->nr_parent == -1)
100 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
104 static void create_pack_file(const struct object_array *have_obj,
105 const struct object_array *want_obj,
106 struct list_objects_filter_options *filter_options)
108 struct child_process pack_objects = CHILD_PROCESS_INIT;
109 char data[8193], progress[128];
110 char abort_msg[] = "aborting due to possible repository "
111 "corruption on the remote side.";
117 if (!pack_objects_hook)
118 pack_objects.git_cmd = 1;
120 argv_array_push(&pack_objects.args, pack_objects_hook);
121 argv_array_push(&pack_objects.args, "git");
122 pack_objects.use_shell = 1;
126 argv_array_push(&pack_objects.args, "--shallow-file");
127 argv_array_push(&pack_objects.args, "");
129 argv_array_push(&pack_objects.args, "pack-objects");
130 argv_array_push(&pack_objects.args, "--revs");
132 argv_array_push(&pack_objects.args, "--thin");
134 argv_array_push(&pack_objects.args, "--stdout");
136 argv_array_push(&pack_objects.args, "--shallow");
138 argv_array_push(&pack_objects.args, "--progress");
140 argv_array_push(&pack_objects.args, "--delta-base-offset");
142 argv_array_push(&pack_objects.args, "--include-tag");
143 if (filter_options->choice) {
145 expand_list_objects_filter_spec(filter_options);
146 if (pack_objects.use_shell) {
147 struct strbuf buf = STRBUF_INIT;
148 sq_quote_buf(&buf, spec);
149 argv_array_pushf(&pack_objects.args, "--filter=%s", buf.buf);
150 strbuf_release(&buf);
152 argv_array_pushf(&pack_objects.args, "--filter=%s",
157 pack_objects.in = -1;
158 pack_objects.out = -1;
159 pack_objects.err = -1;
161 if (start_command(&pack_objects))
162 die("git upload-pack: unable to fork git-pack-objects");
164 pipe_fd = xfdopen(pack_objects.in, "w");
167 for_each_commit_graft(write_one_shallow, pipe_fd);
169 for (i = 0; i < want_obj->nr; i++)
170 fprintf(pipe_fd, "%s\n",
171 oid_to_hex(&want_obj->objects[i].item->oid));
172 fprintf(pipe_fd, "--not\n");
173 for (i = 0; i < have_obj->nr; i++)
174 fprintf(pipe_fd, "%s\n",
175 oid_to_hex(&have_obj->objects[i].item->oid));
176 for (i = 0; i < extra_edge_obj.nr; i++)
177 fprintf(pipe_fd, "%s\n",
178 oid_to_hex(&extra_edge_obj.objects[i].item->oid));
179 fprintf(pipe_fd, "\n");
183 /* We read from pack_objects.err to capture stderr output for
184 * progress bar, and pack_objects.out to capture the pack data.
188 struct pollfd pfd[2];
189 int pe, pu, pollsize;
197 if (0 <= pack_objects.out) {
198 pfd[pollsize].fd = pack_objects.out;
199 pfd[pollsize].events = POLLIN;
203 if (0 <= pack_objects.err) {
204 pfd[pollsize].fd = pack_objects.err;
205 pfd[pollsize].events = POLLIN;
213 ret = poll(pfd, pollsize,
214 keepalive < 0 ? -1 : 1000 * keepalive);
217 if (errno != EINTR) {
218 error_errno("poll failed, resuming");
223 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
224 /* Status ready; we ship that in the side-band
225 * or dump to the standard error.
227 sz = xread(pack_objects.err, progress,
230 send_client_data(2, progress, sz);
232 close(pack_objects.err);
233 pack_objects.err = -1;
237 /* give priority to status messages */
240 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
241 /* Data ready; we keep the last byte to ourselves
242 * in case we detect broken rev-list, so that we
243 * can leave the stream corrupted. This is
244 * unfortunate -- unpack-objects would happily
245 * accept a valid packdata with trailing garbage,
246 * so appending garbage after we pass all the
247 * pack data is not good enough to signal
248 * breakage to downstream.
256 sz = xread(pack_objects.out, cp,
257 sizeof(data) - outsz);
261 close(pack_objects.out);
262 pack_objects.out = -1;
268 buffered = data[sz-1] & 0xFF;
273 send_client_data(1, data, sz);
277 * We hit the keepalive timeout without saying anything; send
278 * an empty message on the data sideband just to let the other
279 * side know we're still working on it, but don't have any data
282 * If we don't have a sideband channel, there's no room in the
283 * protocol to say anything, so those clients are just out of
286 if (!ret && use_sideband) {
287 static const char buf[] = "0005\1";
288 write_or_die(1, buf, 5);
292 if (finish_command(&pack_objects)) {
293 error("git upload-pack: git-pack-objects died with error.");
300 send_client_data(1, data, 1);
301 fprintf(stderr, "flushed.\n");
308 send_client_data(3, abort_msg, sizeof(abort_msg));
309 die("git upload-pack: %s", abort_msg);
312 static int got_oid(const char *hex, struct object_id *oid,
313 struct object_array *have_obj)
316 int we_knew_they_have = 0;
318 if (get_oid_hex(hex, oid))
319 die("git upload-pack: expected SHA1 object, got '%s'", hex);
320 if (!has_object_file(oid))
323 o = parse_object(the_repository, oid);
325 die("oops (%s)", oid_to_hex(oid));
326 if (o->type == OBJ_COMMIT) {
327 struct commit_list *parents;
328 struct commit *commit = (struct commit *)o;
329 if (o->flags & THEY_HAVE)
330 we_knew_they_have = 1;
332 o->flags |= THEY_HAVE;
333 if (!oldest_have || (commit->date < oldest_have))
334 oldest_have = commit->date;
335 for (parents = commit->parents;
337 parents = parents->next)
338 parents->item->object.flags |= THEY_HAVE;
340 if (!we_knew_they_have) {
341 add_object_array(o, NULL, have_obj);
347 static int ok_to_give_up(const struct object_array *have_obj,
348 struct object_array *want_obj)
350 uint32_t min_generation = GENERATION_NUMBER_ZERO;
355 return can_all_from_reach_with_flag(want_obj, THEY_HAVE,
356 COMMON_KNOWN, oldest_have,
360 static int get_common_commits(struct packet_reader *reader,
361 struct object_array *have_obj,
362 struct object_array *want_obj)
364 struct object_id oid;
365 char last_hex[GIT_MAX_HEXSZ + 1];
370 save_commit_buffer = 0;
377 if (packet_reader_read(reader) != PACKET_READ_NORMAL) {
378 if (multi_ack == 2 && got_common
379 && !got_other && ok_to_give_up(have_obj, want_obj)) {
381 packet_write_fmt(1, "ACK %s ready\n", last_hex);
383 if (have_obj->nr == 0 || multi_ack)
384 packet_write_fmt(1, "NAK\n");
386 if (no_done && sent_ready) {
387 packet_write_fmt(1, "ACK %s\n", last_hex);
396 if (skip_prefix(reader->line, "have ", &arg)) {
397 switch (got_oid(arg, &oid, have_obj)) {
398 case -1: /* they have what we do not */
400 if (multi_ack && ok_to_give_up(have_obj, want_obj)) {
401 const char *hex = oid_to_hex(&oid);
402 if (multi_ack == 2) {
404 packet_write_fmt(1, "ACK %s ready\n", hex);
406 packet_write_fmt(1, "ACK %s continue\n", hex);
411 oid_to_hex_r(last_hex, &oid);
413 packet_write_fmt(1, "ACK %s common\n", last_hex);
415 packet_write_fmt(1, "ACK %s continue\n", last_hex);
416 else if (have_obj->nr == 1)
417 packet_write_fmt(1, "ACK %s\n", last_hex);
422 if (!strcmp(reader->line, "done")) {
423 if (have_obj->nr > 0) {
425 packet_write_fmt(1, "ACK %s\n", last_hex);
428 packet_write_fmt(1, "NAK\n");
431 die("git upload-pack: expected SHA1 list, got '%s'", reader->line);
435 static int is_our_ref(struct object *o)
437 int allow_hidden_ref = (allow_unadvertised_object_request &
438 (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
439 return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
443 * on successful case, it's up to the caller to close cmd->out
445 static int do_reachable_revlist(struct child_process *cmd,
446 struct object_array *src,
447 struct object_array *reachable)
449 static const char *argv[] = {
450 "rev-list", "--stdin", NULL,
453 char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
455 const unsigned hexsz = the_hash_algo->hexsz;
464 * If the next rev-list --stdin encounters an unknown commit,
465 * it terminates, which will cause SIGPIPE in the write loop
468 sigchain_push(SIGPIPE, SIG_IGN);
470 if (start_command(cmd))
474 namebuf[hexsz + 1] = '\n';
475 for (i = get_max_object_index(); 0 < i; ) {
476 o = get_indexed_object(--i);
479 if (reachable && o->type == OBJ_COMMIT)
480 o->flags &= ~TMP_MARK;
483 memcpy(namebuf + 1, oid_to_hex(&o->oid), hexsz);
484 if (write_in_full(cmd->in, namebuf, hexsz + 2) < 0)
487 namebuf[hexsz] = '\n';
488 for (i = 0; i < src->nr; i++) {
489 o = src->objects[i].item;
492 add_object_array(o, NULL, reachable);
495 if (reachable && o->type == OBJ_COMMIT)
496 o->flags |= TMP_MARK;
497 memcpy(namebuf, oid_to_hex(&o->oid), hexsz);
498 if (write_in_full(cmd->in, namebuf, hexsz + 1) < 0)
503 sigchain_pop(SIGPIPE);
508 sigchain_pop(SIGPIPE);
517 static int get_reachable_list(struct object_array *src,
518 struct object_array *reachable)
520 struct child_process cmd = CHILD_PROCESS_INIT;
523 char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
524 const unsigned hexsz = the_hash_algo->hexsz;
526 if (do_reachable_revlist(&cmd, src, reachable) < 0)
529 while ((i = read_in_full(cmd.out, namebuf, hexsz + 1)) == hexsz + 1) {
530 struct object_id oid;
533 if (parse_oid_hex(namebuf, &oid, &p) || *p != '\n')
536 o = lookup_object(the_repository, &oid);
537 if (o && o->type == OBJ_COMMIT) {
538 o->flags &= ~TMP_MARK;
541 for (i = get_max_object_index(); 0 < i; i--) {
542 o = get_indexed_object(i - 1);
543 if (o && o->type == OBJ_COMMIT &&
544 (o->flags & TMP_MARK)) {
545 add_object_array(o, NULL, reachable);
546 o->flags &= ~TMP_MARK;
551 if (finish_command(&cmd))
557 static int has_unreachable(struct object_array *src)
559 struct child_process cmd = CHILD_PROCESS_INIT;
563 if (do_reachable_revlist(&cmd, src, NULL) < 0)
567 * The commits out of the rev-list are not ancestors of
570 i = read_in_full(cmd.out, buf, 1);
577 * rev-list may have died by encountering a bad commit
578 * in the history, in which case we do want to bail out
579 * even when it showed no commit.
581 if (finish_command(&cmd))
584 /* All the non-tip ones are ancestors of what we advertised */
588 sigchain_pop(SIGPIPE);
594 static void check_non_tip(struct object_array *want_obj,
595 struct packet_writer *writer)
600 * In the normal in-process case without
601 * uploadpack.allowReachableSHA1InWant,
602 * non-tip requests can never happen.
604 if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
606 if (!has_unreachable(want_obj))
607 /* All the non-tip ones are ancestors of what we advertised */
611 /* Pick one of them (we know there at least is one) */
612 for (i = 0; i < want_obj->nr; i++) {
613 struct object *o = want_obj->objects[i].item;
614 if (!is_our_ref(o)) {
615 packet_writer_error(writer,
616 "upload-pack: not our ref %s",
617 oid_to_hex(&o->oid));
618 die("git upload-pack: not our ref %s",
619 oid_to_hex(&o->oid));
624 static void send_shallow(struct packet_writer *writer,
625 struct commit_list *result)
628 struct object *object = &result->item->object;
629 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
630 packet_writer_write(writer, "shallow %s",
631 oid_to_hex(&object->oid));
632 register_shallow(the_repository, &object->oid);
635 result = result->next;
639 static void send_unshallow(struct packet_writer *writer,
640 const struct object_array *shallows,
641 struct object_array *want_obj)
645 for (i = 0; i < shallows->nr; i++) {
646 struct object *object = shallows->objects[i].item;
647 if (object->flags & NOT_SHALLOW) {
648 struct commit_list *parents;
649 packet_writer_write(writer, "unshallow %s",
650 oid_to_hex(&object->oid));
651 object->flags &= ~CLIENT_SHALLOW;
653 * We want to _register_ "object" as shallow, but we
654 * also need to traverse object's parents to deepen a
655 * shallow clone. Unregister it for now so we can
656 * parse and add the parents to the want list, then
659 unregister_shallow(&object->oid);
661 parse_commit_or_die((struct commit *)object);
662 parents = ((struct commit *)object)->parents;
664 add_object_array(&parents->item->object,
666 parents = parents->next;
668 add_object_array(object, NULL, &extra_edge_obj);
670 /* make sure commit traversal conforms to client */
671 register_shallow(the_repository, &object->oid);
675 static int check_ref(const char *refname_full, const struct object_id *oid,
676 int flag, void *cb_data);
677 static void deepen(struct packet_writer *writer, int depth, int deepen_relative,
678 struct object_array *shallows, struct object_array *want_obj)
680 if (depth == INFINITE_DEPTH && !is_repository_shallow(the_repository)) {
683 for (i = 0; i < shallows->nr; i++) {
684 struct object *object = shallows->objects[i].item;
685 object->flags |= NOT_SHALLOW;
687 } else if (deepen_relative) {
688 struct object_array reachable_shallows = OBJECT_ARRAY_INIT;
689 struct commit_list *result;
692 * Checking for reachable shallows requires that our refs be
693 * marked with OUR_REF.
695 head_ref_namespaced(check_ref, NULL);
696 for_each_namespaced_ref(check_ref, NULL);
698 get_reachable_list(shallows, &reachable_shallows);
699 result = get_shallow_commits(&reachable_shallows,
701 SHALLOW, NOT_SHALLOW);
702 send_shallow(writer, result);
703 free_commit_list(result);
704 object_array_clear(&reachable_shallows);
706 struct commit_list *result;
708 result = get_shallow_commits(want_obj, depth,
709 SHALLOW, NOT_SHALLOW);
710 send_shallow(writer, result);
711 free_commit_list(result);
714 send_unshallow(writer, shallows, want_obj);
717 static void deepen_by_rev_list(struct packet_writer *writer, int ac,
719 struct object_array *shallows,
720 struct object_array *want_obj)
722 struct commit_list *result;
724 disable_commit_graph(the_repository);
725 result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW);
726 send_shallow(writer, result);
727 free_commit_list(result);
728 send_unshallow(writer, shallows, want_obj);
731 /* Returns 1 if a shallow list is sent or 0 otherwise */
732 static int send_shallow_list(struct packet_writer *writer,
733 int depth, int deepen_rev_list,
734 timestamp_t deepen_since,
735 struct string_list *deepen_not,
737 struct object_array *shallows,
738 struct object_array *want_obj)
742 if (depth > 0 && deepen_rev_list)
743 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
745 deepen(writer, depth, deepen_relative, shallows, want_obj);
747 } else if (deepen_rev_list) {
748 struct argv_array av = ARGV_ARRAY_INIT;
751 argv_array_push(&av, "rev-list");
753 argv_array_pushf(&av, "--max-age=%"PRItime, deepen_since);
754 if (deepen_not->nr) {
755 argv_array_push(&av, "--not");
756 for (i = 0; i < deepen_not->nr; i++) {
757 struct string_list_item *s = deepen_not->items + i;
758 argv_array_push(&av, s->string);
760 argv_array_push(&av, "--not");
762 for (i = 0; i < want_obj->nr; i++) {
763 struct object *o = want_obj->objects[i].item;
764 argv_array_push(&av, oid_to_hex(&o->oid));
766 deepen_by_rev_list(writer, av.argc, av.argv, shallows, want_obj);
767 argv_array_clear(&av);
770 if (shallows->nr > 0) {
772 for (i = 0; i < shallows->nr; i++)
773 register_shallow(the_repository,
774 &shallows->objects[i].item->oid);
778 shallow_nr += shallows->nr;
782 static int process_shallow(const char *line, struct object_array *shallows)
785 if (skip_prefix(line, "shallow ", &arg)) {
786 struct object_id oid;
787 struct object *object;
788 if (get_oid_hex(arg, &oid))
789 die("invalid shallow line: %s", line);
790 object = parse_object(the_repository, &oid);
793 if (object->type != OBJ_COMMIT)
794 die("invalid shallow object %s", oid_to_hex(&oid));
795 if (!(object->flags & CLIENT_SHALLOW)) {
796 object->flags |= CLIENT_SHALLOW;
797 add_object_array(object, NULL, shallows);
805 static int process_deepen(const char *line, int *depth)
808 if (skip_prefix(line, "deepen ", &arg)) {
810 *depth = (int)strtol(arg, &end, 0);
811 if (!end || *end || *depth <= 0)
812 die("Invalid deepen: %s", line);
819 static int process_deepen_since(const char *line, timestamp_t *deepen_since, int *deepen_rev_list)
822 if (skip_prefix(line, "deepen-since ", &arg)) {
824 *deepen_since = parse_timestamp(arg, &end, 0);
825 if (!end || *end || !deepen_since ||
826 /* revisions.c's max_age -1 is special */
828 die("Invalid deepen-since: %s", line);
829 *deepen_rev_list = 1;
835 static int process_deepen_not(const char *line, struct string_list *deepen_not, int *deepen_rev_list)
838 if (skip_prefix(line, "deepen-not ", &arg)) {
840 struct object_id oid;
841 if (expand_ref(the_repository, arg, strlen(arg), &oid, &ref) != 1)
842 die("git upload-pack: ambiguous deepen-not: %s", line);
843 string_list_append(deepen_not, ref);
845 *deepen_rev_list = 1;
851 static void receive_needs(struct packet_reader *reader,
852 struct object_array *want_obj,
853 struct list_objects_filter_options *filter_options)
855 struct object_array shallows = OBJECT_ARRAY_INIT;
856 struct string_list deepen_not = STRING_LIST_INIT_DUP;
859 timestamp_t deepen_since = 0;
860 int deepen_rev_list = 0;
861 int deepen_relative = 0;
862 struct packet_writer writer;
865 packet_writer_init(&writer, 1);
868 const char *features;
869 struct object_id oid_buf;
873 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
876 if (process_shallow(reader->line, &shallows))
878 if (process_deepen(reader->line, &depth))
880 if (process_deepen_since(reader->line, &deepen_since, &deepen_rev_list))
882 if (process_deepen_not(reader->line, &deepen_not, &deepen_rev_list))
885 if (skip_prefix(reader->line, "filter ", &arg)) {
886 if (!filter_capability_requested)
887 die("git upload-pack: filtering capability not negotiated");
888 list_objects_filter_die_if_populated(filter_options);
889 parse_list_objects_filter(filter_options, arg);
893 if (!skip_prefix(reader->line, "want ", &arg) ||
894 parse_oid_hex(arg, &oid_buf, &features))
895 die("git upload-pack: protocol error, "
896 "expected to get object ID, not '%s'", reader->line);
898 if (parse_feature_request(features, "deepen-relative"))
900 if (parse_feature_request(features, "multi_ack_detailed"))
902 else if (parse_feature_request(features, "multi_ack"))
904 if (parse_feature_request(features, "no-done"))
906 if (parse_feature_request(features, "thin-pack"))
908 if (parse_feature_request(features, "ofs-delta"))
910 if (parse_feature_request(features, "side-band-64k"))
911 use_sideband = LARGE_PACKET_MAX;
912 else if (parse_feature_request(features, "side-band"))
913 use_sideband = DEFAULT_PACKET_MAX;
914 if (parse_feature_request(features, "no-progress"))
916 if (parse_feature_request(features, "include-tag"))
918 if (allow_filter && parse_feature_request(features, "filter"))
919 filter_capability_requested = 1;
921 o = parse_object(the_repository, &oid_buf);
923 packet_writer_error(&writer,
924 "upload-pack: not our ref %s",
925 oid_to_hex(&oid_buf));
926 die("git upload-pack: not our ref %s",
927 oid_to_hex(&oid_buf));
929 if (!(o->flags & WANTED)) {
931 if (!((allow_unadvertised_object_request & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1
934 add_object_array(o, NULL, want_obj);
939 * We have sent all our refs already, and the other end
940 * should have chosen out of them. When we are operating
941 * in the stateless RPC mode, however, their choice may
942 * have been based on the set of older refs advertised
943 * by another process that handled the initial request.
946 check_non_tip(want_obj, &writer);
948 if (!use_sideband && daemon_mode)
951 if (depth == 0 && !deepen_rev_list && shallows.nr == 0)
954 if (send_shallow_list(&writer, depth, deepen_rev_list, deepen_since,
955 &deepen_not, deepen_relative, &shallows,
958 object_array_clear(&shallows);
961 /* return non-zero if the ref is hidden, otherwise 0 */
962 static int mark_our_ref(const char *refname, const char *refname_full,
963 const struct object_id *oid)
965 struct object *o = lookup_unknown_object(oid);
967 if (ref_is_hidden(refname, refname_full)) {
968 o->flags |= HIDDEN_REF;
975 static int check_ref(const char *refname_full, const struct object_id *oid,
976 int flag, void *cb_data)
978 const char *refname = strip_namespace(refname_full);
980 mark_our_ref(refname, refname_full, oid);
984 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
986 struct string_list_item *item;
990 for_each_string_list_item(item, symref)
991 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
994 static int send_ref(const char *refname, const struct object_id *oid,
995 int flag, void *cb_data)
997 static const char *capabilities = "multi_ack thin-pack side-band"
998 " side-band-64k ofs-delta shallow deepen-since deepen-not"
999 " deepen-relative no-progress include-tag multi_ack_detailed";
1000 const char *refname_nons = strip_namespace(refname);
1001 struct object_id peeled;
1003 if (mark_our_ref(refname_nons, refname, oid))
1007 struct strbuf symref_info = STRBUF_INIT;
1009 format_symref_info(&symref_info, cb_data);
1010 packet_write_fmt(1, "%s %s%c%s%s%s%s%s%s agent=%s\n",
1011 oid_to_hex(oid), refname_nons,
1013 (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
1014 " allow-tip-sha1-in-want" : "",
1015 (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
1016 " allow-reachable-sha1-in-want" : "",
1017 stateless_rpc ? " no-done" : "",
1019 allow_filter ? " filter" : "",
1020 git_user_agent_sanitized());
1021 strbuf_release(&symref_info);
1023 packet_write_fmt(1, "%s %s\n", oid_to_hex(oid), refname_nons);
1025 capabilities = NULL;
1026 if (!peel_ref(refname, &peeled))
1027 packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
1031 static int find_symref(const char *refname, const struct object_id *oid,
1032 int flag, void *cb_data)
1034 const char *symref_target;
1035 struct string_list_item *item;
1037 if ((flag & REF_ISSYMREF) == 0)
1039 symref_target = resolve_ref_unsafe(refname, 0, NULL, &flag);
1040 if (!symref_target || (flag & REF_ISSYMREF) == 0)
1041 die("'%s' is a symref but it is not?", refname);
1042 item = string_list_append(cb_data, strip_namespace(refname));
1043 item->util = xstrdup(strip_namespace(symref_target));
1047 static int upload_pack_config(const char *var, const char *value, void *unused)
1049 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
1050 if (git_config_bool(var, value))
1051 allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
1053 allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
1054 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
1055 if (git_config_bool(var, value))
1056 allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
1058 allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
1059 } else if (!strcmp("uploadpack.allowanysha1inwant", var)) {
1060 if (git_config_bool(var, value))
1061 allow_unadvertised_object_request |= ALLOW_ANY_SHA1;
1063 allow_unadvertised_object_request &= ~ALLOW_ANY_SHA1;
1064 } else if (!strcmp("uploadpack.keepalive", var)) {
1065 keepalive = git_config_int(var, value);
1068 } else if (!strcmp("uploadpack.allowfilter", var)) {
1069 allow_filter = git_config_bool(var, value);
1070 } else if (!strcmp("uploadpack.allowrefinwant", var)) {
1071 allow_ref_in_want = git_config_bool(var, value);
1072 } else if (!strcmp("uploadpack.allowsidebandall", var)) {
1073 allow_sideband_all = git_config_bool(var, value);
1074 } else if (!strcmp("core.precomposeunicode", var)) {
1075 precomposed_unicode = git_config_bool(var, value);
1078 if (current_config_scope() != CONFIG_SCOPE_LOCAL &&
1079 current_config_scope() != CONFIG_SCOPE_WORKTREE) {
1080 if (!strcmp("uploadpack.packobjectshook", var))
1081 return git_config_string(&pack_objects_hook, var, value);
1084 return parse_hide_refs_config(var, value, "uploadpack");
1087 void upload_pack(struct upload_pack_options *options)
1089 struct string_list symref = STRING_LIST_INIT_DUP;
1090 struct object_array want_obj = OBJECT_ARRAY_INIT;
1091 struct packet_reader reader;
1092 struct list_objects_filter_options filter_options;
1094 stateless_rpc = options->stateless_rpc;
1095 timeout = options->timeout;
1096 daemon_mode = options->daemon_mode;
1098 memset(&filter_options, 0, sizeof(filter_options));
1100 git_config(upload_pack_config, NULL);
1102 head_ref_namespaced(find_symref, &symref);
1104 if (options->advertise_refs || !stateless_rpc) {
1106 head_ref_namespaced(send_ref, &symref);
1107 for_each_namespaced_ref(send_ref, &symref);
1108 advertise_shallow_grafts(1);
1111 head_ref_namespaced(check_ref, NULL);
1112 for_each_namespaced_ref(check_ref, NULL);
1114 string_list_clear(&symref, 1);
1115 if (options->advertise_refs)
1118 packet_reader_init(&reader, 0, NULL, 0,
1119 PACKET_READ_CHOMP_NEWLINE |
1120 PACKET_READ_DIE_ON_ERR_PACKET);
1122 receive_needs(&reader, &want_obj, &filter_options);
1124 struct object_array have_obj = OBJECT_ARRAY_INIT;
1125 get_common_commits(&reader, &have_obj, &want_obj);
1126 create_pack_file(&have_obj, &want_obj, &filter_options);
1129 list_objects_filter_release(&filter_options);
1132 struct upload_pack_data {
1133 struct object_array wants;
1134 struct string_list wanted_refs;
1135 struct oid_array haves;
1137 struct object_array shallows;
1138 struct string_list deepen_not;
1140 timestamp_t deepen_since;
1141 int deepen_rev_list;
1142 int deepen_relative;
1144 struct list_objects_filter_options filter_options;
1146 struct packet_writer writer;
1148 unsigned stateless_rpc : 1;
1150 unsigned use_thin_pack : 1;
1151 unsigned use_ofs_delta : 1;
1152 unsigned no_progress : 1;
1153 unsigned use_include_tag : 1;
1157 static void upload_pack_data_init(struct upload_pack_data *data)
1159 struct object_array wants = OBJECT_ARRAY_INIT;
1160 struct string_list wanted_refs = STRING_LIST_INIT_DUP;
1161 struct oid_array haves = OID_ARRAY_INIT;
1162 struct object_array shallows = OBJECT_ARRAY_INIT;
1163 struct string_list deepen_not = STRING_LIST_INIT_DUP;
1165 memset(data, 0, sizeof(*data));
1166 data->wants = wants;
1167 data->wanted_refs = wanted_refs;
1168 data->haves = haves;
1169 data->shallows = shallows;
1170 data->deepen_not = deepen_not;
1171 packet_writer_init(&data->writer, 1);
1174 static void upload_pack_data_clear(struct upload_pack_data *data)
1176 object_array_clear(&data->wants);
1177 string_list_clear(&data->wanted_refs, 1);
1178 oid_array_clear(&data->haves);
1179 object_array_clear(&data->shallows);
1180 string_list_clear(&data->deepen_not, 0);
1181 list_objects_filter_release(&data->filter_options);
1184 static int parse_want(struct packet_writer *writer, const char *line,
1185 struct object_array *want_obj)
1188 if (skip_prefix(line, "want ", &arg)) {
1189 struct object_id oid;
1192 if (get_oid_hex(arg, &oid))
1193 die("git upload-pack: protocol error, "
1194 "expected to get oid, not '%s'", line);
1196 o = parse_object(the_repository, &oid);
1198 packet_writer_error(writer,
1199 "upload-pack: not our ref %s",
1201 die("git upload-pack: not our ref %s",
1205 if (!(o->flags & WANTED)) {
1207 add_object_array(o, NULL, want_obj);
1216 static int parse_want_ref(struct packet_writer *writer, const char *line,
1217 struct string_list *wanted_refs,
1218 struct object_array *want_obj)
1221 if (skip_prefix(line, "want-ref ", &arg)) {
1222 struct object_id oid;
1223 struct string_list_item *item;
1226 if (read_ref(arg, &oid)) {
1227 packet_writer_error(writer, "unknown ref %s", arg);
1228 die("unknown ref %s", arg);
1231 item = string_list_append(wanted_refs, arg);
1232 item->util = oiddup(&oid);
1234 o = parse_object_or_die(&oid, arg);
1235 if (!(o->flags & WANTED)) {
1237 add_object_array(o, NULL, want_obj);
1246 static int parse_have(const char *line, struct oid_array *haves)
1249 if (skip_prefix(line, "have ", &arg)) {
1250 struct object_id oid;
1252 if (get_oid_hex(arg, &oid))
1253 die("git upload-pack: expected SHA1 object, got '%s'", arg);
1254 oid_array_append(haves, &oid);
1261 static void process_args(struct packet_reader *request,
1262 struct upload_pack_data *data,
1263 struct object_array *want_obj)
1265 while (packet_reader_read(request) != PACKET_READ_FLUSH) {
1266 const char *arg = request->line;
1270 if (parse_want(&data->writer, arg, want_obj))
1272 if (allow_ref_in_want &&
1273 parse_want_ref(&data->writer, arg, &data->wanted_refs,
1276 /* process have line */
1277 if (parse_have(arg, &data->haves))
1280 /* process args like thin-pack */
1281 if (!strcmp(arg, "thin-pack")) {
1285 if (!strcmp(arg, "ofs-delta")) {
1289 if (!strcmp(arg, "no-progress")) {
1293 if (!strcmp(arg, "include-tag")) {
1294 use_include_tag = 1;
1297 if (!strcmp(arg, "done")) {
1302 /* Shallow related arguments */
1303 if (process_shallow(arg, &data->shallows))
1305 if (process_deepen(arg, &data->depth))
1307 if (process_deepen_since(arg, &data->deepen_since,
1308 &data->deepen_rev_list))
1310 if (process_deepen_not(arg, &data->deepen_not,
1311 &data->deepen_rev_list))
1313 if (!strcmp(arg, "deepen-relative")) {
1314 data->deepen_relative = 1;
1318 if (allow_filter && skip_prefix(arg, "filter ", &p)) {
1319 list_objects_filter_die_if_populated(&data->filter_options);
1320 parse_list_objects_filter(&data->filter_options, p);
1324 if ((git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
1325 allow_sideband_all) &&
1326 !strcmp(arg, "sideband-all")) {
1327 data->writer.use_sideband = 1;
1331 /* ignore unknown lines maybe? */
1332 die("unexpected line: '%s'", arg);
1336 static int process_haves(struct oid_array *haves, struct oid_array *common,
1337 struct object_array *have_obj)
1342 for (i = 0; i < haves->nr; i++) {
1343 const struct object_id *oid = &haves->oid[i];
1345 int we_knew_they_have = 0;
1347 if (!has_object_file(oid))
1350 oid_array_append(common, oid);
1352 o = parse_object(the_repository, oid);
1354 die("oops (%s)", oid_to_hex(oid));
1355 if (o->type == OBJ_COMMIT) {
1356 struct commit_list *parents;
1357 struct commit *commit = (struct commit *)o;
1358 if (o->flags & THEY_HAVE)
1359 we_knew_they_have = 1;
1361 o->flags |= THEY_HAVE;
1362 if (!oldest_have || (commit->date < oldest_have))
1363 oldest_have = commit->date;
1364 for (parents = commit->parents;
1366 parents = parents->next)
1367 parents->item->object.flags |= THEY_HAVE;
1369 if (!we_knew_they_have)
1370 add_object_array(o, NULL, have_obj);
1376 static int send_acks(struct packet_writer *writer, struct oid_array *acks,
1377 const struct object_array *have_obj,
1378 struct object_array *want_obj)
1382 packet_writer_write(writer, "acknowledgments\n");
1386 packet_writer_write(writer, "NAK\n");
1388 for (i = 0; i < acks->nr; i++) {
1389 packet_writer_write(writer, "ACK %s\n",
1390 oid_to_hex(&acks->oid[i]));
1393 if (ok_to_give_up(have_obj, want_obj)) {
1395 packet_writer_write(writer, "ready\n");
1402 static int process_haves_and_send_acks(struct upload_pack_data *data,
1403 struct object_array *have_obj,
1404 struct object_array *want_obj)
1406 struct oid_array common = OID_ARRAY_INIT;
1409 process_haves(&data->haves, &common, have_obj);
1412 } else if (send_acks(&data->writer, &common, have_obj, want_obj)) {
1413 packet_writer_delim(&data->writer);
1417 packet_writer_flush(&data->writer);
1421 oid_array_clear(&data->haves);
1422 oid_array_clear(&common);
1426 static void send_wanted_ref_info(struct upload_pack_data *data)
1428 const struct string_list_item *item;
1430 if (!data->wanted_refs.nr)
1433 packet_writer_write(&data->writer, "wanted-refs\n");
1435 for_each_string_list_item(item, &data->wanted_refs) {
1436 packet_writer_write(&data->writer, "%s %s\n",
1437 oid_to_hex(item->util),
1441 packet_writer_delim(&data->writer);
1444 static void send_shallow_info(struct upload_pack_data *data,
1445 struct object_array *want_obj)
1447 /* No shallow info needs to be sent */
1448 if (!data->depth && !data->deepen_rev_list && !data->shallows.nr &&
1449 !is_repository_shallow(the_repository))
1452 packet_writer_write(&data->writer, "shallow-info\n");
1454 if (!send_shallow_list(&data->writer, data->depth,
1455 data->deepen_rev_list,
1456 data->deepen_since, &data->deepen_not,
1457 data->deepen_relative,
1458 &data->shallows, want_obj) &&
1459 is_repository_shallow(the_repository))
1460 deepen(&data->writer, INFINITE_DEPTH, data->deepen_relative,
1461 &data->shallows, want_obj);
1467 FETCH_PROCESS_ARGS = 0,
1473 int upload_pack_v2(struct repository *r, struct argv_array *keys,
1474 struct packet_reader *request)
1476 enum fetch_state state = FETCH_PROCESS_ARGS;
1477 struct upload_pack_data data;
1478 struct object_array have_obj = OBJECT_ARRAY_INIT;
1479 struct object_array want_obj = OBJECT_ARRAY_INIT;
1481 clear_object_flags(ALL_FLAGS);
1483 git_config(upload_pack_config, NULL);
1485 upload_pack_data_init(&data);
1486 use_sideband = LARGE_PACKET_MAX;
1488 while (state != FETCH_DONE) {
1490 case FETCH_PROCESS_ARGS:
1491 process_args(request, &data, &want_obj);
1495 * Request didn't contain any 'want' lines,
1496 * guess they didn't want anything.
1499 } else if (data.haves.nr) {
1501 * Request had 'have' lines, so lets ACK them.
1503 state = FETCH_SEND_ACKS;
1506 * Request had 'want's but no 'have's so we can
1507 * immedietly go to construct and send a pack.
1509 state = FETCH_SEND_PACK;
1512 case FETCH_SEND_ACKS:
1513 if (process_haves_and_send_acks(&data, &have_obj,
1515 state = FETCH_SEND_PACK;
1519 case FETCH_SEND_PACK:
1520 send_wanted_ref_info(&data);
1521 send_shallow_info(&data, &want_obj);
1523 packet_writer_write(&data.writer, "packfile\n");
1524 create_pack_file(&have_obj, &want_obj, &data.filter_options);
1532 upload_pack_data_clear(&data);
1533 object_array_clear(&have_obj);
1534 object_array_clear(&want_obj);
1538 int upload_pack_advertise(struct repository *r,
1539 struct strbuf *value)
1542 int allow_filter_value;
1543 int allow_ref_in_want;
1544 int allow_sideband_all_value;
1546 strbuf_addstr(value, "shallow");
1548 if (!repo_config_get_bool(the_repository,
1549 "uploadpack.allowfilter",
1550 &allow_filter_value) &&
1552 strbuf_addstr(value, " filter");
1554 if (!repo_config_get_bool(the_repository,
1555 "uploadpack.allowrefinwant",
1556 &allow_ref_in_want) &&
1558 strbuf_addstr(value, " ref-in-want");
1560 if (git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
1561 (!repo_config_get_bool(the_repository,
1562 "uploadpack.allowsidebandall",
1563 &allow_sideband_all_value) &&
1564 allow_sideband_all_value))
1565 strbuf_addstr(value, " sideband-all");