remote-helper: check helper status after import/export
[git/mingw/4msysgit.git] / transport-helper.c
blobfe17383481751fe7fbfeca8a4878ff01b21a32dc
1 #include "cache.h"
2 #include "transport.h"
3 #include "quote.h"
4 #include "run-command.h"
5 #include "commit.h"
6 #include "diff.h"
7 #include "revision.h"
8 #include "quote.h"
9 #include "remote.h"
10 #include "string-list.h"
11 #include "thread-utils.h"
12 #include "sigchain.h"
13 #include "argv-array.h"
14 #include "refs.h"
16 static int debug;
18 struct helper_data {
19 const char *name;
20 struct child_process *helper;
21 FILE *out;
22 unsigned fetch : 1,
23 import : 1,
24 bidi_import : 1,
25 export : 1,
26 option : 1,
27 push : 1,
28 connect : 1,
29 signed_tags : 1,
30 check_connectivity : 1,
31 no_disconnect_req : 1,
32 no_private_update : 1;
33 char *export_marks;
34 char *import_marks;
35 /* These go from remote name (as in "list") to private name */
36 struct refspec *refspecs;
37 int refspec_nr;
38 /* Transport options for fetch-pack/send-pack (should one of
39 * those be invoked).
41 struct git_transport_options transport_options;
44 static void sendline(struct helper_data *helper, struct strbuf *buffer)
46 if (debug)
47 fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
48 if (write_in_full(helper->helper->in, buffer->buf, buffer->len)
49 != buffer->len)
50 die_errno("Full write to remote helper failed");
53 static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
55 strbuf_reset(buffer);
56 if (debug)
57 fprintf(stderr, "Debug: Remote helper: Waiting...\n");
58 if (strbuf_getline(buffer, helper, '\n') == EOF) {
59 if (debug)
60 fprintf(stderr, "Debug: Remote helper quit.\n");
61 exit(128);
64 if (debug)
65 fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
66 return 0;
69 static int recvline(struct helper_data *helper, struct strbuf *buffer)
71 return recvline_fh(helper->out, buffer, helper->name);
74 static void xchgline(struct helper_data *helper, struct strbuf *buffer)
76 sendline(helper, buffer);
77 recvline(helper, buffer);
80 static void write_constant(int fd, const char *str)
82 if (debug)
83 fprintf(stderr, "Debug: Remote helper: -> %s", str);
84 if (write_in_full(fd, str, strlen(str)) != strlen(str))
85 die_errno("Full write to remote helper failed");
88 static const char *remove_ext_force(const char *url)
90 if (url) {
91 const char *colon = strchr(url, ':');
92 if (colon && colon[1] == ':')
93 return colon + 2;
95 return url;
98 static void do_take_over(struct transport *transport)
100 struct helper_data *data;
101 data = (struct helper_data *)transport->data;
102 transport_take_over(transport, data->helper);
103 fclose(data->out);
104 free(data);
107 static struct child_process *get_helper(struct transport *transport)
109 struct helper_data *data = transport->data;
110 struct argv_array argv = ARGV_ARRAY_INIT;
111 struct strbuf buf = STRBUF_INIT;
112 struct child_process *helper;
113 const char **refspecs = NULL;
114 int refspec_nr = 0;
115 int refspec_alloc = 0;
116 int duped;
117 int code;
118 char git_dir_buf[sizeof(GIT_DIR_ENVIRONMENT) + PATH_MAX + 1];
119 const char *helper_env[] = {
120 git_dir_buf,
121 NULL
125 if (data->helper)
126 return data->helper;
128 helper = xcalloc(1, sizeof(*helper));
129 helper->in = -1;
130 helper->out = -1;
131 helper->err = 0;
132 argv_array_pushf(&argv, "git-remote-%s", data->name);
133 argv_array_push(&argv, transport->remote->name);
134 argv_array_push(&argv, remove_ext_force(transport->url));
135 helper->argv = argv_array_detach(&argv, NULL);
136 helper->git_cmd = 0;
137 helper->silent_exec_failure = 1;
139 snprintf(git_dir_buf, sizeof(git_dir_buf), "%s=%s", GIT_DIR_ENVIRONMENT, get_git_dir());
140 helper->env = helper_env;
142 code = start_command(helper);
143 if (code < 0 && errno == ENOENT)
144 die("Unable to find remote helper for '%s'", data->name);
145 else if (code != 0)
146 exit(code);
148 data->helper = helper;
149 data->no_disconnect_req = 0;
152 * Open the output as FILE* so strbuf_getline() can be used.
153 * Do this with duped fd because fclose() will close the fd,
154 * and stuff like taking over will require the fd to remain.
156 duped = dup(helper->out);
157 if (duped < 0)
158 die_errno("Can't dup helper output fd");
159 data->out = xfdopen(duped, "r");
161 write_constant(helper->in, "capabilities\n");
163 while (1) {
164 const char *capname;
165 int mandatory = 0;
166 recvline(data, &buf);
168 if (!*buf.buf)
169 break;
171 if (*buf.buf == '*') {
172 capname = buf.buf + 1;
173 mandatory = 1;
174 } else
175 capname = buf.buf;
177 if (debug)
178 fprintf(stderr, "Debug: Got cap %s\n", capname);
179 if (!strcmp(capname, "fetch"))
180 data->fetch = 1;
181 else if (!strcmp(capname, "option"))
182 data->option = 1;
183 else if (!strcmp(capname, "push"))
184 data->push = 1;
185 else if (!strcmp(capname, "import"))
186 data->import = 1;
187 else if (!strcmp(capname, "bidi-import"))
188 data->bidi_import = 1;
189 else if (!strcmp(capname, "export"))
190 data->export = 1;
191 else if (!strcmp(capname, "check-connectivity"))
192 data->check_connectivity = 1;
193 else if (!data->refspecs && starts_with(capname, "refspec ")) {
194 ALLOC_GROW(refspecs,
195 refspec_nr + 1,
196 refspec_alloc);
197 refspecs[refspec_nr++] = xstrdup(capname + strlen("refspec "));
198 } else if (!strcmp(capname, "connect")) {
199 data->connect = 1;
200 } else if (!strcmp(capname, "signed-tags")) {
201 data->signed_tags = 1;
202 } else if (starts_with(capname, "export-marks ")) {
203 struct strbuf arg = STRBUF_INIT;
204 strbuf_addstr(&arg, "--export-marks=");
205 strbuf_addstr(&arg, capname + strlen("export-marks "));
206 data->export_marks = strbuf_detach(&arg, NULL);
207 } else if (starts_with(capname, "import-marks")) {
208 struct strbuf arg = STRBUF_INIT;
209 strbuf_addstr(&arg, "--import-marks=");
210 strbuf_addstr(&arg, capname + strlen("import-marks "));
211 data->import_marks = strbuf_detach(&arg, NULL);
212 } else if (starts_with(capname, "no-private-update")) {
213 data->no_private_update = 1;
214 } else if (mandatory) {
215 die("Unknown mandatory capability %s. This remote "
216 "helper probably needs newer version of Git.",
217 capname);
220 if (refspecs) {
221 int i;
222 data->refspec_nr = refspec_nr;
223 data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
224 for (i = 0; i < refspec_nr; i++)
225 free((char *)refspecs[i]);
226 free(refspecs);
227 } else if (data->import || data->bidi_import || data->export) {
228 warning("This remote helper should implement refspec capability.");
230 strbuf_release(&buf);
231 if (debug)
232 fprintf(stderr, "Debug: Capabilities complete.\n");
233 return data->helper;
236 static int disconnect_helper(struct transport *transport)
238 struct helper_data *data = transport->data;
239 int res = 0;
241 if (data->helper) {
242 if (debug)
243 fprintf(stderr, "Debug: Disconnecting.\n");
244 if (!data->no_disconnect_req) {
246 * Ignore write errors; there's nothing we can do,
247 * since we're about to close the pipe anyway. And the
248 * most likely error is EPIPE due to the helper dying
249 * to report an error itself.
251 sigchain_push(SIGPIPE, SIG_IGN);
252 xwrite(data->helper->in, "\n", 1);
253 sigchain_pop(SIGPIPE);
255 close(data->helper->in);
256 close(data->helper->out);
257 fclose(data->out);
258 res = finish_command(data->helper);
259 argv_array_free_detached(data->helper->argv);
260 free(data->helper);
261 data->helper = NULL;
263 return res;
266 static const char *unsupported_options[] = {
267 TRANS_OPT_UPLOADPACK,
268 TRANS_OPT_RECEIVEPACK,
269 TRANS_OPT_THIN,
270 TRANS_OPT_KEEP
273 static const char *boolean_options[] = {
274 TRANS_OPT_THIN,
275 TRANS_OPT_KEEP,
276 TRANS_OPT_FOLLOWTAGS
279 static int set_helper_option(struct transport *transport,
280 const char *name, const char *value)
282 struct helper_data *data = transport->data;
283 struct strbuf buf = STRBUF_INIT;
284 int i, ret, is_bool = 0;
286 get_helper(transport);
288 if (!data->option)
289 return 1;
291 for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
292 if (!strcmp(name, unsupported_options[i]))
293 return 1;
296 for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
297 if (!strcmp(name, boolean_options[i])) {
298 is_bool = 1;
299 break;
303 strbuf_addf(&buf, "option %s ", name);
304 if (is_bool)
305 strbuf_addstr(&buf, value ? "true" : "false");
306 else
307 quote_c_style(value, &buf, NULL, 0);
308 strbuf_addch(&buf, '\n');
310 xchgline(data, &buf);
312 if (!strcmp(buf.buf, "ok"))
313 ret = 0;
314 else if (starts_with(buf.buf, "error")) {
315 ret = -1;
316 } else if (!strcmp(buf.buf, "unsupported"))
317 ret = 1;
318 else {
319 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
320 ret = 1;
322 strbuf_release(&buf);
323 return ret;
326 static void standard_options(struct transport *t)
328 char buf[16];
329 int n;
330 int v = t->verbose;
332 set_helper_option(t, "progress", t->progress ? "true" : "false");
334 n = snprintf(buf, sizeof(buf), "%d", v + 1);
335 if (n >= sizeof(buf))
336 die("impossibly large verbosity value");
337 set_helper_option(t, "verbosity", buf);
340 static int release_helper(struct transport *transport)
342 int res = 0;
343 struct helper_data *data = transport->data;
344 free_refspec(data->refspec_nr, data->refspecs);
345 data->refspecs = NULL;
346 res = disconnect_helper(transport);
347 free(transport->data);
348 return res;
351 static int fetch_with_fetch(struct transport *transport,
352 int nr_heads, struct ref **to_fetch)
354 struct helper_data *data = transport->data;
355 int i;
356 struct strbuf buf = STRBUF_INIT;
358 standard_options(transport);
359 if (data->check_connectivity &&
360 data->transport_options.check_self_contained_and_connected)
361 set_helper_option(transport, "check-connectivity", "true");
363 if (transport->cloning)
364 set_helper_option(transport, "cloning", "true");
366 if (data->transport_options.update_shallow)
367 set_helper_option(transport, "update-shallow", "true");
369 for (i = 0; i < nr_heads; i++) {
370 const struct ref *posn = to_fetch[i];
371 if (posn->status & REF_STATUS_UPTODATE)
372 continue;
374 strbuf_addf(&buf, "fetch %s %s\n",
375 sha1_to_hex(posn->old_sha1), posn->name);
378 strbuf_addch(&buf, '\n');
379 sendline(data, &buf);
381 while (1) {
382 recvline(data, &buf);
384 if (starts_with(buf.buf, "lock ")) {
385 const char *name = buf.buf + 5;
386 if (transport->pack_lockfile)
387 warning("%s also locked %s", data->name, name);
388 else
389 transport->pack_lockfile = xstrdup(name);
391 else if (data->check_connectivity &&
392 data->transport_options.check_self_contained_and_connected &&
393 !strcmp(buf.buf, "connectivity-ok"))
394 data->transport_options.self_contained_and_connected = 1;
395 else if (!buf.len)
396 break;
397 else
398 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
400 strbuf_release(&buf);
401 return 0;
404 static int get_importer(struct transport *transport, struct child_process *fastimport)
406 struct child_process *helper = get_helper(transport);
407 struct helper_data *data = transport->data;
408 struct argv_array argv = ARGV_ARRAY_INIT;
409 int cat_blob_fd, code;
410 memset(fastimport, 0, sizeof(*fastimport));
411 fastimport->in = helper->out;
412 argv_array_push(&argv, "fast-import");
413 argv_array_push(&argv, debug ? "--stats" : "--quiet");
415 if (data->bidi_import) {
416 cat_blob_fd = xdup(helper->in);
417 argv_array_pushf(&argv, "--cat-blob-fd=%d", cat_blob_fd);
419 fastimport->argv = argv.argv;
420 fastimport->git_cmd = 1;
422 code = start_command(fastimport);
423 return code;
426 static int get_exporter(struct transport *transport,
427 struct child_process *fastexport,
428 struct string_list *revlist_args)
430 struct helper_data *data = transport->data;
431 struct child_process *helper = get_helper(transport);
432 int argc = 0, i;
433 memset(fastexport, 0, sizeof(*fastexport));
435 /* we need to duplicate helper->in because we want to use it after
436 * fastexport is done with it. */
437 fastexport->out = dup(helper->in);
438 fastexport->argv = xcalloc(7 + revlist_args->nr, sizeof(*fastexport->argv));
439 fastexport->argv[argc++] = "fast-export";
440 fastexport->argv[argc++] = "--use-done-feature";
441 fastexport->argv[argc++] = data->signed_tags ?
442 "--signed-tags=verbatim" : "--signed-tags=warn-strip";
443 if (data->export_marks)
444 fastexport->argv[argc++] = data->export_marks;
445 if (data->import_marks)
446 fastexport->argv[argc++] = data->import_marks;
448 for (i = 0; i < revlist_args->nr; i++)
449 fastexport->argv[argc++] = revlist_args->items[i].string;
451 fastexport->argv[argc++] = "--";
453 fastexport->git_cmd = 1;
454 return start_command(fastexport);
457 static void check_helper_status(struct helper_data *data)
459 int pid, status;
461 pid = waitpid(data->helper->pid, &status, WNOHANG);
462 if (pid < 0)
463 die("Could not retrieve status of remote helper '%s'",
464 data->name);
465 if (pid > 0 && WIFEXITED(status))
466 die("Remote helper '%s' died with %d",
467 data->name, WEXITSTATUS(status));
470 static int fetch_with_import(struct transport *transport,
471 int nr_heads, struct ref **to_fetch)
473 struct child_process fastimport;
474 struct helper_data *data = transport->data;
475 int i;
476 struct ref *posn;
477 struct strbuf buf = STRBUF_INIT;
479 get_helper(transport);
481 if (get_importer(transport, &fastimport))
482 die("Couldn't run fast-import");
484 for (i = 0; i < nr_heads; i++) {
485 posn = to_fetch[i];
486 if (posn->status & REF_STATUS_UPTODATE)
487 continue;
489 strbuf_addf(&buf, "import %s\n", posn->name);
490 sendline(data, &buf);
491 strbuf_reset(&buf);
494 write_constant(data->helper->in, "\n");
496 * remote-helpers that advertise the bidi-import capability are required to
497 * buffer the complete batch of import commands until this newline before
498 * sending data to fast-import.
499 * These helpers read back data from fast-import on their stdin, which could
500 * be mixed with import commands, otherwise.
503 if (finish_command(&fastimport))
504 die("Error while running fast-import");
505 argv_array_free_detached(fastimport.argv);
506 check_helper_status(data);
509 * The fast-import stream of a remote helper that advertises
510 * the "refspec" capability writes to the refs named after the
511 * right hand side of the first refspec matching each ref we
512 * were fetching.
514 * (If no "refspec" capability was specified, for historical
515 * reasons we default to the equivalent of *:*.)
517 * Store the result in to_fetch[i].old_sha1. Callers such
518 * as "git fetch" can use the value to write feedback to the
519 * terminal, populate FETCH_HEAD, and determine what new value
520 * should be written to peer_ref if the update is a
521 * fast-forward or this is a forced update.
523 for (i = 0; i < nr_heads; i++) {
524 char *private;
525 posn = to_fetch[i];
526 if (posn->status & REF_STATUS_UPTODATE)
527 continue;
528 if (data->refspecs)
529 private = apply_refspecs(data->refspecs, data->refspec_nr, posn->name);
530 else
531 private = xstrdup(posn->name);
532 if (private) {
533 read_ref(private, posn->old_sha1);
534 free(private);
537 strbuf_release(&buf);
538 return 0;
541 static int process_connect_service(struct transport *transport,
542 const char *name, const char *exec)
544 struct helper_data *data = transport->data;
545 struct strbuf cmdbuf = STRBUF_INIT;
546 struct child_process *helper;
547 int r, duped, ret = 0;
548 FILE *input;
550 helper = get_helper(transport);
553 * Yes, dup the pipe another time, as we need unbuffered version
554 * of input pipe as FILE*. fclose() closes the underlying fd and
555 * stream buffering only can be changed before first I/O operation
556 * on it.
558 duped = dup(helper->out);
559 if (duped < 0)
560 die_errno("Can't dup helper output fd");
561 input = xfdopen(duped, "r");
562 setvbuf(input, NULL, _IONBF, 0);
565 * Handle --upload-pack and friends. This is fire and forget...
566 * just warn if it fails.
568 if (strcmp(name, exec)) {
569 r = set_helper_option(transport, "servpath", exec);
570 if (r > 0)
571 warning("Setting remote service path not supported by protocol.");
572 else if (r < 0)
573 warning("Invalid remote service path.");
576 if (data->connect)
577 strbuf_addf(&cmdbuf, "connect %s\n", name);
578 else
579 goto exit;
581 sendline(data, &cmdbuf);
582 recvline_fh(input, &cmdbuf, name);
583 if (!strcmp(cmdbuf.buf, "")) {
584 data->no_disconnect_req = 1;
585 if (debug)
586 fprintf(stderr, "Debug: Smart transport connection "
587 "ready.\n");
588 ret = 1;
589 } else if (!strcmp(cmdbuf.buf, "fallback")) {
590 if (debug)
591 fprintf(stderr, "Debug: Falling back to dumb "
592 "transport.\n");
593 } else
594 die("Unknown response to connect: %s",
595 cmdbuf.buf);
597 exit:
598 fclose(input);
599 return ret;
602 static int process_connect(struct transport *transport,
603 int for_push)
605 struct helper_data *data = transport->data;
606 const char *name;
607 const char *exec;
609 name = for_push ? "git-receive-pack" : "git-upload-pack";
610 if (for_push)
611 exec = data->transport_options.receivepack;
612 else
613 exec = data->transport_options.uploadpack;
615 return process_connect_service(transport, name, exec);
618 static int connect_helper(struct transport *transport, const char *name,
619 const char *exec, int fd[2])
621 struct helper_data *data = transport->data;
623 /* Get_helper so connect is inited. */
624 get_helper(transport);
625 if (!data->connect)
626 die("Operation not supported by protocol.");
628 if (!process_connect_service(transport, name, exec))
629 die("Can't connect to subservice %s.", name);
631 fd[0] = data->helper->out;
632 fd[1] = data->helper->in;
633 return 0;
636 static int fetch(struct transport *transport,
637 int nr_heads, struct ref **to_fetch)
639 struct helper_data *data = transport->data;
640 int i, count;
642 if (process_connect(transport, 0)) {
643 do_take_over(transport);
644 return transport->fetch(transport, nr_heads, to_fetch);
647 count = 0;
648 for (i = 0; i < nr_heads; i++)
649 if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
650 count++;
652 if (!count)
653 return 0;
655 if (data->fetch)
656 return fetch_with_fetch(transport, nr_heads, to_fetch);
658 if (data->import)
659 return fetch_with_import(transport, nr_heads, to_fetch);
661 return -1;
664 static int push_update_ref_status(struct strbuf *buf,
665 struct ref **ref,
666 struct ref *remote_refs)
668 char *refname, *msg;
669 int status;
671 if (starts_with(buf->buf, "ok ")) {
672 status = REF_STATUS_OK;
673 refname = buf->buf + 3;
674 } else if (starts_with(buf->buf, "error ")) {
675 status = REF_STATUS_REMOTE_REJECT;
676 refname = buf->buf + 6;
677 } else
678 die("expected ok/error, helper said '%s'", buf->buf);
680 msg = strchr(refname, ' ');
681 if (msg) {
682 struct strbuf msg_buf = STRBUF_INIT;
683 const char *end;
685 *msg++ = '\0';
686 if (!unquote_c_style(&msg_buf, msg, &end))
687 msg = strbuf_detach(&msg_buf, NULL);
688 else
689 msg = xstrdup(msg);
690 strbuf_release(&msg_buf);
692 if (!strcmp(msg, "no match")) {
693 status = REF_STATUS_NONE;
694 free(msg);
695 msg = NULL;
697 else if (!strcmp(msg, "up to date")) {
698 status = REF_STATUS_UPTODATE;
699 free(msg);
700 msg = NULL;
702 else if (!strcmp(msg, "non-fast forward")) {
703 status = REF_STATUS_REJECT_NONFASTFORWARD;
704 free(msg);
705 msg = NULL;
707 else if (!strcmp(msg, "already exists")) {
708 status = REF_STATUS_REJECT_ALREADY_EXISTS;
709 free(msg);
710 msg = NULL;
712 else if (!strcmp(msg, "fetch first")) {
713 status = REF_STATUS_REJECT_FETCH_FIRST;
714 free(msg);
715 msg = NULL;
717 else if (!strcmp(msg, "needs force")) {
718 status = REF_STATUS_REJECT_NEEDS_FORCE;
719 free(msg);
720 msg = NULL;
722 else if (!strcmp(msg, "stale info")) {
723 status = REF_STATUS_REJECT_STALE;
724 free(msg);
725 msg = NULL;
729 if (*ref)
730 *ref = find_ref_by_name(*ref, refname);
731 if (!*ref)
732 *ref = find_ref_by_name(remote_refs, refname);
733 if (!*ref) {
734 warning("helper reported unexpected status of %s", refname);
735 return 1;
738 if ((*ref)->status != REF_STATUS_NONE) {
740 * Earlier, the ref was marked not to be pushed, so ignore the ref
741 * status reported by the remote helper if the latter is 'no match'.
743 if (status == REF_STATUS_NONE)
744 return 1;
747 (*ref)->status = status;
748 (*ref)->remote_status = msg;
749 return !(status == REF_STATUS_OK);
752 static void push_update_refs_status(struct helper_data *data,
753 struct ref *remote_refs)
755 struct strbuf buf = STRBUF_INIT;
756 struct ref *ref = remote_refs;
757 for (;;) {
758 char *private;
760 recvline(data, &buf);
761 if (!buf.len)
762 break;
764 if (push_update_ref_status(&buf, &ref, remote_refs))
765 continue;
767 if (!data->refspecs || data->no_private_update)
768 continue;
770 /* propagate back the update to the remote namespace */
771 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
772 if (!private)
773 continue;
774 update_ref("update by helper", private, ref->new_sha1, NULL, 0, 0);
775 free(private);
777 strbuf_release(&buf);
780 static int push_refs_with_push(struct transport *transport,
781 struct ref *remote_refs, int flags)
783 int force_all = flags & TRANSPORT_PUSH_FORCE;
784 int mirror = flags & TRANSPORT_PUSH_MIRROR;
785 struct helper_data *data = transport->data;
786 struct strbuf buf = STRBUF_INIT;
787 struct ref *ref;
788 struct string_list cas_options = STRING_LIST_INIT_DUP;
789 struct string_list_item *cas_option;
791 get_helper(transport);
792 if (!data->push)
793 return 1;
795 for (ref = remote_refs; ref; ref = ref->next) {
796 if (!ref->peer_ref && !mirror)
797 continue;
799 /* Check for statuses set by set_ref_status_for_push() */
800 switch (ref->status) {
801 case REF_STATUS_REJECT_NONFASTFORWARD:
802 case REF_STATUS_REJECT_STALE:
803 case REF_STATUS_REJECT_ALREADY_EXISTS:
804 case REF_STATUS_UPTODATE:
805 continue;
806 default:
807 ; /* do nothing */
810 if (force_all)
811 ref->force = 1;
813 strbuf_addstr(&buf, "push ");
814 if (!ref->deletion) {
815 if (ref->force)
816 strbuf_addch(&buf, '+');
817 if (ref->peer_ref)
818 strbuf_addstr(&buf, ref->peer_ref->name);
819 else
820 strbuf_addstr(&buf, sha1_to_hex(ref->new_sha1));
822 strbuf_addch(&buf, ':');
823 strbuf_addstr(&buf, ref->name);
824 strbuf_addch(&buf, '\n');
827 * The "--force-with-lease" options without explicit
828 * values to expect have already been expanded into
829 * the ref->old_sha1_expect[] field; we can ignore
830 * transport->smart_options->cas altogether and instead
831 * can enumerate them from the refs.
833 if (ref->expect_old_sha1) {
834 struct strbuf cas = STRBUF_INIT;
835 strbuf_addf(&cas, "%s:%s",
836 ref->name, sha1_to_hex(ref->old_sha1_expect));
837 string_list_append(&cas_options, strbuf_detach(&cas, NULL));
840 if (buf.len == 0) {
841 string_list_clear(&cas_options, 0);
842 return 0;
845 standard_options(transport);
846 for_each_string_list_item(cas_option, &cas_options)
847 set_helper_option(transport, "cas", cas_option->string);
849 if (flags & TRANSPORT_PUSH_DRY_RUN) {
850 if (set_helper_option(transport, "dry-run", "true") != 0)
851 die("helper %s does not support dry-run", data->name);
854 strbuf_addch(&buf, '\n');
855 sendline(data, &buf);
856 strbuf_release(&buf);
858 push_update_refs_status(data, remote_refs);
859 return 0;
862 static int push_refs_with_export(struct transport *transport,
863 struct ref *remote_refs, int flags)
865 struct ref *ref;
866 struct child_process *helper, exporter;
867 struct helper_data *data = transport->data;
868 struct string_list revlist_args = STRING_LIST_INIT_NODUP;
869 struct strbuf buf = STRBUF_INIT;
871 if (!data->refspecs)
872 die("remote-helper doesn't support push; refspec needed");
874 if (flags & TRANSPORT_PUSH_DRY_RUN) {
875 if (set_helper_option(transport, "dry-run", "true") != 0)
876 die("helper %s does not support dry-run", data->name);
879 helper = get_helper(transport);
881 write_constant(helper->in, "export\n");
883 strbuf_reset(&buf);
885 for (ref = remote_refs; ref; ref = ref->next) {
886 char *private;
887 unsigned char sha1[20];
889 if (ref->deletion)
890 die("remote-helpers do not support ref deletion");
892 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
893 if (private && !get_sha1(private, sha1)) {
894 strbuf_addf(&buf, "^%s", private);
895 string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
896 hashcpy(ref->old_sha1, sha1);
898 free(private);
900 if (ref->deletion)
901 die("remote-helpers do not support ref deletion");
903 if (ref->peer_ref) {
904 if (strcmp(ref->peer_ref->name, ref->name))
905 die("remote-helpers do not support old:new syntax");
906 string_list_append(&revlist_args, ref->peer_ref->name);
910 if (get_exporter(transport, &exporter, &revlist_args))
911 die("Couldn't run fast-export");
913 if (finish_command(&exporter))
914 die("Error while running fast-export");
915 check_helper_status(data);
916 push_update_refs_status(data, remote_refs);
917 return 0;
920 static int push_refs(struct transport *transport,
921 struct ref *remote_refs, int flags)
923 struct helper_data *data = transport->data;
925 if (process_connect(transport, 1)) {
926 do_take_over(transport);
927 return transport->push_refs(transport, remote_refs, flags);
930 if (!remote_refs) {
931 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
932 "Perhaps you should specify a branch such as 'master'.\n");
933 return 0;
936 if (data->push)
937 return push_refs_with_push(transport, remote_refs, flags);
939 if (data->export)
940 return push_refs_with_export(transport, remote_refs, flags);
942 return -1;
946 static int has_attribute(const char *attrs, const char *attr) {
947 int len;
948 if (!attrs)
949 return 0;
951 len = strlen(attr);
952 for (;;) {
953 const char *space = strchrnul(attrs, ' ');
954 if (len == space - attrs && !strncmp(attrs, attr, len))
955 return 1;
956 if (!*space)
957 return 0;
958 attrs = space + 1;
962 static struct ref *get_refs_list(struct transport *transport, int for_push)
964 struct helper_data *data = transport->data;
965 struct child_process *helper;
966 struct ref *ret = NULL;
967 struct ref **tail = &ret;
968 struct ref *posn;
969 struct strbuf buf = STRBUF_INIT;
971 helper = get_helper(transport);
973 if (process_connect(transport, for_push)) {
974 do_take_over(transport);
975 return transport->get_refs_list(transport, for_push);
978 if (data->push && for_push)
979 write_str_in_full(helper->in, "list for-push\n");
980 else
981 write_str_in_full(helper->in, "list\n");
983 while (1) {
984 char *eov, *eon;
985 recvline(data, &buf);
987 if (!*buf.buf)
988 break;
990 eov = strchr(buf.buf, ' ');
991 if (!eov)
992 die("Malformed response in ref list: %s", buf.buf);
993 eon = strchr(eov + 1, ' ');
994 *eov = '\0';
995 if (eon)
996 *eon = '\0';
997 *tail = alloc_ref(eov + 1);
998 if (buf.buf[0] == '@')
999 (*tail)->symref = xstrdup(buf.buf + 1);
1000 else if (buf.buf[0] != '?')
1001 get_sha1_hex(buf.buf, (*tail)->old_sha1);
1002 if (eon) {
1003 if (has_attribute(eon + 1, "unchanged")) {
1004 (*tail)->status |= REF_STATUS_UPTODATE;
1005 read_ref((*tail)->name, (*tail)->old_sha1);
1008 tail = &((*tail)->next);
1010 if (debug)
1011 fprintf(stderr, "Debug: Read ref listing.\n");
1012 strbuf_release(&buf);
1014 for (posn = ret; posn; posn = posn->next)
1015 resolve_remote_symref(posn, ret);
1017 return ret;
1020 int transport_helper_init(struct transport *transport, const char *name)
1022 struct helper_data *data = xcalloc(sizeof(*data), 1);
1023 data->name = name;
1025 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1026 debug = 1;
1028 transport->data = data;
1029 transport->set_option = set_helper_option;
1030 transport->get_refs_list = get_refs_list;
1031 transport->fetch = fetch;
1032 transport->push_refs = push_refs;
1033 transport->disconnect = release_helper;
1034 transport->connect = connect_helper;
1035 transport->smart_options = &(data->transport_options);
1036 return 0;
1040 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1041 * buffer less), so attempt reads and writes with up to that size.
1043 #define BUFFERSIZE 65536
1044 /* This should be enough to hold debugging message. */
1045 #define PBUFFERSIZE 8192
1047 /* Print bidirectional transfer loop debug message. */
1048 __attribute__((format (printf, 1, 2)))
1049 static void transfer_debug(const char *fmt, ...)
1051 va_list args;
1052 char msgbuf[PBUFFERSIZE];
1053 static int debug_enabled = -1;
1055 if (debug_enabled < 0)
1056 debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1057 if (!debug_enabled)
1058 return;
1060 va_start(args, fmt);
1061 vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
1062 va_end(args);
1063 fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
1066 /* Stream state: More data may be coming in this direction. */
1067 #define SSTATE_TRANSFERING 0
1069 * Stream state: No more data coming in this direction, flushing rest of
1070 * data.
1072 #define SSTATE_FLUSHING 1
1073 /* Stream state: Transfer in this direction finished. */
1074 #define SSTATE_FINISHED 2
1076 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
1077 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1078 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1080 /* Unidirectional transfer. */
1081 struct unidirectional_transfer {
1082 /* Source */
1083 int src;
1084 /* Destination */
1085 int dest;
1086 /* Is source socket? */
1087 int src_is_sock;
1088 /* Is destination socket? */
1089 int dest_is_sock;
1090 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1091 int state;
1092 /* Buffer. */
1093 char buf[BUFFERSIZE];
1094 /* Buffer used. */
1095 size_t bufuse;
1096 /* Name of source. */
1097 const char *src_name;
1098 /* Name of destination. */
1099 const char *dest_name;
1102 /* Closes the target (for writing) if transfer has finished. */
1103 static void udt_close_if_finished(struct unidirectional_transfer *t)
1105 if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
1106 t->state = SSTATE_FINISHED;
1107 if (t->dest_is_sock)
1108 shutdown(t->dest, SHUT_WR);
1109 else
1110 close(t->dest);
1111 transfer_debug("Closed %s.", t->dest_name);
1116 * Tries to read read data from source into buffer. If buffer is full,
1117 * no data is read. Returns 0 on success, -1 on error.
1119 static int udt_do_read(struct unidirectional_transfer *t)
1121 ssize_t bytes;
1123 if (t->bufuse == BUFFERSIZE)
1124 return 0; /* No space for more. */
1126 transfer_debug("%s is readable", t->src_name);
1127 bytes = read(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
1128 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1129 errno != EINTR) {
1130 error("read(%s) failed: %s", t->src_name, strerror(errno));
1131 return -1;
1132 } else if (bytes == 0) {
1133 transfer_debug("%s EOF (with %i bytes in buffer)",
1134 t->src_name, (int)t->bufuse);
1135 t->state = SSTATE_FLUSHING;
1136 } else if (bytes > 0) {
1137 t->bufuse += bytes;
1138 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1139 (int)bytes, t->src_name, (int)t->bufuse);
1141 return 0;
1144 /* Tries to write data from buffer into destination. If buffer is empty,
1145 * no data is written. Returns 0 on success, -1 on error.
1147 static int udt_do_write(struct unidirectional_transfer *t)
1149 ssize_t bytes;
1151 if (t->bufuse == 0)
1152 return 0; /* Nothing to write. */
1154 transfer_debug("%s is writable", t->dest_name);
1155 bytes = xwrite(t->dest, t->buf, t->bufuse);
1156 if (bytes < 0 && errno != EWOULDBLOCK) {
1157 error("write(%s) failed: %s", t->dest_name, strerror(errno));
1158 return -1;
1159 } else if (bytes > 0) {
1160 t->bufuse -= bytes;
1161 if (t->bufuse)
1162 memmove(t->buf, t->buf + bytes, t->bufuse);
1163 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1164 (int)bytes, t->dest_name, (int)t->bufuse);
1166 return 0;
1170 /* State of bidirectional transfer loop. */
1171 struct bidirectional_transfer_state {
1172 /* Direction from program to git. */
1173 struct unidirectional_transfer ptg;
1174 /* Direction from git to program. */
1175 struct unidirectional_transfer gtp;
1178 static void *udt_copy_task_routine(void *udt)
1180 struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1181 while (t->state != SSTATE_FINISHED) {
1182 if (STATE_NEEDS_READING(t->state))
1183 if (udt_do_read(t))
1184 return NULL;
1185 if (STATE_NEEDS_WRITING(t->state))
1186 if (udt_do_write(t))
1187 return NULL;
1188 if (STATE_NEEDS_CLOSING(t->state))
1189 udt_close_if_finished(t);
1191 return udt; /* Just some non-NULL value. */
1194 #ifndef NO_PTHREADS
1197 * Join thread, with appropriate errors on failure. Name is name for the
1198 * thread (for error messages). Returns 0 on success, 1 on failure.
1200 static int tloop_join(pthread_t thread, const char *name)
1202 int err;
1203 void *tret;
1204 err = pthread_join(thread, &tret);
1205 if (!tret) {
1206 error("%s thread failed", name);
1207 return 1;
1209 if (err) {
1210 error("%s thread failed to join: %s", name, strerror(err));
1211 return 1;
1213 return 0;
1217 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1218 * -1 on failure.
1220 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1222 pthread_t gtp_thread;
1223 pthread_t ptg_thread;
1224 int err;
1225 int ret = 0;
1226 err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1227 &s->gtp);
1228 if (err)
1229 die("Can't start thread for copying data: %s", strerror(err));
1230 err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1231 &s->ptg);
1232 if (err)
1233 die("Can't start thread for copying data: %s", strerror(err));
1235 ret |= tloop_join(gtp_thread, "Git to program copy");
1236 ret |= tloop_join(ptg_thread, "Program to git copy");
1237 return ret;
1239 #else
1241 /* Close the source and target (for writing) for transfer. */
1242 static void udt_kill_transfer(struct unidirectional_transfer *t)
1244 t->state = SSTATE_FINISHED;
1246 * Socket read end left open isn't a disaster if nobody
1247 * attempts to read from it (mingw compat headers do not
1248 * have SHUT_RD)...
1250 * We can't fully close the socket since otherwise gtp
1251 * task would first close the socket it sends data to
1252 * while closing the ptg file descriptors.
1254 if (!t->src_is_sock)
1255 close(t->src);
1256 if (t->dest_is_sock)
1257 shutdown(t->dest, SHUT_WR);
1258 else
1259 close(t->dest);
1263 * Join process, with appropriate errors on failure. Name is name for the
1264 * process (for error messages). Returns 0 on success, 1 on failure.
1266 static int tloop_join(pid_t pid, const char *name)
1268 int tret;
1269 if (waitpid(pid, &tret, 0) < 0) {
1270 error("%s process failed to wait: %s", name, strerror(errno));
1271 return 1;
1273 if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
1274 error("%s process failed", name);
1275 return 1;
1277 return 0;
1281 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1282 * -1 on failure.
1284 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1286 pid_t pid1, pid2;
1287 int ret = 0;
1289 /* Fork thread #1: git to program. */
1290 pid1 = fork();
1291 if (pid1 < 0)
1292 die_errno("Can't start thread for copying data");
1293 else if (pid1 == 0) {
1294 udt_kill_transfer(&s->ptg);
1295 exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1298 /* Fork thread #2: program to git. */
1299 pid2 = fork();
1300 if (pid2 < 0)
1301 die_errno("Can't start thread for copying data");
1302 else if (pid2 == 0) {
1303 udt_kill_transfer(&s->gtp);
1304 exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1308 * Close both streams in parent as to not interfere with
1309 * end of file detection and wait for both tasks to finish.
1311 udt_kill_transfer(&s->gtp);
1312 udt_kill_transfer(&s->ptg);
1313 ret |= tloop_join(pid1, "Git to program copy");
1314 ret |= tloop_join(pid2, "Program to git copy");
1315 return ret;
1317 #endif
1320 * Copies data from stdin to output and from input to stdout simultaneously.
1321 * Additionally filtering through given filter. If filter is NULL, uses
1322 * identity filter.
1324 int bidirectional_transfer_loop(int input, int output)
1326 struct bidirectional_transfer_state state;
1328 /* Fill the state fields. */
1329 state.ptg.src = input;
1330 state.ptg.dest = 1;
1331 state.ptg.src_is_sock = (input == output);
1332 state.ptg.dest_is_sock = 0;
1333 state.ptg.state = SSTATE_TRANSFERING;
1334 state.ptg.bufuse = 0;
1335 state.ptg.src_name = "remote input";
1336 state.ptg.dest_name = "stdout";
1338 state.gtp.src = 0;
1339 state.gtp.dest = output;
1340 state.gtp.src_is_sock = 0;
1341 state.gtp.dest_is_sock = (input == output);
1342 state.gtp.state = SSTATE_TRANSFERING;
1343 state.gtp.bufuse = 0;
1344 state.gtp.src_name = "stdin";
1345 state.gtp.dest_name = "remote output";
1347 return tloop_spawnwait_tasks(&state);