1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
6 #include "run-command.h"
8 #include "environment.h"
11 #include "object-name.h"
12 #include "repository.h"
14 #include "string-list.h"
15 #include "thread-utils.h"
20 #include "transport-internal.h"
28 struct child_process
*helper
;
37 stateless_connect
: 1,
39 check_connectivity
: 1,
40 no_disconnect_req
: 1,
41 no_private_update
: 1,
45 * As an optimization, the transport code may invoke fetch before
46 * get_refs_list. If this happens, and if the transport helper doesn't
47 * support connect or stateless_connect, we need to invoke
48 * get_refs_list ourselves if we haven't already done so. Keep track of
49 * whether we have invoked get_refs_list.
51 unsigned get_refs_list_called
: 1;
55 /* These go from remote name (as in "list") to private name */
57 /* Transport options for fetch-pack/send-pack (should one of
60 struct git_transport_options transport_options
;
63 static void sendline(struct helper_data
*helper
, struct strbuf
*buffer
)
66 fprintf(stderr
, "Debug: Remote helper: -> %s", buffer
->buf
);
67 if (write_in_full(helper
->helper
->in
, buffer
->buf
, buffer
->len
) < 0)
68 die_errno(_("full write to remote helper failed"));
71 static int recvline_fh(FILE *helper
, struct strbuf
*buffer
)
75 fprintf(stderr
, "Debug: Remote helper: Waiting...\n");
76 if (strbuf_getline(buffer
, helper
) == EOF
) {
78 fprintf(stderr
, "Debug: Remote helper quit.\n");
83 fprintf(stderr
, "Debug: Remote helper: <- %s\n", buffer
->buf
);
87 static int recvline(struct helper_data
*helper
, struct strbuf
*buffer
)
89 return recvline_fh(helper
->out
, buffer
);
92 static int write_constant_gently(int fd
, const char *str
)
95 fprintf(stderr
, "Debug: Remote helper: -> %s", str
);
96 if (write_in_full(fd
, str
, strlen(str
)) < 0)
101 static void write_constant(int fd
, const char *str
)
103 if (write_constant_gently(fd
, str
) < 0)
104 die_errno(_("full write to remote helper failed"));
107 static const char *remove_ext_force(const char *url
)
110 const char *colon
= strchr(url
, ':');
111 if (colon
&& colon
[1] == ':')
117 static void do_take_over(struct transport
*transport
)
119 struct helper_data
*data
;
120 data
= (struct helper_data
*)transport
->data
;
121 transport_take_over(transport
, data
->helper
);
127 static void standard_options(struct transport
*t
);
129 static struct child_process
*get_helper(struct transport
*transport
)
131 struct helper_data
*data
= transport
->data
;
132 struct strbuf buf
= STRBUF_INIT
;
133 struct child_process
*helper
;
140 helper
= xmalloc(sizeof(*helper
));
141 child_process_init(helper
);
145 strvec_pushf(&helper
->args
, "remote-%s", data
->name
);
146 strvec_push(&helper
->args
, transport
->remote
->name
);
147 strvec_push(&helper
->args
, remove_ext_force(transport
->url
));
149 helper
->silent_exec_failure
= 1;
152 strvec_pushf(&helper
->env
, "%s=%s",
153 GIT_DIR_ENVIRONMENT
, repo_get_git_dir(the_repository
));
155 helper
->trace2_child_class
= helper
->args
.v
[0]; /* "remote-<name>" */
157 code
= start_command(helper
);
158 if (code
< 0 && errno
== ENOENT
)
159 die(_("unable to find remote helper for '%s'"), data
->name
);
163 data
->helper
= helper
;
164 data
->no_disconnect_req
= 0;
165 refspec_init_fetch(&data
->rs
);
168 * Open the output as FILE* so strbuf_getline_*() family of
169 * functions can be used.
170 * Do this with duped fd because fclose() will close the fd,
171 * and stuff like taking over will require the fd to remain.
173 duped
= dup(helper
->out
);
175 die_errno(_("can't dup helper output fd"));
176 data
->out
= xfdopen(duped
, "r");
178 sigchain_push(SIGPIPE
, SIG_IGN
);
179 if (write_constant_gently(helper
->in
, "capabilities\n") < 0)
180 die("remote helper '%s' aborted session", data
->name
);
181 sigchain_pop(SIGPIPE
);
184 const char *capname
, *arg
;
186 if (recvline(data
, &buf
))
187 die("remote helper '%s' aborted session", data
->name
);
192 if (*buf
.buf
== '*') {
193 capname
= buf
.buf
+ 1;
199 fprintf(stderr
, "Debug: Got cap %s\n", capname
);
200 if (!strcmp(capname
, "fetch"))
202 else if (!strcmp(capname
, "option"))
204 else if (!strcmp(capname
, "push"))
206 else if (!strcmp(capname
, "import"))
208 else if (!strcmp(capname
, "bidi-import"))
209 data
->bidi_import
= 1;
210 else if (!strcmp(capname
, "export"))
212 else if (!strcmp(capname
, "check-connectivity"))
213 data
->check_connectivity
= 1;
214 else if (skip_prefix(capname
, "refspec ", &arg
)) {
215 refspec_append(&data
->rs
, arg
);
216 } else if (!strcmp(capname
, "connect")) {
218 } else if (!strcmp(capname
, "stateless-connect")) {
219 data
->stateless_connect
= 1;
220 } else if (!strcmp(capname
, "signed-tags")) {
221 data
->signed_tags
= 1;
222 } else if (skip_prefix(capname
, "export-marks ", &arg
)) {
223 data
->export_marks
= xstrdup(arg
);
224 } else if (skip_prefix(capname
, "import-marks ", &arg
)) {
225 data
->import_marks
= xstrdup(arg
);
226 } else if (starts_with(capname
, "no-private-update")) {
227 data
->no_private_update
= 1;
228 } else if (starts_with(capname
, "object-format")) {
229 data
->object_format
= 1;
230 } else if (mandatory
) {
231 die(_("unknown mandatory capability %s; this remote "
232 "helper probably needs newer version of Git"),
236 if (!data
->rs
.nr
&& (data
->import
|| data
->bidi_import
|| data
->export
)) {
237 warning(_("this remote helper should implement refspec capability"));
239 strbuf_release(&buf
);
241 fprintf(stderr
, "Debug: Capabilities complete.\n");
242 standard_options(transport
);
246 static int disconnect_helper(struct transport
*transport
)
248 struct helper_data
*data
= transport
->data
;
253 fprintf(stderr
, "Debug: Disconnecting.\n");
254 if (!data
->no_disconnect_req
) {
256 * Ignore write errors; there's nothing we can do,
257 * since we're about to close the pipe anyway. And the
258 * most likely error is EPIPE due to the helper dying
259 * to report an error itself.
261 sigchain_push(SIGPIPE
, SIG_IGN
);
262 xwrite(data
->helper
->in
, "\n", 1);
263 sigchain_pop(SIGPIPE
);
265 close(data
->helper
->in
);
266 close(data
->helper
->out
);
268 res
= finish_command(data
->helper
);
269 FREE_AND_NULL(data
->name
);
270 FREE_AND_NULL(data
->helper
);
275 static const char *unsupported_options
[] = {
276 TRANS_OPT_UPLOADPACK
,
277 TRANS_OPT_RECEIVEPACK
,
282 static const char *boolean_options
[] = {
285 TRANS_OPT_FOLLOWTAGS
,
286 TRANS_OPT_DEEPEN_RELATIVE
289 static int strbuf_set_helper_option(struct helper_data
*data
,
295 if (recvline(data
, buf
))
298 if (!strcmp(buf
->buf
, "ok"))
300 else if (starts_with(buf
->buf
, "error"))
302 else if (!strcmp(buf
->buf
, "unsupported"))
305 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
->buf
);
311 static int string_list_set_helper_option(struct helper_data
*data
,
313 struct string_list
*list
)
315 struct strbuf buf
= STRBUF_INIT
;
318 for (size_t i
= 0; i
< list
->nr
; i
++) {
319 strbuf_addf(&buf
, "option %s ", name
);
320 quote_c_style(list
->items
[i
].string
, &buf
, NULL
, 0);
321 strbuf_addch(&buf
, '\n');
323 if ((ret
= strbuf_set_helper_option(data
, &buf
)))
327 strbuf_release(&buf
);
331 static int set_helper_option(struct transport
*transport
,
332 const char *name
, const char *value
)
334 struct helper_data
*data
= transport
->data
;
335 struct strbuf buf
= STRBUF_INIT
;
336 int ret
, is_bool
= 0;
338 get_helper(transport
);
343 if (!strcmp(name
, "deepen-not"))
344 return string_list_set_helper_option(data
, name
,
345 (struct string_list
*)value
);
347 for (size_t i
= 0; i
< ARRAY_SIZE(unsupported_options
); i
++) {
348 if (!strcmp(name
, unsupported_options
[i
]))
352 for (size_t i
= 0; i
< ARRAY_SIZE(boolean_options
); i
++) {
353 if (!strcmp(name
, boolean_options
[i
])) {
359 strbuf_addf(&buf
, "option %s ", name
);
361 strbuf_addstr(&buf
, value
? "true" : "false");
363 quote_c_style(value
, &buf
, NULL
, 0);
364 strbuf_addch(&buf
, '\n');
366 ret
= strbuf_set_helper_option(data
, &buf
);
367 strbuf_release(&buf
);
371 static void standard_options(struct transport
*t
)
376 set_helper_option(t
, "progress", t
->progress
? "true" : "false");
378 xsnprintf(buf
, sizeof(buf
), "%d", v
+ 1);
379 set_helper_option(t
, "verbosity", buf
);
382 case TRANSPORT_FAMILY_ALL
:
384 * this is already the default,
385 * do not break old remote helpers by setting "all" here
388 case TRANSPORT_FAMILY_IPV4
:
389 set_helper_option(t
, "family", "ipv4");
391 case TRANSPORT_FAMILY_IPV6
:
392 set_helper_option(t
, "family", "ipv6");
397 static int release_helper(struct transport
*transport
)
400 struct helper_data
*data
= transport
->data
;
401 refspec_clear(&data
->rs
);
402 free(data
->import_marks
);
403 free(data
->export_marks
);
404 res
= disconnect_helper(transport
);
405 free(transport
->data
);
409 static int fetch_with_fetch(struct transport
*transport
,
410 int nr_heads
, struct ref
**to_fetch
)
412 struct helper_data
*data
= transport
->data
;
414 struct strbuf buf
= STRBUF_INIT
;
416 for (i
= 0; i
< nr_heads
; i
++) {
417 const struct ref
*posn
= to_fetch
[i
];
418 if (posn
->status
& REF_STATUS_UPTODATE
)
421 strbuf_addf(&buf
, "fetch %s %s\n",
422 oid_to_hex(&posn
->old_oid
),
423 posn
->symref
? posn
->symref
: posn
->name
);
426 strbuf_addch(&buf
, '\n');
427 sendline(data
, &buf
);
432 if (recvline(data
, &buf
))
435 if (skip_prefix(buf
.buf
, "lock ", &name
)) {
436 if (transport
->pack_lockfiles
.nr
)
437 warning(_("%s also locked %s"), data
->name
, name
);
439 string_list_append(&transport
->pack_lockfiles
,
442 else if (data
->check_connectivity
&&
443 data
->transport_options
.check_self_contained_and_connected
&&
444 !strcmp(buf
.buf
, "connectivity-ok"))
445 data
->transport_options
.self_contained_and_connected
= 1;
449 warning(_("%s unexpectedly said: '%s'"), data
->name
, buf
.buf
);
451 strbuf_release(&buf
);
453 reprepare_packed_git(the_repository
);
457 static int get_importer(struct transport
*transport
, struct child_process
*fastimport
)
459 struct child_process
*helper
= get_helper(transport
);
460 struct helper_data
*data
= transport
->data
;
461 int cat_blob_fd
, code
;
462 child_process_init(fastimport
);
463 fastimport
->in
= xdup(helper
->out
);
464 strvec_push(&fastimport
->args
, "fast-import");
465 strvec_push(&fastimport
->args
, "--allow-unsafe-features");
466 strvec_push(&fastimport
->args
, debug
? "--stats" : "--quiet");
468 if (data
->bidi_import
) {
469 cat_blob_fd
= xdup(helper
->in
);
470 strvec_pushf(&fastimport
->args
, "--cat-blob-fd=%d", cat_blob_fd
);
472 fastimport
->git_cmd
= 1;
474 code
= start_command(fastimport
);
478 static int get_exporter(struct transport
*transport
,
479 struct child_process
*fastexport
,
480 struct string_list
*revlist_args
)
482 struct helper_data
*data
= transport
->data
;
483 struct child_process
*helper
= get_helper(transport
);
485 child_process_init(fastexport
);
487 /* we need to duplicate helper->in because we want to use it after
488 * fastexport is done with it. */
489 fastexport
->out
= dup(helper
->in
);
490 strvec_push(&fastexport
->args
, "fast-export");
491 strvec_push(&fastexport
->args
, "--use-done-feature");
492 strvec_push(&fastexport
->args
, data
->signed_tags
?
493 "--signed-tags=verbatim" : "--signed-tags=warn-strip");
494 if (data
->export_marks
)
495 strvec_pushf(&fastexport
->args
, "--export-marks=%s.tmp", data
->export_marks
);
496 if (data
->import_marks
)
497 strvec_pushf(&fastexport
->args
, "--import-marks=%s", data
->import_marks
);
499 for (size_t i
= 0; i
< revlist_args
->nr
; i
++)
500 strvec_push(&fastexport
->args
, revlist_args
->items
[i
].string
);
502 fastexport
->git_cmd
= 1;
503 return start_command(fastexport
);
506 static int fetch_with_import(struct transport
*transport
,
507 int nr_heads
, struct ref
**to_fetch
)
509 struct child_process fastimport
;
510 struct helper_data
*data
= transport
->data
;
513 struct strbuf buf
= STRBUF_INIT
;
515 get_helper(transport
);
517 if (get_importer(transport
, &fastimport
))
518 die(_("couldn't run fast-import"));
520 for (i
= 0; i
< nr_heads
; i
++) {
522 if (posn
->status
& REF_STATUS_UPTODATE
)
525 strbuf_addf(&buf
, "import %s\n",
526 posn
->symref
? posn
->symref
: posn
->name
);
527 sendline(data
, &buf
);
531 write_constant(data
->helper
->in
, "\n");
533 * remote-helpers that advertise the bidi-import capability are required to
534 * buffer the complete batch of import commands until this newline before
535 * sending data to fast-import.
536 * These helpers read back data from fast-import on their stdin, which could
537 * be mixed with import commands, otherwise.
540 if (finish_command(&fastimport
))
541 die(_("error while running fast-import"));
544 * The fast-import stream of a remote helper that advertises
545 * the "refspec" capability writes to the refs named after the
546 * right hand side of the first refspec matching each ref we
549 * (If no "refspec" capability was specified, for historical
550 * reasons we default to the equivalent of *:*.)
552 * Store the result in to_fetch[i].old_sha1. Callers such
553 * as "git fetch" can use the value to write feedback to the
554 * terminal, populate FETCH_HEAD, and determine what new value
555 * should be written to peer_ref if the update is a
556 * fast-forward or this is a forced update.
558 for (i
= 0; i
< nr_heads
; i
++) {
559 char *private, *name
;
561 if (posn
->status
& REF_STATUS_UPTODATE
)
563 name
= posn
->symref
? posn
->symref
: posn
->name
;
565 private = apply_refspecs(&data
->rs
, name
);
567 private = xstrdup(name
);
569 if (refs_read_ref(get_main_ref_store(the_repository
), private, &posn
->old_oid
) < 0)
570 die(_("could not read ref %s"), private);
574 strbuf_release(&buf
);
578 static int run_connect(struct transport
*transport
, struct strbuf
*cmdbuf
)
580 struct helper_data
*data
= transport
->data
;
584 struct child_process
*helper
;
586 helper
= get_helper(transport
);
589 * Yes, dup the pipe another time, as we need unbuffered version
590 * of input pipe as FILE*. fclose() closes the underlying fd and
591 * stream buffering only can be changed before first I/O operation
594 duped
= dup(helper
->out
);
596 die_errno(_("can't dup helper output fd"));
597 input
= xfdopen(duped
, "r");
598 setvbuf(input
, NULL
, _IONBF
, 0);
600 sendline(data
, cmdbuf
);
601 if (recvline_fh(input
, cmdbuf
))
604 if (!strcmp(cmdbuf
->buf
, "")) {
605 data
->no_disconnect_req
= 1;
607 fprintf(stderr
, "Debug: Smart transport connection "
610 } else if (!strcmp(cmdbuf
->buf
, "fallback")) {
612 fprintf(stderr
, "Debug: Falling back to dumb "
615 die(_("unknown response to connect: %s"),
623 static int process_connect_service(struct transport
*transport
,
624 const char *name
, const char *exec
)
626 struct helper_data
*data
= transport
->data
;
627 struct strbuf cmdbuf
= STRBUF_INIT
;
631 * Handle --upload-pack and friends. This is fire and forget...
632 * just warn if it fails.
634 if (strcmp(name
, exec
)) {
635 int r
= set_helper_option(transport
, "servpath", exec
);
637 warning(_("setting remote service path not supported by protocol"));
639 warning(_("invalid remote service path"));
643 strbuf_addf(&cmdbuf
, "connect %s\n", name
);
644 ret
= run_connect(transport
, &cmdbuf
);
645 } else if (data
->stateless_connect
&&
646 (get_protocol_version_config() == protocol_v2
) &&
647 (!strcmp("git-upload-pack", name
) ||
648 !strcmp("git-upload-archive", name
))) {
649 strbuf_addf(&cmdbuf
, "stateless-connect %s\n", name
);
650 ret
= run_connect(transport
, &cmdbuf
);
652 transport
->stateless_rpc
= 1;
655 strbuf_release(&cmdbuf
);
659 static int process_connect(struct transport
*transport
,
662 struct helper_data
*data
= transport
->data
;
667 name
= for_push
? "git-receive-pack" : "git-upload-pack";
669 exec
= data
->transport_options
.receivepack
;
671 exec
= data
->transport_options
.uploadpack
;
673 ret
= process_connect_service(transport
, name
, exec
);
675 do_take_over(transport
);
679 static int connect_helper(struct transport
*transport
, const char *name
,
680 const char *exec
, int fd
[2])
682 struct helper_data
*data
= transport
->data
;
684 /* Get_helper so connect is inited. */
685 get_helper(transport
);
687 if (!process_connect_service(transport
, name
, exec
))
688 die(_("can't connect to subservice %s"), name
);
690 fd
[0] = data
->helper
->out
;
691 fd
[1] = data
->helper
->in
;
693 do_take_over(transport
);
697 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
700 static int fetch_refs(struct transport
*transport
,
701 int nr_heads
, struct ref
**to_fetch
)
703 struct helper_data
*data
= transport
->data
;
706 get_helper(transport
);
708 if (process_connect(transport
, 0))
709 return transport
->vtable
->fetch_refs(transport
, nr_heads
, to_fetch
);
712 * If we reach here, then the server, the client, and/or the transport
713 * helper does not support protocol v2. --negotiate-only requires
716 if (data
->transport_options
.acked_commits
) {
717 warning(_("--negotiate-only requires protocol v2"));
721 if (!data
->get_refs_list_called
) {
723 * We do not care about the list of refs returned, but only
724 * that the "list" command was sent.
726 struct ref
*dummy
= get_refs_list_using_list(transport
, 0);
731 for (i
= 0; i
< nr_heads
; i
++)
732 if (!(to_fetch
[i
]->status
& REF_STATUS_UPTODATE
))
738 if (data
->check_connectivity
&&
739 data
->transport_options
.check_self_contained_and_connected
)
740 set_helper_option(transport
, "check-connectivity", "true");
742 if (transport
->cloning
)
743 set_helper_option(transport
, "cloning", "true");
745 if (data
->transport_options
.update_shallow
)
746 set_helper_option(transport
, "update-shallow", "true");
748 if (data
->transport_options
.refetch
)
749 set_helper_option(transport
, "refetch", "true");
751 if (data
->transport_options
.filter_options
.choice
) {
752 const char *spec
= expand_list_objects_filter_spec(
753 &data
->transport_options
.filter_options
);
754 set_helper_option(transport
, "filter", spec
);
757 if (data
->transport_options
.negotiation_tips
)
758 warning("Ignoring --negotiation-tip because the protocol does not support it.");
761 return fetch_with_fetch(transport
, nr_heads
, to_fetch
);
764 return fetch_with_import(transport
, nr_heads
, to_fetch
);
769 struct push_update_ref_state
{
771 struct ref_push_report
*report
;
775 static int push_update_ref_status(struct strbuf
*buf
,
776 struct push_update_ref_state
*state
,
777 struct ref
*remote_refs
)
780 int status
, forced
= 0;
782 if (starts_with(buf
->buf
, "option ")) {
783 struct object_id old_oid
, new_oid
;
784 const char *key
, *val
;
787 if (!state
->hint
|| !(state
->report
|| state
->new_report
))
788 die(_("'option' without a matching 'ok/error' directive"));
789 if (state
->new_report
) {
790 if (!state
->hint
->report
) {
791 CALLOC_ARRAY(state
->hint
->report
, 1);
792 state
->report
= state
->hint
->report
;
794 state
->report
= state
->hint
->report
;
795 while (state
->report
->next
)
796 state
->report
= state
->report
->next
;
797 CALLOC_ARRAY(state
->report
->next
, 1);
798 state
->report
= state
->report
->next
;
800 state
->new_report
= 0;
803 p
= strchr(key
, ' ');
807 if (!strcmp(key
, "refname"))
808 state
->report
->ref_name
= xstrdup_or_null(val
);
809 else if (!strcmp(key
, "old-oid") && val
&&
810 !parse_oid_hex(val
, &old_oid
, &val
))
811 state
->report
->old_oid
= oiddup(&old_oid
);
812 else if (!strcmp(key
, "new-oid") && val
&&
813 !parse_oid_hex(val
, &new_oid
, &val
))
814 state
->report
->new_oid
= oiddup(&new_oid
);
815 else if (!strcmp(key
, "forced-update"))
816 state
->report
->forced_update
= 1;
817 /* Not update remote namespace again. */
821 state
->report
= NULL
;
822 state
->new_report
= 0;
824 if (starts_with(buf
->buf
, "ok ")) {
825 status
= REF_STATUS_OK
;
826 refname
= buf
->buf
+ 3;
827 } else if (starts_with(buf
->buf
, "error ")) {
828 status
= REF_STATUS_REMOTE_REJECT
;
829 refname
= buf
->buf
+ 6;
831 die(_("expected ok/error, helper said '%s'"), buf
->buf
);
833 msg
= strchr(refname
, ' ');
835 struct strbuf msg_buf
= STRBUF_INIT
;
839 if (!unquote_c_style(&msg_buf
, msg
, &end
))
840 msg
= strbuf_detach(&msg_buf
, NULL
);
843 strbuf_release(&msg_buf
);
845 if (!strcmp(msg
, "no match")) {
846 status
= REF_STATUS_NONE
;
849 else if (!strcmp(msg
, "up to date")) {
850 status
= REF_STATUS_UPTODATE
;
853 else if (!strcmp(msg
, "non-fast forward")) {
854 status
= REF_STATUS_REJECT_NONFASTFORWARD
;
857 else if (!strcmp(msg
, "already exists")) {
858 status
= REF_STATUS_REJECT_ALREADY_EXISTS
;
861 else if (!strcmp(msg
, "fetch first")) {
862 status
= REF_STATUS_REJECT_FETCH_FIRST
;
865 else if (!strcmp(msg
, "needs force")) {
866 status
= REF_STATUS_REJECT_NEEDS_FORCE
;
869 else if (!strcmp(msg
, "stale info")) {
870 status
= REF_STATUS_REJECT_STALE
;
873 else if (!strcmp(msg
, "remote ref updated since checkout")) {
874 status
= REF_STATUS_REJECT_REMOTE_UPDATED
;
877 else if (!strcmp(msg
, "forced update")) {
881 else if (!strcmp(msg
, "expecting report")) {
882 status
= REF_STATUS_EXPECTING_REPORT
;
888 state
->hint
= find_ref_by_name(state
->hint
, refname
);
890 state
->hint
= find_ref_by_name(remote_refs
, refname
);
892 warning(_("helper reported unexpected status of %s"), refname
);
896 if (state
->hint
->status
!= REF_STATUS_NONE
) {
898 * Earlier, the ref was marked not to be pushed, so ignore the ref
899 * status reported by the remote helper if the latter is 'no match'.
901 if (status
== REF_STATUS_NONE
)
905 if (status
== REF_STATUS_OK
)
906 state
->new_report
= 1;
907 state
->hint
->status
= status
;
908 state
->hint
->forced_update
|= forced
;
909 state
->hint
->remote_status
= msg
;
910 return !(status
== REF_STATUS_OK
);
913 static int push_update_refs_status(struct helper_data
*data
,
914 struct ref
*remote_refs
,
918 struct ref_push_report
*report
;
919 struct strbuf buf
= STRBUF_INIT
;
920 struct push_update_ref_state state
= { remote_refs
, NULL
, 0 };
923 if (recvline(data
, &buf
)) {
924 strbuf_release(&buf
);
929 push_update_ref_status(&buf
, &state
, remote_refs
);
931 strbuf_release(&buf
);
933 if (flags
& TRANSPORT_PUSH_DRY_RUN
|| !data
->rs
.nr
|| data
->no_private_update
)
936 /* propagate back the update to the remote namespace */
937 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
940 if (ref
->status
!= REF_STATUS_OK
)
944 private = apply_refspecs(&data
->rs
, ref
->name
);
947 refs_update_ref(get_main_ref_store(the_repository
),
948 "update by helper", private,
953 for (report
= ref
->report
; report
; report
= report
->next
) {
954 private = apply_refspecs(&data
->rs
,
960 refs_update_ref(get_main_ref_store(the_repository
),
961 "update by helper", private,
973 static void set_common_push_options(struct transport
*transport
,
974 const char *name
, int flags
)
976 if (flags
& TRANSPORT_PUSH_DRY_RUN
) {
977 if (set_helper_option(transport
, "dry-run", "true") != 0)
978 die(_("helper %s does not support dry-run"), name
);
979 } else if (flags
& TRANSPORT_PUSH_CERT_ALWAYS
) {
980 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "true") != 0)
981 die(_("helper %s does not support --signed"), name
);
982 } else if (flags
& TRANSPORT_PUSH_CERT_IF_ASKED
) {
983 if (set_helper_option(transport
, TRANS_OPT_PUSH_CERT
, "if-asked") != 0)
984 die(_("helper %s does not support --signed=if-asked"), name
);
987 if (flags
& TRANSPORT_PUSH_ATOMIC
)
988 if (set_helper_option(transport
, TRANS_OPT_ATOMIC
, "true") != 0)
989 die(_("helper %s does not support --atomic"), name
);
991 if (flags
& TRANSPORT_PUSH_FORCE_IF_INCLUDES
)
992 if (set_helper_option(transport
, TRANS_OPT_FORCE_IF_INCLUDES
, "true") != 0)
993 die(_("helper %s does not support --%s"),
994 name
, TRANS_OPT_FORCE_IF_INCLUDES
);
996 if (flags
& TRANSPORT_PUSH_OPTIONS
) {
997 struct string_list_item
*item
;
998 for_each_string_list_item(item
, transport
->push_options
)
999 if (set_helper_option(transport
, "push-option", item
->string
) != 0)
1000 die(_("helper %s does not support 'push-option'"), name
);
1004 static int push_refs_with_push(struct transport
*transport
,
1005 struct ref
*remote_refs
, int flags
)
1007 int force_all
= flags
& TRANSPORT_PUSH_FORCE
;
1008 int mirror
= flags
& TRANSPORT_PUSH_MIRROR
;
1009 int atomic
= flags
& TRANSPORT_PUSH_ATOMIC
;
1010 struct helper_data
*data
= transport
->data
;
1011 struct strbuf buf
= STRBUF_INIT
;
1013 struct string_list cas_options
= STRING_LIST_INIT_DUP
;
1014 struct string_list_item
*cas_option
;
1016 get_helper(transport
);
1020 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1021 if (!ref
->peer_ref
&& !mirror
)
1024 /* Check for statuses set by set_ref_status_for_push() */
1025 switch (ref
->status
) {
1026 case REF_STATUS_REJECT_NONFASTFORWARD
:
1027 case REF_STATUS_REJECT_STALE
:
1028 case REF_STATUS_REJECT_ALREADY_EXISTS
:
1029 case REF_STATUS_REJECT_REMOTE_UPDATED
:
1031 reject_atomic_push(remote_refs
, mirror
);
1032 string_list_clear(&cas_options
, 0);
1033 strbuf_release(&buf
);
1037 case REF_STATUS_UPTODATE
:
1046 strbuf_addstr(&buf
, "push ");
1047 if (!ref
->deletion
) {
1049 strbuf_addch(&buf
, '+');
1051 strbuf_addstr(&buf
, ref
->peer_ref
->name
);
1053 strbuf_addstr(&buf
, oid_to_hex(&ref
->new_oid
));
1055 strbuf_addch(&buf
, ':');
1056 strbuf_addstr(&buf
, ref
->name
);
1057 strbuf_addch(&buf
, '\n');
1060 * The "--force-with-lease" options without explicit
1061 * values to expect have already been expanded into
1062 * the ref->old_oid_expect[] field; we can ignore
1063 * transport->smart_options->cas altogether and instead
1064 * can enumerate them from the refs.
1066 if (ref
->expect_old_sha1
) {
1067 struct strbuf cas
= STRBUF_INIT
;
1068 strbuf_addf(&cas
, "%s:%s",
1069 ref
->name
, oid_to_hex(&ref
->old_oid_expect
));
1070 string_list_append_nodup(&cas_options
,
1071 strbuf_detach(&cas
, NULL
));
1075 string_list_clear(&cas_options
, 0);
1079 for_each_string_list_item(cas_option
, &cas_options
)
1080 set_helper_option(transport
, "cas", cas_option
->string
);
1081 set_common_push_options(transport
, data
->name
, flags
);
1083 strbuf_addch(&buf
, '\n');
1084 sendline(data
, &buf
);
1085 strbuf_release(&buf
);
1086 string_list_clear(&cas_options
, 0);
1088 return push_update_refs_status(data
, remote_refs
, flags
);
1091 static int push_refs_with_export(struct transport
*transport
,
1092 struct ref
*remote_refs
, int flags
)
1095 struct child_process
*helper
, exporter
;
1096 struct helper_data
*data
= transport
->data
;
1097 struct string_list revlist_args
= STRING_LIST_INIT_DUP
;
1098 struct strbuf buf
= STRBUF_INIT
;
1101 die(_("remote-helper doesn't support push; refspec needed"));
1103 set_common_push_options(transport
, data
->name
, flags
);
1104 if (flags
& TRANSPORT_PUSH_FORCE
) {
1105 if (set_helper_option(transport
, "force", "true") != 0)
1106 warning(_("helper %s does not support '--force'"), data
->name
);
1109 helper
= get_helper(transport
);
1111 write_constant(helper
->in
, "export\n");
1113 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1115 struct object_id oid
;
1117 private = apply_refspecs(&data
->rs
, ref
->name
);
1118 if (private && !repo_get_oid(the_repository
, private, &oid
)) {
1119 strbuf_addf(&buf
, "^%s", private);
1120 string_list_append_nodup(&revlist_args
,
1121 strbuf_detach(&buf
, NULL
));
1122 oidcpy(&ref
->old_oid
, &oid
);
1126 if (ref
->peer_ref
) {
1127 if (strcmp(ref
->name
, ref
->peer_ref
->name
)) {
1128 if (!ref
->deletion
) {
1132 /* Follow symbolic refs (mainly for HEAD). */
1133 name
= refs_resolve_ref_unsafe(get_main_ref_store(the_repository
),
1134 ref
->peer_ref
->name
,
1135 RESOLVE_REF_READING
,
1138 if (!name
|| !(flag
& REF_ISSYMREF
))
1139 name
= ref
->peer_ref
->name
;
1141 strbuf_addf(&buf
, "%s:%s", name
, ref
->name
);
1143 strbuf_addf(&buf
, ":%s", ref
->name
);
1145 string_list_append(&revlist_args
, "--refspec");
1146 string_list_append(&revlist_args
, buf
.buf
);
1147 strbuf_release(&buf
);
1150 string_list_append(&revlist_args
, ref
->peer_ref
->name
);
1154 if (get_exporter(transport
, &exporter
, &revlist_args
))
1155 die(_("couldn't run fast-export"));
1157 string_list_clear(&revlist_args
, 1);
1159 if (finish_command(&exporter
))
1160 die(_("error while running fast-export"));
1161 if (push_update_refs_status(data
, remote_refs
, flags
))
1164 if (data
->export_marks
) {
1165 strbuf_addf(&buf
, "%s.tmp", data
->export_marks
);
1166 rename(buf
.buf
, data
->export_marks
);
1167 strbuf_release(&buf
);
1173 static int push_refs(struct transport
*transport
,
1174 struct ref
*remote_refs
, int flags
)
1176 struct helper_data
*data
= transport
->data
;
1178 if (process_connect(transport
, 1))
1179 return transport
->vtable
->push_refs(transport
, remote_refs
, flags
);
1183 _("No refs in common and none specified; doing nothing.\n"
1184 "Perhaps you should specify a branch.\n"));
1189 return push_refs_with_push(transport
, remote_refs
, flags
);
1192 return push_refs_with_export(transport
, remote_refs
, flags
);
1198 static int has_attribute(const char *attrs
, const char *attr
)
1206 const char *space
= strchrnul(attrs
, ' ');
1207 if (len
== space
- attrs
&& !strncmp(attrs
, attr
, len
))
1215 static struct ref
*get_refs_list(struct transport
*transport
, int for_push
,
1216 struct transport_ls_refs_options
*transport_options
)
1218 get_helper(transport
);
1220 if (process_connect(transport
, for_push
))
1221 return transport
->vtable
->get_refs_list(transport
, for_push
,
1224 return get_refs_list_using_list(transport
, for_push
);
1227 static struct ref
*get_refs_list_using_list(struct transport
*transport
,
1230 struct helper_data
*data
= transport
->data
;
1231 struct child_process
*helper
;
1232 struct ref
*ret
= NULL
;
1233 struct ref
**tail
= &ret
;
1235 struct strbuf buf
= STRBUF_INIT
;
1237 data
->get_refs_list_called
= 1;
1238 helper
= get_helper(transport
);
1240 if (data
->object_format
)
1241 set_helper_option(transport
, "object-format", "true");
1243 if (data
->push
&& for_push
)
1244 write_constant(helper
->in
, "list for-push\n");
1246 write_constant(helper
->in
, "list\n");
1250 if (recvline(data
, &buf
))
1255 else if (buf
.buf
[0] == ':') {
1257 if (skip_prefix(buf
.buf
, ":object-format ", &value
)) {
1258 int algo
= hash_algo_by_name(value
);
1259 if (algo
== GIT_HASH_UNKNOWN
)
1260 die(_("unsupported object format '%s'"),
1262 transport
->hash_algo
= &hash_algos
[algo
];
1267 eov
= strchr(buf
.buf
, ' ');
1269 die(_("malformed response in ref list: %s"), buf
.buf
);
1270 eon
= strchr(eov
+ 1, ' ');
1274 *tail
= alloc_ref(eov
+ 1);
1275 if (buf
.buf
[0] == '@')
1276 (*tail
)->symref
= xstrdup(buf
.buf
+ 1);
1277 else if (buf
.buf
[0] != '?')
1278 get_oid_hex_algop(buf
.buf
, &(*tail
)->old_oid
, transport
->hash_algo
);
1280 if (has_attribute(eon
+ 1, "unchanged")) {
1281 (*tail
)->status
|= REF_STATUS_UPTODATE
;
1282 if (refs_read_ref(get_main_ref_store(the_repository
), (*tail
)->name
, &(*tail
)->old_oid
) < 0)
1283 die(_("could not read ref %s"),
1287 tail
= &((*tail
)->next
);
1290 fprintf(stderr
, "Debug: Read ref listing.\n");
1291 strbuf_release(&buf
);
1293 for (posn
= ret
; posn
; posn
= posn
->next
)
1294 resolve_remote_symref(posn
, ret
);
1299 static int get_bundle_uri(struct transport
*transport
)
1301 get_helper(transport
);
1303 if (process_connect(transport
, 0))
1304 return transport
->vtable
->get_bundle_uri(transport
);
1309 static struct transport_vtable vtable
= {
1310 .set_option
= set_helper_option
,
1311 .get_refs_list
= get_refs_list
,
1312 .get_bundle_uri
= get_bundle_uri
,
1313 .fetch_refs
= fetch_refs
,
1314 .push_refs
= push_refs
,
1315 .connect
= connect_helper
,
1316 .disconnect
= release_helper
1319 int transport_helper_init(struct transport
*transport
, const char *name
)
1321 struct helper_data
*data
= xcalloc(1, sizeof(*data
));
1322 data
->name
= xstrdup(name
);
1324 transport_check_allowed(name
);
1326 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1329 list_objects_filter_init(&data
->transport_options
.filter_options
);
1331 transport
->data
= data
;
1332 transport
->vtable
= &vtable
;
1333 transport
->smart_options
= &(data
->transport_options
);
1338 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1339 * buffer less), so attempt reads and writes with up to that size.
1341 #define BUFFERSIZE 65536
1342 /* This should be enough to hold debugging message. */
1343 #define PBUFFERSIZE 8192
1345 /* Print bidirectional transfer loop debug message. */
1346 __attribute__((format (printf
, 1, 2)))
1347 static void transfer_debug(const char *fmt
, ...)
1350 * NEEDSWORK: This function is sometimes used from multiple threads, and
1351 * we end up using debug_enabled racily. That "should not matter" since
1352 * we always write the same value, but it's still wrong. This function
1353 * is listed in .tsan-suppressions for the time being.
1357 char msgbuf
[PBUFFERSIZE
];
1358 static int debug_enabled
= -1;
1360 if (debug_enabled
< 0)
1361 debug_enabled
= getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1365 va_start(args
, fmt
);
1366 vsnprintf(msgbuf
, PBUFFERSIZE
, fmt
, args
);
1368 fprintf(stderr
, "Transfer loop debugging: %s\n", msgbuf
);
1371 /* Stream state: More data may be coming in this direction. */
1372 #define SSTATE_TRANSFERRING 0
1374 * Stream state: No more data coming in this direction, flushing rest of
1377 #define SSTATE_FLUSHING 1
1378 /* Stream state: Transfer in this direction finished. */
1379 #define SSTATE_FINISHED 2
1381 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERRING)
1382 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1383 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1385 /* Unidirectional transfer. */
1386 struct unidirectional_transfer
{
1391 /* Is source socket? */
1393 /* Is destination socket? */
1395 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1398 char buf
[BUFFERSIZE
];
1401 /* Name of source. */
1402 const char *src_name
;
1403 /* Name of destination. */
1404 const char *dest_name
;
1407 /* Closes the target (for writing) if transfer has finished. */
1408 static void udt_close_if_finished(struct unidirectional_transfer
*t
)
1410 if (STATE_NEEDS_CLOSING(t
->state
) && !t
->bufuse
) {
1411 t
->state
= SSTATE_FINISHED
;
1412 if (t
->dest_is_sock
)
1413 shutdown(t
->dest
, SHUT_WR
);
1416 transfer_debug("Closed %s.", t
->dest_name
);
1421 * Tries to read data from source into buffer. If buffer is full,
1422 * no data is read. Returns 0 on success, -1 on error.
1424 static int udt_do_read(struct unidirectional_transfer
*t
)
1428 if (t
->bufuse
== BUFFERSIZE
)
1429 return 0; /* No space for more. */
1431 transfer_debug("%s is readable", t
->src_name
);
1432 bytes
= xread(t
->src
, t
->buf
+ t
->bufuse
, BUFFERSIZE
- t
->bufuse
);
1434 error_errno(_("read(%s) failed"), t
->src_name
);
1436 } else if (bytes
== 0) {
1437 transfer_debug("%s EOF (with %i bytes in buffer)",
1438 t
->src_name
, (int)t
->bufuse
);
1439 t
->state
= SSTATE_FLUSHING
;
1442 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1443 (int)bytes
, t
->src_name
, (int)t
->bufuse
);
1448 /* Tries to write data from buffer into destination. If buffer is empty,
1449 * no data is written. Returns 0 on success, -1 on error.
1451 static int udt_do_write(struct unidirectional_transfer
*t
)
1456 return 0; /* Nothing to write. */
1458 transfer_debug("%s is writable", t
->dest_name
);
1459 bytes
= xwrite(t
->dest
, t
->buf
, t
->bufuse
);
1461 error_errno(_("write(%s) failed"), t
->dest_name
);
1463 } else if (bytes
> 0) {
1466 memmove(t
->buf
, t
->buf
+ bytes
, t
->bufuse
);
1467 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1468 (int)bytes
, t
->dest_name
, (int)t
->bufuse
);
1474 /* State of bidirectional transfer loop. */
1475 struct bidirectional_transfer_state
{
1476 /* Direction from program to git. */
1477 struct unidirectional_transfer ptg
;
1478 /* Direction from git to program. */
1479 struct unidirectional_transfer gtp
;
1482 static void *udt_copy_task_routine(void *udt
)
1484 struct unidirectional_transfer
*t
= (struct unidirectional_transfer
*)udt
;
1485 while (t
->state
!= SSTATE_FINISHED
) {
1486 if (STATE_NEEDS_READING(t
->state
))
1489 if (STATE_NEEDS_WRITING(t
->state
))
1490 if (udt_do_write(t
))
1492 if (STATE_NEEDS_CLOSING(t
->state
))
1493 udt_close_if_finished(t
);
1495 return udt
; /* Just some non-NULL value. */
1501 * Join thread, with appropriate errors on failure. Name is name for the
1502 * thread (for error messages). Returns 0 on success, 1 on failure.
1504 static int tloop_join(pthread_t thread
, const char *name
)
1508 err
= pthread_join(thread
, &tret
);
1510 error(_("%s thread failed"), name
);
1514 error(_("%s thread failed to join: %s"), name
, strerror(err
));
1521 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1524 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1526 pthread_t gtp_thread
;
1527 pthread_t ptg_thread
;
1530 err
= pthread_create(>p_thread
, NULL
, udt_copy_task_routine
,
1533 die(_("can't start thread for copying data: %s"), strerror(err
));
1534 err
= pthread_create(&ptg_thread
, NULL
, udt_copy_task_routine
,
1537 die(_("can't start thread for copying data: %s"), strerror(err
));
1539 ret
|= tloop_join(gtp_thread
, "Git to program copy");
1540 ret
|= tloop_join(ptg_thread
, "Program to git copy");
1545 /* Close the source and target (for writing) for transfer. */
1546 static void udt_kill_transfer(struct unidirectional_transfer
*t
)
1548 t
->state
= SSTATE_FINISHED
;
1550 * Socket read end left open isn't a disaster if nobody
1551 * attempts to read from it (mingw compat headers do not
1554 * We can't fully close the socket since otherwise gtp
1555 * task would first close the socket it sends data to
1556 * while closing the ptg file descriptors.
1558 if (!t
->src_is_sock
)
1560 if (t
->dest_is_sock
)
1561 shutdown(t
->dest
, SHUT_WR
);
1567 * Join process, with appropriate errors on failure. Name is name for the
1568 * process (for error messages). Returns 0 on success, 1 on failure.
1570 static int tloop_join(pid_t pid
, const char *name
)
1573 if (waitpid(pid
, &tret
, 0) < 0) {
1574 error_errno(_("%s process failed to wait"), name
);
1577 if (!WIFEXITED(tret
) || WEXITSTATUS(tret
)) {
1578 error(_("%s process failed"), name
);
1585 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1588 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state
*s
)
1593 /* Fork thread #1: git to program. */
1596 die_errno(_("can't start thread for copying data"));
1597 else if (pid1
== 0) {
1598 udt_kill_transfer(&s
->ptg
);
1599 exit(udt_copy_task_routine(&s
->gtp
) ? 0 : 1);
1602 /* Fork thread #2: program to git. */
1605 die_errno(_("can't start thread for copying data"));
1606 else if (pid2
== 0) {
1607 udt_kill_transfer(&s
->gtp
);
1608 exit(udt_copy_task_routine(&s
->ptg
) ? 0 : 1);
1612 * Close both streams in parent as to not interfere with
1613 * end of file detection and wait for both tasks to finish.
1615 udt_kill_transfer(&s
->gtp
);
1616 udt_kill_transfer(&s
->ptg
);
1617 ret
|= tloop_join(pid1
, "Git to program copy");
1618 ret
|= tloop_join(pid2
, "Program to git copy");
1624 * Copies data from stdin to output and from input to stdout simultaneously.
1625 * Additionally filtering through given filter. If filter is NULL, uses
1628 int bidirectional_transfer_loop(int input
, int output
)
1630 struct bidirectional_transfer_state state
;
1632 /* Fill the state fields. */
1633 state
.ptg
.src
= input
;
1635 state
.ptg
.src_is_sock
= (input
== output
);
1636 state
.ptg
.dest_is_sock
= 0;
1637 state
.ptg
.state
= SSTATE_TRANSFERRING
;
1638 state
.ptg
.bufuse
= 0;
1639 state
.ptg
.src_name
= "remote input";
1640 state
.ptg
.dest_name
= "stdout";
1643 state
.gtp
.dest
= output
;
1644 state
.gtp
.src_is_sock
= 0;
1645 state
.gtp
.dest_is_sock
= (input
== output
);
1646 state
.gtp
.state
= SSTATE_TRANSFERRING
;
1647 state
.gtp
.bufuse
= 0;
1648 state
.gtp
.src_name
= "stdin";
1649 state
.gtp
.dest_name
= "remote output";
1651 return tloop_spawnwait_tasks(&state
);
1654 void reject_atomic_push(struct ref
*remote_refs
, int mirror_mode
)
1658 /* Mark other refs as failed */
1659 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
1660 if (!ref
->peer_ref
&& !mirror_mode
)
1663 switch (ref
->status
) {
1664 case REF_STATUS_NONE
:
1666 case REF_STATUS_EXPECTING_REPORT
:
1667 ref
->status
= REF_STATUS_ATOMIC_PUSH_FAILED
;
1670 break; /* do nothing */