pull.sh: quote $upload_pack when passing it to git-fetch
[git.git] / upload-pack.c
blob640eae1bbe7e3837bd06b8b5675299f29f7e6021
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"
18 static const char upload_pack_usage[] = "git upload-pack [--strict] [--timeout=<n>] <dir>";
20 /* Remember to update object flag allocation in object.h */
21 #define THEY_HAVE (1u << 11)
22 #define OUR_REF (1u << 12)
23 #define WANTED (1u << 13)
24 #define COMMON_KNOWN (1u << 14)
25 #define REACHABLE (1u << 15)
27 #define SHALLOW (1u << 16)
28 #define NOT_SHALLOW (1u << 17)
29 #define CLIENT_SHALLOW (1u << 18)
30 #define HIDDEN_REF (1u << 19)
32 static unsigned long oldest_have;
34 static int multi_ack;
35 static int no_done;
36 static int use_thin_pack, use_ofs_delta, use_include_tag;
37 static int no_progress, daemon_mode;
38 /* Allow specifying sha1 if it is a ref tip. */
39 #define ALLOW_TIP_SHA1 01
40 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
41 #define ALLOW_REACHABLE_SHA1 02
42 static unsigned int allow_unadvertised_object_request;
43 static int shallow_nr;
44 static struct object_array have_obj;
45 static struct object_array want_obj;
46 static struct object_array extra_edge_obj;
47 static unsigned int timeout;
48 static int keepalive = 5;
49 /* 0 for no sideband,
50 * otherwise maximum packet size (up to 65520 bytes).
52 static int use_sideband;
53 static int advertise_refs;
54 static int stateless_rpc;
56 static void reset_timeout(void)
58 alarm(timeout);
61 static ssize_t send_client_data(int fd, const char *data, ssize_t sz)
63 if (use_sideband)
64 return send_sideband(1, fd, data, sz, use_sideband);
65 if (fd == 3)
66 /* emergency quit */
67 fd = 2;
68 if (fd == 2) {
69 /* XXX: are we happy to lose stuff here? */
70 xwrite(fd, data, sz);
71 return sz;
73 write_or_die(fd, data, sz);
74 return sz;
77 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
79 FILE *fp = cb_data;
80 if (graft->nr_parent == -1)
81 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
82 return 0;
85 static void create_pack_file(void)
87 struct child_process pack_objects = CHILD_PROCESS_INIT;
88 char data[8193], progress[128];
89 char abort_msg[] = "aborting due to possible repository "
90 "corruption on the remote side.";
91 int buffered = -1;
92 ssize_t sz;
93 const char *argv[13];
94 int i, arg = 0;
95 FILE *pipe_fd;
97 if (shallow_nr) {
98 argv[arg++] = "--shallow-file";
99 argv[arg++] = "";
101 argv[arg++] = "pack-objects";
102 argv[arg++] = "--revs";
103 if (use_thin_pack)
104 argv[arg++] = "--thin";
106 argv[arg++] = "--stdout";
107 if (shallow_nr)
108 argv[arg++] = "--shallow";
109 if (!no_progress)
110 argv[arg++] = "--progress";
111 if (use_ofs_delta)
112 argv[arg++] = "--delta-base-offset";
113 if (use_include_tag)
114 argv[arg++] = "--include-tag";
115 argv[arg++] = NULL;
117 pack_objects.in = -1;
118 pack_objects.out = -1;
119 pack_objects.err = -1;
120 pack_objects.git_cmd = 1;
121 pack_objects.argv = argv;
123 if (start_command(&pack_objects))
124 die("git upload-pack: unable to fork git-pack-objects");
126 pipe_fd = xfdopen(pack_objects.in, "w");
128 if (shallow_nr)
129 for_each_commit_graft(write_one_shallow, pipe_fd);
131 for (i = 0; i < want_obj.nr; i++)
132 fprintf(pipe_fd, "%s\n",
133 sha1_to_hex(want_obj.objects[i].item->sha1));
134 fprintf(pipe_fd, "--not\n");
135 for (i = 0; i < have_obj.nr; i++)
136 fprintf(pipe_fd, "%s\n",
137 sha1_to_hex(have_obj.objects[i].item->sha1));
138 for (i = 0; i < extra_edge_obj.nr; i++)
139 fprintf(pipe_fd, "%s\n",
140 sha1_to_hex(extra_edge_obj.objects[i].item->sha1));
141 fprintf(pipe_fd, "\n");
142 fflush(pipe_fd);
143 fclose(pipe_fd);
145 /* We read from pack_objects.err to capture stderr output for
146 * progress bar, and pack_objects.out to capture the pack data.
149 while (1) {
150 struct pollfd pfd[2];
151 int pe, pu, pollsize;
152 int ret;
154 reset_timeout();
156 pollsize = 0;
157 pe = pu = -1;
159 if (0 <= pack_objects.out) {
160 pfd[pollsize].fd = pack_objects.out;
161 pfd[pollsize].events = POLLIN;
162 pu = pollsize;
163 pollsize++;
165 if (0 <= pack_objects.err) {
166 pfd[pollsize].fd = pack_objects.err;
167 pfd[pollsize].events = POLLIN;
168 pe = pollsize;
169 pollsize++;
172 if (!pollsize)
173 break;
175 ret = poll(pfd, pollsize,
176 keepalive < 0 ? -1 : 1000 * keepalive);
178 if (ret < 0) {
179 if (errno != EINTR) {
180 error("poll failed, resuming: %s",
181 strerror(errno));
182 sleep(1);
184 continue;
186 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
187 /* Status ready; we ship that in the side-band
188 * or dump to the standard error.
190 sz = xread(pack_objects.err, progress,
191 sizeof(progress));
192 if (0 < sz)
193 send_client_data(2, progress, sz);
194 else if (sz == 0) {
195 close(pack_objects.err);
196 pack_objects.err = -1;
198 else
199 goto fail;
200 /* give priority to status messages */
201 continue;
203 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
204 /* Data ready; we keep the last byte to ourselves
205 * in case we detect broken rev-list, so that we
206 * can leave the stream corrupted. This is
207 * unfortunate -- unpack-objects would happily
208 * accept a valid packdata with trailing garbage,
209 * so appending garbage after we pass all the
210 * pack data is not good enough to signal
211 * breakage to downstream.
213 char *cp = data;
214 ssize_t outsz = 0;
215 if (0 <= buffered) {
216 *cp++ = buffered;
217 outsz++;
219 sz = xread(pack_objects.out, cp,
220 sizeof(data) - outsz);
221 if (0 < sz)
223 else if (sz == 0) {
224 close(pack_objects.out);
225 pack_objects.out = -1;
227 else
228 goto fail;
229 sz += outsz;
230 if (1 < sz) {
231 buffered = data[sz-1] & 0xFF;
232 sz--;
234 else
235 buffered = -1;
236 sz = send_client_data(1, data, sz);
237 if (sz < 0)
238 goto fail;
242 * We hit the keepalive timeout without saying anything; send
243 * an empty message on the data sideband just to let the other
244 * side know we're still working on it, but don't have any data
245 * yet.
247 * If we don't have a sideband channel, there's no room in the
248 * protocol to say anything, so those clients are just out of
249 * luck.
251 if (!ret && use_sideband) {
252 static const char buf[] = "0005\1";
253 write_or_die(1, buf, 5);
257 if (finish_command(&pack_objects)) {
258 error("git upload-pack: git-pack-objects died with error.");
259 goto fail;
262 /* flush the data */
263 if (0 <= buffered) {
264 data[0] = buffered;
265 sz = send_client_data(1, data, 1);
266 if (sz < 0)
267 goto fail;
268 fprintf(stderr, "flushed.\n");
270 if (use_sideband)
271 packet_flush(1);
272 return;
274 fail:
275 send_client_data(3, abort_msg, sizeof(abort_msg));
276 die("git upload-pack: %s", abort_msg);
279 static int got_sha1(char *hex, unsigned char *sha1)
281 struct object *o;
282 int we_knew_they_have = 0;
284 if (get_sha1_hex(hex, sha1))
285 die("git upload-pack: expected SHA1 object, got '%s'", hex);
286 if (!has_sha1_file(sha1))
287 return -1;
289 o = parse_object(sha1);
290 if (!o)
291 die("oops (%s)", sha1_to_hex(sha1));
292 if (o->type == OBJ_COMMIT) {
293 struct commit_list *parents;
294 struct commit *commit = (struct commit *)o;
295 if (o->flags & THEY_HAVE)
296 we_knew_they_have = 1;
297 else
298 o->flags |= THEY_HAVE;
299 if (!oldest_have || (commit->date < oldest_have))
300 oldest_have = commit->date;
301 for (parents = commit->parents;
302 parents;
303 parents = parents->next)
304 parents->item->object.flags |= THEY_HAVE;
306 if (!we_knew_they_have) {
307 add_object_array(o, NULL, &have_obj);
308 return 1;
310 return 0;
313 static int reachable(struct commit *want)
315 struct commit_list *work = NULL;
317 commit_list_insert_by_date(want, &work);
318 while (work) {
319 struct commit_list *list = work->next;
320 struct commit *commit = work->item;
321 free(work);
322 work = list;
324 if (commit->object.flags & THEY_HAVE) {
325 want->object.flags |= COMMON_KNOWN;
326 break;
328 if (!commit->object.parsed)
329 parse_object(commit->object.sha1);
330 if (commit->object.flags & REACHABLE)
331 continue;
332 commit->object.flags |= REACHABLE;
333 if (commit->date < oldest_have)
334 continue;
335 for (list = commit->parents; list; list = list->next) {
336 struct commit *parent = list->item;
337 if (!(parent->object.flags & REACHABLE))
338 commit_list_insert_by_date(parent, &work);
341 want->object.flags |= REACHABLE;
342 clear_commit_marks(want, REACHABLE);
343 free_commit_list(work);
344 return (want->object.flags & COMMON_KNOWN);
347 static int ok_to_give_up(void)
349 int i;
351 if (!have_obj.nr)
352 return 0;
354 for (i = 0; i < want_obj.nr; i++) {
355 struct object *want = want_obj.objects[i].item;
357 if (want->flags & COMMON_KNOWN)
358 continue;
359 want = deref_tag(want, "a want line", 0);
360 if (!want || want->type != OBJ_COMMIT) {
361 /* no way to tell if this is reachable by
362 * looking at the ancestry chain alone, so
363 * leave a note to ourselves not to worry about
364 * this object anymore.
366 want_obj.objects[i].item->flags |= COMMON_KNOWN;
367 continue;
369 if (!reachable((struct commit *)want))
370 return 0;
372 return 1;
375 static int get_common_commits(void)
377 unsigned char sha1[20];
378 char last_hex[41];
379 int got_common = 0;
380 int got_other = 0;
381 int sent_ready = 0;
383 save_commit_buffer = 0;
385 for (;;) {
386 char *line = packet_read_line(0, NULL);
387 reset_timeout();
389 if (!line) {
390 if (multi_ack == 2 && got_common
391 && !got_other && ok_to_give_up()) {
392 sent_ready = 1;
393 packet_write(1, "ACK %s ready\n", last_hex);
395 if (have_obj.nr == 0 || multi_ack)
396 packet_write(1, "NAK\n");
398 if (no_done && sent_ready) {
399 packet_write(1, "ACK %s\n", last_hex);
400 return 0;
402 if (stateless_rpc)
403 exit(0);
404 got_common = 0;
405 got_other = 0;
406 continue;
408 if (starts_with(line, "have ")) {
409 switch (got_sha1(line+5, sha1)) {
410 case -1: /* they have what we do not */
411 got_other = 1;
412 if (multi_ack && ok_to_give_up()) {
413 const char *hex = sha1_to_hex(sha1);
414 if (multi_ack == 2) {
415 sent_ready = 1;
416 packet_write(1, "ACK %s ready\n", hex);
417 } else
418 packet_write(1, "ACK %s continue\n", hex);
420 break;
421 default:
422 got_common = 1;
423 memcpy(last_hex, sha1_to_hex(sha1), 41);
424 if (multi_ack == 2)
425 packet_write(1, "ACK %s common\n", last_hex);
426 else if (multi_ack)
427 packet_write(1, "ACK %s continue\n", last_hex);
428 else if (have_obj.nr == 1)
429 packet_write(1, "ACK %s\n", last_hex);
430 break;
432 continue;
434 if (!strcmp(line, "done")) {
435 if (have_obj.nr > 0) {
436 if (multi_ack)
437 packet_write(1, "ACK %s\n", last_hex);
438 return 0;
440 packet_write(1, "NAK\n");
441 return -1;
443 die("git upload-pack: expected SHA1 list, got '%s'", line);
447 static int is_our_ref(struct object *o)
449 int allow_hidden_ref = (allow_unadvertised_object_request &
450 (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
451 return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
454 static void check_non_tip(void)
456 static const char *argv[] = {
457 "rev-list", "--stdin", NULL,
459 static struct child_process cmd = CHILD_PROCESS_INIT;
460 struct object *o;
461 char namebuf[42]; /* ^ + SHA-1 + LF */
462 int i;
465 * In the normal in-process case without
466 * uploadpack.allowReachableSHA1InWant,
467 * non-tip requests can never happen.
469 if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
470 goto error;
472 cmd.argv = argv;
473 cmd.git_cmd = 1;
474 cmd.no_stderr = 1;
475 cmd.in = -1;
476 cmd.out = -1;
478 if (start_command(&cmd))
479 goto error;
482 * If rev-list --stdin encounters an unknown commit, it
483 * terminates, which will cause SIGPIPE in the write loop
484 * below.
486 sigchain_push(SIGPIPE, SIG_IGN);
488 namebuf[0] = '^';
489 namebuf[41] = '\n';
490 for (i = get_max_object_index(); 0 < i; ) {
491 o = get_indexed_object(--i);
492 if (!o)
493 continue;
494 if (!is_our_ref(o))
495 continue;
496 memcpy(namebuf + 1, sha1_to_hex(o->sha1), 40);
497 if (write_in_full(cmd.in, namebuf, 42) < 0)
498 goto error;
500 namebuf[40] = '\n';
501 for (i = 0; i < want_obj.nr; i++) {
502 o = want_obj.objects[i].item;
503 if (is_our_ref(o))
504 continue;
505 memcpy(namebuf, sha1_to_hex(o->sha1), 40);
506 if (write_in_full(cmd.in, namebuf, 41) < 0)
507 goto error;
509 close(cmd.in);
511 sigchain_pop(SIGPIPE);
514 * The commits out of the rev-list are not ancestors of
515 * our ref.
517 i = read_in_full(cmd.out, namebuf, 1);
518 if (i)
519 goto error;
520 close(cmd.out);
523 * rev-list may have died by encountering a bad commit
524 * in the history, in which case we do want to bail out
525 * even when it showed no commit.
527 if (finish_command(&cmd))
528 goto error;
530 /* All the non-tip ones are ancestors of what we advertised */
531 return;
533 error:
534 /* Pick one of them (we know there at least is one) */
535 for (i = 0; i < want_obj.nr; i++) {
536 o = want_obj.objects[i].item;
537 if (!is_our_ref(o))
538 die("git upload-pack: not our ref %s",
539 sha1_to_hex(o->sha1));
543 static void receive_needs(void)
545 struct object_array shallows = OBJECT_ARRAY_INIT;
546 int depth = 0;
547 int has_non_tip = 0;
549 shallow_nr = 0;
550 for (;;) {
551 struct object *o;
552 const char *features;
553 unsigned char sha1_buf[20];
554 char *line = packet_read_line(0, NULL);
555 reset_timeout();
556 if (!line)
557 break;
559 if (starts_with(line, "shallow ")) {
560 unsigned char sha1[20];
561 struct object *object;
562 if (get_sha1_hex(line + 8, sha1))
563 die("invalid shallow line: %s", line);
564 object = parse_object(sha1);
565 if (!object)
566 continue;
567 if (object->type != OBJ_COMMIT)
568 die("invalid shallow object %s", sha1_to_hex(sha1));
569 if (!(object->flags & CLIENT_SHALLOW)) {
570 object->flags |= CLIENT_SHALLOW;
571 add_object_array(object, NULL, &shallows);
573 continue;
575 if (starts_with(line, "deepen ")) {
576 char *end;
577 depth = strtol(line + 7, &end, 0);
578 if (end == line + 7 || depth <= 0)
579 die("Invalid deepen: %s", line);
580 continue;
582 if (!starts_with(line, "want ") ||
583 get_sha1_hex(line+5, sha1_buf))
584 die("git upload-pack: protocol error, "
585 "expected to get sha, not '%s'", line);
587 features = line + 45;
589 if (parse_feature_request(features, "multi_ack_detailed"))
590 multi_ack = 2;
591 else if (parse_feature_request(features, "multi_ack"))
592 multi_ack = 1;
593 if (parse_feature_request(features, "no-done"))
594 no_done = 1;
595 if (parse_feature_request(features, "thin-pack"))
596 use_thin_pack = 1;
597 if (parse_feature_request(features, "ofs-delta"))
598 use_ofs_delta = 1;
599 if (parse_feature_request(features, "side-band-64k"))
600 use_sideband = LARGE_PACKET_MAX;
601 else if (parse_feature_request(features, "side-band"))
602 use_sideband = DEFAULT_PACKET_MAX;
603 if (parse_feature_request(features, "no-progress"))
604 no_progress = 1;
605 if (parse_feature_request(features, "include-tag"))
606 use_include_tag = 1;
608 o = parse_object(sha1_buf);
609 if (!o)
610 die("git upload-pack: not our ref %s",
611 sha1_to_hex(sha1_buf));
612 if (!(o->flags & WANTED)) {
613 o->flags |= WANTED;
614 if (!is_our_ref(o))
615 has_non_tip = 1;
616 add_object_array(o, NULL, &want_obj);
621 * We have sent all our refs already, and the other end
622 * should have chosen out of them. When we are operating
623 * in the stateless RPC mode, however, their choice may
624 * have been based on the set of older refs advertised
625 * by another process that handled the initial request.
627 if (has_non_tip)
628 check_non_tip();
630 if (!use_sideband && daemon_mode)
631 no_progress = 1;
633 if (depth == 0 && shallows.nr == 0)
634 return;
635 if (depth > 0) {
636 struct commit_list *result = NULL, *backup = NULL;
637 int i;
638 if (depth == INFINITE_DEPTH && !is_repository_shallow())
639 for (i = 0; i < shallows.nr; i++) {
640 struct object *object = shallows.objects[i].item;
641 object->flags |= NOT_SHALLOW;
643 else
644 backup = result =
645 get_shallow_commits(&want_obj, depth,
646 SHALLOW, NOT_SHALLOW);
647 while (result) {
648 struct object *object = &result->item->object;
649 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
650 packet_write(1, "shallow %s",
651 sha1_to_hex(object->sha1));
652 register_shallow(object->sha1);
653 shallow_nr++;
655 result = result->next;
657 free_commit_list(backup);
658 for (i = 0; i < shallows.nr; i++) {
659 struct object *object = shallows.objects[i].item;
660 if (object->flags & NOT_SHALLOW) {
661 struct commit_list *parents;
662 packet_write(1, "unshallow %s",
663 sha1_to_hex(object->sha1));
664 object->flags &= ~CLIENT_SHALLOW;
665 /* make sure the real parents are parsed */
666 unregister_shallow(object->sha1);
667 object->parsed = 0;
668 parse_commit_or_die((struct commit *)object);
669 parents = ((struct commit *)object)->parents;
670 while (parents) {
671 add_object_array(&parents->item->object,
672 NULL, &want_obj);
673 parents = parents->next;
675 add_object_array(object, NULL, &extra_edge_obj);
677 /* make sure commit traversal conforms to client */
678 register_shallow(object->sha1);
680 packet_flush(1);
681 } else
682 if (shallows.nr > 0) {
683 int i;
684 for (i = 0; i < shallows.nr; i++)
685 register_shallow(shallows.objects[i].item->sha1);
688 shallow_nr += shallows.nr;
689 free(shallows.objects);
692 /* return non-zero if the ref is hidden, otherwise 0 */
693 static int mark_our_ref(const char *refname, const unsigned char *sha1)
695 struct object *o = lookup_unknown_object(sha1);
697 if (ref_is_hidden(refname)) {
698 o->flags |= HIDDEN_REF;
699 return 1;
701 o->flags |= OUR_REF;
702 return 0;
705 static int check_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
707 mark_our_ref(refname, sha1);
708 return 0;
711 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
713 struct string_list_item *item;
715 if (!symref->nr)
716 return;
717 for_each_string_list_item(item, symref)
718 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
721 static int send_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
723 static const char *capabilities = "multi_ack thin-pack side-band"
724 " side-band-64k ofs-delta shallow no-progress"
725 " include-tag multi_ack_detailed";
726 const char *refname_nons = strip_namespace(refname);
727 unsigned char peeled[20];
729 if (mark_our_ref(refname, sha1))
730 return 0;
732 if (capabilities) {
733 struct strbuf symref_info = STRBUF_INIT;
735 format_symref_info(&symref_info, cb_data);
736 packet_write(1, "%s %s%c%s%s%s%s%s agent=%s\n",
737 sha1_to_hex(sha1), refname_nons,
738 0, capabilities,
739 (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
740 " allow-tip-sha1-in-want" : "",
741 (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
742 " allow-reachable-sha1-in-want" : "",
743 stateless_rpc ? " no-done" : "",
744 symref_info.buf,
745 git_user_agent_sanitized());
746 strbuf_release(&symref_info);
747 } else {
748 packet_write(1, "%s %s\n", sha1_to_hex(sha1), refname_nons);
750 capabilities = NULL;
751 if (!peel_ref(refname, peeled))
752 packet_write(1, "%s %s^{}\n", sha1_to_hex(peeled), refname_nons);
753 return 0;
756 static int find_symref(const char *refname, const unsigned char *sha1, int flag,
757 void *cb_data)
759 const char *symref_target;
760 struct string_list_item *item;
761 unsigned char unused[20];
763 if ((flag & REF_ISSYMREF) == 0)
764 return 0;
765 symref_target = resolve_ref_unsafe(refname, 0, unused, &flag);
766 if (!symref_target || (flag & REF_ISSYMREF) == 0)
767 die("'%s' is a symref but it is not?", refname);
768 item = string_list_append(cb_data, refname);
769 item->util = xstrdup(symref_target);
770 return 0;
773 static void upload_pack(void)
775 struct string_list symref = STRING_LIST_INIT_DUP;
777 head_ref_namespaced(find_symref, &symref);
779 if (advertise_refs || !stateless_rpc) {
780 reset_timeout();
781 head_ref_namespaced(send_ref, &symref);
782 for_each_namespaced_ref(send_ref, &symref);
783 advertise_shallow_grafts(1);
784 packet_flush(1);
785 } else {
786 head_ref_namespaced(check_ref, NULL);
787 for_each_namespaced_ref(check_ref, NULL);
789 string_list_clear(&symref, 1);
790 if (advertise_refs)
791 return;
793 receive_needs();
794 if (want_obj.nr) {
795 get_common_commits();
796 create_pack_file();
800 static int upload_pack_config(const char *var, const char *value, void *unused)
802 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
803 if (git_config_bool(var, value))
804 allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
805 else
806 allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
807 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
808 if (git_config_bool(var, value))
809 allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
810 else
811 allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
812 } else if (!strcmp("uploadpack.keepalive", var)) {
813 keepalive = git_config_int(var, value);
814 if (!keepalive)
815 keepalive = -1;
817 return parse_hide_refs_config(var, value, "uploadpack");
820 int main(int argc, char **argv)
822 char *dir;
823 int i;
824 int strict = 0;
826 git_setup_gettext();
828 packet_trace_identity("upload-pack");
829 git_extract_argv0_path(argv[0]);
830 check_replace_refs = 0;
832 for (i = 1; i < argc; i++) {
833 char *arg = argv[i];
835 if (arg[0] != '-')
836 break;
837 if (!strcmp(arg, "--advertise-refs")) {
838 advertise_refs = 1;
839 continue;
841 if (!strcmp(arg, "--stateless-rpc")) {
842 stateless_rpc = 1;
843 continue;
845 if (!strcmp(arg, "--strict")) {
846 strict = 1;
847 continue;
849 if (starts_with(arg, "--timeout=")) {
850 timeout = atoi(arg+10);
851 daemon_mode = 1;
852 continue;
854 if (!strcmp(arg, "--")) {
855 i++;
856 break;
860 if (i != argc-1)
861 usage(upload_pack_usage);
863 setup_path();
865 dir = argv[i];
867 if (!enter_repo(dir, strict))
868 die("'%s' does not appear to be a git repository", dir);
870 git_config(upload_pack_config, NULL);
871 upload_pack();
872 return 0;