]> git.ipfire.org Git - thirdparty/git.git/blob - remote-curl.c
Merge branch 'js/apply-overwrite-rej-symlink-if-exists' into maint-2.30
[thirdparty/git.git] / remote-curl.c
1 #include "cache.h"
2 #include "config.h"
3 #include "remote.h"
4 #include "connect.h"
5 #include "strbuf.h"
6 #include "walker.h"
7 #include "http.h"
8 #include "exec-cmd.h"
9 #include "run-command.h"
10 #include "pkt-line.h"
11 #include "string-list.h"
12 #include "sideband.h"
13 #include "strvec.h"
14 #include "credential.h"
15 #include "oid-array.h"
16 #include "send-pack.h"
17 #include "protocol.h"
18 #include "quote.h"
19 #include "transport.h"
20
21 static struct remote *remote;
22 /* always ends with a trailing slash */
23 static struct strbuf url = STRBUF_INIT;
24
25 struct options {
26 int verbosity;
27 unsigned long depth;
28 char *deepen_since;
29 struct string_list deepen_not;
30 struct string_list push_options;
31 char *filter;
32 unsigned progress : 1,
33 check_self_contained_and_connected : 1,
34 cloning : 1,
35 update_shallow : 1,
36 followtags : 1,
37 dry_run : 1,
38 thin : 1,
39 /* One of the SEND_PACK_PUSH_CERT_* constants. */
40 push_cert : 2,
41 deepen_relative : 1,
42
43 /* see documentation of corresponding flag in fetch-pack.h */
44 from_promisor : 1,
45
46 atomic : 1,
47 object_format : 1,
48 force_if_includes : 1;
49 const struct git_hash_algo *hash_algo;
50 };
51 static struct options options;
52 static struct string_list cas_options = STRING_LIST_INIT_DUP;
53
54 static int set_option(const char *name, const char *value)
55 {
56 if (!strcmp(name, "verbosity")) {
57 char *end;
58 int v = strtol(value, &end, 10);
59 if (value == end || *end)
60 return -1;
61 options.verbosity = v;
62 return 0;
63 }
64 else if (!strcmp(name, "progress")) {
65 if (!strcmp(value, "true"))
66 options.progress = 1;
67 else if (!strcmp(value, "false"))
68 options.progress = 0;
69 else
70 return -1;
71 return 0;
72 }
73 else if (!strcmp(name, "depth")) {
74 char *end;
75 unsigned long v = strtoul(value, &end, 10);
76 if (value == end || *end)
77 return -1;
78 options.depth = v;
79 return 0;
80 }
81 else if (!strcmp(name, "deepen-since")) {
82 options.deepen_since = xstrdup(value);
83 return 0;
84 }
85 else if (!strcmp(name, "deepen-not")) {
86 string_list_append(&options.deepen_not, value);
87 return 0;
88 }
89 else if (!strcmp(name, "deepen-relative")) {
90 if (!strcmp(value, "true"))
91 options.deepen_relative = 1;
92 else if (!strcmp(value, "false"))
93 options.deepen_relative = 0;
94 else
95 return -1;
96 return 0;
97 }
98 else if (!strcmp(name, "followtags")) {
99 if (!strcmp(value, "true"))
100 options.followtags = 1;
101 else if (!strcmp(value, "false"))
102 options.followtags = 0;
103 else
104 return -1;
105 return 0;
106 }
107 else if (!strcmp(name, "dry-run")) {
108 if (!strcmp(value, "true"))
109 options.dry_run = 1;
110 else if (!strcmp(value, "false"))
111 options.dry_run = 0;
112 else
113 return -1;
114 return 0;
115 }
116 else if (!strcmp(name, "check-connectivity")) {
117 if (!strcmp(value, "true"))
118 options.check_self_contained_and_connected = 1;
119 else if (!strcmp(value, "false"))
120 options.check_self_contained_and_connected = 0;
121 else
122 return -1;
123 return 0;
124 }
125 else if (!strcmp(name, "cas")) {
126 struct strbuf val = STRBUF_INIT;
127 strbuf_addstr(&val, "--force-with-lease=");
128 if (*value != '"')
129 strbuf_addstr(&val, value);
130 else if (unquote_c_style(&val, value, NULL))
131 return -1;
132 string_list_append(&cas_options, val.buf);
133 strbuf_release(&val);
134 return 0;
135 } else if (!strcmp(name, TRANS_OPT_FORCE_IF_INCLUDES)) {
136 if (!strcmp(value, "true"))
137 options.force_if_includes = 1;
138 else if (!strcmp(value, "false"))
139 options.force_if_includes = 0;
140 else
141 return -1;
142 return 0;
143 } else if (!strcmp(name, "cloning")) {
144 if (!strcmp(value, "true"))
145 options.cloning = 1;
146 else if (!strcmp(value, "false"))
147 options.cloning = 0;
148 else
149 return -1;
150 return 0;
151 } else if (!strcmp(name, "update-shallow")) {
152 if (!strcmp(value, "true"))
153 options.update_shallow = 1;
154 else if (!strcmp(value, "false"))
155 options.update_shallow = 0;
156 else
157 return -1;
158 return 0;
159 } else if (!strcmp(name, "pushcert")) {
160 if (!strcmp(value, "true"))
161 options.push_cert = SEND_PACK_PUSH_CERT_ALWAYS;
162 else if (!strcmp(value, "false"))
163 options.push_cert = SEND_PACK_PUSH_CERT_NEVER;
164 else if (!strcmp(value, "if-asked"))
165 options.push_cert = SEND_PACK_PUSH_CERT_IF_ASKED;
166 else
167 return -1;
168 return 0;
169 } else if (!strcmp(name, "atomic")) {
170 if (!strcmp(value, "true"))
171 options.atomic = 1;
172 else if (!strcmp(value, "false"))
173 options.atomic = 0;
174 else
175 return -1;
176 return 0;
177 } else if (!strcmp(name, "push-option")) {
178 if (*value != '"')
179 string_list_append(&options.push_options, value);
180 else {
181 struct strbuf unquoted = STRBUF_INIT;
182 if (unquote_c_style(&unquoted, value, NULL) < 0)
183 die(_("invalid quoting in push-option value: '%s'"), value);
184 string_list_append_nodup(&options.push_options,
185 strbuf_detach(&unquoted, NULL));
186 }
187 return 0;
188
189 #if LIBCURL_VERSION_NUM >= 0x070a08
190 } else if (!strcmp(name, "family")) {
191 if (!strcmp(value, "ipv4"))
192 git_curl_ipresolve = CURL_IPRESOLVE_V4;
193 else if (!strcmp(value, "ipv6"))
194 git_curl_ipresolve = CURL_IPRESOLVE_V6;
195 else if (!strcmp(value, "all"))
196 git_curl_ipresolve = CURL_IPRESOLVE_WHATEVER;
197 else
198 return -1;
199 return 0;
200 #endif /* LIBCURL_VERSION_NUM >= 0x070a08 */
201 } else if (!strcmp(name, "from-promisor")) {
202 options.from_promisor = 1;
203 return 0;
204 } else if (!strcmp(name, "filter")) {
205 options.filter = xstrdup(value);
206 return 0;
207 } else if (!strcmp(name, "object-format")) {
208 int algo;
209 options.object_format = 1;
210 if (strcmp(value, "true")) {
211 algo = hash_algo_by_name(value);
212 if (algo == GIT_HASH_UNKNOWN)
213 die("unknown object format '%s'", value);
214 options.hash_algo = &hash_algos[algo];
215 }
216 return 0;
217 } else {
218 return 1 /* unsupported */;
219 }
220 }
221
222 struct discovery {
223 char *service;
224 char *buf_alloc;
225 char *buf;
226 size_t len;
227 struct ref *refs;
228 struct oid_array shallow;
229 enum protocol_version version;
230 unsigned proto_git : 1;
231 };
232 static struct discovery *last_discovery;
233
234 static struct ref *parse_git_refs(struct discovery *heads, int for_push)
235 {
236 struct ref *list = NULL;
237 struct packet_reader reader;
238
239 packet_reader_init(&reader, -1, heads->buf, heads->len,
240 PACKET_READ_CHOMP_NEWLINE |
241 PACKET_READ_GENTLE_ON_EOF |
242 PACKET_READ_DIE_ON_ERR_PACKET);
243
244 heads->version = discover_version(&reader);
245 switch (heads->version) {
246 case protocol_v2:
247 /*
248 * Do nothing. This isn't a list of refs but rather a
249 * capability advertisement. Client would have run
250 * 'stateless-connect' so we'll dump this capability listing
251 * and let them request the refs themselves.
252 */
253 break;
254 case protocol_v1:
255 case protocol_v0:
256 get_remote_heads(&reader, &list, for_push ? REF_NORMAL : 0,
257 NULL, &heads->shallow);
258 options.hash_algo = reader.hash_algo;
259 break;
260 case protocol_unknown_version:
261 BUG("unknown protocol version");
262 }
263
264 return list;
265 }
266
267 static const struct git_hash_algo *detect_hash_algo(struct discovery *heads)
268 {
269 const char *p = memchr(heads->buf, '\t', heads->len);
270 int algo;
271 if (!p)
272 return the_hash_algo;
273
274 algo = hash_algo_by_length((p - heads->buf) / 2);
275 if (algo == GIT_HASH_UNKNOWN)
276 return NULL;
277 return &hash_algos[algo];
278 }
279
280 static struct ref *parse_info_refs(struct discovery *heads)
281 {
282 char *data, *start, *mid;
283 char *ref_name;
284 int i = 0;
285
286 struct ref *refs = NULL;
287 struct ref *ref = NULL;
288 struct ref *last_ref = NULL;
289
290 options.hash_algo = detect_hash_algo(heads);
291 if (!options.hash_algo)
292 die("%sinfo/refs not valid: could not determine hash algorithm; "
293 "is this a git repository?",
294 transport_anonymize_url(url.buf));
295
296 data = heads->buf;
297 start = NULL;
298 mid = data;
299 while (i < heads->len) {
300 if (!start) {
301 start = &data[i];
302 }
303 if (data[i] == '\t')
304 mid = &data[i];
305 if (data[i] == '\n') {
306 if (mid - start != options.hash_algo->hexsz)
307 die(_("%sinfo/refs not valid: is this a git repository?"),
308 transport_anonymize_url(url.buf));
309 data[i] = 0;
310 ref_name = mid + 1;
311 ref = alloc_ref(ref_name);
312 get_oid_hex_algop(start, &ref->old_oid, options.hash_algo);
313 if (!refs)
314 refs = ref;
315 if (last_ref)
316 last_ref->next = ref;
317 last_ref = ref;
318 start = NULL;
319 }
320 i++;
321 }
322
323 ref = alloc_ref("HEAD");
324 if (!http_fetch_ref(url.buf, ref) &&
325 !resolve_remote_symref(ref, refs)) {
326 ref->next = refs;
327 refs = ref;
328 } else {
329 free(ref);
330 }
331
332 return refs;
333 }
334
335 static void free_discovery(struct discovery *d)
336 {
337 if (d) {
338 if (d == last_discovery)
339 last_discovery = NULL;
340 free(d->shallow.oid);
341 free(d->buf_alloc);
342 free_refs(d->refs);
343 free(d->service);
344 free(d);
345 }
346 }
347
348 static int show_http_message(struct strbuf *type, struct strbuf *charset,
349 struct strbuf *msg)
350 {
351 const char *p, *eol;
352
353 /*
354 * We only show text/plain parts, as other types are likely
355 * to be ugly to look at on the user's terminal.
356 */
357 if (strcmp(type->buf, "text/plain"))
358 return -1;
359 if (charset->len)
360 strbuf_reencode(msg, charset->buf, get_log_output_encoding());
361
362 strbuf_trim(msg);
363 if (!msg->len)
364 return -1;
365
366 p = msg->buf;
367 do {
368 eol = strchrnul(p, '\n');
369 fprintf(stderr, "remote: %.*s\n", (int)(eol - p), p);
370 p = eol + 1;
371 } while(*eol);
372 return 0;
373 }
374
375 static int get_protocol_http_header(enum protocol_version version,
376 struct strbuf *header)
377 {
378 if (version > 0) {
379 strbuf_addf(header, GIT_PROTOCOL_HEADER ": version=%d",
380 version);
381
382 return 1;
383 }
384
385 return 0;
386 }
387
388 static void check_smart_http(struct discovery *d, const char *service,
389 struct strbuf *type)
390 {
391 const char *p;
392 struct packet_reader reader;
393
394 /*
395 * If we don't see x-$service-advertisement, then it's not smart-http.
396 * But once we do, we commit to it and assume any other protocol
397 * violations are hard errors.
398 */
399 if (!skip_prefix(type->buf, "application/x-", &p) ||
400 !skip_prefix(p, service, &p) ||
401 strcmp(p, "-advertisement"))
402 return;
403
404 packet_reader_init(&reader, -1, d->buf, d->len,
405 PACKET_READ_CHOMP_NEWLINE |
406 PACKET_READ_DIE_ON_ERR_PACKET);
407 if (packet_reader_read(&reader) != PACKET_READ_NORMAL)
408 die(_("invalid server response; expected service, got flush packet"));
409
410 if (skip_prefix(reader.line, "# service=", &p) && !strcmp(p, service)) {
411 /*
412 * The header can include additional metadata lines, up
413 * until a packet flush marker. Ignore these now, but
414 * in the future we might start to scan them.
415 */
416 for (;;) {
417 packet_reader_read(&reader);
418 if (reader.pktlen <= 0) {
419 break;
420 }
421 }
422
423 /*
424 * v0 smart http; callers expect us to soak up the
425 * service and header packets
426 */
427 d->buf = reader.src_buffer;
428 d->len = reader.src_len;
429 d->proto_git = 1;
430
431 } else if (!strcmp(reader.line, "version 2")) {
432 /*
433 * v2 smart http; do not consume version packet, which will
434 * be handled elsewhere.
435 */
436 d->proto_git = 1;
437
438 } else {
439 die(_("invalid server response; got '%s'"), reader.line);
440 }
441 }
442
443 static struct discovery *discover_refs(const char *service, int for_push)
444 {
445 struct strbuf type = STRBUF_INIT;
446 struct strbuf charset = STRBUF_INIT;
447 struct strbuf buffer = STRBUF_INIT;
448 struct strbuf refs_url = STRBUF_INIT;
449 struct strbuf effective_url = STRBUF_INIT;
450 struct strbuf protocol_header = STRBUF_INIT;
451 struct string_list extra_headers = STRING_LIST_INIT_DUP;
452 struct discovery *last = last_discovery;
453 int http_ret, maybe_smart = 0;
454 struct http_get_options http_options;
455 enum protocol_version version = get_protocol_version_config();
456
457 if (last && !strcmp(service, last->service))
458 return last;
459 free_discovery(last);
460
461 strbuf_addf(&refs_url, "%sinfo/refs", url.buf);
462 if ((starts_with(url.buf, "http://") || starts_with(url.buf, "https://")) &&
463 git_env_bool("GIT_SMART_HTTP", 1)) {
464 maybe_smart = 1;
465 if (!strchr(url.buf, '?'))
466 strbuf_addch(&refs_url, '?');
467 else
468 strbuf_addch(&refs_url, '&');
469 strbuf_addf(&refs_url, "service=%s", service);
470 }
471
472 /*
473 * NEEDSWORK: If we are trying to use protocol v2 and we are planning
474 * to perform a push, then fallback to v0 since the client doesn't know
475 * how to push yet using v2.
476 */
477 if (version == protocol_v2 && !strcmp("git-receive-pack", service))
478 version = protocol_v0;
479
480 /* Add the extra Git-Protocol header */
481 if (get_protocol_http_header(version, &protocol_header))
482 string_list_append(&extra_headers, protocol_header.buf);
483
484 memset(&http_options, 0, sizeof(http_options));
485 http_options.content_type = &type;
486 http_options.charset = &charset;
487 http_options.effective_url = &effective_url;
488 http_options.base_url = &url;
489 http_options.extra_headers = &extra_headers;
490 http_options.initial_request = 1;
491 http_options.no_cache = 1;
492
493 http_ret = http_get_strbuf(refs_url.buf, &buffer, &http_options);
494 switch (http_ret) {
495 case HTTP_OK:
496 break;
497 case HTTP_MISSING_TARGET:
498 show_http_message(&type, &charset, &buffer);
499 die(_("repository '%s' not found"),
500 transport_anonymize_url(url.buf));
501 case HTTP_NOAUTH:
502 show_http_message(&type, &charset, &buffer);
503 die(_("Authentication failed for '%s'"),
504 transport_anonymize_url(url.buf));
505 default:
506 show_http_message(&type, &charset, &buffer);
507 die(_("unable to access '%s': %s"),
508 transport_anonymize_url(url.buf), curl_errorstr);
509 }
510
511 if (options.verbosity && !starts_with(refs_url.buf, url.buf)) {
512 char *u = transport_anonymize_url(url.buf);
513 warning(_("redirecting to %s"), u);
514 free(u);
515 }
516
517 last= xcalloc(1, sizeof(*last_discovery));
518 last->service = xstrdup(service);
519 last->buf_alloc = strbuf_detach(&buffer, &last->len);
520 last->buf = last->buf_alloc;
521
522 if (maybe_smart)
523 check_smart_http(last, service, &type);
524
525 if (last->proto_git)
526 last->refs = parse_git_refs(last, for_push);
527 else
528 last->refs = parse_info_refs(last);
529
530 strbuf_release(&refs_url);
531 strbuf_release(&type);
532 strbuf_release(&charset);
533 strbuf_release(&effective_url);
534 strbuf_release(&buffer);
535 strbuf_release(&protocol_header);
536 string_list_clear(&extra_headers, 0);
537 last_discovery = last;
538 return last;
539 }
540
541 static struct ref *get_refs(int for_push)
542 {
543 struct discovery *heads;
544
545 if (for_push)
546 heads = discover_refs("git-receive-pack", for_push);
547 else
548 heads = discover_refs("git-upload-pack", for_push);
549
550 return heads->refs;
551 }
552
553 static void output_refs(struct ref *refs)
554 {
555 struct ref *posn;
556 if (options.object_format && options.hash_algo) {
557 printf(":object-format %s\n", options.hash_algo->name);
558 }
559 for (posn = refs; posn; posn = posn->next) {
560 if (posn->symref)
561 printf("@%s %s\n", posn->symref, posn->name);
562 else
563 printf("%s %s\n", hash_to_hex_algop(posn->old_oid.hash,
564 options.hash_algo),
565 posn->name);
566 }
567 printf("\n");
568 fflush(stdout);
569 }
570
571 struct rpc_state {
572 const char *service_name;
573 char *service_url;
574 char *hdr_content_type;
575 char *hdr_accept;
576 char *protocol_header;
577 char *buf;
578 size_t alloc;
579 size_t len;
580 size_t pos;
581 int in;
582 int out;
583 int any_written;
584 unsigned gzip_request : 1;
585 unsigned initial_buffer : 1;
586
587 /*
588 * Whenever a pkt-line is read into buf, append the 4 characters
589 * denoting its length before appending the payload.
590 */
591 unsigned write_line_lengths : 1;
592
593 /*
594 * Used by rpc_out; initialize to 0. This is true if a flush has been
595 * read, but the corresponding line length (if write_line_lengths is
596 * true) and EOF have not been sent to libcurl. Since each flush marks
597 * the end of a request, each flush must be completely sent before any
598 * further reading occurs.
599 */
600 unsigned flush_read_but_not_sent : 1;
601 };
602
603 /*
604 * Appends the result of reading from rpc->out to the string represented by
605 * rpc->buf and rpc->len if there is enough space. Returns 1 if there was
606 * enough space, 0 otherwise.
607 *
608 * If rpc->write_line_lengths is true, appends the line length as a 4-byte
609 * hexadecimal string before appending the result described above.
610 *
611 * Writes the total number of bytes appended into appended.
612 */
613 static int rpc_read_from_out(struct rpc_state *rpc, int options,
614 size_t *appended,
615 enum packet_read_status *status) {
616 size_t left;
617 char *buf;
618 int pktlen_raw;
619
620 if (rpc->write_line_lengths) {
621 left = rpc->alloc - rpc->len - 4;
622 buf = rpc->buf + rpc->len + 4;
623 } else {
624 left = rpc->alloc - rpc->len;
625 buf = rpc->buf + rpc->len;
626 }
627
628 if (left < LARGE_PACKET_MAX)
629 return 0;
630
631 *status = packet_read_with_status(rpc->out, NULL, NULL, buf,
632 left, &pktlen_raw, options);
633 if (*status != PACKET_READ_EOF) {
634 *appended = pktlen_raw + (rpc->write_line_lengths ? 4 : 0);
635 rpc->len += *appended;
636 }
637
638 if (rpc->write_line_lengths) {
639 switch (*status) {
640 case PACKET_READ_EOF:
641 if (!(options & PACKET_READ_GENTLE_ON_EOF))
642 die(_("shouldn't have EOF when not gentle on EOF"));
643 break;
644 case PACKET_READ_NORMAL:
645 set_packet_header(buf - 4, *appended);
646 break;
647 case PACKET_READ_DELIM:
648 memcpy(buf - 4, "0001", 4);
649 break;
650 case PACKET_READ_FLUSH:
651 memcpy(buf - 4, "0000", 4);
652 break;
653 case PACKET_READ_RESPONSE_END:
654 die(_("remote server sent stateless separator"));
655 }
656 }
657
658 return 1;
659 }
660
661 static size_t rpc_out(void *ptr, size_t eltsize,
662 size_t nmemb, void *buffer_)
663 {
664 size_t max = eltsize * nmemb;
665 struct rpc_state *rpc = buffer_;
666 size_t avail = rpc->len - rpc->pos;
667 enum packet_read_status status;
668
669 if (!avail) {
670 rpc->initial_buffer = 0;
671 rpc->len = 0;
672 rpc->pos = 0;
673 if (!rpc->flush_read_but_not_sent) {
674 if (!rpc_read_from_out(rpc, 0, &avail, &status))
675 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
676 if (status == PACKET_READ_FLUSH)
677 rpc->flush_read_but_not_sent = 1;
678 }
679 /*
680 * If flush_read_but_not_sent is true, we have already read one
681 * full request but have not fully sent it + EOF, which is why
682 * we need to refrain from reading.
683 */
684 }
685 if (rpc->flush_read_but_not_sent) {
686 if (!avail) {
687 /*
688 * The line length either does not need to be sent at
689 * all or has already been completely sent. Now we can
690 * return 0, indicating EOF, meaning that the flush has
691 * been fully sent.
692 */
693 rpc->flush_read_but_not_sent = 0;
694 return 0;
695 }
696 /*
697 * If avail is non-zero, the line length for the flush still
698 * hasn't been fully sent. Proceed with sending the line
699 * length.
700 */
701 }
702
703 if (max < avail)
704 avail = max;
705 memcpy(ptr, rpc->buf + rpc->pos, avail);
706 rpc->pos += avail;
707 return avail;
708 }
709
710 #ifndef NO_CURL_SEEK
711 static int rpc_seek(void *clientp, curl_off_t offset, int origin)
712 {
713 struct rpc_state *rpc = clientp;
714
715 if (origin != SEEK_SET)
716 BUG("rpc_seek only handles SEEK_SET, not %d", origin);
717
718 if (rpc->initial_buffer) {
719 if (offset < 0 || offset > rpc->len) {
720 error("curl seek would be outside of rpc buffer");
721 return CURL_SEEKFUNC_FAIL;
722 }
723 rpc->pos = offset;
724 return CURL_SEEKFUNC_OK;
725 }
726 error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
727 return CURL_SEEKFUNC_FAIL;
728 }
729 #endif
730
731 struct check_pktline_state {
732 char len_buf[4];
733 int len_filled;
734 int remaining;
735 };
736
737 static void check_pktline(struct check_pktline_state *state, const char *ptr, size_t size)
738 {
739 while (size) {
740 if (!state->remaining) {
741 int digits_remaining = 4 - state->len_filled;
742 if (digits_remaining > size)
743 digits_remaining = size;
744 memcpy(&state->len_buf[state->len_filled], ptr, digits_remaining);
745 state->len_filled += digits_remaining;
746 ptr += digits_remaining;
747 size -= digits_remaining;
748
749 if (state->len_filled == 4) {
750 state->remaining = packet_length(state->len_buf);
751 if (state->remaining < 0) {
752 die(_("remote-curl: bad line length character: %.4s"), state->len_buf);
753 } else if (state->remaining == 2) {
754 die(_("remote-curl: unexpected response end packet"));
755 } else if (state->remaining < 4) {
756 state->remaining = 0;
757 } else {
758 state->remaining -= 4;
759 }
760 state->len_filled = 0;
761 }
762 }
763
764 if (state->remaining) {
765 int remaining = state->remaining;
766 if (remaining > size)
767 remaining = size;
768 ptr += remaining;
769 size -= remaining;
770 state->remaining -= remaining;
771 }
772 }
773 }
774
775 struct rpc_in_data {
776 struct rpc_state *rpc;
777 struct active_request_slot *slot;
778 int check_pktline;
779 struct check_pktline_state pktline_state;
780 };
781
782 /*
783 * A callback for CURLOPT_WRITEFUNCTION. The return value is the bytes consumed
784 * from ptr.
785 */
786 static size_t rpc_in(char *ptr, size_t eltsize,
787 size_t nmemb, void *buffer_)
788 {
789 size_t size = eltsize * nmemb;
790 struct rpc_in_data *data = buffer_;
791 long response_code;
792
793 if (curl_easy_getinfo(data->slot->curl, CURLINFO_RESPONSE_CODE,
794 &response_code) != CURLE_OK)
795 return size;
796 if (response_code >= 300)
797 return size;
798 if (size)
799 data->rpc->any_written = 1;
800 if (data->check_pktline)
801 check_pktline(&data->pktline_state, ptr, size);
802 write_or_die(data->rpc->in, ptr, size);
803 return size;
804 }
805
806 static int run_slot(struct active_request_slot *slot,
807 struct slot_results *results)
808 {
809 int err;
810 struct slot_results results_buf;
811
812 if (!results)
813 results = &results_buf;
814
815 err = run_one_slot(slot, results);
816
817 if (err != HTTP_OK && err != HTTP_REAUTH) {
818 struct strbuf msg = STRBUF_INIT;
819 if (results->http_code && results->http_code != 200)
820 strbuf_addf(&msg, "HTTP %ld", results->http_code);
821 if (results->curl_result != CURLE_OK) {
822 if (msg.len)
823 strbuf_addch(&msg, ' ');
824 strbuf_addf(&msg, "curl %d", results->curl_result);
825 if (curl_errorstr[0]) {
826 strbuf_addch(&msg, ' ');
827 strbuf_addstr(&msg, curl_errorstr);
828 }
829 }
830 error(_("RPC failed; %s"), msg.buf);
831 strbuf_release(&msg);
832 }
833
834 return err;
835 }
836
837 static int probe_rpc(struct rpc_state *rpc, struct slot_results *results)
838 {
839 struct active_request_slot *slot;
840 struct curl_slist *headers = http_copy_default_headers();
841 struct strbuf buf = STRBUF_INIT;
842 int err;
843
844 slot = get_active_slot();
845
846 headers = curl_slist_append(headers, rpc->hdr_content_type);
847 headers = curl_slist_append(headers, rpc->hdr_accept);
848
849 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
850 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
851 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
852 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, NULL);
853 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, "0000");
854 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE, 4);
855 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
856 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer);
857 curl_easy_setopt(slot->curl, CURLOPT_FILE, &buf);
858
859 err = run_slot(slot, results);
860
861 curl_slist_free_all(headers);
862 strbuf_release(&buf);
863 return err;
864 }
865
866 static curl_off_t xcurl_off_t(size_t len)
867 {
868 uintmax_t size = len;
869 if (size > maximum_signed_value_of_type(curl_off_t))
870 die(_("cannot handle pushes this big"));
871 return (curl_off_t)size;
872 }
873
874 /*
875 * If flush_received is true, do not attempt to read any more; just use what's
876 * in rpc->buf.
877 */
878 static int post_rpc(struct rpc_state *rpc, int stateless_connect, int flush_received)
879 {
880 struct active_request_slot *slot;
881 struct curl_slist *headers = http_copy_default_headers();
882 int use_gzip = rpc->gzip_request;
883 char *gzip_body = NULL;
884 size_t gzip_size = 0;
885 int err, large_request = 0;
886 int needs_100_continue = 0;
887 struct rpc_in_data rpc_in_data;
888
889 /* Try to load the entire request, if we can fit it into the
890 * allocated buffer space we can use HTTP/1.0 and avoid the
891 * chunked encoding mess.
892 */
893 if (!flush_received) {
894 while (1) {
895 size_t n;
896 enum packet_read_status status;
897
898 if (!rpc_read_from_out(rpc, 0, &n, &status)) {
899 large_request = 1;
900 use_gzip = 0;
901 break;
902 }
903 if (status == PACKET_READ_FLUSH)
904 break;
905 }
906 }
907
908 if (large_request) {
909 struct slot_results results;
910
911 do {
912 err = probe_rpc(rpc, &results);
913 if (err == HTTP_REAUTH)
914 credential_fill(&http_auth);
915 } while (err == HTTP_REAUTH);
916 if (err != HTTP_OK)
917 return -1;
918
919 if (results.auth_avail & CURLAUTH_GSSNEGOTIATE)
920 needs_100_continue = 1;
921 }
922
923 headers = curl_slist_append(headers, rpc->hdr_content_type);
924 headers = curl_slist_append(headers, rpc->hdr_accept);
925 headers = curl_slist_append(headers, needs_100_continue ?
926 "Expect: 100-continue" : "Expect:");
927
928 /* Add the extra Git-Protocol header */
929 if (rpc->protocol_header)
930 headers = curl_slist_append(headers, rpc->protocol_header);
931
932 retry:
933 slot = get_active_slot();
934
935 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
936 curl_easy_setopt(slot->curl, CURLOPT_POST, 1);
937 curl_easy_setopt(slot->curl, CURLOPT_URL, rpc->service_url);
938 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "");
939
940 if (large_request) {
941 /* The request body is large and the size cannot be predicted.
942 * We must use chunked encoding to send it.
943 */
944 headers = curl_slist_append(headers, "Transfer-Encoding: chunked");
945 rpc->initial_buffer = 1;
946 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, rpc_out);
947 curl_easy_setopt(slot->curl, CURLOPT_INFILE, rpc);
948 #ifndef NO_CURL_SEEK
949 curl_easy_setopt(slot->curl, CURLOPT_SEEKFUNCTION, rpc_seek);
950 curl_easy_setopt(slot->curl, CURLOPT_SEEKDATA, rpc);
951 #endif
952 if (options.verbosity > 1) {
953 fprintf(stderr, "POST %s (chunked)\n", rpc->service_name);
954 fflush(stderr);
955 }
956
957 } else if (gzip_body) {
958 /*
959 * If we are looping to retry authentication, then the previous
960 * run will have set up the headers and gzip buffer already,
961 * and we just need to send it.
962 */
963 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
964 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(gzip_size));
965
966 } else if (use_gzip && 1024 < rpc->len) {
967 /* The client backend isn't giving us compressed data so
968 * we can try to deflate it ourselves, this may save on
969 * the transfer time.
970 */
971 git_zstream stream;
972 int ret;
973
974 git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION);
975 gzip_size = git_deflate_bound(&stream, rpc->len);
976 gzip_body = xmalloc(gzip_size);
977
978 stream.next_in = (unsigned char *)rpc->buf;
979 stream.avail_in = rpc->len;
980 stream.next_out = (unsigned char *)gzip_body;
981 stream.avail_out = gzip_size;
982
983 ret = git_deflate(&stream, Z_FINISH);
984 if (ret != Z_STREAM_END)
985 die(_("cannot deflate request; zlib deflate error %d"), ret);
986
987 ret = git_deflate_end_gently(&stream);
988 if (ret != Z_OK)
989 die(_("cannot deflate request; zlib end error %d"), ret);
990
991 gzip_size = stream.total_out;
992
993 headers = curl_slist_append(headers, "Content-Encoding: gzip");
994 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, gzip_body);
995 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(gzip_size));
996
997 if (options.verbosity > 1) {
998 fprintf(stderr, "POST %s (gzip %lu to %lu bytes)\n",
999 rpc->service_name,
1000 (unsigned long)rpc->len, (unsigned long)gzip_size);
1001 fflush(stderr);
1002 }
1003 } else {
1004 /* We know the complete request size in advance, use the
1005 * more normal Content-Length approach.
1006 */
1007 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, rpc->buf);
1008 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDSIZE_LARGE, xcurl_off_t(rpc->len));
1009 if (options.verbosity > 1) {
1010 fprintf(stderr, "POST %s (%lu bytes)\n",
1011 rpc->service_name, (unsigned long)rpc->len);
1012 fflush(stderr);
1013 }
1014 }
1015
1016 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
1017 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, rpc_in);
1018 rpc_in_data.rpc = rpc;
1019 rpc_in_data.slot = slot;
1020 rpc_in_data.check_pktline = stateless_connect;
1021 memset(&rpc_in_data.pktline_state, 0, sizeof(rpc_in_data.pktline_state));
1022 curl_easy_setopt(slot->curl, CURLOPT_FILE, &rpc_in_data);
1023 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 0);
1024
1025
1026 rpc->any_written = 0;
1027 err = run_slot(slot, NULL);
1028 if (err == HTTP_REAUTH && !large_request) {
1029 credential_fill(&http_auth);
1030 goto retry;
1031 }
1032 if (err != HTTP_OK)
1033 err = -1;
1034
1035 if (!rpc->any_written)
1036 err = -1;
1037
1038 if (rpc_in_data.pktline_state.len_filled)
1039 err = error(_("%d bytes of length header were received"), rpc_in_data.pktline_state.len_filled);
1040 if (rpc_in_data.pktline_state.remaining)
1041 err = error(_("%d bytes of body are still expected"), rpc_in_data.pktline_state.remaining);
1042
1043 if (stateless_connect)
1044 packet_response_end(rpc->in);
1045
1046 curl_slist_free_all(headers);
1047 free(gzip_body);
1048 return err;
1049 }
1050
1051 static int rpc_service(struct rpc_state *rpc, struct discovery *heads,
1052 const char **client_argv, const struct strbuf *preamble,
1053 struct strbuf *rpc_result)
1054 {
1055 const char *svc = rpc->service_name;
1056 struct strbuf buf = STRBUF_INIT;
1057 struct child_process client = CHILD_PROCESS_INIT;
1058 int err = 0;
1059
1060 client.in = -1;
1061 client.out = -1;
1062 client.git_cmd = 1;
1063 client.argv = client_argv;
1064 if (start_command(&client))
1065 exit(1);
1066 write_or_die(client.in, preamble->buf, preamble->len);
1067 if (heads)
1068 write_or_die(client.in, heads->buf, heads->len);
1069
1070 rpc->alloc = http_post_buffer;
1071 rpc->buf = xmalloc(rpc->alloc);
1072 rpc->in = client.in;
1073 rpc->out = client.out;
1074
1075 strbuf_addf(&buf, "%s%s", url.buf, svc);
1076 rpc->service_url = strbuf_detach(&buf, NULL);
1077
1078 strbuf_addf(&buf, "Content-Type: application/x-%s-request", svc);
1079 rpc->hdr_content_type = strbuf_detach(&buf, NULL);
1080
1081 strbuf_addf(&buf, "Accept: application/x-%s-result", svc);
1082 rpc->hdr_accept = strbuf_detach(&buf, NULL);
1083
1084 if (get_protocol_http_header(heads->version, &buf))
1085 rpc->protocol_header = strbuf_detach(&buf, NULL);
1086 else
1087 rpc->protocol_header = NULL;
1088
1089 while (!err) {
1090 int n = packet_read(rpc->out, NULL, NULL, rpc->buf, rpc->alloc, 0);
1091 if (!n)
1092 break;
1093 rpc->pos = 0;
1094 rpc->len = n;
1095 err |= post_rpc(rpc, 0, 0);
1096 }
1097
1098 close(client.in);
1099 client.in = -1;
1100 if (!err) {
1101 strbuf_read(rpc_result, client.out, 0);
1102 } else {
1103 char buf[4096];
1104 for (;;)
1105 if (xread(client.out, buf, sizeof(buf)) <= 0)
1106 break;
1107 }
1108
1109 close(client.out);
1110 client.out = -1;
1111
1112 err |= finish_command(&client);
1113 free(rpc->service_url);
1114 free(rpc->hdr_content_type);
1115 free(rpc->hdr_accept);
1116 free(rpc->protocol_header);
1117 free(rpc->buf);
1118 strbuf_release(&buf);
1119 return err;
1120 }
1121
1122 static int fetch_dumb(int nr_heads, struct ref **to_fetch)
1123 {
1124 struct walker *walker;
1125 char **targets;
1126 int ret, i;
1127
1128 ALLOC_ARRAY(targets, nr_heads);
1129 if (options.depth || options.deepen_since)
1130 die(_("dumb http transport does not support shallow capabilities"));
1131 for (i = 0; i < nr_heads; i++)
1132 targets[i] = xstrdup(oid_to_hex(&to_fetch[i]->old_oid));
1133
1134 walker = get_http_walker(url.buf);
1135 walker->get_verbosely = options.verbosity >= 3;
1136 walker->get_progress = options.progress;
1137 walker->get_recover = 0;
1138 ret = walker_fetch(walker, nr_heads, targets, NULL, NULL);
1139 walker_free(walker);
1140
1141 for (i = 0; i < nr_heads; i++)
1142 free(targets[i]);
1143 free(targets);
1144
1145 return ret ? error(_("fetch failed.")) : 0;
1146 }
1147
1148 static int fetch_git(struct discovery *heads,
1149 int nr_heads, struct ref **to_fetch)
1150 {
1151 struct rpc_state rpc;
1152 struct strbuf preamble = STRBUF_INIT;
1153 int i, err;
1154 struct strvec args = STRVEC_INIT;
1155 struct strbuf rpc_result = STRBUF_INIT;
1156
1157 strvec_pushl(&args, "fetch-pack", "--stateless-rpc",
1158 "--stdin", "--lock-pack", NULL);
1159 if (options.followtags)
1160 strvec_push(&args, "--include-tag");
1161 if (options.thin)
1162 strvec_push(&args, "--thin");
1163 if (options.verbosity >= 3)
1164 strvec_pushl(&args, "-v", "-v", NULL);
1165 if (options.check_self_contained_and_connected)
1166 strvec_push(&args, "--check-self-contained-and-connected");
1167 if (options.cloning)
1168 strvec_push(&args, "--cloning");
1169 if (options.update_shallow)
1170 strvec_push(&args, "--update-shallow");
1171 if (!options.progress)
1172 strvec_push(&args, "--no-progress");
1173 if (options.depth)
1174 strvec_pushf(&args, "--depth=%lu", options.depth);
1175 if (options.deepen_since)
1176 strvec_pushf(&args, "--shallow-since=%s", options.deepen_since);
1177 for (i = 0; i < options.deepen_not.nr; i++)
1178 strvec_pushf(&args, "--shallow-exclude=%s",
1179 options.deepen_not.items[i].string);
1180 if (options.deepen_relative && options.depth)
1181 strvec_push(&args, "--deepen-relative");
1182 if (options.from_promisor)
1183 strvec_push(&args, "--from-promisor");
1184 if (options.filter)
1185 strvec_pushf(&args, "--filter=%s", options.filter);
1186 strvec_push(&args, url.buf);
1187
1188 for (i = 0; i < nr_heads; i++) {
1189 struct ref *ref = to_fetch[i];
1190 if (!*ref->name)
1191 die(_("cannot fetch by sha1 over smart http"));
1192 packet_buf_write(&preamble, "%s %s\n",
1193 oid_to_hex(&ref->old_oid), ref->name);
1194 }
1195 packet_buf_flush(&preamble);
1196
1197 memset(&rpc, 0, sizeof(rpc));
1198 rpc.service_name = "git-upload-pack",
1199 rpc.gzip_request = 1;
1200
1201 err = rpc_service(&rpc, heads, args.v, &preamble, &rpc_result);
1202 if (rpc_result.len)
1203 write_or_die(1, rpc_result.buf, rpc_result.len);
1204 strbuf_release(&rpc_result);
1205 strbuf_release(&preamble);
1206 strvec_clear(&args);
1207 return err;
1208 }
1209
1210 static int fetch(int nr_heads, struct ref **to_fetch)
1211 {
1212 struct discovery *d = discover_refs("git-upload-pack", 0);
1213 if (d->proto_git)
1214 return fetch_git(d, nr_heads, to_fetch);
1215 else
1216 return fetch_dumb(nr_heads, to_fetch);
1217 }
1218
1219 static void parse_fetch(struct strbuf *buf)
1220 {
1221 struct ref **to_fetch = NULL;
1222 struct ref *list_head = NULL;
1223 struct ref **list = &list_head;
1224 int alloc_heads = 0, nr_heads = 0;
1225
1226 do {
1227 const char *p;
1228 if (skip_prefix(buf->buf, "fetch ", &p)) {
1229 const char *name;
1230 struct ref *ref;
1231 struct object_id old_oid;
1232 const char *q;
1233
1234 if (parse_oid_hex(p, &old_oid, &q))
1235 die(_("protocol error: expected sha/ref, got '%s'"), p);
1236 if (*q == ' ')
1237 name = q + 1;
1238 else if (!*q)
1239 name = "";
1240 else
1241 die(_("protocol error: expected sha/ref, got '%s'"), p);
1242
1243 ref = alloc_ref(name);
1244 oidcpy(&ref->old_oid, &old_oid);
1245
1246 *list = ref;
1247 list = &ref->next;
1248
1249 ALLOC_GROW(to_fetch, nr_heads + 1, alloc_heads);
1250 to_fetch[nr_heads++] = ref;
1251 }
1252 else
1253 die(_("http transport does not support %s"), buf->buf);
1254
1255 strbuf_reset(buf);
1256 if (strbuf_getline_lf(buf, stdin) == EOF)
1257 return;
1258 if (!*buf->buf)
1259 break;
1260 } while (1);
1261
1262 if (fetch(nr_heads, to_fetch))
1263 exit(128); /* error already reported */
1264 free_refs(list_head);
1265 free(to_fetch);
1266
1267 printf("\n");
1268 fflush(stdout);
1269 strbuf_reset(buf);
1270 }
1271
1272 static int push_dav(int nr_spec, const char **specs)
1273 {
1274 struct child_process child = CHILD_PROCESS_INIT;
1275 size_t i;
1276
1277 child.git_cmd = 1;
1278 strvec_push(&child.args, "http-push");
1279 strvec_push(&child.args, "--helper-status");
1280 if (options.dry_run)
1281 strvec_push(&child.args, "--dry-run");
1282 if (options.verbosity > 1)
1283 strvec_push(&child.args, "--verbose");
1284 strvec_push(&child.args, url.buf);
1285 for (i = 0; i < nr_spec; i++)
1286 strvec_push(&child.args, specs[i]);
1287
1288 if (run_command(&child))
1289 die(_("git-http-push failed"));
1290 return 0;
1291 }
1292
1293 static int push_git(struct discovery *heads, int nr_spec, const char **specs)
1294 {
1295 struct rpc_state rpc;
1296 int i, err;
1297 struct strvec args;
1298 struct string_list_item *cas_option;
1299 struct strbuf preamble = STRBUF_INIT;
1300 struct strbuf rpc_result = STRBUF_INIT;
1301
1302 strvec_init(&args);
1303 strvec_pushl(&args, "send-pack", "--stateless-rpc", "--helper-status",
1304 NULL);
1305
1306 if (options.thin)
1307 strvec_push(&args, "--thin");
1308 if (options.dry_run)
1309 strvec_push(&args, "--dry-run");
1310 if (options.push_cert == SEND_PACK_PUSH_CERT_ALWAYS)
1311 strvec_push(&args, "--signed=yes");
1312 else if (options.push_cert == SEND_PACK_PUSH_CERT_IF_ASKED)
1313 strvec_push(&args, "--signed=if-asked");
1314 if (options.atomic)
1315 strvec_push(&args, "--atomic");
1316 if (options.verbosity == 0)
1317 strvec_push(&args, "--quiet");
1318 else if (options.verbosity > 1)
1319 strvec_push(&args, "--verbose");
1320 for (i = 0; i < options.push_options.nr; i++)
1321 strvec_pushf(&args, "--push-option=%s",
1322 options.push_options.items[i].string);
1323 strvec_push(&args, options.progress ? "--progress" : "--no-progress");
1324 for_each_string_list_item(cas_option, &cas_options)
1325 strvec_push(&args, cas_option->string);
1326 strvec_push(&args, url.buf);
1327
1328 if (options.force_if_includes)
1329 strvec_push(&args, "--force-if-includes");
1330
1331 strvec_push(&args, "--stdin");
1332 for (i = 0; i < nr_spec; i++)
1333 packet_buf_write(&preamble, "%s\n", specs[i]);
1334 packet_buf_flush(&preamble);
1335
1336 memset(&rpc, 0, sizeof(rpc));
1337 rpc.service_name = "git-receive-pack",
1338
1339 err = rpc_service(&rpc, heads, args.v, &preamble, &rpc_result);
1340 if (rpc_result.len)
1341 write_or_die(1, rpc_result.buf, rpc_result.len);
1342 strbuf_release(&rpc_result);
1343 strbuf_release(&preamble);
1344 strvec_clear(&args);
1345 return err;
1346 }
1347
1348 static int push(int nr_spec, const char **specs)
1349 {
1350 struct discovery *heads = discover_refs("git-receive-pack", 1);
1351 int ret;
1352
1353 if (heads->proto_git)
1354 ret = push_git(heads, nr_spec, specs);
1355 else
1356 ret = push_dav(nr_spec, specs);
1357 free_discovery(heads);
1358 return ret;
1359 }
1360
1361 static void parse_push(struct strbuf *buf)
1362 {
1363 struct strvec specs = STRVEC_INIT;
1364 int ret;
1365
1366 do {
1367 const char *arg;
1368 if (skip_prefix(buf->buf, "push ", &arg))
1369 strvec_push(&specs, arg);
1370 else
1371 die(_("http transport does not support %s"), buf->buf);
1372
1373 strbuf_reset(buf);
1374 if (strbuf_getline_lf(buf, stdin) == EOF)
1375 goto free_specs;
1376 if (!*buf->buf)
1377 break;
1378 } while (1);
1379
1380 ret = push(specs.nr, specs.v);
1381 printf("\n");
1382 fflush(stdout);
1383
1384 if (ret)
1385 exit(128); /* error already reported */
1386
1387 free_specs:
1388 strvec_clear(&specs);
1389 }
1390
1391 static int stateless_connect(const char *service_name)
1392 {
1393 struct discovery *discover;
1394 struct rpc_state rpc;
1395 struct strbuf buf = STRBUF_INIT;
1396
1397 /*
1398 * Run the info/refs request and see if the server supports protocol
1399 * v2. If and only if the server supports v2 can we successfully
1400 * establish a stateless connection, otherwise we need to tell the
1401 * client to fallback to using other transport helper functions to
1402 * complete their request.
1403 */
1404 discover = discover_refs(service_name, 0);
1405 if (discover->version != protocol_v2) {
1406 printf("fallback\n");
1407 fflush(stdout);
1408 return -1;
1409 } else {
1410 /* Stateless Connection established */
1411 printf("\n");
1412 fflush(stdout);
1413 }
1414
1415 rpc.service_name = service_name;
1416 rpc.service_url = xstrfmt("%s%s", url.buf, rpc.service_name);
1417 rpc.hdr_content_type = xstrfmt("Content-Type: application/x-%s-request", rpc.service_name);
1418 rpc.hdr_accept = xstrfmt("Accept: application/x-%s-result", rpc.service_name);
1419 if (get_protocol_http_header(discover->version, &buf)) {
1420 rpc.protocol_header = strbuf_detach(&buf, NULL);
1421 } else {
1422 rpc.protocol_header = NULL;
1423 strbuf_release(&buf);
1424 }
1425 rpc.buf = xmalloc(http_post_buffer);
1426 rpc.alloc = http_post_buffer;
1427 rpc.len = 0;
1428 rpc.pos = 0;
1429 rpc.in = 1;
1430 rpc.out = 0;
1431 rpc.any_written = 0;
1432 rpc.gzip_request = 1;
1433 rpc.initial_buffer = 0;
1434 rpc.write_line_lengths = 1;
1435 rpc.flush_read_but_not_sent = 0;
1436
1437 /*
1438 * Dump the capability listing that we got from the server earlier
1439 * during the info/refs request.
1440 */
1441 write_or_die(rpc.in, discover->buf, discover->len);
1442
1443 /* Until we see EOF keep sending POSTs */
1444 while (1) {
1445 size_t avail;
1446 enum packet_read_status status;
1447
1448 if (!rpc_read_from_out(&rpc, PACKET_READ_GENTLE_ON_EOF, &avail,
1449 &status))
1450 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
1451 if (status == PACKET_READ_EOF)
1452 break;
1453 if (post_rpc(&rpc, 1, status == PACKET_READ_FLUSH))
1454 /* We would have an err here */
1455 break;
1456 /* Reset the buffer for next request */
1457 rpc.len = 0;
1458 }
1459
1460 free(rpc.service_url);
1461 free(rpc.hdr_content_type);
1462 free(rpc.hdr_accept);
1463 free(rpc.protocol_header);
1464 free(rpc.buf);
1465 strbuf_release(&buf);
1466
1467 return 0;
1468 }
1469
1470 int cmd_main(int argc, const char **argv)
1471 {
1472 struct strbuf buf = STRBUF_INIT;
1473 int nongit;
1474
1475 setup_git_directory_gently(&nongit);
1476 if (argc < 2) {
1477 error(_("remote-curl: usage: git remote-curl <remote> [<url>]"));
1478 return 1;
1479 }
1480
1481 options.verbosity = 1;
1482 options.progress = !!isatty(2);
1483 options.thin = 1;
1484 string_list_init(&options.deepen_not, 1);
1485 string_list_init(&options.push_options, 1);
1486
1487 /*
1488 * Just report "remote-curl" here (folding all the various aliases
1489 * ("git-remote-http", "git-remote-https", and etc.) here since they
1490 * are all just copies of the same actual executable.
1491 */
1492 trace2_cmd_name("remote-curl");
1493
1494 remote = remote_get(argv[1]);
1495
1496 if (argc > 2) {
1497 end_url_with_slash(&url, argv[2]);
1498 } else {
1499 end_url_with_slash(&url, remote->url[0]);
1500 }
1501
1502 http_init(remote, url.buf, 0);
1503
1504 do {
1505 const char *arg;
1506
1507 if (strbuf_getline_lf(&buf, stdin) == EOF) {
1508 if (ferror(stdin))
1509 error(_("remote-curl: error reading command stream from git"));
1510 return 1;
1511 }
1512 if (buf.len == 0)
1513 break;
1514 if (starts_with(buf.buf, "fetch ")) {
1515 if (nongit)
1516 die(_("remote-curl: fetch attempted without a local repo"));
1517 parse_fetch(&buf);
1518
1519 } else if (!strcmp(buf.buf, "list") || starts_with(buf.buf, "list ")) {
1520 int for_push = !!strstr(buf.buf + 4, "for-push");
1521 output_refs(get_refs(for_push));
1522
1523 } else if (starts_with(buf.buf, "push ")) {
1524 parse_push(&buf);
1525
1526 } else if (skip_prefix(buf.buf, "option ", &arg)) {
1527 char *value = strchr(arg, ' ');
1528 int result;
1529
1530 if (value)
1531 *value++ = '\0';
1532 else
1533 value = "true";
1534
1535 result = set_option(arg, value);
1536 if (!result)
1537 printf("ok\n");
1538 else if (result < 0)
1539 printf("error invalid value\n");
1540 else
1541 printf("unsupported\n");
1542 fflush(stdout);
1543
1544 } else if (!strcmp(buf.buf, "capabilities")) {
1545 printf("stateless-connect\n");
1546 printf("fetch\n");
1547 printf("option\n");
1548 printf("push\n");
1549 printf("check-connectivity\n");
1550 printf("object-format\n");
1551 printf("\n");
1552 fflush(stdout);
1553 } else if (skip_prefix(buf.buf, "stateless-connect ", &arg)) {
1554 if (!stateless_connect(arg))
1555 break;
1556 } else {
1557 error(_("remote-curl: unknown command '%s' from git"), buf.buf);
1558 return 1;
1559 }
1560 strbuf_reset(&buf);
1561 } while (1);
1562
1563 http_cleanup();
1564
1565 return 0;
1566 }