tgupdate: merge t/projlist-cache/caching base into t/projlist-cache/caching
[git/gitweb.git] / upload-pack.c
blob7597ba3405e161d59608e18ec580946c60f9e6d2
1 #include "cache.h"
2 #include "refs.h"
3 #include "pkt-line.h"
4 #include "sideband.h"
5 #include "tag.h"
6 #include "object.h"
7 #include "commit.h"
8 #include "exec_cmd.h"
9 #include "diff.h"
10 #include "revision.h"
11 #include "list-objects.h"
12 #include "run-command.h"
13 #include "connect.h"
14 #include "sigchain.h"
15 #include "version.h"
16 #include "string-list.h"
17 #include "parse-options.h"
18 #include "argv-array.h"
19 #include "prio-queue.h"
21 static const char * const upload_pack_usage[] = {
22 N_("git upload-pack [<options>] <dir>"),
23 NULL
26 /* Remember to update object flag allocation in object.h */
27 #define THEY_HAVE (1u << 11)
28 #define OUR_REF (1u << 12)
29 #define WANTED (1u << 13)
30 #define COMMON_KNOWN (1u << 14)
31 #define REACHABLE (1u << 15)
33 #define SHALLOW (1u << 16)
34 #define NOT_SHALLOW (1u << 17)
35 #define CLIENT_SHALLOW (1u << 18)
36 #define HIDDEN_REF (1u << 19)
38 static unsigned long oldest_have;
40 static int deepen_relative;
41 static int multi_ack;
42 static int no_done;
43 static int use_thin_pack, use_ofs_delta, use_include_tag;
44 static int no_progress, daemon_mode;
45 /* Allow specifying sha1 if it is a ref tip. */
46 #define ALLOW_TIP_SHA1 01
47 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
48 #define ALLOW_REACHABLE_SHA1 02
49 /* Allow request of any sha1. Implies ALLOW_TIP_SHA1 and ALLOW_REACHABLE_SHA1. */
50 #define ALLOW_ANY_SHA1 07
51 static unsigned int allow_unadvertised_object_request;
52 static int shallow_nr;
53 static struct object_array have_obj;
54 static struct object_array want_obj;
55 static struct object_array extra_edge_obj;
56 static unsigned int timeout;
57 static int keepalive = 5;
58 /* 0 for no sideband,
59 * otherwise maximum packet size (up to 65520 bytes).
61 static int use_sideband;
62 static int advertise_refs;
63 static int stateless_rpc;
64 static const char *pack_objects_hook;
66 static void reset_timeout(void)
68 alarm(timeout);
71 static void send_client_data(int fd, const char *data, ssize_t sz)
73 if (use_sideband) {
74 send_sideband(1, fd, data, sz, use_sideband);
75 return;
77 if (fd == 3)
78 /* emergency quit */
79 fd = 2;
80 if (fd == 2) {
81 /* XXX: are we happy to lose stuff here? */
82 xwrite(fd, data, sz);
83 return;
85 write_or_die(fd, data, sz);
88 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
90 FILE *fp = cb_data;
91 if (graft->nr_parent == -1)
92 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
93 return 0;
96 static void create_pack_file(void)
98 struct child_process pack_objects = CHILD_PROCESS_INIT;
99 char data[8193], progress[128];
100 char abort_msg[] = "aborting due to possible repository "
101 "corruption on the remote side.";
102 int buffered = -1;
103 ssize_t sz;
104 int i;
105 FILE *pipe_fd;
107 if (!pack_objects_hook)
108 pack_objects.git_cmd = 1;
109 else {
110 argv_array_push(&pack_objects.args, pack_objects_hook);
111 argv_array_push(&pack_objects.args, "git");
112 pack_objects.use_shell = 1;
115 if (shallow_nr) {
116 argv_array_push(&pack_objects.args, "--shallow-file");
117 argv_array_push(&pack_objects.args, "");
119 argv_array_push(&pack_objects.args, "pack-objects");
120 argv_array_push(&pack_objects.args, "--revs");
121 if (use_thin_pack)
122 argv_array_push(&pack_objects.args, "--thin");
124 argv_array_push(&pack_objects.args, "--stdout");
125 if (shallow_nr)
126 argv_array_push(&pack_objects.args, "--shallow");
127 if (!no_progress)
128 argv_array_push(&pack_objects.args, "--progress");
129 if (use_ofs_delta)
130 argv_array_push(&pack_objects.args, "--delta-base-offset");
131 if (use_include_tag)
132 argv_array_push(&pack_objects.args, "--include-tag");
134 pack_objects.in = -1;
135 pack_objects.out = -1;
136 pack_objects.err = -1;
138 if (start_command(&pack_objects))
139 die("git upload-pack: unable to fork git-pack-objects");
141 pipe_fd = xfdopen(pack_objects.in, "w");
143 if (shallow_nr)
144 for_each_commit_graft(write_one_shallow, pipe_fd);
146 for (i = 0; i < want_obj.nr; i++)
147 fprintf(pipe_fd, "%s\n",
148 oid_to_hex(&want_obj.objects[i].item->oid));
149 fprintf(pipe_fd, "--not\n");
150 for (i = 0; i < have_obj.nr; i++)
151 fprintf(pipe_fd, "%s\n",
152 oid_to_hex(&have_obj.objects[i].item->oid));
153 for (i = 0; i < extra_edge_obj.nr; i++)
154 fprintf(pipe_fd, "%s\n",
155 oid_to_hex(&extra_edge_obj.objects[i].item->oid));
156 fprintf(pipe_fd, "\n");
157 fflush(pipe_fd);
158 fclose(pipe_fd);
160 /* We read from pack_objects.err to capture stderr output for
161 * progress bar, and pack_objects.out to capture the pack data.
164 while (1) {
165 struct pollfd pfd[2];
166 int pe, pu, pollsize;
167 int ret;
169 reset_timeout();
171 pollsize = 0;
172 pe = pu = -1;
174 if (0 <= pack_objects.out) {
175 pfd[pollsize].fd = pack_objects.out;
176 pfd[pollsize].events = POLLIN;
177 pu = pollsize;
178 pollsize++;
180 if (0 <= pack_objects.err) {
181 pfd[pollsize].fd = pack_objects.err;
182 pfd[pollsize].events = POLLIN;
183 pe = pollsize;
184 pollsize++;
187 if (!pollsize)
188 break;
190 ret = poll(pfd, pollsize,
191 keepalive < 0 ? -1 : 1000 * keepalive);
193 if (ret < 0) {
194 if (errno != EINTR) {
195 error_errno("poll failed, resuming");
196 sleep(1);
198 continue;
200 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
201 /* Status ready; we ship that in the side-band
202 * or dump to the standard error.
204 sz = xread(pack_objects.err, progress,
205 sizeof(progress));
206 if (0 < sz)
207 send_client_data(2, progress, sz);
208 else if (sz == 0) {
209 close(pack_objects.err);
210 pack_objects.err = -1;
212 else
213 goto fail;
214 /* give priority to status messages */
215 continue;
217 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
218 /* Data ready; we keep the last byte to ourselves
219 * in case we detect broken rev-list, so that we
220 * can leave the stream corrupted. This is
221 * unfortunate -- unpack-objects would happily
222 * accept a valid packdata with trailing garbage,
223 * so appending garbage after we pass all the
224 * pack data is not good enough to signal
225 * breakage to downstream.
227 char *cp = data;
228 ssize_t outsz = 0;
229 if (0 <= buffered) {
230 *cp++ = buffered;
231 outsz++;
233 sz = xread(pack_objects.out, cp,
234 sizeof(data) - outsz);
235 if (0 < sz)
237 else if (sz == 0) {
238 close(pack_objects.out);
239 pack_objects.out = -1;
241 else
242 goto fail;
243 sz += outsz;
244 if (1 < sz) {
245 buffered = data[sz-1] & 0xFF;
246 sz--;
248 else
249 buffered = -1;
250 send_client_data(1, data, sz);
254 * We hit the keepalive timeout without saying anything; send
255 * an empty message on the data sideband just to let the other
256 * side know we're still working on it, but don't have any data
257 * yet.
259 * If we don't have a sideband channel, there's no room in the
260 * protocol to say anything, so those clients are just out of
261 * luck.
263 if (!ret && use_sideband) {
264 static const char buf[] = "0005\1";
265 write_or_die(1, buf, 5);
269 if (finish_command(&pack_objects)) {
270 error("git upload-pack: git-pack-objects died with error.");
271 goto fail;
274 /* flush the data */
275 if (0 <= buffered) {
276 data[0] = buffered;
277 send_client_data(1, data, 1);
278 fprintf(stderr, "flushed.\n");
280 if (use_sideband)
281 packet_flush(1);
282 return;
284 fail:
285 send_client_data(3, abort_msg, sizeof(abort_msg));
286 die("git upload-pack: %s", abort_msg);
289 static int got_sha1(const char *hex, unsigned char *sha1)
291 struct object *o;
292 int we_knew_they_have = 0;
294 if (get_sha1_hex(hex, sha1))
295 die("git upload-pack: expected SHA1 object, got '%s'", hex);
296 if (!has_sha1_file(sha1))
297 return -1;
299 o = parse_object(sha1);
300 if (!o)
301 die("oops (%s)", sha1_to_hex(sha1));
302 if (o->type == OBJ_COMMIT) {
303 struct commit_list *parents;
304 struct commit *commit = (struct commit *)o;
305 if (o->flags & THEY_HAVE)
306 we_knew_they_have = 1;
307 else
308 o->flags |= THEY_HAVE;
309 if (!oldest_have || (commit->date < oldest_have))
310 oldest_have = commit->date;
311 for (parents = commit->parents;
312 parents;
313 parents = parents->next)
314 parents->item->object.flags |= THEY_HAVE;
316 if (!we_knew_they_have) {
317 add_object_array(o, NULL, &have_obj);
318 return 1;
320 return 0;
323 static int reachable(struct commit *want)
325 struct prio_queue work = { compare_commits_by_commit_date };
327 prio_queue_put(&work, want);
328 while (work.nr) {
329 struct commit_list *list;
330 struct commit *commit = prio_queue_get(&work);
332 if (commit->object.flags & THEY_HAVE) {
333 want->object.flags |= COMMON_KNOWN;
334 break;
336 if (!commit->object.parsed)
337 parse_object(commit->object.oid.hash);
338 if (commit->object.flags & REACHABLE)
339 continue;
340 commit->object.flags |= REACHABLE;
341 if (commit->date < oldest_have)
342 continue;
343 for (list = commit->parents; list; list = list->next) {
344 struct commit *parent = list->item;
345 if (!(parent->object.flags & REACHABLE))
346 prio_queue_put(&work, parent);
349 want->object.flags |= REACHABLE;
350 clear_commit_marks(want, REACHABLE);
351 clear_prio_queue(&work);
352 return (want->object.flags & COMMON_KNOWN);
355 static int ok_to_give_up(void)
357 int i;
359 if (!have_obj.nr)
360 return 0;
362 for (i = 0; i < want_obj.nr; i++) {
363 struct object *want = want_obj.objects[i].item;
365 if (want->flags & COMMON_KNOWN)
366 continue;
367 want = deref_tag(want, "a want line", 0);
368 if (!want || want->type != OBJ_COMMIT) {
369 /* no way to tell if this is reachable by
370 * looking at the ancestry chain alone, so
371 * leave a note to ourselves not to worry about
372 * this object anymore.
374 want_obj.objects[i].item->flags |= COMMON_KNOWN;
375 continue;
377 if (!reachable((struct commit *)want))
378 return 0;
380 return 1;
383 static int get_common_commits(void)
385 unsigned char sha1[20];
386 char last_hex[41];
387 int got_common = 0;
388 int got_other = 0;
389 int sent_ready = 0;
391 save_commit_buffer = 0;
393 for (;;) {
394 char *line = packet_read_line(0, NULL);
395 const char *arg;
397 reset_timeout();
399 if (!line) {
400 if (multi_ack == 2 && got_common
401 && !got_other && ok_to_give_up()) {
402 sent_ready = 1;
403 packet_write_fmt(1, "ACK %s ready\n", last_hex);
405 if (have_obj.nr == 0 || multi_ack)
406 packet_write_fmt(1, "NAK\n");
408 if (no_done && sent_ready) {
409 packet_write_fmt(1, "ACK %s\n", last_hex);
410 return 0;
412 if (stateless_rpc)
413 exit(0);
414 got_common = 0;
415 got_other = 0;
416 continue;
418 if (skip_prefix(line, "have ", &arg)) {
419 switch (got_sha1(arg, sha1)) {
420 case -1: /* they have what we do not */
421 got_other = 1;
422 if (multi_ack && ok_to_give_up()) {
423 const char *hex = sha1_to_hex(sha1);
424 if (multi_ack == 2) {
425 sent_ready = 1;
426 packet_write_fmt(1, "ACK %s ready\n", hex);
427 } else
428 packet_write_fmt(1, "ACK %s continue\n", hex);
430 break;
431 default:
432 got_common = 1;
433 memcpy(last_hex, sha1_to_hex(sha1), 41);
434 if (multi_ack == 2)
435 packet_write_fmt(1, "ACK %s common\n", last_hex);
436 else if (multi_ack)
437 packet_write_fmt(1, "ACK %s continue\n", last_hex);
438 else if (have_obj.nr == 1)
439 packet_write_fmt(1, "ACK %s\n", last_hex);
440 break;
442 continue;
444 if (!strcmp(line, "done")) {
445 if (have_obj.nr > 0) {
446 if (multi_ack)
447 packet_write_fmt(1, "ACK %s\n", last_hex);
448 return 0;
450 packet_write_fmt(1, "NAK\n");
451 return -1;
453 die("git upload-pack: expected SHA1 list, got '%s'", line);
457 static int is_our_ref(struct object *o)
459 int allow_hidden_ref = (allow_unadvertised_object_request &
460 (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
461 return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
465 * on successful case, it's up to the caller to close cmd->out
467 static int do_reachable_revlist(struct child_process *cmd,
468 struct object_array *src,
469 struct object_array *reachable)
471 static const char *argv[] = {
472 "rev-list", "--stdin", NULL,
474 struct object *o;
475 char namebuf[42]; /* ^ + SHA-1 + LF */
476 int i;
478 cmd->argv = argv;
479 cmd->git_cmd = 1;
480 cmd->no_stderr = 1;
481 cmd->in = -1;
482 cmd->out = -1;
485 * If the next rev-list --stdin encounters an unknown commit,
486 * it terminates, which will cause SIGPIPE in the write loop
487 * below.
489 sigchain_push(SIGPIPE, SIG_IGN);
491 if (start_command(cmd))
492 goto error;
494 namebuf[0] = '^';
495 namebuf[41] = '\n';
496 for (i = get_max_object_index(); 0 < i; ) {
497 o = get_indexed_object(--i);
498 if (!o)
499 continue;
500 if (reachable && o->type == OBJ_COMMIT)
501 o->flags &= ~TMP_MARK;
502 if (!is_our_ref(o))
503 continue;
504 memcpy(namebuf + 1, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
505 if (write_in_full(cmd->in, namebuf, 42) < 0)
506 goto error;
508 namebuf[40] = '\n';
509 for (i = 0; i < src->nr; i++) {
510 o = src->objects[i].item;
511 if (is_our_ref(o)) {
512 if (reachable)
513 add_object_array(o, NULL, reachable);
514 continue;
516 if (reachable && o->type == OBJ_COMMIT)
517 o->flags |= TMP_MARK;
518 memcpy(namebuf, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
519 if (write_in_full(cmd->in, namebuf, 41) < 0)
520 goto error;
522 close(cmd->in);
523 cmd->in = -1;
524 sigchain_pop(SIGPIPE);
526 return 0;
528 error:
529 sigchain_pop(SIGPIPE);
531 if (cmd->in >= 0)
532 close(cmd->in);
533 if (cmd->out >= 0)
534 close(cmd->out);
535 return -1;
538 static int get_reachable_list(struct object_array *src,
539 struct object_array *reachable)
541 struct child_process cmd = CHILD_PROCESS_INIT;
542 int i;
543 struct object *o;
544 char namebuf[42]; /* ^ + SHA-1 + LF */
546 if (do_reachable_revlist(&cmd, src, reachable) < 0)
547 return -1;
549 while ((i = read_in_full(cmd.out, namebuf, 41)) == 41) {
550 struct object_id sha1;
552 if (namebuf[40] != '\n' || get_oid_hex(namebuf, &sha1))
553 break;
555 o = lookup_object(sha1.hash);
556 if (o && o->type == OBJ_COMMIT) {
557 o->flags &= ~TMP_MARK;
560 for (i = get_max_object_index(); 0 < i; i--) {
561 o = get_indexed_object(i - 1);
562 if (o && o->type == OBJ_COMMIT &&
563 (o->flags & TMP_MARK)) {
564 add_object_array(o, NULL, reachable);
565 o->flags &= ~TMP_MARK;
568 close(cmd.out);
570 if (finish_command(&cmd))
571 return -1;
573 return 0;
576 static int has_unreachable(struct object_array *src)
578 struct child_process cmd = CHILD_PROCESS_INIT;
579 char buf[1];
580 int i;
582 if (do_reachable_revlist(&cmd, src, NULL) < 0)
583 return 1;
586 * The commits out of the rev-list are not ancestors of
587 * our ref.
589 i = read_in_full(cmd.out, buf, 1);
590 if (i)
591 goto error;
592 close(cmd.out);
593 cmd.out = -1;
596 * rev-list may have died by encountering a bad commit
597 * in the history, in which case we do want to bail out
598 * even when it showed no commit.
600 if (finish_command(&cmd))
601 goto error;
603 /* All the non-tip ones are ancestors of what we advertised */
604 return 0;
606 error:
607 sigchain_pop(SIGPIPE);
608 if (cmd.out >= 0)
609 close(cmd.out);
610 return 1;
613 static void check_non_tip(void)
615 int i;
618 * In the normal in-process case without
619 * uploadpack.allowReachableSHA1InWant,
620 * non-tip requests can never happen.
622 if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
623 goto error;
624 if (!has_unreachable(&want_obj))
625 /* All the non-tip ones are ancestors of what we advertised */
626 return;
628 error:
629 /* Pick one of them (we know there at least is one) */
630 for (i = 0; i < want_obj.nr; i++) {
631 struct object *o = want_obj.objects[i].item;
632 if (!is_our_ref(o))
633 die("git upload-pack: not our ref %s",
634 oid_to_hex(&o->oid));
638 static void send_shallow(struct commit_list *result)
640 while (result) {
641 struct object *object = &result->item->object;
642 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
643 packet_write_fmt(1, "shallow %s",
644 oid_to_hex(&object->oid));
645 register_shallow(object->oid.hash);
646 shallow_nr++;
648 result = result->next;
652 static void send_unshallow(const struct object_array *shallows)
654 int i;
656 for (i = 0; i < shallows->nr; i++) {
657 struct object *object = shallows->objects[i].item;
658 if (object->flags & NOT_SHALLOW) {
659 struct commit_list *parents;
660 packet_write_fmt(1, "unshallow %s",
661 oid_to_hex(&object->oid));
662 object->flags &= ~CLIENT_SHALLOW;
664 * We want to _register_ "object" as shallow, but we
665 * also need to traverse object's parents to deepen a
666 * shallow clone. Unregister it for now so we can
667 * parse and add the parents to the want list, then
668 * re-register it.
670 unregister_shallow(object->oid.hash);
671 object->parsed = 0;
672 parse_commit_or_die((struct commit *)object);
673 parents = ((struct commit *)object)->parents;
674 while (parents) {
675 add_object_array(&parents->item->object,
676 NULL, &want_obj);
677 parents = parents->next;
679 add_object_array(object, NULL, &extra_edge_obj);
681 /* make sure commit traversal conforms to client */
682 register_shallow(object->oid.hash);
686 static void deepen(int depth, int deepen_relative,
687 struct object_array *shallows)
689 if (depth == INFINITE_DEPTH && !is_repository_shallow()) {
690 int i;
692 for (i = 0; i < shallows->nr; i++) {
693 struct object *object = shallows->objects[i].item;
694 object->flags |= NOT_SHALLOW;
696 } else if (deepen_relative) {
697 struct object_array reachable_shallows = OBJECT_ARRAY_INIT;
698 struct commit_list *result;
700 get_reachable_list(shallows, &reachable_shallows);
701 result = get_shallow_commits(&reachable_shallows,
702 depth + 1,
703 SHALLOW, NOT_SHALLOW);
704 send_shallow(result);
705 free_commit_list(result);
706 object_array_clear(&reachable_shallows);
707 } else {
708 struct commit_list *result;
710 result = get_shallow_commits(&want_obj, depth,
711 SHALLOW, NOT_SHALLOW);
712 send_shallow(result);
713 free_commit_list(result);
716 send_unshallow(shallows);
717 packet_flush(1);
720 static void deepen_by_rev_list(int ac, const char **av,
721 struct object_array *shallows)
723 struct commit_list *result;
725 result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW);
726 send_shallow(result);
727 free_commit_list(result);
728 send_unshallow(shallows);
729 packet_flush(1);
732 static void receive_needs(void)
734 struct object_array shallows = OBJECT_ARRAY_INIT;
735 struct string_list deepen_not = STRING_LIST_INIT_DUP;
736 int depth = 0;
737 int has_non_tip = 0;
738 unsigned long deepen_since = 0;
739 int deepen_rev_list = 0;
741 shallow_nr = 0;
742 for (;;) {
743 struct object *o;
744 const char *features;
745 unsigned char sha1_buf[20];
746 char *line = packet_read_line(0, NULL);
747 const char *arg;
749 reset_timeout();
750 if (!line)
751 break;
753 if (skip_prefix(line, "shallow ", &arg)) {
754 unsigned char sha1[20];
755 struct object *object;
756 if (get_sha1_hex(arg, sha1))
757 die("invalid shallow line: %s", line);
758 object = parse_object(sha1);
759 if (!object)
760 continue;
761 if (object->type != OBJ_COMMIT)
762 die("invalid shallow object %s", sha1_to_hex(sha1));
763 if (!(object->flags & CLIENT_SHALLOW)) {
764 object->flags |= CLIENT_SHALLOW;
765 add_object_array(object, NULL, &shallows);
767 continue;
769 if (skip_prefix(line, "deepen ", &arg)) {
770 char *end = NULL;
771 depth = strtol(arg, &end, 0);
772 if (!end || *end || depth <= 0)
773 die("Invalid deepen: %s", line);
774 continue;
776 if (skip_prefix(line, "deepen-since ", &arg)) {
777 char *end = NULL;
778 deepen_since = strtoul(arg, &end, 0);
779 if (!end || *end || !deepen_since ||
780 /* revisions.c's max_age -1 is special */
781 deepen_since == -1)
782 die("Invalid deepen-since: %s", line);
783 deepen_rev_list = 1;
784 continue;
786 if (skip_prefix(line, "deepen-not ", &arg)) {
787 char *ref = NULL;
788 unsigned char sha1[20];
789 if (expand_ref(arg, strlen(arg), sha1, &ref) != 1)
790 die("git upload-pack: ambiguous deepen-not: %s", line);
791 string_list_append(&deepen_not, ref);
792 free(ref);
793 deepen_rev_list = 1;
794 continue;
796 if (!skip_prefix(line, "want ", &arg) ||
797 get_sha1_hex(arg, sha1_buf))
798 die("git upload-pack: protocol error, "
799 "expected to get sha, not '%s'", line);
801 features = arg + 40;
803 if (parse_feature_request(features, "deepen-relative"))
804 deepen_relative = 1;
805 if (parse_feature_request(features, "multi_ack_detailed"))
806 multi_ack = 2;
807 else if (parse_feature_request(features, "multi_ack"))
808 multi_ack = 1;
809 if (parse_feature_request(features, "no-done"))
810 no_done = 1;
811 if (parse_feature_request(features, "thin-pack"))
812 use_thin_pack = 1;
813 if (parse_feature_request(features, "ofs-delta"))
814 use_ofs_delta = 1;
815 if (parse_feature_request(features, "side-band-64k"))
816 use_sideband = LARGE_PACKET_MAX;
817 else if (parse_feature_request(features, "side-band"))
818 use_sideband = DEFAULT_PACKET_MAX;
819 if (parse_feature_request(features, "no-progress"))
820 no_progress = 1;
821 if (parse_feature_request(features, "include-tag"))
822 use_include_tag = 1;
824 o = parse_object(sha1_buf);
825 if (!o)
826 die("git upload-pack: not our ref %s",
827 sha1_to_hex(sha1_buf));
828 if (!(o->flags & WANTED)) {
829 o->flags |= WANTED;
830 if (!((allow_unadvertised_object_request & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1
831 || is_our_ref(o)))
832 has_non_tip = 1;
833 add_object_array(o, NULL, &want_obj);
838 * We have sent all our refs already, and the other end
839 * should have chosen out of them. When we are operating
840 * in the stateless RPC mode, however, their choice may
841 * have been based on the set of older refs advertised
842 * by another process that handled the initial request.
844 if (has_non_tip)
845 check_non_tip();
847 if (!use_sideband && daemon_mode)
848 no_progress = 1;
850 if (depth == 0 && !deepen_rev_list && shallows.nr == 0)
851 return;
852 if (depth > 0 && deepen_rev_list)
853 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
854 if (depth > 0)
855 deepen(depth, deepen_relative, &shallows);
856 else if (deepen_rev_list) {
857 struct argv_array av = ARGV_ARRAY_INIT;
858 int i;
860 argv_array_push(&av, "rev-list");
861 if (deepen_since)
862 argv_array_pushf(&av, "--max-age=%lu", deepen_since);
863 if (deepen_not.nr) {
864 argv_array_push(&av, "--not");
865 for (i = 0; i < deepen_not.nr; i++) {
866 struct string_list_item *s = deepen_not.items + i;
867 argv_array_push(&av, s->string);
869 argv_array_push(&av, "--not");
871 for (i = 0; i < want_obj.nr; i++) {
872 struct object *o = want_obj.objects[i].item;
873 argv_array_push(&av, oid_to_hex(&o->oid));
875 deepen_by_rev_list(av.argc, av.argv, &shallows);
876 argv_array_clear(&av);
878 else
879 if (shallows.nr > 0) {
880 int i;
881 for (i = 0; i < shallows.nr; i++)
882 register_shallow(shallows.objects[i].item->oid.hash);
885 shallow_nr += shallows.nr;
886 free(shallows.objects);
889 /* return non-zero if the ref is hidden, otherwise 0 */
890 static int mark_our_ref(const char *refname, const char *refname_full,
891 const struct object_id *oid)
893 struct object *o = lookup_unknown_object(oid->hash);
895 if (ref_is_hidden(refname, refname_full)) {
896 o->flags |= HIDDEN_REF;
897 return 1;
899 o->flags |= OUR_REF;
900 return 0;
903 static int check_ref(const char *refname_full, const struct object_id *oid,
904 int flag, void *cb_data)
906 const char *refname = strip_namespace(refname_full);
908 mark_our_ref(refname, refname_full, oid);
909 return 0;
912 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
914 struct string_list_item *item;
916 if (!symref->nr)
917 return;
918 for_each_string_list_item(item, symref)
919 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
922 static int send_ref(const char *refname, const struct object_id *oid,
923 int flag, void *cb_data)
925 static const char *capabilities = "multi_ack thin-pack side-band"
926 " side-band-64k ofs-delta shallow deepen-since deepen-not"
927 " deepen-relative no-progress include-tag multi_ack_detailed";
928 const char *refname_nons = strip_namespace(refname);
929 struct object_id peeled;
931 if (mark_our_ref(refname_nons, refname, oid))
932 return 0;
934 if (capabilities) {
935 struct strbuf symref_info = STRBUF_INIT;
937 format_symref_info(&symref_info, cb_data);
938 packet_write_fmt(1, "%s %s%c%s%s%s%s%s agent=%s\n",
939 oid_to_hex(oid), refname_nons,
940 0, capabilities,
941 (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
942 " allow-tip-sha1-in-want" : "",
943 (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
944 " allow-reachable-sha1-in-want" : "",
945 stateless_rpc ? " no-done" : "",
946 symref_info.buf,
947 git_user_agent_sanitized());
948 strbuf_release(&symref_info);
949 } else {
950 packet_write_fmt(1, "%s %s\n", oid_to_hex(oid), refname_nons);
952 capabilities = NULL;
953 if (!peel_ref(refname, peeled.hash))
954 packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
955 return 0;
958 static int find_symref(const char *refname, const struct object_id *oid,
959 int flag, void *cb_data)
961 const char *symref_target;
962 struct string_list_item *item;
963 struct object_id unused;
965 if ((flag & REF_ISSYMREF) == 0)
966 return 0;
967 symref_target = resolve_ref_unsafe(refname, 0, unused.hash, &flag);
968 if (!symref_target || (flag & REF_ISSYMREF) == 0)
969 die("'%s' is a symref but it is not?", refname);
970 item = string_list_append(cb_data, refname);
971 item->util = xstrdup(symref_target);
972 return 0;
975 static void upload_pack(void)
977 struct string_list symref = STRING_LIST_INIT_DUP;
979 head_ref_namespaced(find_symref, &symref);
981 if (advertise_refs || !stateless_rpc) {
982 reset_timeout();
983 head_ref_namespaced(send_ref, &symref);
984 for_each_namespaced_ref(send_ref, &symref);
985 advertise_shallow_grafts(1);
986 packet_flush(1);
987 } else {
988 head_ref_namespaced(check_ref, NULL);
989 for_each_namespaced_ref(check_ref, NULL);
991 string_list_clear(&symref, 1);
992 if (advertise_refs)
993 return;
995 receive_needs();
996 if (want_obj.nr) {
997 get_common_commits();
998 create_pack_file();
1002 static int upload_pack_config(const char *var, const char *value, void *unused)
1004 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
1005 if (git_config_bool(var, value))
1006 allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
1007 else
1008 allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
1009 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
1010 if (git_config_bool(var, value))
1011 allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
1012 else
1013 allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
1014 } else if (!strcmp("uploadpack.allowanysha1inwant", var)) {
1015 if (git_config_bool(var, value))
1016 allow_unadvertised_object_request |= ALLOW_ANY_SHA1;
1017 else
1018 allow_unadvertised_object_request &= ~ALLOW_ANY_SHA1;
1019 } else if (!strcmp("uploadpack.keepalive", var)) {
1020 keepalive = git_config_int(var, value);
1021 if (!keepalive)
1022 keepalive = -1;
1023 } else if (current_config_scope() != CONFIG_SCOPE_REPO) {
1024 if (!strcmp("uploadpack.packobjectshook", var))
1025 return git_config_string(&pack_objects_hook, var, value);
1027 return parse_hide_refs_config(var, value, "uploadpack");
1030 int cmd_main(int argc, const char **argv)
1032 const char *dir;
1033 int strict = 0;
1034 struct option options[] = {
1035 OPT_BOOL(0, "stateless-rpc", &stateless_rpc,
1036 N_("quit after a single request/response exchange")),
1037 OPT_BOOL(0, "advertise-refs", &advertise_refs,
1038 N_("exit immediately after initial ref advertisement")),
1039 OPT_BOOL(0, "strict", &strict,
1040 N_("do not try <directory>/.git/ if <directory> is no Git directory")),
1041 OPT_INTEGER(0, "timeout", &timeout,
1042 N_("interrupt transfer after <n> seconds of inactivity")),
1043 OPT_END()
1046 packet_trace_identity("upload-pack");
1047 check_replace_refs = 0;
1049 argc = parse_options(argc, argv, NULL, options, upload_pack_usage, 0);
1051 if (argc != 1)
1052 usage_with_options(upload_pack_usage, options);
1054 if (timeout)
1055 daemon_mode = 1;
1057 setup_path();
1059 dir = argv[0];
1061 if (!enter_repo(dir, strict))
1062 die("'%s' does not appear to be a git repository", dir);
1064 git_config(upload_pack_config, NULL);
1065 upload_pack();
1066 return 0;