9 #include "run-command.h"
11 #include "string-list.h"
13 #include "argv-array.h"
14 #include "credential.h"
15 #include "sha1-array.h"
16 #include "send-pack.h"
20 static struct remote
*remote
;
21 /* always ends with a trailing slash */
22 static struct strbuf url
= STRBUF_INIT
;
28 struct string_list deepen_not
;
29 struct string_list push_options
;
31 unsigned progress
: 1,
32 check_self_contained_and_connected
: 1,
38 /* One of the SEND_PACK_PUSH_CERT_* constants. */
44 static struct options options
;
45 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
47 static int set_option(const char *name
, const char *value
)
49 if (!strcmp(name
, "verbosity")) {
51 int v
= strtol(value
, &end
, 10);
52 if (value
== end
|| *end
)
54 options
.verbosity
= v
;
57 else if (!strcmp(name
, "progress")) {
58 if (!strcmp(value
, "true"))
60 else if (!strcmp(value
, "false"))
66 else if (!strcmp(name
, "depth")) {
68 unsigned long v
= strtoul(value
, &end
, 10);
69 if (value
== end
|| *end
)
74 else if (!strcmp(name
, "deepen-since")) {
75 options
.deepen_since
= xstrdup(value
);
78 else if (!strcmp(name
, "deepen-not")) {
79 string_list_append(&options
.deepen_not
, value
);
82 else if (!strcmp(name
, "deepen-relative")) {
83 if (!strcmp(value
, "true"))
84 options
.deepen_relative
= 1;
85 else if (!strcmp(value
, "false"))
86 options
.deepen_relative
= 0;
91 else if (!strcmp(name
, "followtags")) {
92 if (!strcmp(value
, "true"))
93 options
.followtags
= 1;
94 else if (!strcmp(value
, "false"))
95 options
.followtags
= 0;
100 else if (!strcmp(name
, "dry-run")) {
101 if (!strcmp(value
, "true"))
103 else if (!strcmp(value
, "false"))
109 else if (!strcmp(name
, "check-connectivity")) {
110 if (!strcmp(value
, "true"))
111 options
.check_self_contained_and_connected
= 1;
112 else if (!strcmp(value
, "false"))
113 options
.check_self_contained_and_connected
= 0;
118 else if (!strcmp(name
, "cas")) {
119 struct strbuf val
= STRBUF_INIT
;
120 strbuf_addf(&val
, "--" CAS_OPT_NAME
"=%s", value
);
121 string_list_append(&cas_options
, val
.buf
);
122 strbuf_release(&val
);
124 } else if (!strcmp(name
, "cloning")) {
125 if (!strcmp(value
, "true"))
127 else if (!strcmp(value
, "false"))
132 } else if (!strcmp(name
, "update-shallow")) {
133 if (!strcmp(value
, "true"))
134 options
.update_shallow
= 1;
135 else if (!strcmp(value
, "false"))
136 options
.update_shallow
= 0;
140 } else if (!strcmp(name
, "pushcert")) {
141 if (!strcmp(value
, "true"))
142 options
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
143 else if (!strcmp(value
, "false"))
144 options
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
145 else if (!strcmp(value
, "if-asked"))
146 options
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
150 } else if (!strcmp(name
, "push-option")) {
152 string_list_append(&options
.push_options
, value
);
154 struct strbuf unquoted
= STRBUF_INIT
;
155 if (unquote_c_style(&unquoted
, value
, NULL
) < 0)
156 die("invalid quoting in push-option value");
157 string_list_append_nodup(&options
.push_options
,
158 strbuf_detach(&unquoted
, NULL
));
162 #if LIBCURL_VERSION_NUM >= 0x070a08
163 } else if (!strcmp(name
, "family")) {
164 if (!strcmp(value
, "ipv4"))
165 git_curl_ipresolve
= CURL_IPRESOLVE_V4
;
166 else if (!strcmp(value
, "ipv6"))
167 git_curl_ipresolve
= CURL_IPRESOLVE_V6
;
168 else if (!strcmp(value
, "all"))
169 git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
173 #endif /* LIBCURL_VERSION_NUM >= 0x070a08 */
174 } else if (!strcmp(name
, "from-promisor")) {
175 options
.from_promisor
= 1;
177 } else if (!strcmp(name
, "no-dependents")) {
178 options
.no_dependents
= 1;
180 } else if (!strcmp(name
, "filter")) {
181 options
.filter
= xstrdup(value
);
184 return 1 /* unsupported */;
194 struct oid_array shallow
;
195 enum protocol_version version
;
196 unsigned proto_git
: 1;
198 static struct discovery
*last_discovery
;
200 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
202 struct ref
*list
= NULL
;
203 struct packet_reader reader
;
205 packet_reader_init(&reader
, -1, heads
->buf
, heads
->len
,
206 PACKET_READ_CHOMP_NEWLINE
|
207 PACKET_READ_GENTLE_ON_EOF
);
209 heads
->version
= discover_version(&reader
);
210 switch (heads
->version
) {
213 * Do nothing. This isn't a list of refs but rather a
214 * capability advertisement. Client would have run
215 * 'stateless-connect' so we'll dump this capability listing
216 * and let them request the refs themselves.
221 get_remote_heads(&reader
, &list
, for_push
? REF_NORMAL
: 0,
222 NULL
, &heads
->shallow
);
224 case protocol_unknown_version
:
225 BUG("unknown protocol version");
231 static struct ref
*parse_info_refs(struct discovery
*heads
)
233 char *data
, *start
, *mid
;
237 struct ref
*refs
= NULL
;
238 struct ref
*ref
= NULL
;
239 struct ref
*last_ref
= NULL
;
244 while (i
< heads
->len
) {
250 if (data
[i
] == '\n') {
251 if (mid
- start
!= 40)
252 die("%sinfo/refs not valid: is this a git repository?",
256 ref
= alloc_ref(ref_name
);
257 get_oid_hex(start
, &ref
->old_oid
);
261 last_ref
->next
= ref
;
268 ref
= alloc_ref("HEAD");
269 if (!http_fetch_ref(url
.buf
, ref
) &&
270 !resolve_remote_symref(ref
, refs
)) {
280 static void free_discovery(struct discovery
*d
)
283 if (d
== last_discovery
)
284 last_discovery
= NULL
;
285 free(d
->shallow
.oid
);
293 static int show_http_message(struct strbuf
*type
, struct strbuf
*charset
,
299 * We only show text/plain parts, as other types are likely
300 * to be ugly to look at on the user's terminal.
302 if (strcmp(type
->buf
, "text/plain"))
305 strbuf_reencode(msg
, charset
->buf
, get_log_output_encoding());
313 eol
= strchrnul(p
, '\n');
314 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
320 static int get_protocol_http_header(enum protocol_version version
,
321 struct strbuf
*header
)
324 strbuf_addf(header
, GIT_PROTOCOL_HEADER
": version=%d",
333 static struct discovery
*discover_refs(const char *service
, int for_push
)
335 struct strbuf exp
= STRBUF_INIT
;
336 struct strbuf type
= STRBUF_INIT
;
337 struct strbuf charset
= STRBUF_INIT
;
338 struct strbuf buffer
= STRBUF_INIT
;
339 struct strbuf refs_url
= STRBUF_INIT
;
340 struct strbuf effective_url
= STRBUF_INIT
;
341 struct strbuf protocol_header
= STRBUF_INIT
;
342 struct string_list extra_headers
= STRING_LIST_INIT_DUP
;
343 struct discovery
*last
= last_discovery
;
344 int http_ret
, maybe_smart
= 0;
345 struct http_get_options http_options
;
346 enum protocol_version version
= get_protocol_version_config();
348 if (last
&& !strcmp(service
, last
->service
))
350 free_discovery(last
);
352 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
353 if ((starts_with(url
.buf
, "http://") || starts_with(url
.buf
, "https://")) &&
354 git_env_bool("GIT_SMART_HTTP", 1)) {
356 if (!strchr(url
.buf
, '?'))
357 strbuf_addch(&refs_url
, '?');
359 strbuf_addch(&refs_url
, '&');
360 strbuf_addf(&refs_url
, "service=%s", service
);
364 * NEEDSWORK: If we are trying to use protocol v2 and we are planning
365 * to perform a push, then fallback to v0 since the client doesn't know
366 * how to push yet using v2.
368 if (version
== protocol_v2
&& !strcmp("git-receive-pack", service
))
369 version
= protocol_v0
;
371 /* Add the extra Git-Protocol header */
372 if (get_protocol_http_header(version
, &protocol_header
))
373 string_list_append(&extra_headers
, protocol_header
.buf
);
375 memset(&http_options
, 0, sizeof(http_options
));
376 http_options
.content_type
= &type
;
377 http_options
.charset
= &charset
;
378 http_options
.effective_url
= &effective_url
;
379 http_options
.base_url
= &url
;
380 http_options
.extra_headers
= &extra_headers
;
381 http_options
.initial_request
= 1;
382 http_options
.no_cache
= 1;
383 http_options
.keep_error
= 1;
385 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &http_options
);
389 case HTTP_MISSING_TARGET
:
390 show_http_message(&type
, &charset
, &buffer
);
391 die("repository '%s' not found", url
.buf
);
393 show_http_message(&type
, &charset
, &buffer
);
394 die("Authentication failed for '%s'", url
.buf
);
396 show_http_message(&type
, &charset
, &buffer
);
397 die("unable to access '%s': %s", url
.buf
, curl_errorstr
);
400 if (options
.verbosity
&& !starts_with(refs_url
.buf
, url
.buf
))
401 warning(_("redirecting to %s"), url
.buf
);
403 last
= xcalloc(1, sizeof(*last_discovery
));
404 last
->service
= xstrdup(service
);
405 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
406 last
->buf
= last
->buf_alloc
;
408 strbuf_addf(&exp
, "application/x-%s-advertisement", service
);
410 (5 <= last
->len
&& last
->buf
[4] == '#') &&
411 !strbuf_cmp(&exp
, &type
)) {
415 * smart HTTP response; validate that the service
416 * pkt-line matches our request.
418 line
= packet_read_line_buf(&last
->buf
, &last
->len
, NULL
);
420 die("invalid server response; expected service, got flush packet");
423 strbuf_addf(&exp
, "# service=%s", service
);
424 if (strcmp(line
, exp
.buf
))
425 die("invalid server response; got '%s'", line
);
426 strbuf_release(&exp
);
428 /* The header can include additional metadata lines, up
429 * until a packet flush marker. Ignore these now, but
430 * in the future we might start to scan them.
432 while (packet_read_line_buf(&last
->buf
, &last
->len
, NULL
))
436 } else if (maybe_smart
&&
437 last
->len
> 5 && starts_with(last
->buf
+ 4, "version 2")) {
442 last
->refs
= parse_git_refs(last
, for_push
);
444 last
->refs
= parse_info_refs(last
);
446 strbuf_release(&refs_url
);
447 strbuf_release(&exp
);
448 strbuf_release(&type
);
449 strbuf_release(&charset
);
450 strbuf_release(&effective_url
);
451 strbuf_release(&buffer
);
452 strbuf_release(&protocol_header
);
453 string_list_clear(&extra_headers
, 0);
454 last_discovery
= last
;
458 static struct ref
*get_refs(int for_push
)
460 struct discovery
*heads
;
463 heads
= discover_refs("git-receive-pack", for_push
);
465 heads
= discover_refs("git-upload-pack", for_push
);
470 static void output_refs(struct ref
*refs
)
473 for (posn
= refs
; posn
; posn
= posn
->next
) {
475 printf("@%s %s\n", posn
->symref
, posn
->name
);
477 printf("%s %s\n", oid_to_hex(&posn
->old_oid
), posn
->name
);
484 const char *service_name
;
486 struct strbuf
*stdin_preamble
;
488 char *hdr_content_type
;
490 char *protocol_header
;
498 struct strbuf result
;
499 unsigned gzip_request
: 1;
500 unsigned initial_buffer
: 1;
503 static size_t rpc_out(void *ptr
, size_t eltsize
,
504 size_t nmemb
, void *buffer_
)
506 size_t max
= eltsize
* nmemb
;
507 struct rpc_state
*rpc
= buffer_
;
508 size_t avail
= rpc
->len
- rpc
->pos
;
511 rpc
->initial_buffer
= 0;
512 avail
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
521 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
526 #ifndef NO_CURL_IOCTL
527 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
529 struct rpc_state
*rpc
= clientp
;
535 case CURLIOCMD_RESTARTREAD
:
536 if (rpc
->initial_buffer
) {
540 error("unable to rewind rpc post data - try increasing http.postBuffer");
541 return CURLIOE_FAILRESTART
;
544 return CURLIOE_UNKNOWNCMD
;
549 static size_t rpc_in(char *ptr
, size_t eltsize
,
550 size_t nmemb
, void *buffer_
)
552 size_t size
= eltsize
* nmemb
;
553 struct rpc_state
*rpc
= buffer_
;
555 rpc
->any_written
= 1;
556 write_or_die(rpc
->in
, ptr
, size
);
560 static int run_slot(struct active_request_slot
*slot
,
561 struct slot_results
*results
)
564 struct slot_results results_buf
;
567 results
= &results_buf
;
569 err
= run_one_slot(slot
, results
);
571 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
572 struct strbuf msg
= STRBUF_INIT
;
573 if (results
->http_code
&& results
->http_code
!= 200)
574 strbuf_addf(&msg
, "HTTP %ld", results
->http_code
);
575 if (results
->curl_result
!= CURLE_OK
) {
577 strbuf_addch(&msg
, ' ');
578 strbuf_addf(&msg
, "curl %d", results
->curl_result
);
579 if (curl_errorstr
[0]) {
580 strbuf_addch(&msg
, ' ');
581 strbuf_addstr(&msg
, curl_errorstr
);
584 error("RPC failed; %s", msg
.buf
);
585 strbuf_release(&msg
);
591 static int probe_rpc(struct rpc_state
*rpc
, struct slot_results
*results
)
593 struct active_request_slot
*slot
;
594 struct curl_slist
*headers
= http_copy_default_headers();
595 struct strbuf buf
= STRBUF_INIT
;
598 slot
= get_active_slot();
600 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
601 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
603 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
604 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
605 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
606 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
607 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
608 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
609 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
610 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
611 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buf
);
613 err
= run_slot(slot
, results
);
615 curl_slist_free_all(headers
);
616 strbuf_release(&buf
);
620 static curl_off_t
xcurl_off_t(size_t len
) {
621 uintmax_t size
= len
;
622 if (size
> maximum_signed_value_of_type(curl_off_t
))
623 die("cannot handle pushes this big");
624 return (curl_off_t
)size
;
627 static int post_rpc(struct rpc_state
*rpc
)
629 struct active_request_slot
*slot
;
630 struct curl_slist
*headers
= http_copy_default_headers();
631 int use_gzip
= rpc
->gzip_request
;
632 char *gzip_body
= NULL
;
633 size_t gzip_size
= 0;
634 int err
, large_request
= 0;
635 int needs_100_continue
= 0;
637 /* Try to load the entire request, if we can fit it into the
638 * allocated buffer space we can use HTTP/1.0 and avoid the
639 * chunked encoding mess.
642 size_t left
= rpc
->alloc
- rpc
->len
;
643 char *buf
= rpc
->buf
+ rpc
->len
;
646 if (left
< LARGE_PACKET_MAX
) {
652 n
= packet_read(rpc
->out
, NULL
, NULL
, buf
, left
, 0);
659 struct slot_results results
;
662 err
= probe_rpc(rpc
, &results
);
663 if (err
== HTTP_REAUTH
)
664 credential_fill(&http_auth
);
665 } while (err
== HTTP_REAUTH
);
669 if (results
.auth_avail
& CURLAUTH_GSSNEGOTIATE
)
670 needs_100_continue
= 1;
673 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
674 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
675 headers
= curl_slist_append(headers
, needs_100_continue
?
676 "Expect: 100-continue" : "Expect:");
678 /* Add the extra Git-Protocol header */
679 if (rpc
->protocol_header
)
680 headers
= curl_slist_append(headers
, rpc
->protocol_header
);
683 slot
= get_active_slot();
685 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
686 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
687 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
688 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
691 /* The request body is large and the size cannot be predicted.
692 * We must use chunked encoding to send it.
694 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
695 rpc
->initial_buffer
= 1;
696 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
697 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
698 #ifndef NO_CURL_IOCTL
699 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
700 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
702 if (options
.verbosity
> 1) {
703 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
707 } else if (gzip_body
) {
709 * If we are looping to retry authentication, then the previous
710 * run will have set up the headers and gzip buffer already,
711 * and we just need to send it.
713 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
714 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
716 } else if (use_gzip
&& 1024 < rpc
->len
) {
717 /* The client backend isn't giving us compressed data so
718 * we can try to deflate it ourselves, this may save on
724 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
725 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
726 gzip_body
= xmalloc(gzip_size
);
728 stream
.next_in
= (unsigned char *)rpc
->buf
;
729 stream
.avail_in
= rpc
->len
;
730 stream
.next_out
= (unsigned char *)gzip_body
;
731 stream
.avail_out
= gzip_size
;
733 ret
= git_deflate(&stream
, Z_FINISH
);
734 if (ret
!= Z_STREAM_END
)
735 die("cannot deflate request; zlib deflate error %d", ret
);
737 ret
= git_deflate_end_gently(&stream
);
739 die("cannot deflate request; zlib end error %d", ret
);
741 gzip_size
= stream
.total_out
;
743 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
744 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
745 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(gzip_size
));
747 if (options
.verbosity
> 1) {
748 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
750 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
754 /* We know the complete request size in advance, use the
755 * more normal Content-Length approach.
757 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
758 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE_LARGE
, xcurl_off_t(rpc
->len
));
759 if (options
.verbosity
> 1) {
760 fprintf(stderr
, "POST %s (%lu bytes)\n",
761 rpc
->service_name
, (unsigned long)rpc
->len
);
766 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
767 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
768 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, rpc
);
771 rpc
->any_written
= 0;
772 err
= run_slot(slot
, NULL
);
773 if (err
== HTTP_REAUTH
&& !large_request
) {
774 credential_fill(&http_auth
);
780 if (!rpc
->any_written
)
783 curl_slist_free_all(headers
);
788 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
)
790 const char *svc
= rpc
->service_name
;
791 struct strbuf buf
= STRBUF_INIT
;
792 struct strbuf
*preamble
= rpc
->stdin_preamble
;
793 struct child_process client
= CHILD_PROCESS_INIT
;
799 client
.argv
= rpc
->argv
;
800 if (start_command(&client
))
803 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
805 write_or_die(client
.in
, heads
->buf
, heads
->len
);
807 rpc
->alloc
= http_post_buffer
;
808 rpc
->buf
= xmalloc(rpc
->alloc
);
810 rpc
->out
= client
.out
;
811 strbuf_init(&rpc
->result
, 0);
813 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
814 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
816 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
817 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
819 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
820 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
822 if (get_protocol_http_header(heads
->version
, &buf
))
823 rpc
->protocol_header
= strbuf_detach(&buf
, NULL
);
825 rpc
->protocol_header
= NULL
;
828 int n
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
833 err
|= post_rpc(rpc
);
839 strbuf_read(&rpc
->result
, client
.out
, 0);
843 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
850 err
|= finish_command(&client
);
851 free(rpc
->service_url
);
852 free(rpc
->hdr_content_type
);
853 free(rpc
->hdr_accept
);
854 free(rpc
->protocol_header
);
856 strbuf_release(&buf
);
860 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
862 struct walker
*walker
;
866 ALLOC_ARRAY(targets
, nr_heads
);
867 if (options
.depth
|| options
.deepen_since
)
868 die("dumb http transport does not support shallow capabilities");
869 for (i
= 0; i
< nr_heads
; i
++)
870 targets
[i
] = xstrdup(oid_to_hex(&to_fetch
[i
]->old_oid
));
872 walker
= get_http_walker(url
.buf
);
873 walker
->get_verbosely
= options
.verbosity
>= 3;
874 walker
->get_recover
= 0;
875 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
878 for (i
= 0; i
< nr_heads
; i
++)
882 return ret
? error("fetch failed.") : 0;
885 static int fetch_git(struct discovery
*heads
,
886 int nr_heads
, struct ref
**to_fetch
)
888 struct rpc_state rpc
;
889 struct strbuf preamble
= STRBUF_INIT
;
891 struct argv_array args
= ARGV_ARRAY_INIT
;
893 argv_array_pushl(&args
, "fetch-pack", "--stateless-rpc",
894 "--stdin", "--lock-pack", NULL
);
895 if (options
.followtags
)
896 argv_array_push(&args
, "--include-tag");
898 argv_array_push(&args
, "--thin");
899 if (options
.verbosity
>= 3)
900 argv_array_pushl(&args
, "-v", "-v", NULL
);
901 if (options
.check_self_contained_and_connected
)
902 argv_array_push(&args
, "--check-self-contained-and-connected");
904 argv_array_push(&args
, "--cloning");
905 if (options
.update_shallow
)
906 argv_array_push(&args
, "--update-shallow");
907 if (!options
.progress
)
908 argv_array_push(&args
, "--no-progress");
910 argv_array_pushf(&args
, "--depth=%lu", options
.depth
);
911 if (options
.deepen_since
)
912 argv_array_pushf(&args
, "--shallow-since=%s", options
.deepen_since
);
913 for (i
= 0; i
< options
.deepen_not
.nr
; i
++)
914 argv_array_pushf(&args
, "--shallow-exclude=%s",
915 options
.deepen_not
.items
[i
].string
);
916 if (options
.deepen_relative
&& options
.depth
)
917 argv_array_push(&args
, "--deepen-relative");
918 if (options
.from_promisor
)
919 argv_array_push(&args
, "--from-promisor");
920 if (options
.no_dependents
)
921 argv_array_push(&args
, "--no-dependents");
923 argv_array_pushf(&args
, "--filter=%s", options
.filter
);
924 argv_array_push(&args
, url
.buf
);
926 for (i
= 0; i
< nr_heads
; i
++) {
927 struct ref
*ref
= to_fetch
[i
];
929 die("cannot fetch by sha1 over smart http");
930 packet_buf_write(&preamble
, "%s %s\n",
931 oid_to_hex(&ref
->old_oid
), ref
->name
);
933 packet_buf_flush(&preamble
);
935 memset(&rpc
, 0, sizeof(rpc
));
936 rpc
.service_name
= "git-upload-pack",
937 rpc
.argv
= args
.argv
;
938 rpc
.stdin_preamble
= &preamble
;
939 rpc
.gzip_request
= 1;
941 err
= rpc_service(&rpc
, heads
);
943 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
944 strbuf_release(&rpc
.result
);
945 strbuf_release(&preamble
);
946 argv_array_clear(&args
);
950 static int fetch(int nr_heads
, struct ref
**to_fetch
)
952 struct discovery
*d
= discover_refs("git-upload-pack", 0);
954 return fetch_git(d
, nr_heads
, to_fetch
);
956 return fetch_dumb(nr_heads
, to_fetch
);
959 static void parse_fetch(struct strbuf
*buf
)
961 struct ref
**to_fetch
= NULL
;
962 struct ref
*list_head
= NULL
;
963 struct ref
**list
= &list_head
;
964 int alloc_heads
= 0, nr_heads
= 0;
968 if (skip_prefix(buf
->buf
, "fetch ", &p
)) {
971 struct object_id old_oid
;
973 if (get_oid_hex(p
, &old_oid
))
974 die("protocol error: expected sha/ref, got %s'", p
);
975 if (p
[GIT_SHA1_HEXSZ
] == ' ')
976 name
= p
+ GIT_SHA1_HEXSZ
+ 1;
977 else if (!p
[GIT_SHA1_HEXSZ
])
980 die("protocol error: expected sha/ref, got %s'", p
);
982 ref
= alloc_ref(name
);
983 oidcpy(&ref
->old_oid
, &old_oid
);
988 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
989 to_fetch
[nr_heads
++] = ref
;
992 die("http transport does not support %s", buf
->buf
);
995 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1001 if (fetch(nr_heads
, to_fetch
))
1002 exit(128); /* error already reported */
1003 free_refs(list_head
);
1011 static int push_dav(int nr_spec
, char **specs
)
1013 struct child_process child
= CHILD_PROCESS_INIT
;
1017 argv_array_push(&child
.args
, "http-push");
1018 argv_array_push(&child
.args
, "--helper-status");
1019 if (options
.dry_run
)
1020 argv_array_push(&child
.args
, "--dry-run");
1021 if (options
.verbosity
> 1)
1022 argv_array_push(&child
.args
, "--verbose");
1023 argv_array_push(&child
.args
, url
.buf
);
1024 for (i
= 0; i
< nr_spec
; i
++)
1025 argv_array_push(&child
.args
, specs
[i
]);
1027 if (run_command(&child
))
1028 die("git-http-push failed");
1032 static int push_git(struct discovery
*heads
, int nr_spec
, char **specs
)
1034 struct rpc_state rpc
;
1036 struct argv_array args
;
1037 struct string_list_item
*cas_option
;
1038 struct strbuf preamble
= STRBUF_INIT
;
1040 argv_array_init(&args
);
1041 argv_array_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
1045 argv_array_push(&args
, "--thin");
1046 if (options
.dry_run
)
1047 argv_array_push(&args
, "--dry-run");
1048 if (options
.push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
)
1049 argv_array_push(&args
, "--signed=yes");
1050 else if (options
.push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
)
1051 argv_array_push(&args
, "--signed=if-asked");
1052 if (options
.verbosity
== 0)
1053 argv_array_push(&args
, "--quiet");
1054 else if (options
.verbosity
> 1)
1055 argv_array_push(&args
, "--verbose");
1056 for (i
= 0; i
< options
.push_options
.nr
; i
++)
1057 argv_array_pushf(&args
, "--push-option=%s",
1058 options
.push_options
.items
[i
].string
);
1059 argv_array_push(&args
, options
.progress
? "--progress" : "--no-progress");
1060 for_each_string_list_item(cas_option
, &cas_options
)
1061 argv_array_push(&args
, cas_option
->string
);
1062 argv_array_push(&args
, url
.buf
);
1064 argv_array_push(&args
, "--stdin");
1065 for (i
= 0; i
< nr_spec
; i
++)
1066 packet_buf_write(&preamble
, "%s\n", specs
[i
]);
1067 packet_buf_flush(&preamble
);
1069 memset(&rpc
, 0, sizeof(rpc
));
1070 rpc
.service_name
= "git-receive-pack",
1071 rpc
.argv
= args
.argv
;
1072 rpc
.stdin_preamble
= &preamble
;
1074 err
= rpc_service(&rpc
, heads
);
1076 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
1077 strbuf_release(&rpc
.result
);
1078 strbuf_release(&preamble
);
1079 argv_array_clear(&args
);
1083 static int push(int nr_spec
, char **specs
)
1085 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
1088 if (heads
->proto_git
)
1089 ret
= push_git(heads
, nr_spec
, specs
);
1091 ret
= push_dav(nr_spec
, specs
);
1092 free_discovery(heads
);
1096 static void parse_push(struct strbuf
*buf
)
1098 char **specs
= NULL
;
1099 int alloc_spec
= 0, nr_spec
= 0, i
, ret
;
1102 if (starts_with(buf
->buf
, "push ")) {
1103 ALLOC_GROW(specs
, nr_spec
+ 1, alloc_spec
);
1104 specs
[nr_spec
++] = xstrdup(buf
->buf
+ 5);
1107 die("http transport does not support %s", buf
->buf
);
1110 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1116 ret
= push(nr_spec
, specs
);
1121 exit(128); /* error already reported */
1124 for (i
= 0; i
< nr_spec
; i
++)
1130 * Used to represent the state of a connection to an HTTP server when
1131 * communicating using git's wire-protocol version 2.
1133 struct proxy_state
{
1136 struct curl_slist
*headers
;
1137 struct strbuf request_buffer
;
1140 struct packet_reader reader
;
1145 static void proxy_state_init(struct proxy_state
*p
, const char *service_name
,
1146 enum protocol_version version
)
1148 struct strbuf buf
= STRBUF_INIT
;
1150 memset(p
, 0, sizeof(*p
));
1151 p
->service_name
= xstrdup(service_name
);
1155 strbuf_init(&p
->request_buffer
, 0);
1157 strbuf_addf(&buf
, "%s%s", url
.buf
, p
->service_name
);
1158 p
->service_url
= strbuf_detach(&buf
, NULL
);
1160 p
->headers
= http_copy_default_headers();
1162 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", p
->service_name
);
1163 p
->headers
= curl_slist_append(p
->headers
, buf
.buf
);
1166 strbuf_addf(&buf
, "Accept: application/x-%s-result", p
->service_name
);
1167 p
->headers
= curl_slist_append(p
->headers
, buf
.buf
);
1170 p
->headers
= curl_slist_append(p
->headers
, "Transfer-Encoding: chunked");
1172 /* Add the Git-Protocol header */
1173 if (get_protocol_http_header(version
, &buf
))
1174 p
->headers
= curl_slist_append(p
->headers
, buf
.buf
);
1176 packet_reader_init(&p
->reader
, p
->in
, NULL
, 0,
1177 PACKET_READ_GENTLE_ON_EOF
);
1179 strbuf_release(&buf
);
1182 static void proxy_state_clear(struct proxy_state
*p
)
1184 free(p
->service_name
);
1185 free(p
->service_url
);
1186 curl_slist_free_all(p
->headers
);
1187 strbuf_release(&p
->request_buffer
);
1191 * CURLOPT_READFUNCTION callback function.
1192 * Attempts to copy over a single packet-line at a time into the
1193 * curl provided buffer.
1195 static size_t proxy_in(char *buffer
, size_t eltsize
,
1196 size_t nmemb
, void *userdata
)
1199 struct proxy_state
*p
= userdata
;
1200 size_t avail
= p
->request_buffer
.len
- p
->pos
;
1204 BUG("curl read callback called with size = %"PRIuMAX
" != 1",
1205 (uintmax_t)eltsize
);
1209 if (p
->seen_flush
) {
1214 strbuf_reset(&p
->request_buffer
);
1215 switch (packet_reader_read(&p
->reader
)) {
1216 case PACKET_READ_EOF
:
1217 die("unexpected EOF when reading from parent process");
1218 case PACKET_READ_NORMAL
:
1219 packet_buf_write_len(&p
->request_buffer
, p
->reader
.line
,
1222 case PACKET_READ_DELIM
:
1223 packet_buf_delim(&p
->request_buffer
);
1225 case PACKET_READ_FLUSH
:
1226 packet_buf_flush(&p
->request_buffer
);
1231 avail
= p
->request_buffer
.len
;
1236 memcpy(buffer
, p
->request_buffer
.buf
+ p
->pos
, avail
);
1241 static size_t proxy_out(char *buffer
, size_t eltsize
,
1242 size_t nmemb
, void *userdata
)
1245 struct proxy_state
*p
= userdata
;
1248 BUG("curl read callback called with size = %"PRIuMAX
" != 1",
1249 (uintmax_t)eltsize
);
1252 write_or_die(p
->out
, buffer
, size
);
1256 /* Issues a request to the HTTP server configured in `p` */
1257 static int proxy_request(struct proxy_state
*p
)
1259 struct active_request_slot
*slot
;
1261 slot
= get_active_slot();
1263 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
1264 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
1265 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
1266 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, p
->service_url
);
1267 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, p
->headers
);
1269 /* Setup function to read request from client */
1270 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, proxy_in
);
1271 curl_easy_setopt(slot
->curl
, CURLOPT_READDATA
, p
);
1273 /* Setup function to write server response to client */
1274 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, proxy_out
);
1275 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, p
);
1277 if (run_slot(slot
, NULL
) != HTTP_OK
)
1283 static int stateless_connect(const char *service_name
)
1285 struct discovery
*discover
;
1286 struct proxy_state p
;
1289 * Run the info/refs request and see if the server supports protocol
1290 * v2. If and only if the server supports v2 can we successfully
1291 * establish a stateless connection, otherwise we need to tell the
1292 * client to fallback to using other transport helper functions to
1293 * complete their request.
1295 discover
= discover_refs(service_name
, 0);
1296 if (discover
->version
!= protocol_v2
) {
1297 printf("fallback\n");
1301 /* Stateless Connection established */
1306 proxy_state_init(&p
, service_name
, discover
->version
);
1309 * Dump the capability listing that we got from the server earlier
1310 * during the info/refs request.
1312 write_or_die(p
.out
, discover
->buf
, discover
->len
);
1314 /* Peek the next packet line. Until we see EOF keep sending POSTs */
1315 while (packet_reader_peek(&p
.reader
) != PACKET_READ_EOF
) {
1316 if (proxy_request(&p
)) {
1317 /* We would have an err here */
1322 proxy_state_clear(&p
);
1326 int cmd_main(int argc
, const char **argv
)
1328 struct strbuf buf
= STRBUF_INIT
;
1331 setup_git_directory_gently(&nongit
);
1333 error("remote-curl: usage: git remote-curl <remote> [<url>]");
1337 options
.verbosity
= 1;
1338 options
.progress
= !!isatty(2);
1340 string_list_init(&options
.deepen_not
, 1);
1341 string_list_init(&options
.push_options
, 1);
1343 remote
= remote_get(argv
[1]);
1346 end_url_with_slash(&url
, argv
[2]);
1348 end_url_with_slash(&url
, remote
->url
[0]);
1351 http_init(remote
, url
.buf
, 0);
1356 if (strbuf_getline_lf(&buf
, stdin
) == EOF
) {
1358 error("remote-curl: error reading command stream from git");
1363 if (starts_with(buf
.buf
, "fetch ")) {
1365 die("remote-curl: fetch attempted without a local repo");
1368 } else if (!strcmp(buf
.buf
, "list") || starts_with(buf
.buf
, "list ")) {
1369 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
1370 output_refs(get_refs(for_push
));
1372 } else if (starts_with(buf
.buf
, "push ")) {
1375 } else if (skip_prefix(buf
.buf
, "option ", &arg
)) {
1376 char *value
= strchr(arg
, ' ');
1384 result
= set_option(arg
, value
);
1387 else if (result
< 0)
1388 printf("error invalid value\n");
1390 printf("unsupported\n");
1393 } else if (!strcmp(buf
.buf
, "capabilities")) {
1394 printf("stateless-connect\n");
1398 printf("check-connectivity\n");
1401 } else if (skip_prefix(buf
.buf
, "stateless-connect ", &arg
)) {
1402 if (!stateless_connect(arg
))
1405 error("remote-curl: unknown command '%s' from git", buf
.buf
);