1 #include "git-compat-util.h"
4 #include "run-command.h"
6 #include "environment.h"
9 #include "object-name.h"
10 #include "repository.h"
12 #include "string-list.h"
13 #include "thread-utils.h"
18 #include "transport-internal.h"
25 struct child_process
*helper
;
34 stateless_connect
: 1,
36 check_connectivity
: 1,
37 no_disconnect_req
: 1,
38 no_private_update
: 1,
42 * As an optimization, the transport code may invoke fetch before
43 * get_refs_list. If this happens, and if the transport helper doesn't
44 * support connect or stateless_connect, we need to invoke
45 * get_refs_list ourselves if we haven't already done so. Keep track of
46 * whether we have invoked get_refs_list.
48 unsigned get_refs_list_called
: 1;
52 /* These go from remote name (as in "list") to private name */
54 /* Transport options for fetch-pack/send-pack (should one of
57 struct git_transport_options transport_options
;
60 static void sendline(struct helper_data
*helper
, struct strbuf
*buffer
)
63 fprintf(stderr
, "Debug: Remote helper: -> %s", buffer
->buf
);
64 if (write_in_full(helper
->helper
->in
, buffer
->buf
, buffer
->len
) < 0)
65 die_errno(_("full write to remote helper failed"));
68 static int recvline_fh(FILE *helper
, struct strbuf
*buffer
)
72 fprintf(stderr
, "Debug: Remote helper: Waiting...\n");
73 if (strbuf_getline(buffer
, helper
) == EOF
) {
75 fprintf(stderr
, "Debug: Remote helper quit.\n");
80 fprintf(stderr
, "Debug: Remote helper: <- %s\n", buffer
->buf
);
84 static int recvline(struct helper_data
*helper
, struct strbuf
*buffer
)
86 return recvline_fh(helper
->out
, buffer
);
89 static void write_constant(int fd
, const char *str
)
92 fprintf(stderr
, "Debug: Remote helper: -> %s", str
);
93 if (write_in_full(fd
, str
, strlen(str
)) < 0)
94 die_errno(_("full write to remote helper failed"));
97 static const char *remove_ext_force(const char *url
)
100 const char *colon
= strchr(url
, ':');
101 if (colon
&& colon
[1] == ':')
107 static void do_take_over(struct transport
*transport
)
109 struct helper_data
*data
;
110 data
= (struct helper_data
*)transport
->data
;
111 transport_take_over(transport
, data
->helper
);
116 static void standard_options(struct transport
*t
);
118 static struct child_process
*get_helper(struct transport
*transport
)
120 struct helper_data
*data
= transport
->data
;
121 struct strbuf buf
= STRBUF_INIT
;
122 struct child_process
*helper
;
129 helper
= xmalloc(sizeof(*helper
));
130 child_process_init(helper
);
134 strvec_pushf(&helper
->args
, "remote-%s", data
->name
);
135 strvec_push(&helper
->args
, transport
->remote
->name
);
136 strvec_push(&helper
->args
, remove_ext_force(transport
->url
));
138 helper
->silent_exec_failure
= 1;
141 strvec_pushf(&helper
->env
, "%s=%s",
142 GIT_DIR_ENVIRONMENT
, get_git_dir());
144 helper
->trace2_child_class
= helper
->args
.v
[0]; /* "remote-<name>" */
146 code
= start_command(helper
);
147 if (code
< 0 && errno
== ENOENT
)
148 die(_("unable to find remote helper for '%s'"), data
->name
);
152 data
->helper
= helper
;
153 data
->no_disconnect_req
= 0;
154 refspec_init(&data
->rs
, REFSPEC_FETCH
);
157 * Open the output as FILE* so strbuf_getline_*() family of
158 * functions can be used.
159 * Do this with duped fd because fclose() will close the fd,
160 * and stuff like taking over will require the fd to remain.
162 duped
= dup(helper
->out
);
164 die_errno(_("can't dup helper output fd"));
165 data
->out
= xfdopen(duped
, "r");
167 write_constant(helper
->in
, "capabilities\n");
170 const char *capname
, *arg
;
172 if (recvline(data
, &buf
))
178 if (*buf
.buf
== '*') {
179 capname
= buf
.buf
+ 1;
185 fprintf(stderr
, "Debug: Got cap %s\n", capname
);
186 if (!strcmp(capname
, "fetch"))
188 else if (!strcmp(capname
, "option"))
190 else if (!strcmp(capname
, "push"))
192 else if (!strcmp(capname
, "import"))
194 else if (!strcmp(capname
, "bidi-import"))
195 data
->bidi_import
= 1;
196 else if (!strcmp(capname
, "export"))
198 else if (!strcmp(capname
, "check-connectivity"))
199 data
->check_connectivity
= 1;
200 else if (skip_prefix(capname
, "refspec ", &arg
)) {
201 refspec_append(&data
->rs
, arg
);
202 } else if (!strcmp(capname
, "connect")) {
204 } else if (!strcmp(capname
, "stateless-connect")) {
205 data
->stateless_connect
= 1;
206 } else if (!strcmp(capname
, "signed-tags")) {
207 data
->signed_tags
= 1;
208 } else if (skip_prefix(capname
, "export-marks ", &arg
)) {
209 data
->export_marks
= xstrdup(arg
);
210 } else if (skip_prefix(capname
, "import-marks ", &arg
)) {
211 data
->import_marks
= xstrdup(arg
);
212 } else if (starts_with(capname
, "no-private-update")) {
213 data
->no_private_update
= 1;
214 } else if (starts_with(capname
, "object-format")) {
215 data
->object_format
= 1;
216 } else if (mandatory
) {
217 die(_("unknown mandatory capability %s; this remote "
218 "helper probably needs newer version of Git"),
222 if (!data
->rs
.nr
&& (data
->import
|| data
->bidi_import
|| data
->export
)) {
223 warning(_("this remote helper should implement refspec capability"));
225 strbuf_release(&buf
);
227 fprintf(stderr
, "Debug: Capabilities complete.\n");
228 standard_options(transport
);
232 static int disconnect_helper(struct transport
*transport
)
234 struct helper_data
*data
= transport
->data
;
239 fprintf(stderr
, "Debug: Disconnecting.\n");
240 if (!data
->no_disconnect_req
) {
242 * Ignore write errors; there's nothing we can do,
243 * since we're about to close the pipe anyway. And the
244 * most likely error is EPIPE due to the helper dying
245 * to report an error itself.
247 sigchain_push(SIGPIPE
, SIG_IGN
);
248 xwrite(data
->helper
->in
, "\n", 1);
249 sigchain_pop(SIGPIPE
);
251 close(data
->helper
->in
);
252 close(data
->helper
->out
);
254 res
= finish_command(data
->helper
);
255 FREE_AND_NULL(data
->helper
);
260 static const char *unsupported_options
[] = {
261 TRANS_OPT_UPLOADPACK
,
262 TRANS_OPT_RECEIVEPACK
,
267 static const char *boolean_options
[] = {
270 TRANS_OPT_FOLLOWTAGS
,
271 TRANS_OPT_DEEPEN_RELATIVE
274 static int strbuf_set_helper_option(struct helper_data
*data
,
280 if (recvline(data
, buf
))
283 if (!strcmp(buf
->buf
, "ok"))
285 else if (starts_with(buf
->buf
, "error"))
287 else if (!strcmp(buf
->buf
, "unsupported"))
290 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
->buf
);
296 static int string_list_set_helper_option(struct helper_data
*data
,
298 struct string_list
*list
)
300 struct strbuf buf
= STRBUF_INIT
;
303 for (i
= 0; i
< list
->nr
; i
++) {
304 strbuf_addf(&buf
, "option %s ", name
);
305 quote_c_style(list
->items
[i
].string
, &buf
, NULL
, 0);
306 strbuf_addch(&buf
, '\n');
308 if ((ret
= strbuf_set_helper_option(data
, &buf
)))
312 strbuf_release(&buf
);
316 static int set_helper_option(struct transport
*transport
,
317 const char *name
, const char *value
)
319 struct helper_data
*data
= transport
->data
;
320 struct strbuf buf
= STRBUF_INIT
;
321 int i
, ret
, is_bool
= 0;
323 get_helper(transport
);
328 if (!strcmp(name
, "deepen-not"))
329 return string_list_set_helper_option(data
, name
,
330 (struct string_list
*)value
);
332 for (i
= 0; i
< ARRAY_SIZE(unsupported_options
); i
++) {
333 if (!strcmp(name
, unsupported_options
[i
]))
337 for (i
= 0; i
< ARRAY_SIZE(boolean_options
); i
++) {
338 if (!strcmp(name
, boolean_options
[i
])) {
344 strbuf_addf(&buf
, "option %s ", name
);
346 strbuf_addstr(&buf
, value
? "true" : "false");
348 quote_c_style(value
, &buf
, NULL
, 0);
349 strbuf_addch(&buf
, '\n');
351 ret
= strbuf_set_helper_option(data
, &buf
);
352 strbuf_release(&buf
);
356 static void standard_options(struct transport
*t
)
361 set_helper_option(t
, "progress", t
->progress
? "true" : "false");
363 xsnprintf(buf
, sizeof(buf
), "%d", v
+ 1);
364 set_helper_option(t
, "verbosity", buf
);
367 case TRANSPORT_FAMILY_ALL
:
369 * this is already the default,
370 * do not break old remote helpers by setting "all" here
373 case TRANSPORT_FAMILY_IPV4
:
374 set_helper_option(t
, "family", "ipv4");
376 case TRANSPORT_FAMILY_IPV6
:
377 set_helper_option(t
, "family", "ipv6");
382 static int release_helper(struct transport
*transport
)
385 struct helper_data
*data
= transport
->data
;
386 refspec_clear(&data
->rs
);
387 res
= disconnect_helper(transport
);
388 free(transport
->data
);
392 static int fetch_with_fetch(struct transport
*transport
,
393 int nr_heads
, struct ref
**to_fetch
)
395 struct helper_data
*data
= transport
->data
;
397 struct strbuf buf
= STRBUF_INIT
;
399 for (i
= 0; i
< nr_heads
; i
++) {
400 const struct ref
*posn
= to_fetch
[i
];
401 if (posn
->status
& REF_STATUS_UPTODATE
)
404 strbuf_addf(&buf
, "fetch %s %s\n",
405 oid_to_hex(&posn
->old_oid
),
406 posn
->symref
? posn
->symref
: posn
->name
);
409 strbuf_addch(&buf
, '\n');
410 sendline(data
, &buf
);
415 if (recvline(data
, &buf
))
418 if (skip_prefix(buf
.buf
, "lock ", &name
)) {
419 if (transport
->pack_lockfiles
.nr
)
420 warning(_("%s also locked %s"), data
->name
, name
);
422 string_list_append(&transport
->pack_lockfiles
,
425 else if (data
->check_connectivity
&&
426 data
->transport_options
.check_self_contained_and_connected
&&
427 !strcmp(buf
.buf
, "connectivity-ok"))
428 data
->transport_options
.self_contained_and_connected
= 1;
432 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
.buf
);
434 strbuf_release(&buf
);
438 static int get_importer(struct transport
*transport
, struct child_process
*fastimport
)
440 struct child_process
*helper
= get_helper(transport
);
441 struct helper_data
*data
= transport
->data
;
442 int cat_blob_fd
, code
;
443 child_process_init(fastimport
);
444 fastimport
->in
= xdup(helper
->out
);
445 strvec_push(&fastimport
->args
, "fast-import");
446 strvec_push(&fastimport
->args
, "--allow-unsafe-features");
447 strvec_push(&fastimport
->args
, debug
? "--stats" : "--quiet");
449 if (data
->bidi_import
) {
450 cat_blob_fd
= xdup(helper
->in
);
451 strvec_pushf(&fastimport
->args
, "--cat-blob-fd=%d", cat_blob_fd
);
453 fastimport
->git_cmd
= 1;
455 code
= start_command(fastimport
);
459 static int get_exporter(struct transport
*transport
,
460 struct child_process
*fastexport
,
461 struct string_list
*revlist_args
)
463 struct helper_data
*data
= transport
->data
;
464 struct child_process
*helper
= get_helper(transport
);
467 child_process_init(fastexport
);
469 /* we need to duplicate helper->in because we want to use it after
470 * fastexport is done with it. */
471 fastexport
->out
= dup(helper
->in
);
472 strvec_push(&fastexport
->args
, "fast-export");
473 strvec_push(&fastexport
->args
, "--use-done-feature");
474 strvec_push(&fastexport
->args
, data
->signed_tags
?
475 "--signed-tags=verbatim" : "--signed-tags=warn-strip");
476 if (data
->export_marks
)
477 strvec_pushf(&fastexport
->args
, "--export-marks=%s.tmp", data
->export_marks
);
478 if (data
->import_marks
)
479 strvec_pushf(&fastexport
->args
, "--import-marks=%s", data
->import_marks
);
481 for (i
= 0; i
< revlist_args
->nr
; i
++)
482 strvec_push(&fastexport
->args
, revlist_args
->items
[i
].string
);
484 fastexport
->git_cmd
= 1;
485 return start_command(fastexport
);
488 static int fetch_with_import(struct transport
*transport
,
489 int nr_heads
, struct ref
**to_fetch
)
491 struct child_process fastimport
;
492 struct helper_data
*data
= transport
->data
;
495 struct strbuf buf
= STRBUF_INIT
;
497 get_helper(transport
);
499 if (get_importer(transport
, &fastimport
))
500 die(_("couldn't run fast-import"));
502 for (i
= 0; i
< nr_heads
; i
++) {
504 if (posn
->status
& REF_STATUS_UPTODATE
)
507 strbuf_addf(&buf
, "import %s\n",
508 posn
->symref
? posn
->symref
: posn
->name
);
509 sendline(data
, &buf
);
513 write_constant(data
->helper
->in
, "\n");
515 * remote-helpers that advertise the bidi-import capability are required to
516 * buffer the complete batch of import commands until this newline before
517 * sending data to fast-import.
518 * These helpers read back data from fast-import on their stdin, which could
519 * be mixed with import commands, otherwise.
522 if (finish_command(&fastimport
))
523 die(_("error while running fast-import"));
526 * The fast-import stream of a remote helper that advertises
527 * the "refspec" capability writes to the refs named after the
528 * right hand side of the first refspec matching each ref we
531 * (If no "refspec" capability was specified, for historical
532 * reasons we default to the equivalent of *:*.)
534 * Store the result in to_fetch[i].old_sha1. Callers such
535 * as "git fetch" can use the value to write feedback to the
536 * terminal, populate FETCH_HEAD, and determine what new value
537 * should be written to peer_ref if the update is a
538 * fast-forward or this is a forced update.
540 for (i
= 0; i
< nr_heads
; i
++) {
541 char *private, *name
;
543 if (posn
->status
& REF_STATUS_UPTODATE
)
545 name
= posn
->symref
? posn
->symref
: posn
->name
;
547 private = apply_refspecs(&data
->rs
, name
);
549 private = xstrdup(name
);
551 if (read_ref(private, &posn
->old_oid
) < 0)
552 die(_("could not read ref %s"), private);
556 strbuf_release(&buf
);
560 static int run_connect(struct transport
*transport
, struct strbuf
*cmdbuf
)
562 struct helper_data
*data
= transport
->data
;
566 struct child_process
*helper
;
568 helper
= get_helper(transport
);
571 * Yes, dup the pipe another time, as we need unbuffered version
572 * of input pipe as FILE*. fclose() closes the underlying fd and
573 * stream buffering only can be changed before first I/O operation
576 duped
= dup(helper
->out
);
578 die_errno(_("can't dup helper output fd"));
579 input
= xfdopen(duped
, "r");
580 setvbuf(input
, NULL
, _IONBF
, 0);
582 sendline(data
, cmdbuf
);
583 if (recvline_fh(input
, cmdbuf
))
586 if (!strcmp(cmdbuf
->buf
, "")) {
587 data
->no_disconnect_req
= 1;
589 fprintf(stderr
, "Debug: Smart transport connection "
592 } else if (!strcmp(cmdbuf
->buf
, "fallback")) {
594 fprintf(stderr
, "Debug: Falling back to dumb "
597 die(_("unknown response to connect: %s"),
605 static int process_connect_service(struct transport
*transport
,
606 const char *name
, const char *exec
)
608 struct helper_data
*data
= transport
->data
;
609 struct strbuf cmdbuf
= STRBUF_INIT
;
613 * Handle --upload-pack and friends. This is fire and forget...
614 * just warn if it fails.
616 if (strcmp(name
, exec
)) {
617 int r
= set_helper_option(transport
, "servpath", exec
);
619 warning(_("setting remote service path not supported by protocol"));
621 warning(_("invalid remote service path"));
625 strbuf_addf(&cmdbuf
, "connect %s\n", name
);
626 ret
= run_connect(transport
, &cmdbuf
);
627 } else if (data
->stateless_connect
&&
628 (get_protocol_version_config() == protocol_v2
) &&
629 !strcmp("git-upload-pack", name
)) {
630 strbuf_addf(&cmdbuf
, "stateless-connect %s\n", name
);
631 ret
= run_connect(transport
, &cmdbuf
);
633 transport
->stateless_rpc
= 1;
636 strbuf_release(&cmdbuf
);
640 static int process_connect(struct transport
*transport
,
643 struct helper_data
*data
= transport
->data
;
647 name
= for_push
? "git-receive-pack" : "git-upload-pack";
649 exec
= data
->transport_options
.receivepack
;
651 exec
= data
->transport_options
.uploadpack
;
653 return process_connect_service(transport
, name
, exec
);
656 static int connect_helper(struct transport
*transport
, const char *name
,
657 const char *exec
, int fd
[2])
659 struct helper_data
*data
= transport
->data
;
661 /* Get_helper so connect is inited. */
662 get_helper(transport
);
664 die(_("operation not supported by protocol"));
666 if (!process_connect_service(transport
, name
, exec
))
667 die(_("can't connect to subservice %s"), name
);
669 fd
[0] = data
->helper
->out
;
670 fd
[1] = data
->helper
->in
;
674 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
677 static int fetch_refs(struct transport
*transport
,
678 int nr_heads
, struct ref
**to_fetch
)
680 struct helper_data
*data
= transport
->data
;
683 get_helper(transport
);
685 if (process_connect(transport
, 0)) {
686 do_take_over(transport
);
687 return transport
->vtable
->fetch_refs(transport
, nr_heads
, to_fetch
);
691 * If we reach here, then the server, the client, and/or the transport
692 * helper does not support protocol v2. --negotiate-only requires
695 if (data
->transport_options
.acked_commits
) {
696 warning(_("--negotiate-only requires protocol v2"));
700 if (!data
->get_refs_list_called
)
701 get_refs_list_using_list(transport
, 0);
704 for (i
= 0; i
< nr_heads
; i
++)
705 if (!(to_fetch
[i
]->status
& REF_STATUS_UPTODATE
))
711 if (data
->check_connectivity
&&
712 data
->transport_options
.check_self_contained_and_connected
)
713 set_helper_option(transport
, "check-connectivity", "true");
715 if (transport
->cloning
)
716 set_helper_option(transport
, "cloning", "true");
718 if (data
->transport_options
.update_shallow
)
719 set_helper_option(transport
, "update-shallow", "true");
721 if (data
->transport_options
.refetch
)
722 set_helper_option(transport
, "refetch", "true");
724 if (data
->transport_options
.filter_options
.choice
) {
725 const char *spec
= expand_list_objects_filter_spec(
726 &data
->transport_options
.filter_options
);
727 set_helper_option(transport
, "filter", spec
);
730 if (data
->transport_options
.negotiation_tips
)
731 warning("Ignoring --negotiation-tip because the protocol does not support it.");
734 return fetch_with_fetch(transport
, nr_heads
, to_fetch
);
737 return fetch_with_import(transport
, nr_heads
, to_fetch
);
742 struct push_update_ref_state
{
744 struct ref_push_report
*report
;
748 static int push_update_ref_status(struct strbuf
*buf
,
749 struct push_update_ref_state
*state
,
750 struct ref
*remote_refs
)
753 int status
, forced
= 0;
755 if (starts_with(buf
->buf
, "option ")) {
756 struct object_id old_oid
, new_oid
;
757 const char *key
, *val
;
760 if (!state
->hint
|| !(state
->report
|| state
->new_report
))
761 die(_("'option' without a matching 'ok/error' directive"));
762 if (state
->new_report
) {
763 if (!state
->hint
->report
) {
764 CALLOC_ARRAY(state
->hint
->report
, 1);
765 state
->report
= state
->hint
->report
;
767 state
->report
= state
->hint
->report
;
768 while (state
->report
->next
)
769 state
->report
= state
->report
->next
;
770 CALLOC_ARRAY(state
->report
->next
, 1);
771 state
->report
= state
->report
->next
;
773 state
->new_report
= 0;
776 p
= strchr(key
, ' ');
780 if (!strcmp(key
, "refname"))
781 state
->report
->ref_name
= xstrdup_or_null(val
);
782 else if (!strcmp(key
, "old-oid") && val
&&
783 !parse_oid_hex(val
, &old_oid
, &val
))
784 state
->report
->old_oid
= oiddup(&old_oid
);
785 else if (!strcmp(key
, "new-oid") && val
&&
786 !parse_oid_hex(val
, &new_oid
, &val
))
787 state
->report
->new_oid
= oiddup(&new_oid
);
788 else if (!strcmp(key
, "forced-update"))
789 state
->report
->forced_update
= 1;
790 /* Not update remote namespace again. */
794 state
->report
= NULL
;
795 state
->new_report
= 0;
797 if (starts_with(buf
->buf
, "ok ")) {
798 status
= REF_STATUS_OK
;
799 refname
= buf
->buf
+ 3;
800 } else if (starts_with(buf
->buf
, "error ")) {
801 status
= REF_STATUS_REMOTE_REJECT
;
802 refname
= buf
->buf
+ 6;
804 die(_("expected ok/error, helper said '%s'"), buf
->buf
);
806 msg
= strchr(refname
, ' ');
808 struct strbuf msg_buf
= STRBUF_INIT
;
812 if (!unquote_c_style(&msg_buf
, msg
, &end
))
813 msg
= strbuf_detach(&msg_buf
, NULL
);
816 strbuf_release(&msg_buf
);
818 if (!strcmp(msg
, "no match")) {
819 status
= REF_STATUS_NONE
;
822 else if (!strcmp(msg
, "up to date")) {
823 status
= REF_STATUS_UPTODATE
;
826 else if (!strcmp(msg
, "non-fast forward")) {
827 status
= REF_STATUS_REJECT_NONFASTFORWARD
;
830 else if (!strcmp(msg
, "already exists")) {
831 status
= REF_STATUS_REJECT_ALREADY_EXISTS
;
834 else if (!strcmp(msg
, "fetch first")) {
835 status
= REF_STATUS_REJECT_FETCH_FIRST
;
838 else if (!strcmp(msg
, "needs force")) {
839 status
= REF_STATUS_REJECT_NEEDS_FORCE
;
842 else if (!strcmp(msg
, "stale info")) {
843 status
= REF_STATUS_REJECT_STALE
;
846 else if (!strcmp(msg
, "remote ref updated since checkout")) {
847 status
= REF_STATUS_REJECT_REMOTE_UPDATED
;
850 else if (!strcmp(msg
, "forced update")) {
854 else if (!strcmp(msg
, "expecting report")) {
855 status
= REF_STATUS_EXPECTING_REPORT
;
861 state
->hint
= find_ref_by_name(state
->hint
, refname
);
863 state
->hint
= find_ref_by_name(remote_refs
, refname
);
865 warning(_("helper reported unexpected status of %s"), refname
);
869 if (state
->hint
->status
!= REF_STATUS_NONE
) {
871 * Earlier, the ref was marked not to be pushed, so ignore the ref
872 * status reported by the remote helper if the latter is 'no match'.
874 if (status
== REF_STATUS_NONE
)
878 if (status
== REF_STATUS_OK
)
879 state
->new_report
= 1;
880 state
->hint
->status
= status
;
881 state
->hint
->forced_update
|= forced
;
882 state
->hint
->remote_status
= msg
;
883 return !(status
== REF_STATUS_OK
);
886 static int push_update_refs_status(struct helper_data
*data
,
887 struct ref
*remote_refs
,
891 struct ref_push_report
*report
;
892 struct strbuf buf
= STRBUF_INIT
;
893 struct push_update_ref_state state
= { remote_refs
, NULL
, 0 };
896 if (recvline(data
, &buf
)) {
897 strbuf_release(&buf
);
902 push_update_ref_status(&buf
, &state
, remote_refs
);
904 strbuf_release(&buf
);
906 if (flags
& TRANSPORT_PUSH_DRY_RUN
|| !data
->rs
.nr
|| data
->no_private_update
)
909 /* propagate back the update to the remote namespace */
910 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
913 if (ref
->status
!= REF_STATUS_OK
)
917 private = apply_refspecs(&data
->rs
, ref
->name
);
920 update_ref("update by helper", private, &(ref
->new_oid
),
924 for (report
= ref
->report
; report
; report
= report
->next
) {
925 private = apply_refspecs(&data
->rs
,
931 update_ref("update by helper", private,
943 static void set_common_push_options(struct transport
*transport
,
944 const char *name
, int flags
)
946 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
947 if (set_helper_option(transport
, "dry-run", "true") != 0)
948 die(_("helper %s does not support dry-run"), name
);
949 } else if (flags
& TRANSPORT_PUSH_CERT_ALWAYS
) {
950 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "true") != 0)
951 die(_("helper %s does not support --signed"), name
);
952 } else if (flags
& TRANSPORT_PUSH_CERT_IF_ASKED
) {
953 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "if-asked") != 0)
954 die(_("helper %s does not support --signed=if-asked"), name
);
957 if (flags
& TRANSPORT_PUSH_ATOMIC
)
958 if (set_helper_option(transport
, TRANS_OPT_ATOMIC
, "true") != 0)
959 die(_("helper %s does not support --atomic"), name
);
961 if (flags
& TRANSPORT_PUSH_FORCE_IF_INCLUDES
)
962 if (set_helper_option(transport
, TRANS_OPT_FORCE_IF_INCLUDES
, "true") != 0)
963 die(_("helper %s does not support --%s"),
964 name
, TRANS_OPT_FORCE_IF_INCLUDES
);
966 if (flags
& TRANSPORT_PUSH_OPTIONS
) {
967 struct string_list_item
*item
;
968 for_each_string_list_item(item
, transport
->push_options
)
969 if (set_helper_option(transport
, "push-option", item
->string
) != 0)
970 die(_("helper %s does not support 'push-option'"), name
);
974 static int push_refs_with_push(struct transport
*transport
,
975 struct ref
*remote_refs
, int flags
)
977 int force_all
= flags
& TRANSPORT_PUSH_FORCE
;
978 int mirror
= flags
& TRANSPORT_PUSH_MIRROR
;
979 int atomic
= flags
& TRANSPORT_PUSH_ATOMIC
;
980 struct helper_data
*data
= transport
->data
;
981 struct strbuf buf
= STRBUF_INIT
;
983 struct string_list cas_options
= STRING_LIST_INIT_DUP
;
984 struct string_list_item
*cas_option
;
986 get_helper(transport
);
990 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
991 if (!ref
->peer_ref
&& !mirror
)
994 /* Check for statuses set by set_ref_status_for_push() */
995 switch (ref
->status
) {
996 case REF_STATUS_REJECT_NONFASTFORWARD
:
997 case REF_STATUS_REJECT_STALE
:
998 case REF_STATUS_REJECT_ALREADY_EXISTS
:
999 case REF_STATUS_REJECT_REMOTE_UPDATED
:
1001 reject_atomic_push(remote_refs
, mirror
);
1002 string_list_clear(&cas_options
, 0);
1006 case REF_STATUS_UPTODATE
:
1015 strbuf_addstr(&buf
, "push ");
1016 if (!ref
->deletion
) {
1018 strbuf_addch(&buf
, '+');
1020 strbuf_addstr(&buf
, ref
->peer_ref
->name
);
1022 strbuf_addstr(&buf
, oid_to_hex(&ref
->new_oid
));
1024 strbuf_addch(&buf
, ':');
1025 strbuf_addstr(&buf
, ref
->name
);
1026 strbuf_addch(&buf
, '\n');
1029 * The "--force-with-lease" options without explicit
1030 * values to expect have already been expanded into
1031 * the ref->old_oid_expect[] field; we can ignore
1032 * transport->smart_options->cas altogether and instead
1033 * can enumerate them from the refs.
1035 if (ref
->expect_old_sha1
) {
1036 struct strbuf cas
= STRBUF_INIT
;
1037 strbuf_addf(&cas
, "%s:%s",
1038 ref
->name
, oid_to_hex(&ref
->old_oid_expect
));
1039 string_list_append_nodup(&cas_options
,
1040 strbuf_detach(&cas
, NULL
));
1044 string_list_clear(&cas_options
, 0);
1048 for_each_string_list_item(cas_option
, &cas_options
)
1049 set_helper_option(transport
, "cas", cas_option
->string
);
1050 set_common_push_options(transport
, data
->name
, flags
);
1052 strbuf_addch(&buf
, '\n');
1053 sendline(data
, &buf
);
1054 strbuf_release(&buf
);
1055 string_list_clear(&cas_options
, 0);
1057 return push_update_refs_status(data
, remote_refs
, flags
);
1060 static int push_refs_with_export(struct transport
*transport
,
1061 struct ref
*remote_refs
, int flags
)
1064 struct child_process
*helper
, exporter
;
1065 struct helper_data
*data
= transport
->data
;
1066 struct string_list revlist_args
= STRING_LIST_INIT_DUP
;
1067 struct strbuf buf
= STRBUF_INIT
;
1070 die(_("remote-helper doesn't support push; refspec needed"));
1072 set_common_push_options(transport
, data
->name
, flags
);
1073 if (flags
& TRANSPORT_PUSH_FORCE
) {
1074 if (set_helper_option(transport
, "force", "true") != 0)
1075 warning(_("helper %s does not support 'force'"), data
->name
);
1078 helper
= get_helper(transport
);
1080 write_constant(helper
->in
, "export\n");
1082 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1084 struct object_id oid
;
1086 private = apply_refspecs(&data
->rs
, ref
->name
);
1087 if (private && !repo_get_oid(the_repository
, private, &oid
)) {
1088 strbuf_addf(&buf
, "^%s", private);
1089 string_list_append_nodup(&revlist_args
,
1090 strbuf_detach(&buf
, NULL
));
1091 oidcpy(&ref
->old_oid
, &oid
);
1095 if (ref
->peer_ref
) {
1096 if (strcmp(ref
->name
, ref
->peer_ref
->name
)) {
1097 if (!ref
->deletion
) {
1101 /* Follow symbolic refs (mainly for HEAD). */
1102 name
= resolve_ref_unsafe(ref
->peer_ref
->name
,
1103 RESOLVE_REF_READING
,
1105 if (!name
|| !(flag
& REF_ISSYMREF
))
1106 name
= ref
->peer_ref
->name
;
1108 strbuf_addf(&buf
, "%s:%s", name
, ref
->name
);
1110 strbuf_addf(&buf
, ":%s", ref
->name
);
1112 string_list_append(&revlist_args
, "--refspec");
1113 string_list_append(&revlist_args
, buf
.buf
);
1114 strbuf_release(&buf
);
1117 string_list_append(&revlist_args
, ref
->peer_ref
->name
);
1121 if (get_exporter(transport
, &exporter
, &revlist_args
))
1122 die(_("couldn't run fast-export"));
1124 string_list_clear(&revlist_args
, 1);
1126 if (finish_command(&exporter
))
1127 die(_("error while running fast-export"));
1128 if (push_update_refs_status(data
, remote_refs
, flags
))
1131 if (data
->export_marks
) {
1132 strbuf_addf(&buf
, "%s.tmp", data
->export_marks
);
1133 rename(buf
.buf
, data
->export_marks
);
1134 strbuf_release(&buf
);
1140 static int push_refs(struct transport
*transport
,
1141 struct ref
*remote_refs
, int flags
)
1143 struct helper_data
*data
= transport
->data
;
1145 if (process_connect(transport
, 1)) {
1146 do_take_over(transport
);
1147 return transport
->vtable
->push_refs(transport
, remote_refs
, flags
);
1152 _("No refs in common and none specified; doing nothing.\n"
1153 "Perhaps you should specify a branch.\n"));
1158 return push_refs_with_push(transport
, remote_refs
, flags
);
1161 return push_refs_with_export(transport
, remote_refs
, flags
);
1167 static int has_attribute(const char *attrs
, const char *attr
)
1175 const char *space
= strchrnul(attrs
, ' ');
1176 if (len
== space
- attrs
&& !strncmp(attrs
, attr
, len
))
1184 static struct ref
*get_refs_list(struct transport
*transport
, int for_push
,
1185 struct transport_ls_refs_options
*transport_options
)
1187 get_helper(transport
);
1189 if (process_connect(transport
, for_push
)) {
1190 do_take_over(transport
);
1191 return transport
->vtable
->get_refs_list(transport
, for_push
,
1195 return get_refs_list_using_list(transport
, for_push
);
1198 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
1201 struct helper_data
*data
= transport
->data
;
1202 struct child_process
*helper
;
1203 struct ref
*ret
= NULL
;
1204 struct ref
**tail
= &ret
;
1206 struct strbuf buf
= STRBUF_INIT
;
1208 data
->get_refs_list_called
= 1;
1209 helper
= get_helper(transport
);
1211 if (data
->object_format
) {
1212 write_str_in_full(helper
->in
, "option object-format\n");
1213 if (recvline(data
, &buf
) || strcmp(buf
.buf
, "ok"))
1217 if (data
->push
&& for_push
)
1218 write_str_in_full(helper
->in
, "list for-push\n");
1220 write_str_in_full(helper
->in
, "list\n");
1224 if (recvline(data
, &buf
))
1229 else if (buf
.buf
[0] == ':') {
1231 if (skip_prefix(buf
.buf
, ":object-format ", &value
)) {
1232 int algo
= hash_algo_by_name(value
);
1233 if (algo
== GIT_HASH_UNKNOWN
)
1234 die(_("unsupported object format '%s'"),
1236 transport
->hash_algo
= &hash_algos
[algo
];
1241 eov
= strchr(buf
.buf
, ' ');
1243 die(_("malformed response in ref list: %s"), buf
.buf
);
1244 eon
= strchr(eov
+ 1, ' ');
1248 *tail
= alloc_ref(eov
+ 1);
1249 if (buf
.buf
[0] == '@')
1250 (*tail
)->symref
= xstrdup(buf
.buf
+ 1);
1251 else if (buf
.buf
[0] != '?')
1252 get_oid_hex_algop(buf
.buf
, &(*tail
)->old_oid
, transport
->hash_algo
);
1254 if (has_attribute(eon
+ 1, "unchanged")) {
1255 (*tail
)->status
|= REF_STATUS_UPTODATE
;
1256 if (read_ref((*tail
)->name
, &(*tail
)->old_oid
) < 0)
1257 die(_("could not read ref %s"),
1261 tail
= &((*tail
)->next
);
1264 fprintf(stderr
, "Debug: Read ref listing.\n");
1265 strbuf_release(&buf
);
1267 for (posn
= ret
; posn
; posn
= posn
->next
)
1268 resolve_remote_symref(posn
, ret
);
1273 static int get_bundle_uri(struct transport
*transport
)
1275 get_helper(transport
);
1277 if (process_connect(transport
, 0)) {
1278 do_take_over(transport
);
1279 return transport
->vtable
->get_bundle_uri(transport
);
1285 static struct transport_vtable vtable
= {
1286 .set_option
= set_helper_option
,
1287 .get_refs_list
= get_refs_list
,
1288 .get_bundle_uri
= get_bundle_uri
,
1289 .fetch_refs
= fetch_refs
,
1290 .push_refs
= push_refs
,
1291 .connect
= connect_helper
,
1292 .disconnect
= release_helper
1295 int transport_helper_init(struct transport
*transport
, const char *name
)
1297 struct helper_data
*data
= xcalloc(1, sizeof(*data
));
1300 transport_check_allowed(name
);
1302 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1305 list_objects_filter_init(&data
->transport_options
.filter_options
);
1307 transport
->data
= data
;
1308 transport
->vtable
= &vtable
;
1309 transport
->smart_options
= &(data
->transport_options
);
1314 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1315 * buffer less), so attempt reads and writes with up to that size.
1317 #define BUFFERSIZE 65536
1318 /* This should be enough to hold debugging message. */
1319 #define PBUFFERSIZE 8192
1321 /* Print bidirectional transfer loop debug message. */
1322 __attribute__((format (printf
, 1, 2)))
1323 static void transfer_debug(const char *fmt
, ...)
1326 * NEEDSWORK: This function is sometimes used from multiple threads, and
1327 * we end up using debug_enabled racily. That "should not matter" since
1328 * we always write the same value, but it's still wrong. This function
1329 * is listed in .tsan-suppressions for the time being.
1333 char msgbuf
[PBUFFERSIZE
];
1334 static int debug_enabled
= -1;
1336 if (debug_enabled
< 0)
1337 debug_enabled
= getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1341 va_start(args
, fmt
);
1342 vsnprintf(msgbuf
, PBUFFERSIZE
, fmt
, args
);
1344 fprintf(stderr
, "Transfer loop debugging: %s\n", msgbuf
);
1347 /* Stream state: More data may be coming in this direction. */
1348 #define SSTATE_TRANSFERRING 0
1350 * Stream state: No more data coming in this direction, flushing rest of
1353 #define SSTATE_FLUSHING 1
1354 /* Stream state: Transfer in this direction finished. */
1355 #define SSTATE_FINISHED 2
1357 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERRING)
1358 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1359 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1361 /* Unidirectional transfer. */
1362 struct unidirectional_transfer
{
1367 /* Is source socket? */
1369 /* Is destination socket? */
1371 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1374 char buf
[BUFFERSIZE
];
1377 /* Name of source. */
1378 const char *src_name
;
1379 /* Name of destination. */
1380 const char *dest_name
;
1383 /* Closes the target (for writing) if transfer has finished. */
1384 static void udt_close_if_finished(struct unidirectional_transfer
*t
)
1386 if (STATE_NEEDS_CLOSING(t
->state
) && !t
->bufuse
) {
1387 t
->state
= SSTATE_FINISHED
;
1388 if (t
->dest_is_sock
)
1389 shutdown(t
->dest
, SHUT_WR
);
1392 transfer_debug("Closed %s.", t
->dest_name
);
1397 * Tries to read data from source into buffer. If buffer is full,
1398 * no data is read. Returns 0 on success, -1 on error.
1400 static int udt_do_read(struct unidirectional_transfer
*t
)
1404 if (t
->bufuse
== BUFFERSIZE
)
1405 return 0; /* No space for more. */
1407 transfer_debug("%s is readable", t
->src_name
);
1408 bytes
= xread(t
->src
, t
->buf
+ t
->bufuse
, BUFFERSIZE
- t
->bufuse
);
1410 error_errno(_("read(%s) failed"), t
->src_name
);
1412 } else if (bytes
== 0) {
1413 transfer_debug("%s EOF (with %i bytes in buffer)",
1414 t
->src_name
, (int)t
->bufuse
);
1415 t
->state
= SSTATE_FLUSHING
;
1416 } else if (bytes
> 0) {
1418 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1419 (int)bytes
, t
->src_name
, (int)t
->bufuse
);
1424 /* Tries to write data from buffer into destination. If buffer is empty,
1425 * no data is written. Returns 0 on success, -1 on error.
1427 static int udt_do_write(struct unidirectional_transfer
*t
)
1432 return 0; /* Nothing to write. */
1434 transfer_debug("%s is writable", t
->dest_name
);
1435 bytes
= xwrite(t
->dest
, t
->buf
, t
->bufuse
);
1437 error_errno(_("write(%s) failed"), t
->dest_name
);
1439 } else if (bytes
> 0) {
1442 memmove(t
->buf
, t
->buf
+ bytes
, t
->bufuse
);
1443 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1444 (int)bytes
, t
->dest_name
, (int)t
->bufuse
);
1450 /* State of bidirectional transfer loop. */
1451 struct bidirectional_transfer_state
{
1452 /* Direction from program to git. */
1453 struct unidirectional_transfer ptg
;
1454 /* Direction from git to program. */
1455 struct unidirectional_transfer gtp
;
1458 static void *udt_copy_task_routine(void *udt
)
1460 struct unidirectional_transfer
*t
= (struct unidirectional_transfer
*)udt
;
1461 while (t
->state
!= SSTATE_FINISHED
) {
1462 if (STATE_NEEDS_READING(t
->state
))
1465 if (STATE_NEEDS_WRITING(t
->state
))
1466 if (udt_do_write(t
))
1468 if (STATE_NEEDS_CLOSING(t
->state
))
1469 udt_close_if_finished(t
);
1471 return udt
; /* Just some non-NULL value. */
1477 * Join thread, with appropriate errors on failure. Name is name for the
1478 * thread (for error messages). Returns 0 on success, 1 on failure.
1480 static int tloop_join(pthread_t thread
, const char *name
)
1484 err
= pthread_join(thread
, &tret
);
1486 error(_("%s thread failed"), name
);
1490 error(_("%s thread failed to join: %s"), name
, strerror(err
));
1497 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1500 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1502 pthread_t gtp_thread
;
1503 pthread_t ptg_thread
;
1506 err
= pthread_create(>p_thread
, NULL
, udt_copy_task_routine
,
1509 die(_("can't start thread for copying data: %s"), strerror(err
));
1510 err
= pthread_create(&ptg_thread
, NULL
, udt_copy_task_routine
,
1513 die(_("can't start thread for copying data: %s"), strerror(err
));
1515 ret
|= tloop_join(gtp_thread
, "Git to program copy");
1516 ret
|= tloop_join(ptg_thread
, "Program to git copy");
1521 /* Close the source and target (for writing) for transfer. */
1522 static void udt_kill_transfer(struct unidirectional_transfer
*t
)
1524 t
->state
= SSTATE_FINISHED
;
1526 * Socket read end left open isn't a disaster if nobody
1527 * attempts to read from it (mingw compat headers do not
1530 * We can't fully close the socket since otherwise gtp
1531 * task would first close the socket it sends data to
1532 * while closing the ptg file descriptors.
1534 if (!t
->src_is_sock
)
1536 if (t
->dest_is_sock
)
1537 shutdown(t
->dest
, SHUT_WR
);
1543 * Join process, with appropriate errors on failure. Name is name for the
1544 * process (for error messages). Returns 0 on success, 1 on failure.
1546 static int tloop_join(pid_t pid
, const char *name
)
1549 if (waitpid(pid
, &tret
, 0) < 0) {
1550 error_errno(_("%s process failed to wait"), name
);
1553 if (!WIFEXITED(tret
) || WEXITSTATUS(tret
)) {
1554 error(_("%s process failed"), name
);
1561 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1564 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1569 /* Fork thread #1: git to program. */
1572 die_errno(_("can't start thread for copying data"));
1573 else if (pid1
== 0) {
1574 udt_kill_transfer(&s
->ptg
);
1575 exit(udt_copy_task_routine(&s
->gtp
) ? 0 : 1);
1578 /* Fork thread #2: program to git. */
1581 die_errno(_("can't start thread for copying data"));
1582 else if (pid2
== 0) {
1583 udt_kill_transfer(&s
->gtp
);
1584 exit(udt_copy_task_routine(&s
->ptg
) ? 0 : 1);
1588 * Close both streams in parent as to not interfere with
1589 * end of file detection and wait for both tasks to finish.
1591 udt_kill_transfer(&s
->gtp
);
1592 udt_kill_transfer(&s
->ptg
);
1593 ret
|= tloop_join(pid1
, "Git to program copy");
1594 ret
|= tloop_join(pid2
, "Program to git copy");
1600 * Copies data from stdin to output and from input to stdout simultaneously.
1601 * Additionally filtering through given filter. If filter is NULL, uses
1604 int bidirectional_transfer_loop(int input
, int output
)
1606 struct bidirectional_transfer_state state
;
1608 /* Fill the state fields. */
1609 state
.ptg
.src
= input
;
1611 state
.ptg
.src_is_sock
= (input
== output
);
1612 state
.ptg
.dest_is_sock
= 0;
1613 state
.ptg
.state
= SSTATE_TRANSFERRING
;
1614 state
.ptg
.bufuse
= 0;
1615 state
.ptg
.src_name
= "remote input";
1616 state
.ptg
.dest_name
= "stdout";
1619 state
.gtp
.dest
= output
;
1620 state
.gtp
.src_is_sock
= 0;
1621 state
.gtp
.dest_is_sock
= (input
== output
);
1622 state
.gtp
.state
= SSTATE_TRANSFERRING
;
1623 state
.gtp
.bufuse
= 0;
1624 state
.gtp
.src_name
= "stdin";
1625 state
.gtp
.dest_name
= "remote output";
1627 return tloop_spawnwait_tasks(&state
);
1630 void reject_atomic_push(struct ref
*remote_refs
, int mirror_mode
)
1634 /* Mark other refs as failed */
1635 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1636 if (!ref
->peer_ref
&& !mirror_mode
)
1639 switch (ref
->status
) {
1640 case REF_STATUS_NONE
:
1642 case REF_STATUS_EXPECTING_REPORT
:
1643 ref
->status
= REF_STATUS_ATOMIC_PUSH_FAILED
;
1646 break; /* do nothing */