7 #include "run-command.h"
9 #include "string-list.h"
11 #include "argv-array.h"
12 #include "credential.h"
13 #include "sha1-array.h"
15 static struct remote
*remote
;
16 /* always ends with a trailing slash */
17 static struct strbuf url
= STRBUF_INIT
;
22 unsigned progress
: 1,
23 check_self_contained_and_connected
: 1,
30 static struct options options
;
31 static struct string_list cas_options
= STRING_LIST_INIT_DUP
;
33 static int set_option(const char *name
, const char *value
)
35 if (!strcmp(name
, "verbosity")) {
37 int v
= strtol(value
, &end
, 10);
38 if (value
== end
|| *end
)
40 options
.verbosity
= v
;
43 else if (!strcmp(name
, "progress")) {
44 if (!strcmp(value
, "true"))
46 else if (!strcmp(value
, "false"))
52 else if (!strcmp(name
, "depth")) {
54 unsigned long v
= strtoul(value
, &end
, 10);
55 if (value
== end
|| *end
)
60 else if (!strcmp(name
, "followtags")) {
61 if (!strcmp(value
, "true"))
62 options
.followtags
= 1;
63 else if (!strcmp(value
, "false"))
64 options
.followtags
= 0;
69 else if (!strcmp(name
, "dry-run")) {
70 if (!strcmp(value
, "true"))
72 else if (!strcmp(value
, "false"))
78 else if (!strcmp(name
, "check-connectivity")) {
79 if (!strcmp(value
, "true"))
80 options
.check_self_contained_and_connected
= 1;
81 else if (!strcmp(value
, "false"))
82 options
.check_self_contained_and_connected
= 0;
87 else if (!strcmp(name
, "cas")) {
88 struct strbuf val
= STRBUF_INIT
;
89 strbuf_addf(&val
, "--" CAS_OPT_NAME
"=%s", value
);
90 string_list_append(&cas_options
, val
.buf
);
93 } else if (!strcmp(name
, "cloning")) {
94 if (!strcmp(value
, "true"))
96 else if (!strcmp(value
, "false"))
101 } else if (!strcmp(name
, "update-shallow")) {
102 if (!strcmp(value
, "true"))
103 options
.update_shallow
= 1;
104 else if (!strcmp(value
, "false"))
105 options
.update_shallow
= 0;
110 return 1 /* unsupported */;
120 struct sha1_array shallow
;
121 unsigned proto_git
: 1;
123 static struct discovery
*last_discovery
;
125 static struct ref
*parse_git_refs(struct discovery
*heads
, int for_push
)
127 struct ref
*list
= NULL
;
128 get_remote_heads(-1, heads
->buf
, heads
->len
, &list
,
129 for_push
? REF_NORMAL
: 0, NULL
, &heads
->shallow
);
133 static struct ref
*parse_info_refs(struct discovery
*heads
)
135 char *data
, *start
, *mid
;
139 struct ref
*refs
= NULL
;
140 struct ref
*ref
= NULL
;
141 struct ref
*last_ref
= NULL
;
146 while (i
< heads
->len
) {
152 if (data
[i
] == '\n') {
153 if (mid
- start
!= 40)
154 die("%sinfo/refs not valid: is this a git repository?",
158 ref
= xmalloc(sizeof(struct ref
) +
159 strlen(ref_name
) + 1);
160 memset(ref
, 0, sizeof(struct ref
));
161 strcpy(ref
->name
, ref_name
);
162 get_sha1_hex(start
, ref
->old_sha1
);
166 last_ref
->next
= ref
;
173 ref
= alloc_ref("HEAD");
174 if (!http_fetch_ref(url
.buf
, ref
) &&
175 !resolve_remote_symref(ref
, refs
)) {
185 static void free_discovery(struct discovery
*d
)
188 if (d
== last_discovery
)
189 last_discovery
= NULL
;
190 free(d
->shallow
.sha1
);
197 static int show_http_message(struct strbuf
*type
, struct strbuf
*msg
)
202 * We only show text/plain parts, as other types are likely
203 * to be ugly to look at on the user's terminal.
205 * TODO should handle "; charset=XXX", and re-encode into
208 if (strcasecmp(type
->buf
, "text/plain"))
217 eol
= strchrnul(p
, '\n');
218 fprintf(stderr
, "remote: %.*s\n", (int)(eol
- p
), p
);
224 static struct discovery
* discover_refs(const char *service
, int for_push
)
226 struct strbuf exp
= STRBUF_INIT
;
227 struct strbuf type
= STRBUF_INIT
;
228 struct strbuf buffer
= STRBUF_INIT
;
229 struct strbuf refs_url
= STRBUF_INIT
;
230 struct strbuf effective_url
= STRBUF_INIT
;
231 struct discovery
*last
= last_discovery
;
232 int http_ret
, maybe_smart
= 0;
233 struct http_get_options options
;
235 if (last
&& !strcmp(service
, last
->service
))
237 free_discovery(last
);
239 strbuf_addf(&refs_url
, "%sinfo/refs", url
.buf
);
240 if ((!prefixcmp(url
.buf
, "http://") || !prefixcmp(url
.buf
, "https://")) &&
241 git_env_bool("GIT_SMART_HTTP", 1)) {
243 if (!strchr(url
.buf
, '?'))
244 strbuf_addch(&refs_url
, '?');
246 strbuf_addch(&refs_url
, '&');
247 strbuf_addf(&refs_url
, "service=%s", service
);
250 memset(&options
, 0, sizeof(options
));
251 options
.content_type
= &type
;
252 options
.effective_url
= &effective_url
;
253 options
.base_url
= &url
;
254 options
.no_cache
= 1;
255 options
.keep_error
= 1;
257 http_ret
= http_get_strbuf(refs_url
.buf
, &buffer
, &options
);
261 case HTTP_MISSING_TARGET
:
262 show_http_message(&type
, &buffer
);
263 die("repository '%s' not found", url
.buf
);
265 show_http_message(&type
, &buffer
);
266 die("Authentication failed for '%s'", url
.buf
);
268 show_http_message(&type
, &buffer
);
269 die("unable to access '%s': %s", url
.buf
, curl_errorstr
);
272 last
= xcalloc(1, sizeof(*last_discovery
));
273 last
->service
= service
;
274 last
->buf_alloc
= strbuf_detach(&buffer
, &last
->len
);
275 last
->buf
= last
->buf_alloc
;
277 strbuf_addf(&exp
, "application/x-%s-advertisement", service
);
279 (5 <= last
->len
&& last
->buf
[4] == '#') &&
280 !strbuf_cmp(&exp
, &type
)) {
284 * smart HTTP response; validate that the service
285 * pkt-line matches our request.
287 line
= packet_read_line_buf(&last
->buf
, &last
->len
, NULL
);
290 strbuf_addf(&exp
, "# service=%s", service
);
291 if (strcmp(line
, exp
.buf
))
292 die("invalid server response; got '%s'", line
);
293 strbuf_release(&exp
);
295 /* The header can include additional metadata lines, up
296 * until a packet flush marker. Ignore these now, but
297 * in the future we might start to scan them.
299 while (packet_read_line_buf(&last
->buf
, &last
->len
, NULL
))
306 last
->refs
= parse_git_refs(last
, for_push
);
308 last
->refs
= parse_info_refs(last
);
310 strbuf_release(&refs_url
);
311 strbuf_release(&exp
);
312 strbuf_release(&type
);
313 strbuf_release(&effective_url
);
314 strbuf_release(&buffer
);
315 last_discovery
= last
;
319 static struct ref
*get_refs(int for_push
)
321 struct discovery
*heads
;
324 heads
= discover_refs("git-receive-pack", for_push
);
326 heads
= discover_refs("git-upload-pack", for_push
);
331 static void output_refs(struct ref
*refs
)
334 for (posn
= refs
; posn
; posn
= posn
->next
) {
336 printf("@%s %s\n", posn
->symref
, posn
->name
);
338 printf("%s %s\n", sha1_to_hex(posn
->old_sha1
), posn
->name
);
345 const char *service_name
;
347 struct strbuf
*stdin_preamble
;
349 char *hdr_content_type
;
357 struct strbuf result
;
358 unsigned gzip_request
: 1;
359 unsigned initial_buffer
: 1;
362 static size_t rpc_out(void *ptr
, size_t eltsize
,
363 size_t nmemb
, void *buffer_
)
365 size_t max
= eltsize
* nmemb
;
366 struct rpc_state
*rpc
= buffer_
;
367 size_t avail
= rpc
->len
- rpc
->pos
;
370 rpc
->initial_buffer
= 0;
371 avail
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
380 memcpy(ptr
, rpc
->buf
+ rpc
->pos
, avail
);
385 #ifndef NO_CURL_IOCTL
386 static curlioerr
rpc_ioctl(CURL
*handle
, int cmd
, void *clientp
)
388 struct rpc_state
*rpc
= clientp
;
394 case CURLIOCMD_RESTARTREAD
:
395 if (rpc
->initial_buffer
) {
399 fprintf(stderr
, "Unable to rewind rpc post data - try increasing http.postBuffer\n");
400 return CURLIOE_FAILRESTART
;
403 return CURLIOE_UNKNOWNCMD
;
408 static size_t rpc_in(char *ptr
, size_t eltsize
,
409 size_t nmemb
, void *buffer_
)
411 size_t size
= eltsize
* nmemb
;
412 struct rpc_state
*rpc
= buffer_
;
413 write_or_die(rpc
->in
, ptr
, size
);
417 static int run_slot(struct active_request_slot
*slot
)
420 struct slot_results results
;
422 slot
->results
= &results
;
423 slot
->curl_result
= curl_easy_perform(slot
->curl
);
424 finish_active_slot(slot
);
426 err
= handle_curl_result(&results
);
427 if (err
!= HTTP_OK
&& err
!= HTTP_REAUTH
) {
428 error("RPC failed; result=%d, HTTP code = %ld",
429 results
.curl_result
, results
.http_code
);
435 static int probe_rpc(struct rpc_state
*rpc
)
437 struct active_request_slot
*slot
;
438 struct curl_slist
*headers
= NULL
;
439 struct strbuf buf
= STRBUF_INIT
;
442 slot
= get_active_slot();
444 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
445 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
447 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
448 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
449 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
450 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, NULL
);
451 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, "0000");
452 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, 4);
453 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
454 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
455 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buf
);
457 err
= run_slot(slot
);
459 curl_slist_free_all(headers
);
460 strbuf_release(&buf
);
464 static int post_rpc(struct rpc_state
*rpc
)
466 struct active_request_slot
*slot
;
467 struct curl_slist
*headers
= NULL
;
468 int use_gzip
= rpc
->gzip_request
;
469 char *gzip_body
= NULL
;
470 size_t gzip_size
= 0;
471 int err
, large_request
= 0;
473 /* Try to load the entire request, if we can fit it into the
474 * allocated buffer space we can use HTTP/1.0 and avoid the
475 * chunked encoding mess.
478 size_t left
= rpc
->alloc
- rpc
->len
;
479 char *buf
= rpc
->buf
+ rpc
->len
;
482 if (left
< LARGE_PACKET_MAX
) {
488 n
= packet_read(rpc
->out
, NULL
, NULL
, buf
, left
, 0);
496 err
= probe_rpc(rpc
);
497 if (err
== HTTP_REAUTH
)
498 credential_fill(&http_auth
);
499 } while (err
== HTTP_REAUTH
);
504 headers
= curl_slist_append(headers
, rpc
->hdr_content_type
);
505 headers
= curl_slist_append(headers
, rpc
->hdr_accept
);
506 headers
= curl_slist_append(headers
, "Expect:");
509 slot
= get_active_slot();
511 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
512 curl_easy_setopt(slot
->curl
, CURLOPT_POST
, 1);
513 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, rpc
->service_url
);
514 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "gzip");
517 /* The request body is large and the size cannot be predicted.
518 * We must use chunked encoding to send it.
520 headers
= curl_slist_append(headers
, "Transfer-Encoding: chunked");
521 rpc
->initial_buffer
= 1;
522 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, rpc_out
);
523 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, rpc
);
524 #ifndef NO_CURL_IOCTL
525 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLFUNCTION
, rpc_ioctl
);
526 curl_easy_setopt(slot
->curl
, CURLOPT_IOCTLDATA
, rpc
);
528 if (options
.verbosity
> 1) {
529 fprintf(stderr
, "POST %s (chunked)\n", rpc
->service_name
);
533 } else if (gzip_body
) {
535 * If we are looping to retry authentication, then the previous
536 * run will have set up the headers and gzip buffer already,
537 * and we just need to send it.
539 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
540 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, gzip_size
);
542 } else if (use_gzip
&& 1024 < rpc
->len
) {
543 /* The client backend isn't giving us compressed data so
544 * we can try to deflate it ourselves, this may save on.
550 memset(&stream
, 0, sizeof(stream
));
551 git_deflate_init_gzip(&stream
, Z_BEST_COMPRESSION
);
552 gzip_size
= git_deflate_bound(&stream
, rpc
->len
);
553 gzip_body
= xmalloc(gzip_size
);
555 stream
.next_in
= (unsigned char *)rpc
->buf
;
556 stream
.avail_in
= rpc
->len
;
557 stream
.next_out
= (unsigned char *)gzip_body
;
558 stream
.avail_out
= gzip_size
;
560 ret
= git_deflate(&stream
, Z_FINISH
);
561 if (ret
!= Z_STREAM_END
)
562 die("cannot deflate request; zlib deflate error %d", ret
);
564 ret
= git_deflate_end_gently(&stream
);
566 die("cannot deflate request; zlib end error %d", ret
);
568 gzip_size
= stream
.total_out
;
570 headers
= curl_slist_append(headers
, "Content-Encoding: gzip");
571 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, gzip_body
);
572 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, gzip_size
);
574 if (options
.verbosity
> 1) {
575 fprintf(stderr
, "POST %s (gzip %lu to %lu bytes)\n",
577 (unsigned long)rpc
->len
, (unsigned long)gzip_size
);
581 /* We know the complete request size in advance, use the
582 * more normal Content-Length approach.
584 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, rpc
->buf
);
585 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, rpc
->len
);
586 if (options
.verbosity
> 1) {
587 fprintf(stderr
, "POST %s (%lu bytes)\n",
588 rpc
->service_name
, (unsigned long)rpc
->len
);
593 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
594 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, rpc_in
);
595 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, rpc
);
597 err
= run_slot(slot
);
598 if (err
== HTTP_REAUTH
&& !large_request
) {
599 credential_fill(&http_auth
);
605 curl_slist_free_all(headers
);
610 static int rpc_service(struct rpc_state
*rpc
, struct discovery
*heads
)
612 const char *svc
= rpc
->service_name
;
613 struct strbuf buf
= STRBUF_INIT
;
614 struct strbuf
*preamble
= rpc
->stdin_preamble
;
615 struct child_process client
;
618 memset(&client
, 0, sizeof(client
));
622 client
.argv
= rpc
->argv
;
623 if (start_command(&client
))
626 write_or_die(client
.in
, preamble
->buf
, preamble
->len
);
628 write_or_die(client
.in
, heads
->buf
, heads
->len
);
630 rpc
->alloc
= http_post_buffer
;
631 rpc
->buf
= xmalloc(rpc
->alloc
);
633 rpc
->out
= client
.out
;
634 strbuf_init(&rpc
->result
, 0);
636 strbuf_addf(&buf
, "%s%s", url
.buf
, svc
);
637 rpc
->service_url
= strbuf_detach(&buf
, NULL
);
639 strbuf_addf(&buf
, "Content-Type: application/x-%s-request", svc
);
640 rpc
->hdr_content_type
= strbuf_detach(&buf
, NULL
);
642 strbuf_addf(&buf
, "Accept: application/x-%s-result", svc
);
643 rpc
->hdr_accept
= strbuf_detach(&buf
, NULL
);
646 int n
= packet_read(rpc
->out
, NULL
, NULL
, rpc
->buf
, rpc
->alloc
, 0);
651 err
|= post_rpc(rpc
);
657 strbuf_read(&rpc
->result
, client
.out
, 0);
661 if (xread(client
.out
, buf
, sizeof(buf
)) <= 0)
668 err
|= finish_command(&client
);
669 free(rpc
->service_url
);
670 free(rpc
->hdr_content_type
);
671 free(rpc
->hdr_accept
);
673 strbuf_release(&buf
);
677 static int fetch_dumb(int nr_heads
, struct ref
**to_fetch
)
679 struct walker
*walker
;
680 char **targets
= xmalloc(nr_heads
* sizeof(char*));
684 die("dumb http transport does not support --depth");
685 for (i
= 0; i
< nr_heads
; i
++)
686 targets
[i
] = xstrdup(sha1_to_hex(to_fetch
[i
]->old_sha1
));
688 walker
= get_http_walker(url
.buf
);
690 walker
->get_tree
= 1;
691 walker
->get_history
= 1;
692 walker
->get_verbosely
= options
.verbosity
>= 3;
693 walker
->get_recover
= 0;
694 ret
= walker_fetch(walker
, nr_heads
, targets
, NULL
, NULL
);
697 for (i
= 0; i
< nr_heads
; i
++)
701 return ret
? error("Fetch failed.") : 0;
704 static int fetch_git(struct discovery
*heads
,
705 int nr_heads
, struct ref
**to_fetch
)
707 struct rpc_state rpc
;
708 struct strbuf preamble
= STRBUF_INIT
;
709 char *depth_arg
= NULL
;
710 int argc
= 0, i
, err
;
711 const char *argv
[17];
713 argv
[argc
++] = "fetch-pack";
714 argv
[argc
++] = "--stateless-rpc";
715 argv
[argc
++] = "--stdin";
716 argv
[argc
++] = "--lock-pack";
717 if (options
.followtags
)
718 argv
[argc
++] = "--include-tag";
720 argv
[argc
++] = "--thin";
721 if (options
.verbosity
>= 3) {
725 if (options
.check_self_contained_and_connected
)
726 argv
[argc
++] = "--check-self-contained-and-connected";
728 argv
[argc
++] = "--cloning";
729 if (options
.update_shallow
)
730 argv
[argc
++] = "--update-shallow";
731 if (!options
.progress
)
732 argv
[argc
++] = "--no-progress";
734 struct strbuf buf
= STRBUF_INIT
;
735 strbuf_addf(&buf
, "--depth=%lu", options
.depth
);
736 depth_arg
= strbuf_detach(&buf
, NULL
);
737 argv
[argc
++] = depth_arg
;
739 argv
[argc
++] = url
.buf
;
742 for (i
= 0; i
< nr_heads
; i
++) {
743 struct ref
*ref
= to_fetch
[i
];
744 if (!ref
->name
|| !*ref
->name
)
745 die("cannot fetch by sha1 over smart http");
746 packet_buf_write(&preamble
, "%s %s\n",
747 sha1_to_hex(ref
->old_sha1
), ref
->name
);
749 packet_buf_flush(&preamble
);
751 memset(&rpc
, 0, sizeof(rpc
));
752 rpc
.service_name
= "git-upload-pack",
754 rpc
.stdin_preamble
= &preamble
;
755 rpc
.gzip_request
= 1;
757 err
= rpc_service(&rpc
, heads
);
759 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
760 strbuf_release(&rpc
.result
);
761 strbuf_release(&preamble
);
766 static int fetch(int nr_heads
, struct ref
**to_fetch
)
768 struct discovery
*d
= discover_refs("git-upload-pack", 0);
770 return fetch_git(d
, nr_heads
, to_fetch
);
772 return fetch_dumb(nr_heads
, to_fetch
);
775 static void parse_fetch(struct strbuf
*buf
)
777 struct ref
**to_fetch
= NULL
;
778 struct ref
*list_head
= NULL
;
779 struct ref
**list
= &list_head
;
780 int alloc_heads
= 0, nr_heads
= 0;
783 if (!prefixcmp(buf
->buf
, "fetch ")) {
784 char *p
= buf
->buf
+ strlen("fetch ");
787 unsigned char old_sha1
[20];
789 if (strlen(p
) < 40 || get_sha1_hex(p
, old_sha1
))
790 die("protocol error: expected sha/ref, got %s'", p
);
796 die("protocol error: expected sha/ref, got %s'", p
);
798 ref
= alloc_ref(name
);
799 hashcpy(ref
->old_sha1
, old_sha1
);
804 ALLOC_GROW(to_fetch
, nr_heads
+ 1, alloc_heads
);
805 to_fetch
[nr_heads
++] = ref
;
808 die("http transport does not support %s", buf
->buf
);
811 if (strbuf_getline(buf
, stdin
, '\n') == EOF
)
817 if (fetch(nr_heads
, to_fetch
))
818 exit(128); /* error already reported */
819 free_refs(list_head
);
827 static int push_dav(int nr_spec
, char **specs
)
829 const char **argv
= xmalloc((10 + nr_spec
) * sizeof(char*));
832 argv
[argc
++] = "http-push";
833 argv
[argc
++] = "--helper-status";
835 argv
[argc
++] = "--dry-run";
836 if (options
.verbosity
> 1)
837 argv
[argc
++] = "--verbose";
838 argv
[argc
++] = url
.buf
;
839 for (i
= 0; i
< nr_spec
; i
++)
840 argv
[argc
++] = specs
[i
];
843 if (run_command_v_opt(argv
, RUN_GIT_CMD
))
844 die("git-%s failed", argv
[0]);
849 static int push_git(struct discovery
*heads
, int nr_spec
, char **specs
)
851 struct rpc_state rpc
;
853 struct argv_array args
;
854 struct string_list_item
*cas_option
;
856 argv_array_init(&args
);
857 argv_array_pushl(&args
, "send-pack", "--stateless-rpc", "--helper-status",
861 argv_array_push(&args
, "--thin");
863 argv_array_push(&args
, "--dry-run");
864 if (options
.verbosity
== 0)
865 argv_array_push(&args
, "--quiet");
866 else if (options
.verbosity
> 1)
867 argv_array_push(&args
, "--verbose");
868 argv_array_push(&args
, options
.progress
? "--progress" : "--no-progress");
869 for_each_string_list_item(cas_option
, &cas_options
)
870 argv_array_push(&args
, cas_option
->string
);
871 argv_array_push(&args
, url
.buf
);
872 for (i
= 0; i
< nr_spec
; i
++)
873 argv_array_push(&args
, specs
[i
]);
875 memset(&rpc
, 0, sizeof(rpc
));
876 rpc
.service_name
= "git-receive-pack",
877 rpc
.argv
= args
.argv
;
879 err
= rpc_service(&rpc
, heads
);
881 write_or_die(1, rpc
.result
.buf
, rpc
.result
.len
);
882 strbuf_release(&rpc
.result
);
883 argv_array_clear(&args
);
887 static int push(int nr_spec
, char **specs
)
889 struct discovery
*heads
= discover_refs("git-receive-pack", 1);
892 if (heads
->proto_git
)
893 ret
= push_git(heads
, nr_spec
, specs
);
895 ret
= push_dav(nr_spec
, specs
);
896 free_discovery(heads
);
900 static void parse_push(struct strbuf
*buf
)
903 int alloc_spec
= 0, nr_spec
= 0, i
, ret
;
906 if (!prefixcmp(buf
->buf
, "push ")) {
907 ALLOC_GROW(specs
, nr_spec
+ 1, alloc_spec
);
908 specs
[nr_spec
++] = xstrdup(buf
->buf
+ 5);
911 die("http transport does not support %s", buf
->buf
);
914 if (strbuf_getline(buf
, stdin
, '\n') == EOF
)
920 ret
= push(nr_spec
, specs
);
925 exit(128); /* error already reported */
928 for (i
= 0; i
< nr_spec
; i
++)
933 int main(int argc
, const char **argv
)
935 struct strbuf buf
= STRBUF_INIT
;
938 git_extract_argv0_path(argv
[0]);
939 setup_git_directory_gently(&nongit
);
941 fprintf(stderr
, "Remote needed\n");
945 options
.verbosity
= 1;
946 options
.progress
= !!isatty(2);
949 remote
= remote_get(argv
[1]);
952 end_url_with_slash(&url
, argv
[2]);
954 end_url_with_slash(&url
, remote
->url
[0]);
957 http_init(remote
, url
.buf
, 0);
960 if (strbuf_getline(&buf
, stdin
, '\n') == EOF
) {
962 fprintf(stderr
, "Error reading command stream\n");
964 fprintf(stderr
, "Unexpected end of command stream\n");
969 if (!prefixcmp(buf
.buf
, "fetch ")) {
971 die("Fetch attempted without a local repo");
974 } else if (!strcmp(buf
.buf
, "list") || !prefixcmp(buf
.buf
, "list ")) {
975 int for_push
= !!strstr(buf
.buf
+ 4, "for-push");
976 output_refs(get_refs(for_push
));
978 } else if (!prefixcmp(buf
.buf
, "push ")) {
981 } else if (!prefixcmp(buf
.buf
, "option ")) {
982 char *name
= buf
.buf
+ strlen("option ");
983 char *value
= strchr(name
, ' ');
991 result
= set_option(name
, value
);
995 printf("error invalid value\n");
997 printf("unsupported\n");
1000 } else if (!strcmp(buf
.buf
, "capabilities")) {
1004 printf("check-connectivity\n");
1008 fprintf(stderr
, "Unknown command '%s'\n", buf
.buf
);