7 #include "run-command.h"
9 #include "string-list.h"
11 #include "argv-array.h"
12 #include "credential.h"
13 #include "sha1-array.h"
14 #include "send-pack.h"
16 static struct remote *remote;
17 /* always ends with a trailing slash */
18 static struct strbuf url = STRBUF_INIT;
23 unsigned progress : 1,
24 check_self_contained_and_connected : 1,
30 /* One of the SEND_PACK_PUSH_CERT_* constants. */
33 static struct options options;
34 static struct string_list cas_options = STRING_LIST_INIT_DUP;
36 static int set_option(const char *name, const char *value)
38 if (!strcmp(name, "verbosity")) {
40 int v = strtol(value, &end, 10);
41 if (value == end || *end)
43 options.verbosity = v;
46 else if (!strcmp(name, "progress")) {
47 if (!strcmp(value, "true"))
49 else if (!strcmp(value, "false"))
55 else if (!strcmp(name, "depth")) {
57 unsigned long v = strtoul(value, &end, 10);
58 if (value == end || *end)
63 else if (!strcmp(name, "followtags")) {
64 if (!strcmp(value, "true"))
65 options.followtags = 1;
66 else if (!strcmp(value, "false"))
67 options.followtags = 0;
72 else if (!strcmp(name, "dry-run")) {
73 if (!strcmp(value, "true"))
75 else if (!strcmp(value, "false"))
81 else if (!strcmp(name, "check-connectivity")) {
82 if (!strcmp(value, "true"))
83 options.check_self_contained_and_connected = 1;
84 else if (!strcmp(value, "false"))
85 options.check_self_contained_and_connected = 0;
90 else if (!strcmp(name, "cas")) {
91 struct strbuf val = STRBUF_INIT;
92 strbuf_addf(&val, "--" CAS_OPT_NAME "=%s", value);
93 string_list_append(&cas_options, val.buf);
96 } else if (!strcmp(name, "cloning")) {
97 if (!strcmp(value, "true"))
99 else if (!strcmp(value, "false"))
104 } else if (!strcmp(name, "update-shallow")) {
105 if (!strcmp(value, "true"))
106 options.update_shallow = 1;
107 else if (!strcmp(value, "false"))
108 options.update_shallow = 0;
112 } else if (!strcmp(name, "pushcert")) {
113 if (!strcmp(value, "true"))
114 options.push_cert = SEND_PACK_PUSH_CERT_ALWAYS;
115 else if (!strcmp(value, "false"))
116 options.push_cert = SEND_PACK_PUSH_CERT_NEVER;
117 else if (!strcmp(value, "if-asked"))
118 options.push_cert = SEND_PACK_PUSH_CERT_IF_ASKED;
123 #if LIBCURL_VERSION_NUM >= 0x070a08
124 } else if (!strcmp(name, "family")) {
125 if (!strcmp(value, "ipv4"))
126 git_curl_ipresolve = CURL_IPRESOLVE_V4;
127 else if (!strcmp(value, "ipv6"))
128 git_curl_ipresolve = CURL_IPRESOLVE_V6;
129 else if (!strcmp(value, "all"))
130 git_curl_ipresolve = CURL_IPRESOLVE_WHATEVER;
134 #endif /* LIBCURL_VERSION_NUM >= 0x070a08 */
136 return 1 /* unsupported */;
146 struct sha1_array shallow;
147 unsigned proto_git : 1;
149 static struct discovery *last_discovery;
151 static struct ref *parse_git_refs(struct discovery *heads, int for_push)
153 struct ref *list = NULL;
154 get_remote_heads(-1, heads->buf, heads->len, &list,
155 for_push ? REF_NORMAL : 0, NULL, &heads->shallow);
159 static struct ref *parse_info_refs(struct discovery *heads)
161 char *data, *start, *mid;
165 struct ref *refs = NULL;
166 struct ref *ref = NULL;
167 struct ref *last_ref = NULL;
172 while (i < heads->len) {
178 if (data[i] == '\n') {
179 if (mid - start != 40)
180 die("%sinfo/refs not valid: is this a git repository?",
184 ref = alloc_ref(ref_name);
185 get_oid_hex(start, &ref->old_oid);
189 last_ref->next = ref;
196 ref = alloc_ref("HEAD");
197 if (!http_fetch_ref(url.buf, ref) &&
198 !resolve_remote_symref(ref, refs)) {
208 static void free_discovery(struct discovery *d)
211 if (d == last_discovery)
212 last_discovery = NULL;
213 free(d->shallow.sha1);
220 static int show_http_message(struct strbuf *type, struct strbuf *charset,
226 * We only show text/plain parts, as other types are likely
227 * to be ugly to look at on the user's terminal.
229 if (strcmp(type->buf, "text/plain"))
232 strbuf_reencode(msg, charset->buf, get_log_output_encoding());
240 eol = strchrnul(p, '\n');
241 fprintf(stderr, "remote: %.*s\n", (int)(eol - p), p);
247 static struct discovery *discover_refs(const char *service, int for_push)
249 struct strbuf exp = STRBUF_INIT;
250 struct strbuf type = STRBUF_INIT;
251 struct strbuf charset = STRBUF_INIT;
252 struct strbuf buffer = STRBUF_INIT;
253 struct strbuf refs_url = STRBUF_INIT;
254 struct strbuf effective_url = STRBUF_INIT;
255 struct discovery *last = last_discovery;
256 int http_ret, maybe_smart = 0;
257 struct http_get_options options;
259 if (last && !strcmp(service, last->service))
261 free_discovery(last);
263 strbuf_addf(&refs_url, "%sinfo/refs", url.buf);
264 if ((starts_with(url.buf, "http://") || starts_with(url.buf, "https://")) &&
265 git_env_bool("GIT_SMART_HTTP", 1)) {
267 if (!strchr(url.buf, '?'))
268 strbuf_addch(&refs_url, '?');
270 strbuf_addch(&refs_url, '&');
271 strbuf_addf(&refs_url, "service=%s", service);
274 memset(&options, 0, sizeof(options));
275 options.content_type = &type;
276 options.charset = &charset;
277 options.effective_url = &effective_url;
278 options.base_url = &url;
279 options.no_cache = 1;
280 options.keep_error = 1;
282 http_ret = http_get_strbuf(refs_url.buf, &buffer, &options);
286 case HTTP_MISSING_TARGET:
287 show_http_message(&type, &charset, &buffer);
288 die("repository '%s' not found", url.buf);
290 show_http_message(&type, &charset, &buffer);
291 die("Authentication failed for '%s'", url.buf);
293 show_http_message(&type, &charset, &buffer);
294 die("unable to access '%s': %s", url.buf, curl_errorstr);
297 last= xcalloc(1, sizeof(*last_discovery));
298 last->service = service;
299 last->buf_alloc = strbuf_detach(&buffer, &last->len);
300 last->buf = last->buf_alloc;
302 strbuf_addf(&exp, "application/x-%s-advertisement", service);
304 (5 <= last->len && last->buf[4] == '#') &&
305 !strbuf_cmp(&exp, &type)) {
309 * smart HTTP response; validate that the service
310 * pkt-line matches our request.
312 line = packet_read_line_buf(&last->buf, &last->len, NULL);
315 strbuf_addf(&exp, "# service=%s", service);
316 if (strcmp(line, exp.buf))
317 die("invalid server response; got '%s'", line);
318 strbuf_release(&exp);
320 /* The header can include additional metadata lines, up
321 * until a packet flush marker. Ignore these now, but
322 * in the future we might start to scan them.
324 while (packet_read_line_buf(&last->buf, &last->len, NULL))
331 last->refs = parse_git_refs(last, for_push);
333 last->refs = parse_info_refs(last);
335 strbuf_release(&refs_url);
336 strbuf_release(&exp);
337 strbuf_release(&type);
338 strbuf_release(&charset);
339 strbuf_release(&effective_url);
340 strbuf_release(&buffer);
341 last_discovery = last;
345 static struct ref *get_refs(int for_push)
347 struct discovery *heads;
350 heads = discover_refs("git-receive-pack", for_push);
352 heads = discover_refs("git-upload-pack", for_push);
357 static void output_refs(struct ref *refs)
360 for (posn = refs; posn; posn = posn->next) {
362 printf("@%s %s\n", posn->symref, posn->name);
364 printf("%s %s\n", oid_to_hex(&posn->old_oid), posn->name);
371 const char *service_name;
373 struct strbuf *stdin_preamble;
375 char *hdr_content_type;
383 struct strbuf result;
384 unsigned gzip_request : 1;
385 unsigned initial_buffer : 1;
388 static size_t rpc_out(void *ptr, size_t eltsize,
389 size_t nmemb, void *buffer_)
391 size_t max = eltsize * nmemb;
392 struct rpc_state *rpc = buffer_;
393 size_t avail = rpc->len - rpc->pos;
396 rpc->initial_buffer = 0;
397 avail = packet_read(rpc->out, NULL, NULL, rpc->buf, rpc->alloc, 0);
406 memcpy(ptr, rpc->buf + rpc->pos, avail);
411 #ifndef NO_CURL_IOCTL
412 static curlioerr rpc_ioctl(CURL *handle, int cmd, void *clientp)
414 struct rpc_state *rpc = clientp;
420 case CURLIOCMD_RESTARTREAD:
421 if (rpc->initial_buffer) {
425 error("unable to rewind rpc post data - try increasing http.postBuffer");
426 return CURLIOE_FAILRESTART;
429 return CURLIOE_UNKNOWNCMD;
434 static size_t rpc_in(char *ptr, size_t eltsize,
435 size_t nmemb, void *buffer_)
437 size_t size = eltsize * nmemb;
438 struct rpc_state *rpc = buffer_;
439 write_or_die(rpc->in, ptr, size);
443 static int run_slot(struct active_request_slot *slot,
444 struct slot_results *results)
447 struct slot_results results_buf;
450 results = &results_buf;
452 err = run_one_slot(slot, results);
454 if (err != HTTP_OK && err != HTTP_REAUTH) {
455 error("RPC failed; result=%d, HTTP code = %ld",
456 results->curl_result, results->http_code);
462 static int probe_rpc(struct rpc_state *rpc, struct slot_results *results)
464 struct active_request_slot *slot;
465 struct curl_slist *headers = NULL;
466 struct strbuf buf = STRBUF_INIT;
469 slot = get_active_slot();
471 headers = curl_slist_append(headers, rpc->hdr_content_type);
472 headers = curl_slist_append(headers, rpc->hdr_accept);
474 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
475 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
476 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
477 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, NULL);
478 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, "0000");
479 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, 4);
480 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
481 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer);
482 curl_easy_setopt(slot->curl, CURLOPT_FILE, &buf);
484 err = run_slot(slot, results);
486 curl_slist_free_all(headers);
487 strbuf_release(&buf);
491 static int post_rpc(struct rpc_state *rpc)
493 struct active_request_slot *slot;
494 struct curl_slist *headers = NULL;
495 int use_gzip = rpc->gzip_request;
496 char *gzip_body = NULL;
497 size_t gzip_size = 0;
498 int err, large_request = 0;
499 int needs_100_continue = 0;
501 /* Try to load the entire request, if we can fit it into the
502 * allocated buffer space we can use HTTP/1.0 and avoid the
503 * chunked encoding mess.
506 size_t left = rpc->alloc - rpc->len;
507 char *buf = rpc->buf + rpc->len;
510 if (left < LARGE_PACKET_MAX) {
516 n = packet_read(rpc->out, NULL, NULL, buf, left, 0);
523 struct slot_results results;
526 err = probe_rpc(rpc, &results);
527 if (err == HTTP_REAUTH)
528 credential_fill(&http_auth);
529 } while (err == HTTP_REAUTH);
533 if (results.auth_avail & CURLAUTH_GSSNEGOTIATE)
534 needs_100_continue = 1;
537 headers = curl_slist_append(headers, rpc->hdr_content_type);
538 headers = curl_slist_append(headers, rpc->hdr_accept);
539 headers = curl_slist_append(headers, needs_100_continue ?
540 "Expect: 100-continue" : "Expect:");
543 slot = get_active_slot();
545 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
546 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
547 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
548 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip");
551 /* The request body is large and the size cannot be predicted.
552 * We must use chunked encoding to send it.
554 headers = curl_slist_append(headers, "Transfer-Encoding: chunked");
555 rpc->initial_buffer = 1;
556 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out);
557 curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc);
558 #ifndef NO_CURL_IOCTL
559 curl_easy_setopt(slot->curl, CURLOPT_IOCTLFUNCTION, rpc_ioctl);
560 curl_easy_setopt(slot->curl, CURLOPT_IOCTLDATA, rpc);
562 if (options.verbosity > 1) {
563 fprintf(stderr, "POST %s (chunked)\n", rpc->service_name);
567 } else if (gzip_body) {
569 * If we are looping to retry authentication, then the previous
570 * run will have set up the headers and gzip buffer already,
571 * and we just need to send it.
573 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
574 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, gzip_size);
576 } else if (use_gzip && 1024 < rpc->len) {
577 /* The client backend isn't giving us compressed data so
578 * we can try to deflate it ourselves, this may save on.
584 git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION);
585 gzip_size = git_deflate_bound(&stream, rpc->len);
586 gzip_body = xmalloc(gzip_size);
588 stream.next_in = (unsigned char *)rpc->buf;
589 stream.avail_in = rpc->len;
590 stream.next_out = (unsigned char *)gzip_body;
591 stream.avail_out = gzip_size;
593 ret = git_deflate(&stream, Z_FINISH);
594 if (ret != Z_STREAM_END)
595 die("cannot deflate request; zlib deflate error %d", ret);
597 ret = git_deflate_end_gently(&stream);
599 die("cannot deflate request; zlib end error %d", ret);
601 gzip_size = stream.total_out;
603 headers = curl_slist_append(headers, "Content-Encoding: gzip");
604 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
605 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, gzip_size);
607 if (options.verbosity > 1) {
608 fprintf(stderr, "POST %s (gzip %lu to %lu bytes)\n",
610 (unsigned long)rpc->len, (unsigned long)gzip_size);
614 /* We know the complete request size in advance, use the
615 * more normal Content-Length approach.
617 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, rpc->buf);
618 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, rpc->len);
619 if (options.verbosity > 1) {
620 fprintf(stderr, "POST %s (%lu bytes)\n",
621 rpc->service_name, (unsigned long)rpc->len);
626 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
627 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, rpc_in);
628 curl_easy_setopt(slot->curl, CURLOPT_FILE, rpc);
630 err = run_slot(slot, NULL);
631 if (err == HTTP_REAUTH && !large_request) {
632 credential_fill(&http_auth);
638 curl_slist_free_all(headers);
643 static int rpc_service(struct rpc_state *rpc, struct discovery *heads)
645 const char *svc = rpc->service_name;
646 struct strbuf buf = STRBUF_INIT;
647 struct strbuf *preamble = rpc->stdin_preamble;
648 struct child_process client = CHILD_PROCESS_INIT;
654 client.argv = rpc->argv;
655 if (start_command(&client))
658 write_or_die(client.in, preamble->buf, preamble->len);
660 write_or_die(client.in, heads->buf, heads->len);
662 rpc->alloc = http_post_buffer;
663 rpc->buf = xmalloc(rpc->alloc);
665 rpc->out = client.out;
666 strbuf_init(&rpc->result, 0);
668 strbuf_addf(&buf, "%s%s", url.buf, svc);
669 rpc->service_url = strbuf_detach(&buf, NULL);
671 strbuf_addf(&buf, "Content-Type: application/x-%s-request", svc);
672 rpc->hdr_content_type = strbuf_detach(&buf, NULL);
674 strbuf_addf(&buf, "Accept: application/x-%s-result", svc);
675 rpc->hdr_accept = strbuf_detach(&buf, NULL);
678 int n = packet_read(rpc->out, NULL, NULL, rpc->buf, rpc->alloc, 0);
683 err |= post_rpc(rpc);
689 strbuf_read(&rpc->result, client.out, 0);
693 if (xread(client.out, buf, sizeof(buf)) <= 0)
700 err |= finish_command(&client);
701 free(rpc->service_url);
702 free(rpc->hdr_content_type);
703 free(rpc->hdr_accept);
705 strbuf_release(&buf);
709 static int fetch_dumb(int nr_heads, struct ref **to_fetch)
711 struct walker *walker;
712 char **targets = xmalloc(nr_heads * sizeof(char*));
716 die("dumb http transport does not support --depth");
717 for (i = 0; i < nr_heads; i++)
718 targets[i] = xstrdup(oid_to_hex(&to_fetch[i]->old_oid));
720 walker = get_http_walker(url.buf);
722 walker->get_tree = 1;
723 walker->get_history = 1;
724 walker->get_verbosely = options.verbosity >= 3;
725 walker->get_recover = 0;
726 ret = walker_fetch(walker, nr_heads, targets, NULL, NULL);
729 for (i = 0; i < nr_heads; i++)
733 return ret ? error("fetch failed.") : 0;
736 static int fetch_git(struct discovery *heads,
737 int nr_heads, struct ref **to_fetch)
739 struct rpc_state rpc;
740 struct strbuf preamble = STRBUF_INIT;
741 char *depth_arg = NULL;
742 int argc = 0, i, err;
743 const char *argv[17];
745 argv[argc++] = "fetch-pack";
746 argv[argc++] = "--stateless-rpc";
747 argv[argc++] = "--stdin";
748 argv[argc++] = "--lock-pack";
749 if (options.followtags)
750 argv[argc++] = "--include-tag";
752 argv[argc++] = "--thin";
753 if (options.verbosity >= 3) {
757 if (options.check_self_contained_and_connected)
758 argv[argc++] = "--check-self-contained-and-connected";
760 argv[argc++] = "--cloning";
761 if (options.update_shallow)
762 argv[argc++] = "--update-shallow";
763 if (!options.progress)
764 argv[argc++] = "--no-progress";
766 struct strbuf buf = STRBUF_INIT;
767 strbuf_addf(&buf, "--depth=%lu", options.depth);
768 depth_arg = strbuf_detach(&buf, NULL);
769 argv[argc++] = depth_arg;
771 argv[argc++] = url.buf;
774 for (i = 0; i < nr_heads; i++) {
775 struct ref *ref = to_fetch[i];
777 die("cannot fetch by sha1 over smart http");
778 packet_buf_write(&preamble, "%s %s\n",
779 oid_to_hex(&ref->old_oid), ref->name);
781 packet_buf_flush(&preamble);
783 memset(&rpc, 0, sizeof(rpc));
784 rpc.service_name = "git-upload-pack",
786 rpc.stdin_preamble = &preamble;
787 rpc.gzip_request = 1;
789 err = rpc_service(&rpc, heads);
791 write_or_die(1, rpc.result.buf, rpc.result.len);
792 strbuf_release(&rpc.result);
793 strbuf_release(&preamble);
798 static int fetch(int nr_heads, struct ref **to_fetch)
800 struct discovery *d = discover_refs("git-upload-pack", 0);
802 return fetch_git(d, nr_heads, to_fetch);
804 return fetch_dumb(nr_heads, to_fetch);
807 static void parse_fetch(struct strbuf *buf)
809 struct ref **to_fetch = NULL;
810 struct ref *list_head = NULL;
811 struct ref **list = &list_head;
812 int alloc_heads = 0, nr_heads = 0;
816 if (skip_prefix(buf->buf, "fetch ", &p)) {
819 struct object_id old_oid;
821 if (get_oid_hex(p, &old_oid))
822 die("protocol error: expected sha/ref, got %s'", p);
823 if (p[GIT_SHA1_HEXSZ] == ' ')
824 name = p + GIT_SHA1_HEXSZ + 1;
825 else if (!p[GIT_SHA1_HEXSZ])
828 die("protocol error: expected sha/ref, got %s'", p);
830 ref = alloc_ref(name);
831 oidcpy(&ref->old_oid, &old_oid);
836 ALLOC_GROW(to_fetch, nr_heads + 1, alloc_heads);
837 to_fetch[nr_heads++] = ref;
840 die("http transport does not support %s", buf->buf);
843 if (strbuf_getline(buf, stdin, '\n') == EOF)
849 if (fetch(nr_heads, to_fetch))
850 exit(128); /* error already reported */
851 free_refs(list_head);
859 static int push_dav(int nr_spec, char **specs)
861 const char **argv = xmalloc((10 + nr_spec) * sizeof(char*));
864 argv[argc++] = "http-push";
865 argv[argc++] = "--helper-status";
867 argv[argc++] = "--dry-run";
868 if (options.verbosity > 1)
869 argv[argc++] = "--verbose";
870 argv[argc++] = url.buf;
871 for (i = 0; i < nr_spec; i++)
872 argv[argc++] = specs[i];
875 if (run_command_v_opt(argv, RUN_GIT_CMD))
876 die("git-%s failed", argv[0]);
881 static int push_git(struct discovery *heads, int nr_spec, char **specs)
883 struct rpc_state rpc;
885 struct argv_array args;
886 struct string_list_item *cas_option;
887 struct strbuf preamble = STRBUF_INIT;
889 argv_array_init(&args);
890 argv_array_pushl(&args, "send-pack", "--stateless-rpc", "--helper-status",
894 argv_array_push(&args, "--thin");
896 argv_array_push(&args, "--dry-run");
897 if (options.push_cert == SEND_PACK_PUSH_CERT_ALWAYS)
898 argv_array_push(&args, "--signed=yes");
899 else if (options.push_cert == SEND_PACK_PUSH_CERT_IF_ASKED)
900 argv_array_push(&args, "--signed=if-asked");
901 if (options.verbosity == 0)
902 argv_array_push(&args, "--quiet");
903 else if (options.verbosity > 1)
904 argv_array_push(&args, "--verbose");
905 argv_array_push(&args, options.progress ? "--progress" : "--no-progress");
906 for_each_string_list_item(cas_option, &cas_options)
907 argv_array_push(&args, cas_option->string);
908 argv_array_push(&args, url.buf);
910 argv_array_push(&args, "--stdin");
911 for (i = 0; i < nr_spec; i++)
912 packet_buf_write(&preamble, "%s\n", specs[i]);
913 packet_buf_flush(&preamble);
915 memset(&rpc, 0, sizeof(rpc));
916 rpc.service_name = "git-receive-pack",
917 rpc.argv = args.argv;
918 rpc.stdin_preamble = &preamble;
920 err = rpc_service(&rpc, heads);
922 write_or_die(1, rpc.result.buf, rpc.result.len);
923 strbuf_release(&rpc.result);
924 strbuf_release(&preamble);
925 argv_array_clear(&args);
929 static int push(int nr_spec, char **specs)
931 struct discovery *heads = discover_refs("git-receive-pack", 1);
934 if (heads->proto_git)
935 ret = push_git(heads, nr_spec, specs);
937 ret = push_dav(nr_spec, specs);
938 free_discovery(heads);
942 static void parse_push(struct strbuf *buf)
945 int alloc_spec = 0, nr_spec = 0, i, ret;
948 if (starts_with(buf->buf, "push ")) {
949 ALLOC_GROW(specs, nr_spec + 1, alloc_spec);
950 specs[nr_spec++] = xstrdup(buf->buf + 5);
953 die("http transport does not support %s", buf->buf);
956 if (strbuf_getline(buf, stdin, '\n') == EOF)
962 ret = push(nr_spec, specs);
967 exit(128); /* error already reported */
970 for (i = 0; i < nr_spec; i++)
975 int main(int argc, const char **argv)
977 struct strbuf buf = STRBUF_INIT;
982 git_extract_argv0_path(argv[0]);
983 setup_git_directory_gently(&nongit);
985 error("remote-curl: usage: git remote-curl <remote> [<url>]");
989 options.verbosity = 1;
990 options.progress = !!isatty(2);
993 remote = remote_get(argv[1]);
996 end_url_with_slash(&url, argv[2]);
998 end_url_with_slash(&url, remote->url[0]);
1001 http_init(remote, url.buf, 0);
1006 if (strbuf_getline(&buf, stdin, '\n') == EOF) {
1008 error("remote-curl: error reading command stream from git");
1013 if (starts_with(buf.buf, "fetch ")) {
1015 die("remote-curl: fetch attempted without a local repo");
1018 } else if (!strcmp(buf.buf, "list") || starts_with(buf.buf, "list ")) {
1019 int for_push = !!strstr(buf.buf + 4, "for-push");
1020 output_refs(get_refs(for_push));
1022 } else if (starts_with(buf.buf, "push ")) {
1025 } else if (skip_prefix(buf.buf, "option ", &arg)) {
1026 char *value = strchr(arg, ' ');
1034 result = set_option(arg, value);
1037 else if (result < 0)
1038 printf("error invalid value\n");
1040 printf("unsupported\n");
1043 } else if (!strcmp(buf.buf, "capabilities")) {
1047 printf("check-connectivity\n");
1051 error("remote-curl: unknown command '%s' from git", buf.buf);