7 #include "run-command.h"
11 static struct remote *remote;
12 static const char *url; /* always ends with a trailing slash */
17 unsigned progress : 1,
22 static struct options options;
24 static int set_option(const char *name, const char *value)
26 if (!strcmp(name, "verbosity")) {
28 int v = strtol(value, &end, 10);
29 if (value == end || *end)
31 options.verbosity = v;
34 else if (!strcmp(name, "progress")) {
35 if (!strcmp(value, "true"))
37 else if (!strcmp(value, "false"))
43 else if (!strcmp(name, "depth")) {
45 unsigned long v = strtoul(value, &end, 10);
46 if (value == end || *end)
51 else if (!strcmp(name, "followtags")) {
52 if (!strcmp(value, "true"))
53 options.followtags = 1;
54 else if (!strcmp(value, "false"))
55 options.followtags = 0;
60 else if (!strcmp(name, "dry-run")) {
61 if (!strcmp(value, "true"))
63 else if (!strcmp(value, "false"))
70 return 1 /* unsupported */;
79 unsigned proto_git : 1;
81 static struct discovery *last_discovery;
83 static void free_discovery(struct discovery *d)
86 if (d == last_discovery)
87 last_discovery = NULL;
93 static struct discovery* discover_refs(const char *service)
95 struct strbuf buffer = STRBUF_INIT;
96 struct discovery *last = last_discovery;
98 int http_ret, is_http = 0, proto_git_candidate = 1;
100 if (last && !strcmp(service, last->service))
102 free_discovery(last);
104 strbuf_addf(&buffer, "%sinfo/refs", url);
105 if (!prefixcmp(url, "http://") || !prefixcmp(url, "https://")) {
107 if (!strchr(url, '?'))
108 strbuf_addch(&buffer, '?');
110 strbuf_addch(&buffer, '&');
111 strbuf_addf(&buffer, "service=%s", service);
113 refs_url = strbuf_detach(&buffer, NULL);
115 http_ret = http_get_strbuf(refs_url, &buffer, HTTP_NO_CACHE);
117 /* try again with "plain" url (no ? or & appended) */
118 if (http_ret != HTTP_OK) {
120 strbuf_reset(&buffer);
122 proto_git_candidate = 0;
123 strbuf_addf(&buffer, "%sinfo/refs", url);
124 refs_url = strbuf_detach(&buffer, NULL);
126 http_ret = http_get_strbuf(refs_url, &buffer, HTTP_NO_CACHE);
132 case HTTP_MISSING_TARGET:
133 die("%s not found: did you run git update-server-info on the"
134 " server?", refs_url);
136 die("Authentication failed");
138 http_error(refs_url, http_ret);
139 die("HTTP request failed");
142 last= xcalloc(1, sizeof(*last_discovery));
143 last->service = service;
144 last->buf_alloc = strbuf_detach(&buffer, &last->len);
145 last->buf = last->buf_alloc;
147 if (is_http && proto_git_candidate
148 && 5 <= last->len && last->buf[4] == '#') {
149 /* smart HTTP response; validate that the service
150 * pkt-line matches our request.
152 struct strbuf exp = STRBUF_INIT;
154 if (packet_get_line(&buffer, &last->buf, &last->len) <= 0)
155 die("%s has invalid packet header", refs_url);
156 if (buffer.len && buffer.buf[buffer.len - 1] == '\n')
157 strbuf_setlen(&buffer, buffer.len - 1);
159 strbuf_addf(&exp, "# service=%s", service);
160 if (strbuf_cmp(&exp, &buffer))
161 die("invalid server response; got '%s'", buffer.buf);
162 strbuf_release(&exp);
164 /* The header can include additional metadata lines, up
165 * until a packet flush marker. Ignore these now, but
166 * in the future we might start to scan them.
168 strbuf_reset(&buffer);
169 while (packet_get_line(&buffer, &last->buf, &last->len) > 0)
170 strbuf_reset(&buffer);
176 strbuf_release(&buffer);
177 last_discovery = last;
181 static int write_discovery(int in, int out, void *data)
183 struct discovery *heads = data;
185 if (write_in_full(out, heads->buf, heads->len) != heads->len)
191 static struct ref *parse_git_refs(struct discovery *heads)
193 struct ref *list = NULL;
196 memset(&async, 0, sizeof(async));
197 async.proc = write_discovery;
201 if (start_async(&async))
202 die("cannot start thread to parse advertised refs");
203 get_remote_heads(async.out, &list, 0, NULL, 0, NULL);
205 if (finish_async(&async))
206 die("ref parsing thread failed");
210 static struct ref *parse_info_refs(struct discovery *heads)
212 char *data, *start, *mid;
216 struct ref *refs = NULL;
217 struct ref *ref = NULL;
218 struct ref *last_ref = NULL;
223 while (i < heads->len) {
229 if (data[i] == '\n') {
232 ref = xmalloc(sizeof(struct ref) +
233 strlen(ref_name) + 1);
234 memset(ref, 0, sizeof(struct ref));
235 strcpy(ref->name, ref_name);
236 get_sha1_hex(start, ref->old_sha1);
240 last_ref->next = ref;
247 ref = alloc_ref("HEAD");
248 if (!http_fetch_ref(url, ref) &&
249 !resolve_remote_symref(ref, refs)) {
259 static struct ref *get_refs(int for_push)
261 struct discovery *heads;
264 heads = discover_refs("git-receive-pack");
266 heads = discover_refs("git-upload-pack");
268 if (heads->proto_git)
269 return parse_git_refs(heads);
270 return parse_info_refs(heads);
273 static void output_refs(struct ref *refs)
276 for (posn = refs; posn; posn = posn->next) {
278 printf("@%s %s\n", posn->symref, posn->name);
280 printf("%s %s\n", sha1_to_hex(posn->old_sha1), posn->name);
288 const char *service_name;
291 char *hdr_content_type;
299 struct strbuf result;
300 unsigned gzip_request : 1;
301 unsigned initial_buffer : 1;
304 static size_t rpc_out(void *ptr, size_t eltsize,
305 size_t nmemb, void *buffer_)
307 size_t max = eltsize * nmemb;
308 struct rpc_state *rpc = buffer_;
309 size_t avail = rpc->len - rpc->pos;
312 rpc->initial_buffer = 0;
313 avail = packet_read_line(rpc->out, rpc->buf, rpc->alloc);
322 memcpy(ptr, rpc->buf + rpc->pos, avail);
327 #ifndef NO_CURL_IOCTL
328 static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp)
330 struct rpc_state *rpc = clientp;
336 case CURLIOCMD_RESTARTREAD:
337 if (rpc->initial_buffer) {
341 fprintf(stderr, "Unable to rewind rpc post data - try increasing http.postBuffer\n");
342 return CURLIOE_FAILRESTART;
345 return CURLIOE_UNKNOWNCMD;
350 static size_t rpc_in(const void *ptr, size_t eltsize,
351 size_t nmemb, void *buffer_)
353 size_t size = eltsize * nmemb;
354 struct rpc_state *rpc = buffer_;
355 write_or_die(rpc->in, ptr, size);
359 static int post_rpc(struct rpc_state *rpc)
361 struct active_request_slot *slot;
362 struct slot_results results;
363 struct curl_slist *headers = NULL;
364 int use_gzip = rpc->gzip_request;
365 char *gzip_body = NULL;
366 int err = 0, large_request = 0;
368 /* Try to load the entire request, if we can fit it into the
369 * allocated buffer space we can use HTTP/1.0 and avoid the
370 * chunked encoding mess.
373 size_t left = rpc->alloc - rpc->len;
374 char *buf = rpc->buf + rpc->len;
377 if (left < LARGE_PACKET_MAX) {
383 n = packet_read_line(rpc->out, buf, left);
389 slot = get_active_slot();
390 slot->results = &results;
392 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
393 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
394 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
395 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "");
397 headers = curl_slist_append(headers, rpc->hdr_content_type);
398 headers = curl_slist_append(headers, rpc->hdr_accept);
401 /* The request body is large and the size cannot be predicted.
402 * We must use chunked encoding to send it.
404 headers = curl_slist_append(headers, "Expect: 100-continue");
405 headers = curl_slist_append(headers, "Transfer-Encoding: chunked");
406 rpc->initial_buffer = 1;
407 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out);
408 curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc);
409 #ifndef NO_CURL_IOCTL
410 curl_easy_setopt(slot->curl, CURLOPT_IOCTLFUNCTION, rpc_ioctl);
411 curl_easy_setopt(slot->curl, CURLOPT_IOCTLDATA, rpc);
413 if (options.verbosity > 1) {
414 fprintf(stderr, "POST %s (chunked)\n", rpc->service_name);
418 } else if (use_gzip && 1024 < rpc->len) {
419 /* The client backend isn't giving us compressed data so
420 * we can try to deflate it ourselves, this may save on.
427 memset(&stream, 0, sizeof(stream));
428 ret = deflateInit2(&stream, Z_BEST_COMPRESSION,
429 Z_DEFLATED, (15 + 16),
430 8, Z_DEFAULT_STRATEGY);
432 die("cannot deflate request; zlib init error %d", ret);
433 size = deflateBound(&stream, rpc->len);
434 gzip_body = xmalloc(size);
436 stream.next_in = (unsigned char *)rpc->buf;
437 stream.avail_in = rpc->len;
438 stream.next_out = (unsigned char *)gzip_body;
439 stream.avail_out = size;
441 ret = deflate(&stream, Z_FINISH);
442 if (ret != Z_STREAM_END)
443 die("cannot deflate request; zlib deflate error %d", ret);
445 ret = deflateEnd(&stream);
447 die("cannot deflate request; zlib end error %d", ret);
449 size = stream.total_out;
451 headers = curl_slist_append(headers, "Content-Encoding: gzip");
452 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
453 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, size);
455 if (options.verbosity > 1) {
456 fprintf(stderr, "POST %s (gzip %lu to %lu bytes)\n",
458 (unsigned long)rpc->len, (unsigned long)size);
462 /* We know the complete request size in advance, use the
463 * more normal Content-Length approach.
465 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, rpc->buf);
466 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, rpc->len);
467 if (options.verbosity > 1) {
468 fprintf(stderr, "POST %s (%lu bytes)\n",
469 rpc->service_name, (unsigned long)rpc->len);
474 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
475 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, rpc_in);
476 curl_easy_setopt(slot->curl, CURLOPT_FILE, rpc);
478 slot->curl_result = curl_easy_perform(slot->curl);
479 finish_active_slot(slot);
481 if (results.curl_result != CURLE_OK) {
482 err |= error("RPC failed; result=%d, HTTP code = %ld",
483 results.curl_result, results.http_code);
486 curl_slist_free_all(headers);
491 static int rpc_service(struct rpc_state *rpc, struct discovery *heads)
493 const char *svc = rpc->service_name;
494 struct strbuf buf = STRBUF_INIT;
495 struct child_process client;
498 memset(&client, 0, sizeof(client));
502 client.argv = rpc->argv;
503 if (start_command(&client))
506 write_or_die(client.in, heads->buf, heads->len);
508 rpc->alloc = http_post_buffer;
509 rpc->buf = xmalloc(rpc->alloc);
511 rpc->out = client.out;
512 strbuf_init(&rpc->result, 0);
514 strbuf_addf(&buf, "%s%s", url, svc);
515 rpc->service_url = strbuf_detach(&buf, NULL);
517 strbuf_addf(&buf, "Content-Type: application/x-%s-request", svc);
518 rpc->hdr_content_type = strbuf_detach(&buf, NULL);
520 strbuf_addf(&buf, "Accept: application/x-%s-result", svc);
521 rpc->hdr_accept = strbuf_detach(&buf, NULL);
524 int n = packet_read_line(rpc->out, rpc->buf, rpc->alloc);
529 err |= post_rpc(rpc);
531 strbuf_read(&rpc->result, client.out, 0);
538 err |= finish_command(&client);
539 free(rpc->service_url);
540 free(rpc->hdr_content_type);
541 free(rpc->hdr_accept);
543 strbuf_release(&buf);
547 static int fetch_dumb(int nr_heads, struct ref **to_fetch)
549 struct walker *walker;
550 char **targets = xmalloc(nr_heads * sizeof(char*));
554 die("dumb http transport does not support --depth");
555 for (i = 0; i < nr_heads; i++)
556 targets[i] = xstrdup(sha1_to_hex(to_fetch[i]->old_sha1));
558 walker = get_http_walker(url);
560 walker->get_tree = 1;
561 walker->get_history = 1;
562 walker->get_verbosely = options.verbosity >= 3;
563 walker->get_recover = 0;
564 ret = walker_fetch(walker, nr_heads, targets, NULL, NULL);
567 for (i = 0; i < nr_heads; i++)
571 return ret ? error("Fetch failed.") : 0;
574 static int fetch_git(struct discovery *heads,
575 int nr_heads, struct ref **to_fetch)
577 struct rpc_state rpc;
578 char *depth_arg = NULL;
580 int argc = 0, i, err;
582 argv = xmalloc((15 + nr_heads) * sizeof(char*));
583 argv[argc++] = "fetch-pack";
584 argv[argc++] = "--stateless-rpc";
585 argv[argc++] = "--lock-pack";
586 if (options.followtags)
587 argv[argc++] = "--include-tag";
589 argv[argc++] = "--thin";
590 if (options.verbosity >= 3) {
594 if (!options.progress)
595 argv[argc++] = "--no-progress";
597 struct strbuf buf = STRBUF_INIT;
598 strbuf_addf(&buf, "--depth=%lu", options.depth);
599 depth_arg = strbuf_detach(&buf, NULL);
600 argv[argc++] = depth_arg;
603 for (i = 0; i < nr_heads; i++) {
604 struct ref *ref = to_fetch[i];
605 if (!ref->name || !*ref->name)
606 die("cannot fetch by sha1 over smart http");
607 argv[argc++] = ref->name;
611 memset(&rpc, 0, sizeof(rpc));
612 rpc.service_name = "git-upload-pack",
614 rpc.gzip_request = 1;
616 err = rpc_service(&rpc, heads);
618 safe_write(1, rpc.result.buf, rpc.result.len);
619 strbuf_release(&rpc.result);
625 static int fetch(int nr_heads, struct ref **to_fetch)
627 struct discovery *d = discover_refs("git-upload-pack");
629 return fetch_git(d, nr_heads, to_fetch);
631 return fetch_dumb(nr_heads, to_fetch);
634 static void parse_fetch(struct strbuf *buf)
636 struct ref **to_fetch = NULL;
637 struct ref *list_head = NULL;
638 struct ref **list = &list_head;
639 int alloc_heads = 0, nr_heads = 0;
642 if (!prefixcmp(buf->buf, "fetch ")) {
643 char *p = buf->buf + strlen("fetch ");
646 unsigned char old_sha1[20];
648 if (strlen(p) < 40 || get_sha1_hex(p, old_sha1))
649 die("protocol error: expected sha/ref, got %s'", p);
655 die("protocol error: expected sha/ref, got %s'", p);
657 ref = alloc_ref(name);
658 hashcpy(ref->old_sha1, old_sha1);
663 ALLOC_GROW(to_fetch, nr_heads + 1, alloc_heads);
664 to_fetch[nr_heads++] = ref;
667 die("http transport does not support %s", buf->buf);
670 if (strbuf_getline(buf, stdin, '\n') == EOF)
676 if (fetch(nr_heads, to_fetch))
677 exit(128); /* error already reported */
678 free_refs(list_head);
686 static int push_dav(int nr_spec, char **specs)
688 const char **argv = xmalloc((10 + nr_spec) * sizeof(char*));
691 argv[argc++] = "http-push";
692 argv[argc++] = "--helper-status";
694 argv[argc++] = "--dry-run";
695 if (options.verbosity > 1)
696 argv[argc++] = "--verbose";
698 for (i = 0; i < nr_spec; i++)
699 argv[argc++] = specs[i];
702 if (run_command_v_opt(argv, RUN_GIT_CMD))
703 die("git-%s failed", argv[0]);
708 static int push_git(struct discovery *heads, int nr_spec, char **specs)
710 struct rpc_state rpc;
712 int argc = 0, i, err;
714 argv = xmalloc((10 + nr_spec) * sizeof(char*));
715 argv[argc++] = "send-pack";
716 argv[argc++] = "--stateless-rpc";
717 argv[argc++] = "--helper-status";
719 argv[argc++] = "--thin";
721 argv[argc++] = "--dry-run";
722 if (options.verbosity > 1)
723 argv[argc++] = "--verbose";
725 for (i = 0; i < nr_spec; i++)
726 argv[argc++] = specs[i];
729 memset(&rpc, 0, sizeof(rpc));
730 rpc.service_name = "git-receive-pack",
733 err = rpc_service(&rpc, heads);
735 safe_write(1, rpc.result.buf, rpc.result.len);
736 strbuf_release(&rpc.result);
741 static int push(int nr_spec, char **specs)
743 struct discovery *heads = discover_refs("git-receive-pack");
746 if (heads->proto_git)
747 ret = push_git(heads, nr_spec, specs);
749 ret = push_dav(nr_spec, specs);
750 free_discovery(heads);
754 static void parse_push(struct strbuf *buf)
757 int alloc_spec = 0, nr_spec = 0, i;
760 if (!prefixcmp(buf->buf, "push ")) {
761 ALLOC_GROW(specs, nr_spec + 1, alloc_spec);
762 specs[nr_spec++] = xstrdup(buf->buf + 5);
765 die("http transport does not support %s", buf->buf);
768 if (strbuf_getline(buf, stdin, '\n') == EOF)
774 if (push(nr_spec, specs))
775 exit(128); /* error already reported */
776 for (i = 0; i < nr_spec; i++)
784 int main(int argc, const char **argv)
786 struct strbuf buf = STRBUF_INIT;
789 git_extract_argv0_path(argv[0]);
790 setup_git_directory_gently(&nongit);
792 fprintf(stderr, "Remote needed\n");
796 options.verbosity = 1;
797 options.progress = !!isatty(2);
800 remote = remote_get(argv[1]);
803 end_url_with_slash(&buf, argv[2]);
805 end_url_with_slash(&buf, remote->url[0]);
808 url = strbuf_detach(&buf, NULL);
813 if (strbuf_getline(&buf, stdin, '\n') == EOF)
815 if (!prefixcmp(buf.buf, "fetch ")) {
817 die("Fetch attempted without a local repo");
820 } else if (!strcmp(buf.buf, "list") || !prefixcmp(buf.buf, "list ")) {
821 int for_push = !!strstr(buf.buf + 4, "for-push");
822 output_refs(get_refs(for_push));
824 } else if (!prefixcmp(buf.buf, "push ")) {
827 } else if (!prefixcmp(buf.buf, "option ")) {
828 char *name = buf.buf + strlen("option ");
829 char *value = strchr(name, ' ');
837 result = set_option(name, value);
841 printf("error invalid value\n");
843 printf("unsupported\n");
846 } else if (!strcmp(buf.buf, "capabilities")) {