9 #include "run-command.h"
11 #include "string-list.h"
14 #include "credential.h"
15 #include "oid-array.h"
16 #include "send-pack.h"
19 #include "transport.h"
21 static struct remote
*remote
;
22 /* always ends with a trailing slash */
23 static struct strbuf url
= STRBUF_INIT
;
29 struct string_list deepen_not
;
30 struct string_list push_options
;
32 unsigned progress
: 1,
33 check_self_contained_and_connected
: 1,
39 /* One of the SEND_PACK_PUSH_CERT_* constants. */
43 /* see documentation of corresponding flag in fetch-pack.h */
49 force_if_includes
: 1;
50 const struct git_hash_algo
*hash_algo
;
52 static struct options options
;
53 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
55 static int set_option(const char *name
, const char *value
)
57 if (!strcmp(name
, "verbosity")) {
59 int v
= strtol(value
, &end
, 10);
60 if (value
== end
|| *end
)
62 options
.verbosity
= v
;
65 else if (!strcmp(name
, "progress")) {
66 if (!strcmp(value
, "true"))
68 else if (!strcmp(value
, "false"))
74 else if (!strcmp(name
, "depth")) {
76 unsigned long v
= strtoul(value
, &end
, 10);
77 if (value
== end
|| *end
)
82 else if (!strcmp(name
, "deepen-since")) {
83 options
.deepen_since
= xstrdup(value
);
86 else if (!strcmp(name
, "deepen-not")) {
87 string_list_append(&options
.deepen_not
, value
);
90 else if (!strcmp(name
, "deepen-relative")) {
91 if (!strcmp(value
, "true"))
92 options
.deepen_relative
= 1;
93 else if (!strcmp(value
, "false"))
94 options
.deepen_relative
= 0;
99 else if (!strcmp(name
, "followtags")) {
100 if (!strcmp(value
, "true"))
101 options
.followtags
= 1;
102 else if (!strcmp(value
, "false"))
103 options
.followtags
= 0;
108 else if (!strcmp(name
, "dry-run")) {
109 if (!strcmp(value
, "true"))
111 else if (!strcmp(value
, "false"))
117 else if (!strcmp(name
, "check-connectivity")) {
118 if (!strcmp(value
, "true"))
119 options
.check_self_contained_and_connected
= 1;
120 else if (!strcmp(value
, "false"))
121 options
.check_self_contained_and_connected
= 0;
126 else if (!strcmp(name
, "cas")) {
127 struct strbuf val
= STRBUF_INIT
;
128 strbuf_addstr(&val
, "--force-with-lease=");
130 strbuf_addstr(&val
, value
);
131 else if (unquote_c_style(&val
, value
, NULL
))
133 string_list_append(&cas_options
, val
.buf
);
134 strbuf_release(&val
);
136 } else if (!strcmp(name
, TRANS_OPT_FORCE_IF_INCLUDES
)) {
137 if (!strcmp(value
, "true"))
138 options
.force_if_includes
= 1;
139 else if (!strcmp(value
, "false"))
140 options
.force_if_includes
= 0;
144 } else if (!strcmp(name
, "cloning")) {
145 if (!strcmp(value
, "true"))
147 else if (!strcmp(value
, "false"))
152 } else if (!strcmp(name
, "update-shallow")) {
153 if (!strcmp(value
, "true"))
154 options
.update_shallow
= 1;
155 else if (!strcmp(value
, "false"))
156 options
.update_shallow
= 0;
160 } else if (!strcmp(name
, "pushcert")) {
161 if (!strcmp(value
, "true"))
162 options
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
163 else if (!strcmp(value
, "false"))
164 options
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
165 else if (!strcmp(value
, "if-asked"))
166 options
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
170 } else if (!strcmp(name
, "atomic")) {
171 if (!strcmp(value
, "true"))
173 else if (!strcmp(value
, "false"))
178 } else if (!strcmp(name
, "push-option")) {
180 string_list_append(&options
.push_options
, value
);
182 struct strbuf unquoted
= STRBUF_INIT
;
183 if (unquote_c_style(&unquoted
, value
, NULL
) < 0)
184 die(_("invalid quoting in push-option value: '%s'"), value
);
185 string_list_append_nodup(&options
.push_options
,
186 strbuf_detach(&unquoted
, NULL
));
189 } else if (!strcmp(name
, "family")) {
190 if (!strcmp(value
, "ipv4"))
191 git_curl_ipresolve
= CURL_IPRESOLVE_V4
;
192 else if (!strcmp(value
, "ipv6"))
193 git_curl_ipresolve
= CURL_IPRESOLVE_V6
;
194 else if (!strcmp(value
, "all"))
195 git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
199 } else if (!strcmp(name
, "from-promisor")) {
200 options
.from_promisor
= 1;
202 } else if (!strcmp(name
, "refetch")) {
205 } else if (!strcmp(name
, "filter")) {
206 options
.filter
= xstrdup(value
);
208 } else if (!strcmp(name
, "object-format")) {
210 options
.object_format
= 1;
211 if (strcmp(value
, "true")) {
212 algo
= hash_algo_by_name(value
);
213 if (algo
== GIT_HASH_UNKNOWN
)
214 die("unknown object format '%s'", value
);
215 options
.hash_algo
= &hash_algos
[algo
];
219 return 1 /* unsupported */;
229 struct oid_array shallow
;
230 enum protocol_version version
;
231 unsigned proto_git
: 1;
233 static struct discovery
*last_discovery
;
235 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
237 struct ref
*list
= NULL
;
238 struct packet_reader reader
;
240 packet_reader_init(&reader
, -1, heads
->buf
, heads
->len
,
241 PACKET_READ_CHOMP_NEWLINE
|
242 PACKET_READ_GENTLE_ON_EOF
|
243 PACKET_READ_DIE_ON_ERR_PACKET
);
245 heads
->version
= discover_version(&reader
);
246 switch (heads
->version
) {
249 * Do nothing. This isn't a list of refs but rather a
250 * capability advertisement. Client would have run
251 * 'stateless-connect' so we'll dump this capability listing
252 * and let them request the refs themselves.
257 get_remote_heads(&reader
, &list
, for_push
? REF_NORMAL
: 0,
258 NULL
, &heads
->shallow
);
259 options
.hash_algo
= reader
.hash_algo
;
261 case protocol_unknown_version
:
262 BUG("unknown protocol version");
268 static const struct git_hash_algo
*detect_hash_algo(struct discovery
*heads
)
270 const char *p
= memchr(heads
->buf
, '\t', heads
->len
);
273 return the_hash_algo
;
275 algo
= hash_algo_by_length((p
- heads
->buf
) / 2);
276 if (algo
== GIT_HASH_UNKNOWN
)
278 return &hash_algos
[algo
];
281 static struct ref
*parse_info_refs(struct discovery
*heads
)
283 char *data
, *start
, *mid
;
287 struct ref
*refs
= NULL
;
288 struct ref
*ref
= NULL
;
289 struct ref
*last_ref
= NULL
;
291 options
.hash_algo
= detect_hash_algo(heads
);
292 if (!options
.hash_algo
)
293 die("%sinfo/refs not valid: could not determine hash algorithm; "
294 "is this a git repository?",
295 transport_anonymize_url(url
.buf
));
300 while (i
< heads
->len
) {
306 if (data
[i
] == '\n') {
307 if (mid
- start
!= options
.hash_algo
->hexsz
)
308 die(_("%sinfo/refs not valid: is this a git repository?"),
309 transport_anonymize_url(url
.buf
));
312 ref
= alloc_ref(ref_name
);
313 get_oid_hex_algop(start
, &ref
->old_oid
, options
.hash_algo
);
317 last_ref
->next
= ref
;
324 ref
= alloc_ref("HEAD");
325 if (!http_fetch_ref(url
.buf
, ref
) &&
326 !resolve_remote_symref(ref
, refs
)) {
336 static void free_discovery(struct discovery
*d
)
339 if (d
== last_discovery
)
340 last_discovery
= NULL
;
341 free(d
->shallow
.oid
);
349 static int show_http_message(struct strbuf
*type
, struct strbuf
*charset
,
355 * We only show text/plain parts, as other types are likely
356 * to be ugly to look at on the user's terminal.
358 if (strcmp(type
->buf
, "text/plain"))
361 strbuf_reencode(msg
, charset
->buf
, get_log_output_encoding());
369 eol
= strchrnul(p
, '\n');
370 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
376 static int get_protocol_http_header(enum protocol_version version
,
377 struct strbuf
*header
)
380 strbuf_addf(header
, GIT_PROTOCOL_HEADER
": version=%d",
389 static void check_smart_http(struct discovery
*d
, const char *service
,
393 struct packet_reader reader
;
396 * If we don't see x-$service-advertisement, then it's not smart-http.
397 * But once we do, we commit to it and assume any other protocol
398 * violations are hard errors.
400 if (!skip_prefix(type
->buf
, "application/x-", &p
) ||
401 !skip_prefix(p
, service
, &p
) ||
402 strcmp(p
, "-advertisement"))
405 packet_reader_init(&reader
, -1, d
->buf
, d
->len
,
406 PACKET_READ_CHOMP_NEWLINE
|
407 PACKET_READ_DIE_ON_ERR_PACKET
);
408 if (packet_reader_read(&reader
) != PACKET_READ_NORMAL
)
409 die(_("invalid server response; expected service, got flush packet"));
411 if (skip_prefix(reader
.line
, "# service=", &p
) && !strcmp(p
, service
)) {
413 * The header can include additional metadata lines, up
414 * until a packet flush marker. Ignore these now, but
415 * in the future we might start to scan them.
418 packet_reader_read(&reader
);
419 if (reader
.pktlen
<= 0) {
425 * v0 smart http; callers expect us to soak up the
426 * service and header packets
428 d
->buf
= reader
.src_buffer
;
429 d
->len
= reader
.src_len
;
432 } else if (!strcmp(reader
.line
, "version 2")) {
434 * v2 smart http; do not consume version packet, which will
435 * be handled elsewhere.
440 die(_("invalid server response; got '%s'"), reader
.line
);
444 static struct discovery
*discover_refs(const char *service
, int for_push
)
446 struct strbuf type
= STRBUF_INIT
;
447 struct strbuf charset
= STRBUF_INIT
;
448 struct strbuf buffer
= STRBUF_INIT
;
449 struct strbuf refs_url
= STRBUF_INIT
;
450 struct strbuf effective_url
= STRBUF_INIT
;
451 struct strbuf protocol_header
= STRBUF_INIT
;
452 struct string_list extra_headers
= STRING_LIST_INIT_DUP
;
453 struct discovery
*last
= last_discovery
;
454 int http_ret
, maybe_smart
= 0;
455 struct http_get_options http_options
;
456 enum protocol_version version
= get_protocol_version_config();
458 if (last
&& !strcmp(service
, last
->service
))
460 free_discovery(last
);
462 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
463 if ((starts_with(url
.buf
, "http://") || starts_with(url
.buf
, "https://")) &&
464 git_env_bool("GIT_SMART_HTTP", 1)) {
466 if (!strchr(url
.buf
, '?'))
467 strbuf_addch(&refs_url
, '?');
469 strbuf_addch(&refs_url
, '&');
470 strbuf_addf(&refs_url
, "service=%s", service
);
474 * NEEDSWORK: If we are trying to use protocol v2 and we are planning
475 * to perform a push, then fallback to v0 since the client doesn't know
476 * how to push yet using v2.
478 if (version
== protocol_v2
&& !strcmp("git-receive-pack", service
))
479 version
= protocol_v0
;
481 /* Add the extra Git-Protocol header */
482 if (get_protocol_http_header(version
, &protocol_header
))
483 string_list_append(&extra_headers
, protocol_header
.buf
);
485 memset(&http_options
, 0, sizeof(http_options
));
486 http_options
.content_type
= &type
;
487 http_options
.charset
= &charset
;
488 http_options
.effective_url
= &effective_url
;
489 http_options
.base_url
= &url
;
490 http_options
.extra_headers
= &extra_headers
;
491 http_options
.initial_request
= 1;
492 http_options
.no_cache
= 1;
494 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &http_options
);
498 case HTTP_MISSING_TARGET
:
499 show_http_message(&type
, &charset
, &buffer
);
500 die(_("repository '%s' not found"),
501 transport_anonymize_url(url
.buf
));
503 show_http_message(&type
, &charset
, &buffer
);
504 die(_("Authentication failed for '%s'"),
505 transport_anonymize_url(url
.buf
));
506 case HTTP_NOMATCHPUBLICKEY
:
507 show_http_message(&type
, &charset
, &buffer
);
508 die(_("unable to access '%s' with http.pinnedPubkey configuration: %s"),
509 transport_anonymize_url(url
.buf
), curl_errorstr
);
511 show_http_message(&type
, &charset
, &buffer
);
512 die(_("unable to access '%s': %s"),
513 transport_anonymize_url(url
.buf
), curl_errorstr
);
516 if (options
.verbosity
&& !starts_with(refs_url
.buf
, url
.buf
)) {
517 char *u
= transport_anonymize_url(url
.buf
);
518 warning(_("redirecting to %s"), u
);
522 last
= xcalloc(1, sizeof(*last_discovery
));
523 last
->service
= xstrdup(service
);
524 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
525 last
->buf
= last
->buf_alloc
;
528 check_smart_http(last
, service
, &type
);
531 last
->refs
= parse_git_refs(last
, for_push
);
533 last
->refs
= parse_info_refs(last
);
535 strbuf_release(&refs_url
);
536 strbuf_release(&type
);
537 strbuf_release(&charset
);
538 strbuf_release(&effective_url
);
539 strbuf_release(&buffer
);
540 strbuf_release(&protocol_header
);
541 string_list_clear(&extra_headers
, 0);
542 last_discovery
= last
;
546 static struct ref
*get_refs(int for_push
)
548 struct discovery
*heads
;
551 heads
= discover_refs("git-receive-pack", for_push
);
553 heads
= discover_refs("git-upload-pack", for_push
);
558 static void output_refs(struct ref
*refs
)
561 if (options
.object_format
&& options
.hash_algo
) {
562 printf(":object-format %s\n", options
.hash_algo
->name
);
563 repo_set_hash_algo(the_repository
,
564 hash_algo_by_ptr(options
.hash_algo
));
566 for (posn
= refs
; posn
; posn
= posn
->next
) {
568 printf("@%s %s\n", posn
->symref
, posn
->name
);
570 printf("%s %s\n", hash_to_hex_algop(posn
->old_oid
.hash
,
579 const char *service_name
;
581 char *hdr_content_type
;
583 char *hdr_accept_language
;
584 char *protocol_header
;
592 unsigned gzip_request
: 1;
593 unsigned initial_buffer
: 1;
596 * Whenever a pkt-line is read into buf, append the 4 characters
597 * denoting its length before appending the payload.
599 unsigned write_line_lengths
: 1;
602 * Used by rpc_out; initialize to 0. This is true if a flush has been
603 * read, but the corresponding line length (if write_line_lengths is
604 * true) and EOF have not been sent to libcurl. Since each flush marks
605 * the end of a request, each flush must be completely sent before any
606 * further reading occurs.
608 unsigned flush_read_but_not_sent
: 1;
611 #define RPC_STATE_INIT { 0 }
614 * Appends the result of reading from rpc->out to the string represented by
615 * rpc->buf and rpc->len if there is enough space. Returns 1 if there was
616 * enough space, 0 otherwise.
618 * If rpc->write_line_lengths is true, appends the line length as a 4-byte
619 * hexadecimal string before appending the result described above.
621 * Writes the total number of bytes appended into appended.
623 static int rpc_read_from_out(struct rpc_state
*rpc
, int options
,
625 enum packet_read_status
*status
) {
630 if (rpc
->write_line_lengths
) {
631 left
= rpc
->alloc
- rpc
->len
- 4;
632 buf
= rpc
->buf
+ rpc
->len
+ 4;
634 left
= rpc
->alloc
- rpc
->len
;
635 buf
= rpc
->buf
+ rpc
->len
;
638 if (left
< LARGE_PACKET_MAX
)
641 *status
= packet_read_with_status(rpc
->out
, NULL
, NULL
, buf
,
642 left
, &pktlen_raw
, options
);
643 if (*status
!= PACKET_READ_EOF
) {
644 *appended
= pktlen_raw
+ (rpc
->write_line_lengths
? 4 : 0);
645 rpc
->len
+= *appended
;
648 if (rpc
->write_line_lengths
) {
650 case PACKET_READ_EOF
:
651 if (!(options
& PACKET_READ_GENTLE_ON_EOF
))
652 die(_("shouldn't have EOF when not gentle on EOF"));
654 case PACKET_READ_NORMAL
:
655 set_packet_header(buf
- 4, *appended
);
657 case PACKET_READ_DELIM
:
658 memcpy(buf
- 4, "0001", 4);
660 case PACKET_READ_FLUSH
:
661 memcpy(buf
- 4, "0000", 4);
663 case PACKET_READ_RESPONSE_END
:
664 die(_("remote server sent unexpected response end packet"));
671 static size_t rpc_out(void *ptr
, size_t eltsize
,
672 size_t nmemb
, void *buffer_
)
674 size_t max
= eltsize
* nmemb
;
675 struct rpc_state
*rpc
= buffer_
;
676 size_t avail
= rpc
->len
- rpc
->pos
;
677 enum packet_read_status status
;
680 rpc
->initial_buffer
= 0;
683 if (!rpc
->flush_read_but_not_sent
) {
684 if (!rpc_read_from_out(rpc
, 0, &avail
, &status
))
685 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
686 if (status
== PACKET_READ_FLUSH
)
687 rpc
->flush_read_but_not_sent
= 1;
690 * If flush_read_but_not_sent is true, we have already read one
691 * full request but have not fully sent it + EOF, which is why
692 * we need to refrain from reading.
695 if (rpc
->flush_read_but_not_sent
) {
698 * The line length either does not need to be sent at
699 * all or has already been completely sent. Now we can
700 * return 0, indicating EOF, meaning that the flush has
703 rpc
->flush_read_but_not_sent
= 0;
707 * If avail is non-zero, the line length for the flush still
708 * hasn't been fully sent. Proceed with sending the line
715 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
720 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
722 struct rpc_state
*rpc
= clientp
;
728 case CURLIOCMD_RESTARTREAD
:
729 if (rpc
->initial_buffer
) {
733 error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
734 return CURLIOE_FAILRESTART
;
737 return CURLIOE_UNKNOWNCMD
;
741 struct check_pktline_state
{
747 static void check_pktline(struct check_pktline_state
*state
, const char *ptr
, size_t size
)
750 if (!state
->remaining
) {
751 int digits_remaining
= 4 - state
->len_filled
;
752 if (digits_remaining
> size
)
753 digits_remaining
= size
;
754 memcpy(&state
->len_buf
[state
->len_filled
], ptr
, digits_remaining
);
755 state
->len_filled
+= digits_remaining
;
756 ptr
+= digits_remaining
;
757 size
-= digits_remaining
;
759 if (state
->len_filled
== 4) {
760 state
->remaining
= packet_length(state
->len_buf
);
761 if (state
->remaining
< 0) {
762 die(_("remote-curl: bad line length character: %.4s"), state
->len_buf
);
763 } else if (state
->remaining
== 2) {
764 die(_("remote-curl: unexpected response end packet"));
765 } else if (state
->remaining
< 4) {
766 state
->remaining
= 0;
768 state
->remaining
-= 4;
770 state
->len_filled
= 0;
774 if (state
->remaining
) {
775 int remaining
= state
->remaining
;
776 if (remaining
> size
)
780 state
->remaining
-= remaining
;
786 struct rpc_state
*rpc
;
787 struct active_request_slot
*slot
;
789 struct check_pktline_state pktline_state
;
793 * A callback for CURLOPT_WRITEFUNCTION. The return value is the bytes consumed
796 static size_t rpc_in(char *ptr
, size_t eltsize
,
797 size_t nmemb
, void *buffer_
)
799 size_t size
= eltsize
* nmemb
;
800 struct rpc_in_data
*data
= buffer_
;
803 if (curl_easy_getinfo(data
->slot
->curl
, CURLINFO_RESPONSE_CODE
,
804 &response_code
) != CURLE_OK
)
806 if (response_code
>= 300)
809 data
->rpc
->any_written
= 1;
810 if (data
->check_pktline
)
811 check_pktline(&data
->pktline_state
, ptr
, size
);
812 write_or_die(data
->rpc
->in
, ptr
, size
);
816 static int run_slot(struct active_request_slot
*slot
,
817 struct slot_results
*results
)
820 struct slot_results results_buf
;
823 results
= &results_buf
;
825 err
= run_one_slot(slot
, results
);
827 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
828 struct strbuf msg
= STRBUF_INIT
;
829 if (results
->http_code
&& results
->http_code
!= 200)
830 strbuf_addf(&msg
, "HTTP %ld", results
->http_code
);
831 if (results
->curl_result
!= CURLE_OK
) {
833 strbuf_addch(&msg
, ' ');
834 strbuf_addf(&msg
, "curl %d", results
->curl_result
);
835 if (curl_errorstr
[0]) {
836 strbuf_addch(&msg
, ' ');
837 strbuf_addstr(&msg
, curl_errorstr
);
840 error(_("RPC failed; %s"), msg
.buf
);
841 strbuf_release(&msg
);
847 static int probe_rpc(struct rpc_state
*rpc
, struct slot_results
*results
)
849 struct active_request_slot
*slot
;
850 struct curl_slist
*headers
= http_copy_default_headers();
851 struct strbuf buf
= STRBUF_INIT
;
854 slot
= get_active_slot();
856 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
857 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
859 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
860 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
861 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
862 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
863 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
864 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
865 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
866 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
867 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, &buf
);
869 err
= run_slot(slot
, results
);
871 curl_slist_free_all(headers
);
872 strbuf_release(&buf
);
876 static curl_off_t
xcurl_off_t(size_t len
)
878 uintmax_t size
= len
;
879 if (size
> maximum_signed_value_of_type(curl_off_t
))
880 die(_("cannot handle pushes this big"));
881 return (curl_off_t
)size
;
885 * If flush_received is true, do not attempt to read any more; just use what's
888 static int post_rpc(struct rpc_state
*rpc
, int stateless_connect
, int flush_received
)
890 struct active_request_slot
*slot
;
891 struct curl_slist
*headers
= http_copy_default_headers();
892 int use_gzip
= rpc
->gzip_request
;
893 char *gzip_body
= NULL
;
894 size_t gzip_size
= 0;
895 int err
, large_request
= 0;
896 int needs_100_continue
= 0;
897 struct rpc_in_data rpc_in_data
;
899 /* Try to load the entire request, if we can fit it into the
900 * allocated buffer space we can use HTTP/1.0 and avoid the
901 * chunked encoding mess.
903 if (!flush_received
) {
906 enum packet_read_status status
;
908 if (!rpc_read_from_out(rpc
, 0, &n
, &status
)) {
913 if (status
== PACKET_READ_FLUSH
)
919 struct slot_results results
;
922 err
= probe_rpc(rpc
, &results
);
923 if (err
== HTTP_REAUTH
)
924 credential_fill(&http_auth
);
925 } while (err
== HTTP_REAUTH
);
929 if (results
.auth_avail
& CURLAUTH_GSSNEGOTIATE
)
930 needs_100_continue
= 1;
933 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
934 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
935 headers
= curl_slist_append(headers
, needs_100_continue
?
936 "Expect: 100-continue" : "Expect:");
938 /* Add Accept-Language header */
939 if (rpc
->hdr_accept_language
)
940 headers
= curl_slist_append(headers
, rpc
->hdr_accept_language
);
942 /* Add the extra Git-Protocol header */
943 if (rpc
->protocol_header
)
944 headers
= curl_slist_append(headers
, rpc
->protocol_header
);
947 slot
= get_active_slot();
949 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
950 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
951 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
952 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
955 /* The request body is large and the size cannot be predicted.
956 * We must use chunked encoding to send it.
958 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
959 rpc
->initial_buffer
= 1;
960 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
961 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
962 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
963 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
964 if (options
.verbosity
> 1) {
965 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
969 } else if (gzip_body
) {
971 * If we are looping to retry authentication, then the previous
972 * run will have set up the headers and gzip buffer already,
973 * and we just need to send it.
975 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
976 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
978 } else if (use_gzip
&& 1024 < rpc
->len
) {
979 /* The client backend isn't giving us compressed data so
980 * we can try to deflate it ourselves, this may save on
986 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
987 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
988 gzip_body
= xmalloc(gzip_size
);
990 stream
.next_in
= (unsigned char *)rpc
->buf
;
991 stream
.avail_in
= rpc
->len
;
992 stream
.next_out
= (unsigned char *)gzip_body
;
993 stream
.avail_out
= gzip_size
;
995 ret
= git_deflate(&stream
, Z_FINISH
);
996 if (ret
!= Z_STREAM_END
)
997 die(_("cannot deflate request; zlib deflate error %d"), ret
);
999 ret
= git_deflate_end_gently(&stream
);
1001 die(_("cannot deflate request; zlib end error %d"), ret
);
1003 gzip_size
= stream
.total_out
;
1005 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
1006 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
1007 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
1009 if (options
.verbosity
> 1) {
1010 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
1012 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
1016 /* We know the complete request size in advance, use the
1017 * more normal Content-Length approach.
1019 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
1020 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(rpc
->len
));
1021 if (options
.verbosity
> 1) {
1022 fprintf(stderr
, "POST %s (%lu bytes)\n",
1023 rpc
->service_name
, (unsigned long)rpc
->len
);
1028 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1029 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
1030 rpc_in_data
.rpc
= rpc
;
1031 rpc_in_data
.slot
= slot
;
1032 rpc_in_data
.check_pktline
= stateless_connect
;
1033 memset(&rpc_in_data
.pktline_state
, 0, sizeof(rpc_in_data
.pktline_state
));
1034 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, &rpc_in_data
);
1035 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1038 rpc
->any_written
= 0;
1039 err
= run_slot(slot
, NULL
);
1040 if (err
== HTTP_REAUTH
&& !large_request
) {
1041 credential_fill(&http_auth
);
1047 if (!rpc
->any_written
)
1050 if (rpc_in_data
.pktline_state
.len_filled
)
1051 err
= error(_("%d bytes of length header were received"), rpc_in_data
.pktline_state
.len_filled
);
1052 if (rpc_in_data
.pktline_state
.remaining
)
1053 err
= error(_("%d bytes of body are still expected"), rpc_in_data
.pktline_state
.remaining
);
1055 if (stateless_connect
)
1056 packet_response_end(rpc
->in
);
1058 curl_slist_free_all(headers
);
1063 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
,
1064 const char **client_argv
, const struct strbuf
*preamble
,
1065 struct strbuf
*rpc_result
)
1067 const char *svc
= rpc
->service_name
;
1068 struct strbuf buf
= STRBUF_INIT
;
1069 struct child_process client
= CHILD_PROCESS_INIT
;
1075 strvec_pushv(&client
.args
, client_argv
);
1076 if (start_command(&client
))
1078 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
1080 write_or_die(client
.in
, heads
->buf
, heads
->len
);
1082 rpc
->alloc
= http_post_buffer
;
1083 rpc
->buf
= xmalloc(rpc
->alloc
);
1084 rpc
->in
= client
.in
;
1085 rpc
->out
= client
.out
;
1087 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
1088 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
1090 rpc
->hdr_accept_language
= xstrdup_or_null(http_get_accept_language_header());
1092 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
1093 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
1095 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
1096 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
1098 if (get_protocol_http_header(heads
->version
, &buf
))
1099 rpc
->protocol_header
= strbuf_detach(&buf
, NULL
);
1101 rpc
->protocol_header
= NULL
;
1104 int n
= packet_read(rpc
->out
, rpc
->buf
, rpc
->alloc
, 0);
1109 err
|= post_rpc(rpc
, 0, 0);
1115 strbuf_read(rpc_result
, client
.out
, 0);
1119 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
1126 err
|= finish_command(&client
);
1127 free(rpc
->service_url
);
1128 free(rpc
->hdr_content_type
);
1129 free(rpc
->hdr_accept
);
1130 free(rpc
->hdr_accept_language
);
1131 free(rpc
->protocol_header
);
1133 strbuf_release(&buf
);
1137 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
1139 struct walker
*walker
;
1143 ALLOC_ARRAY(targets
, nr_heads
);
1144 if (options
.depth
|| options
.deepen_since
)
1145 die(_("dumb http transport does not support shallow capabilities"));
1146 for (i
= 0; i
< nr_heads
; i
++)
1147 targets
[i
] = xstrdup(oid_to_hex(&to_fetch
[i
]->old_oid
));
1149 walker
= get_http_walker(url
.buf
);
1150 walker
->get_verbosely
= options
.verbosity
>= 3;
1151 walker
->get_progress
= options
.progress
;
1152 walker
->get_recover
= 0;
1153 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
1154 walker_free(walker
);
1156 for (i
= 0; i
< nr_heads
; i
++)
1160 return ret
? error(_("fetch failed.")) : 0;
1163 static int fetch_git(struct discovery
*heads
,
1164 int nr_heads
, struct ref
**to_fetch
)
1166 struct rpc_state rpc
= RPC_STATE_INIT
;
1167 struct strbuf preamble
= STRBUF_INIT
;
1169 struct strvec args
= STRVEC_INIT
;
1170 struct strbuf rpc_result
= STRBUF_INIT
;
1172 strvec_pushl(&args
, "fetch-pack", "--stateless-rpc",
1173 "--stdin", "--lock-pack", NULL
);
1174 if (options
.followtags
)
1175 strvec_push(&args
, "--include-tag");
1177 strvec_push(&args
, "--thin");
1178 if (options
.verbosity
>= 3)
1179 strvec_pushl(&args
, "-v", "-v", NULL
);
1180 if (options
.check_self_contained_and_connected
)
1181 strvec_push(&args
, "--check-self-contained-and-connected");
1182 if (options
.cloning
)
1183 strvec_push(&args
, "--cloning");
1184 if (options
.update_shallow
)
1185 strvec_push(&args
, "--update-shallow");
1186 if (!options
.progress
)
1187 strvec_push(&args
, "--no-progress");
1189 strvec_pushf(&args
, "--depth=%lu", options
.depth
);
1190 if (options
.deepen_since
)
1191 strvec_pushf(&args
, "--shallow-since=%s", options
.deepen_since
);
1192 for (i
= 0; i
< options
.deepen_not
.nr
; i
++)
1193 strvec_pushf(&args
, "--shallow-exclude=%s",
1194 options
.deepen_not
.items
[i
].string
);
1195 if (options
.deepen_relative
&& options
.depth
)
1196 strvec_push(&args
, "--deepen-relative");
1197 if (options
.from_promisor
)
1198 strvec_push(&args
, "--from-promisor");
1199 if (options
.refetch
)
1200 strvec_push(&args
, "--refetch");
1202 strvec_pushf(&args
, "--filter=%s", options
.filter
);
1203 strvec_push(&args
, url
.buf
);
1205 for (i
= 0; i
< nr_heads
; i
++) {
1206 struct ref
*ref
= to_fetch
[i
];
1208 die(_("cannot fetch by sha1 over smart http"));
1209 packet_buf_write(&preamble
, "%s %s\n",
1210 oid_to_hex(&ref
->old_oid
), ref
->name
);
1212 packet_buf_flush(&preamble
);
1214 memset(&rpc
, 0, sizeof(rpc
));
1215 rpc
.service_name
= "git-upload-pack",
1216 rpc
.gzip_request
= 1;
1218 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1220 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1221 strbuf_release(&rpc_result
);
1222 strbuf_release(&preamble
);
1223 strvec_clear(&args
);
1227 static int fetch(int nr_heads
, struct ref
**to_fetch
)
1229 struct discovery
*d
= discover_refs("git-upload-pack", 0);
1231 return fetch_git(d
, nr_heads
, to_fetch
);
1233 return fetch_dumb(nr_heads
, to_fetch
);
1236 static void parse_fetch(struct strbuf
*buf
)
1238 struct ref
**to_fetch
= NULL
;
1239 struct ref
*list_head
= NULL
;
1240 struct ref
**list
= &list_head
;
1241 int alloc_heads
= 0, nr_heads
= 0;
1245 if (skip_prefix(buf
->buf
, "fetch ", &p
)) {
1248 struct object_id old_oid
;
1251 if (parse_oid_hex(p
, &old_oid
, &q
))
1252 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1258 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1260 ref
= alloc_ref(name
);
1261 oidcpy(&ref
->old_oid
, &old_oid
);
1266 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
1267 to_fetch
[nr_heads
++] = ref
;
1270 die(_("http transport does not support %s"), buf
->buf
);
1273 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1279 if (fetch(nr_heads
, to_fetch
))
1280 exit(128); /* error already reported */
1281 free_refs(list_head
);
1289 static void parse_get(const char *arg
)
1291 struct strbuf url
= STRBUF_INIT
;
1292 struct strbuf path
= STRBUF_INIT
;
1295 space
= strchr(arg
, ' ');
1298 die(_("protocol error: expected '<url> <path>', missing space"));
1300 strbuf_add(&url
, arg
, space
- arg
);
1301 strbuf_addstr(&path
, space
+ 1);
1303 if (http_get_file(url
.buf
, path
.buf
, NULL
))
1304 die(_("failed to download file at URL '%s'"), url
.buf
);
1306 strbuf_release(&url
);
1307 strbuf_release(&path
);
1312 static int push_dav(int nr_spec
, const char **specs
)
1314 struct child_process child
= CHILD_PROCESS_INIT
;
1318 strvec_push(&child
.args
, "http-push");
1319 strvec_push(&child
.args
, "--helper-status");
1320 if (options
.dry_run
)
1321 strvec_push(&child
.args
, "--dry-run");
1322 if (options
.verbosity
> 1)
1323 strvec_push(&child
.args
, "--verbose");
1324 strvec_push(&child
.args
, url
.buf
);
1325 for (i
= 0; i
< nr_spec
; i
++)
1326 strvec_push(&child
.args
, specs
[i
]);
1328 if (run_command(&child
))
1329 die(_("git-http-push failed"));
1333 static int push_git(struct discovery
*heads
, int nr_spec
, const char **specs
)
1335 struct rpc_state rpc
= RPC_STATE_INIT
;
1338 struct string_list_item
*cas_option
;
1339 struct strbuf preamble
= STRBUF_INIT
;
1340 struct strbuf rpc_result
= STRBUF_INIT
;
1343 strvec_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
1347 strvec_push(&args
, "--thin");
1348 if (options
.dry_run
)
1349 strvec_push(&args
, "--dry-run");
1350 if (options
.push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
)
1351 strvec_push(&args
, "--signed=yes");
1352 else if (options
.push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
)
1353 strvec_push(&args
, "--signed=if-asked");
1355 strvec_push(&args
, "--atomic");
1356 if (options
.verbosity
== 0)
1357 strvec_push(&args
, "--quiet");
1358 else if (options
.verbosity
> 1)
1359 strvec_push(&args
, "--verbose");
1360 for (i
= 0; i
< options
.push_options
.nr
; i
++)
1361 strvec_pushf(&args
, "--push-option=%s",
1362 options
.push_options
.items
[i
].string
);
1363 strvec_push(&args
, options
.progress
? "--progress" : "--no-progress");
1364 for_each_string_list_item(cas_option
, &cas_options
)
1365 strvec_push(&args
, cas_option
->string
);
1366 strvec_push(&args
, url
.buf
);
1368 if (options
.force_if_includes
)
1369 strvec_push(&args
, "--force-if-includes");
1371 strvec_push(&args
, "--stdin");
1372 for (i
= 0; i
< nr_spec
; i
++)
1373 packet_buf_write(&preamble
, "%s\n", specs
[i
]);
1374 packet_buf_flush(&preamble
);
1376 memset(&rpc
, 0, sizeof(rpc
));
1377 rpc
.service_name
= "git-receive-pack",
1379 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1381 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1382 strbuf_release(&rpc_result
);
1383 strbuf_release(&preamble
);
1384 strvec_clear(&args
);
1388 static int push(int nr_spec
, const char **specs
)
1390 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
1393 if (heads
->proto_git
)
1394 ret
= push_git(heads
, nr_spec
, specs
);
1396 ret
= push_dav(nr_spec
, specs
);
1397 free_discovery(heads
);
1401 static void parse_push(struct strbuf
*buf
)
1403 struct strvec specs
= STRVEC_INIT
;
1408 if (skip_prefix(buf
->buf
, "push ", &arg
))
1409 strvec_push(&specs
, arg
);
1411 die(_("http transport does not support %s"), buf
->buf
);
1414 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1420 ret
= push(specs
.nr
, specs
.v
);
1425 exit(128); /* error already reported */
1428 strvec_clear(&specs
);
1431 static int stateless_connect(const char *service_name
)
1433 struct discovery
*discover
;
1434 struct rpc_state rpc
= RPC_STATE_INIT
;
1435 struct strbuf buf
= STRBUF_INIT
;
1436 const char *accept_language
;
1439 * Run the info/refs request and see if the server supports protocol
1440 * v2. If and only if the server supports v2 can we successfully
1441 * establish a stateless connection, otherwise we need to tell the
1442 * client to fallback to using other transport helper functions to
1443 * complete their request.
1445 discover
= discover_refs(service_name
, 0);
1446 if (discover
->version
!= protocol_v2
) {
1447 printf("fallback\n");
1451 /* Stateless Connection established */
1455 accept_language
= http_get_accept_language_header();
1456 if (accept_language
)
1457 rpc
.hdr_accept_language
= xstrfmt("%s", accept_language
);
1459 rpc
.service_name
= service_name
;
1460 rpc
.service_url
= xstrfmt("%s%s", url
.buf
, rpc
.service_name
);
1461 rpc
.hdr_content_type
= xstrfmt("Content-Type: application/x-%s-request", rpc
.service_name
);
1462 rpc
.hdr_accept
= xstrfmt("Accept: application/x-%s-result", rpc
.service_name
);
1463 if (get_protocol_http_header(discover
->version
, &buf
)) {
1464 rpc
.protocol_header
= strbuf_detach(&buf
, NULL
);
1466 rpc
.protocol_header
= NULL
;
1467 strbuf_release(&buf
);
1469 rpc
.buf
= xmalloc(http_post_buffer
);
1470 rpc
.alloc
= http_post_buffer
;
1475 rpc
.any_written
= 0;
1476 rpc
.gzip_request
= 1;
1477 rpc
.initial_buffer
= 0;
1478 rpc
.write_line_lengths
= 1;
1479 rpc
.flush_read_but_not_sent
= 0;
1482 * Dump the capability listing that we got from the server earlier
1483 * during the info/refs request.
1485 write_or_die(rpc
.in
, discover
->buf
, discover
->len
);
1487 /* Until we see EOF keep sending POSTs */
1490 enum packet_read_status status
;
1492 if (!rpc_read_from_out(&rpc
, PACKET_READ_GENTLE_ON_EOF
, &avail
,
1494 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
1495 if (status
== PACKET_READ_EOF
)
1497 if (post_rpc(&rpc
, 1, status
== PACKET_READ_FLUSH
))
1498 /* We would have an err here */
1500 /* Reset the buffer for next request */
1504 free(rpc
.service_url
);
1505 free(rpc
.hdr_content_type
);
1506 free(rpc
.hdr_accept
);
1507 free(rpc
.hdr_accept_language
);
1508 free(rpc
.protocol_header
);
1510 strbuf_release(&buf
);
1515 int cmd_main(int argc
, const char **argv
)
1517 struct strbuf buf
= STRBUF_INIT
;
1521 setup_git_directory_gently(&nongit
);
1523 error(_("remote-curl: usage: git remote-curl <remote> [<url>]"));
1527 options
.verbosity
= 1;
1528 options
.progress
= !!isatty(2);
1530 string_list_init_dup(&options
.deepen_not
);
1531 string_list_init_dup(&options
.push_options
);
1534 * Just report "remote-curl" here (folding all the various aliases
1535 * ("git-remote-http", "git-remote-https", and etc.) here since they
1536 * are all just copies of the same actual executable.
1538 trace2_cmd_name("remote-curl");
1540 remote
= remote_get(argv
[1]);
1543 end_url_with_slash(&url
, argv
[2]);
1545 end_url_with_slash(&url
, remote
->url
[0]);
1548 http_init(remote
, url
.buf
, 0);
1553 if (strbuf_getline_lf(&buf
, stdin
) == EOF
) {
1555 error(_("remote-curl: error reading command stream from git"));
1560 if (starts_with(buf
.buf
, "fetch ")) {
1562 die(_("remote-curl: fetch attempted without a local repo"));
1565 } else if (!strcmp(buf
.buf
, "list") || starts_with(buf
.buf
, "list ")) {
1566 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
1567 output_refs(get_refs(for_push
));
1569 } else if (starts_with(buf
.buf
, "push ")) {
1572 } else if (skip_prefix(buf
.buf
, "option ", &arg
)) {
1573 char *value
= strchr(arg
, ' ');
1581 result
= set_option(arg
, value
);
1584 else if (result
< 0)
1585 printf("error invalid value\n");
1587 printf("unsupported\n");
1590 } else if (skip_prefix(buf
.buf
, "get ", &arg
)) {
1594 } else if (!strcmp(buf
.buf
, "capabilities")) {
1595 printf("stateless-connect\n");
1600 printf("check-connectivity\n");
1601 printf("object-format\n");
1604 } else if (skip_prefix(buf
.buf
, "stateless-connect ", &arg
)) {
1605 if (!stateless_connect(arg
))
1608 error(_("remote-curl: unknown command '%s' from git"), buf
.buf
);
1617 strbuf_release(&buf
);