7 #include "run-command.h"
11 static struct remote *remote;
12 static const char *url;
13 static struct walker *walker;
18 unsigned progress : 1,
23 static struct options options;
25 static void init_walker(void)
28 walker = get_http_walker(url);
31 static int set_option(const char *name, const char *value)
33 if (!strcmp(name, "verbosity")) {
35 int v = strtol(value, &end, 10);
36 if (value == end || *end)
38 options.verbosity = v;
41 else if (!strcmp(name, "progress")) {
42 if (!strcmp(value, "true"))
44 else if (!strcmp(value, "false"))
50 else if (!strcmp(name, "depth")) {
52 unsigned long v = strtoul(value, &end, 10);
53 if (value == end || *end)
58 else if (!strcmp(name, "followtags")) {
59 if (!strcmp(value, "true"))
60 options.followtags = 1;
61 else if (!strcmp(value, "false"))
62 options.followtags = 0;
67 else if (!strcmp(name, "dry-run")) {
68 if (!strcmp(value, "true"))
70 else if (!strcmp(value, "false"))
77 return 1 /* unsupported */;
86 unsigned proto_git : 1;
88 static struct discovery *last_discovery;
90 static void free_discovery(struct discovery *d)
93 if (d == last_discovery)
94 last_discovery = NULL;
100 static struct discovery* discover_refs(const char *service)
102 struct strbuf buffer = STRBUF_INIT;
103 struct discovery *last = last_discovery;
105 int http_ret, is_http = 0, proto_git_candidate = 1;
107 if (last && !strcmp(service, last->service))
109 free_discovery(last);
111 strbuf_addf(&buffer, "%s/info/refs", url);
112 if (!prefixcmp(url, "http://") || !prefixcmp(url, "https://")) {
114 if (!strchr(url, '?'))
115 strbuf_addch(&buffer, '?');
117 strbuf_addch(&buffer, '&');
118 strbuf_addf(&buffer, "service=%s", service);
120 refs_url = strbuf_detach(&buffer, NULL);
123 http_ret = http_get_strbuf(refs_url, &buffer, HTTP_NO_CACHE);
125 /* try again with "plain" url (no ? or & appended) */
126 if (http_ret != HTTP_OK) {
128 strbuf_reset(&buffer);
130 proto_git_candidate = 0;
131 strbuf_addf(&buffer, "%s/info/refs", url);
132 refs_url = strbuf_detach(&buffer, NULL);
134 http_ret = http_get_strbuf(refs_url, &buffer, HTTP_NO_CACHE);
140 case HTTP_MISSING_TARGET:
141 die("%s not found: did you run git update-server-info on the"
142 " server?", refs_url);
144 http_error(refs_url, http_ret);
145 die("HTTP request failed");
148 last= xcalloc(1, sizeof(*last_discovery));
149 last->service = service;
150 last->buf_alloc = strbuf_detach(&buffer, &last->len);
151 last->buf = last->buf_alloc;
153 if (is_http && proto_git_candidate
154 && 5 <= last->len && last->buf[4] == '#') {
155 /* smart HTTP response; validate that the service
156 * pkt-line matches our request.
158 struct strbuf exp = STRBUF_INIT;
160 if (packet_get_line(&buffer, &last->buf, &last->len) <= 0)
161 die("%s has invalid packet header", refs_url);
162 if (buffer.len && buffer.buf[buffer.len - 1] == '\n')
163 strbuf_setlen(&buffer, buffer.len - 1);
165 strbuf_addf(&exp, "# service=%s", service);
166 if (strbuf_cmp(&exp, &buffer))
167 die("invalid server response; got '%s'", buffer.buf);
168 strbuf_release(&exp);
170 /* The header can include additional metadata lines, up
171 * until a packet flush marker. Ignore these now, but
172 * in the future we might start to scan them.
174 strbuf_reset(&buffer);
175 while (packet_get_line(&buffer, &last->buf, &last->len) > 0)
176 strbuf_reset(&buffer);
182 strbuf_release(&buffer);
183 last_discovery = last;
187 static int write_discovery(int fd, void *data)
189 struct discovery *heads = data;
191 if (write_in_full(fd, heads->buf, heads->len) != heads->len)
197 static struct ref *parse_git_refs(struct discovery *heads)
199 struct ref *list = NULL;
202 memset(&async, 0, sizeof(async));
203 async.proc = write_discovery;
206 if (start_async(&async))
207 die("cannot start thread to parse advertised refs");
208 get_remote_heads(async.out, &list, 0, NULL, 0, NULL);
210 if (finish_async(&async))
211 die("ref parsing thread failed");
215 static struct ref *parse_info_refs(struct discovery *heads)
217 char *data, *start, *mid;
221 struct ref *refs = NULL;
222 struct ref *ref = NULL;
223 struct ref *last_ref = NULL;
228 while (i < heads->len) {
234 if (data[i] == '\n') {
237 ref = xmalloc(sizeof(struct ref) +
238 strlen(ref_name) + 1);
239 memset(ref, 0, sizeof(struct ref));
240 strcpy(ref->name, ref_name);
241 get_sha1_hex(start, ref->old_sha1);
245 last_ref->next = ref;
252 ref = alloc_ref("HEAD");
253 if (!http_fetch_ref(url, ref) &&
254 !resolve_remote_symref(ref, refs)) {
264 static struct ref *get_refs(int for_push)
266 struct discovery *heads;
269 heads = discover_refs("git-receive-pack");
271 heads = discover_refs("git-upload-pack");
273 if (heads->proto_git)
274 return parse_git_refs(heads);
275 return parse_info_refs(heads);
278 static void output_refs(struct ref *refs)
281 for (posn = refs; posn; posn = posn->next) {
283 printf("@%s %s\n", posn->symref, posn->name);
285 printf("%s %s\n", sha1_to_hex(posn->old_sha1), posn->name);
293 const char *service_name;
296 char *hdr_content_type;
304 struct strbuf result;
305 unsigned gzip_request : 1;
306 unsigned initial_buffer : 1;
309 static size_t rpc_out(void *ptr, size_t eltsize,
310 size_t nmemb, void *buffer_)
312 size_t max = eltsize * nmemb;
313 struct rpc_state *rpc = buffer_;
314 size_t avail = rpc->len - rpc->pos;
317 rpc->initial_buffer = 0;
318 avail = packet_read_line(rpc->out, rpc->buf, rpc->alloc);
327 memcpy(ptr, rpc->buf + rpc->pos, avail);
332 #ifndef NO_CURL_IOCTL
333 static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp)
335 struct rpc_state *rpc = clientp;
341 case CURLIOCMD_RESTARTREAD:
342 if (rpc->initial_buffer) {
346 fprintf(stderr, "Unable to rewind rpc post data - try increasing http.postBuffer\n");
347 return CURLIOE_FAILRESTART;
350 return CURLIOE_UNKNOWNCMD;
355 static size_t rpc_in(const void *ptr, size_t eltsize,
356 size_t nmemb, void *buffer_)
358 size_t size = eltsize * nmemb;
359 struct rpc_state *rpc = buffer_;
360 write_or_die(rpc->in, ptr, size);
364 static int post_rpc(struct rpc_state *rpc)
366 struct active_request_slot *slot;
367 struct slot_results results;
368 struct curl_slist *headers = NULL;
369 int use_gzip = rpc->gzip_request;
370 char *gzip_body = NULL;
371 int err = 0, large_request = 0;
373 /* Try to load the entire request, if we can fit it into the
374 * allocated buffer space we can use HTTP/1.0 and avoid the
375 * chunked encoding mess.
378 size_t left = rpc->alloc - rpc->len;
379 char *buf = rpc->buf + rpc->len;
382 if (left < LARGE_PACKET_MAX) {
388 n = packet_read_line(rpc->out, buf, left);
394 slot = get_active_slot();
395 slot->results = &results;
397 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
398 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
399 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
400 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "");
402 headers = curl_slist_append(headers, rpc->hdr_content_type);
403 headers = curl_slist_append(headers, rpc->hdr_accept);
406 /* The request body is large and the size cannot be predicted.
407 * We must use chunked encoding to send it.
409 headers = curl_slist_append(headers, "Expect: 100-continue");
410 headers = curl_slist_append(headers, "Transfer-Encoding: chunked");
411 rpc->initial_buffer = 1;
412 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out);
413 curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc);
414 #ifndef NO_CURL_IOCTL
415 curl_easy_setopt(slot->curl, CURLOPT_IOCTLFUNCTION, rpc_ioctl);
416 curl_easy_setopt(slot->curl, CURLOPT_IOCTLDATA, rpc);
418 if (options.verbosity > 1) {
419 fprintf(stderr, "POST %s (chunked)\n", rpc->service_name);
423 } else if (use_gzip && 1024 < rpc->len) {
424 /* The client backend isn't giving us compressed data so
425 * we can try to deflate it ourselves, this may save on.
432 memset(&stream, 0, sizeof(stream));
433 ret = deflateInit2(&stream, Z_BEST_COMPRESSION,
434 Z_DEFLATED, (15 + 16),
435 8, Z_DEFAULT_STRATEGY);
437 die("cannot deflate request; zlib init error %d", ret);
438 size = deflateBound(&stream, rpc->len);
439 gzip_body = xmalloc(size);
441 stream.next_in = (unsigned char *)rpc->buf;
442 stream.avail_in = rpc->len;
443 stream.next_out = (unsigned char *)gzip_body;
444 stream.avail_out = size;
446 ret = deflate(&stream, Z_FINISH);
447 if (ret != Z_STREAM_END)
448 die("cannot deflate request; zlib deflate error %d", ret);
450 ret = deflateEnd(&stream);
452 die("cannot deflate request; zlib end error %d", ret);
454 size = stream.total_out;
456 headers = curl_slist_append(headers, "Content-Encoding: gzip");
457 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
458 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, size);
460 if (options.verbosity > 1) {
461 fprintf(stderr, "POST %s (gzip %lu to %lu bytes)\n",
463 (unsigned long)rpc->len, (unsigned long)size);
467 /* We know the complete request size in advance, use the
468 * more normal Content-Length approach.
470 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, rpc->buf);
471 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, rpc->len);
472 if (options.verbosity > 1) {
473 fprintf(stderr, "POST %s (%lu bytes)\n",
474 rpc->service_name, (unsigned long)rpc->len);
479 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
480 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, rpc_in);
481 curl_easy_setopt(slot->curl, CURLOPT_FILE, rpc);
483 slot->curl_result = curl_easy_perform(slot->curl);
484 finish_active_slot(slot);
486 if (results.curl_result != CURLE_OK) {
487 err |= error("RPC failed; result=%d, HTTP code = %ld",
488 results.curl_result, results.http_code);
491 curl_slist_free_all(headers);
496 static int rpc_service(struct rpc_state *rpc, struct discovery *heads)
498 const char *svc = rpc->service_name;
499 struct strbuf buf = STRBUF_INIT;
500 struct child_process client;
504 memset(&client, 0, sizeof(client));
508 client.argv = rpc->argv;
509 if (start_command(&client))
512 write_or_die(client.in, heads->buf, heads->len);
514 rpc->alloc = http_post_buffer;
515 rpc->buf = xmalloc(rpc->alloc);
517 rpc->out = client.out;
518 strbuf_init(&rpc->result, 0);
520 strbuf_addf(&buf, "%s/%s", url, svc);
521 rpc->service_url = strbuf_detach(&buf, NULL);
523 strbuf_addf(&buf, "Content-Type: application/x-%s-request", svc);
524 rpc->hdr_content_type = strbuf_detach(&buf, NULL);
526 strbuf_addf(&buf, "Accept: application/x-%s-result", svc);
527 rpc->hdr_accept = strbuf_detach(&buf, NULL);
530 int n = packet_read_line(rpc->out, rpc->buf, rpc->alloc);
535 err |= post_rpc(rpc);
537 strbuf_read(&rpc->result, client.out, 0);
544 err |= finish_command(&client);
545 free(rpc->service_url);
546 free(rpc->hdr_content_type);
547 free(rpc->hdr_accept);
549 strbuf_release(&buf);
553 static int fetch_dumb(int nr_heads, struct ref **to_fetch)
555 char **targets = xmalloc(nr_heads * sizeof(char*));
559 die("dumb http transport does not support --depth");
560 for (i = 0; i < nr_heads; i++)
561 targets[i] = xstrdup(sha1_to_hex(to_fetch[i]->old_sha1));
565 walker->get_tree = 1;
566 walker->get_history = 1;
567 walker->get_verbosely = options.verbosity >= 3;
568 walker->get_recover = 0;
569 ret = walker_fetch(walker, nr_heads, targets, NULL, NULL);
571 for (i = 0; i < nr_heads; i++)
575 return ret ? error("Fetch failed.") : 0;
578 static int fetch_git(struct discovery *heads,
579 int nr_heads, struct ref **to_fetch)
581 struct rpc_state rpc;
582 char *depth_arg = NULL;
584 int argc = 0, i, err;
586 argv = xmalloc((15 + nr_heads) * sizeof(char*));
587 argv[argc++] = "fetch-pack";
588 argv[argc++] = "--stateless-rpc";
589 argv[argc++] = "--lock-pack";
590 if (options.followtags)
591 argv[argc++] = "--include-tag";
593 argv[argc++] = "--thin";
594 if (options.verbosity >= 3) {
598 if (!options.progress)
599 argv[argc++] = "--no-progress";
601 struct strbuf buf = STRBUF_INIT;
602 strbuf_addf(&buf, "--depth=%lu", options.depth);
603 depth_arg = strbuf_detach(&buf, NULL);
604 argv[argc++] = depth_arg;
607 for (i = 0; i < nr_heads; i++) {
608 struct ref *ref = to_fetch[i];
609 if (!ref->name || !*ref->name)
610 die("cannot fetch by sha1 over smart http");
611 argv[argc++] = ref->name;
615 memset(&rpc, 0, sizeof(rpc));
616 rpc.service_name = "git-upload-pack",
618 rpc.gzip_request = 1;
620 err = rpc_service(&rpc, heads);
622 safe_write(1, rpc.result.buf, rpc.result.len);
623 strbuf_release(&rpc.result);
629 static int fetch(int nr_heads, struct ref **to_fetch)
631 struct discovery *d = discover_refs("git-upload-pack");
633 return fetch_git(d, nr_heads, to_fetch);
635 return fetch_dumb(nr_heads, to_fetch);
638 static void parse_fetch(struct strbuf *buf)
640 struct ref **to_fetch = NULL;
641 struct ref *list_head = NULL;
642 struct ref **list = &list_head;
643 int alloc_heads = 0, nr_heads = 0;
646 if (!prefixcmp(buf->buf, "fetch ")) {
647 char *p = buf->buf + strlen("fetch ");
650 unsigned char old_sha1[20];
652 if (strlen(p) < 40 || get_sha1_hex(p, old_sha1))
653 die("protocol error: expected sha/ref, got %s'", p);
659 die("protocol error: expected sha/ref, got %s'", p);
661 ref = alloc_ref(name);
662 hashcpy(ref->old_sha1, old_sha1);
667 ALLOC_GROW(to_fetch, nr_heads + 1, alloc_heads);
668 to_fetch[nr_heads++] = ref;
671 die("http transport does not support %s", buf->buf);
674 if (strbuf_getline(buf, stdin, '\n') == EOF)
680 if (fetch(nr_heads, to_fetch))
681 exit(128); /* error already reported */
682 free_refs(list_head);
690 static int push_dav(int nr_spec, char **specs)
692 const char **argv = xmalloc((10 + nr_spec) * sizeof(char*));
695 argv[argc++] = "http-push";
696 argv[argc++] = "--helper-status";
698 argv[argc++] = "--dry-run";
699 if (options.verbosity > 1)
700 argv[argc++] = "--verbose";
702 for (i = 0; i < nr_spec; i++)
703 argv[argc++] = specs[i];
706 if (run_command_v_opt(argv, RUN_GIT_CMD))
707 die("git-%s failed", argv[0]);
712 static int push_git(struct discovery *heads, int nr_spec, char **specs)
714 struct rpc_state rpc;
716 int argc = 0, i, err;
718 argv = xmalloc((10 + nr_spec) * sizeof(char*));
719 argv[argc++] = "send-pack";
720 argv[argc++] = "--stateless-rpc";
721 argv[argc++] = "--helper-status";
723 argv[argc++] = "--thin";
725 argv[argc++] = "--dry-run";
726 if (options.verbosity > 1)
727 argv[argc++] = "--verbose";
729 for (i = 0; i < nr_spec; i++)
730 argv[argc++] = specs[i];
733 memset(&rpc, 0, sizeof(rpc));
734 rpc.service_name = "git-receive-pack",
737 err = rpc_service(&rpc, heads);
739 safe_write(1, rpc.result.buf, rpc.result.len);
740 strbuf_release(&rpc.result);
745 static int push(int nr_spec, char **specs)
747 struct discovery *heads = discover_refs("git-receive-pack");
750 if (heads->proto_git)
751 ret = push_git(heads, nr_spec, specs);
753 ret = push_dav(nr_spec, specs);
754 free_discovery(heads);
758 static void parse_push(struct strbuf *buf)
761 int alloc_spec = 0, nr_spec = 0, i;
764 if (!prefixcmp(buf->buf, "push ")) {
765 ALLOC_GROW(specs, nr_spec + 1, alloc_spec);
766 specs[nr_spec++] = xstrdup(buf->buf + 5);
769 die("http transport does not support %s", buf->buf);
772 if (strbuf_getline(buf, stdin, '\n') == EOF)
778 if (push(nr_spec, specs))
779 exit(128); /* error already reported */
780 for (i = 0; i < nr_spec; i++)
788 int main(int argc, const char **argv)
790 struct strbuf buf = STRBUF_INIT;
793 git_extract_argv0_path(argv[0]);
794 setup_git_directory_gently(&nongit);
796 fprintf(stderr, "Remote needed\n");
800 options.verbosity = 1;
801 options.progress = !!isatty(2);
804 remote = remote_get(argv[1]);
809 url = remote->url[0];
815 if (strbuf_getline(&buf, stdin, '\n') == EOF)
817 if (!prefixcmp(buf.buf, "fetch ")) {
819 die("Fetch attempted without a local repo");
822 } else if (!strcmp(buf.buf, "list") || !prefixcmp(buf.buf, "list ")) {
823 int for_push = !!strstr(buf.buf + 4, "for-push");
824 output_refs(get_refs(for_push));
826 } else if (!prefixcmp(buf.buf, "push ")) {
829 } else if (!prefixcmp(buf.buf, "option ")) {
830 char *name = buf.buf + strlen("option ");
831 char *value = strchr(name, ' ');
839 result = set_option(name, value);
843 printf("error invalid value\n");
845 printf("unsupported\n");
848 } else if (!strcmp(buf.buf, "capabilities")) {