Merge git://git.bogomips.org/git-svn
[git.git] / transport-helper.c
blob522d79178e2cc4909a5df21fe483946fc3d1ad0e
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"
15 static int debug;
17 struct helper_data {
18 const char *name;
19 struct child_process *helper;
20 FILE *out;
21 unsigned fetch : 1,
22 import : 1,
23 bidi_import : 1,
24 export : 1,
25 option : 1,
26 push : 1,
27 connect : 1,
28 signed_tags : 1,
29 no_disconnect_req : 1;
30 char *export_marks;
31 char *import_marks;
32 /* These go from remote name (as in "list") to private name */
33 struct refspec *refspecs;
34 int refspec_nr;
35 /* Transport options for fetch-pack/send-pack (should one of
36 * those be invoked).
38 struct git_transport_options transport_options;
41 static void sendline(struct helper_data *helper, struct strbuf *buffer)
43 if (debug)
44 fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
45 if (write_in_full(helper->helper->in, buffer->buf, buffer->len)
46 != buffer->len)
47 die_errno("Full write to remote helper failed");
50 static int recvline_fh(FILE *helper, struct strbuf *buffer)
52 strbuf_reset(buffer);
53 if (debug)
54 fprintf(stderr, "Debug: Remote helper: Waiting...\n");
55 if (strbuf_getline(buffer, helper, '\n') == EOF) {
56 if (debug)
57 fprintf(stderr, "Debug: Remote helper quit.\n");
58 exit(128);
61 if (debug)
62 fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
63 return 0;
66 static int recvline(struct helper_data *helper, struct strbuf *buffer)
68 return recvline_fh(helper->out, buffer);
71 static void xchgline(struct helper_data *helper, struct strbuf *buffer)
73 sendline(helper, buffer);
74 recvline(helper, buffer);
77 static void write_constant(int fd, const char *str)
79 if (debug)
80 fprintf(stderr, "Debug: Remote helper: -> %s", str);
81 if (write_in_full(fd, str, strlen(str)) != strlen(str))
82 die_errno("Full write to remote helper failed");
85 static const char *remove_ext_force(const char *url)
87 if (url) {
88 const char *colon = strchr(url, ':');
89 if (colon && colon[1] == ':')
90 return colon + 2;
92 return url;
95 static void do_take_over(struct transport *transport)
97 struct helper_data *data;
98 data = (struct helper_data *)transport->data;
99 transport_take_over(transport, data->helper);
100 fclose(data->out);
101 free(data);
104 static struct child_process *get_helper(struct transport *transport)
106 struct helper_data *data = transport->data;
107 struct argv_array argv = ARGV_ARRAY_INIT;
108 struct strbuf buf = STRBUF_INIT;
109 struct child_process *helper;
110 const char **refspecs = NULL;
111 int refspec_nr = 0;
112 int refspec_alloc = 0;
113 int duped;
114 int code;
115 char git_dir_buf[sizeof(GIT_DIR_ENVIRONMENT) + PATH_MAX + 1];
116 const char *helper_env[] = {
117 git_dir_buf,
118 NULL
122 if (data->helper)
123 return data->helper;
125 helper = xcalloc(1, sizeof(*helper));
126 helper->in = -1;
127 helper->out = -1;
128 helper->err = 0;
129 argv_array_pushf(&argv, "git-remote-%s", data->name);
130 argv_array_push(&argv, transport->remote->name);
131 argv_array_push(&argv, remove_ext_force(transport->url));
132 helper->argv = argv_array_detach(&argv, NULL);
133 helper->git_cmd = 0;
134 helper->silent_exec_failure = 1;
136 snprintf(git_dir_buf, sizeof(git_dir_buf), "%s=%s", GIT_DIR_ENVIRONMENT, get_git_dir());
137 helper->env = helper_env;
139 code = start_command(helper);
140 if (code < 0 && errno == ENOENT)
141 die("Unable to find remote helper for '%s'", data->name);
142 else if (code != 0)
143 exit(code);
145 data->helper = helper;
146 data->no_disconnect_req = 0;
149 * Open the output as FILE* so strbuf_getline() can be used.
150 * Do this with duped fd because fclose() will close the fd,
151 * and stuff like taking over will require the fd to remain.
153 duped = dup(helper->out);
154 if (duped < 0)
155 die_errno("Can't dup helper output fd");
156 data->out = xfdopen(duped, "r");
158 write_constant(helper->in, "capabilities\n");
160 while (1) {
161 const char *capname;
162 int mandatory = 0;
163 recvline(data, &buf);
165 if (!*buf.buf)
166 break;
168 if (*buf.buf == '*') {
169 capname = buf.buf + 1;
170 mandatory = 1;
171 } else
172 capname = buf.buf;
174 if (debug)
175 fprintf(stderr, "Debug: Got cap %s\n", capname);
176 if (!strcmp(capname, "fetch"))
177 data->fetch = 1;
178 else if (!strcmp(capname, "option"))
179 data->option = 1;
180 else if (!strcmp(capname, "push"))
181 data->push = 1;
182 else if (!strcmp(capname, "import"))
183 data->import = 1;
184 else if (!strcmp(capname, "bidi-import"))
185 data->bidi_import = 1;
186 else if (!strcmp(capname, "export"))
187 data->export = 1;
188 else if (!data->refspecs && !prefixcmp(capname, "refspec ")) {
189 ALLOC_GROW(refspecs,
190 refspec_nr + 1,
191 refspec_alloc);
192 refspecs[refspec_nr++] = xstrdup(capname + strlen("refspec "));
193 } else if (!strcmp(capname, "connect")) {
194 data->connect = 1;
195 } else if (!strcmp(capname, "signed-tags")) {
196 data->signed_tags = 1;
197 } else if (!prefixcmp(capname, "export-marks ")) {
198 struct strbuf arg = STRBUF_INIT;
199 strbuf_addstr(&arg, "--export-marks=");
200 strbuf_addstr(&arg, capname + strlen("export-marks "));
201 data->export_marks = strbuf_detach(&arg, NULL);
202 } else if (!prefixcmp(capname, "import-marks")) {
203 struct strbuf arg = STRBUF_INIT;
204 strbuf_addstr(&arg, "--import-marks=");
205 strbuf_addstr(&arg, capname + strlen("import-marks "));
206 data->import_marks = strbuf_detach(&arg, NULL);
207 } else if (mandatory) {
208 die("Unknown mandatory capability %s. This remote "
209 "helper probably needs newer version of Git.",
210 capname);
213 if (refspecs) {
214 int i;
215 data->refspec_nr = refspec_nr;
216 data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
217 for (i = 0; i < refspec_nr; i++)
218 free((char *)refspecs[i]);
219 free(refspecs);
221 strbuf_release(&buf);
222 if (debug)
223 fprintf(stderr, "Debug: Capabilities complete.\n");
224 return data->helper;
227 static int disconnect_helper(struct transport *transport)
229 struct helper_data *data = transport->data;
230 int res = 0;
232 if (data->helper) {
233 if (debug)
234 fprintf(stderr, "Debug: Disconnecting.\n");
235 if (!data->no_disconnect_req) {
237 * Ignore write errors; there's nothing we can do,
238 * since we're about to close the pipe anyway. And the
239 * most likely error is EPIPE due to the helper dying
240 * to report an error itself.
242 sigchain_push(SIGPIPE, SIG_IGN);
243 xwrite(data->helper->in, "\n", 1);
244 sigchain_pop(SIGPIPE);
246 close(data->helper->in);
247 close(data->helper->out);
248 fclose(data->out);
249 res = finish_command(data->helper);
250 argv_array_free_detached(data->helper->argv);
251 free(data->helper);
252 data->helper = NULL;
254 return res;
257 static const char *unsupported_options[] = {
258 TRANS_OPT_UPLOADPACK,
259 TRANS_OPT_RECEIVEPACK,
260 TRANS_OPT_THIN,
261 TRANS_OPT_KEEP
263 static const char *boolean_options[] = {
264 TRANS_OPT_THIN,
265 TRANS_OPT_KEEP,
266 TRANS_OPT_FOLLOWTAGS
269 static int set_helper_option(struct transport *transport,
270 const char *name, const char *value)
272 struct helper_data *data = transport->data;
273 struct strbuf buf = STRBUF_INIT;
274 int i, ret, is_bool = 0;
276 get_helper(transport);
278 if (!data->option)
279 return 1;
281 for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
282 if (!strcmp(name, unsupported_options[i]))
283 return 1;
286 for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
287 if (!strcmp(name, boolean_options[i])) {
288 is_bool = 1;
289 break;
293 strbuf_addf(&buf, "option %s ", name);
294 if (is_bool)
295 strbuf_addstr(&buf, value ? "true" : "false");
296 else
297 quote_c_style(value, &buf, NULL, 0);
298 strbuf_addch(&buf, '\n');
300 xchgline(data, &buf);
302 if (!strcmp(buf.buf, "ok"))
303 ret = 0;
304 else if (!prefixcmp(buf.buf, "error")) {
305 ret = -1;
306 } else if (!strcmp(buf.buf, "unsupported"))
307 ret = 1;
308 else {
309 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
310 ret = 1;
312 strbuf_release(&buf);
313 return ret;
316 static void standard_options(struct transport *t)
318 char buf[16];
319 int n;
320 int v = t->verbose;
322 set_helper_option(t, "progress", t->progress ? "true" : "false");
324 n = snprintf(buf, sizeof(buf), "%d", v + 1);
325 if (n >= sizeof(buf))
326 die("impossibly large verbosity value");
327 set_helper_option(t, "verbosity", buf);
330 static int release_helper(struct transport *transport)
332 int res = 0;
333 struct helper_data *data = transport->data;
334 free_refspec(data->refspec_nr, data->refspecs);
335 data->refspecs = NULL;
336 res = disconnect_helper(transport);
337 free(transport->data);
338 return res;
341 static int fetch_with_fetch(struct transport *transport,
342 int nr_heads, struct ref **to_fetch)
344 struct helper_data *data = transport->data;
345 int i;
346 struct strbuf buf = STRBUF_INIT;
348 standard_options(transport);
350 for (i = 0; i < nr_heads; i++) {
351 const struct ref *posn = to_fetch[i];
352 if (posn->status & REF_STATUS_UPTODATE)
353 continue;
355 strbuf_addf(&buf, "fetch %s %s\n",
356 sha1_to_hex(posn->old_sha1), posn->name);
359 strbuf_addch(&buf, '\n');
360 sendline(data, &buf);
362 while (1) {
363 recvline(data, &buf);
365 if (!prefixcmp(buf.buf, "lock ")) {
366 const char *name = buf.buf + 5;
367 if (transport->pack_lockfile)
368 warning("%s also locked %s", data->name, name);
369 else
370 transport->pack_lockfile = xstrdup(name);
372 else if (!buf.len)
373 break;
374 else
375 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
377 strbuf_release(&buf);
378 return 0;
381 static int get_importer(struct transport *transport, struct child_process *fastimport)
383 struct child_process *helper = get_helper(transport);
384 struct helper_data *data = transport->data;
385 struct argv_array argv = ARGV_ARRAY_INIT;
386 int cat_blob_fd, code;
387 memset(fastimport, 0, sizeof(*fastimport));
388 fastimport->in = helper->out;
389 argv_array_push(&argv, "fast-import");
390 argv_array_push(&argv, debug ? "--stats" : "--quiet");
392 if (data->bidi_import) {
393 cat_blob_fd = xdup(helper->in);
394 argv_array_pushf(&argv, "--cat-blob-fd=%d", cat_blob_fd);
396 fastimport->argv = argv.argv;
397 fastimport->git_cmd = 1;
399 code = start_command(fastimport);
400 return code;
403 static int get_exporter(struct transport *transport,
404 struct child_process *fastexport,
405 struct string_list *revlist_args)
407 struct helper_data *data = transport->data;
408 struct child_process *helper = get_helper(transport);
409 int argc = 0, i;
410 memset(fastexport, 0, sizeof(*fastexport));
412 /* we need to duplicate helper->in because we want to use it after
413 * fastexport is done with it. */
414 fastexport->out = dup(helper->in);
415 fastexport->argv = xcalloc(6 + revlist_args->nr, sizeof(*fastexport->argv));
416 fastexport->argv[argc++] = "fast-export";
417 fastexport->argv[argc++] = "--use-done-feature";
418 fastexport->argv[argc++] = data->signed_tags ?
419 "--signed-tags=verbatim" : "--signed-tags=warn-strip";
420 if (data->export_marks)
421 fastexport->argv[argc++] = data->export_marks;
422 if (data->import_marks)
423 fastexport->argv[argc++] = data->import_marks;
425 for (i = 0; i < revlist_args->nr; i++)
426 fastexport->argv[argc++] = revlist_args->items[i].string;
428 fastexport->git_cmd = 1;
429 return start_command(fastexport);
432 static int fetch_with_import(struct transport *transport,
433 int nr_heads, struct ref **to_fetch)
435 struct child_process fastimport;
436 struct helper_data *data = transport->data;
437 int i;
438 struct ref *posn;
439 struct strbuf buf = STRBUF_INIT;
441 get_helper(transport);
443 if (get_importer(transport, &fastimport))
444 die("Couldn't run fast-import");
446 for (i = 0; i < nr_heads; i++) {
447 posn = to_fetch[i];
448 if (posn->status & REF_STATUS_UPTODATE)
449 continue;
451 strbuf_addf(&buf, "import %s\n", posn->name);
452 sendline(data, &buf);
453 strbuf_reset(&buf);
456 write_constant(data->helper->in, "\n");
458 * remote-helpers that advertise the bidi-import capability are required to
459 * buffer the complete batch of import commands until this newline before
460 * sending data to fast-import.
461 * These helpers read back data from fast-import on their stdin, which could
462 * be mixed with import commands, otherwise.
465 if (finish_command(&fastimport))
466 die("Error while running fast-import");
467 argv_array_free_detached(fastimport.argv);
470 * The fast-import stream of a remote helper that advertises
471 * the "refspec" capability writes to the refs named after the
472 * right hand side of the first refspec matching each ref we
473 * were fetching.
475 * (If no "refspec" capability was specified, for historical
476 * reasons we default to *:*.)
478 * Store the result in to_fetch[i].old_sha1. Callers such
479 * as "git fetch" can use the value to write feedback to the
480 * terminal, populate FETCH_HEAD, and determine what new value
481 * should be written to peer_ref if the update is a
482 * fast-forward or this is a forced update.
484 for (i = 0; i < nr_heads; i++) {
485 char *private;
486 posn = to_fetch[i];
487 if (posn->status & REF_STATUS_UPTODATE)
488 continue;
489 if (data->refspecs)
490 private = apply_refspecs(data->refspecs, data->refspec_nr, posn->name);
491 else
492 private = xstrdup(posn->name);
493 if (private) {
494 read_ref(private, posn->old_sha1);
495 free(private);
498 strbuf_release(&buf);
499 return 0;
502 static int process_connect_service(struct transport *transport,
503 const char *name, const char *exec)
505 struct helper_data *data = transport->data;
506 struct strbuf cmdbuf = STRBUF_INIT;
507 struct child_process *helper;
508 int r, duped, ret = 0;
509 FILE *input;
511 helper = get_helper(transport);
514 * Yes, dup the pipe another time, as we need unbuffered version
515 * of input pipe as FILE*. fclose() closes the underlying fd and
516 * stream buffering only can be changed before first I/O operation
517 * on it.
519 duped = dup(helper->out);
520 if (duped < 0)
521 die_errno("Can't dup helper output fd");
522 input = xfdopen(duped, "r");
523 setvbuf(input, NULL, _IONBF, 0);
526 * Handle --upload-pack and friends. This is fire and forget...
527 * just warn if it fails.
529 if (strcmp(name, exec)) {
530 r = set_helper_option(transport, "servpath", exec);
531 if (r > 0)
532 warning("Setting remote service path not supported by protocol.");
533 else if (r < 0)
534 warning("Invalid remote service path.");
537 if (data->connect)
538 strbuf_addf(&cmdbuf, "connect %s\n", name);
539 else
540 goto exit;
542 sendline(data, &cmdbuf);
543 recvline_fh(input, &cmdbuf);
544 if (!strcmp(cmdbuf.buf, "")) {
545 data->no_disconnect_req = 1;
546 if (debug)
547 fprintf(stderr, "Debug: Smart transport connection "
548 "ready.\n");
549 ret = 1;
550 } else if (!strcmp(cmdbuf.buf, "fallback")) {
551 if (debug)
552 fprintf(stderr, "Debug: Falling back to dumb "
553 "transport.\n");
554 } else
555 die("Unknown response to connect: %s",
556 cmdbuf.buf);
558 exit:
559 fclose(input);
560 return ret;
563 static int process_connect(struct transport *transport,
564 int for_push)
566 struct helper_data *data = transport->data;
567 const char *name;
568 const char *exec;
570 name = for_push ? "git-receive-pack" : "git-upload-pack";
571 if (for_push)
572 exec = data->transport_options.receivepack;
573 else
574 exec = data->transport_options.uploadpack;
576 return process_connect_service(transport, name, exec);
579 static int connect_helper(struct transport *transport, const char *name,
580 const char *exec, int fd[2])
582 struct helper_data *data = transport->data;
584 /* Get_helper so connect is inited. */
585 get_helper(transport);
586 if (!data->connect)
587 die("Operation not supported by protocol.");
589 if (!process_connect_service(transport, name, exec))
590 die("Can't connect to subservice %s.", name);
592 fd[0] = data->helper->out;
593 fd[1] = data->helper->in;
594 return 0;
597 static int fetch(struct transport *transport,
598 int nr_heads, struct ref **to_fetch)
600 struct helper_data *data = transport->data;
601 int i, count;
603 if (process_connect(transport, 0)) {
604 do_take_over(transport);
605 return transport->fetch(transport, nr_heads, to_fetch);
608 count = 0;
609 for (i = 0; i < nr_heads; i++)
610 if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
611 count++;
613 if (!count)
614 return 0;
616 if (data->fetch)
617 return fetch_with_fetch(transport, nr_heads, to_fetch);
619 if (data->import)
620 return fetch_with_import(transport, nr_heads, to_fetch);
622 return -1;
625 static void push_update_ref_status(struct strbuf *buf,
626 struct ref **ref,
627 struct ref *remote_refs)
629 char *refname, *msg;
630 int status;
632 if (!prefixcmp(buf->buf, "ok ")) {
633 status = REF_STATUS_OK;
634 refname = buf->buf + 3;
635 } else if (!prefixcmp(buf->buf, "error ")) {
636 status = REF_STATUS_REMOTE_REJECT;
637 refname = buf->buf + 6;
638 } else
639 die("expected ok/error, helper said '%s'", buf->buf);
641 msg = strchr(refname, ' ');
642 if (msg) {
643 struct strbuf msg_buf = STRBUF_INIT;
644 const char *end;
646 *msg++ = '\0';
647 if (!unquote_c_style(&msg_buf, msg, &end))
648 msg = strbuf_detach(&msg_buf, NULL);
649 else
650 msg = xstrdup(msg);
651 strbuf_release(&msg_buf);
653 if (!strcmp(msg, "no match")) {
654 status = REF_STATUS_NONE;
655 free(msg);
656 msg = NULL;
658 else if (!strcmp(msg, "up to date")) {
659 status = REF_STATUS_UPTODATE;
660 free(msg);
661 msg = NULL;
663 else if (!strcmp(msg, "non-fast forward")) {
664 status = REF_STATUS_REJECT_NONFASTFORWARD;
665 free(msg);
666 msg = NULL;
668 else if (!strcmp(msg, "already exists")) {
669 status = REF_STATUS_REJECT_ALREADY_EXISTS;
670 free(msg);
671 msg = NULL;
673 else if (!strcmp(msg, "fetch first")) {
674 status = REF_STATUS_REJECT_FETCH_FIRST;
675 free(msg);
676 msg = NULL;
678 else if (!strcmp(msg, "needs force")) {
679 status = REF_STATUS_REJECT_NEEDS_FORCE;
680 free(msg);
681 msg = NULL;
685 if (*ref)
686 *ref = find_ref_by_name(*ref, refname);
687 if (!*ref)
688 *ref = find_ref_by_name(remote_refs, refname);
689 if (!*ref) {
690 warning("helper reported unexpected status of %s", refname);
691 return;
694 if ((*ref)->status != REF_STATUS_NONE) {
696 * Earlier, the ref was marked not to be pushed, so ignore the ref
697 * status reported by the remote helper if the latter is 'no match'.
699 if (status == REF_STATUS_NONE)
700 return;
703 (*ref)->status = status;
704 (*ref)->remote_status = msg;
707 static void push_update_refs_status(struct helper_data *data,
708 struct ref *remote_refs)
710 struct strbuf buf = STRBUF_INIT;
711 struct ref *ref = remote_refs;
712 for (;;) {
713 recvline(data, &buf);
714 if (!buf.len)
715 break;
717 push_update_ref_status(&buf, &ref, remote_refs);
719 strbuf_release(&buf);
722 static int push_refs_with_push(struct transport *transport,
723 struct ref *remote_refs, int flags)
725 int force_all = flags & TRANSPORT_PUSH_FORCE;
726 int mirror = flags & TRANSPORT_PUSH_MIRROR;
727 struct helper_data *data = transport->data;
728 struct strbuf buf = STRBUF_INIT;
729 struct ref *ref;
731 get_helper(transport);
732 if (!data->push)
733 return 1;
735 for (ref = remote_refs; ref; ref = ref->next) {
736 if (!ref->peer_ref && !mirror)
737 continue;
739 /* Check for statuses set by set_ref_status_for_push() */
740 switch (ref->status) {
741 case REF_STATUS_REJECT_NONFASTFORWARD:
742 case REF_STATUS_REJECT_ALREADY_EXISTS:
743 case REF_STATUS_UPTODATE:
744 continue;
745 default:
746 ; /* do nothing */
749 if (force_all)
750 ref->force = 1;
752 strbuf_addstr(&buf, "push ");
753 if (!ref->deletion) {
754 if (ref->force)
755 strbuf_addch(&buf, '+');
756 if (ref->peer_ref)
757 strbuf_addstr(&buf, ref->peer_ref->name);
758 else
759 strbuf_addstr(&buf, sha1_to_hex(ref->new_sha1));
761 strbuf_addch(&buf, ':');
762 strbuf_addstr(&buf, ref->name);
763 strbuf_addch(&buf, '\n');
765 if (buf.len == 0)
766 return 0;
768 standard_options(transport);
770 if (flags & TRANSPORT_PUSH_DRY_RUN) {
771 if (set_helper_option(transport, "dry-run", "true") != 0)
772 die("helper %s does not support dry-run", data->name);
775 strbuf_addch(&buf, '\n');
776 sendline(data, &buf);
777 strbuf_release(&buf);
779 push_update_refs_status(data, remote_refs);
780 return 0;
783 static int push_refs_with_export(struct transport *transport,
784 struct ref *remote_refs, int flags)
786 struct ref *ref;
787 struct child_process *helper, exporter;
788 struct helper_data *data = transport->data;
789 struct string_list revlist_args = STRING_LIST_INIT_NODUP;
790 struct strbuf buf = STRBUF_INIT;
792 helper = get_helper(transport);
794 write_constant(helper->in, "export\n");
796 strbuf_reset(&buf);
798 for (ref = remote_refs; ref; ref = ref->next) {
799 char *private;
800 unsigned char sha1[20];
802 if (!data->refspecs)
803 continue;
804 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
805 if (private && !get_sha1(private, sha1)) {
806 strbuf_addf(&buf, "^%s", private);
807 string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
808 hashcpy(ref->old_sha1, sha1);
810 free(private);
812 if (ref->deletion) {
813 die("remote-helpers do not support ref deletion");
816 if (ref->peer_ref)
817 string_list_append(&revlist_args, ref->peer_ref->name);
821 if (get_exporter(transport, &exporter, &revlist_args))
822 die("Couldn't run fast-export");
824 if (finish_command(&exporter))
825 die("Error while running fast-export");
826 push_update_refs_status(data, remote_refs);
827 return 0;
830 static int push_refs(struct transport *transport,
831 struct ref *remote_refs, int flags)
833 struct helper_data *data = transport->data;
835 if (process_connect(transport, 1)) {
836 do_take_over(transport);
837 return transport->push_refs(transport, remote_refs, flags);
840 if (!remote_refs) {
841 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
842 "Perhaps you should specify a branch such as 'master'.\n");
843 return 0;
846 if (data->push)
847 return push_refs_with_push(transport, remote_refs, flags);
849 if (data->export)
850 return push_refs_with_export(transport, remote_refs, flags);
852 return -1;
856 static int has_attribute(const char *attrs, const char *attr) {
857 int len;
858 if (!attrs)
859 return 0;
861 len = strlen(attr);
862 for (;;) {
863 const char *space = strchrnul(attrs, ' ');
864 if (len == space - attrs && !strncmp(attrs, attr, len))
865 return 1;
866 if (!*space)
867 return 0;
868 attrs = space + 1;
872 static struct ref *get_refs_list(struct transport *transport, int for_push)
874 struct helper_data *data = transport->data;
875 struct child_process *helper;
876 struct ref *ret = NULL;
877 struct ref **tail = &ret;
878 struct ref *posn;
879 struct strbuf buf = STRBUF_INIT;
881 helper = get_helper(transport);
883 if (process_connect(transport, for_push)) {
884 do_take_over(transport);
885 return transport->get_refs_list(transport, for_push);
888 if (data->push && for_push)
889 write_str_in_full(helper->in, "list for-push\n");
890 else
891 write_str_in_full(helper->in, "list\n");
893 while (1) {
894 char *eov, *eon;
895 recvline(data, &buf);
897 if (!*buf.buf)
898 break;
900 eov = strchr(buf.buf, ' ');
901 if (!eov)
902 die("Malformed response in ref list: %s", buf.buf);
903 eon = strchr(eov + 1, ' ');
904 *eov = '\0';
905 if (eon)
906 *eon = '\0';
907 *tail = alloc_ref(eov + 1);
908 if (buf.buf[0] == '@')
909 (*tail)->symref = xstrdup(buf.buf + 1);
910 else if (buf.buf[0] != '?')
911 get_sha1_hex(buf.buf, (*tail)->old_sha1);
912 if (eon) {
913 if (has_attribute(eon + 1, "unchanged")) {
914 (*tail)->status |= REF_STATUS_UPTODATE;
915 read_ref((*tail)->name, (*tail)->old_sha1);
918 tail = &((*tail)->next);
920 if (debug)
921 fprintf(stderr, "Debug: Read ref listing.\n");
922 strbuf_release(&buf);
924 for (posn = ret; posn; posn = posn->next)
925 resolve_remote_symref(posn, ret);
927 return ret;
930 int transport_helper_init(struct transport *transport, const char *name)
932 struct helper_data *data = xcalloc(sizeof(*data), 1);
933 data->name = name;
935 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
936 debug = 1;
938 transport->data = data;
939 transport->set_option = set_helper_option;
940 transport->get_refs_list = get_refs_list;
941 transport->fetch = fetch;
942 transport->push_refs = push_refs;
943 transport->disconnect = release_helper;
944 transport->connect = connect_helper;
945 transport->smart_options = &(data->transport_options);
946 return 0;
950 * Linux pipes can buffer 65536 bytes at once (and most platforms can
951 * buffer less), so attempt reads and writes with up to that size.
953 #define BUFFERSIZE 65536
954 /* This should be enough to hold debugging message. */
955 #define PBUFFERSIZE 8192
957 /* Print bidirectional transfer loop debug message. */
958 static void transfer_debug(const char *fmt, ...)
960 va_list args;
961 char msgbuf[PBUFFERSIZE];
962 static int debug_enabled = -1;
964 if (debug_enabled < 0)
965 debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
966 if (!debug_enabled)
967 return;
969 va_start(args, fmt);
970 vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
971 va_end(args);
972 fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
975 /* Stream state: More data may be coming in this direction. */
976 #define SSTATE_TRANSFERING 0
978 * Stream state: No more data coming in this direction, flushing rest of
979 * data.
981 #define SSTATE_FLUSHING 1
982 /* Stream state: Transfer in this direction finished. */
983 #define SSTATE_FINISHED 2
985 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
986 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
987 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
989 /* Unidirectional transfer. */
990 struct unidirectional_transfer {
991 /* Source */
992 int src;
993 /* Destination */
994 int dest;
995 /* Is source socket? */
996 int src_is_sock;
997 /* Is destination socket? */
998 int dest_is_sock;
999 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
1000 int state;
1001 /* Buffer. */
1002 char buf[BUFFERSIZE];
1003 /* Buffer used. */
1004 size_t bufuse;
1005 /* Name of source. */
1006 const char *src_name;
1007 /* Name of destination. */
1008 const char *dest_name;
1011 /* Closes the target (for writing) if transfer has finished. */
1012 static void udt_close_if_finished(struct unidirectional_transfer *t)
1014 if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
1015 t->state = SSTATE_FINISHED;
1016 if (t->dest_is_sock)
1017 shutdown(t->dest, SHUT_WR);
1018 else
1019 close(t->dest);
1020 transfer_debug("Closed %s.", t->dest_name);
1025 * Tries to read read data from source into buffer. If buffer is full,
1026 * no data is read. Returns 0 on success, -1 on error.
1028 static int udt_do_read(struct unidirectional_transfer *t)
1030 ssize_t bytes;
1032 if (t->bufuse == BUFFERSIZE)
1033 return 0; /* No space for more. */
1035 transfer_debug("%s is readable", t->src_name);
1036 bytes = read(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
1037 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1038 errno != EINTR) {
1039 error("read(%s) failed: %s", t->src_name, strerror(errno));
1040 return -1;
1041 } else if (bytes == 0) {
1042 transfer_debug("%s EOF (with %i bytes in buffer)",
1043 t->src_name, t->bufuse);
1044 t->state = SSTATE_FLUSHING;
1045 } else if (bytes > 0) {
1046 t->bufuse += bytes;
1047 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1048 (int)bytes, t->src_name, (int)t->bufuse);
1050 return 0;
1053 /* Tries to write data from buffer into destination. If buffer is empty,
1054 * no data is written. Returns 0 on success, -1 on error.
1056 static int udt_do_write(struct unidirectional_transfer *t)
1058 ssize_t bytes;
1060 if (t->bufuse == 0)
1061 return 0; /* Nothing to write. */
1063 transfer_debug("%s is writable", t->dest_name);
1064 bytes = write(t->dest, t->buf, t->bufuse);
1065 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1066 errno != EINTR) {
1067 error("write(%s) failed: %s", t->dest_name, strerror(errno));
1068 return -1;
1069 } else if (bytes > 0) {
1070 t->bufuse -= bytes;
1071 if (t->bufuse)
1072 memmove(t->buf, t->buf + bytes, t->bufuse);
1073 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1074 (int)bytes, t->dest_name, (int)t->bufuse);
1076 return 0;
1080 /* State of bidirectional transfer loop. */
1081 struct bidirectional_transfer_state {
1082 /* Direction from program to git. */
1083 struct unidirectional_transfer ptg;
1084 /* Direction from git to program. */
1085 struct unidirectional_transfer gtp;
1088 static void *udt_copy_task_routine(void *udt)
1090 struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1091 while (t->state != SSTATE_FINISHED) {
1092 if (STATE_NEEDS_READING(t->state))
1093 if (udt_do_read(t))
1094 return NULL;
1095 if (STATE_NEEDS_WRITING(t->state))
1096 if (udt_do_write(t))
1097 return NULL;
1098 if (STATE_NEEDS_CLOSING(t->state))
1099 udt_close_if_finished(t);
1101 return udt; /* Just some non-NULL value. */
1104 #ifndef NO_PTHREADS
1107 * Join thread, with apporiate errors on failure. Name is name for the
1108 * thread (for error messages). Returns 0 on success, 1 on failure.
1110 static int tloop_join(pthread_t thread, const char *name)
1112 int err;
1113 void *tret;
1114 err = pthread_join(thread, &tret);
1115 if (!tret) {
1116 error("%s thread failed", name);
1117 return 1;
1119 if (err) {
1120 error("%s thread failed to join: %s", name, strerror(err));
1121 return 1;
1123 return 0;
1127 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1128 * -1 on failure.
1130 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1132 pthread_t gtp_thread;
1133 pthread_t ptg_thread;
1134 int err;
1135 int ret = 0;
1136 err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1137 &s->gtp);
1138 if (err)
1139 die("Can't start thread for copying data: %s", strerror(err));
1140 err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1141 &s->ptg);
1142 if (err)
1143 die("Can't start thread for copying data: %s", strerror(err));
1145 ret |= tloop_join(gtp_thread, "Git to program copy");
1146 ret |= tloop_join(ptg_thread, "Program to git copy");
1147 return ret;
1149 #else
1151 /* Close the source and target (for writing) for transfer. */
1152 static void udt_kill_transfer(struct unidirectional_transfer *t)
1154 t->state = SSTATE_FINISHED;
1156 * Socket read end left open isn't a disaster if nobody
1157 * attempts to read from it (mingw compat headers do not
1158 * have SHUT_RD)...
1160 * We can't fully close the socket since otherwise gtp
1161 * task would first close the socket it sends data to
1162 * while closing the ptg file descriptors.
1164 if (!t->src_is_sock)
1165 close(t->src);
1166 if (t->dest_is_sock)
1167 shutdown(t->dest, SHUT_WR);
1168 else
1169 close(t->dest);
1173 * Join process, with apporiate errors on failure. Name is name for the
1174 * process (for error messages). Returns 0 on success, 1 on failure.
1176 static int tloop_join(pid_t pid, const char *name)
1178 int tret;
1179 if (waitpid(pid, &tret, 0) < 0) {
1180 error("%s process failed to wait: %s", name, strerror(errno));
1181 return 1;
1183 if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
1184 error("%s process failed", name);
1185 return 1;
1187 return 0;
1191 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1192 * -1 on failure.
1194 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1196 pid_t pid1, pid2;
1197 int ret = 0;
1199 /* Fork thread #1: git to program. */
1200 pid1 = fork();
1201 if (pid1 < 0)
1202 die_errno("Can't start thread for copying data");
1203 else if (pid1 == 0) {
1204 udt_kill_transfer(&s->ptg);
1205 exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1208 /* Fork thread #2: program to git. */
1209 pid2 = fork();
1210 if (pid2 < 0)
1211 die_errno("Can't start thread for copying data");
1212 else if (pid2 == 0) {
1213 udt_kill_transfer(&s->gtp);
1214 exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1218 * Close both streams in parent as to not interfere with
1219 * end of file detection and wait for both tasks to finish.
1221 udt_kill_transfer(&s->gtp);
1222 udt_kill_transfer(&s->ptg);
1223 ret |= tloop_join(pid1, "Git to program copy");
1224 ret |= tloop_join(pid2, "Program to git copy");
1225 return ret;
1227 #endif
1230 * Copies data from stdin to output and from input to stdout simultaneously.
1231 * Additionally filtering through given filter. If filter is NULL, uses
1232 * identity filter.
1234 int bidirectional_transfer_loop(int input, int output)
1236 struct bidirectional_transfer_state state;
1238 /* Fill the state fields. */
1239 state.ptg.src = input;
1240 state.ptg.dest = 1;
1241 state.ptg.src_is_sock = (input == output);
1242 state.ptg.dest_is_sock = 0;
1243 state.ptg.state = SSTATE_TRANSFERING;
1244 state.ptg.bufuse = 0;
1245 state.ptg.src_name = "remote input";
1246 state.ptg.dest_name = "stdout";
1248 state.gtp.src = 0;
1249 state.gtp.dest = output;
1250 state.gtp.src_is_sock = 0;
1251 state.gtp.dest_is_sock = (input == output);
1252 state.gtp.state = SSTATE_TRANSFERING;
1253 state.gtp.bufuse = 0;
1254 state.gtp.src_name = "stdin";
1255 state.gtp.dest_name = "remote output";
1257 return tloop_spawnwait_tasks(&state);