4 #include "run-command.h"
10 #include "string-list.h"
11 #include "thread-utils.h"
13 #include "argv-array.h"
20 struct child_process
*helper
;
30 check_connectivity
: 1,
31 no_disconnect_req
: 1,
32 no_private_update
: 1;
35 /* These go from remote name (as in "list") to private name */
36 struct refspec
*refspecs
;
38 /* Transport options for fetch-pack/send-pack (should one of
41 struct git_transport_options transport_options
;
44 static void sendline(struct helper_data
*helper
, struct strbuf
*buffer
)
47 fprintf(stderr
, "Debug: Remote helper: -> %s", buffer
->buf
);
48 if (write_in_full(helper
->helper
->in
, buffer
->buf
, buffer
->len
)
50 die_errno("Full write to remote helper failed");
53 static int recvline_fh(FILE *helper
, struct strbuf
*buffer
, const char *name
)
57 fprintf(stderr
, "Debug: Remote helper: Waiting...\n");
58 if (strbuf_getline(buffer
, helper
, '\n') == EOF
) {
60 fprintf(stderr
, "Debug: Remote helper quit.\n");
65 fprintf(stderr
, "Debug: Remote helper: <- %s\n", buffer
->buf
);
69 static int recvline(struct helper_data
*helper
, struct strbuf
*buffer
)
71 return recvline_fh(helper
->out
, buffer
, helper
->name
);
74 static void xchgline(struct helper_data
*helper
, struct strbuf
*buffer
)
76 sendline(helper
, buffer
);
77 recvline(helper
, buffer
);
80 static void write_constant(int fd
, const char *str
)
83 fprintf(stderr
, "Debug: Remote helper: -> %s", str
);
84 if (write_in_full(fd
, str
, strlen(str
)) != strlen(str
))
85 die_errno("Full write to remote helper failed");
88 static const char *remove_ext_force(const char *url
)
91 const char *colon
= strchr(url
, ':');
92 if (colon
&& colon
[1] == ':')
98 static void do_take_over(struct transport
*transport
)
100 struct helper_data
*data
;
101 data
= (struct helper_data
*)transport
->data
;
102 transport_take_over(transport
, data
->helper
);
107 static struct child_process
*get_helper(struct transport
*transport
)
109 struct helper_data
*data
= transport
->data
;
110 struct argv_array argv
= ARGV_ARRAY_INIT
;
111 struct strbuf buf
= STRBUF_INIT
;
112 struct child_process
*helper
;
113 const char **refspecs
= NULL
;
115 int refspec_alloc
= 0;
118 char git_dir_buf
[sizeof(GIT_DIR_ENVIRONMENT
) + PATH_MAX
+ 1];
119 const char *helper_env
[] = {
128 helper
= xcalloc(1, sizeof(*helper
));
132 argv_array_pushf(&argv
, "git-remote-%s", data
->name
);
133 argv_array_push(&argv
, transport
->remote
->name
);
134 argv_array_push(&argv
, remove_ext_force(transport
->url
));
135 helper
->argv
= argv_array_detach(&argv
, NULL
);
137 helper
->silent_exec_failure
= 1;
139 snprintf(git_dir_buf
, sizeof(git_dir_buf
), "%s=%s", GIT_DIR_ENVIRONMENT
, get_git_dir());
140 helper
->env
= helper_env
;
142 code
= start_command(helper
);
143 if (code
< 0 && errno
== ENOENT
)
144 die("Unable to find remote helper for '%s'", data
->name
);
148 data
->helper
= helper
;
149 data
->no_disconnect_req
= 0;
152 * Open the output as FILE* so strbuf_getline() can be used.
153 * Do this with duped fd because fclose() will close the fd,
154 * and stuff like taking over will require the fd to remain.
156 duped
= dup(helper
->out
);
158 die_errno("Can't dup helper output fd");
159 data
->out
= xfdopen(duped
, "r");
161 write_constant(helper
->in
, "capabilities\n");
166 recvline(data
, &buf
);
171 if (*buf
.buf
== '*') {
172 capname
= buf
.buf
+ 1;
178 fprintf(stderr
, "Debug: Got cap %s\n", capname
);
179 if (!strcmp(capname
, "fetch"))
181 else if (!strcmp(capname
, "option"))
183 else if (!strcmp(capname
, "push"))
185 else if (!strcmp(capname
, "import"))
187 else if (!strcmp(capname
, "bidi-import"))
188 data
->bidi_import
= 1;
189 else if (!strcmp(capname
, "export"))
191 else if (!strcmp(capname
, "check-connectivity"))
192 data
->check_connectivity
= 1;
193 else if (!data
->refspecs
&& !prefixcmp(capname
, "refspec ")) {
197 refspecs
[refspec_nr
++] = xstrdup(capname
+ strlen("refspec "));
198 } else if (!strcmp(capname
, "connect")) {
200 } else if (!strcmp(capname
, "signed-tags")) {
201 data
->signed_tags
= 1;
202 } else if (!prefixcmp(capname
, "export-marks ")) {
203 struct strbuf arg
= STRBUF_INIT
;
204 strbuf_addstr(&arg
, "--export-marks=");
205 strbuf_addstr(&arg
, capname
+ strlen("export-marks "));
206 data
->export_marks
= strbuf_detach(&arg
, NULL
);
207 } else if (!prefixcmp(capname
, "import-marks")) {
208 struct strbuf arg
= STRBUF_INIT
;
209 strbuf_addstr(&arg
, "--import-marks=");
210 strbuf_addstr(&arg
, capname
+ strlen("import-marks "));
211 data
->import_marks
= strbuf_detach(&arg
, NULL
);
212 } else if (!prefixcmp(capname
, "no-private-update")) {
213 data
->no_private_update
= 1;
214 } else if (mandatory
) {
215 die("Unknown mandatory capability %s. This remote "
216 "helper probably needs newer version of Git.",
222 data
->refspec_nr
= refspec_nr
;
223 data
->refspecs
= parse_fetch_refspec(refspec_nr
, refspecs
);
224 for (i
= 0; i
< refspec_nr
; i
++)
225 free((char *)refspecs
[i
]);
227 } else if (data
->import
|| data
->bidi_import
|| data
->export
) {
228 warning("This remote helper should implement refspec capability.");
230 strbuf_release(&buf
);
232 fprintf(stderr
, "Debug: Capabilities complete.\n");
236 static int disconnect_helper(struct transport
*transport
)
238 struct helper_data
*data
= transport
->data
;
243 fprintf(stderr
, "Debug: Disconnecting.\n");
244 if (!data
->no_disconnect_req
) {
246 * Ignore write errors; there's nothing we can do,
247 * since we're about to close the pipe anyway. And the
248 * most likely error is EPIPE due to the helper dying
249 * to report an error itself.
251 sigchain_push(SIGPIPE
, SIG_IGN
);
252 xwrite(data
->helper
->in
, "\n", 1);
253 sigchain_pop(SIGPIPE
);
255 close(data
->helper
->in
);
256 close(data
->helper
->out
);
258 res
= finish_command(data
->helper
);
259 argv_array_free_detached(data
->helper
->argv
);
266 static const char *unsupported_options
[] = {
267 TRANS_OPT_UPLOADPACK
,
268 TRANS_OPT_RECEIVEPACK
,
273 static const char *boolean_options
[] = {
279 static int set_helper_option(struct transport
*transport
,
280 const char *name
, const char *value
)
282 struct helper_data
*data
= transport
->data
;
283 struct strbuf buf
= STRBUF_INIT
;
284 int i
, ret
, is_bool
= 0;
286 get_helper(transport
);
291 for (i
= 0; i
< ARRAY_SIZE(unsupported_options
); i
++) {
292 if (!strcmp(name
, unsupported_options
[i
]))
296 for (i
= 0; i
< ARRAY_SIZE(boolean_options
); i
++) {
297 if (!strcmp(name
, boolean_options
[i
])) {
303 strbuf_addf(&buf
, "option %s ", name
);
305 strbuf_addstr(&buf
, value
? "true" : "false");
307 quote_c_style(value
, &buf
, NULL
, 0);
308 strbuf_addch(&buf
, '\n');
310 xchgline(data
, &buf
);
312 if (!strcmp(buf
.buf
, "ok"))
314 else if (!prefixcmp(buf
.buf
, "error")) {
316 } else if (!strcmp(buf
.buf
, "unsupported"))
319 warning("%s unexpectedly said: '%s'", data
->name
, buf
.buf
);
322 strbuf_release(&buf
);
326 static void standard_options(struct transport
*t
)
332 set_helper_option(t
, "progress", t
->progress
? "true" : "false");
334 n
= snprintf(buf
, sizeof(buf
), "%d", v
+ 1);
335 if (n
>= sizeof(buf
))
336 die("impossibly large verbosity value");
337 set_helper_option(t
, "verbosity", buf
);
340 static int release_helper(struct transport
*transport
)
343 struct helper_data
*data
= transport
->data
;
344 free_refspec(data
->refspec_nr
, data
->refspecs
);
345 data
->refspecs
= NULL
;
346 res
= disconnect_helper(transport
);
347 free(transport
->data
);
351 static int fetch_with_fetch(struct transport
*transport
,
352 int nr_heads
, struct ref
**to_fetch
)
354 struct helper_data
*data
= transport
->data
;
356 struct strbuf buf
= STRBUF_INIT
;
358 standard_options(transport
);
359 if (data
->check_connectivity
&&
360 data
->transport_options
.check_self_contained_and_connected
)
361 set_helper_option(transport
, "check-connectivity", "true");
363 for (i
= 0; i
< nr_heads
; i
++) {
364 const struct ref
*posn
= to_fetch
[i
];
365 if (posn
->status
& REF_STATUS_UPTODATE
)
368 strbuf_addf(&buf
, "fetch %s %s\n",
369 sha1_to_hex(posn
->old_sha1
), posn
->name
);
372 strbuf_addch(&buf
, '\n');
373 sendline(data
, &buf
);
376 recvline(data
, &buf
);
378 if (!prefixcmp(buf
.buf
, "lock ")) {
379 const char *name
= buf
.buf
+ 5;
380 if (transport
->pack_lockfile
)
381 warning("%s also locked %s", data
->name
, name
);
383 transport
->pack_lockfile
= xstrdup(name
);
385 else if (data
->check_connectivity
&&
386 data
->transport_options
.check_self_contained_and_connected
&&
387 !strcmp(buf
.buf
, "connectivity-ok"))
388 data
->transport_options
.self_contained_and_connected
= 1;
392 warning("%s unexpectedly said: '%s'", data
->name
, buf
.buf
);
394 strbuf_release(&buf
);
398 static int get_importer(struct transport
*transport
, struct child_process
*fastimport
)
400 struct child_process
*helper
= get_helper(transport
);
401 struct helper_data
*data
= transport
->data
;
402 struct argv_array argv
= ARGV_ARRAY_INIT
;
403 int cat_blob_fd
, code
;
404 memset(fastimport
, 0, sizeof(*fastimport
));
405 fastimport
->in
= helper
->out
;
406 argv_array_push(&argv
, "fast-import");
407 argv_array_push(&argv
, debug
? "--stats" : "--quiet");
409 if (data
->bidi_import
) {
410 cat_blob_fd
= xdup(helper
->in
);
411 argv_array_pushf(&argv
, "--cat-blob-fd=%d", cat_blob_fd
);
413 fastimport
->argv
= argv
.argv
;
414 fastimport
->git_cmd
= 1;
416 code
= start_command(fastimport
);
420 static int get_exporter(struct transport
*transport
,
421 struct child_process
*fastexport
,
422 struct string_list
*revlist_args
)
424 struct helper_data
*data
= transport
->data
;
425 struct child_process
*helper
= get_helper(transport
);
427 memset(fastexport
, 0, sizeof(*fastexport
));
429 /* we need to duplicate helper->in because we want to use it after
430 * fastexport is done with it. */
431 fastexport
->out
= dup(helper
->in
);
432 fastexport
->argv
= xcalloc(6 + revlist_args
->nr
, sizeof(*fastexport
->argv
));
433 fastexport
->argv
[argc
++] = "fast-export";
434 fastexport
->argv
[argc
++] = "--use-done-feature";
435 fastexport
->argv
[argc
++] = data
->signed_tags
?
436 "--signed-tags=verbatim" : "--signed-tags=warn-strip";
437 if (data
->export_marks
)
438 fastexport
->argv
[argc
++] = data
->export_marks
;
439 if (data
->import_marks
)
440 fastexport
->argv
[argc
++] = data
->import_marks
;
442 for (i
= 0; i
< revlist_args
->nr
; i
++)
443 fastexport
->argv
[argc
++] = revlist_args
->items
[i
].string
;
445 fastexport
->git_cmd
= 1;
446 return start_command(fastexport
);
449 static int fetch_with_import(struct transport
*transport
,
450 int nr_heads
, struct ref
**to_fetch
)
452 struct child_process fastimport
;
453 struct helper_data
*data
= transport
->data
;
456 struct strbuf buf
= STRBUF_INIT
;
458 get_helper(transport
);
460 if (get_importer(transport
, &fastimport
))
461 die("Couldn't run fast-import");
463 for (i
= 0; i
< nr_heads
; i
++) {
465 if (posn
->status
& REF_STATUS_UPTODATE
)
468 strbuf_addf(&buf
, "import %s\n", posn
->name
);
469 sendline(data
, &buf
);
473 write_constant(data
->helper
->in
, "\n");
475 * remote-helpers that advertise the bidi-import capability are required to
476 * buffer the complete batch of import commands until this newline before
477 * sending data to fast-import.
478 * These helpers read back data from fast-import on their stdin, which could
479 * be mixed with import commands, otherwise.
482 if (finish_command(&fastimport
))
483 die("Error while running fast-import");
484 argv_array_free_detached(fastimport
.argv
);
487 * The fast-import stream of a remote helper that advertises
488 * the "refspec" capability writes to the refs named after the
489 * right hand side of the first refspec matching each ref we
492 * (If no "refspec" capability was specified, for historical
493 * reasons we default to the equivalent of *:*.)
495 * Store the result in to_fetch[i].old_sha1. Callers such
496 * as "git fetch" can use the value to write feedback to the
497 * terminal, populate FETCH_HEAD, and determine what new value
498 * should be written to peer_ref if the update is a
499 * fast-forward or this is a forced update.
501 for (i
= 0; i
< nr_heads
; i
++) {
504 if (posn
->status
& REF_STATUS_UPTODATE
)
507 private = apply_refspecs(data
->refspecs
, data
->refspec_nr
, posn
->name
);
509 private = xstrdup(posn
->name
);
511 read_ref(private, posn
->old_sha1
);
515 strbuf_release(&buf
);
519 static int process_connect_service(struct transport
*transport
,
520 const char *name
, const char *exec
)
522 struct helper_data
*data
= transport
->data
;
523 struct strbuf cmdbuf
= STRBUF_INIT
;
524 struct child_process
*helper
;
525 int r
, duped
, ret
= 0;
528 helper
= get_helper(transport
);
531 * Yes, dup the pipe another time, as we need unbuffered version
532 * of input pipe as FILE*. fclose() closes the underlying fd and
533 * stream buffering only can be changed before first I/O operation
536 duped
= dup(helper
->out
);
538 die_errno("Can't dup helper output fd");
539 input
= xfdopen(duped
, "r");
540 setvbuf(input
, NULL
, _IONBF
, 0);
543 * Handle --upload-pack and friends. This is fire and forget...
544 * just warn if it fails.
546 if (strcmp(name
, exec
)) {
547 r
= set_helper_option(transport
, "servpath", exec
);
549 warning("Setting remote service path not supported by protocol.");
551 warning("Invalid remote service path.");
555 strbuf_addf(&cmdbuf
, "connect %s\n", name
);
559 sendline(data
, &cmdbuf
);
560 recvline_fh(input
, &cmdbuf
, name
);
561 if (!strcmp(cmdbuf
.buf
, "")) {
562 data
->no_disconnect_req
= 1;
564 fprintf(stderr
, "Debug: Smart transport connection "
567 } else if (!strcmp(cmdbuf
.buf
, "fallback")) {
569 fprintf(stderr
, "Debug: Falling back to dumb "
572 die("Unknown response to connect: %s",
580 static int process_connect(struct transport
*transport
,
583 struct helper_data
*data
= transport
->data
;
587 name
= for_push
? "git-receive-pack" : "git-upload-pack";
589 exec
= data
->transport_options
.receivepack
;
591 exec
= data
->transport_options
.uploadpack
;
593 return process_connect_service(transport
, name
, exec
);
596 static int connect_helper(struct transport
*transport
, const char *name
,
597 const char *exec
, int fd
[2])
599 struct helper_data
*data
= transport
->data
;
601 /* Get_helper so connect is inited. */
602 get_helper(transport
);
604 die("Operation not supported by protocol.");
606 if (!process_connect_service(transport
, name
, exec
))
607 die("Can't connect to subservice %s.", name
);
609 fd
[0] = data
->helper
->out
;
610 fd
[1] = data
->helper
->in
;
614 static int fetch(struct transport
*transport
,
615 int nr_heads
, struct ref
**to_fetch
)
617 struct helper_data
*data
= transport
->data
;
620 if (process_connect(transport
, 0)) {
621 do_take_over(transport
);
622 return transport
->fetch(transport
, nr_heads
, to_fetch
);
626 for (i
= 0; i
< nr_heads
; i
++)
627 if (!(to_fetch
[i
]->status
& REF_STATUS_UPTODATE
))
634 return fetch_with_fetch(transport
, nr_heads
, to_fetch
);
637 return fetch_with_import(transport
, nr_heads
, to_fetch
);
642 static int push_update_ref_status(struct strbuf
*buf
,
644 struct ref
*remote_refs
)
649 if (!prefixcmp(buf
->buf
, "ok ")) {
650 status
= REF_STATUS_OK
;
651 refname
= buf
->buf
+ 3;
652 } else if (!prefixcmp(buf
->buf
, "error ")) {
653 status
= REF_STATUS_REMOTE_REJECT
;
654 refname
= buf
->buf
+ 6;
656 die("expected ok/error, helper said '%s'", buf
->buf
);
658 msg
= strchr(refname
, ' ');
660 struct strbuf msg_buf
= STRBUF_INIT
;
664 if (!unquote_c_style(&msg_buf
, msg
, &end
))
665 msg
= strbuf_detach(&msg_buf
, NULL
);
668 strbuf_release(&msg_buf
);
670 if (!strcmp(msg
, "no match")) {
671 status
= REF_STATUS_NONE
;
675 else if (!strcmp(msg
, "up to date")) {
676 status
= REF_STATUS_UPTODATE
;
680 else if (!strcmp(msg
, "non-fast forward")) {
681 status
= REF_STATUS_REJECT_NONFASTFORWARD
;
685 else if (!strcmp(msg
, "already exists")) {
686 status
= REF_STATUS_REJECT_ALREADY_EXISTS
;
690 else if (!strcmp(msg
, "fetch first")) {
691 status
= REF_STATUS_REJECT_FETCH_FIRST
;
695 else if (!strcmp(msg
, "needs force")) {
696 status
= REF_STATUS_REJECT_NEEDS_FORCE
;
700 else if (!strcmp(msg
, "stale info")) {
701 status
= REF_STATUS_REJECT_STALE
;
708 *ref
= find_ref_by_name(*ref
, refname
);
710 *ref
= find_ref_by_name(remote_refs
, refname
);
712 warning("helper reported unexpected status of %s", refname
);
716 if ((*ref
)->status
!= REF_STATUS_NONE
) {
718 * Earlier, the ref was marked not to be pushed, so ignore the ref
719 * status reported by the remote helper if the latter is 'no match'.
721 if (status
== REF_STATUS_NONE
)
725 (*ref
)->status
= status
;
726 (*ref
)->remote_status
= msg
;
727 return !(status
== REF_STATUS_OK
);
730 static void push_update_refs_status(struct helper_data
*data
,
731 struct ref
*remote_refs
)
733 struct strbuf buf
= STRBUF_INIT
;
734 struct ref
*ref
= remote_refs
;
738 recvline(data
, &buf
);
742 if (push_update_ref_status(&buf
, &ref
, remote_refs
))
745 if (!data
->refspecs
|| data
->no_private_update
)
748 /* propagate back the update to the remote namespace */
749 private = apply_refspecs(data
->refspecs
, data
->refspec_nr
, ref
->name
);
752 update_ref("update by helper", private, ref
->new_sha1
, NULL
, 0, 0);
755 strbuf_release(&buf
);
758 static int push_refs_with_push(struct transport
*transport
,
759 struct ref
*remote_refs
, int flags
)
761 int force_all
= flags
& TRANSPORT_PUSH_FORCE
;
762 int mirror
= flags
& TRANSPORT_PUSH_MIRROR
;
763 struct helper_data
*data
= transport
->data
;
764 struct strbuf buf
= STRBUF_INIT
;
766 struct string_list cas_options
= STRING_LIST_INIT_DUP
;
767 struct string_list_item
*cas_option
;
769 get_helper(transport
);
773 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
774 if (!ref
->peer_ref
&& !mirror
)
777 /* Check for statuses set by set_ref_status_for_push() */
778 switch (ref
->status
) {
779 case REF_STATUS_REJECT_NONFASTFORWARD
:
780 case REF_STATUS_REJECT_STALE
:
781 case REF_STATUS_REJECT_ALREADY_EXISTS
:
782 case REF_STATUS_UPTODATE
:
791 strbuf_addstr(&buf
, "push ");
792 if (!ref
->deletion
) {
794 strbuf_addch(&buf
, '+');
796 strbuf_addstr(&buf
, ref
->peer_ref
->name
);
798 strbuf_addstr(&buf
, sha1_to_hex(ref
->new_sha1
));
800 strbuf_addch(&buf
, ':');
801 strbuf_addstr(&buf
, ref
->name
);
802 strbuf_addch(&buf
, '\n');
805 * The "--force-with-lease" options without explicit
806 * values to expect have already been expanded into
807 * the ref->old_sha1_expect[] field; we can ignore
808 * transport->smart_options->cas altogether and instead
809 * can enumerate them from the refs.
811 if (ref
->expect_old_sha1
) {
812 struct strbuf cas
= STRBUF_INIT
;
813 strbuf_addf(&cas
, "%s:%s",
814 ref
->name
, sha1_to_hex(ref
->old_sha1_expect
));
815 string_list_append(&cas_options
, strbuf_detach(&cas
, NULL
));
819 string_list_clear(&cas_options
, 0);
823 standard_options(transport
);
824 for_each_string_list_item(cas_option
, &cas_options
)
825 set_helper_option(transport
, "cas", cas_option
->string
);
827 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
828 if (set_helper_option(transport
, "dry-run", "true") != 0)
829 die("helper %s does not support dry-run", data
->name
);
832 strbuf_addch(&buf
, '\n');
833 sendline(data
, &buf
);
834 strbuf_release(&buf
);
836 push_update_refs_status(data
, remote_refs
);
840 static int push_refs_with_export(struct transport
*transport
,
841 struct ref
*remote_refs
, int flags
)
844 struct child_process
*helper
, exporter
;
845 struct helper_data
*data
= transport
->data
;
846 struct string_list revlist_args
= STRING_LIST_INIT_NODUP
;
847 struct strbuf buf
= STRBUF_INIT
;
850 die("remote-helper doesn't support push; refspec needed");
852 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
853 if (set_helper_option(transport
, "dry-run", "true") != 0)
854 die("helper %s does not support dry-run", data
->name
);
857 helper
= get_helper(transport
);
859 write_constant(helper
->in
, "export\n");
863 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
865 unsigned char sha1
[20];
868 die("remote-helpers do not support ref deletion");
870 private = apply_refspecs(data
->refspecs
, data
->refspec_nr
, ref
->name
);
871 if (private && !get_sha1(private, sha1
)) {
872 strbuf_addf(&buf
, "^%s", private);
873 string_list_append(&revlist_args
, strbuf_detach(&buf
, NULL
));
874 hashcpy(ref
->old_sha1
, sha1
);
879 die("remote-helpers do not support ref deletion");
882 if (strcmp(ref
->peer_ref
->name
, ref
->name
))
883 die("remote-helpers do not support old:new syntax");
884 string_list_append(&revlist_args
, ref
->peer_ref
->name
);
888 if (get_exporter(transport
, &exporter
, &revlist_args
))
889 die("Couldn't run fast-export");
891 if (finish_command(&exporter
))
892 die("Error while running fast-export");
893 push_update_refs_status(data
, remote_refs
);
897 static int push_refs(struct transport
*transport
,
898 struct ref
*remote_refs
, int flags
)
900 struct helper_data
*data
= transport
->data
;
902 if (process_connect(transport
, 1)) {
903 do_take_over(transport
);
904 return transport
->push_refs(transport
, remote_refs
, flags
);
908 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
909 "Perhaps you should specify a branch such as 'master'.\n");
914 return push_refs_with_push(transport
, remote_refs
, flags
);
917 return push_refs_with_export(transport
, remote_refs
, flags
);
923 static int has_attribute(const char *attrs
, const char *attr
) {
930 const char *space
= strchrnul(attrs
, ' ');
931 if (len
== space
- attrs
&& !strncmp(attrs
, attr
, len
))
939 static struct ref
*get_refs_list(struct transport
*transport
, int for_push
)
941 struct helper_data
*data
= transport
->data
;
942 struct child_process
*helper
;
943 struct ref
*ret
= NULL
;
944 struct ref
**tail
= &ret
;
946 struct strbuf buf
= STRBUF_INIT
;
948 helper
= get_helper(transport
);
950 if (process_connect(transport
, for_push
)) {
951 do_take_over(transport
);
952 return transport
->get_refs_list(transport
, for_push
);
955 if (data
->push
&& for_push
)
956 write_str_in_full(helper
->in
, "list for-push\n");
958 write_str_in_full(helper
->in
, "list\n");
962 recvline(data
, &buf
);
967 eov
= strchr(buf
.buf
, ' ');
969 die("Malformed response in ref list: %s", buf
.buf
);
970 eon
= strchr(eov
+ 1, ' ');
974 *tail
= alloc_ref(eov
+ 1);
975 if (buf
.buf
[0] == '@')
976 (*tail
)->symref
= xstrdup(buf
.buf
+ 1);
977 else if (buf
.buf
[0] != '?')
978 get_sha1_hex(buf
.buf
, (*tail
)->old_sha1
);
980 if (has_attribute(eon
+ 1, "unchanged")) {
981 (*tail
)->status
|= REF_STATUS_UPTODATE
;
982 read_ref((*tail
)->name
, (*tail
)->old_sha1
);
985 tail
= &((*tail
)->next
);
988 fprintf(stderr
, "Debug: Read ref listing.\n");
989 strbuf_release(&buf
);
991 for (posn
= ret
; posn
; posn
= posn
->next
)
992 resolve_remote_symref(posn
, ret
);
997 int transport_helper_init(struct transport
*transport
, const char *name
)
999 struct helper_data
*data
= xcalloc(sizeof(*data
), 1);
1002 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1005 transport
->data
= data
;
1006 transport
->set_option
= set_helper_option
;
1007 transport
->get_refs_list
= get_refs_list
;
1008 transport
->fetch
= fetch
;
1009 transport
->push_refs
= push_refs
;
1010 transport
->disconnect
= release_helper
;
1011 transport
->connect
= connect_helper
;
1012 transport
->smart_options
= &(data
->transport_options
);
1017 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1018 * buffer less), so attempt reads and writes with up to that size.
1020 #define BUFFERSIZE 65536
1021 /* This should be enough to hold debugging message. */
1022 #define PBUFFERSIZE 8192
1024 /* Print bidirectional transfer loop debug message. */
1025 __attribute__((format (printf
, 1, 2)))
1026 static void transfer_debug(const char *fmt
, ...)
1029 char msgbuf
[PBUFFERSIZE
];
1030 static int debug_enabled
= -1;
1032 if (debug_enabled
< 0)
1033 debug_enabled
= getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1037 va_start(args
, fmt
);
1038 vsnprintf(msgbuf
, PBUFFERSIZE
, fmt
, args
);
1040 fprintf(stderr
, "Transfer loop debugging: %s\n", msgbuf
);
1043 /* Stream state: More data may be coming in this direction. */
1044 #define SSTATE_TRANSFERING 0
1046 * Stream state: No more data coming in this direction, flushing rest of
1049 #define SSTATE_FLUSHING 1
1050 /* Stream state: Transfer in this direction finished. */
1051 #define SSTATE_FINISHED 2
1053 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
1054 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1055 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1057 /* Unidirectional transfer. */
1058 struct unidirectional_transfer
{
1063 /* Is source socket? */
1065 /* Is destination socket? */
1067 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1070 char buf
[BUFFERSIZE
];
1073 /* Name of source. */
1074 const char *src_name
;
1075 /* Name of destination. */
1076 const char *dest_name
;
1079 /* Closes the target (for writing) if transfer has finished. */
1080 static void udt_close_if_finished(struct unidirectional_transfer
*t
)
1082 if (STATE_NEEDS_CLOSING(t
->state
) && !t
->bufuse
) {
1083 t
->state
= SSTATE_FINISHED
;
1084 if (t
->dest_is_sock
)
1085 shutdown(t
->dest
, SHUT_WR
);
1088 transfer_debug("Closed %s.", t
->dest_name
);
1093 * Tries to read read data from source into buffer. If buffer is full,
1094 * no data is read. Returns 0 on success, -1 on error.
1096 static int udt_do_read(struct unidirectional_transfer
*t
)
1100 if (t
->bufuse
== BUFFERSIZE
)
1101 return 0; /* No space for more. */
1103 transfer_debug("%s is readable", t
->src_name
);
1104 bytes
= read(t
->src
, t
->buf
+ t
->bufuse
, BUFFERSIZE
- t
->bufuse
);
1105 if (bytes
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
&&
1107 error("read(%s) failed: %s", t
->src_name
, strerror(errno
));
1109 } else if (bytes
== 0) {
1110 transfer_debug("%s EOF (with %i bytes in buffer)",
1111 t
->src_name
, (int)t
->bufuse
);
1112 t
->state
= SSTATE_FLUSHING
;
1113 } else if (bytes
> 0) {
1115 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1116 (int)bytes
, t
->src_name
, (int)t
->bufuse
);
1121 /* Tries to write data from buffer into destination. If buffer is empty,
1122 * no data is written. Returns 0 on success, -1 on error.
1124 static int udt_do_write(struct unidirectional_transfer
*t
)
1129 return 0; /* Nothing to write. */
1131 transfer_debug("%s is writable", t
->dest_name
);
1132 bytes
= write(t
->dest
, t
->buf
, t
->bufuse
);
1133 if (bytes
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
&&
1135 error("write(%s) failed: %s", t
->dest_name
, strerror(errno
));
1137 } else if (bytes
> 0) {
1140 memmove(t
->buf
, t
->buf
+ bytes
, t
->bufuse
);
1141 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1142 (int)bytes
, t
->dest_name
, (int)t
->bufuse
);
1148 /* State of bidirectional transfer loop. */
1149 struct bidirectional_transfer_state
{
1150 /* Direction from program to git. */
1151 struct unidirectional_transfer ptg
;
1152 /* Direction from git to program. */
1153 struct unidirectional_transfer gtp
;
1156 static void *udt_copy_task_routine(void *udt
)
1158 struct unidirectional_transfer
*t
= (struct unidirectional_transfer
*)udt
;
1159 while (t
->state
!= SSTATE_FINISHED
) {
1160 if (STATE_NEEDS_READING(t
->state
))
1163 if (STATE_NEEDS_WRITING(t
->state
))
1164 if (udt_do_write(t
))
1166 if (STATE_NEEDS_CLOSING(t
->state
))
1167 udt_close_if_finished(t
);
1169 return udt
; /* Just some non-NULL value. */
1175 * Join thread, with appropriate errors on failure. Name is name for the
1176 * thread (for error messages). Returns 0 on success, 1 on failure.
1178 static int tloop_join(pthread_t thread
, const char *name
)
1182 err
= pthread_join(thread
, &tret
);
1184 error("%s thread failed", name
);
1188 error("%s thread failed to join: %s", name
, strerror(err
));
1195 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1198 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1200 pthread_t gtp_thread
;
1201 pthread_t ptg_thread
;
1204 err
= pthread_create(>p_thread
, NULL
, udt_copy_task_routine
,
1207 die("Can't start thread for copying data: %s", strerror(err
));
1208 err
= pthread_create(&ptg_thread
, NULL
, udt_copy_task_routine
,
1211 die("Can't start thread for copying data: %s", strerror(err
));
1213 ret
|= tloop_join(gtp_thread
, "Git to program copy");
1214 ret
|= tloop_join(ptg_thread
, "Program to git copy");
1219 /* Close the source and target (for writing) for transfer. */
1220 static void udt_kill_transfer(struct unidirectional_transfer
*t
)
1222 t
->state
= SSTATE_FINISHED
;
1224 * Socket read end left open isn't a disaster if nobody
1225 * attempts to read from it (mingw compat headers do not
1228 * We can't fully close the socket since otherwise gtp
1229 * task would first close the socket it sends data to
1230 * while closing the ptg file descriptors.
1232 if (!t
->src_is_sock
)
1234 if (t
->dest_is_sock
)
1235 shutdown(t
->dest
, SHUT_WR
);
1241 * Join process, with appropriate errors on failure. Name is name for the
1242 * process (for error messages). Returns 0 on success, 1 on failure.
1244 static int tloop_join(pid_t pid
, const char *name
)
1247 if (waitpid(pid
, &tret
, 0) < 0) {
1248 error("%s process failed to wait: %s", name
, strerror(errno
));
1251 if (!WIFEXITED(tret
) || WEXITSTATUS(tret
)) {
1252 error("%s process failed", name
);
1259 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1262 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1267 /* Fork thread #1: git to program. */
1270 die_errno("Can't start thread for copying data");
1271 else if (pid1
== 0) {
1272 udt_kill_transfer(&s
->ptg
);
1273 exit(udt_copy_task_routine(&s
->gtp
) ? 0 : 1);
1276 /* Fork thread #2: program to git. */
1279 die_errno("Can't start thread for copying data");
1280 else if (pid2
== 0) {
1281 udt_kill_transfer(&s
->gtp
);
1282 exit(udt_copy_task_routine(&s
->ptg
) ? 0 : 1);
1286 * Close both streams in parent as to not interfere with
1287 * end of file detection and wait for both tasks to finish.
1289 udt_kill_transfer(&s
->gtp
);
1290 udt_kill_transfer(&s
->ptg
);
1291 ret
|= tloop_join(pid1
, "Git to program copy");
1292 ret
|= tloop_join(pid2
, "Program to git copy");
1298 * Copies data from stdin to output and from input to stdout simultaneously.
1299 * Additionally filtering through given filter. If filter is NULL, uses
1302 int bidirectional_transfer_loop(int input
, int output
)
1304 struct bidirectional_transfer_state state
;
1306 /* Fill the state fields. */
1307 state
.ptg
.src
= input
;
1309 state
.ptg
.src_is_sock
= (input
== output
);
1310 state
.ptg
.dest_is_sock
= 0;
1311 state
.ptg
.state
= SSTATE_TRANSFERING
;
1312 state
.ptg
.bufuse
= 0;
1313 state
.ptg
.src_name
= "remote input";
1314 state
.ptg
.dest_name
= "stdout";
1317 state
.gtp
.dest
= output
;
1318 state
.gtp
.src_is_sock
= 0;
1319 state
.gtp
.dest_is_sock
= (input
== output
);
1320 state
.gtp
.state
= SSTATE_TRANSFERING
;
1321 state
.gtp
.bufuse
= 0;
1322 state
.gtp
.src_name
= "stdin";
1323 state
.gtp
.dest_name
= "remote output";
1325 return tloop_spawnwait_tasks(&state
);