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 */
48 force_if_includes
: 1;
49 const struct git_hash_algo
*hash_algo
;
51 static struct options options
;
52 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
54 static int set_option(const char *name
, const char *value
)
56 if (!strcmp(name
, "verbosity")) {
58 int v
= strtol(value
, &end
, 10);
59 if (value
== end
|| *end
)
61 options
.verbosity
= v
;
64 else if (!strcmp(name
, "progress")) {
65 if (!strcmp(value
, "true"))
67 else if (!strcmp(value
, "false"))
73 else if (!strcmp(name
, "depth")) {
75 unsigned long v
= strtoul(value
, &end
, 10);
76 if (value
== end
|| *end
)
81 else if (!strcmp(name
, "deepen-since")) {
82 options
.deepen_since
= xstrdup(value
);
85 else if (!strcmp(name
, "deepen-not")) {
86 string_list_append(&options
.deepen_not
, value
);
89 else if (!strcmp(name
, "deepen-relative")) {
90 if (!strcmp(value
, "true"))
91 options
.deepen_relative
= 1;
92 else if (!strcmp(value
, "false"))
93 options
.deepen_relative
= 0;
98 else if (!strcmp(name
, "followtags")) {
99 if (!strcmp(value
, "true"))
100 options
.followtags
= 1;
101 else if (!strcmp(value
, "false"))
102 options
.followtags
= 0;
107 else if (!strcmp(name
, "dry-run")) {
108 if (!strcmp(value
, "true"))
110 else if (!strcmp(value
, "false"))
116 else if (!strcmp(name
, "check-connectivity")) {
117 if (!strcmp(value
, "true"))
118 options
.check_self_contained_and_connected
= 1;
119 else if (!strcmp(value
, "false"))
120 options
.check_self_contained_and_connected
= 0;
125 else if (!strcmp(name
, "cas")) {
126 struct strbuf val
= STRBUF_INIT
;
127 strbuf_addstr(&val
, "--force-with-lease=");
129 strbuf_addstr(&val
, value
);
130 else if (unquote_c_style(&val
, value
, NULL
))
132 string_list_append(&cas_options
, val
.buf
);
133 strbuf_release(&val
);
135 } else if (!strcmp(name
, TRANS_OPT_FORCE_IF_INCLUDES
)) {
136 if (!strcmp(value
, "true"))
137 options
.force_if_includes
= 1;
138 else if (!strcmp(value
, "false"))
139 options
.force_if_includes
= 0;
143 } else if (!strcmp(name
, "cloning")) {
144 if (!strcmp(value
, "true"))
146 else if (!strcmp(value
, "false"))
151 } else if (!strcmp(name
, "update-shallow")) {
152 if (!strcmp(value
, "true"))
153 options
.update_shallow
= 1;
154 else if (!strcmp(value
, "false"))
155 options
.update_shallow
= 0;
159 } else if (!strcmp(name
, "pushcert")) {
160 if (!strcmp(value
, "true"))
161 options
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
162 else if (!strcmp(value
, "false"))
163 options
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
164 else if (!strcmp(value
, "if-asked"))
165 options
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
169 } else if (!strcmp(name
, "atomic")) {
170 if (!strcmp(value
, "true"))
172 else if (!strcmp(value
, "false"))
177 } else if (!strcmp(name
, "push-option")) {
179 string_list_append(&options
.push_options
, value
);
181 struct strbuf unquoted
= STRBUF_INIT
;
182 if (unquote_c_style(&unquoted
, value
, NULL
) < 0)
183 die(_("invalid quoting in push-option value: '%s'"), value
);
184 string_list_append_nodup(&options
.push_options
,
185 strbuf_detach(&unquoted
, NULL
));
189 #if LIBCURL_VERSION_NUM >= 0x070a08
190 } else if (!strcmp(name
, "family")) {
191 if (!strcmp(value
, "ipv4"))
192 git_curl_ipresolve
= CURL_IPRESOLVE_V4
;
193 else if (!strcmp(value
, "ipv6"))
194 git_curl_ipresolve
= CURL_IPRESOLVE_V6
;
195 else if (!strcmp(value
, "all"))
196 git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
200 #endif /* LIBCURL_VERSION_NUM >= 0x070a08 */
201 } else if (!strcmp(name
, "from-promisor")) {
202 options
.from_promisor
= 1;
204 } else if (!strcmp(name
, "filter")) {
205 options
.filter
= xstrdup(value
);
207 } else if (!strcmp(name
, "object-format")) {
209 options
.object_format
= 1;
210 if (strcmp(value
, "true")) {
211 algo
= hash_algo_by_name(value
);
212 if (algo
== GIT_HASH_UNKNOWN
)
213 die("unknown object format '%s'", value
);
214 options
.hash_algo
= &hash_algos
[algo
];
218 return 1 /* unsupported */;
228 struct oid_array shallow
;
229 enum protocol_version version
;
230 unsigned proto_git
: 1;
232 static struct discovery
*last_discovery
;
234 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
236 struct ref
*list
= NULL
;
237 struct packet_reader reader
;
239 packet_reader_init(&reader
, -1, heads
->buf
, heads
->len
,
240 PACKET_READ_CHOMP_NEWLINE
|
241 PACKET_READ_GENTLE_ON_EOF
|
242 PACKET_READ_DIE_ON_ERR_PACKET
);
244 heads
->version
= discover_version(&reader
);
245 switch (heads
->version
) {
248 * Do nothing. This isn't a list of refs but rather a
249 * capability advertisement. Client would have run
250 * 'stateless-connect' so we'll dump this capability listing
251 * and let them request the refs themselves.
256 get_remote_heads(&reader
, &list
, for_push
? REF_NORMAL
: 0,
257 NULL
, &heads
->shallow
);
258 options
.hash_algo
= reader
.hash_algo
;
260 case protocol_unknown_version
:
261 BUG("unknown protocol version");
267 static const struct git_hash_algo
*detect_hash_algo(struct discovery
*heads
)
269 const char *p
= memchr(heads
->buf
, '\t', heads
->len
);
272 return the_hash_algo
;
274 algo
= hash_algo_by_length((p
- heads
->buf
) / 2);
275 if (algo
== GIT_HASH_UNKNOWN
)
277 return &hash_algos
[algo
];
280 static struct ref
*parse_info_refs(struct discovery
*heads
)
282 char *data
, *start
, *mid
;
286 struct ref
*refs
= NULL
;
287 struct ref
*ref
= NULL
;
288 struct ref
*last_ref
= NULL
;
290 options
.hash_algo
= detect_hash_algo(heads
);
291 if (!options
.hash_algo
)
292 die("%sinfo/refs not valid: could not determine hash algorithm; "
293 "is this a git repository?",
294 transport_anonymize_url(url
.buf
));
299 while (i
< heads
->len
) {
305 if (data
[i
] == '\n') {
306 if (mid
- start
!= options
.hash_algo
->hexsz
)
307 die(_("%sinfo/refs not valid: is this a git repository?"),
308 transport_anonymize_url(url
.buf
));
311 ref
= alloc_ref(ref_name
);
312 get_oid_hex_algop(start
, &ref
->old_oid
, options
.hash_algo
);
316 last_ref
->next
= ref
;
323 ref
= alloc_ref("HEAD");
324 if (!http_fetch_ref(url
.buf
, ref
) &&
325 !resolve_remote_symref(ref
, refs
)) {
335 static void free_discovery(struct discovery
*d
)
338 if (d
== last_discovery
)
339 last_discovery
= NULL
;
340 free(d
->shallow
.oid
);
348 static int show_http_message(struct strbuf
*type
, struct strbuf
*charset
,
354 * We only show text/plain parts, as other types are likely
355 * to be ugly to look at on the user's terminal.
357 if (strcmp(type
->buf
, "text/plain"))
360 strbuf_reencode(msg
, charset
->buf
, get_log_output_encoding());
368 eol
= strchrnul(p
, '\n');
369 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
375 static int get_protocol_http_header(enum protocol_version version
,
376 struct strbuf
*header
)
379 strbuf_addf(header
, GIT_PROTOCOL_HEADER
": version=%d",
388 static void check_smart_http(struct discovery
*d
, const char *service
,
392 struct packet_reader reader
;
395 * If we don't see x-$service-advertisement, then it's not smart-http.
396 * But once we do, we commit to it and assume any other protocol
397 * violations are hard errors.
399 if (!skip_prefix(type
->buf
, "application/x-", &p
) ||
400 !skip_prefix(p
, service
, &p
) ||
401 strcmp(p
, "-advertisement"))
404 packet_reader_init(&reader
, -1, d
->buf
, d
->len
,
405 PACKET_READ_CHOMP_NEWLINE
|
406 PACKET_READ_DIE_ON_ERR_PACKET
);
407 if (packet_reader_read(&reader
) != PACKET_READ_NORMAL
)
408 die(_("invalid server response; expected service, got flush packet"));
410 if (skip_prefix(reader
.line
, "# service=", &p
) && !strcmp(p
, service
)) {
412 * The header can include additional metadata lines, up
413 * until a packet flush marker. Ignore these now, but
414 * in the future we might start to scan them.
417 packet_reader_read(&reader
);
418 if (reader
.pktlen
<= 0) {
424 * v0 smart http; callers expect us to soak up the
425 * service and header packets
427 d
->buf
= reader
.src_buffer
;
428 d
->len
= reader
.src_len
;
431 } else if (!strcmp(reader
.line
, "version 2")) {
433 * v2 smart http; do not consume version packet, which will
434 * be handled elsewhere.
439 die(_("invalid server response; got '%s'"), reader
.line
);
443 static struct discovery
*discover_refs(const char *service
, int for_push
)
445 struct strbuf type
= STRBUF_INIT
;
446 struct strbuf charset
= STRBUF_INIT
;
447 struct strbuf buffer
= STRBUF_INIT
;
448 struct strbuf refs_url
= STRBUF_INIT
;
449 struct strbuf effective_url
= STRBUF_INIT
;
450 struct strbuf protocol_header
= STRBUF_INIT
;
451 struct string_list extra_headers
= STRING_LIST_INIT_DUP
;
452 struct discovery
*last
= last_discovery
;
453 int http_ret
, maybe_smart
= 0;
454 struct http_get_options http_options
;
455 enum protocol_version version
= get_protocol_version_config();
457 if (last
&& !strcmp(service
, last
->service
))
459 free_discovery(last
);
461 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
462 if ((starts_with(url
.buf
, "http://") || starts_with(url
.buf
, "https://")) &&
463 git_env_bool("GIT_SMART_HTTP", 1)) {
465 if (!strchr(url
.buf
, '?'))
466 strbuf_addch(&refs_url
, '?');
468 strbuf_addch(&refs_url
, '&');
469 strbuf_addf(&refs_url
, "service=%s", service
);
473 * NEEDSWORK: If we are trying to use protocol v2 and we are planning
474 * to perform a push, then fallback to v0 since the client doesn't know
475 * how to push yet using v2.
477 if (version
== protocol_v2
&& !strcmp("git-receive-pack", service
))
478 version
= protocol_v0
;
480 /* Add the extra Git-Protocol header */
481 if (get_protocol_http_header(version
, &protocol_header
))
482 string_list_append(&extra_headers
, protocol_header
.buf
);
484 memset(&http_options
, 0, sizeof(http_options
));
485 http_options
.content_type
= &type
;
486 http_options
.charset
= &charset
;
487 http_options
.effective_url
= &effective_url
;
488 http_options
.base_url
= &url
;
489 http_options
.extra_headers
= &extra_headers
;
490 http_options
.initial_request
= 1;
491 http_options
.no_cache
= 1;
493 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &http_options
);
497 case HTTP_MISSING_TARGET
:
498 show_http_message(&type
, &charset
, &buffer
);
499 die(_("repository '%s' not found"),
500 transport_anonymize_url(url
.buf
));
502 show_http_message(&type
, &charset
, &buffer
);
503 die(_("Authentication failed for '%s'"),
504 transport_anonymize_url(url
.buf
));
506 show_http_message(&type
, &charset
, &buffer
);
507 die(_("unable to access '%s': %s"),
508 transport_anonymize_url(url
.buf
), curl_errorstr
);
511 if (options
.verbosity
&& !starts_with(refs_url
.buf
, url
.buf
)) {
512 char *u
= transport_anonymize_url(url
.buf
);
513 warning(_("redirecting to %s"), u
);
517 last
= xcalloc(1, sizeof(*last_discovery
));
518 last
->service
= xstrdup(service
);
519 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
520 last
->buf
= last
->buf_alloc
;
523 check_smart_http(last
, service
, &type
);
526 last
->refs
= parse_git_refs(last
, for_push
);
528 last
->refs
= parse_info_refs(last
);
530 strbuf_release(&refs_url
);
531 strbuf_release(&type
);
532 strbuf_release(&charset
);
533 strbuf_release(&effective_url
);
534 strbuf_release(&buffer
);
535 strbuf_release(&protocol_header
);
536 string_list_clear(&extra_headers
, 0);
537 last_discovery
= last
;
541 static struct ref
*get_refs(int for_push
)
543 struct discovery
*heads
;
546 heads
= discover_refs("git-receive-pack", for_push
);
548 heads
= discover_refs("git-upload-pack", for_push
);
553 static void output_refs(struct ref
*refs
)
556 if (options
.object_format
&& options
.hash_algo
) {
557 printf(":object-format %s\n", options
.hash_algo
->name
);
559 for (posn
= refs
; posn
; posn
= posn
->next
) {
561 printf("@%s %s\n", posn
->symref
, posn
->name
);
563 printf("%s %s\n", hash_to_hex_algop(posn
->old_oid
.hash
,
572 const char *service_name
;
574 char *hdr_content_type
;
576 char *protocol_header
;
584 unsigned gzip_request
: 1;
585 unsigned initial_buffer
: 1;
588 * Whenever a pkt-line is read into buf, append the 4 characters
589 * denoting its length before appending the payload.
591 unsigned write_line_lengths
: 1;
594 * Used by rpc_out; initialize to 0. This is true if a flush has been
595 * read, but the corresponding line length (if write_line_lengths is
596 * true) and EOF have not been sent to libcurl. Since each flush marks
597 * the end of a request, each flush must be completely sent before any
598 * further reading occurs.
600 unsigned flush_read_but_not_sent
: 1;
604 * Appends the result of reading from rpc->out to the string represented by
605 * rpc->buf and rpc->len if there is enough space. Returns 1 if there was
606 * enough space, 0 otherwise.
608 * If rpc->write_line_lengths is true, appends the line length as a 4-byte
609 * hexadecimal string before appending the result described above.
611 * Writes the total number of bytes appended into appended.
613 static int rpc_read_from_out(struct rpc_state
*rpc
, int options
,
615 enum packet_read_status
*status
) {
620 if (rpc
->write_line_lengths
) {
621 left
= rpc
->alloc
- rpc
->len
- 4;
622 buf
= rpc
->buf
+ rpc
->len
+ 4;
624 left
= rpc
->alloc
- rpc
->len
;
625 buf
= rpc
->buf
+ rpc
->len
;
628 if (left
< LARGE_PACKET_MAX
)
631 *status
= packet_read_with_status(rpc
->out
, NULL
, NULL
, buf
,
632 left
, &pktlen_raw
, options
);
633 if (*status
!= PACKET_READ_EOF
) {
634 *appended
= pktlen_raw
+ (rpc
->write_line_lengths
? 4 : 0);
635 rpc
->len
+= *appended
;
638 if (rpc
->write_line_lengths
) {
640 case PACKET_READ_EOF
:
641 if (!(options
& PACKET_READ_GENTLE_ON_EOF
))
642 die(_("shouldn't have EOF when not gentle on EOF"));
644 case PACKET_READ_NORMAL
:
645 set_packet_header(buf
- 4, *appended
);
647 case PACKET_READ_DELIM
:
648 memcpy(buf
- 4, "0001", 4);
650 case PACKET_READ_FLUSH
:
651 memcpy(buf
- 4, "0000", 4);
653 case PACKET_READ_RESPONSE_END
:
654 die(_("remote server sent stateless separator"));
661 static size_t rpc_out(void *ptr
, size_t eltsize
,
662 size_t nmemb
, void *buffer_
)
664 size_t max
= eltsize
* nmemb
;
665 struct rpc_state
*rpc
= buffer_
;
666 size_t avail
= rpc
->len
- rpc
->pos
;
667 enum packet_read_status status
;
670 rpc
->initial_buffer
= 0;
673 if (!rpc
->flush_read_but_not_sent
) {
674 if (!rpc_read_from_out(rpc
, 0, &avail
, &status
))
675 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
676 if (status
== PACKET_READ_FLUSH
)
677 rpc
->flush_read_but_not_sent
= 1;
680 * If flush_read_but_not_sent is true, we have already read one
681 * full request but have not fully sent it + EOF, which is why
682 * we need to refrain from reading.
685 if (rpc
->flush_read_but_not_sent
) {
688 * The line length either does not need to be sent at
689 * all or has already been completely sent. Now we can
690 * return 0, indicating EOF, meaning that the flush has
693 rpc
->flush_read_but_not_sent
= 0;
697 * If avail is non-zero, the line length for the flush still
698 * hasn't been fully sent. Proceed with sending the line
705 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
710 #ifndef NO_CURL_IOCTL
711 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
713 struct rpc_state
*rpc
= clientp
;
719 case CURLIOCMD_RESTARTREAD
:
720 if (rpc
->initial_buffer
) {
724 error(_("unable to rewind rpc post data - try increasing http.postBuffer"));
725 return CURLIOE_FAILRESTART
;
728 return CURLIOE_UNKNOWNCMD
;
733 struct check_pktline_state
{
739 static void check_pktline(struct check_pktline_state
*state
, const char *ptr
, size_t size
)
742 if (!state
->remaining
) {
743 int digits_remaining
= 4 - state
->len_filled
;
744 if (digits_remaining
> size
)
745 digits_remaining
= size
;
746 memcpy(&state
->len_buf
[state
->len_filled
], ptr
, digits_remaining
);
747 state
->len_filled
+= digits_remaining
;
748 ptr
+= digits_remaining
;
749 size
-= digits_remaining
;
751 if (state
->len_filled
== 4) {
752 state
->remaining
= packet_length(state
->len_buf
);
753 if (state
->remaining
< 0) {
754 die(_("remote-curl: bad line length character: %.4s"), state
->len_buf
);
755 } else if (state
->remaining
== 2) {
756 die(_("remote-curl: unexpected response end packet"));
757 } else if (state
->remaining
< 4) {
758 state
->remaining
= 0;
760 state
->remaining
-= 4;
762 state
->len_filled
= 0;
766 if (state
->remaining
) {
767 int remaining
= state
->remaining
;
768 if (remaining
> size
)
772 state
->remaining
-= remaining
;
778 struct rpc_state
*rpc
;
779 struct active_request_slot
*slot
;
781 struct check_pktline_state pktline_state
;
785 * A callback for CURLOPT_WRITEFUNCTION. The return value is the bytes consumed
788 static size_t rpc_in(char *ptr
, size_t eltsize
,
789 size_t nmemb
, void *buffer_
)
791 size_t size
= eltsize
* nmemb
;
792 struct rpc_in_data
*data
= buffer_
;
795 if (curl_easy_getinfo(data
->slot
->curl
, CURLINFO_RESPONSE_CODE
,
796 &response_code
) != CURLE_OK
)
798 if (response_code
>= 300)
801 data
->rpc
->any_written
= 1;
802 if (data
->check_pktline
)
803 check_pktline(&data
->pktline_state
, ptr
, size
);
804 write_or_die(data
->rpc
->in
, ptr
, size
);
808 static int run_slot(struct active_request_slot
*slot
,
809 struct slot_results
*results
)
812 struct slot_results results_buf
;
815 results
= &results_buf
;
817 err
= run_one_slot(slot
, results
);
819 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
820 struct strbuf msg
= STRBUF_INIT
;
821 if (results
->http_code
&& results
->http_code
!= 200)
822 strbuf_addf(&msg
, "HTTP %ld", results
->http_code
);
823 if (results
->curl_result
!= CURLE_OK
) {
825 strbuf_addch(&msg
, ' ');
826 strbuf_addf(&msg
, "curl %d", results
->curl_result
);
827 if (curl_errorstr
[0]) {
828 strbuf_addch(&msg
, ' ');
829 strbuf_addstr(&msg
, curl_errorstr
);
832 error(_("RPC failed; %s"), msg
.buf
);
833 strbuf_release(&msg
);
839 static int probe_rpc(struct rpc_state
*rpc
, struct slot_results
*results
)
841 struct active_request_slot
*slot
;
842 struct curl_slist
*headers
= http_copy_default_headers();
843 struct strbuf buf
= STRBUF_INIT
;
846 slot
= get_active_slot();
848 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
849 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
851 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
852 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
853 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
854 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
855 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
856 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
857 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
858 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
859 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buf
);
861 err
= run_slot(slot
, results
);
863 curl_slist_free_all(headers
);
864 strbuf_release(&buf
);
868 static curl_off_t
xcurl_off_t(size_t len
)
870 uintmax_t size
= len
;
871 if (size
> maximum_signed_value_of_type(curl_off_t
))
872 die(_("cannot handle pushes this big"));
873 return (curl_off_t
)size
;
877 * If flush_received is true, do not attempt to read any more; just use what's
880 static int post_rpc(struct rpc_state
*rpc
, int stateless_connect
, int flush_received
)
882 struct active_request_slot
*slot
;
883 struct curl_slist
*headers
= http_copy_default_headers();
884 int use_gzip
= rpc
->gzip_request
;
885 char *gzip_body
= NULL
;
886 size_t gzip_size
= 0;
887 int err
, large_request
= 0;
888 int needs_100_continue
= 0;
889 struct rpc_in_data rpc_in_data
;
891 /* Try to load the entire request, if we can fit it into the
892 * allocated buffer space we can use HTTP/1.0 and avoid the
893 * chunked encoding mess.
895 if (!flush_received
) {
898 enum packet_read_status status
;
900 if (!rpc_read_from_out(rpc
, 0, &n
, &status
)) {
905 if (status
== PACKET_READ_FLUSH
)
911 struct slot_results results
;
914 err
= probe_rpc(rpc
, &results
);
915 if (err
== HTTP_REAUTH
)
916 credential_fill(&http_auth
);
917 } while (err
== HTTP_REAUTH
);
921 if (results
.auth_avail
& CURLAUTH_GSSNEGOTIATE
)
922 needs_100_continue
= 1;
925 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
926 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
927 headers
= curl_slist_append(headers
, needs_100_continue
?
928 "Expect: 100-continue" : "Expect:");
930 /* Add the extra Git-Protocol header */
931 if (rpc
->protocol_header
)
932 headers
= curl_slist_append(headers
, rpc
->protocol_header
);
935 slot
= get_active_slot();
937 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
938 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
939 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
940 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
943 /* The request body is large and the size cannot be predicted.
944 * We must use chunked encoding to send it.
946 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
947 rpc
->initial_buffer
= 1;
948 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
949 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
950 #ifndef NO_CURL_IOCTL
951 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
952 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
954 if (options
.verbosity
> 1) {
955 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
959 } else if (gzip_body
) {
961 * If we are looping to retry authentication, then the previous
962 * run will have set up the headers and gzip buffer already,
963 * and we just need to send it.
965 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
966 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
968 } else if (use_gzip
&& 1024 < rpc
->len
) {
969 /* The client backend isn't giving us compressed data so
970 * we can try to deflate it ourselves, this may save on
976 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
977 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
978 gzip_body
= xmalloc(gzip_size
);
980 stream
.next_in
= (unsigned char *)rpc
->buf
;
981 stream
.avail_in
= rpc
->len
;
982 stream
.next_out
= (unsigned char *)gzip_body
;
983 stream
.avail_out
= gzip_size
;
985 ret
= git_deflate(&stream
, Z_FINISH
);
986 if (ret
!= Z_STREAM_END
)
987 die(_("cannot deflate request; zlib deflate error %d"), ret
);
989 ret
= git_deflate_end_gently(&stream
);
991 die(_("cannot deflate request; zlib end error %d"), ret
);
993 gzip_size
= stream
.total_out
;
995 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
996 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
997 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
999 if (options
.verbosity
> 1) {
1000 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
1002 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
1006 /* We know the complete request size in advance, use the
1007 * more normal Content-Length approach.
1009 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
1010 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(rpc
->len
));
1011 if (options
.verbosity
> 1) {
1012 fprintf(stderr
, "POST %s (%lu bytes)\n",
1013 rpc
->service_name
, (unsigned long)rpc
->len
);
1018 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1019 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
1020 rpc_in_data
.rpc
= rpc
;
1021 rpc_in_data
.slot
= slot
;
1022 rpc_in_data
.check_pktline
= stateless_connect
;
1023 memset(&rpc_in_data
.pktline_state
, 0, sizeof(rpc_in_data
.pktline_state
));
1024 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &rpc_in_data
);
1025 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1028 rpc
->any_written
= 0;
1029 err
= run_slot(slot
, NULL
);
1030 if (err
== HTTP_REAUTH
&& !large_request
) {
1031 credential_fill(&http_auth
);
1037 if (!rpc
->any_written
)
1040 if (rpc_in_data
.pktline_state
.len_filled
)
1041 err
= error(_("%d bytes of length header were received"), rpc_in_data
.pktline_state
.len_filled
);
1042 if (rpc_in_data
.pktline_state
.remaining
)
1043 err
= error(_("%d bytes of body are still expected"), rpc_in_data
.pktline_state
.remaining
);
1045 if (stateless_connect
)
1046 packet_response_end(rpc
->in
);
1048 curl_slist_free_all(headers
);
1053 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
,
1054 const char **client_argv
, const struct strbuf
*preamble
,
1055 struct strbuf
*rpc_result
)
1057 const char *svc
= rpc
->service_name
;
1058 struct strbuf buf
= STRBUF_INIT
;
1059 struct child_process client
= CHILD_PROCESS_INIT
;
1065 client
.argv
= client_argv
;
1066 if (start_command(&client
))
1068 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
1070 write_or_die(client
.in
, heads
->buf
, heads
->len
);
1072 rpc
->alloc
= http_post_buffer
;
1073 rpc
->buf
= xmalloc(rpc
->alloc
);
1074 rpc
->in
= client
.in
;
1075 rpc
->out
= client
.out
;
1077 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
1078 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
1080 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
1081 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
1083 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
1084 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
1086 if (get_protocol_http_header(heads
->version
, &buf
))
1087 rpc
->protocol_header
= strbuf_detach(&buf
, NULL
);
1089 rpc
->protocol_header
= NULL
;
1092 int n
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
1097 err
|= post_rpc(rpc
, 0, 0);
1103 strbuf_read(rpc_result
, client
.out
, 0);
1107 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
1114 err
|= finish_command(&client
);
1115 free(rpc
->service_url
);
1116 free(rpc
->hdr_content_type
);
1117 free(rpc
->hdr_accept
);
1118 free(rpc
->protocol_header
);
1120 strbuf_release(&buf
);
1124 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
1126 struct walker
*walker
;
1130 ALLOC_ARRAY(targets
, nr_heads
);
1131 if (options
.depth
|| options
.deepen_since
)
1132 die(_("dumb http transport does not support shallow capabilities"));
1133 for (i
= 0; i
< nr_heads
; i
++)
1134 targets
[i
] = xstrdup(oid_to_hex(&to_fetch
[i
]->old_oid
));
1136 walker
= get_http_walker(url
.buf
);
1137 walker
->get_verbosely
= options
.verbosity
>= 3;
1138 walker
->get_progress
= options
.progress
;
1139 walker
->get_recover
= 0;
1140 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
1141 walker_free(walker
);
1143 for (i
= 0; i
< nr_heads
; i
++)
1147 return ret
? error(_("fetch failed.")) : 0;
1150 static int fetch_git(struct discovery
*heads
,
1151 int nr_heads
, struct ref
**to_fetch
)
1153 struct rpc_state rpc
;
1154 struct strbuf preamble
= STRBUF_INIT
;
1156 struct strvec args
= STRVEC_INIT
;
1157 struct strbuf rpc_result
= STRBUF_INIT
;
1159 strvec_pushl(&args
, "fetch-pack", "--stateless-rpc",
1160 "--stdin", "--lock-pack", NULL
);
1161 if (options
.followtags
)
1162 strvec_push(&args
, "--include-tag");
1164 strvec_push(&args
, "--thin");
1165 if (options
.verbosity
>= 3)
1166 strvec_pushl(&args
, "-v", "-v", NULL
);
1167 if (options
.check_self_contained_and_connected
)
1168 strvec_push(&args
, "--check-self-contained-and-connected");
1169 if (options
.cloning
)
1170 strvec_push(&args
, "--cloning");
1171 if (options
.update_shallow
)
1172 strvec_push(&args
, "--update-shallow");
1173 if (!options
.progress
)
1174 strvec_push(&args
, "--no-progress");
1176 strvec_pushf(&args
, "--depth=%lu", options
.depth
);
1177 if (options
.deepen_since
)
1178 strvec_pushf(&args
, "--shallow-since=%s", options
.deepen_since
);
1179 for (i
= 0; i
< options
.deepen_not
.nr
; i
++)
1180 strvec_pushf(&args
, "--shallow-exclude=%s",
1181 options
.deepen_not
.items
[i
].string
);
1182 if (options
.deepen_relative
&& options
.depth
)
1183 strvec_push(&args
, "--deepen-relative");
1184 if (options
.from_promisor
)
1185 strvec_push(&args
, "--from-promisor");
1187 strvec_pushf(&args
, "--filter=%s", options
.filter
);
1188 strvec_push(&args
, url
.buf
);
1190 for (i
= 0; i
< nr_heads
; i
++) {
1191 struct ref
*ref
= to_fetch
[i
];
1193 die(_("cannot fetch by sha1 over smart http"));
1194 packet_buf_write(&preamble
, "%s %s\n",
1195 oid_to_hex(&ref
->old_oid
), ref
->name
);
1197 packet_buf_flush(&preamble
);
1199 memset(&rpc
, 0, sizeof(rpc
));
1200 rpc
.service_name
= "git-upload-pack",
1201 rpc
.gzip_request
= 1;
1203 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1205 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1206 strbuf_release(&rpc_result
);
1207 strbuf_release(&preamble
);
1208 strvec_clear(&args
);
1212 static int fetch(int nr_heads
, struct ref
**to_fetch
)
1214 struct discovery
*d
= discover_refs("git-upload-pack", 0);
1216 return fetch_git(d
, nr_heads
, to_fetch
);
1218 return fetch_dumb(nr_heads
, to_fetch
);
1221 static void parse_fetch(struct strbuf
*buf
)
1223 struct ref
**to_fetch
= NULL
;
1224 struct ref
*list_head
= NULL
;
1225 struct ref
**list
= &list_head
;
1226 int alloc_heads
= 0, nr_heads
= 0;
1230 if (skip_prefix(buf
->buf
, "fetch ", &p
)) {
1233 struct object_id old_oid
;
1236 if (parse_oid_hex(p
, &old_oid
, &q
))
1237 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1243 die(_("protocol error: expected sha/ref, got '%s'"), p
);
1245 ref
= alloc_ref(name
);
1246 oidcpy(&ref
->old_oid
, &old_oid
);
1251 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
1252 to_fetch
[nr_heads
++] = ref
;
1255 die(_("http transport does not support %s"), buf
->buf
);
1258 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1264 if (fetch(nr_heads
, to_fetch
))
1265 exit(128); /* error already reported */
1266 free_refs(list_head
);
1274 static int push_dav(int nr_spec
, const char **specs
)
1276 struct child_process child
= CHILD_PROCESS_INIT
;
1280 strvec_push(&child
.args
, "http-push");
1281 strvec_push(&child
.args
, "--helper-status");
1282 if (options
.dry_run
)
1283 strvec_push(&child
.args
, "--dry-run");
1284 if (options
.verbosity
> 1)
1285 strvec_push(&child
.args
, "--verbose");
1286 strvec_push(&child
.args
, url
.buf
);
1287 for (i
= 0; i
< nr_spec
; i
++)
1288 strvec_push(&child
.args
, specs
[i
]);
1290 if (run_command(&child
))
1291 die(_("git-http-push failed"));
1295 static int push_git(struct discovery
*heads
, int nr_spec
, const char **specs
)
1297 struct rpc_state rpc
;
1300 struct string_list_item
*cas_option
;
1301 struct strbuf preamble
= STRBUF_INIT
;
1302 struct strbuf rpc_result
= STRBUF_INIT
;
1305 strvec_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
1309 strvec_push(&args
, "--thin");
1310 if (options
.dry_run
)
1311 strvec_push(&args
, "--dry-run");
1312 if (options
.push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
)
1313 strvec_push(&args
, "--signed=yes");
1314 else if (options
.push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
)
1315 strvec_push(&args
, "--signed=if-asked");
1317 strvec_push(&args
, "--atomic");
1318 if (options
.verbosity
== 0)
1319 strvec_push(&args
, "--quiet");
1320 else if (options
.verbosity
> 1)
1321 strvec_push(&args
, "--verbose");
1322 for (i
= 0; i
< options
.push_options
.nr
; i
++)
1323 strvec_pushf(&args
, "--push-option=%s",
1324 options
.push_options
.items
[i
].string
);
1325 strvec_push(&args
, options
.progress
? "--progress" : "--no-progress");
1326 for_each_string_list_item(cas_option
, &cas_options
)
1327 strvec_push(&args
, cas_option
->string
);
1328 strvec_push(&args
, url
.buf
);
1330 if (options
.force_if_includes
)
1331 strvec_push(&args
, "--force-if-includes");
1333 strvec_push(&args
, "--stdin");
1334 for (i
= 0; i
< nr_spec
; i
++)
1335 packet_buf_write(&preamble
, "%s\n", specs
[i
]);
1336 packet_buf_flush(&preamble
);
1338 memset(&rpc
, 0, sizeof(rpc
));
1339 rpc
.service_name
= "git-receive-pack",
1341 err
= rpc_service(&rpc
, heads
, args
.v
, &preamble
, &rpc_result
);
1343 write_or_die(1, rpc_result
.buf
, rpc_result
.len
);
1344 strbuf_release(&rpc_result
);
1345 strbuf_release(&preamble
);
1346 strvec_clear(&args
);
1350 static int push(int nr_spec
, const char **specs
)
1352 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
1355 if (heads
->proto_git
)
1356 ret
= push_git(heads
, nr_spec
, specs
);
1358 ret
= push_dav(nr_spec
, specs
);
1359 free_discovery(heads
);
1363 static void parse_push(struct strbuf
*buf
)
1365 struct strvec specs
= STRVEC_INIT
;
1370 if (skip_prefix(buf
->buf
, "push ", &arg
))
1371 strvec_push(&specs
, arg
);
1373 die(_("http transport does not support %s"), buf
->buf
);
1376 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1382 ret
= push(specs
.nr
, specs
.v
);
1387 exit(128); /* error already reported */
1390 strvec_clear(&specs
);
1393 static int stateless_connect(const char *service_name
)
1395 struct discovery
*discover
;
1396 struct rpc_state rpc
;
1397 struct strbuf buf
= STRBUF_INIT
;
1400 * Run the info/refs request and see if the server supports protocol
1401 * v2. If and only if the server supports v2 can we successfully
1402 * establish a stateless connection, otherwise we need to tell the
1403 * client to fallback to using other transport helper functions to
1404 * complete their request.
1406 discover
= discover_refs(service_name
, 0);
1407 if (discover
->version
!= protocol_v2
) {
1408 printf("fallback\n");
1412 /* Stateless Connection established */
1417 rpc
.service_name
= service_name
;
1418 rpc
.service_url
= xstrfmt("%s%s", url
.buf
, rpc
.service_name
);
1419 rpc
.hdr_content_type
= xstrfmt("Content-Type: application/x-%s-request", rpc
.service_name
);
1420 rpc
.hdr_accept
= xstrfmt("Accept: application/x-%s-result", rpc
.service_name
);
1421 if (get_protocol_http_header(discover
->version
, &buf
)) {
1422 rpc
.protocol_header
= strbuf_detach(&buf
, NULL
);
1424 rpc
.protocol_header
= NULL
;
1425 strbuf_release(&buf
);
1427 rpc
.buf
= xmalloc(http_post_buffer
);
1428 rpc
.alloc
= http_post_buffer
;
1433 rpc
.any_written
= 0;
1434 rpc
.gzip_request
= 1;
1435 rpc
.initial_buffer
= 0;
1436 rpc
.write_line_lengths
= 1;
1437 rpc
.flush_read_but_not_sent
= 0;
1440 * Dump the capability listing that we got from the server earlier
1441 * during the info/refs request.
1443 write_or_die(rpc
.in
, discover
->buf
, discover
->len
);
1445 /* Until we see EOF keep sending POSTs */
1448 enum packet_read_status status
;
1450 if (!rpc_read_from_out(&rpc
, PACKET_READ_GENTLE_ON_EOF
, &avail
,
1452 BUG("The entire rpc->buf should be larger than LARGE_PACKET_MAX");
1453 if (status
== PACKET_READ_EOF
)
1455 if (post_rpc(&rpc
, 1, status
== PACKET_READ_FLUSH
))
1456 /* We would have an err here */
1458 /* Reset the buffer for next request */
1462 free(rpc
.service_url
);
1463 free(rpc
.hdr_content_type
);
1464 free(rpc
.hdr_accept
);
1465 free(rpc
.protocol_header
);
1467 strbuf_release(&buf
);
1472 int cmd_main(int argc
, const char **argv
)
1474 struct strbuf buf
= STRBUF_INIT
;
1477 setup_git_directory_gently(&nongit
);
1479 error(_("remote-curl: usage: git remote-curl <remote> [<url>]"));
1483 options
.verbosity
= 1;
1484 options
.progress
= !!isatty(2);
1486 string_list_init(&options
.deepen_not
, 1);
1487 string_list_init(&options
.push_options
, 1);
1490 * Just report "remote-curl" here (folding all the various aliases
1491 * ("git-remote-http", "git-remote-https", and etc.) here since they
1492 * are all just copies of the same actual executable.
1494 trace2_cmd_name("remote-curl");
1496 remote
= remote_get(argv
[1]);
1499 end_url_with_slash(&url
, argv
[2]);
1501 end_url_with_slash(&url
, remote
->url
[0]);
1504 http_init(remote
, url
.buf
, 0);
1509 if (strbuf_getline_lf(&buf
, stdin
) == EOF
) {
1511 error(_("remote-curl: error reading command stream from git"));
1516 if (starts_with(buf
.buf
, "fetch ")) {
1518 die(_("remote-curl: fetch attempted without a local repo"));
1521 } else if (!strcmp(buf
.buf
, "list") || starts_with(buf
.buf
, "list ")) {
1522 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
1523 output_refs(get_refs(for_push
));
1525 } else if (starts_with(buf
.buf
, "push ")) {
1528 } else if (skip_prefix(buf
.buf
, "option ", &arg
)) {
1529 char *value
= strchr(arg
, ' ');
1537 result
= set_option(arg
, value
);
1540 else if (result
< 0)
1541 printf("error invalid value\n");
1543 printf("unsupported\n");
1546 } else if (!strcmp(buf
.buf
, "capabilities")) {
1547 printf("stateless-connect\n");
1551 printf("check-connectivity\n");
1552 printf("object-format\n");
1555 } else if (skip_prefix(buf
.buf
, "stateless-connect ", &arg
)) {
1556 if (!stateless_connect(arg
))
1559 error(_("remote-curl: unknown command '%s' from git"), buf
.buf
);