4 #include "run-command.h"
10 #include "string-list.h"
11 #include "thread-utils.h"
18 struct child_process
*helper
;
26 no_disconnect_req
: 1;
29 /* These go from remote name (as in "list") to private name */
30 struct refspec
*refspecs
;
32 /* Transport options for fetch-pack/send-pack (should one of
35 struct git_transport_options transport_options
;
38 static void sendline(struct helper_data
*helper
, struct strbuf
*buffer
)
41 fprintf(stderr
, "Debug: Remote helper: -> %s", buffer
->buf
);
42 if (write_in_full(helper
->helper
->in
, buffer
->buf
, buffer
->len
)
44 die_errno("Full write to remote helper failed");
47 static int recvline_fh(FILE *helper
, struct strbuf
*buffer
)
51 fprintf(stderr
, "Debug: Remote helper: Waiting...\n");
52 if (strbuf_getline(buffer
, helper
, '\n') == EOF
) {
54 fprintf(stderr
, "Debug: Remote helper quit.\n");
59 fprintf(stderr
, "Debug: Remote helper: <- %s\n", buffer
->buf
);
63 static int recvline(struct helper_data
*helper
, struct strbuf
*buffer
)
65 return recvline_fh(helper
->out
, buffer
);
68 static void xchgline(struct helper_data
*helper
, struct strbuf
*buffer
)
70 sendline(helper
, buffer
);
71 recvline(helper
, buffer
);
74 static void write_constant(int fd
, const char *str
)
77 fprintf(stderr
, "Debug: Remote helper: -> %s", str
);
78 if (write_in_full(fd
, str
, strlen(str
)) != strlen(str
))
79 die_errno("Full write to remote helper failed");
82 static const char *remove_ext_force(const char *url
)
85 const char *colon
= strchr(url
, ':');
86 if (colon
&& colon
[1] == ':')
92 static void do_take_over(struct transport
*transport
)
94 struct helper_data
*data
;
95 data
= (struct helper_data
*)transport
->data
;
96 transport_take_over(transport
, data
->helper
);
101 static struct child_process
*get_helper(struct transport
*transport
)
103 struct helper_data
*data
= transport
->data
;
104 struct strbuf buf
= STRBUF_INIT
;
105 struct child_process
*helper
;
106 const char **refspecs
= NULL
;
108 int refspec_alloc
= 0;
111 char git_dir_buf
[sizeof(GIT_DIR_ENVIRONMENT
) + PATH_MAX
+ 1];
112 const char *helper_env
[] = {
121 helper
= xcalloc(1, sizeof(*helper
));
125 helper
->argv
= xcalloc(4, sizeof(*helper
->argv
));
126 strbuf_addf(&buf
, "git-remote-%s", data
->name
);
127 helper
->argv
[0] = strbuf_detach(&buf
, NULL
);
128 helper
->argv
[1] = transport
->remote
->name
;
129 helper
->argv
[2] = remove_ext_force(transport
->url
);
131 helper
->silent_exec_failure
= 1;
133 snprintf(git_dir_buf
, sizeof(git_dir_buf
), "%s=%s", GIT_DIR_ENVIRONMENT
, get_git_dir());
134 helper
->env
= helper_env
;
136 code
= start_command(helper
);
137 if (code
< 0 && errno
== ENOENT
)
138 die("Unable to find remote helper for '%s'", data
->name
);
142 data
->helper
= helper
;
143 data
->no_disconnect_req
= 0;
146 * Open the output as FILE* so strbuf_getline() can be used.
147 * Do this with duped fd because fclose() will close the fd,
148 * and stuff like taking over will require the fd to remain.
150 duped
= dup(helper
->out
);
152 die_errno("Can't dup helper output fd");
153 data
->out
= xfdopen(duped
, "r");
155 write_constant(helper
->in
, "capabilities\n");
160 recvline(data
, &buf
);
165 if (*buf
.buf
== '*') {
166 capname
= buf
.buf
+ 1;
172 fprintf(stderr
, "Debug: Got cap %s\n", capname
);
173 if (!strcmp(capname
, "fetch"))
175 else if (!strcmp(capname
, "option"))
177 else if (!strcmp(capname
, "push"))
179 else if (!strcmp(capname
, "import"))
181 else if (!strcmp(capname
, "export"))
183 else if (!data
->refspecs
&& !prefixcmp(capname
, "refspec ")) {
187 refspecs
[refspec_nr
++] = xstrdup(capname
+ strlen("refspec "));
188 } else if (!strcmp(capname
, "connect")) {
190 } else if (!prefixcmp(capname
, "export-marks ")) {
191 struct strbuf arg
= STRBUF_INIT
;
192 strbuf_addstr(&arg
, "--export-marks=");
193 strbuf_addstr(&arg
, capname
+ strlen("export-marks "));
194 data
->export_marks
= strbuf_detach(&arg
, NULL
);
195 } else if (!prefixcmp(capname
, "import-marks")) {
196 struct strbuf arg
= STRBUF_INIT
;
197 strbuf_addstr(&arg
, "--import-marks=");
198 strbuf_addstr(&arg
, capname
+ strlen("import-marks "));
199 data
->import_marks
= strbuf_detach(&arg
, NULL
);
200 } else if (mandatory
) {
201 die("Unknown mandatory capability %s. This remote "
202 "helper probably needs newer version of Git.",
208 data
->refspec_nr
= refspec_nr
;
209 data
->refspecs
= parse_fetch_refspec(refspec_nr
, refspecs
);
210 for (i
= 0; i
< refspec_nr
; i
++) {
211 free((char *)refspecs
[i
]);
215 strbuf_release(&buf
);
217 fprintf(stderr
, "Debug: Capabilities complete.\n");
221 static int disconnect_helper(struct transport
*transport
)
223 struct helper_data
*data
= transport
->data
;
228 fprintf(stderr
, "Debug: Disconnecting.\n");
229 if (!data
->no_disconnect_req
) {
231 * Ignore write errors; there's nothing we can do,
232 * since we're about to close the pipe anyway. And the
233 * most likely error is EPIPE due to the helper dying
234 * to report an error itself.
236 sigchain_push(SIGPIPE
, SIG_IGN
);
237 xwrite(data
->helper
->in
, "\n", 1);
238 sigchain_pop(SIGPIPE
);
240 close(data
->helper
->in
);
241 close(data
->helper
->out
);
243 res
= finish_command(data
->helper
);
244 free((char *)data
->helper
->argv
[0]);
245 free(data
->helper
->argv
);
252 static const char *unsupported_options
[] = {
253 TRANS_OPT_UPLOADPACK
,
254 TRANS_OPT_RECEIVEPACK
,
258 static const char *boolean_options
[] = {
264 static int set_helper_option(struct transport
*transport
,
265 const char *name
, const char *value
)
267 struct helper_data
*data
= transport
->data
;
268 struct strbuf buf
= STRBUF_INIT
;
269 int i
, ret
, is_bool
= 0;
271 get_helper(transport
);
276 for (i
= 0; i
< ARRAY_SIZE(unsupported_options
); i
++) {
277 if (!strcmp(name
, unsupported_options
[i
]))
281 for (i
= 0; i
< ARRAY_SIZE(boolean_options
); i
++) {
282 if (!strcmp(name
, boolean_options
[i
])) {
288 strbuf_addf(&buf
, "option %s ", name
);
290 strbuf_addstr(&buf
, value
? "true" : "false");
292 quote_c_style(value
, &buf
, NULL
, 0);
293 strbuf_addch(&buf
, '\n');
295 xchgline(data
, &buf
);
297 if (!strcmp(buf
.buf
, "ok"))
299 else if (!prefixcmp(buf
.buf
, "error")) {
301 } else if (!strcmp(buf
.buf
, "unsupported"))
304 warning("%s unexpectedly said: '%s'", data
->name
, buf
.buf
);
307 strbuf_release(&buf
);
311 static void standard_options(struct transport
*t
)
317 set_helper_option(t
, "progress", t
->progress
? "true" : "false");
319 n
= snprintf(buf
, sizeof(buf
), "%d", v
+ 1);
320 if (n
>= sizeof(buf
))
321 die("impossibly large verbosity value");
322 set_helper_option(t
, "verbosity", buf
);
325 static int release_helper(struct transport
*transport
)
328 struct helper_data
*data
= transport
->data
;
329 free_refspec(data
->refspec_nr
, data
->refspecs
);
330 data
->refspecs
= NULL
;
331 res
= disconnect_helper(transport
);
332 free(transport
->data
);
336 static int fetch_with_fetch(struct transport
*transport
,
337 int nr_heads
, struct ref
**to_fetch
)
339 struct helper_data
*data
= transport
->data
;
341 struct strbuf buf
= STRBUF_INIT
;
343 standard_options(transport
);
345 for (i
= 0; i
< nr_heads
; i
++) {
346 const struct ref
*posn
= to_fetch
[i
];
347 if (posn
->status
& REF_STATUS_UPTODATE
)
350 strbuf_addf(&buf
, "fetch %s %s\n",
351 sha1_to_hex(posn
->old_sha1
), posn
->name
);
354 strbuf_addch(&buf
, '\n');
355 sendline(data
, &buf
);
358 recvline(data
, &buf
);
360 if (!prefixcmp(buf
.buf
, "lock ")) {
361 const char *name
= buf
.buf
+ 5;
362 if (transport
->pack_lockfile
)
363 warning("%s also locked %s", data
->name
, name
);
365 transport
->pack_lockfile
= xstrdup(name
);
370 warning("%s unexpectedly said: '%s'", data
->name
, buf
.buf
);
372 strbuf_release(&buf
);
376 static int get_importer(struct transport
*transport
, struct child_process
*fastimport
)
378 struct child_process
*helper
= get_helper(transport
);
379 memset(fastimport
, 0, sizeof(*fastimport
));
380 fastimport
->in
= helper
->out
;
381 fastimport
->argv
= xcalloc(5, sizeof(*fastimport
->argv
));
382 fastimport
->argv
[0] = "fast-import";
383 fastimport
->argv
[1] = "--quiet";
385 fastimport
->git_cmd
= 1;
386 return start_command(fastimport
);
389 static int get_exporter(struct transport
*transport
,
390 struct child_process
*fastexport
,
391 struct string_list
*revlist_args
)
393 struct helper_data
*data
= transport
->data
;
394 struct child_process
*helper
= get_helper(transport
);
396 memset(fastexport
, 0, sizeof(*fastexport
));
398 /* we need to duplicate helper->in because we want to use it after
399 * fastexport is done with it. */
400 fastexport
->out
= dup(helper
->in
);
401 fastexport
->argv
= xcalloc(6 + revlist_args
->nr
, sizeof(*fastexport
->argv
));
402 fastexport
->argv
[argc
++] = "fast-export";
403 fastexport
->argv
[argc
++] = "--use-done-feature";
404 if (data
->export_marks
)
405 fastexport
->argv
[argc
++] = data
->export_marks
;
406 if (data
->import_marks
)
407 fastexport
->argv
[argc
++] = data
->import_marks
;
409 for (i
= 0; i
< revlist_args
->nr
; i
++)
410 fastexport
->argv
[argc
++] = revlist_args
->items
[i
].string
;
412 fastexport
->argv
[argc
++] = "--";
414 fastexport
->git_cmd
= 1;
415 return start_command(fastexport
);
418 static void check_helper_status(struct helper_data
*data
)
422 pid
= waitpid(data
->helper
->pid
, &status
, WNOHANG
);
424 die("Could not retrieve status of remote helper '%s'",
426 if (pid
> 0 && WIFEXITED(status
))
427 die("Remote helper '%s' died with %d",
428 data
->name
, WEXITSTATUS(status
));
431 static int fetch_with_import(struct transport
*transport
,
432 int nr_heads
, struct ref
**to_fetch
)
434 struct child_process fastimport
;
435 struct helper_data
*data
= transport
->data
;
438 struct strbuf buf
= STRBUF_INIT
;
440 get_helper(transport
);
442 if (get_importer(transport
, &fastimport
))
443 die("Couldn't run fast-import");
445 for (i
= 0; i
< nr_heads
; i
++) {
447 if (posn
->status
& REF_STATUS_UPTODATE
)
450 strbuf_addf(&buf
, "import %s\n", posn
->name
);
451 sendline(data
, &buf
);
455 write_constant(data
->helper
->in
, "\n");
457 if (finish_command(&fastimport
))
458 die("Error while running fast-import");
459 check_helper_status(data
);
461 free(fastimport
.argv
);
462 fastimport
.argv
= NULL
;
464 for (i
= 0; i
< nr_heads
; i
++) {
467 if (posn
->status
& REF_STATUS_UPTODATE
)
470 private = apply_refspecs(data
->refspecs
, data
->refspec_nr
, posn
->name
);
472 private = xstrdup(posn
->name
);
474 read_ref(private, posn
->old_sha1
);
478 strbuf_release(&buf
);
482 static int process_connect_service(struct transport
*transport
,
483 const char *name
, const char *exec
)
485 struct helper_data
*data
= transport
->data
;
486 struct strbuf cmdbuf
= STRBUF_INIT
;
487 struct child_process
*helper
;
488 int r
, duped
, ret
= 0;
491 helper
= get_helper(transport
);
494 * Yes, dup the pipe another time, as we need unbuffered version
495 * of input pipe as FILE*. fclose() closes the underlying fd and
496 * stream buffering only can be changed before first I/O operation
499 duped
= dup(helper
->out
);
501 die_errno("Can't dup helper output fd");
502 input
= xfdopen(duped
, "r");
503 setvbuf(input
, NULL
, _IONBF
, 0);
506 * Handle --upload-pack and friends. This is fire and forget...
507 * just warn if it fails.
509 if (strcmp(name
, exec
)) {
510 r
= set_helper_option(transport
, "servpath", exec
);
512 warning("Setting remote service path not supported by protocol.");
514 warning("Invalid remote service path.");
518 strbuf_addf(&cmdbuf
, "connect %s\n", name
);
522 sendline(data
, &cmdbuf
);
523 recvline_fh(input
, &cmdbuf
);
524 if (!strcmp(cmdbuf
.buf
, "")) {
525 data
->no_disconnect_req
= 1;
527 fprintf(stderr
, "Debug: Smart transport connection "
530 } else if (!strcmp(cmdbuf
.buf
, "fallback")) {
532 fprintf(stderr
, "Debug: Falling back to dumb "
535 die("Unknown response to connect: %s",
543 static int process_connect(struct transport
*transport
,
546 struct helper_data
*data
= transport
->data
;
550 name
= for_push
? "git-receive-pack" : "git-upload-pack";
552 exec
= data
->transport_options
.receivepack
;
554 exec
= data
->transport_options
.uploadpack
;
556 return process_connect_service(transport
, name
, exec
);
559 static int connect_helper(struct transport
*transport
, const char *name
,
560 const char *exec
, int fd
[2])
562 struct helper_data
*data
= transport
->data
;
564 /* Get_helper so connect is inited. */
565 get_helper(transport
);
567 die("Operation not supported by protocol.");
569 if (!process_connect_service(transport
, name
, exec
))
570 die("Can't connect to subservice %s.", name
);
572 fd
[0] = data
->helper
->out
;
573 fd
[1] = data
->helper
->in
;
577 static int fetch(struct transport
*transport
,
578 int nr_heads
, struct ref
**to_fetch
)
580 struct helper_data
*data
= transport
->data
;
583 if (process_connect(transport
, 0)) {
584 do_take_over(transport
);
585 return transport
->fetch(transport
, nr_heads
, to_fetch
);
589 for (i
= 0; i
< nr_heads
; i
++)
590 if (!(to_fetch
[i
]->status
& REF_STATUS_UPTODATE
))
597 return fetch_with_fetch(transport
, nr_heads
, to_fetch
);
600 return fetch_with_import(transport
, nr_heads
, to_fetch
);
605 static void push_update_ref_status(struct strbuf
*buf
,
607 struct ref
*remote_refs
)
612 if (!prefixcmp(buf
->buf
, "ok ")) {
613 status
= REF_STATUS_OK
;
614 refname
= buf
->buf
+ 3;
615 } else if (!prefixcmp(buf
->buf
, "error ")) {
616 status
= REF_STATUS_REMOTE_REJECT
;
617 refname
= buf
->buf
+ 6;
619 die("expected ok/error, helper said '%s'", buf
->buf
);
621 msg
= strchr(refname
, ' ');
623 struct strbuf msg_buf
= STRBUF_INIT
;
627 if (!unquote_c_style(&msg_buf
, msg
, &end
))
628 msg
= strbuf_detach(&msg_buf
, NULL
);
631 strbuf_release(&msg_buf
);
633 if (!strcmp(msg
, "no match")) {
634 status
= REF_STATUS_NONE
;
638 else if (!strcmp(msg
, "up to date")) {
639 status
= REF_STATUS_UPTODATE
;
643 else if (!strcmp(msg
, "non-fast forward")) {
644 status
= REF_STATUS_REJECT_NONFASTFORWARD
;
651 *ref
= find_ref_by_name(*ref
, refname
);
653 *ref
= find_ref_by_name(remote_refs
, refname
);
655 warning("helper reported unexpected status of %s", refname
);
659 if ((*ref
)->status
!= REF_STATUS_NONE
) {
661 * Earlier, the ref was marked not to be pushed, so ignore the ref
662 * status reported by the remote helper if the latter is 'no match'.
664 if (status
== REF_STATUS_NONE
)
668 (*ref
)->status
= status
;
669 (*ref
)->remote_status
= msg
;
672 static void push_update_refs_status(struct helper_data
*data
,
673 struct ref
*remote_refs
)
675 struct strbuf buf
= STRBUF_INIT
;
676 struct ref
*ref
= remote_refs
;
678 recvline(data
, &buf
);
682 push_update_ref_status(&buf
, &ref
, remote_refs
);
684 strbuf_release(&buf
);
687 static int push_refs_with_push(struct transport
*transport
,
688 struct ref
*remote_refs
, int flags
)
690 int force_all
= flags
& TRANSPORT_PUSH_FORCE
;
691 int mirror
= flags
& TRANSPORT_PUSH_MIRROR
;
692 struct helper_data
*data
= transport
->data
;
693 struct strbuf buf
= STRBUF_INIT
;
696 get_helper(transport
);
700 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
701 if (!ref
->peer_ref
&& !mirror
)
704 /* Check for statuses set by set_ref_status_for_push() */
705 switch (ref
->status
) {
706 case REF_STATUS_REJECT_NONFASTFORWARD
:
707 case REF_STATUS_UPTODATE
:
716 strbuf_addstr(&buf
, "push ");
717 if (!ref
->deletion
) {
719 strbuf_addch(&buf
, '+');
721 strbuf_addstr(&buf
, ref
->peer_ref
->name
);
723 strbuf_addstr(&buf
, sha1_to_hex(ref
->new_sha1
));
725 strbuf_addch(&buf
, ':');
726 strbuf_addstr(&buf
, ref
->name
);
727 strbuf_addch(&buf
, '\n');
732 standard_options(transport
);
734 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
735 if (set_helper_option(transport
, "dry-run", "true") != 0)
736 die("helper %s does not support dry-run", data
->name
);
739 strbuf_addch(&buf
, '\n');
740 sendline(data
, &buf
);
741 strbuf_release(&buf
);
743 push_update_refs_status(data
, remote_refs
);
747 static int push_refs_with_export(struct transport
*transport
,
748 struct ref
*remote_refs
, int flags
)
751 struct child_process
*helper
, exporter
;
752 struct helper_data
*data
= transport
->data
;
753 struct string_list revlist_args
= STRING_LIST_INIT_NODUP
;
754 struct strbuf buf
= STRBUF_INIT
;
756 helper
= get_helper(transport
);
758 write_constant(helper
->in
, "export\n");
762 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
764 unsigned char sha1
[20];
768 private = apply_refspecs(data
->refspecs
, data
->refspec_nr
, ref
->name
);
769 if (private && !get_sha1(private, sha1
)) {
770 strbuf_addf(&buf
, "^%s", private);
771 string_list_append(&revlist_args
, strbuf_detach(&buf
, NULL
));
776 die("remote-helpers do not support ref deletion");
780 string_list_append(&revlist_args
, ref
->peer_ref
->name
);
784 if (get_exporter(transport
, &exporter
, &revlist_args
))
785 die("Couldn't run fast-export");
787 if (finish_command(&exporter
))
788 die("Error while running fast-export");
789 check_helper_status(data
);
790 push_update_refs_status(data
, remote_refs
);
794 static int push_refs(struct transport
*transport
,
795 struct ref
*remote_refs
, int flags
)
797 struct helper_data
*data
= transport
->data
;
799 if (process_connect(transport
, 1)) {
800 do_take_over(transport
);
801 return transport
->push_refs(transport
, remote_refs
, flags
);
805 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
806 "Perhaps you should specify a branch such as 'master'.\n");
811 return push_refs_with_push(transport
, remote_refs
, flags
);
814 return push_refs_with_export(transport
, remote_refs
, flags
);
820 static int has_attribute(const char *attrs
, const char *attr
) {
827 const char *space
= strchrnul(attrs
, ' ');
828 if (len
== space
- attrs
&& !strncmp(attrs
, attr
, len
))
836 static struct ref
*get_refs_list(struct transport
*transport
, int for_push
)
838 struct helper_data
*data
= transport
->data
;
839 struct child_process
*helper
;
840 struct ref
*ret
= NULL
;
841 struct ref
**tail
= &ret
;
843 struct strbuf buf
= STRBUF_INIT
;
845 helper
= get_helper(transport
);
847 if (process_connect(transport
, for_push
)) {
848 do_take_over(transport
);
849 return transport
->get_refs_list(transport
, for_push
);
852 if (data
->push
&& for_push
)
853 write_str_in_full(helper
->in
, "list for-push\n");
855 write_str_in_full(helper
->in
, "list\n");
859 recvline(data
, &buf
);
864 eov
= strchr(buf
.buf
, ' ');
866 die("Malformed response in ref list: %s", buf
.buf
);
867 eon
= strchr(eov
+ 1, ' ');
871 *tail
= alloc_ref(eov
+ 1);
872 if (buf
.buf
[0] == '@')
873 (*tail
)->symref
= xstrdup(buf
.buf
+ 1);
874 else if (buf
.buf
[0] != '?')
875 get_sha1_hex(buf
.buf
, (*tail
)->old_sha1
);
877 if (has_attribute(eon
+ 1, "unchanged")) {
878 (*tail
)->status
|= REF_STATUS_UPTODATE
;
879 read_ref((*tail
)->name
, (*tail
)->old_sha1
);
882 tail
= &((*tail
)->next
);
885 fprintf(stderr
, "Debug: Read ref listing.\n");
886 strbuf_release(&buf
);
888 for (posn
= ret
; posn
; posn
= posn
->next
)
889 resolve_remote_symref(posn
, ret
);
894 int transport_helper_init(struct transport
*transport
, const char *name
)
896 struct helper_data
*data
= xcalloc(sizeof(*data
), 1);
899 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
902 transport
->data
= data
;
903 transport
->set_option
= set_helper_option
;
904 transport
->get_refs_list
= get_refs_list
;
905 transport
->fetch
= fetch
;
906 transport
->push_refs
= push_refs
;
907 transport
->disconnect
= release_helper
;
908 transport
->connect
= connect_helper
;
909 transport
->smart_options
= &(data
->transport_options
);
914 * Linux pipes can buffer 65536 bytes at once (and most platforms can
915 * buffer less), so attempt reads and writes with up to that size.
917 #define BUFFERSIZE 65536
918 /* This should be enough to hold debugging message. */
919 #define PBUFFERSIZE 8192
921 /* Print bidirectional transfer loop debug message. */
922 static void transfer_debug(const char *fmt
, ...)
925 char msgbuf
[PBUFFERSIZE
];
926 static int debug_enabled
= -1;
928 if (debug_enabled
< 0)
929 debug_enabled
= getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
934 vsnprintf(msgbuf
, PBUFFERSIZE
, fmt
, args
);
936 fprintf(stderr
, "Transfer loop debugging: %s\n", msgbuf
);
939 /* Stream state: More data may be coming in this direction. */
940 #define SSTATE_TRANSFERING 0
942 * Stream state: No more data coming in this direction, flushing rest of
945 #define SSTATE_FLUSHING 1
946 /* Stream state: Transfer in this direction finished. */
947 #define SSTATE_FINISHED 2
949 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
950 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
951 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
953 /* Unidirectional transfer. */
954 struct unidirectional_transfer
{
959 /* Is source socket? */
961 /* Is destination socket? */
963 /* Transfer state (TRANSFERING/FLUSHING/FINISHED) */
966 char buf
[BUFFERSIZE
];
969 /* Name of source. */
970 const char *src_name
;
971 /* Name of destination. */
972 const char *dest_name
;
975 /* Closes the target (for writing) if transfer has finished. */
976 static void udt_close_if_finished(struct unidirectional_transfer
*t
)
978 if (STATE_NEEDS_CLOSING(t
->state
) && !t
->bufuse
) {
979 t
->state
= SSTATE_FINISHED
;
981 shutdown(t
->dest
, SHUT_WR
);
984 transfer_debug("Closed %s.", t
->dest_name
);
989 * Tries to read read data from source into buffer. If buffer is full,
990 * no data is read. Returns 0 on success, -1 on error.
992 static int udt_do_read(struct unidirectional_transfer
*t
)
996 if (t
->bufuse
== BUFFERSIZE
)
997 return 0; /* No space for more. */
999 transfer_debug("%s is readable", t
->src_name
);
1000 bytes
= read(t
->src
, t
->buf
+ t
->bufuse
, BUFFERSIZE
- t
->bufuse
);
1001 if (bytes
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
&&
1003 error("read(%s) failed: %s", t
->src_name
, strerror(errno
));
1005 } else if (bytes
== 0) {
1006 transfer_debug("%s EOF (with %i bytes in buffer)",
1007 t
->src_name
, t
->bufuse
);
1008 t
->state
= SSTATE_FLUSHING
;
1009 } else if (bytes
> 0) {
1011 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1012 (int)bytes
, t
->src_name
, (int)t
->bufuse
);
1017 /* Tries to write data from buffer into destination. If buffer is empty,
1018 * no data is written. Returns 0 on success, -1 on error.
1020 static int udt_do_write(struct unidirectional_transfer
*t
)
1025 return 0; /* Nothing to write. */
1027 transfer_debug("%s is writable", t
->dest_name
);
1028 bytes
= write(t
->dest
, t
->buf
, t
->bufuse
);
1029 if (bytes
< 0 && errno
!= EWOULDBLOCK
&& errno
!= EAGAIN
&&
1031 error("write(%s) failed: %s", t
->dest_name
, strerror(errno
));
1033 } else if (bytes
> 0) {
1036 memmove(t
->buf
, t
->buf
+ bytes
, t
->bufuse
);
1037 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1038 (int)bytes
, t
->dest_name
, (int)t
->bufuse
);
1044 /* State of bidirectional transfer loop. */
1045 struct bidirectional_transfer_state
{
1046 /* Direction from program to git. */
1047 struct unidirectional_transfer ptg
;
1048 /* Direction from git to program. */
1049 struct unidirectional_transfer gtp
;
1052 static void *udt_copy_task_routine(void *udt
)
1054 struct unidirectional_transfer
*t
= (struct unidirectional_transfer
*)udt
;
1055 while (t
->state
!= SSTATE_FINISHED
) {
1056 if (STATE_NEEDS_READING(t
->state
))
1059 if (STATE_NEEDS_WRITING(t
->state
))
1060 if (udt_do_write(t
))
1062 if (STATE_NEEDS_CLOSING(t
->state
))
1063 udt_close_if_finished(t
);
1065 return udt
; /* Just some non-NULL value. */
1071 * Join thread, with apporiate errors on failure. Name is name for the
1072 * thread (for error messages). Returns 0 on success, 1 on failure.
1074 static int tloop_join(pthread_t thread
, const char *name
)
1078 err
= pthread_join(thread
, &tret
);
1080 error("%s thread failed", name
);
1084 error("%s thread failed to join: %s", name
, strerror(err
));
1091 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1094 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1096 pthread_t gtp_thread
;
1097 pthread_t ptg_thread
;
1100 err
= pthread_create(>p_thread
, NULL
, udt_copy_task_routine
,
1103 die("Can't start thread for copying data: %s", strerror(err
));
1104 err
= pthread_create(&ptg_thread
, NULL
, udt_copy_task_routine
,
1107 die("Can't start thread for copying data: %s", strerror(err
));
1109 ret
|= tloop_join(gtp_thread
, "Git to program copy");
1110 ret
|= tloop_join(ptg_thread
, "Program to git copy");
1115 /* Close the source and target (for writing) for transfer. */
1116 static void udt_kill_transfer(struct unidirectional_transfer
*t
)
1118 t
->state
= SSTATE_FINISHED
;
1120 * Socket read end left open isn't a disaster if nobody
1121 * attempts to read from it (mingw compat headers do not
1124 * We can't fully close the socket since otherwise gtp
1125 * task would first close the socket it sends data to
1126 * while closing the ptg file descriptors.
1128 if (!t
->src_is_sock
)
1130 if (t
->dest_is_sock
)
1131 shutdown(t
->dest
, SHUT_WR
);
1137 * Join process, with apporiate errors on failure. Name is name for the
1138 * process (for error messages). Returns 0 on success, 1 on failure.
1140 static int tloop_join(pid_t pid
, const char *name
)
1143 if (waitpid(pid
, &tret
, 0) < 0) {
1144 error("%s process failed to wait: %s", name
, strerror(errno
));
1147 if (!WIFEXITED(tret
) || WEXITSTATUS(tret
)) {
1148 error("%s process failed", name
);
1155 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1158 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1163 /* Fork thread #1: git to program. */
1166 die_errno("Can't start thread for copying data");
1167 else if (pid1
== 0) {
1168 udt_kill_transfer(&s
->ptg
);
1169 exit(udt_copy_task_routine(&s
->gtp
) ? 0 : 1);
1172 /* Fork thread #2: program to git. */
1175 die_errno("Can't start thread for copying data");
1176 else if (pid2
== 0) {
1177 udt_kill_transfer(&s
->gtp
);
1178 exit(udt_copy_task_routine(&s
->ptg
) ? 0 : 1);
1182 * Close both streams in parent as to not interfere with
1183 * end of file detection and wait for both tasks to finish.
1185 udt_kill_transfer(&s
->gtp
);
1186 udt_kill_transfer(&s
->ptg
);
1187 ret
|= tloop_join(pid1
, "Git to program copy");
1188 ret
|= tloop_join(pid2
, "Program to git copy");
1194 * Copies data from stdin to output and from input to stdout simultaneously.
1195 * Additionally filtering through given filter. If filter is NULL, uses
1198 int bidirectional_transfer_loop(int input
, int output
)
1200 struct bidirectional_transfer_state state
;
1202 /* Fill the state fields. */
1203 state
.ptg
.src
= input
;
1205 state
.ptg
.src_is_sock
= (input
== output
);
1206 state
.ptg
.dest_is_sock
= 0;
1207 state
.ptg
.state
= SSTATE_TRANSFERING
;
1208 state
.ptg
.bufuse
= 0;
1209 state
.ptg
.src_name
= "remote input";
1210 state
.ptg
.dest_name
= "stdout";
1213 state
.gtp
.dest
= output
;
1214 state
.gtp
.src_is_sock
= 0;
1215 state
.gtp
.dest_is_sock
= (input
== output
);
1216 state
.gtp
.state
= SSTATE_TRANSFERING
;
1217 state
.gtp
.bufuse
= 0;
1218 state
.gtp
.src_name
= "stdin";
1219 state
.gtp
.dest_name
= "remote output";
1221 return tloop_spawnwait_tasks(&state
);