7 #include "run-command.h"
11 static struct remote
*remote
;
12 static const char *url
;
13 static struct walker
*walker
;
18 unsigned progress
: 1,
23 static struct options options
;
25 static void init_walker(void)
28 walker
= get_http_walker(url
, remote
);
31 static int set_option(const char *name
, const char *value
)
33 if (!strcmp(name
, "verbosity")) {
35 int v
= strtol(value
, &end
, 10);
36 if (value
== end
|| *end
)
38 options
.verbosity
= v
;
41 else if (!strcmp(name
, "progress")) {
42 if (!strcmp(value
, "true"))
44 else if (!strcmp(value
, "false"))
50 else if (!strcmp(name
, "depth")) {
52 unsigned long v
= strtoul(value
, &end
, 10);
53 if (value
== end
|| *end
)
58 else if (!strcmp(name
, "followtags")) {
59 if (!strcmp(value
, "true"))
60 options
.followtags
= 1;
61 else if (!strcmp(value
, "false"))
62 options
.followtags
= 0;
67 else if (!strcmp(name
, "dry-run")) {
68 if (!strcmp(value
, "true"))
70 else if (!strcmp(value
, "false"))
77 return 1 /* unsupported */;
86 unsigned proto_git
: 1;
88 static struct discovery
*last_discovery
;
90 static void free_discovery(struct discovery
*d
)
93 if (d
== last_discovery
)
94 last_discovery
= NULL
;
100 static struct discovery
* discover_refs(const char *service
)
102 struct strbuf buffer
= STRBUF_INIT
;
103 struct discovery
*last
= last_discovery
;
105 int http_ret
, is_http
= 0, proto_git_candidate
= 1;
107 if (last
&& !strcmp(service
, last
->service
))
109 free_discovery(last
);
111 strbuf_addf(&buffer
, "%s/info/refs", url
);
112 if (!prefixcmp(url
, "http://") || !prefixcmp(url
, "https://")) {
114 if (!strchr(url
, '?'))
115 strbuf_addch(&buffer
, '?');
117 strbuf_addch(&buffer
, '&');
118 strbuf_addf(&buffer
, "service=%s", service
);
120 refs_url
= strbuf_detach(&buffer
, NULL
);
123 http_ret
= http_get_strbuf(refs_url
, &buffer
, HTTP_NO_CACHE
);
125 /* try again with "plain" url (no ? or & appended) */
126 if (http_ret
!= HTTP_OK
) {
128 strbuf_reset(&buffer
);
130 proto_git_candidate
= 0;
131 strbuf_addf(&buffer
, "%s/info/refs", url
);
132 refs_url
= strbuf_detach(&buffer
, NULL
);
134 http_ret
= http_get_strbuf(refs_url
, &buffer
, HTTP_NO_CACHE
);
140 case HTTP_MISSING_TARGET
:
141 die("%s not found: did you run git update-server-info on the"
142 " server?", refs_url
);
144 http_error(refs_url
, http_ret
);
145 die("HTTP request failed");
148 last
= xcalloc(1, sizeof(*last_discovery
));
149 last
->service
= service
;
150 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
151 last
->buf
= last
->buf_alloc
;
153 if (is_http
&& proto_git_candidate
154 && 5 <= last
->len
&& last
->buf
[4] == '#') {
155 /* smart HTTP response; validate that the service
156 * pkt-line matches our request.
158 struct strbuf exp
= STRBUF_INIT
;
160 if (packet_get_line(&buffer
, &last
->buf
, &last
->len
) <= 0)
161 die("%s has invalid packet header", refs_url
);
162 if (buffer
.len
&& buffer
.buf
[buffer
.len
- 1] == '\n')
163 strbuf_setlen(&buffer
, buffer
.len
- 1);
165 strbuf_addf(&exp
, "# service=%s", service
);
166 if (strbuf_cmp(&exp
, &buffer
))
167 die("invalid server response; got '%s'", buffer
.buf
);
168 strbuf_release(&exp
);
170 /* The header can include additional metadata lines, up
171 * until a packet flush marker. Ignore these now, but
172 * in the future we might start to scan them.
174 strbuf_reset(&buffer
);
175 while (packet_get_line(&buffer
, &last
->buf
, &last
->len
) > 0)
176 strbuf_reset(&buffer
);
182 strbuf_release(&buffer
);
183 last_discovery
= last
;
187 static int write_discovery(int in
, int out
, void *data
)
189 struct discovery
*heads
= data
;
191 if (write_in_full(out
, heads
->buf
, heads
->len
) != heads
->len
)
197 static struct ref
*parse_git_refs(struct discovery
*heads
)
199 struct ref
*list
= NULL
;
202 memset(&async
, 0, sizeof(async
));
203 async
.proc
= write_discovery
;
207 if (start_async(&async
))
208 die("cannot start thread to parse advertised refs");
209 get_remote_heads(async
.out
, &list
, 0, NULL
, 0, NULL
);
211 if (finish_async(&async
))
212 die("ref parsing thread failed");
216 static struct ref
*parse_info_refs(struct discovery
*heads
)
218 char *data
, *start
, *mid
;
222 struct ref
*refs
= NULL
;
223 struct ref
*ref
= NULL
;
224 struct ref
*last_ref
= NULL
;
229 while (i
< heads
->len
) {
235 if (data
[i
] == '\n') {
238 ref
= xmalloc(sizeof(struct ref
) +
239 strlen(ref_name
) + 1);
240 memset(ref
, 0, sizeof(struct ref
));
241 strcpy(ref
->name
, ref_name
);
242 get_sha1_hex(start
, ref
->old_sha1
);
246 last_ref
->next
= ref
;
254 ref
= alloc_ref("HEAD");
255 if (!walker
->fetch_ref(walker
, ref
) &&
256 !resolve_remote_symref(ref
, refs
)) {
266 static struct ref
*get_refs(int for_push
)
268 struct discovery
*heads
;
271 heads
= discover_refs("git-receive-pack");
273 heads
= discover_refs("git-upload-pack");
275 if (heads
->proto_git
)
276 return parse_git_refs(heads
);
277 return parse_info_refs(heads
);
280 static void output_refs(struct ref
*refs
)
283 for (posn
= refs
; posn
; posn
= posn
->next
) {
285 printf("@%s %s\n", posn
->symref
, posn
->name
);
287 printf("%s %s\n", sha1_to_hex(posn
->old_sha1
), posn
->name
);
295 const char *service_name
;
298 char *hdr_content_type
;
306 struct strbuf result
;
307 unsigned gzip_request
: 1;
308 unsigned initial_buffer
: 1;
311 static size_t rpc_out(void *ptr
, size_t eltsize
,
312 size_t nmemb
, void *buffer_
)
314 size_t max
= eltsize
* nmemb
;
315 struct rpc_state
*rpc
= buffer_
;
316 size_t avail
= rpc
->len
- rpc
->pos
;
319 rpc
->initial_buffer
= 0;
320 avail
= packet_read_line(rpc
->out
, rpc
->buf
, rpc
->alloc
);
329 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
334 #ifndef NO_CURL_IOCTL
335 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
337 struct rpc_state
*rpc
= clientp
;
343 case CURLIOCMD_RESTARTREAD
:
344 if (rpc
->initial_buffer
) {
348 fprintf(stderr
, "Unable to rewind rpc post data - try increasing http.postBuffer\n");
349 return CURLIOE_FAILRESTART
;
352 return CURLIOE_UNKNOWNCMD
;
357 static size_t rpc_in(const void *ptr
, size_t eltsize
,
358 size_t nmemb
, void *buffer_
)
360 size_t size
= eltsize
* nmemb
;
361 struct rpc_state
*rpc
= buffer_
;
362 write_or_die(rpc
->in
, ptr
, size
);
366 static int post_rpc(struct rpc_state
*rpc
)
368 struct active_request_slot
*slot
;
369 struct slot_results results
;
370 struct curl_slist
*headers
= NULL
;
371 int use_gzip
= rpc
->gzip_request
;
372 char *gzip_body
= NULL
;
373 int err
= 0, large_request
= 0;
375 /* Try to load the entire request, if we can fit it into the
376 * allocated buffer space we can use HTTP/1.0 and avoid the
377 * chunked encoding mess.
380 size_t left
= rpc
->alloc
- rpc
->len
;
381 char *buf
= rpc
->buf
+ rpc
->len
;
384 if (left
< LARGE_PACKET_MAX
) {
390 n
= packet_read_line(rpc
->out
, buf
, left
);
396 slot
= get_active_slot();
397 slot
->results
= &results
;
399 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
400 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
401 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
402 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
404 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
405 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
408 /* The request body is large and the size cannot be predicted.
409 * We must use chunked encoding to send it.
411 headers
= curl_slist_append(headers
, "Expect: 100-continue");
412 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
413 rpc
->initial_buffer
= 1;
414 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
415 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
416 #ifndef NO_CURL_IOCTL
417 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
418 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
420 if (options
.verbosity
> 1) {
421 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
425 } else if (use_gzip
&& 1024 < rpc
->len
) {
426 /* The client backend isn't giving us compressed data so
427 * we can try to deflate it ourselves, this may save on.
434 memset(&stream
, 0, sizeof(stream
));
435 ret
= deflateInit2(&stream
, Z_BEST_COMPRESSION
,
436 Z_DEFLATED
, (15 + 16),
437 8, Z_DEFAULT_STRATEGY
);
439 die("cannot deflate request; zlib init error %d", ret
);
440 size
= deflateBound(&stream
, rpc
->len
);
441 gzip_body
= xmalloc(size
);
443 stream
.next_in
= (unsigned char *)rpc
->buf
;
444 stream
.avail_in
= rpc
->len
;
445 stream
.next_out
= (unsigned char *)gzip_body
;
446 stream
.avail_out
= size
;
448 ret
= deflate(&stream
, Z_FINISH
);
449 if (ret
!= Z_STREAM_END
)
450 die("cannot deflate request; zlib deflate error %d", ret
);
452 ret
= deflateEnd(&stream
);
454 die("cannot deflate request; zlib end error %d", ret
);
456 size
= stream
.total_out
;
458 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
459 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
460 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, size
);
462 if (options
.verbosity
> 1) {
463 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
465 (unsigned long)rpc
->len
, (unsigned long)size
);
469 /* We know the complete request size in advance, use the
470 * more normal Content-Length approach.
472 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
473 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, rpc
->len
);
474 if (options
.verbosity
> 1) {
475 fprintf(stderr
, "POST %s (%lu bytes)\n",
476 rpc
->service_name
, (unsigned long)rpc
->len
);
481 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
482 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
483 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, rpc
);
485 slot
->curl_result
= curl_easy_perform(slot
->curl
);
486 finish_active_slot(slot
);
488 if (results
.curl_result
!= CURLE_OK
) {
489 err
|= error("RPC failed; result=%d, HTTP code = %ld",
490 results
.curl_result
, results
.http_code
);
493 curl_slist_free_all(headers
);
498 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
)
500 const char *svc
= rpc
->service_name
;
501 struct strbuf buf
= STRBUF_INIT
;
502 struct child_process client
;
506 memset(&client
, 0, sizeof(client
));
510 client
.argv
= rpc
->argv
;
511 if (start_command(&client
))
514 write_or_die(client
.in
, heads
->buf
, heads
->len
);
516 rpc
->alloc
= http_post_buffer
;
517 rpc
->buf
= xmalloc(rpc
->alloc
);
519 rpc
->out
= client
.out
;
520 strbuf_init(&rpc
->result
, 0);
522 strbuf_addf(&buf
, "%s/%s", url
, svc
);
523 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
525 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
526 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
528 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
529 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
532 int n
= packet_read_line(rpc
->out
, rpc
->buf
, rpc
->alloc
);
537 err
|= post_rpc(rpc
);
539 strbuf_read(&rpc
->result
, client
.out
, 0);
546 err
|= finish_command(&client
);
547 free(rpc
->service_url
);
548 free(rpc
->hdr_content_type
);
549 free(rpc
->hdr_accept
);
551 strbuf_release(&buf
);
555 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
557 char **targets
= xmalloc(nr_heads
* sizeof(char*));
561 die("dumb http transport does not support --depth");
562 for (i
= 0; i
< nr_heads
; i
++)
563 targets
[i
] = xstrdup(sha1_to_hex(to_fetch
[i
]->old_sha1
));
567 walker
->get_tree
= 1;
568 walker
->get_history
= 1;
569 walker
->get_verbosely
= options
.verbosity
>= 3;
570 walker
->get_recover
= 0;
571 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
573 for (i
= 0; i
< nr_heads
; i
++)
577 return ret
? error("Fetch failed.") : 0;
580 static int fetch_git(struct discovery
*heads
,
581 int nr_heads
, struct ref
**to_fetch
)
583 struct rpc_state rpc
;
584 char *depth_arg
= NULL
;
586 int argc
= 0, i
, err
;
588 argv
= xmalloc((15 + nr_heads
) * sizeof(char*));
589 argv
[argc
++] = "fetch-pack";
590 argv
[argc
++] = "--stateless-rpc";
591 argv
[argc
++] = "--lock-pack";
592 if (options
.followtags
)
593 argv
[argc
++] = "--include-tag";
595 argv
[argc
++] = "--thin";
596 if (options
.verbosity
>= 3) {
600 if (!options
.progress
)
601 argv
[argc
++] = "--no-progress";
603 struct strbuf buf
= STRBUF_INIT
;
604 strbuf_addf(&buf
, "--depth=%lu", options
.depth
);
605 depth_arg
= strbuf_detach(&buf
, NULL
);
606 argv
[argc
++] = depth_arg
;
609 for (i
= 0; i
< nr_heads
; i
++) {
610 struct ref
*ref
= to_fetch
[i
];
611 if (!ref
->name
|| !*ref
->name
)
612 die("cannot fetch by sha1 over smart http");
613 argv
[argc
++] = ref
->name
;
617 memset(&rpc
, 0, sizeof(rpc
));
618 rpc
.service_name
= "git-upload-pack",
620 rpc
.gzip_request
= 1;
622 err
= rpc_service(&rpc
, heads
);
624 safe_write(1, rpc
.result
.buf
, rpc
.result
.len
);
625 strbuf_release(&rpc
.result
);
631 static int fetch(int nr_heads
, struct ref
**to_fetch
)
633 struct discovery
*d
= discover_refs("git-upload-pack");
635 return fetch_git(d
, nr_heads
, to_fetch
);
637 return fetch_dumb(nr_heads
, to_fetch
);
640 static void parse_fetch(struct strbuf
*buf
)
642 struct ref
**to_fetch
= NULL
;
643 struct ref
*list_head
= NULL
;
644 struct ref
**list
= &list_head
;
645 int alloc_heads
= 0, nr_heads
= 0;
648 if (!prefixcmp(buf
->buf
, "fetch ")) {
649 char *p
= buf
->buf
+ strlen("fetch ");
652 unsigned char old_sha1
[20];
654 if (strlen(p
) < 40 || get_sha1_hex(p
, old_sha1
))
655 die("protocol error: expected sha/ref, got %s'", p
);
661 die("protocol error: expected sha/ref, got %s'", p
);
663 ref
= alloc_ref(name
);
664 hashcpy(ref
->old_sha1
, old_sha1
);
669 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
670 to_fetch
[nr_heads
++] = ref
;
673 die("http transport does not support %s", buf
->buf
);
676 if (strbuf_getline(buf
, stdin
, '\n') == EOF
)
682 if (fetch(nr_heads
, to_fetch
))
683 exit(128); /* error already reported */
684 free_refs(list_head
);
692 static int push_dav(int nr_spec
, char **specs
)
694 const char **argv
= xmalloc((10 + nr_spec
) * sizeof(char*));
697 argv
[argc
++] = "http-push";
698 argv
[argc
++] = "--helper-status";
700 argv
[argc
++] = "--dry-run";
701 if (options
.verbosity
> 1)
702 argv
[argc
++] = "--verbose";
704 for (i
= 0; i
< nr_spec
; i
++)
705 argv
[argc
++] = specs
[i
];
708 if (run_command_v_opt(argv
, RUN_GIT_CMD
))
709 die("git-%s failed", argv
[0]);
714 static int push_git(struct discovery
*heads
, int nr_spec
, char **specs
)
716 struct rpc_state rpc
;
718 int argc
= 0, i
, err
;
720 argv
= xmalloc((10 + nr_spec
) * sizeof(char*));
721 argv
[argc
++] = "send-pack";
722 argv
[argc
++] = "--stateless-rpc";
723 argv
[argc
++] = "--helper-status";
725 argv
[argc
++] = "--thin";
727 argv
[argc
++] = "--dry-run";
728 if (options
.verbosity
> 1)
729 argv
[argc
++] = "--verbose";
731 for (i
= 0; i
< nr_spec
; i
++)
732 argv
[argc
++] = specs
[i
];
735 memset(&rpc
, 0, sizeof(rpc
));
736 rpc
.service_name
= "git-receive-pack",
739 err
= rpc_service(&rpc
, heads
);
741 safe_write(1, rpc
.result
.buf
, rpc
.result
.len
);
742 strbuf_release(&rpc
.result
);
747 static int push(int nr_spec
, char **specs
)
749 struct discovery
*heads
= discover_refs("git-receive-pack");
752 if (heads
->proto_git
)
753 ret
= push_git(heads
, nr_spec
, specs
);
755 ret
= push_dav(nr_spec
, specs
);
756 free_discovery(heads
);
760 static void parse_push(struct strbuf
*buf
)
763 int alloc_spec
= 0, nr_spec
= 0, i
;
766 if (!prefixcmp(buf
->buf
, "push ")) {
767 ALLOC_GROW(specs
, nr_spec
+ 1, alloc_spec
);
768 specs
[nr_spec
++] = xstrdup(buf
->buf
+ 5);
771 die("http transport does not support %s", buf
->buf
);
774 if (strbuf_getline(buf
, stdin
, '\n') == EOF
)
780 if (push(nr_spec
, specs
))
781 exit(128); /* error already reported */
782 for (i
= 0; i
< nr_spec
; i
++)
790 int main(int argc
, const char **argv
)
792 struct strbuf buf
= STRBUF_INIT
;
795 git_extract_argv0_path(argv
[0]);
796 setup_git_directory_gently(&nongit
);
798 fprintf(stderr
, "Remote needed\n");
802 options
.verbosity
= 1;
803 options
.progress
= !!isatty(2);
806 remote
= remote_get(argv
[1]);
811 url
= remote
->url
[0];
815 if (strbuf_getline(&buf
, stdin
, '\n') == EOF
)
817 if (!prefixcmp(buf
.buf
, "fetch ")) {
819 die("Fetch attempted without a local repo");
822 } else if (!strcmp(buf
.buf
, "list") || !prefixcmp(buf
.buf
, "list ")) {
823 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
824 output_refs(get_refs(for_push
));
826 } else if (!prefixcmp(buf
.buf
, "push ")) {
829 } else if (!prefixcmp(buf
.buf
, "option ")) {
830 char *name
= buf
.buf
+ strlen("option ");
831 char *value
= strchr(name
, ' ');
839 result
= set_option(name
, value
);
843 printf("error invalid value\n");
845 printf("unsupported\n");
848 } else if (!strcmp(buf
.buf
, "capabilities")) {