11 #include "list-objects.h"
12 #include "run-command.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>"),
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;
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;
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)
71 static void send_client_data(int fd, const char *data, ssize_t sz)
74 send_sideband(1, fd, data, sz, use_sideband);
81 /* XXX: are we happy to lose stuff here? */
85 write_or_die(fd, data, sz);
88 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
91 if (graft->nr_parent == -1)
92 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
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.";
107 if (!pack_objects_hook)
108 pack_objects.git_cmd = 1;
110 argv_array_push(&pack_objects.args, pack_objects_hook);
111 argv_array_push(&pack_objects.args, "git");
112 pack_objects.use_shell = 1;
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");
122 argv_array_push(&pack_objects.args, "--thin");
124 argv_array_push(&pack_objects.args, "--stdout");
126 argv_array_push(&pack_objects.args, "--shallow");
128 argv_array_push(&pack_objects.args, "--progress");
130 argv_array_push(&pack_objects.args, "--delta-base-offset");
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");
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");
160 /* We read from pack_objects.err to capture stderr output for
161 * progress bar, and pack_objects.out to capture the pack data.
165 struct pollfd pfd[2];
166 int pe, pu, pollsize;
174 if (0 <= pack_objects.out) {
175 pfd[pollsize].fd = pack_objects.out;
176 pfd[pollsize].events = POLLIN;
180 if (0 <= pack_objects.err) {
181 pfd[pollsize].fd = pack_objects.err;
182 pfd[pollsize].events = POLLIN;
190 ret = poll(pfd, pollsize,
191 keepalive < 0 ? -1 : 1000 * keepalive);
194 if (errno != EINTR) {
195 error_errno("poll failed, resuming");
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,
207 send_client_data(2, progress, sz);
209 close(pack_objects.err);
210 pack_objects.err = -1;
214 /* give priority to status messages */
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.
233 sz = xread(pack_objects.out, cp,
234 sizeof(data) - outsz);
238 close(pack_objects.out);
239 pack_objects.out = -1;
245 buffered = data[sz-1] & 0xFF;
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
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
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.");
277 send_client_data(1, data, 1);
278 fprintf(stderr, "flushed.\n");
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)
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))
299 o = parse_object(sha1);
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;
308 o->flags |= THEY_HAVE;
309 if (!oldest_have || (commit->date < oldest_have))
310 oldest_have = commit->date;
311 for (parents = commit->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);
323 static int reachable(struct commit *want)
325 struct prio_queue work = { compare_commits_by_commit_date };
327 prio_queue_put(&work, want);
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;
336 if (!commit->object.parsed)
337 parse_object(commit->object.oid.hash);
338 if (commit->object.flags & REACHABLE)
340 commit->object.flags |= REACHABLE;
341 if (commit->date < oldest_have)
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)
362 for (i = 0; i < want_obj.nr; i++) {
363 struct object *want = want_obj.objects[i].item;
365 if (want->flags & COMMON_KNOWN)
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;
377 if (!reachable((struct commit *)want))
383 static int get_common_commits(void)
385 unsigned char sha1[20];
391 save_commit_buffer = 0;
394 char *line = packet_read_line(0, NULL);
400 if (multi_ack == 2 && got_common
401 && !got_other && ok_to_give_up()) {
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);
418 if (skip_prefix(line, "have ", &arg)) {
419 switch (got_sha1(arg, sha1)) {
420 case -1: /* they have what we do not */
422 if (multi_ack && ok_to_give_up()) {
423 const char *hex = sha1_to_hex(sha1);
424 if (multi_ack == 2) {
426 packet_write_fmt(1, "ACK %s ready\n", hex);
428 packet_write_fmt(1, "ACK %s continue\n", hex);
433 memcpy(last_hex, sha1_to_hex(sha1), 41);
435 packet_write_fmt(1, "ACK %s common\n", last_hex);
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);
444 if (!strcmp(line, "done")) {
445 if (have_obj.nr > 0) {
447 packet_write_fmt(1, "ACK %s\n", last_hex);
450 packet_write_fmt(1, "NAK\n");
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,
475 char namebuf[42]; /* ^ + SHA-1 + LF */
485 * If the next rev-list --stdin encounters an unknown commit,
486 * it terminates, which will cause SIGPIPE in the write loop
489 sigchain_push(SIGPIPE, SIG_IGN);
491 if (start_command(cmd))
496 for (i = get_max_object_index(); 0 < i; ) {
497 o = get_indexed_object(--i);
500 if (reachable && o->type == OBJ_COMMIT)
501 o->flags &= ~TMP_MARK;
504 memcpy(namebuf + 1, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
505 if (write_in_full(cmd->in, namebuf, 42) < 0)
509 for (i = 0; i < src->nr; i++) {
510 o = src->objects[i].item;
513 add_object_array(o, NULL, reachable);
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)
524 sigchain_pop(SIGPIPE);
529 sigchain_pop(SIGPIPE);
538 static int get_reachable_list(struct object_array *src,
539 struct object_array *reachable)
541 struct child_process cmd = CHILD_PROCESS_INIT;
544 char namebuf[42]; /* ^ + SHA-1 + LF */
546 if (do_reachable_revlist(&cmd, src, reachable) < 0)
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))
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;
570 if (finish_command(&cmd))
576 static int has_unreachable(struct object_array *src)
578 struct child_process cmd = CHILD_PROCESS_INIT;
582 if (do_reachable_revlist(&cmd, src, NULL) < 0)
586 * The commits out of the rev-list are not ancestors of
589 i = read_in_full(cmd.out, buf, 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))
603 /* All the non-tip ones are ancestors of what we advertised */
607 sigchain_pop(SIGPIPE);
613 static void check_non_tip(void)
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))
624 if (!has_unreachable(&want_obj))
625 /* All the non-tip ones are ancestors of what we advertised */
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;
633 die("git upload-pack: not our ref %s",
634 oid_to_hex(&o->oid));
638 static void send_shallow(struct commit_list *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);
648 result = result->next;
652 static void send_unshallow(const struct object_array *shallows)
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
670 unregister_shallow(object->oid.hash);
672 parse_commit_or_die((struct commit *)object);
673 parents = ((struct commit *)object)->parents;
675 add_object_array(&parents->item->object,
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()) {
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,
703 SHALLOW, NOT_SHALLOW);
704 send_shallow(result);
705 free_commit_list(result);
706 object_array_clear(&reachable_shallows);
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);
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);
732 static void receive_needs(void)
734 struct object_array shallows = OBJECT_ARRAY_INIT;
735 struct string_list deepen_not = STRING_LIST_INIT_DUP;
738 unsigned long deepen_since = 0;
739 int deepen_rev_list = 0;
744 const char *features;
745 unsigned char sha1_buf[20];
746 char *line = packet_read_line(0, NULL);
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);
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);
769 if (skip_prefix(line, "deepen ", &arg)) {
771 depth = strtol(arg, &end, 0);
772 if (!end || *end || depth <= 0)
773 die("Invalid deepen: %s", line);
776 if (skip_prefix(line, "deepen-since ", &arg)) {
778 deepen_since = strtoul(arg, &end, 0);
779 if (!end || *end || !deepen_since ||
780 /* revisions.c's max_age -1 is special */
782 die("Invalid deepen-since: %s", line);
786 if (skip_prefix(line, "deepen-not ", &arg)) {
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);
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);
803 if (parse_feature_request(features, "deepen-relative"))
805 if (parse_feature_request(features, "multi_ack_detailed"))
807 else if (parse_feature_request(features, "multi_ack"))
809 if (parse_feature_request(features, "no-done"))
811 if (parse_feature_request(features, "thin-pack"))
813 if (parse_feature_request(features, "ofs-delta"))
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"))
821 if (parse_feature_request(features, "include-tag"))
824 o = parse_object(sha1_buf);
826 die("git upload-pack: not our ref %s",
827 sha1_to_hex(sha1_buf));
828 if (!(o->flags & WANTED)) {
830 if (!((allow_unadvertised_object_request & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1
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.
847 if (!use_sideband && daemon_mode)
850 if (depth == 0 && !deepen_rev_list && shallows.nr == 0)
852 if (depth > 0 && deepen_rev_list)
853 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
855 deepen(depth, deepen_relative, &shallows);
856 else if (deepen_rev_list) {
857 struct argv_array av = ARGV_ARRAY_INIT;
860 argv_array_push(&av, "rev-list");
862 argv_array_pushf(&av, "--max-age=%lu", deepen_since);
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);
879 if (shallows.nr > 0) {
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;
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);
912 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
914 struct string_list_item *item;
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))
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,
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" : "",
947 git_user_agent_sanitized());
948 strbuf_release(&symref_info);
950 packet_write_fmt(1, "%s %s\n", oid_to_hex(oid), refname_nons);
953 if (!peel_ref(refname, peeled.hash))
954 packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
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)
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);
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) {
983 head_ref_namespaced(send_ref, &symref);
984 for_each_namespaced_ref(send_ref, &symref);
985 advertise_shallow_grafts(1);
988 head_ref_namespaced(check_ref, NULL);
989 for_each_namespaced_ref(check_ref, NULL);
991 string_list_clear(&symref, 1);
997 get_common_commits();
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;
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;
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;
1018 allow_unadvertised_object_request &= ~ALLOW_ANY_SHA1;
1019 } else if (!strcmp("uploadpack.keepalive", var)) {
1020 keepalive = git_config_int(var, value);
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)
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")),
1046 packet_trace_identity("upload-pack");
1047 check_replace_refs = 0;
1049 argc = parse_options(argc, argv, NULL, options, upload_pack_usage, 0);
1052 usage_with_options(upload_pack_usage, options);
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);