1 #include "git-compat-util.h"
4 #include "run-command.h"
7 #include "environment.h"
10 #include "object-name.h"
11 #include "repository.h"
14 #include "string-list.h"
15 #include "thread-utils.h"
20 #include "transport-internal.h"
27 struct child_process
*helper
;
36 stateless_connect
: 1,
38 check_connectivity
: 1,
39 no_disconnect_req
: 1,
40 no_private_update
: 1,
44 * As an optimization, the transport code may invoke fetch before
45 * get_refs_list. If this happens, and if the transport helper doesn't
46 * support connect or stateless_connect, we need to invoke
47 * get_refs_list ourselves if we haven't already done so. Keep track of
48 * whether we have invoked get_refs_list.
50 unsigned get_refs_list_called
: 1;
54 /* These go from remote name (as in "list") to private name */
56 /* Transport options for fetch-pack/send-pack (should one of
59 struct git_transport_options transport_options
;
62 static void sendline(struct helper_data
*helper
, struct strbuf
*buffer
)
65 fprintf(stderr
, "Debug: Remote helper: -> %s", buffer
->buf
);
66 if (write_in_full(helper
->helper
->in
, buffer
->buf
, buffer
->len
) < 0)
67 die_errno(_("full write to remote helper failed"));
70 static int recvline_fh(FILE *helper
, struct strbuf
*buffer
)
74 fprintf(stderr
, "Debug: Remote helper: Waiting...\n");
75 if (strbuf_getline(buffer
, helper
) == EOF
) {
77 fprintf(stderr
, "Debug: Remote helper quit.\n");
82 fprintf(stderr
, "Debug: Remote helper: <- %s\n", buffer
->buf
);
86 static int recvline(struct helper_data
*helper
, struct strbuf
*buffer
)
88 return recvline_fh(helper
->out
, buffer
);
91 static void write_constant(int fd
, const char *str
)
94 fprintf(stderr
, "Debug: Remote helper: -> %s", str
);
95 if (write_in_full(fd
, str
, strlen(str
)) < 0)
96 die_errno(_("full write to remote helper failed"));
99 static const char *remove_ext_force(const char *url
)
102 const char *colon
= strchr(url
, ':');
103 if (colon
&& colon
[1] == ':')
109 static void do_take_over(struct transport
*transport
)
111 struct helper_data
*data
;
112 data
= (struct helper_data
*)transport
->data
;
113 transport_take_over(transport
, data
->helper
);
118 static void standard_options(struct transport
*t
);
120 static struct child_process
*get_helper(struct transport
*transport
)
122 struct helper_data
*data
= transport
->data
;
123 struct strbuf buf
= STRBUF_INIT
;
124 struct child_process
*helper
;
131 helper
= xmalloc(sizeof(*helper
));
132 child_process_init(helper
);
136 strvec_pushf(&helper
->args
, "remote-%s", data
->name
);
137 strvec_push(&helper
->args
, transport
->remote
->name
);
138 strvec_push(&helper
->args
, remove_ext_force(transport
->url
));
140 helper
->silent_exec_failure
= 1;
143 strvec_pushf(&helper
->env
, "%s=%s",
144 GIT_DIR_ENVIRONMENT
, get_git_dir());
146 helper
->trace2_child_class
= helper
->args
.v
[0]; /* "remote-<name>" */
148 code
= start_command(helper
);
149 if (code
< 0 && errno
== ENOENT
)
150 die(_("unable to find remote helper for '%s'"), data
->name
);
154 data
->helper
= helper
;
155 data
->no_disconnect_req
= 0;
156 refspec_init(&data
->rs
, REFSPEC_FETCH
);
159 * Open the output as FILE* so strbuf_getline_*() family of
160 * functions can be used.
161 * Do this with duped fd because fclose() will close the fd,
162 * and stuff like taking over will require the fd to remain.
164 duped
= dup(helper
->out
);
166 die_errno(_("can't dup helper output fd"));
167 data
->out
= xfdopen(duped
, "r");
169 write_constant(helper
->in
, "capabilities\n");
172 const char *capname
, *arg
;
174 if (recvline(data
, &buf
))
180 if (*buf
.buf
== '*') {
181 capname
= buf
.buf
+ 1;
187 fprintf(stderr
, "Debug: Got cap %s\n", capname
);
188 if (!strcmp(capname
, "fetch"))
190 else if (!strcmp(capname
, "option"))
192 else if (!strcmp(capname
, "push"))
194 else if (!strcmp(capname
, "import"))
196 else if (!strcmp(capname
, "bidi-import"))
197 data
->bidi_import
= 1;
198 else if (!strcmp(capname
, "export"))
200 else if (!strcmp(capname
, "check-connectivity"))
201 data
->check_connectivity
= 1;
202 else if (skip_prefix(capname
, "refspec ", &arg
)) {
203 refspec_append(&data
->rs
, arg
);
204 } else if (!strcmp(capname
, "connect")) {
206 } else if (!strcmp(capname
, "stateless-connect")) {
207 data
->stateless_connect
= 1;
208 } else if (!strcmp(capname
, "signed-tags")) {
209 data
->signed_tags
= 1;
210 } else if (skip_prefix(capname
, "export-marks ", &arg
)) {
211 data
->export_marks
= xstrdup(arg
);
212 } else if (skip_prefix(capname
, "import-marks ", &arg
)) {
213 data
->import_marks
= xstrdup(arg
);
214 } else if (starts_with(capname
, "no-private-update")) {
215 data
->no_private_update
= 1;
216 } else if (starts_with(capname
, "object-format")) {
217 data
->object_format
= 1;
218 } else if (mandatory
) {
219 die(_("unknown mandatory capability %s; this remote "
220 "helper probably needs newer version of Git"),
224 if (!data
->rs
.nr
&& (data
->import
|| data
->bidi_import
|| data
->export
)) {
225 warning(_("this remote helper should implement refspec capability"));
227 strbuf_release(&buf
);
229 fprintf(stderr
, "Debug: Capabilities complete.\n");
230 standard_options(transport
);
234 static int disconnect_helper(struct transport
*transport
)
236 struct helper_data
*data
= transport
->data
;
241 fprintf(stderr
, "Debug: Disconnecting.\n");
242 if (!data
->no_disconnect_req
) {
244 * Ignore write errors; there's nothing we can do,
245 * since we're about to close the pipe anyway. And the
246 * most likely error is EPIPE due to the helper dying
247 * to report an error itself.
249 sigchain_push(SIGPIPE
, SIG_IGN
);
250 xwrite(data
->helper
->in
, "\n", 1);
251 sigchain_pop(SIGPIPE
);
253 close(data
->helper
->in
);
254 close(data
->helper
->out
);
256 res
= finish_command(data
->helper
);
257 FREE_AND_NULL(data
->helper
);
262 static const char *unsupported_options
[] = {
263 TRANS_OPT_UPLOADPACK
,
264 TRANS_OPT_RECEIVEPACK
,
269 static const char *boolean_options
[] = {
272 TRANS_OPT_FOLLOWTAGS
,
273 TRANS_OPT_DEEPEN_RELATIVE
276 static int strbuf_set_helper_option(struct helper_data
*data
,
282 if (recvline(data
, buf
))
285 if (!strcmp(buf
->buf
, "ok"))
287 else if (starts_with(buf
->buf
, "error"))
289 else if (!strcmp(buf
->buf
, "unsupported"))
292 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
->buf
);
298 static int string_list_set_helper_option(struct helper_data
*data
,
300 struct string_list
*list
)
302 struct strbuf buf
= STRBUF_INIT
;
305 for (i
= 0; i
< list
->nr
; i
++) {
306 strbuf_addf(&buf
, "option %s ", name
);
307 quote_c_style(list
->items
[i
].string
, &buf
, NULL
, 0);
308 strbuf_addch(&buf
, '\n');
310 if ((ret
= strbuf_set_helper_option(data
, &buf
)))
314 strbuf_release(&buf
);
318 static int set_helper_option(struct transport
*transport
,
319 const char *name
, const char *value
)
321 struct helper_data
*data
= transport
->data
;
322 struct strbuf buf
= STRBUF_INIT
;
323 int i
, ret
, is_bool
= 0;
325 get_helper(transport
);
330 if (!strcmp(name
, "deepen-not"))
331 return string_list_set_helper_option(data
, name
,
332 (struct string_list
*)value
);
334 for (i
= 0; i
< ARRAY_SIZE(unsupported_options
); i
++) {
335 if (!strcmp(name
, unsupported_options
[i
]))
339 for (i
= 0; i
< ARRAY_SIZE(boolean_options
); i
++) {
340 if (!strcmp(name
, boolean_options
[i
])) {
346 strbuf_addf(&buf
, "option %s ", name
);
348 strbuf_addstr(&buf
, value
? "true" : "false");
350 quote_c_style(value
, &buf
, NULL
, 0);
351 strbuf_addch(&buf
, '\n');
353 ret
= strbuf_set_helper_option(data
, &buf
);
354 strbuf_release(&buf
);
358 static void standard_options(struct transport
*t
)
363 set_helper_option(t
, "progress", t
->progress
? "true" : "false");
365 xsnprintf(buf
, sizeof(buf
), "%d", v
+ 1);
366 set_helper_option(t
, "verbosity", buf
);
369 case TRANSPORT_FAMILY_ALL
:
371 * this is already the default,
372 * do not break old remote helpers by setting "all" here
375 case TRANSPORT_FAMILY_IPV4
:
376 set_helper_option(t
, "family", "ipv4");
378 case TRANSPORT_FAMILY_IPV6
:
379 set_helper_option(t
, "family", "ipv6");
384 static int release_helper(struct transport
*transport
)
387 struct helper_data
*data
= transport
->data
;
388 refspec_clear(&data
->rs
);
389 res
= disconnect_helper(transport
);
390 free(transport
->data
);
394 static int fetch_with_fetch(struct transport
*transport
,
395 int nr_heads
, struct ref
**to_fetch
)
397 struct helper_data
*data
= transport
->data
;
399 struct strbuf buf
= STRBUF_INIT
;
401 for (i
= 0; i
< nr_heads
; i
++) {
402 const struct ref
*posn
= to_fetch
[i
];
403 if (posn
->status
& REF_STATUS_UPTODATE
)
406 strbuf_addf(&buf
, "fetch %s %s\n",
407 oid_to_hex(&posn
->old_oid
),
408 posn
->symref
? posn
->symref
: posn
->name
);
411 strbuf_addch(&buf
, '\n');
412 sendline(data
, &buf
);
417 if (recvline(data
, &buf
))
420 if (skip_prefix(buf
.buf
, "lock ", &name
)) {
421 if (transport
->pack_lockfiles
.nr
)
422 warning(_("%s also locked %s"), data
->name
, name
);
424 string_list_append(&transport
->pack_lockfiles
,
427 else if (data
->check_connectivity
&&
428 data
->transport_options
.check_self_contained_and_connected
&&
429 !strcmp(buf
.buf
, "connectivity-ok"))
430 data
->transport_options
.self_contained_and_connected
= 1;
434 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
.buf
);
436 strbuf_release(&buf
);
440 static int get_importer(struct transport
*transport
, struct child_process
*fastimport
)
442 struct child_process
*helper
= get_helper(transport
);
443 struct helper_data
*data
= transport
->data
;
444 int cat_blob_fd
, code
;
445 child_process_init(fastimport
);
446 fastimport
->in
= xdup(helper
->out
);
447 strvec_push(&fastimport
->args
, "fast-import");
448 strvec_push(&fastimport
->args
, "--allow-unsafe-features");
449 strvec_push(&fastimport
->args
, debug
? "--stats" : "--quiet");
451 if (data
->bidi_import
) {
452 cat_blob_fd
= xdup(helper
->in
);
453 strvec_pushf(&fastimport
->args
, "--cat-blob-fd=%d", cat_blob_fd
);
455 fastimport
->git_cmd
= 1;
457 code
= start_command(fastimport
);
461 static int get_exporter(struct transport
*transport
,
462 struct child_process
*fastexport
,
463 struct string_list
*revlist_args
)
465 struct helper_data
*data
= transport
->data
;
466 struct child_process
*helper
= get_helper(transport
);
469 child_process_init(fastexport
);
471 /* we need to duplicate helper->in because we want to use it after
472 * fastexport is done with it. */
473 fastexport
->out
= dup(helper
->in
);
474 strvec_push(&fastexport
->args
, "fast-export");
475 strvec_push(&fastexport
->args
, "--use-done-feature");
476 strvec_push(&fastexport
->args
, data
->signed_tags
?
477 "--signed-tags=verbatim" : "--signed-tags=warn-strip");
478 if (data
->export_marks
)
479 strvec_pushf(&fastexport
->args
, "--export-marks=%s.tmp", data
->export_marks
);
480 if (data
->import_marks
)
481 strvec_pushf(&fastexport
->args
, "--import-marks=%s", data
->import_marks
);
483 for (i
= 0; i
< revlist_args
->nr
; i
++)
484 strvec_push(&fastexport
->args
, revlist_args
->items
[i
].string
);
486 fastexport
->git_cmd
= 1;
487 return start_command(fastexport
);
490 static int fetch_with_import(struct transport
*transport
,
491 int nr_heads
, struct ref
**to_fetch
)
493 struct child_process fastimport
;
494 struct helper_data
*data
= transport
->data
;
497 struct strbuf buf
= STRBUF_INIT
;
499 get_helper(transport
);
501 if (get_importer(transport
, &fastimport
))
502 die(_("couldn't run fast-import"));
504 for (i
= 0; i
< nr_heads
; i
++) {
506 if (posn
->status
& REF_STATUS_UPTODATE
)
509 strbuf_addf(&buf
, "import %s\n",
510 posn
->symref
? posn
->symref
: posn
->name
);
511 sendline(data
, &buf
);
515 write_constant(data
->helper
->in
, "\n");
517 * remote-helpers that advertise the bidi-import capability are required to
518 * buffer the complete batch of import commands until this newline before
519 * sending data to fast-import.
520 * These helpers read back data from fast-import on their stdin, which could
521 * be mixed with import commands, otherwise.
524 if (finish_command(&fastimport
))
525 die(_("error while running fast-import"));
528 * The fast-import stream of a remote helper that advertises
529 * the "refspec" capability writes to the refs named after the
530 * right hand side of the first refspec matching each ref we
533 * (If no "refspec" capability was specified, for historical
534 * reasons we default to the equivalent of *:*.)
536 * Store the result in to_fetch[i].old_sha1. Callers such
537 * as "git fetch" can use the value to write feedback to the
538 * terminal, populate FETCH_HEAD, and determine what new value
539 * should be written to peer_ref if the update is a
540 * fast-forward or this is a forced update.
542 for (i
= 0; i
< nr_heads
; i
++) {
543 char *private, *name
;
545 if (posn
->status
& REF_STATUS_UPTODATE
)
547 name
= posn
->symref
? posn
->symref
: posn
->name
;
549 private = apply_refspecs(&data
->rs
, name
);
551 private = xstrdup(name
);
553 if (read_ref(private, &posn
->old_oid
) < 0)
554 die(_("could not read ref %s"), private);
558 strbuf_release(&buf
);
562 static int run_connect(struct transport
*transport
, struct strbuf
*cmdbuf
)
564 struct helper_data
*data
= transport
->data
;
568 struct child_process
*helper
;
570 helper
= get_helper(transport
);
573 * Yes, dup the pipe another time, as we need unbuffered version
574 * of input pipe as FILE*. fclose() closes the underlying fd and
575 * stream buffering only can be changed before first I/O operation
578 duped
= dup(helper
->out
);
580 die_errno(_("can't dup helper output fd"));
581 input
= xfdopen(duped
, "r");
582 setvbuf(input
, NULL
, _IONBF
, 0);
584 sendline(data
, cmdbuf
);
585 if (recvline_fh(input
, cmdbuf
))
588 if (!strcmp(cmdbuf
->buf
, "")) {
589 data
->no_disconnect_req
= 1;
591 fprintf(stderr
, "Debug: Smart transport connection "
594 } else if (!strcmp(cmdbuf
->buf
, "fallback")) {
596 fprintf(stderr
, "Debug: Falling back to dumb "
599 die(_("unknown response to connect: %s"),
607 static int process_connect_service(struct transport
*transport
,
608 const char *name
, const char *exec
)
610 struct helper_data
*data
= transport
->data
;
611 struct strbuf cmdbuf
= STRBUF_INIT
;
615 * Handle --upload-pack and friends. This is fire and forget...
616 * just warn if it fails.
618 if (strcmp(name
, exec
)) {
619 int r
= set_helper_option(transport
, "servpath", exec
);
621 warning(_("setting remote service path not supported by protocol"));
623 warning(_("invalid remote service path"));
627 strbuf_addf(&cmdbuf
, "connect %s\n", name
);
628 ret
= run_connect(transport
, &cmdbuf
);
629 } else if (data
->stateless_connect
&&
630 (get_protocol_version_config() == protocol_v2
) &&
631 !strcmp("git-upload-pack", name
)) {
632 strbuf_addf(&cmdbuf
, "stateless-connect %s\n", name
);
633 ret
= run_connect(transport
, &cmdbuf
);
635 transport
->stateless_rpc
= 1;
638 strbuf_release(&cmdbuf
);
642 static int process_connect(struct transport
*transport
,
645 struct helper_data
*data
= transport
->data
;
649 name
= for_push
? "git-receive-pack" : "git-upload-pack";
651 exec
= data
->transport_options
.receivepack
;
653 exec
= data
->transport_options
.uploadpack
;
655 return process_connect_service(transport
, name
, exec
);
658 static int connect_helper(struct transport
*transport
, const char *name
,
659 const char *exec
, int fd
[2])
661 struct helper_data
*data
= transport
->data
;
663 /* Get_helper so connect is inited. */
664 get_helper(transport
);
666 die(_("operation not supported by protocol"));
668 if (!process_connect_service(transport
, name
, exec
))
669 die(_("can't connect to subservice %s"), name
);
671 fd
[0] = data
->helper
->out
;
672 fd
[1] = data
->helper
->in
;
676 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
679 static int fetch_refs(struct transport
*transport
,
680 int nr_heads
, struct ref
**to_fetch
)
682 struct helper_data
*data
= transport
->data
;
685 get_helper(transport
);
687 if (process_connect(transport
, 0)) {
688 do_take_over(transport
);
689 return transport
->vtable
->fetch_refs(transport
, nr_heads
, to_fetch
);
693 * If we reach here, then the server, the client, and/or the transport
694 * helper does not support protocol v2. --negotiate-only requires
697 if (data
->transport_options
.acked_commits
) {
698 warning(_("--negotiate-only requires protocol v2"));
702 if (!data
->get_refs_list_called
)
703 get_refs_list_using_list(transport
, 0);
706 for (i
= 0; i
< nr_heads
; i
++)
707 if (!(to_fetch
[i
]->status
& REF_STATUS_UPTODATE
))
713 if (data
->check_connectivity
&&
714 data
->transport_options
.check_self_contained_and_connected
)
715 set_helper_option(transport
, "check-connectivity", "true");
717 if (transport
->cloning
)
718 set_helper_option(transport
, "cloning", "true");
720 if (data
->transport_options
.update_shallow
)
721 set_helper_option(transport
, "update-shallow", "true");
723 if (data
->transport_options
.refetch
)
724 set_helper_option(transport
, "refetch", "true");
726 if (data
->transport_options
.filter_options
.choice
) {
727 const char *spec
= expand_list_objects_filter_spec(
728 &data
->transport_options
.filter_options
);
729 set_helper_option(transport
, "filter", spec
);
732 if (data
->transport_options
.negotiation_tips
)
733 warning("Ignoring --negotiation-tip because the protocol does not support it.");
736 return fetch_with_fetch(transport
, nr_heads
, to_fetch
);
739 return fetch_with_import(transport
, nr_heads
, to_fetch
);
744 struct push_update_ref_state
{
746 struct ref_push_report
*report
;
750 static int push_update_ref_status(struct strbuf
*buf
,
751 struct push_update_ref_state
*state
,
752 struct ref
*remote_refs
)
755 int status
, forced
= 0;
757 if (starts_with(buf
->buf
, "option ")) {
758 struct object_id old_oid
, new_oid
;
759 const char *key
, *val
;
762 if (!state
->hint
|| !(state
->report
|| state
->new_report
))
763 die(_("'option' without a matching 'ok/error' directive"));
764 if (state
->new_report
) {
765 if (!state
->hint
->report
) {
766 CALLOC_ARRAY(state
->hint
->report
, 1);
767 state
->report
= state
->hint
->report
;
769 state
->report
= state
->hint
->report
;
770 while (state
->report
->next
)
771 state
->report
= state
->report
->next
;
772 CALLOC_ARRAY(state
->report
->next
, 1);
773 state
->report
= state
->report
->next
;
775 state
->new_report
= 0;
778 p
= strchr(key
, ' ');
782 if (!strcmp(key
, "refname"))
783 state
->report
->ref_name
= xstrdup_or_null(val
);
784 else if (!strcmp(key
, "old-oid") && val
&&
785 !parse_oid_hex(val
, &old_oid
, &val
))
786 state
->report
->old_oid
= oiddup(&old_oid
);
787 else if (!strcmp(key
, "new-oid") && val
&&
788 !parse_oid_hex(val
, &new_oid
, &val
))
789 state
->report
->new_oid
= oiddup(&new_oid
);
790 else if (!strcmp(key
, "forced-update"))
791 state
->report
->forced_update
= 1;
792 /* Not update remote namespace again. */
796 state
->report
= NULL
;
797 state
->new_report
= 0;
799 if (starts_with(buf
->buf
, "ok ")) {
800 status
= REF_STATUS_OK
;
801 refname
= buf
->buf
+ 3;
802 } else if (starts_with(buf
->buf
, "error ")) {
803 status
= REF_STATUS_REMOTE_REJECT
;
804 refname
= buf
->buf
+ 6;
806 die(_("expected ok/error, helper said '%s'"), buf
->buf
);
808 msg
= strchr(refname
, ' ');
810 struct strbuf msg_buf
= STRBUF_INIT
;
814 if (!unquote_c_style(&msg_buf
, msg
, &end
))
815 msg
= strbuf_detach(&msg_buf
, NULL
);
818 strbuf_release(&msg_buf
);
820 if (!strcmp(msg
, "no match")) {
821 status
= REF_STATUS_NONE
;
824 else if (!strcmp(msg
, "up to date")) {
825 status
= REF_STATUS_UPTODATE
;
828 else if (!strcmp(msg
, "non-fast forward")) {
829 status
= REF_STATUS_REJECT_NONFASTFORWARD
;
832 else if (!strcmp(msg
, "already exists")) {
833 status
= REF_STATUS_REJECT_ALREADY_EXISTS
;
836 else if (!strcmp(msg
, "fetch first")) {
837 status
= REF_STATUS_REJECT_FETCH_FIRST
;
840 else if (!strcmp(msg
, "needs force")) {
841 status
= REF_STATUS_REJECT_NEEDS_FORCE
;
844 else if (!strcmp(msg
, "stale info")) {
845 status
= REF_STATUS_REJECT_STALE
;
848 else if (!strcmp(msg
, "remote ref updated since checkout")) {
849 status
= REF_STATUS_REJECT_REMOTE_UPDATED
;
852 else if (!strcmp(msg
, "forced update")) {
856 else if (!strcmp(msg
, "expecting report")) {
857 status
= REF_STATUS_EXPECTING_REPORT
;
863 state
->hint
= find_ref_by_name(state
->hint
, refname
);
865 state
->hint
= find_ref_by_name(remote_refs
, refname
);
867 warning(_("helper reported unexpected status of %s"), refname
);
871 if (state
->hint
->status
!= REF_STATUS_NONE
) {
873 * Earlier, the ref was marked not to be pushed, so ignore the ref
874 * status reported by the remote helper if the latter is 'no match'.
876 if (status
== REF_STATUS_NONE
)
880 if (status
== REF_STATUS_OK
)
881 state
->new_report
= 1;
882 state
->hint
->status
= status
;
883 state
->hint
->forced_update
|= forced
;
884 state
->hint
->remote_status
= msg
;
885 return !(status
== REF_STATUS_OK
);
888 static int push_update_refs_status(struct helper_data
*data
,
889 struct ref
*remote_refs
,
893 struct ref_push_report
*report
;
894 struct strbuf buf
= STRBUF_INIT
;
895 struct push_update_ref_state state
= { remote_refs
, NULL
, 0 };
898 if (recvline(data
, &buf
)) {
899 strbuf_release(&buf
);
904 push_update_ref_status(&buf
, &state
, remote_refs
);
906 strbuf_release(&buf
);
908 if (flags
& TRANSPORT_PUSH_DRY_RUN
|| !data
->rs
.nr
|| data
->no_private_update
)
911 /* propagate back the update to the remote namespace */
912 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
915 if (ref
->status
!= REF_STATUS_OK
)
919 private = apply_refspecs(&data
->rs
, ref
->name
);
922 update_ref("update by helper", private, &(ref
->new_oid
),
926 for (report
= ref
->report
; report
; report
= report
->next
) {
927 private = apply_refspecs(&data
->rs
,
933 update_ref("update by helper", private,
945 static void set_common_push_options(struct transport
*transport
,
946 const char *name
, int flags
)
948 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
949 if (set_helper_option(transport
, "dry-run", "true") != 0)
950 die(_("helper %s does not support dry-run"), name
);
951 } else if (flags
& TRANSPORT_PUSH_CERT_ALWAYS
) {
952 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "true") != 0)
953 die(_("helper %s does not support --signed"), name
);
954 } else if (flags
& TRANSPORT_PUSH_CERT_IF_ASKED
) {
955 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "if-asked") != 0)
956 die(_("helper %s does not support --signed=if-asked"), name
);
959 if (flags
& TRANSPORT_PUSH_ATOMIC
)
960 if (set_helper_option(transport
, TRANS_OPT_ATOMIC
, "true") != 0)
961 die(_("helper %s does not support --atomic"), name
);
963 if (flags
& TRANSPORT_PUSH_FORCE_IF_INCLUDES
)
964 if (set_helper_option(transport
, TRANS_OPT_FORCE_IF_INCLUDES
, "true") != 0)
965 die(_("helper %s does not support --%s"),
966 name
, TRANS_OPT_FORCE_IF_INCLUDES
);
968 if (flags
& TRANSPORT_PUSH_OPTIONS
) {
969 struct string_list_item
*item
;
970 for_each_string_list_item(item
, transport
->push_options
)
971 if (set_helper_option(transport
, "push-option", item
->string
) != 0)
972 die(_("helper %s does not support 'push-option'"), name
);
976 static int push_refs_with_push(struct transport
*transport
,
977 struct ref
*remote_refs
, int flags
)
979 int force_all
= flags
& TRANSPORT_PUSH_FORCE
;
980 int mirror
= flags
& TRANSPORT_PUSH_MIRROR
;
981 int atomic
= flags
& TRANSPORT_PUSH_ATOMIC
;
982 struct helper_data
*data
= transport
->data
;
983 struct strbuf buf
= STRBUF_INIT
;
985 struct string_list cas_options
= STRING_LIST_INIT_DUP
;
986 struct string_list_item
*cas_option
;
988 get_helper(transport
);
992 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
993 if (!ref
->peer_ref
&& !mirror
)
996 /* Check for statuses set by set_ref_status_for_push() */
997 switch (ref
->status
) {
998 case REF_STATUS_REJECT_NONFASTFORWARD
:
999 case REF_STATUS_REJECT_STALE
:
1000 case REF_STATUS_REJECT_ALREADY_EXISTS
:
1001 case REF_STATUS_REJECT_REMOTE_UPDATED
:
1003 reject_atomic_push(remote_refs
, mirror
);
1004 string_list_clear(&cas_options
, 0);
1008 case REF_STATUS_UPTODATE
:
1017 strbuf_addstr(&buf
, "push ");
1018 if (!ref
->deletion
) {
1020 strbuf_addch(&buf
, '+');
1022 strbuf_addstr(&buf
, ref
->peer_ref
->name
);
1024 strbuf_addstr(&buf
, oid_to_hex(&ref
->new_oid
));
1026 strbuf_addch(&buf
, ':');
1027 strbuf_addstr(&buf
, ref
->name
);
1028 strbuf_addch(&buf
, '\n');
1031 * The "--force-with-lease" options without explicit
1032 * values to expect have already been expanded into
1033 * the ref->old_oid_expect[] field; we can ignore
1034 * transport->smart_options->cas altogether and instead
1035 * can enumerate them from the refs.
1037 if (ref
->expect_old_sha1
) {
1038 struct strbuf cas
= STRBUF_INIT
;
1039 strbuf_addf(&cas
, "%s:%s",
1040 ref
->name
, oid_to_hex(&ref
->old_oid_expect
));
1041 string_list_append_nodup(&cas_options
,
1042 strbuf_detach(&cas
, NULL
));
1046 string_list_clear(&cas_options
, 0);
1050 for_each_string_list_item(cas_option
, &cas_options
)
1051 set_helper_option(transport
, "cas", cas_option
->string
);
1052 set_common_push_options(transport
, data
->name
, flags
);
1054 strbuf_addch(&buf
, '\n');
1055 sendline(data
, &buf
);
1056 strbuf_release(&buf
);
1057 string_list_clear(&cas_options
, 0);
1059 return push_update_refs_status(data
, remote_refs
, flags
);
1062 static int push_refs_with_export(struct transport
*transport
,
1063 struct ref
*remote_refs
, int flags
)
1066 struct child_process
*helper
, exporter
;
1067 struct helper_data
*data
= transport
->data
;
1068 struct string_list revlist_args
= STRING_LIST_INIT_DUP
;
1069 struct strbuf buf
= STRBUF_INIT
;
1072 die(_("remote-helper doesn't support push; refspec needed"));
1074 set_common_push_options(transport
, data
->name
, flags
);
1075 if (flags
& TRANSPORT_PUSH_FORCE
) {
1076 if (set_helper_option(transport
, "force", "true") != 0)
1077 warning(_("helper %s does not support 'force'"), data
->name
);
1080 helper
= get_helper(transport
);
1082 write_constant(helper
->in
, "export\n");
1084 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1086 struct object_id oid
;
1088 private = apply_refspecs(&data
->rs
, ref
->name
);
1089 if (private && !repo_get_oid(the_repository
, private, &oid
)) {
1090 strbuf_addf(&buf
, "^%s", private);
1091 string_list_append_nodup(&revlist_args
,
1092 strbuf_detach(&buf
, NULL
));
1093 oidcpy(&ref
->old_oid
, &oid
);
1097 if (ref
->peer_ref
) {
1098 if (strcmp(ref
->name
, ref
->peer_ref
->name
)) {
1099 if (!ref
->deletion
) {
1103 /* Follow symbolic refs (mainly for HEAD). */
1104 name
= resolve_ref_unsafe(ref
->peer_ref
->name
,
1105 RESOLVE_REF_READING
,
1107 if (!name
|| !(flag
& REF_ISSYMREF
))
1108 name
= ref
->peer_ref
->name
;
1110 strbuf_addf(&buf
, "%s:%s", name
, ref
->name
);
1112 strbuf_addf(&buf
, ":%s", ref
->name
);
1114 string_list_append(&revlist_args
, "--refspec");
1115 string_list_append(&revlist_args
, buf
.buf
);
1116 strbuf_release(&buf
);
1119 string_list_append(&revlist_args
, ref
->peer_ref
->name
);
1123 if (get_exporter(transport
, &exporter
, &revlist_args
))
1124 die(_("couldn't run fast-export"));
1126 string_list_clear(&revlist_args
, 1);
1128 if (finish_command(&exporter
))
1129 die(_("error while running fast-export"));
1130 if (push_update_refs_status(data
, remote_refs
, flags
))
1133 if (data
->export_marks
) {
1134 strbuf_addf(&buf
, "%s.tmp", data
->export_marks
);
1135 rename(buf
.buf
, data
->export_marks
);
1136 strbuf_release(&buf
);
1142 static int push_refs(struct transport
*transport
,
1143 struct ref
*remote_refs
, int flags
)
1145 struct helper_data
*data
= transport
->data
;
1147 if (process_connect(transport
, 1)) {
1148 do_take_over(transport
);
1149 return transport
->vtable
->push_refs(transport
, remote_refs
, flags
);
1154 _("No refs in common and none specified; doing nothing.\n"
1155 "Perhaps you should specify a branch.\n"));
1160 return push_refs_with_push(transport
, remote_refs
, flags
);
1163 return push_refs_with_export(transport
, remote_refs
, flags
);
1169 static int has_attribute(const char *attrs
, const char *attr
)
1177 const char *space
= strchrnul(attrs
, ' ');
1178 if (len
== space
- attrs
&& !strncmp(attrs
, attr
, len
))
1186 static struct ref
*get_refs_list(struct transport
*transport
, int for_push
,
1187 struct transport_ls_refs_options
*transport_options
)
1189 get_helper(transport
);
1191 if (process_connect(transport
, for_push
)) {
1192 do_take_over(transport
);
1193 return transport
->vtable
->get_refs_list(transport
, for_push
,
1197 return get_refs_list_using_list(transport
, for_push
);
1200 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
1203 struct helper_data
*data
= transport
->data
;
1204 struct child_process
*helper
;
1205 struct ref
*ret
= NULL
;
1206 struct ref
**tail
= &ret
;
1208 struct strbuf buf
= STRBUF_INIT
;
1210 data
->get_refs_list_called
= 1;
1211 helper
= get_helper(transport
);
1213 if (data
->object_format
) {
1214 write_str_in_full(helper
->in
, "option object-format\n");
1215 if (recvline(data
, &buf
) || strcmp(buf
.buf
, "ok"))
1219 if (data
->push
&& for_push
)
1220 write_str_in_full(helper
->in
, "list for-push\n");
1222 write_str_in_full(helper
->in
, "list\n");
1226 if (recvline(data
, &buf
))
1231 else if (buf
.buf
[0] == ':') {
1233 if (skip_prefix(buf
.buf
, ":object-format ", &value
)) {
1234 int algo
= hash_algo_by_name(value
);
1235 if (algo
== GIT_HASH_UNKNOWN
)
1236 die(_("unsupported object format '%s'"),
1238 transport
->hash_algo
= &hash_algos
[algo
];
1243 eov
= strchr(buf
.buf
, ' ');
1245 die(_("malformed response in ref list: %s"), buf
.buf
);
1246 eon
= strchr(eov
+ 1, ' ');
1250 *tail
= alloc_ref(eov
+ 1);
1251 if (buf
.buf
[0] == '@')
1252 (*tail
)->symref
= xstrdup(buf
.buf
+ 1);
1253 else if (buf
.buf
[0] != '?')
1254 get_oid_hex_algop(buf
.buf
, &(*tail
)->old_oid
, transport
->hash_algo
);
1256 if (has_attribute(eon
+ 1, "unchanged")) {
1257 (*tail
)->status
|= REF_STATUS_UPTODATE
;
1258 if (read_ref((*tail
)->name
, &(*tail
)->old_oid
) < 0)
1259 die(_("could not read ref %s"),
1263 tail
= &((*tail
)->next
);
1266 fprintf(stderr
, "Debug: Read ref listing.\n");
1267 strbuf_release(&buf
);
1269 for (posn
= ret
; posn
; posn
= posn
->next
)
1270 resolve_remote_symref(posn
, ret
);
1275 static int get_bundle_uri(struct transport
*transport
)
1277 get_helper(transport
);
1279 if (process_connect(transport
, 0)) {
1280 do_take_over(transport
);
1281 return transport
->vtable
->get_bundle_uri(transport
);
1287 static struct transport_vtable vtable
= {
1288 .set_option
= set_helper_option
,
1289 .get_refs_list
= get_refs_list
,
1290 .get_bundle_uri
= get_bundle_uri
,
1291 .fetch_refs
= fetch_refs
,
1292 .push_refs
= push_refs
,
1293 .connect
= connect_helper
,
1294 .disconnect
= release_helper
1297 int transport_helper_init(struct transport
*transport
, const char *name
)
1299 struct helper_data
*data
= xcalloc(1, sizeof(*data
));
1302 transport_check_allowed(name
);
1304 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1307 list_objects_filter_init(&data
->transport_options
.filter_options
);
1309 transport
->data
= data
;
1310 transport
->vtable
= &vtable
;
1311 transport
->smart_options
= &(data
->transport_options
);
1316 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1317 * buffer less), so attempt reads and writes with up to that size.
1319 #define BUFFERSIZE 65536
1320 /* This should be enough to hold debugging message. */
1321 #define PBUFFERSIZE 8192
1323 /* Print bidirectional transfer loop debug message. */
1324 __attribute__((format (printf
, 1, 2)))
1325 static void transfer_debug(const char *fmt
, ...)
1328 * NEEDSWORK: This function is sometimes used from multiple threads, and
1329 * we end up using debug_enabled racily. That "should not matter" since
1330 * we always write the same value, but it's still wrong. This function
1331 * is listed in .tsan-suppressions for the time being.
1335 char msgbuf
[PBUFFERSIZE
];
1336 static int debug_enabled
= -1;
1338 if (debug_enabled
< 0)
1339 debug_enabled
= getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1343 va_start(args
, fmt
);
1344 vsnprintf(msgbuf
, PBUFFERSIZE
, fmt
, args
);
1346 fprintf(stderr
, "Transfer loop debugging: %s\n", msgbuf
);
1349 /* Stream state: More data may be coming in this direction. */
1350 #define SSTATE_TRANSFERRING 0
1352 * Stream state: No more data coming in this direction, flushing rest of
1355 #define SSTATE_FLUSHING 1
1356 /* Stream state: Transfer in this direction finished. */
1357 #define SSTATE_FINISHED 2
1359 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERRING)
1360 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1361 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1363 /* Unidirectional transfer. */
1364 struct unidirectional_transfer
{
1369 /* Is source socket? */
1371 /* Is destination socket? */
1373 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1376 char buf
[BUFFERSIZE
];
1379 /* Name of source. */
1380 const char *src_name
;
1381 /* Name of destination. */
1382 const char *dest_name
;
1385 /* Closes the target (for writing) if transfer has finished. */
1386 static void udt_close_if_finished(struct unidirectional_transfer
*t
)
1388 if (STATE_NEEDS_CLOSING(t
->state
) && !t
->bufuse
) {
1389 t
->state
= SSTATE_FINISHED
;
1390 if (t
->dest_is_sock
)
1391 shutdown(t
->dest
, SHUT_WR
);
1394 transfer_debug("Closed %s.", t
->dest_name
);
1399 * Tries to read data from source into buffer. If buffer is full,
1400 * no data is read. Returns 0 on success, -1 on error.
1402 static int udt_do_read(struct unidirectional_transfer
*t
)
1406 if (t
->bufuse
== BUFFERSIZE
)
1407 return 0; /* No space for more. */
1409 transfer_debug("%s is readable", t
->src_name
);
1410 bytes
= xread(t
->src
, t
->buf
+ t
->bufuse
, BUFFERSIZE
- t
->bufuse
);
1412 error_errno(_("read(%s) failed"), t
->src_name
);
1414 } else if (bytes
== 0) {
1415 transfer_debug("%s EOF (with %i bytes in buffer)",
1416 t
->src_name
, (int)t
->bufuse
);
1417 t
->state
= SSTATE_FLUSHING
;
1418 } else if (bytes
> 0) {
1420 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1421 (int)bytes
, t
->src_name
, (int)t
->bufuse
);
1426 /* Tries to write data from buffer into destination. If buffer is empty,
1427 * no data is written. Returns 0 on success, -1 on error.
1429 static int udt_do_write(struct unidirectional_transfer
*t
)
1434 return 0; /* Nothing to write. */
1436 transfer_debug("%s is writable", t
->dest_name
);
1437 bytes
= xwrite(t
->dest
, t
->buf
, t
->bufuse
);
1439 error_errno(_("write(%s) failed"), t
->dest_name
);
1441 } else if (bytes
> 0) {
1444 memmove(t
->buf
, t
->buf
+ bytes
, t
->bufuse
);
1445 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1446 (int)bytes
, t
->dest_name
, (int)t
->bufuse
);
1452 /* State of bidirectional transfer loop. */
1453 struct bidirectional_transfer_state
{
1454 /* Direction from program to git. */
1455 struct unidirectional_transfer ptg
;
1456 /* Direction from git to program. */
1457 struct unidirectional_transfer gtp
;
1460 static void *udt_copy_task_routine(void *udt
)
1462 struct unidirectional_transfer
*t
= (struct unidirectional_transfer
*)udt
;
1463 while (t
->state
!= SSTATE_FINISHED
) {
1464 if (STATE_NEEDS_READING(t
->state
))
1467 if (STATE_NEEDS_WRITING(t
->state
))
1468 if (udt_do_write(t
))
1470 if (STATE_NEEDS_CLOSING(t
->state
))
1471 udt_close_if_finished(t
);
1473 return udt
; /* Just some non-NULL value. */
1479 * Join thread, with appropriate errors on failure. Name is name for the
1480 * thread (for error messages). Returns 0 on success, 1 on failure.
1482 static int tloop_join(pthread_t thread
, const char *name
)
1486 err
= pthread_join(thread
, &tret
);
1488 error(_("%s thread failed"), name
);
1492 error(_("%s thread failed to join: %s"), name
, strerror(err
));
1499 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1502 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1504 pthread_t gtp_thread
;
1505 pthread_t ptg_thread
;
1508 err
= pthread_create(>p_thread
, NULL
, udt_copy_task_routine
,
1511 die(_("can't start thread for copying data: %s"), strerror(err
));
1512 err
= pthread_create(&ptg_thread
, NULL
, udt_copy_task_routine
,
1515 die(_("can't start thread for copying data: %s"), strerror(err
));
1517 ret
|= tloop_join(gtp_thread
, "Git to program copy");
1518 ret
|= tloop_join(ptg_thread
, "Program to git copy");
1523 /* Close the source and target (for writing) for transfer. */
1524 static void udt_kill_transfer(struct unidirectional_transfer
*t
)
1526 t
->state
= SSTATE_FINISHED
;
1528 * Socket read end left open isn't a disaster if nobody
1529 * attempts to read from it (mingw compat headers do not
1532 * We can't fully close the socket since otherwise gtp
1533 * task would first close the socket it sends data to
1534 * while closing the ptg file descriptors.
1536 if (!t
->src_is_sock
)
1538 if (t
->dest_is_sock
)
1539 shutdown(t
->dest
, SHUT_WR
);
1545 * Join process, with appropriate errors on failure. Name is name for the
1546 * process (for error messages). Returns 0 on success, 1 on failure.
1548 static int tloop_join(pid_t pid
, const char *name
)
1551 if (waitpid(pid
, &tret
, 0) < 0) {
1552 error_errno(_("%s process failed to wait"), name
);
1555 if (!WIFEXITED(tret
) || WEXITSTATUS(tret
)) {
1556 error(_("%s process failed"), name
);
1563 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1566 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1571 /* Fork thread #1: git to program. */
1574 die_errno(_("can't start thread for copying data"));
1575 else if (pid1
== 0) {
1576 udt_kill_transfer(&s
->ptg
);
1577 exit(udt_copy_task_routine(&s
->gtp
) ? 0 : 1);
1580 /* Fork thread #2: program to git. */
1583 die_errno(_("can't start thread for copying data"));
1584 else if (pid2
== 0) {
1585 udt_kill_transfer(&s
->gtp
);
1586 exit(udt_copy_task_routine(&s
->ptg
) ? 0 : 1);
1590 * Close both streams in parent as to not interfere with
1591 * end of file detection and wait for both tasks to finish.
1593 udt_kill_transfer(&s
->gtp
);
1594 udt_kill_transfer(&s
->ptg
);
1595 ret
|= tloop_join(pid1
, "Git to program copy");
1596 ret
|= tloop_join(pid2
, "Program to git copy");
1602 * Copies data from stdin to output and from input to stdout simultaneously.
1603 * Additionally filtering through given filter. If filter is NULL, uses
1606 int bidirectional_transfer_loop(int input
, int output
)
1608 struct bidirectional_transfer_state state
;
1610 /* Fill the state fields. */
1611 state
.ptg
.src
= input
;
1613 state
.ptg
.src_is_sock
= (input
== output
);
1614 state
.ptg
.dest_is_sock
= 0;
1615 state
.ptg
.state
= SSTATE_TRANSFERRING
;
1616 state
.ptg
.bufuse
= 0;
1617 state
.ptg
.src_name
= "remote input";
1618 state
.ptg
.dest_name
= "stdout";
1621 state
.gtp
.dest
= output
;
1622 state
.gtp
.src_is_sock
= 0;
1623 state
.gtp
.dest_is_sock
= (input
== output
);
1624 state
.gtp
.state
= SSTATE_TRANSFERRING
;
1625 state
.gtp
.bufuse
= 0;
1626 state
.gtp
.src_name
= "stdin";
1627 state
.gtp
.dest_name
= "remote output";
1629 return tloop_spawnwait_tasks(&state
);
1632 void reject_atomic_push(struct ref
*remote_refs
, int mirror_mode
)
1636 /* Mark other refs as failed */
1637 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1638 if (!ref
->peer_ref
&& !mirror_mode
)
1641 switch (ref
->status
) {
1642 case REF_STATUS_NONE
:
1644 case REF_STATUS_EXPECTING_REPORT
:
1645 ref
->status
= REF_STATUS_ATOMIC_PUSH_FAILED
;
1648 break; /* do nothing */