7 #include "run-command.h"
9 #include "string-list.h"
11 #include "argv-array.h"
12 #include "credential.h"
13 #include "sha1-array.h"
14 #include "send-pack.h"
16 static struct remote
*remote
;
17 /* always ends with a trailing slash */
18 static struct strbuf url
= STRBUF_INIT
;
24 struct string_list deepen_not
;
25 unsigned progress
: 1,
26 check_self_contained_and_connected
: 1,
32 /* One of the SEND_PACK_PUSH_CERT_* constants. */
36 static struct options options
;
37 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
39 static int set_option(const char *name
, const char *value
)
41 if (!strcmp(name
, "verbosity")) {
43 int v
= strtol(value
, &end
, 10);
44 if (value
== end
|| *end
)
46 options
.verbosity
= v
;
49 else if (!strcmp(name
, "progress")) {
50 if (!strcmp(value
, "true"))
52 else if (!strcmp(value
, "false"))
58 else if (!strcmp(name
, "depth")) {
60 unsigned long v
= strtoul(value
, &end
, 10);
61 if (value
== end
|| *end
)
66 else if (!strcmp(name
, "deepen-since")) {
67 options
.deepen_since
= xstrdup(value
);
70 else if (!strcmp(name
, "deepen-not")) {
71 string_list_append(&options
.deepen_not
, value
);
74 else if (!strcmp(name
, "deepen-relative")) {
75 if (!strcmp(value
, "true"))
76 options
.deepen_relative
= 1;
77 else if (!strcmp(value
, "false"))
78 options
.deepen_relative
= 0;
83 else if (!strcmp(name
, "followtags")) {
84 if (!strcmp(value
, "true"))
85 options
.followtags
= 1;
86 else if (!strcmp(value
, "false"))
87 options
.followtags
= 0;
92 else if (!strcmp(name
, "dry-run")) {
93 if (!strcmp(value
, "true"))
95 else if (!strcmp(value
, "false"))
101 else if (!strcmp(name
, "check-connectivity")) {
102 if (!strcmp(value
, "true"))
103 options
.check_self_contained_and_connected
= 1;
104 else if (!strcmp(value
, "false"))
105 options
.check_self_contained_and_connected
= 0;
110 else if (!strcmp(name
, "cas")) {
111 struct strbuf val
= STRBUF_INIT
;
112 strbuf_addf(&val
, "--" CAS_OPT_NAME
"=%s", value
);
113 string_list_append(&cas_options
, val
.buf
);
114 strbuf_release(&val
);
116 } else if (!strcmp(name
, "cloning")) {
117 if (!strcmp(value
, "true"))
119 else if (!strcmp(value
, "false"))
124 } else if (!strcmp(name
, "update-shallow")) {
125 if (!strcmp(value
, "true"))
126 options
.update_shallow
= 1;
127 else if (!strcmp(value
, "false"))
128 options
.update_shallow
= 0;
132 } else if (!strcmp(name
, "pushcert")) {
133 if (!strcmp(value
, "true"))
134 options
.push_cert
= SEND_PACK_PUSH_CERT_ALWAYS
;
135 else if (!strcmp(value
, "false"))
136 options
.push_cert
= SEND_PACK_PUSH_CERT_NEVER
;
137 else if (!strcmp(value
, "if-asked"))
138 options
.push_cert
= SEND_PACK_PUSH_CERT_IF_ASKED
;
143 #if LIBCURL_VERSION_NUM >= 0x070a08
144 } else if (!strcmp(name
, "family")) {
145 if (!strcmp(value
, "ipv4"))
146 git_curl_ipresolve
= CURL_IPRESOLVE_V4
;
147 else if (!strcmp(value
, "ipv6"))
148 git_curl_ipresolve
= CURL_IPRESOLVE_V6
;
149 else if (!strcmp(value
, "all"))
150 git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
154 #endif /* LIBCURL_VERSION_NUM >= 0x070a08 */
156 return 1 /* unsupported */;
166 struct sha1_array shallow
;
167 unsigned proto_git
: 1;
169 static struct discovery
*last_discovery
;
171 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
173 struct ref
*list
= NULL
;
174 get_remote_heads(-1, heads
->buf
, heads
->len
, &list
,
175 for_push
? REF_NORMAL
: 0, NULL
, &heads
->shallow
);
179 static struct ref
*parse_info_refs(struct discovery
*heads
)
181 char *data
, *start
, *mid
;
185 struct ref
*refs
= NULL
;
186 struct ref
*ref
= NULL
;
187 struct ref
*last_ref
= NULL
;
192 while (i
< heads
->len
) {
198 if (data
[i
] == '\n') {
199 if (mid
- start
!= 40)
200 die("%sinfo/refs not valid: is this a git repository?",
204 ref
= alloc_ref(ref_name
);
205 get_oid_hex(start
, &ref
->old_oid
);
209 last_ref
->next
= ref
;
216 ref
= alloc_ref("HEAD");
217 if (!http_fetch_ref(url
.buf
, ref
) &&
218 !resolve_remote_symref(ref
, refs
)) {
228 static void free_discovery(struct discovery
*d
)
231 if (d
== last_discovery
)
232 last_discovery
= NULL
;
233 free(d
->shallow
.sha1
);
240 static int show_http_message(struct strbuf
*type
, struct strbuf
*charset
,
246 * We only show text/plain parts, as other types are likely
247 * to be ugly to look at on the user's terminal.
249 if (strcmp(type
->buf
, "text/plain"))
252 strbuf_reencode(msg
, charset
->buf
, get_log_output_encoding());
260 eol
= strchrnul(p
, '\n');
261 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
267 static struct discovery
*discover_refs(const char *service
, int for_push
)
269 struct strbuf exp
= STRBUF_INIT
;
270 struct strbuf type
= STRBUF_INIT
;
271 struct strbuf charset
= STRBUF_INIT
;
272 struct strbuf buffer
= STRBUF_INIT
;
273 struct strbuf refs_url
= STRBUF_INIT
;
274 struct strbuf effective_url
= STRBUF_INIT
;
275 struct discovery
*last
= last_discovery
;
276 int http_ret
, maybe_smart
= 0;
277 struct http_get_options http_options
;
279 if (last
&& !strcmp(service
, last
->service
))
281 free_discovery(last
);
283 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
284 if ((starts_with(url
.buf
, "http://") || starts_with(url
.buf
, "https://")) &&
285 git_env_bool("GIT_SMART_HTTP", 1)) {
287 if (!strchr(url
.buf
, '?'))
288 strbuf_addch(&refs_url
, '?');
290 strbuf_addch(&refs_url
, '&');
291 strbuf_addf(&refs_url
, "service=%s", service
);
294 memset(&http_options
, 0, sizeof(http_options
));
295 http_options
.content_type
= &type
;
296 http_options
.charset
= &charset
;
297 http_options
.effective_url
= &effective_url
;
298 http_options
.base_url
= &url
;
299 http_options
.initial_request
= 1;
300 http_options
.no_cache
= 1;
301 http_options
.keep_error
= 1;
303 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &http_options
);
307 case HTTP_MISSING_TARGET
:
308 show_http_message(&type
, &charset
, &buffer
);
309 die("repository '%s' not found", url
.buf
);
311 show_http_message(&type
, &charset
, &buffer
);
312 die("Authentication failed for '%s'", url
.buf
);
314 show_http_message(&type
, &charset
, &buffer
);
315 die("unable to access '%s': %s", url
.buf
, curl_errorstr
);
318 if (options
.verbosity
&& !starts_with(refs_url
.buf
, url
.buf
))
319 warning(_("redirecting to %s"), url
.buf
);
321 last
= xcalloc(1, sizeof(*last_discovery
));
322 last
->service
= service
;
323 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
324 last
->buf
= last
->buf_alloc
;
326 strbuf_addf(&exp
, "application/x-%s-advertisement", service
);
328 (5 <= last
->len
&& last
->buf
[4] == '#') &&
329 !strbuf_cmp(&exp
, &type
)) {
333 * smart HTTP response; validate that the service
334 * pkt-line matches our request.
336 line
= packet_read_line_buf(&last
->buf
, &last
->len
, NULL
);
339 strbuf_addf(&exp
, "# service=%s", service
);
340 if (strcmp(line
, exp
.buf
))
341 die("invalid server response; got '%s'", line
);
342 strbuf_release(&exp
);
344 /* The header can include additional metadata lines, up
345 * until a packet flush marker. Ignore these now, but
346 * in the future we might start to scan them.
348 while (packet_read_line_buf(&last
->buf
, &last
->len
, NULL
))
355 last
->refs
= parse_git_refs(last
, for_push
);
357 last
->refs
= parse_info_refs(last
);
359 strbuf_release(&refs_url
);
360 strbuf_release(&exp
);
361 strbuf_release(&type
);
362 strbuf_release(&charset
);
363 strbuf_release(&effective_url
);
364 strbuf_release(&buffer
);
365 last_discovery
= last
;
369 static struct ref
*get_refs(int for_push
)
371 struct discovery
*heads
;
374 heads
= discover_refs("git-receive-pack", for_push
);
376 heads
= discover_refs("git-upload-pack", for_push
);
381 static void output_refs(struct ref
*refs
)
384 for (posn
= refs
; posn
; posn
= posn
->next
) {
386 printf("@%s %s\n", posn
->symref
, posn
->name
);
388 printf("%s %s\n", oid_to_hex(&posn
->old_oid
), posn
->name
);
395 const char *service_name
;
397 struct strbuf
*stdin_preamble
;
399 char *hdr_content_type
;
408 struct strbuf result
;
409 unsigned gzip_request
: 1;
410 unsigned initial_buffer
: 1;
413 static size_t rpc_out(void *ptr
, size_t eltsize
,
414 size_t nmemb
, void *buffer_
)
416 size_t max
= eltsize
* nmemb
;
417 struct rpc_state
*rpc
= buffer_
;
418 size_t avail
= rpc
->len
- rpc
->pos
;
421 rpc
->initial_buffer
= 0;
422 avail
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
431 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
436 #ifndef NO_CURL_IOCTL
437 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
439 struct rpc_state
*rpc
= clientp
;
445 case CURLIOCMD_RESTARTREAD
:
446 if (rpc
->initial_buffer
) {
450 error("unable to rewind rpc post data - try increasing http.postBuffer");
451 return CURLIOE_FAILRESTART
;
454 return CURLIOE_UNKNOWNCMD
;
459 static size_t rpc_in(char *ptr
, size_t eltsize
,
460 size_t nmemb
, void *buffer_
)
462 size_t size
= eltsize
* nmemb
;
463 struct rpc_state
*rpc
= buffer_
;
465 rpc
->any_written
= 1;
466 write_or_die(rpc
->in
, ptr
, size
);
470 static int run_slot(struct active_request_slot
*slot
,
471 struct slot_results
*results
)
474 struct slot_results results_buf
;
477 results
= &results_buf
;
479 err
= run_one_slot(slot
, results
);
481 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
482 struct strbuf msg
= STRBUF_INIT
;
483 if (results
->http_code
&& results
->http_code
!= 200)
484 strbuf_addf(&msg
, "HTTP %ld", results
->http_code
);
485 if (results
->curl_result
!= CURLE_OK
) {
487 strbuf_addch(&msg
, ' ');
488 strbuf_addf(&msg
, "curl %d", results
->curl_result
);
489 if (curl_errorstr
[0]) {
490 strbuf_addch(&msg
, ' ');
491 strbuf_addstr(&msg
, curl_errorstr
);
494 error("RPC failed; %s", msg
.buf
);
495 strbuf_release(&msg
);
501 static int probe_rpc(struct rpc_state
*rpc
, struct slot_results
*results
)
503 struct active_request_slot
*slot
;
504 struct curl_slist
*headers
= http_copy_default_headers();
505 struct strbuf buf
= STRBUF_INIT
;
508 slot
= get_active_slot();
510 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
511 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
513 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
514 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
515 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
516 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
517 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
518 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
519 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
520 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
521 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buf
);
523 err
= run_slot(slot
, results
);
525 curl_slist_free_all(headers
);
526 strbuf_release(&buf
);
530 static int post_rpc(struct rpc_state
*rpc
)
532 struct active_request_slot
*slot
;
533 struct curl_slist
*headers
= http_copy_default_headers();
534 int use_gzip
= rpc
->gzip_request
;
535 char *gzip_body
= NULL
;
536 size_t gzip_size
= 0;
537 int err
, large_request
= 0;
538 int needs_100_continue
= 0;
540 /* Try to load the entire request, if we can fit it into the
541 * allocated buffer space we can use HTTP/1.0 and avoid the
542 * chunked encoding mess.
545 size_t left
= rpc
->alloc
- rpc
->len
;
546 char *buf
= rpc
->buf
+ rpc
->len
;
549 if (left
< LARGE_PACKET_MAX
) {
555 n
= packet_read(rpc
->out
, NULL
, NULL
, buf
, left
, 0);
562 struct slot_results results
;
565 err
= probe_rpc(rpc
, &results
);
566 if (err
== HTTP_REAUTH
)
567 credential_fill(&http_auth
);
568 } while (err
== HTTP_REAUTH
);
572 if (results
.auth_avail
& CURLAUTH_GSSNEGOTIATE
)
573 needs_100_continue
= 1;
576 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
577 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
578 headers
= curl_slist_append(headers
, needs_100_continue
?
579 "Expect: 100-continue" : "Expect:");
582 slot
= get_active_slot();
584 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
585 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
586 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
587 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "gzip");
590 /* The request body is large and the size cannot be predicted.
591 * We must use chunked encoding to send it.
593 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
594 rpc
->initial_buffer
= 1;
595 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
596 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
597 #ifndef NO_CURL_IOCTL
598 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
599 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
601 if (options
.verbosity
> 1) {
602 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
606 } else if (gzip_body
) {
608 * If we are looping to retry authentication, then the previous
609 * run will have set up the headers and gzip buffer already,
610 * and we just need to send it.
612 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
613 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, gzip_size
);
615 } else if (use_gzip
&& 1024 < rpc
->len
) {
616 /* The client backend isn't giving us compressed data so
617 * we can try to deflate it ourselves, this may save on.
623 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
624 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
625 gzip_body
= xmalloc(gzip_size
);
627 stream
.next_in
= (unsigned char *)rpc
->buf
;
628 stream
.avail_in
= rpc
->len
;
629 stream
.next_out
= (unsigned char *)gzip_body
;
630 stream
.avail_out
= gzip_size
;
632 ret
= git_deflate(&stream
, Z_FINISH
);
633 if (ret
!= Z_STREAM_END
)
634 die("cannot deflate request; zlib deflate error %d", ret
);
636 ret
= git_deflate_end_gently(&stream
);
638 die("cannot deflate request; zlib end error %d", ret
);
640 gzip_size
= stream
.total_out
;
642 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
643 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
644 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, gzip_size
);
646 if (options
.verbosity
> 1) {
647 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
649 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
653 /* We know the complete request size in advance, use the
654 * more normal Content-Length approach.
656 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
657 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, rpc
->len
);
658 if (options
.verbosity
> 1) {
659 fprintf(stderr
, "POST %s (%lu bytes)\n",
660 rpc
->service_name
, (unsigned long)rpc
->len
);
665 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
666 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
667 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, rpc
);
670 rpc
->any_written
= 0;
671 err
= run_slot(slot
, NULL
);
672 if (err
== HTTP_REAUTH
&& !large_request
) {
673 credential_fill(&http_auth
);
679 if (!rpc
->any_written
)
682 curl_slist_free_all(headers
);
687 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
)
689 const char *svc
= rpc
->service_name
;
690 struct strbuf buf
= STRBUF_INIT
;
691 struct strbuf
*preamble
= rpc
->stdin_preamble
;
692 struct child_process client
= CHILD_PROCESS_INIT
;
698 client
.argv
= rpc
->argv
;
699 if (start_command(&client
))
702 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
704 write_or_die(client
.in
, heads
->buf
, heads
->len
);
706 rpc
->alloc
= http_post_buffer
;
707 rpc
->buf
= xmalloc(rpc
->alloc
);
709 rpc
->out
= client
.out
;
710 strbuf_init(&rpc
->result
, 0);
712 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
713 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
715 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
716 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
718 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
719 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
722 int n
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
727 err
|= post_rpc(rpc
);
733 strbuf_read(&rpc
->result
, client
.out
, 0);
737 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
744 err
|= finish_command(&client
);
745 free(rpc
->service_url
);
746 free(rpc
->hdr_content_type
);
747 free(rpc
->hdr_accept
);
749 strbuf_release(&buf
);
753 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
755 struct walker
*walker
;
759 ALLOC_ARRAY(targets
, nr_heads
);
760 if (options
.depth
|| options
.deepen_since
)
761 die("dumb http transport does not support shallow capabilities");
762 for (i
= 0; i
< nr_heads
; i
++)
763 targets
[i
] = xstrdup(oid_to_hex(&to_fetch
[i
]->old_oid
));
765 walker
= get_http_walker(url
.buf
);
767 walker
->get_tree
= 1;
768 walker
->get_history
= 1;
769 walker
->get_verbosely
= options
.verbosity
>= 3;
770 walker
->get_recover
= 0;
771 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
774 for (i
= 0; i
< nr_heads
; i
++)
778 return ret
? error("fetch failed.") : 0;
781 static int fetch_git(struct discovery
*heads
,
782 int nr_heads
, struct ref
**to_fetch
)
784 struct rpc_state rpc
;
785 struct strbuf preamble
= STRBUF_INIT
;
787 struct argv_array args
= ARGV_ARRAY_INIT
;
789 argv_array_pushl(&args
, "fetch-pack", "--stateless-rpc",
790 "--stdin", "--lock-pack", NULL
);
791 if (options
.followtags
)
792 argv_array_push(&args
, "--include-tag");
794 argv_array_push(&args
, "--thin");
795 if (options
.verbosity
>= 3)
796 argv_array_pushl(&args
, "-v", "-v", NULL
);
797 if (options
.check_self_contained_and_connected
)
798 argv_array_push(&args
, "--check-self-contained-and-connected");
800 argv_array_push(&args
, "--cloning");
801 if (options
.update_shallow
)
802 argv_array_push(&args
, "--update-shallow");
803 if (!options
.progress
)
804 argv_array_push(&args
, "--no-progress");
806 argv_array_pushf(&args
, "--depth=%lu", options
.depth
);
807 if (options
.deepen_since
)
808 argv_array_pushf(&args
, "--shallow-since=%s", options
.deepen_since
);
809 for (i
= 0; i
< options
.deepen_not
.nr
; i
++)
810 argv_array_pushf(&args
, "--shallow-exclude=%s",
811 options
.deepen_not
.items
[i
].string
);
812 if (options
.deepen_relative
&& options
.depth
)
813 argv_array_push(&args
, "--deepen-relative");
814 argv_array_push(&args
, url
.buf
);
816 for (i
= 0; i
< nr_heads
; i
++) {
817 struct ref
*ref
= to_fetch
[i
];
819 die("cannot fetch by sha1 over smart http");
820 packet_buf_write(&preamble
, "%s %s\n",
821 oid_to_hex(&ref
->old_oid
), ref
->name
);
823 packet_buf_flush(&preamble
);
825 memset(&rpc
, 0, sizeof(rpc
));
826 rpc
.service_name
= "git-upload-pack",
827 rpc
.argv
= args
.argv
;
828 rpc
.stdin_preamble
= &preamble
;
829 rpc
.gzip_request
= 1;
831 err
= rpc_service(&rpc
, heads
);
833 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
834 strbuf_release(&rpc
.result
);
835 strbuf_release(&preamble
);
836 argv_array_clear(&args
);
840 static int fetch(int nr_heads
, struct ref
**to_fetch
)
842 struct discovery
*d
= discover_refs("git-upload-pack", 0);
844 return fetch_git(d
, nr_heads
, to_fetch
);
846 return fetch_dumb(nr_heads
, to_fetch
);
849 static void parse_fetch(struct strbuf
*buf
)
851 struct ref
**to_fetch
= NULL
;
852 struct ref
*list_head
= NULL
;
853 struct ref
**list
= &list_head
;
854 int alloc_heads
= 0, nr_heads
= 0;
858 if (skip_prefix(buf
->buf
, "fetch ", &p
)) {
861 struct object_id old_oid
;
863 if (get_oid_hex(p
, &old_oid
))
864 die("protocol error: expected sha/ref, got %s'", p
);
865 if (p
[GIT_SHA1_HEXSZ
] == ' ')
866 name
= p
+ GIT_SHA1_HEXSZ
+ 1;
867 else if (!p
[GIT_SHA1_HEXSZ
])
870 die("protocol error: expected sha/ref, got %s'", p
);
872 ref
= alloc_ref(name
);
873 oidcpy(&ref
->old_oid
, &old_oid
);
878 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
879 to_fetch
[nr_heads
++] = ref
;
882 die("http transport does not support %s", buf
->buf
);
885 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
891 if (fetch(nr_heads
, to_fetch
))
892 exit(128); /* error already reported */
893 free_refs(list_head
);
901 static int push_dav(int nr_spec
, char **specs
)
903 struct child_process child
= CHILD_PROCESS_INIT
;
907 argv_array_push(&child
.args
, "http-push");
908 argv_array_push(&child
.args
, "--helper-status");
910 argv_array_push(&child
.args
, "--dry-run");
911 if (options
.verbosity
> 1)
912 argv_array_push(&child
.args
, "--verbose");
913 argv_array_push(&child
.args
, url
.buf
);
914 for (i
= 0; i
< nr_spec
; i
++)
915 argv_array_push(&child
.args
, specs
[i
]);
917 if (run_command(&child
))
918 die("git-http-push failed");
922 static int push_git(struct discovery
*heads
, int nr_spec
, char **specs
)
924 struct rpc_state rpc
;
926 struct argv_array args
;
927 struct string_list_item
*cas_option
;
928 struct strbuf preamble
= STRBUF_INIT
;
930 argv_array_init(&args
);
931 argv_array_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
935 argv_array_push(&args
, "--thin");
937 argv_array_push(&args
, "--dry-run");
938 if (options
.push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
)
939 argv_array_push(&args
, "--signed=yes");
940 else if (options
.push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
)
941 argv_array_push(&args
, "--signed=if-asked");
942 if (options
.verbosity
== 0)
943 argv_array_push(&args
, "--quiet");
944 else if (options
.verbosity
> 1)
945 argv_array_push(&args
, "--verbose");
946 argv_array_push(&args
, options
.progress
? "--progress" : "--no-progress");
947 for_each_string_list_item(cas_option
, &cas_options
)
948 argv_array_push(&args
, cas_option
->string
);
949 argv_array_push(&args
, url
.buf
);
951 argv_array_push(&args
, "--stdin");
952 for (i
= 0; i
< nr_spec
; i
++)
953 packet_buf_write(&preamble
, "%s\n", specs
[i
]);
954 packet_buf_flush(&preamble
);
956 memset(&rpc
, 0, sizeof(rpc
));
957 rpc
.service_name
= "git-receive-pack",
958 rpc
.argv
= args
.argv
;
959 rpc
.stdin_preamble
= &preamble
;
961 err
= rpc_service(&rpc
, heads
);
963 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
964 strbuf_release(&rpc
.result
);
965 strbuf_release(&preamble
);
966 argv_array_clear(&args
);
970 static int push(int nr_spec
, char **specs
)
972 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
975 if (heads
->proto_git
)
976 ret
= push_git(heads
, nr_spec
, specs
);
978 ret
= push_dav(nr_spec
, specs
);
979 free_discovery(heads
);
983 static void parse_push(struct strbuf
*buf
)
986 int alloc_spec
= 0, nr_spec
= 0, i
, ret
;
989 if (starts_with(buf
->buf
, "push ")) {
990 ALLOC_GROW(specs
, nr_spec
+ 1, alloc_spec
);
991 specs
[nr_spec
++] = xstrdup(buf
->buf
+ 5);
994 die("http transport does not support %s", buf
->buf
);
997 if (strbuf_getline_lf(buf
, stdin
) == EOF
)
1003 ret
= push(nr_spec
, specs
);
1008 exit(128); /* error already reported */
1011 for (i
= 0; i
< nr_spec
; i
++)
1016 int cmd_main(int argc
, const char **argv
)
1018 struct strbuf buf
= STRBUF_INIT
;
1021 setup_git_directory_gently(&nongit
);
1023 error("remote-curl: usage: git remote-curl <remote> [<url>]");
1027 options
.verbosity
= 1;
1028 options
.progress
= !!isatty(2);
1030 string_list_init(&options
.deepen_not
, 1);
1032 remote
= remote_get(argv
[1]);
1035 end_url_with_slash(&url
, argv
[2]);
1037 end_url_with_slash(&url
, remote
->url
[0]);
1040 http_init(remote
, url
.buf
, 0);
1045 if (strbuf_getline_lf(&buf
, stdin
) == EOF
) {
1047 error("remote-curl: error reading command stream from git");
1052 if (starts_with(buf
.buf
, "fetch ")) {
1054 die("remote-curl: fetch attempted without a local repo");
1057 } else if (!strcmp(buf
.buf
, "list") || starts_with(buf
.buf
, "list ")) {
1058 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
1059 output_refs(get_refs(for_push
));
1061 } else if (starts_with(buf
.buf
, "push ")) {
1064 } else if (skip_prefix(buf
.buf
, "option ", &arg
)) {
1065 char *value
= strchr(arg
, ' ');
1073 result
= set_option(arg
, value
);
1076 else if (result
< 0)
1077 printf("error invalid value\n");
1079 printf("unsupported\n");
1082 } else if (!strcmp(buf
.buf
, "capabilities")) {
1086 printf("check-connectivity\n");
1090 error("remote-curl: unknown command '%s' from git", buf
.buf
);