1 #include "git-compat-util.h"
2 #include "git-curl-compat.h"
4 #include "environment.h"
13 #include "run-command.h"
15 #include "string-list.h"
18 #include "credential.h"
19 #include "oid-array.h"
20 #include "send-pack.h"
25 #include "transport.h"
26 #include "write-or-die.h"
28 static struct remote
*remote
;
29 /* always ends with a trailing slash */
30 static struct strbuf url
= STRBUF_INIT
;
36 struct string_list deepen_not
;
37 struct string_list push_options
;
39 unsigned progress
: 1,
40 check_self_contained_and_connected
: 1,
46 /* One of the SEND_PACK_PUSH_CERT_* constants. */
50 /* see documentation of corresponding flag in fetch-pack.h */
56 force_if_includes
: 1;
57 const struct git_hash_algo
*hash_algo
;
59 static struct options options
;
60 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
62 static int set_option(const char *name
, const char *value
)
64 if (!strcmp(name
, "verbosity")) {
66 int v
= strtol(value
, &end
, 10);
67 if (value
== end
|| *end
)
69 options
.verbosity
= v
;
72 else if (!strcmp(name
, "progress")) {
73 if (!strcmp(value
, "true"))
75 else if (!strcmp(value
, "false"))
81 else if (!strcmp(name
, "depth")) {
83 unsigned long v
= strtoul(value
, &end
, 10);
84 if (value
== end
|| *end
)
89 else if (!strcmp(name
, "deepen-since")) {
90 options
.deepen_since
= xstrdup(value
);
93 else if (!strcmp(name
, "deepen-not")) {
94 string_list_append(&options
.deepen_not
, value
);
97 else if (!strcmp(name
, "deepen-relative")) {
98 if (!strcmp(value
, "true"))
99 options
.deepen_relative
= 1;
100 else if (!strcmp(value
, "false"))
101 options
.deepen_relative
= 0;
106 else if (!strcmp(name
, "followtags")) {
107 if (!strcmp(value
, "true"))
108 options
.followtags
= 1;
109 else if (!strcmp(value
, "false"))
110 options
.followtags
= 0;
115 else if (!strcmp(name
, "dry-run")) {
116 if (!strcmp(value
, "true"))
118 else if (!strcmp(value
, "false"))
124 else if (!strcmp(name
, "check-connectivity")) {
125 if (!strcmp(value
, "true"))
126 options
.check_self_contained_and_connected
= 1;
127 else if (!strcmp(value
, "false"))
128 options
.check_self_contained_and_connected
= 0;
133 else if (!strcmp(name
, "cas")) {
134 struct strbuf val
= STRBUF_INIT
;
135 strbuf_addstr(&val
, "--force-with-lease=");
137 strbuf_addstr(&val
, value
);
138 else if (unquote_c_style(&val
, value
, NULL
))
140 string_list_append(&cas_options
, val
.buf
);
141 strbuf_release(&val
);
143 } else if (!strcmp(name
, TRANS_OPT_FORCE_IF_INCLUDES
)) {
144 if (!strcmp(value
, "true"))
145 options
.force_if_includes
= 1;
146 else if (!strcmp(value
, "false"))
147 options
.force_if_includes
= 0;
151 } else if (!strcmp(name
, "cloning")) {
152 if (!strcmp(value
, "true"))
154 else if (!strcmp(value
, "false"))
159 } else if (!strcmp(name
, "update-shallow")) {
160 if (!strcmp(value
, "true"))
161 options
.update_shallow
= 1;
162 else if (!strcmp(value
, "false"))
163 options
.update_shallow
= 0;
167 } else if (!strcmp(name
, "pushcert")) {
168 if (!strcmp(value
, "true"))
169 options
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
170 else if (!strcmp(value
, "false"))
171 options
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
172 else if (!strcmp(value
, "if-asked"))
173 options
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
177 } else if (!strcmp(name
, "atomic")) {
178 if (!strcmp(value
, "true"))
180 else if (!strcmp(value
, "false"))
185 } else if (!strcmp(name
, "push-option")) {
187 string_list_append(&options
.push_options
, value
);
189 struct strbuf unquoted
= STRBUF_INIT
;
190 if (unquote_c_style(&unquoted
, value
, NULL
) < 0)
191 die(_("invalid quoting in push-option value: '%s'"), value
);
192 string_list_append_nodup(&options
.push_options
,
193 strbuf_detach(&unquoted
, NULL
));
196 } else if (!strcmp(name
, "family")) {
197 if (!strcmp(value
, "ipv4"))
198 git_curl_ipresolve
= CURL_IPRESOLVE_V4
;
199 else if (!strcmp(value
, "ipv6"))
200 git_curl_ipresolve
= CURL_IPRESOLVE_V6
;
201 else if (!strcmp(value
, "all"))
202 git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
206 } else if (!strcmp(name
, "from-promisor")) {
207 options
.from_promisor
= 1;
209 } else if (!strcmp(name
, "refetch")) {
212 } else if (!strcmp(name
, "filter")) {
213 options
.filter
= xstrdup(value
);
215 } else if (!strcmp(name
, "object-format")) {
217 options
.object_format
= 1;
218 if (strcmp(value
, "true")) {
219 algo
= hash_algo_by_name(value
);
220 if (algo
== GIT_HASH_UNKNOWN
)
221 die("unknown object format '%s'", value
);
222 options
.hash_algo
= &hash_algos
[algo
];
226 return 1 /* unsupported */;
236 struct oid_array shallow
;
237 enum protocol_version version
;
238 unsigned proto_git
: 1;
240 static struct discovery
*last_discovery
;
242 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
244 struct ref
*list
= NULL
;
245 struct packet_reader reader
;
247 packet_reader_init(&reader
, -1, heads
->buf
, heads
->len
,
248 PACKET_READ_CHOMP_NEWLINE
|
249 PACKET_READ_GENTLE_ON_EOF
|
250 PACKET_READ_DIE_ON_ERR_PACKET
);
252 heads
->version
= discover_version(&reader
);
253 switch (heads
->version
) {
256 * Do nothing. This isn't a list of refs but rather a
257 * capability advertisement. Client would have run
258 * 'stateless-connect' so we'll dump this capability listing
259 * and let them request the refs themselves.
264 get_remote_heads(&reader
, &list
, for_push
? REF_NORMAL
: 0,
265 NULL
, &heads
->shallow
);
266 options
.hash_algo
= reader
.hash_algo
;
268 case protocol_unknown_version
:
269 BUG("unknown protocol version");
275 static const struct git_hash_algo
*detect_hash_algo(struct discovery
*heads
)
277 const char *p
= memchr(heads
->buf
, '\t', heads
->len
);
280 return the_hash_algo
;
282 algo
= hash_algo_by_length((p
- heads
->buf
) / 2);
283 if (algo
== GIT_HASH_UNKNOWN
)
285 return &hash_algos
[algo
];
288 static struct ref
*parse_info_refs(struct discovery
*heads
)
290 char *data
, *start
, *mid
;
294 struct ref
*refs
= NULL
;
295 struct ref
*ref
= NULL
;
296 struct ref
*last_ref
= NULL
;
298 options
.hash_algo
= detect_hash_algo(heads
);
299 if (!options
.hash_algo
)
300 die("%sinfo/refs not valid: could not determine hash algorithm; "
301 "is this a git repository?",
302 transport_anonymize_url(url
.buf
));
307 while (i
< heads
->len
) {
313 if (data
[i
] == '\n') {
314 if (mid
- start
!= options
.hash_algo
->hexsz
)
315 die(_("%sinfo/refs not valid: is this a git repository?"),
316 transport_anonymize_url(url
.buf
));
319 ref
= alloc_ref(ref_name
);
320 get_oid_hex_algop(start
, &ref
->old_oid
, options
.hash_algo
);
324 last_ref
->next
= ref
;
331 ref
= alloc_ref("HEAD");
332 if (!http_fetch_ref(url
.buf
, ref
) &&
333 !resolve_remote_symref(ref
, refs
)) {
343 static void free_discovery(struct discovery
*d
)
346 if (d
== last_discovery
)
347 last_discovery
= NULL
;
348 free(d
->shallow
.oid
);
356 static int show_http_message(struct strbuf
*type
, struct strbuf
*charset
,
362 * We only show text/plain parts, as other types are likely
363 * to be ugly to look at on the user's terminal.
365 if (strcmp(type
->buf
, "text/plain"))
368 strbuf_reencode(msg
, charset
->buf
, get_log_output_encoding());
376 eol
= strchrnul(p
, '\n');
377 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
383 static int get_protocol_http_header(enum protocol_version version
,
384 struct strbuf
*header
)
387 strbuf_addf(header
, GIT_PROTOCOL_HEADER
": version=%d",
396 static void check_smart_http(struct discovery
*d
, const char *service
,
400 struct packet_reader reader
;
403 * If we don't see x-$service-advertisement, then it's not smart-http.
404 * But once we do, we commit to it and assume any other protocol
405 * violations are hard errors.
407 if (!skip_prefix(type
->buf
, "application/x-", &p
) ||
408 !skip_prefix(p
, service
, &p
) ||
409 strcmp(p
, "-advertisement"))
412 packet_reader_init(&reader
, -1, d
->buf
, d
->len
,
413 PACKET_READ_CHOMP_NEWLINE
|
414 PACKET_READ_DIE_ON_ERR_PACKET
);
415 if (packet_reader_read(&reader
) != PACKET_READ_NORMAL
)
416 die(_("invalid server response; expected service, got flush packet"));
418 if (skip_prefix(reader
.line
, "# service=", &p
) && !strcmp(p
, service
)) {
420 * The header can include additional metadata lines, up
421 * until a packet flush marker. Ignore these now, but
422 * in the future we might start to scan them.
425 packet_reader_read(&reader
);
426 if (reader
.pktlen
<= 0) {
432 * v0 smart http; callers expect us to soak up the
433 * service and header packets
435 d
->buf
= reader
.src_buffer
;
436 d
->len
= reader
.src_len
;
439 } else if (!strcmp(reader
.line
, "version 2")) {
441 * v2 smart http; do not consume version packet, which will
442 * be handled elsewhere.
447 die(_("invalid server response; got '%s'"), reader
.line
);
451 static struct discovery
*discover_refs(const char *service
, int for_push
)
453 struct strbuf type
= STRBUF_INIT
;
454 struct strbuf charset
= STRBUF_INIT
;
455 struct strbuf buffer
= STRBUF_INIT
;
456 struct strbuf refs_url
= STRBUF_INIT
;
457 struct strbuf effective_url
= STRBUF_INIT
;
458 struct strbuf protocol_header
= STRBUF_INIT
;
459 struct string_list extra_headers
= STRING_LIST_INIT_DUP
;
460 struct discovery
*last
= last_discovery
;
461 int http_ret
, maybe_smart
= 0;
462 struct http_get_options http_options
;
463 enum protocol_version version
= get_protocol_version_config();
465 if (last
&& !strcmp(service
, last
->service
))
467 free_discovery(last
);
469 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
470 if ((starts_with(url
.buf
, "http://") || starts_with(url
.buf
, "https://")) &&
471 git_env_bool("GIT_SMART_HTTP", 1)) {
473 if (!strchr(url
.buf
, '?'))
474 strbuf_addch(&refs_url
, '?');
476 strbuf_addch(&refs_url
, '&');
477 strbuf_addf(&refs_url
, "service=%s", service
);
481 * NEEDSWORK: If we are trying to use protocol v2 and we are planning
482 * to perform any operation that doesn't involve upload-pack (i.e., a
483 * fetch, ls-remote, etc), then fallback to v0 since we don't know how
484 * to do anything else (like push or remote archive) via v2.
486 if (version
== protocol_v2
&& strcmp("git-upload-pack", service
))
487 version
= protocol_v0
;
489 /* Add the extra Git-Protocol header */
490 if (get_protocol_http_header(version
, &protocol_header
))
491 string_list_append(&extra_headers
, protocol_header
.buf
);
493 memset(&http_options
, 0, sizeof(http_options
));
494 http_options
.content_type
= &type
;
495 http_options
.charset
= &charset
;
496 http_options
.effective_url
= &effective_url
;
497 http_options
.base_url
= &url
;
498 http_options
.extra_headers
= &extra_headers
;
499 http_options
.initial_request
= 1;
500 http_options
.no_cache
= 1;
502 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &http_options
);
506 case HTTP_MISSING_TARGET
:
507 show_http_message(&type
, &charset
, &buffer
);
508 die(_("repository '%s' not found"),
509 transport_anonymize_url(url
.buf
));
511 show_http_message(&type
, &charset
, &buffer
);
512 die(_("Authentication failed for '%s'"),
513 transport_anonymize_url(url
.buf
));
514 case HTTP_NOMATCHPUBLICKEY
:
515 show_http_message(&type
, &charset
, &buffer
);
516 die(_("unable to access '%s' with http.pinnedPubkey configuration: %s"),
517 transport_anonymize_url(url
.buf
), curl_errorstr
);
519 show_http_message(&type
, &charset
, &buffer
);
520 die(_("unable to access '%s': %s"),
521 transport_anonymize_url(url
.buf
), curl_errorstr
);
524 if (options
.verbosity
&& !starts_with(refs_url
.buf
, url
.buf
)) {
525 char *u
= transport_anonymize_url(url
.buf
);
526 warning(_("redirecting to %s"), u
);
530 last
= xcalloc(1, sizeof(*last_discovery
));
531 last
->service
= xstrdup(service
);
532 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
533 last
->buf
= last
->buf_alloc
;
536 check_smart_http(last
, service
, &type
);
539 last
->refs
= parse_git_refs(last
, for_push
);
541 last
->refs
= parse_info_refs(last
);
543 strbuf_release(&refs_url
);
544 strbuf_release(&type
);
545 strbuf_release(&charset
);
546 strbuf_release(&effective_url
);
547 strbuf_release(&buffer
);
548 strbuf_release(&protocol_header
);
549 string_list_clear(&extra_headers
, 0);
550 last_discovery
= last
;
554 static struct ref
*get_refs(int for_push
)
556 struct discovery
*heads
;
559 heads
= discover_refs("git-receive-pack", for_push
);
561 heads
= discover_refs("git-upload-pack", for_push
);
566 static void output_refs(struct ref
*refs
)
569 if (options
.object_format
&& options
.hash_algo
) {
570 printf(":object-format %s\n", options
.hash_algo
->name
);
571 repo_set_hash_algo(the_repository
,
572 hash_algo_by_ptr(options
.hash_algo
));
574 for (posn
= refs
; posn
; posn
= posn
->next
) {
576 printf("@%s %s\n", posn
->symref
, posn
->name
);
578 printf("%s %s\n", hash_to_hex_algop(posn
->old_oid
.hash
,
587 const char *service_name
;
589 char *hdr_content_type
;
591 char *hdr_accept_language
;
592 char *protocol_header
;
600 unsigned gzip_request
: 1;
601 unsigned initial_buffer
: 1;
604 * Whenever a pkt-line is read into buf, append the 4 characters
605 * denoting its length before appending the payload.
607 unsigned write_line_lengths
: 1;
610 * Used by rpc_out; initialize to 0. This is true if a flush has been
611 * read, but the corresponding line length (if write_line_lengths is
612 * true) and EOF have not been sent to libcurl. Since each flush marks
613 * the end of a request, each flush must be completely sent before any
614 * further reading occurs.
616 unsigned flush_read_but_not_sent
: 1;
619 #define RPC_STATE_INIT { 0 }
622 * Appends the result of reading from rpc->out to the string represented by
623 * rpc->buf and rpc->len if there is enough space. Returns 1 if there was
624 * enough space, 0 otherwise.
626 * If rpc->write_line_lengths is true, appends the line length as a 4-byte
627 * hexadecimal string before appending the result described above.
629 * Writes the total number of bytes appended into appended.
631 static int rpc_read_from_out(struct rpc_state
*rpc
, int options
,
633 enum packet_read_status
*status
) {
638 if (rpc
->write_line_lengths
) {
639 left
= rpc
->alloc
- rpc
->len
- 4;
640 buf
= rpc
->buf
+ rpc
->len
+ 4;
642 left
= rpc
->alloc
- rpc
->len
;
643 buf
= rpc
->buf
+ rpc
->len
;
646 if (left
< LARGE_PACKET_MAX
)
649 *status
= packet_read_with_status(rpc
->out
, NULL
, NULL
, buf
,
650 left
, &pktlen_raw
, options
);
651 if (*status
!= PACKET_READ_EOF
) {
652 *appended
= pktlen_raw
+ (rpc
->write_line_lengths
? 4 : 0);
653 rpc
->len
+= *appended
;
656 if (rpc
->write_line_lengths
) {
658 case PACKET_READ_EOF
:
659 if (!(options
& PACKET_READ_GENTLE_ON_EOF
))
660 die(_("shouldn't have EOF when not gentle on EOF"));
662 case PACKET_READ_NORMAL
:
663 set_packet_header(buf
- 4, *appended
);
665 case PACKET_READ_DELIM
:
666 memcpy(buf
- 4, "0001", 4);
668 case PACKET_READ_FLUSH
:
669 memcpy(buf
- 4, "0000", 4);
671 case PACKET_READ_RESPONSE_END
:
672 die(_("remote server sent unexpected response end packet"));
679 static size_t rpc_out(void *ptr
, size_t eltsize
,
680 size_t nmemb
, void *buffer_
)
682 size_t max
= eltsize
* nmemb
;
683 struct rpc_state
*rpc
= buffer_
;
684 size_t avail
= rpc
->len
- rpc
->pos
;
685 enum packet_read_status status
;
688 rpc
->initial_buffer
= 0;
691 if (!rpc
->flush_read_but_not_sent
) {
692 if (!rpc_read_from_out(rpc
, 0, &avail
, &status
))
693 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
694 if (status
== PACKET_READ_FLUSH
)
695 rpc
->flush_read_but_not_sent
= 1;
698 * If flush_read_but_not_sent is true, we have already read one
699 * full request but have not fully sent it + EOF, which is why
700 * we need to refrain from reading.
703 if (rpc
->flush_read_but_not_sent
) {
706 * The line length either does not need to be sent at
707 * all or has already been completely sent. Now we can
708 * return 0, indicating EOF, meaning that the flush has
711 rpc
->flush_read_but_not_sent
= 0;
715 * If avail is non-zero, the line length for the flush still
716 * hasn't been fully sent. Proceed with sending the line
723 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
728 static int rpc_seek(void *clientp
, curl_off_t offset
, int origin
)
730 struct rpc_state
*rpc
= clientp
;
732 if (origin
!= SEEK_SET
)
733 BUG("rpc_seek only handles SEEK_SET, not %d", origin
);
735 if (rpc
->initial_buffer
) {
736 if (offset
< 0 || offset
> rpc
->len
) {
737 error("curl seek would be outside of rpc buffer");
738 return CURL_SEEKFUNC_FAIL
;
741 return CURL_SEEKFUNC_OK
;
743 error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
744 return CURL_SEEKFUNC_FAIL
;
747 struct check_pktline_state
{
753 static void check_pktline(struct check_pktline_state
*state
, const char *ptr
, size_t size
)
756 if (!state
->remaining
) {
757 int digits_remaining
= 4 - state
->len_filled
;
758 if (digits_remaining
> size
)
759 digits_remaining
= size
;
760 memcpy(&state
->len_buf
[state
->len_filled
], ptr
, digits_remaining
);
761 state
->len_filled
+= digits_remaining
;
762 ptr
+= digits_remaining
;
763 size
-= digits_remaining
;
765 if (state
->len_filled
== 4) {
766 state
->remaining
= packet_length(state
->len_buf
,
767 sizeof(state
->len_buf
));
768 if (state
->remaining
< 0) {
769 die(_("remote-curl: bad line length character: %.4s"), state
->len_buf
);
770 } else if (state
->remaining
== 2) {
771 die(_("remote-curl: unexpected response end packet"));
772 } else if (state
->remaining
< 4) {
773 state
->remaining
= 0;
775 state
->remaining
-= 4;
777 state
->len_filled
= 0;
781 if (state
->remaining
) {
782 int remaining
= state
->remaining
;
783 if (remaining
> size
)
787 state
->remaining
-= remaining
;
793 struct rpc_state
*rpc
;
794 struct active_request_slot
*slot
;
796 struct check_pktline_state pktline_state
;
800 * A callback for CURLOPT_WRITEFUNCTION. The return value is the bytes consumed
803 static size_t rpc_in(char *ptr
, size_t eltsize
,
804 size_t nmemb
, void *buffer_
)
806 size_t size
= eltsize
* nmemb
;
807 struct rpc_in_data
*data
= buffer_
;
810 if (curl_easy_getinfo(data
->slot
->curl
, CURLINFO_RESPONSE_CODE
,
811 &response_code
) != CURLE_OK
)
813 if (response_code
>= 300)
816 data
->rpc
->any_written
= 1;
817 if (data
->check_pktline
)
818 check_pktline(&data
->pktline_state
, ptr
, size
);
819 write_or_die(data
->rpc
->in
, ptr
, size
);
823 static int run_slot(struct active_request_slot
*slot
,
824 struct slot_results
*results
)
827 struct slot_results results_buf
;
830 results
= &results_buf
;
832 err
= run_one_slot(slot
, results
);
834 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
835 struct strbuf msg
= STRBUF_INIT
;
836 if (results
->http_code
&& results
->http_code
!= 200)
837 strbuf_addf(&msg
, "HTTP %ld", results
->http_code
);
838 if (results
->curl_result
!= CURLE_OK
) {
840 strbuf_addch(&msg
, ' ');
841 strbuf_addf(&msg
, "curl %d", results
->curl_result
);
842 if (curl_errorstr
[0]) {
843 strbuf_addch(&msg
, ' ');
844 strbuf_addstr(&msg
, curl_errorstr
);
847 error(_("RPC failed; %s"), msg
.buf
);
848 strbuf_release(&msg
);
854 static int probe_rpc(struct rpc_state
*rpc
, struct slot_results
*results
)
856 struct active_request_slot
*slot
;
857 struct curl_slist
*headers
= http_copy_default_headers();
858 struct strbuf buf
= STRBUF_INIT
;
861 slot
= get_active_slot();
863 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
864 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
866 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
867 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
868 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
869 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
870 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
871 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
872 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
873 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
874 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, &buf
);
876 err
= run_slot(slot
, results
);
878 curl_slist_free_all(headers
);
879 strbuf_release(&buf
);
883 static curl_off_t
xcurl_off_t(size_t len
)
885 uintmax_t size
= len
;
886 if (size
> maximum_signed_value_of_type(curl_off_t
))
887 die(_("cannot handle pushes this big"));
888 return (curl_off_t
)size
;
892 * If flush_received is true, do not attempt to read any more; just use what's
895 static int post_rpc(struct rpc_state
*rpc
, int stateless_connect
, int flush_received
)
897 struct active_request_slot
*slot
;
898 struct curl_slist
*headers
= http_copy_default_headers();
899 int use_gzip
= rpc
->gzip_request
;
900 char *gzip_body
= NULL
;
901 size_t gzip_size
= 0;
902 int err
, large_request
= 0;
903 int needs_100_continue
= 0;
904 struct rpc_in_data rpc_in_data
;
906 /* Try to load the entire request, if we can fit it into the
907 * allocated buffer space we can use HTTP/1.0 and avoid the
908 * chunked encoding mess.
910 if (!flush_received
) {
913 enum packet_read_status status
;
915 if (!rpc_read_from_out(rpc
, 0, &n
, &status
)) {
920 if (status
== PACKET_READ_FLUSH
)
926 struct slot_results results
;
929 err
= probe_rpc(rpc
, &results
);
930 if (err
== HTTP_REAUTH
)
931 credential_fill(&http_auth
);
932 } while (err
== HTTP_REAUTH
);
936 if (results
.auth_avail
& CURLAUTH_GSSNEGOTIATE
)
937 needs_100_continue
= 1;
940 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
941 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
942 headers
= curl_slist_append(headers
, needs_100_continue
?
943 "Expect: 100-continue" : "Expect:");
945 /* Add Accept-Language header */
946 if (rpc
->hdr_accept_language
)
947 headers
= curl_slist_append(headers
, rpc
->hdr_accept_language
);
949 /* Add the extra Git-Protocol header */
950 if (rpc
->protocol_header
)
951 headers
= curl_slist_append(headers
, rpc
->protocol_header
);
954 slot
= get_active_slot();
956 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
957 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
958 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
959 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
962 /* The request body is large and the size cannot be predicted.
963 * We must use chunked encoding to send it.
965 #ifdef GIT_CURL_NEED_TRANSFER_ENCODING_HEADER
966 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
968 rpc
->initial_buffer
= 1;
969 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
970 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
971 curl_easy_setopt(slot
->curl
, CURLOPT_SEEKFUNCTION
, rpc_seek
);
972 curl_easy_setopt(slot
->curl
, CURLOPT_SEEKDATA
, rpc
);
973 if (options
.verbosity
> 1) {
974 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
978 } else if (gzip_body
) {
980 * If we are looping to retry authentication, then the previous
981 * run will have set up the headers and gzip buffer already,
982 * and we just need to send it.
984 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
985 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
987 } else if (use_gzip
&& 1024 < rpc
->len
) {
988 /* The client backend isn't giving us compressed data so
989 * we can try to deflate it ourselves, this may save on
995 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
996 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
997 gzip_body
= xmalloc(gzip_size
);
999 stream
.next_in
= (unsigned char *)rpc
->buf
;
1000 stream
.avail_in
= rpc
->len
;
1001 stream
.next_out
= (unsigned char *)gzip_body
;
1002 stream
.avail_out
= gzip_size
;
1004 ret
= git_deflate(&stream
, Z_FINISH
);
1005 if (ret
!= Z_STREAM_END
)
1006 die(_("cannot deflate request; zlib deflate error %d"), ret
);
1008 ret
= git_deflate_end_gently(&stream
);
1010 die(_("cannot deflate request; zlib end error %d"), ret
);
1012 gzip_size
= stream
.total_out
;
1014 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
1015 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
1016 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
1018 if (options
.verbosity
> 1) {
1019 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
1021 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
1025 /* We know the complete request size in advance, use the
1026 * more normal Content-Length approach.
1028 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
1029 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(rpc
->len
));
1030 if (options
.verbosity
> 1) {
1031 fprintf(stderr
, "POST %s (%lu bytes)\n",
1032 rpc
->service_name
, (unsigned long)rpc
->len
);
1037 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1038 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
1039 rpc_in_data
.rpc
= rpc
;
1040 rpc_in_data
.slot
= slot
;
1041 rpc_in_data
.check_pktline
= stateless_connect
;
1042 memset(&rpc_in_data
.pktline_state
, 0, sizeof(rpc_in_data
.pktline_state
));
1043 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, &rpc_in_data
);
1044 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1047 rpc
->any_written
= 0;
1048 err
= run_slot(slot
, NULL
);
1049 if (err
== HTTP_REAUTH
&& !large_request
) {
1050 credential_fill(&http_auth
);
1056 if (!rpc
->any_written
)
1059 if (rpc_in_data
.pktline_state
.len_filled
)
1060 err
= error(_("%d bytes of length header were received"), rpc_in_data
.pktline_state
.len_filled
);
1061 if (rpc_in_data
.pktline_state
.remaining
)
1062 err
= error(_("%d bytes of body are still expected"), rpc_in_data
.pktline_state
.remaining
);
1064 if (stateless_connect
)
1065 packet_response_end(rpc
->in
);
1067 curl_slist_free_all(headers
);
1072 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
,
1073 const char **client_argv
, const struct strbuf
*preamble
,
1074 struct strbuf
*rpc_result
)
1076 const char *svc
= rpc
->service_name
;
1077 struct strbuf buf
= STRBUF_INIT
;
1078 struct child_process client
= CHILD_PROCESS_INIT
;
1084 strvec_pushv(&client
.args
, client_argv
);
1085 if (start_command(&client
))
1087 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
1089 write_or_die(client
.in
, heads
->buf
, heads
->len
);
1091 rpc
->alloc
= http_post_buffer
;
1092 rpc
->buf
= xmalloc(rpc
->alloc
);
1093 rpc
->in
= client
.in
;
1094 rpc
->out
= client
.out
;
1096 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
1097 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
1099 rpc
->hdr_accept_language
= xstrdup_or_null(http_get_accept_language_header());
1101 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
1102 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
1104 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
1105 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
1107 if (get_protocol_http_header(heads
->version
, &buf
))
1108 rpc
->protocol_header
= strbuf_detach(&buf
, NULL
);
1110 rpc
->protocol_header
= NULL
;
1113 int n
= packet_read(rpc
->out
, rpc
->buf
, rpc
->alloc
, 0);
1118 err
|= post_rpc(rpc
, 0, 0);
1124 strbuf_read(rpc_result
, client
.out
, 0);
1128 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
1135 err
|= finish_command(&client
);
1136 free(rpc
->service_url
);
1137 free(rpc
->hdr_content_type
);
1138 free(rpc
->hdr_accept
);
1139 free(rpc
->hdr_accept_language
);
1140 free(rpc
->protocol_header
);
1142 strbuf_release(&buf
);
1146 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
1148 struct walker
*walker
;
1152 ALLOC_ARRAY(targets
, nr_heads
);
1153 if (options
.depth
|| options
.deepen_since
)
1154 die(_("dumb http transport does not support shallow capabilities"));
1155 for (i
= 0; i
< nr_heads
; i
++)
1156 targets
[i
] = xstrdup(oid_to_hex(&to_fetch
[i
]->old_oid
));
1158 walker
= get_http_walker(url
.buf
);
1159 walker
->get_verbosely
= options
.verbosity
>= 3;
1160 walker
->get_progress
= options
.progress
;
1161 walker
->get_recover
= 0;
1162 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
1163 walker_free(walker
);
1165 for (i
= 0; i
< nr_heads
; i
++)
1169 return ret
? error(_("fetch failed.")) : 0;
1172 static int fetch_git(struct discovery
*heads
,
1173 int nr_heads
, struct ref
**to_fetch
)
1175 struct rpc_state rpc
= RPC_STATE_INIT
;
1176 struct strbuf preamble
= STRBUF_INIT
;
1178 struct strvec args
= STRVEC_INIT
;
1179 struct strbuf rpc_result
= STRBUF_INIT
;
1181 strvec_pushl(&args
, "fetch-pack", "--stateless-rpc",
1182 "--stdin", "--lock-pack", NULL
);
1183 if (options
.followtags
)
1184 strvec_push(&args
, "--include-tag");
1186 strvec_push(&args
, "--thin");
1187 if (options
.verbosity
>= 3)
1188 strvec_pushl(&args
, "-v", "-v", NULL
);
1189 if (options
.check_self_contained_and_connected
)
1190 strvec_push(&args
, "--check-self-contained-and-connected");
1191 if (options
.cloning
)
1192 strvec_push(&args
, "--cloning");
1193 if (options
.update_shallow
)
1194 strvec_push(&args
, "--update-shallow");
1195 if (!options
.progress
)
1196 strvec_push(&args
, "--no-progress");
1198 strvec_pushf(&args
, "--depth=%lu", options
.depth
);
1199 if (options
.deepen_since
)
1200 strvec_pushf(&args
, "--shallow-since=%s", options
.deepen_since
);
1201 for (i
= 0; i
< options
.deepen_not
.nr
; i
++)
1202 strvec_pushf(&args
, "--shallow-exclude=%s",
1203 options
.deepen_not
.items
[i
].string
);
1204 if (options
.deepen_relative
&& options
.depth
)
1205 strvec_push(&args
, "--deepen-relative");
1206 if (options
.from_promisor
)
1207 strvec_push(&args
, "--from-promisor");
1208 if (options
.refetch
)
1209 strvec_push(&args
, "--refetch");
1211 strvec_pushf(&args
, "--filter=%s", options
.filter
);
1212 strvec_push(&args
, url
.buf
);
1214 for (i
= 0; i
< nr_heads
; i
++) {
1215 struct ref
*ref
= to_fetch
[i
];
1217 die(_("cannot fetch by sha1 over smart http"));
1218 packet_buf_write(&preamble
, "%s %s\n",
1219 oid_to_hex(&ref
->old_oid
), ref
->name
);
1221 packet_buf_flush(&preamble
);
1223 memset(&rpc
, 0, sizeof(rpc
));
1224 rpc
.service_name
= "git-upload-pack",
1225 rpc
.gzip_request
= 1;
1227 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1229 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1230 strbuf_release(&rpc_result
);
1231 strbuf_release(&preamble
);
1232 strvec_clear(&args
);
1236 static int fetch(int nr_heads
, struct ref
**to_fetch
)
1238 struct discovery
*d
= discover_refs("git-upload-pack", 0);
1240 return fetch_git(d
, nr_heads
, to_fetch
);
1242 return fetch_dumb(nr_heads
, to_fetch
);
1245 static void parse_fetch(struct strbuf
*buf
)
1247 struct ref
**to_fetch
= NULL
;
1248 struct ref
*list_head
= NULL
;
1249 struct ref
**list
= &list_head
;
1250 int alloc_heads
= 0, nr_heads
= 0;
1254 if (skip_prefix(buf
->buf
, "fetch ", &p
)) {
1257 struct object_id old_oid
;
1260 if (parse_oid_hex(p
, &old_oid
, &q
))
1261 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1267 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1269 ref
= alloc_ref(name
);
1270 oidcpy(&ref
->old_oid
, &old_oid
);
1275 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
1276 to_fetch
[nr_heads
++] = ref
;
1279 die(_("http transport does not support %s"), buf
->buf
);
1282 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1288 if (fetch(nr_heads
, to_fetch
))
1289 exit(128); /* error already reported */
1290 free_refs(list_head
);
1298 static void parse_get(const char *arg
)
1300 struct strbuf url
= STRBUF_INIT
;
1301 struct strbuf path
= STRBUF_INIT
;
1304 space
= strchr(arg
, ' ');
1307 die(_("protocol error: expected '<url> <path>', missing space"));
1309 strbuf_add(&url
, arg
, space
- arg
);
1310 strbuf_addstr(&path
, space
+ 1);
1312 if (http_get_file(url
.buf
, path
.buf
, NULL
))
1313 die(_("failed to download file at URL '%s'"), url
.buf
);
1315 strbuf_release(&url
);
1316 strbuf_release(&path
);
1321 static int push_dav(int nr_spec
, const char **specs
)
1323 struct child_process child
= CHILD_PROCESS_INIT
;
1327 strvec_push(&child
.args
, "http-push");
1328 strvec_push(&child
.args
, "--helper-status");
1329 if (options
.dry_run
)
1330 strvec_push(&child
.args
, "--dry-run");
1331 if (options
.verbosity
> 1)
1332 strvec_push(&child
.args
, "--verbose");
1333 strvec_push(&child
.args
, url
.buf
);
1334 for (i
= 0; i
< nr_spec
; i
++)
1335 strvec_push(&child
.args
, specs
[i
]);
1337 if (run_command(&child
))
1338 die(_("git-http-push failed"));
1342 static int push_git(struct discovery
*heads
, int nr_spec
, const char **specs
)
1344 struct rpc_state rpc
= RPC_STATE_INIT
;
1347 struct string_list_item
*cas_option
;
1348 struct strbuf preamble
= STRBUF_INIT
;
1349 struct strbuf rpc_result
= STRBUF_INIT
;
1352 strvec_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
1356 strvec_push(&args
, "--thin");
1357 if (options
.dry_run
)
1358 strvec_push(&args
, "--dry-run");
1359 if (options
.push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
)
1360 strvec_push(&args
, "--signed=yes");
1361 else if (options
.push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
)
1362 strvec_push(&args
, "--signed=if-asked");
1364 strvec_push(&args
, "--atomic");
1365 if (options
.verbosity
== 0)
1366 strvec_push(&args
, "--quiet");
1367 else if (options
.verbosity
> 1)
1368 strvec_push(&args
, "--verbose");
1369 for (i
= 0; i
< options
.push_options
.nr
; i
++)
1370 strvec_pushf(&args
, "--push-option=%s",
1371 options
.push_options
.items
[i
].string
);
1372 strvec_push(&args
, options
.progress
? "--progress" : "--no-progress");
1373 for_each_string_list_item(cas_option
, &cas_options
)
1374 strvec_push(&args
, cas_option
->string
);
1375 strvec_push(&args
, url
.buf
);
1377 if (options
.force_if_includes
)
1378 strvec_push(&args
, "--force-if-includes");
1380 strvec_push(&args
, "--stdin");
1381 for (i
= 0; i
< nr_spec
; i
++)
1382 packet_buf_write(&preamble
, "%s\n", specs
[i
]);
1383 packet_buf_flush(&preamble
);
1385 memset(&rpc
, 0, sizeof(rpc
));
1386 rpc
.service_name
= "git-receive-pack",
1388 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1390 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1391 strbuf_release(&rpc_result
);
1392 strbuf_release(&preamble
);
1393 strvec_clear(&args
);
1397 static int push(int nr_spec
, const char **specs
)
1399 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
1402 if (heads
->proto_git
)
1403 ret
= push_git(heads
, nr_spec
, specs
);
1405 ret
= push_dav(nr_spec
, specs
);
1406 free_discovery(heads
);
1410 static void parse_push(struct strbuf
*buf
)
1412 struct strvec specs
= STRVEC_INIT
;
1417 if (skip_prefix(buf
->buf
, "push ", &arg
))
1418 strvec_push(&specs
, arg
);
1420 die(_("http transport does not support %s"), buf
->buf
);
1423 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1429 ret
= push(specs
.nr
, specs
.v
);
1434 exit(128); /* error already reported */
1437 strvec_clear(&specs
);
1440 static int stateless_connect(const char *service_name
)
1442 struct discovery
*discover
;
1443 struct rpc_state rpc
= RPC_STATE_INIT
;
1444 struct strbuf buf
= STRBUF_INIT
;
1445 const char *accept_language
;
1448 * Run the info/refs request and see if the server supports protocol
1449 * v2. If and only if the server supports v2 can we successfully
1450 * establish a stateless connection, otherwise we need to tell the
1451 * client to fallback to using other transport helper functions to
1452 * complete their request.
1454 discover
= discover_refs(service_name
, 0);
1455 if (discover
->version
!= protocol_v2
) {
1456 printf("fallback\n");
1460 /* Stateless Connection established */
1464 accept_language
= http_get_accept_language_header();
1465 if (accept_language
)
1466 rpc
.hdr_accept_language
= xstrfmt("%s", accept_language
);
1468 rpc
.service_name
= service_name
;
1469 rpc
.service_url
= xstrfmt("%s%s", url
.buf
, rpc
.service_name
);
1470 rpc
.hdr_content_type
= xstrfmt("Content-Type: application/x-%s-request", rpc
.service_name
);
1471 rpc
.hdr_accept
= xstrfmt("Accept: application/x-%s-result", rpc
.service_name
);
1472 if (get_protocol_http_header(discover
->version
, &buf
)) {
1473 rpc
.protocol_header
= strbuf_detach(&buf
, NULL
);
1475 rpc
.protocol_header
= NULL
;
1476 strbuf_release(&buf
);
1478 rpc
.buf
= xmalloc(http_post_buffer
);
1479 rpc
.alloc
= http_post_buffer
;
1484 rpc
.any_written
= 0;
1485 rpc
.gzip_request
= 1;
1486 rpc
.initial_buffer
= 0;
1487 rpc
.write_line_lengths
= 1;
1488 rpc
.flush_read_but_not_sent
= 0;
1491 * Dump the capability listing that we got from the server earlier
1492 * during the info/refs request.
1494 write_or_die(rpc
.in
, discover
->buf
, discover
->len
);
1496 /* Until we see EOF keep sending POSTs */
1499 enum packet_read_status status
;
1501 if (!rpc_read_from_out(&rpc
, PACKET_READ_GENTLE_ON_EOF
, &avail
,
1503 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
1504 if (status
== PACKET_READ_EOF
)
1506 if (post_rpc(&rpc
, 1, status
== PACKET_READ_FLUSH
))
1507 /* We would have an err here */
1509 /* Reset the buffer for next request */
1513 free(rpc
.service_url
);
1514 free(rpc
.hdr_content_type
);
1515 free(rpc
.hdr_accept
);
1516 free(rpc
.hdr_accept_language
);
1517 free(rpc
.protocol_header
);
1519 strbuf_release(&buf
);
1524 int cmd_main(int argc
, const char **argv
)
1526 struct strbuf buf
= STRBUF_INIT
;
1530 setup_git_directory_gently(&nongit
);
1532 error(_("remote-curl: usage: git remote-curl <remote> [<url>]"));
1536 options
.verbosity
= 1;
1537 options
.progress
= !!isatty(2);
1539 string_list_init_dup(&options
.deepen_not
);
1540 string_list_init_dup(&options
.push_options
);
1543 * Just report "remote-curl" here (folding all the various aliases
1544 * ("git-remote-http", "git-remote-https", and etc.) here since they
1545 * are all just copies of the same actual executable.
1547 trace2_cmd_name("remote-curl");
1549 remote
= remote_get(argv
[1]);
1552 end_url_with_slash(&url
, argv
[2]);
1554 end_url_with_slash(&url
, remote
->url
[0]);
1557 http_init(remote
, url
.buf
, 0);
1562 if (strbuf_getline_lf(&buf
, stdin
) == EOF
) {
1564 error(_("remote-curl: error reading command stream from git"));
1569 if (starts_with(buf
.buf
, "fetch ")) {
1571 die(_("remote-curl: fetch attempted without a local repo"));
1574 } else if (!strcmp(buf
.buf
, "list") || starts_with(buf
.buf
, "list ")) {
1575 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
1576 output_refs(get_refs(for_push
));
1578 } else if (starts_with(buf
.buf
, "push ")) {
1581 } else if (skip_prefix(buf
.buf
, "option ", &arg
)) {
1582 char *value
= strchr(arg
, ' ');
1590 result
= set_option(arg
, value
);
1593 else if (result
< 0)
1594 printf("error invalid value\n");
1596 printf("unsupported\n");
1599 } else if (skip_prefix(buf
.buf
, "get ", &arg
)) {
1603 } else if (!strcmp(buf
.buf
, "capabilities")) {
1604 printf("stateless-connect\n");
1609 printf("check-connectivity\n");
1610 printf("object-format\n");
1613 } else if (skip_prefix(buf
.buf
, "stateless-connect ", &arg
)) {
1614 if (!stateless_connect(arg
))
1617 error(_("remote-curl: unknown command '%s' from git"), buf
.buf
);
1626 strbuf_release(&buf
);