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