remote-hg: handle another funny author line from http://scelenic.com/hg
[git/dscho.git] / transport-helper.c
blob18b218fdcac0c78990980e05dcfb06ce6ee60894
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"
14 static int debug;
16 struct helper_data {
17 const char *name;
18 struct child_process *helper;
19 FILE *out;
20 unsigned fetch : 1,
21 import : 1,
22 export : 1,
23 option : 1,
24 push : 1,
25 connect : 1,
26 no_disconnect_req : 1;
27 char *export_marks;
28 char *import_marks;
29 /* These go from remote name (as in "list") to private name */
30 struct refspec *refspecs;
31 int refspec_nr;
32 /* Transport options for fetch-pack/send-pack (should one of
33 * those be invoked).
35 struct git_transport_options transport_options;
38 static void sendline(struct helper_data *helper, struct strbuf *buffer)
40 if (debug)
41 fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
42 if (write_in_full(helper->helper->in, buffer->buf, buffer->len)
43 != buffer->len)
44 die_errno("Full write to remote helper failed");
47 static int recvline_fh(FILE *helper, struct strbuf *buffer)
49 strbuf_reset(buffer);
50 if (debug)
51 fprintf(stderr, "Debug: Remote helper: Waiting...\n");
52 if (strbuf_getline(buffer, helper, '\n') == EOF) {
53 if (debug)
54 fprintf(stderr, "Debug: Remote helper quit.\n");
55 exit(128);
58 if (debug)
59 fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
60 return 0;
63 static int recvline(struct helper_data *helper, struct strbuf *buffer)
65 return recvline_fh(helper->out, buffer);
68 static void xchgline(struct helper_data *helper, struct strbuf *buffer)
70 sendline(helper, buffer);
71 recvline(helper, buffer);
74 static void write_constant(int fd, const char *str)
76 if (debug)
77 fprintf(stderr, "Debug: Remote helper: -> %s", str);
78 if (write_in_full(fd, str, strlen(str)) != strlen(str))
79 die_errno("Full write to remote helper failed");
82 static const char *remove_ext_force(const char *url)
84 if (url) {
85 const char *colon = strchr(url, ':');
86 if (colon && colon[1] == ':')
87 return colon + 2;
89 return url;
92 static void do_take_over(struct transport *transport)
94 struct helper_data *data;
95 data = (struct helper_data *)transport->data;
96 transport_take_over(transport, data->helper);
97 fclose(data->out);
98 free(data);
101 static struct child_process *get_helper(struct transport *transport)
103 struct helper_data *data = transport->data;
104 struct strbuf buf = STRBUF_INIT;
105 struct child_process *helper;
106 const char **refspecs = NULL;
107 int refspec_nr = 0;
108 int refspec_alloc = 0;
109 int duped;
110 int code;
111 char git_dir_buf[sizeof(GIT_DIR_ENVIRONMENT) + PATH_MAX + 1];
112 const char *helper_env[] = {
113 git_dir_buf,
114 NULL
118 if (data->helper)
119 return data->helper;
121 helper = xcalloc(1, sizeof(*helper));
122 helper->in = -1;
123 helper->out = -1;
124 helper->err = 0;
125 helper->argv = xcalloc(4, sizeof(*helper->argv));
126 strbuf_addf(&buf, "git-remote-%s", data->name);
127 helper->argv[0] = strbuf_detach(&buf, NULL);
128 helper->argv[1] = transport->remote->name;
129 helper->argv[2] = remove_ext_force(transport->url);
130 helper->git_cmd = 0;
131 helper->silent_exec_failure = 1;
133 snprintf(git_dir_buf, sizeof(git_dir_buf), "%s=%s", GIT_DIR_ENVIRONMENT, get_git_dir());
134 helper->env = helper_env;
136 code = start_command(helper);
137 if (code < 0 && errno == ENOENT)
138 die("Unable to find remote helper for '%s'", data->name);
139 else if (code != 0)
140 exit(code);
142 data->helper = helper;
143 data->no_disconnect_req = 0;
146 * Open the output as FILE* so strbuf_getline() can be used.
147 * Do this with duped fd because fclose() will close the fd,
148 * and stuff like taking over will require the fd to remain.
150 duped = dup(helper->out);
151 if (duped < 0)
152 die_errno("Can't dup helper output fd");
153 data->out = xfdopen(duped, "r");
155 write_constant(helper->in, "capabilities\n");
157 while (1) {
158 const char *capname;
159 int mandatory = 0;
160 recvline(data, &buf);
162 if (!*buf.buf)
163 break;
165 if (*buf.buf == '*') {
166 capname = buf.buf + 1;
167 mandatory = 1;
168 } else
169 capname = buf.buf;
171 if (debug)
172 fprintf(stderr, "Debug: Got cap %s\n", capname);
173 if (!strcmp(capname, "fetch"))
174 data->fetch = 1;
175 else if (!strcmp(capname, "option"))
176 data->option = 1;
177 else if (!strcmp(capname, "push"))
178 data->push = 1;
179 else if (!strcmp(capname, "import"))
180 data->import = 1;
181 else if (!strcmp(capname, "export"))
182 data->export = 1;
183 else if (!data->refspecs && !prefixcmp(capname, "refspec ")) {
184 ALLOC_GROW(refspecs,
185 refspec_nr + 1,
186 refspec_alloc);
187 refspecs[refspec_nr++] = xstrdup(capname + strlen("refspec "));
188 } else if (!strcmp(capname, "connect")) {
189 data->connect = 1;
190 } else if (!prefixcmp(capname, "export-marks ")) {
191 struct strbuf arg = STRBUF_INIT;
192 strbuf_addstr(&arg, "--export-marks=");
193 strbuf_addstr(&arg, capname + strlen("export-marks "));
194 data->export_marks = strbuf_detach(&arg, NULL);
195 } else if (!prefixcmp(capname, "import-marks")) {
196 struct strbuf arg = STRBUF_INIT;
197 strbuf_addstr(&arg, "--import-marks=");
198 strbuf_addstr(&arg, capname + strlen("import-marks "));
199 data->import_marks = strbuf_detach(&arg, NULL);
200 } else if (mandatory) {
201 die("Unknown mandatory capability %s. This remote "
202 "helper probably needs newer version of Git.",
203 capname);
206 if (refspecs) {
207 int i;
208 data->refspec_nr = refspec_nr;
209 data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
210 for (i = 0; i < refspec_nr; i++) {
211 free((char *)refspecs[i]);
213 free(refspecs);
215 strbuf_release(&buf);
216 if (debug)
217 fprintf(stderr, "Debug: Capabilities complete.\n");
218 return data->helper;
221 static int disconnect_helper(struct transport *transport)
223 struct helper_data *data = transport->data;
224 int res = 0;
226 if (data->helper) {
227 if (debug)
228 fprintf(stderr, "Debug: Disconnecting.\n");
229 if (!data->no_disconnect_req) {
231 * Ignore write errors; there's nothing we can do,
232 * since we're about to close the pipe anyway. And the
233 * most likely error is EPIPE due to the helper dying
234 * to report an error itself.
236 sigchain_push(SIGPIPE, SIG_IGN);
237 xwrite(data->helper->in, "\n", 1);
238 sigchain_pop(SIGPIPE);
240 close(data->helper->in);
241 close(data->helper->out);
242 fclose(data->out);
243 res = finish_command(data->helper);
244 free((char *)data->helper->argv[0]);
245 free(data->helper->argv);
246 free(data->helper);
247 data->helper = NULL;
249 return res;
252 static const char *unsupported_options[] = {
253 TRANS_OPT_UPLOADPACK,
254 TRANS_OPT_RECEIVEPACK,
255 TRANS_OPT_THIN,
256 TRANS_OPT_KEEP
258 static const char *boolean_options[] = {
259 TRANS_OPT_THIN,
260 TRANS_OPT_KEEP,
261 TRANS_OPT_FOLLOWTAGS
264 static int set_helper_option(struct transport *transport,
265 const char *name, const char *value)
267 struct helper_data *data = transport->data;
268 struct strbuf buf = STRBUF_INIT;
269 int i, ret, is_bool = 0;
271 get_helper(transport);
273 if (!data->option)
274 return 1;
276 for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
277 if (!strcmp(name, unsupported_options[i]))
278 return 1;
281 for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
282 if (!strcmp(name, boolean_options[i])) {
283 is_bool = 1;
284 break;
288 strbuf_addf(&buf, "option %s ", name);
289 if (is_bool)
290 strbuf_addstr(&buf, value ? "true" : "false");
291 else
292 quote_c_style(value, &buf, NULL, 0);
293 strbuf_addch(&buf, '\n');
295 xchgline(data, &buf);
297 if (!strcmp(buf.buf, "ok"))
298 ret = 0;
299 else if (!prefixcmp(buf.buf, "error")) {
300 ret = -1;
301 } else if (!strcmp(buf.buf, "unsupported"))
302 ret = 1;
303 else {
304 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
305 ret = 1;
307 strbuf_release(&buf);
308 return ret;
311 static void standard_options(struct transport *t)
313 char buf[16];
314 int n;
315 int v = t->verbose;
317 set_helper_option(t, "progress", t->progress ? "true" : "false");
319 n = snprintf(buf, sizeof(buf), "%d", v + 1);
320 if (n >= sizeof(buf))
321 die("impossibly large verbosity value");
322 set_helper_option(t, "verbosity", buf);
325 static int release_helper(struct transport *transport)
327 int res = 0;
328 struct helper_data *data = transport->data;
329 free_refspec(data->refspec_nr, data->refspecs);
330 data->refspecs = NULL;
331 res = disconnect_helper(transport);
332 free(transport->data);
333 return res;
336 static int fetch_with_fetch(struct transport *transport,
337 int nr_heads, struct ref **to_fetch)
339 struct helper_data *data = transport->data;
340 int i;
341 struct strbuf buf = STRBUF_INIT;
343 standard_options(transport);
345 for (i = 0; i < nr_heads; i++) {
346 const struct ref *posn = to_fetch[i];
347 if (posn->status & REF_STATUS_UPTODATE)
348 continue;
350 strbuf_addf(&buf, "fetch %s %s\n",
351 sha1_to_hex(posn->old_sha1), posn->name);
354 strbuf_addch(&buf, '\n');
355 sendline(data, &buf);
357 while (1) {
358 recvline(data, &buf);
360 if (!prefixcmp(buf.buf, "lock ")) {
361 const char *name = buf.buf + 5;
362 if (transport->pack_lockfile)
363 warning("%s also locked %s", data->name, name);
364 else
365 transport->pack_lockfile = xstrdup(name);
367 else if (!buf.len)
368 break;
369 else
370 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
372 strbuf_release(&buf);
373 return 0;
376 static int get_importer(struct transport *transport, struct child_process *fastimport)
378 struct child_process *helper = get_helper(transport);
379 memset(fastimport, 0, sizeof(*fastimport));
380 fastimport->in = helper->out;
381 fastimport->argv = xcalloc(5, sizeof(*fastimport->argv));
382 fastimport->argv[0] = "fast-import";
383 fastimport->argv[1] = "--quiet";
385 fastimport->git_cmd = 1;
386 return start_command(fastimport);
389 static int get_exporter(struct transport *transport,
390 struct child_process *fastexport,
391 struct string_list *revlist_args)
393 struct helper_data *data = transport->data;
394 struct child_process *helper = get_helper(transport);
395 int argc = 0, i;
396 memset(fastexport, 0, sizeof(*fastexport));
398 /* we need to duplicate helper->in because we want to use it after
399 * fastexport is done with it. */
400 fastexport->out = dup(helper->in);
401 fastexport->argv = xcalloc(6 + revlist_args->nr, sizeof(*fastexport->argv));
402 fastexport->argv[argc++] = "fast-export";
403 fastexport->argv[argc++] = "--use-done-feature";
404 if (data->export_marks)
405 fastexport->argv[argc++] = data->export_marks;
406 if (data->import_marks)
407 fastexport->argv[argc++] = data->import_marks;
409 for (i = 0; i < revlist_args->nr; i++)
410 fastexport->argv[argc++] = revlist_args->items[i].string;
412 fastexport->argv[argc++] = "--";
414 fastexport->git_cmd = 1;
415 return start_command(fastexport);
418 static void check_helper_status(struct helper_data *data)
420 int pid, status;
422 pid = waitpid(data->helper->pid, &status, WNOHANG);
423 if (pid < 0)
424 die("Could not retrieve status of remote helper '%s'",
425 data->name);
426 if (pid > 0 && WIFEXITED(status))
427 die("Remote helper '%s' died with %d",
428 data->name, WEXITSTATUS(status));
431 static int fetch_with_import(struct transport *transport,
432 int nr_heads, struct ref **to_fetch)
434 struct child_process fastimport;
435 struct helper_data *data = transport->data;
436 int i;
437 struct ref *posn;
438 struct strbuf buf = STRBUF_INIT;
440 get_helper(transport);
442 if (get_importer(transport, &fastimport))
443 die("Couldn't run fast-import");
445 for (i = 0; i < nr_heads; i++) {
446 posn = to_fetch[i];
447 if (posn->status & REF_STATUS_UPTODATE)
448 continue;
450 strbuf_addf(&buf, "import %s\n", posn->name);
451 sendline(data, &buf);
452 strbuf_reset(&buf);
455 write_constant(data->helper->in, "\n");
457 if (finish_command(&fastimport))
458 die("Error while running fast-import");
459 check_helper_status(data);
461 free(fastimport.argv);
462 fastimport.argv = NULL;
465 * The fast-import stream of a remote helper that advertises
466 * the "refspec" capability writes to the refs named after the
467 * right hand side of the first refspec matching each ref we
468 * were fetching.
470 * (If no "refspec" capability was specified, for historical
471 * reasons we default to *:*.)
473 * Store the result in to_fetch[i].old_sha1. Callers such
474 * as "git fetch" can use the value to write feedback to the
475 * terminal, populate FETCH_HEAD, and determine what new value
476 * should be written to peer_ref if the update is a
477 * fast-forward or this is a forced update.
479 for (i = 0; i < nr_heads; i++) {
480 char *private;
481 posn = to_fetch[i];
482 if (posn->status & REF_STATUS_UPTODATE)
483 continue;
484 if (data->refspecs)
485 private = apply_refspecs(data->refspecs, data->refspec_nr, posn->name);
486 else
487 private = xstrdup(posn->name);
488 if (private) {
489 read_ref(private, posn->old_sha1);
490 free(private);
493 strbuf_release(&buf);
494 return 0;
497 static int process_connect_service(struct transport *transport,
498 const char *name, const char *exec)
500 struct helper_data *data = transport->data;
501 struct strbuf cmdbuf = STRBUF_INIT;
502 struct child_process *helper;
503 int r, duped, ret = 0;
504 FILE *input;
506 helper = get_helper(transport);
509 * Yes, dup the pipe another time, as we need unbuffered version
510 * of input pipe as FILE*. fclose() closes the underlying fd and
511 * stream buffering only can be changed before first I/O operation
512 * on it.
514 duped = dup(helper->out);
515 if (duped < 0)
516 die_errno("Can't dup helper output fd");
517 input = xfdopen(duped, "r");
518 setvbuf(input, NULL, _IONBF, 0);
521 * Handle --upload-pack and friends. This is fire and forget...
522 * just warn if it fails.
524 if (strcmp(name, exec)) {
525 r = set_helper_option(transport, "servpath", exec);
526 if (r > 0)
527 warning("Setting remote service path not supported by protocol.");
528 else if (r < 0)
529 warning("Invalid remote service path.");
532 if (data->connect)
533 strbuf_addf(&cmdbuf, "connect %s\n", name);
534 else
535 goto exit;
537 sendline(data, &cmdbuf);
538 recvline_fh(input, &cmdbuf);
539 if (!strcmp(cmdbuf.buf, "")) {
540 data->no_disconnect_req = 1;
541 if (debug)
542 fprintf(stderr, "Debug: Smart transport connection "
543 "ready.\n");
544 ret = 1;
545 } else if (!strcmp(cmdbuf.buf, "fallback")) {
546 if (debug)
547 fprintf(stderr, "Debug: Falling back to dumb "
548 "transport.\n");
549 } else
550 die("Unknown response to connect: %s",
551 cmdbuf.buf);
553 exit:
554 fclose(input);
555 return ret;
558 static int process_connect(struct transport *transport,
559 int for_push)
561 struct helper_data *data = transport->data;
562 const char *name;
563 const char *exec;
565 name = for_push ? "git-receive-pack" : "git-upload-pack";
566 if (for_push)
567 exec = data->transport_options.receivepack;
568 else
569 exec = data->transport_options.uploadpack;
571 return process_connect_service(transport, name, exec);
574 static int connect_helper(struct transport *transport, const char *name,
575 const char *exec, int fd[2])
577 struct helper_data *data = transport->data;
579 /* Get_helper so connect is inited. */
580 get_helper(transport);
581 if (!data->connect)
582 die("Operation not supported by protocol.");
584 if (!process_connect_service(transport, name, exec))
585 die("Can't connect to subservice %s.", name);
587 fd[0] = data->helper->out;
588 fd[1] = data->helper->in;
589 return 0;
592 static int fetch(struct transport *transport,
593 int nr_heads, struct ref **to_fetch)
595 struct helper_data *data = transport->data;
596 int i, count;
598 if (process_connect(transport, 0)) {
599 do_take_over(transport);
600 return transport->fetch(transport, nr_heads, to_fetch);
603 count = 0;
604 for (i = 0; i < nr_heads; i++)
605 if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
606 count++;
608 if (!count)
609 return 0;
611 if (data->fetch)
612 return fetch_with_fetch(transport, nr_heads, to_fetch);
614 if (data->import)
615 return fetch_with_import(transport, nr_heads, to_fetch);
617 return -1;
620 static void push_update_ref_status(struct strbuf *buf,
621 struct ref **ref,
622 struct ref *remote_refs)
624 char *refname, *msg;
625 int status;
627 if (!prefixcmp(buf->buf, "ok ")) {
628 status = REF_STATUS_OK;
629 refname = buf->buf + 3;
630 } else if (!prefixcmp(buf->buf, "error ")) {
631 status = REF_STATUS_REMOTE_REJECT;
632 refname = buf->buf + 6;
633 } else
634 die("expected ok/error, helper said '%s'", buf->buf);
636 msg = strchr(refname, ' ');
637 if (msg) {
638 struct strbuf msg_buf = STRBUF_INIT;
639 const char *end;
641 *msg++ = '\0';
642 if (!unquote_c_style(&msg_buf, msg, &end))
643 msg = strbuf_detach(&msg_buf, NULL);
644 else
645 msg = xstrdup(msg);
646 strbuf_release(&msg_buf);
648 if (!strcmp(msg, "no match")) {
649 status = REF_STATUS_NONE;
650 free(msg);
651 msg = NULL;
653 else if (!strcmp(msg, "up to date")) {
654 status = REF_STATUS_UPTODATE;
655 free(msg);
656 msg = NULL;
658 else if (!strcmp(msg, "non-fast forward")) {
659 status = REF_STATUS_REJECT_NONFASTFORWARD;
660 free(msg);
661 msg = NULL;
665 if (*ref)
666 *ref = find_ref_by_name(*ref, refname);
667 if (!*ref)
668 *ref = find_ref_by_name(remote_refs, refname);
669 if (!*ref) {
670 warning("helper reported unexpected status of %s", refname);
671 return;
674 if ((*ref)->status != REF_STATUS_NONE) {
676 * Earlier, the ref was marked not to be pushed, so ignore the ref
677 * status reported by the remote helper if the latter is 'no match'.
679 if (status == REF_STATUS_NONE)
680 return;
683 (*ref)->status = status;
684 (*ref)->remote_status = msg;
687 static void push_update_refs_status(struct helper_data *data,
688 struct ref *remote_refs)
690 struct strbuf buf = STRBUF_INIT;
691 struct ref *ref = remote_refs;
692 for (;;) {
693 recvline(data, &buf);
694 if (!buf.len)
695 break;
697 push_update_ref_status(&buf, &ref, remote_refs);
699 strbuf_release(&buf);
702 static int push_refs_with_push(struct transport *transport,
703 struct ref *remote_refs, int flags)
705 int force_all = flags & TRANSPORT_PUSH_FORCE;
706 int mirror = flags & TRANSPORT_PUSH_MIRROR;
707 struct helper_data *data = transport->data;
708 struct strbuf buf = STRBUF_INIT;
709 struct ref *ref;
711 get_helper(transport);
712 if (!data->push)
713 return 1;
715 for (ref = remote_refs; ref; ref = ref->next) {
716 if (!ref->peer_ref && !mirror)
717 continue;
719 /* Check for statuses set by set_ref_status_for_push() */
720 switch (ref->status) {
721 case REF_STATUS_REJECT_NONFASTFORWARD:
722 case REF_STATUS_UPTODATE:
723 continue;
724 default:
725 ; /* do nothing */
728 if (force_all)
729 ref->force = 1;
731 strbuf_addstr(&buf, "push ");
732 if (!ref->deletion) {
733 if (ref->force)
734 strbuf_addch(&buf, '+');
735 if (ref->peer_ref)
736 strbuf_addstr(&buf, ref->peer_ref->name);
737 else
738 strbuf_addstr(&buf, sha1_to_hex(ref->new_sha1));
740 strbuf_addch(&buf, ':');
741 strbuf_addstr(&buf, ref->name);
742 strbuf_addch(&buf, '\n');
744 if (buf.len == 0)
745 return 0;
747 standard_options(transport);
749 if (flags & TRANSPORT_PUSH_DRY_RUN) {
750 if (set_helper_option(transport, "dry-run", "true") != 0)
751 die("helper %s does not support dry-run", data->name);
754 strbuf_addch(&buf, '\n');
755 sendline(data, &buf);
756 strbuf_release(&buf);
758 push_update_refs_status(data, remote_refs);
759 return 0;
762 static int push_refs_with_export(struct transport *transport,
763 struct ref *remote_refs, int flags)
765 struct ref *ref;
766 struct child_process *helper, exporter;
767 struct helper_data *data = transport->data;
768 struct string_list revlist_args = STRING_LIST_INIT_NODUP;
769 struct strbuf buf = STRBUF_INIT;
771 helper = get_helper(transport);
773 write_constant(helper->in, "export\n");
775 strbuf_reset(&buf);
777 for (ref = remote_refs; ref; ref = ref->next) {
778 char *private;
779 unsigned char sha1[20];
781 if (!data->refspecs)
782 continue;
783 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
784 if (private && !get_sha1(private, sha1)) {
785 strbuf_addf(&buf, "^%s", private);
786 string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
788 free(private);
790 if (ref->deletion) {
791 die("remote-helpers do not support ref deletion");
794 if (ref->peer_ref)
795 string_list_append(&revlist_args, ref->peer_ref->name);
799 if (get_exporter(transport, &exporter, &revlist_args))
800 die("Couldn't run fast-export");
802 if (finish_command(&exporter))
803 die("Error while running fast-export");
804 check_helper_status(data);
805 push_update_refs_status(data, remote_refs);
806 return 0;
809 static int push_refs(struct transport *transport,
810 struct ref *remote_refs, int flags)
812 struct helper_data *data = transport->data;
814 if (process_connect(transport, 1)) {
815 do_take_over(transport);
816 return transport->push_refs(transport, remote_refs, flags);
819 if (!remote_refs) {
820 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
821 "Perhaps you should specify a branch such as 'master'.\n");
822 return 0;
825 if (data->push)
826 return push_refs_with_push(transport, remote_refs, flags);
828 if (data->export)
829 return push_refs_with_export(transport, remote_refs, flags);
831 return -1;
835 static int has_attribute(const char *attrs, const char *attr) {
836 int len;
837 if (!attrs)
838 return 0;
840 len = strlen(attr);
841 for (;;) {
842 const char *space = strchrnul(attrs, ' ');
843 if (len == space - attrs && !strncmp(attrs, attr, len))
844 return 1;
845 if (!*space)
846 return 0;
847 attrs = space + 1;
851 static struct ref *get_refs_list(struct transport *transport, int for_push)
853 struct helper_data *data = transport->data;
854 struct child_process *helper;
855 struct ref *ret = NULL;
856 struct ref **tail = &ret;
857 struct ref *posn;
858 struct strbuf buf = STRBUF_INIT;
860 helper = get_helper(transport);
862 if (process_connect(transport, for_push)) {
863 do_take_over(transport);
864 return transport->get_refs_list(transport, for_push);
867 if (data->push && for_push)
868 write_str_in_full(helper->in, "list for-push\n");
869 else
870 write_str_in_full(helper->in, "list\n");
872 while (1) {
873 char *eov, *eon;
874 recvline(data, &buf);
876 if (!*buf.buf)
877 break;
879 eov = strchr(buf.buf, ' ');
880 if (!eov)
881 die("Malformed response in ref list: %s", buf.buf);
882 eon = strchr(eov + 1, ' ');
883 *eov = '\0';
884 if (eon)
885 *eon = '\0';
886 *tail = alloc_ref(eov + 1);
887 if (buf.buf[0] == '@')
888 (*tail)->symref = xstrdup(buf.buf + 1);
889 else if (buf.buf[0] != '?')
890 get_sha1_hex(buf.buf, (*tail)->old_sha1);
891 if (eon) {
892 if (has_attribute(eon + 1, "unchanged")) {
893 (*tail)->status |= REF_STATUS_UPTODATE;
894 read_ref((*tail)->name, (*tail)->old_sha1);
897 tail = &((*tail)->next);
899 if (debug)
900 fprintf(stderr, "Debug: Read ref listing.\n");
901 strbuf_release(&buf);
903 for (posn = ret; posn; posn = posn->next)
904 resolve_remote_symref(posn, ret);
906 return ret;
909 int transport_helper_init(struct transport *transport, const char *name)
911 struct helper_data *data = xcalloc(sizeof(*data), 1);
912 data->name = name;
914 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
915 debug = 1;
917 transport->data = data;
918 transport->set_option = set_helper_option;
919 transport->get_refs_list = get_refs_list;
920 transport->fetch = fetch;
921 transport->push_refs = push_refs;
922 transport->disconnect = release_helper;
923 transport->connect = connect_helper;
924 transport->smart_options = &(data->transport_options);
925 return 0;
929 * Linux pipes can buffer 65536 bytes at once (and most platforms can
930 * buffer less), so attempt reads and writes with up to that size.
932 #define BUFFERSIZE 65536
933 /* This should be enough to hold debugging message. */
934 #define PBUFFERSIZE 8192
936 /* Print bidirectional transfer loop debug message. */
937 static void transfer_debug(const char *fmt, ...)
939 va_list args;
940 char msgbuf[PBUFFERSIZE];
941 static int debug_enabled = -1;
943 if (debug_enabled < 0)
944 debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
945 if (!debug_enabled)
946 return;
948 va_start(args, fmt);
949 vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
950 va_end(args);
951 fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
954 /* Stream state: More data may be coming in this direction. */
955 #define SSTATE_TRANSFERING 0
957 * Stream state: No more data coming in this direction, flushing rest of
958 * data.
960 #define SSTATE_FLUSHING 1
961 /* Stream state: Transfer in this direction finished. */
962 #define SSTATE_FINISHED 2
964 #define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
965 #define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
966 #define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
968 /* Unidirectional transfer. */
969 struct unidirectional_transfer {
970 /* Source */
971 int src;
972 /* Destination */
973 int dest;
974 /* Is source socket? */
975 int src_is_sock;
976 /* Is destination socket? */
977 int dest_is_sock;
978 /* Transfer state (TRANSFERING/FLUSHING/FINISHED) */
979 int state;
980 /* Buffer. */
981 char buf[BUFFERSIZE];
982 /* Buffer used. */
983 size_t bufuse;
984 /* Name of source. */
985 const char *src_name;
986 /* Name of destination. */
987 const char *dest_name;
990 /* Closes the target (for writing) if transfer has finished. */
991 static void udt_close_if_finished(struct unidirectional_transfer *t)
993 if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
994 t->state = SSTATE_FINISHED;
995 if (t->dest_is_sock)
996 shutdown(t->dest, SHUT_WR);
997 else
998 close(t->dest);
999 transfer_debug("Closed %s.", t->dest_name);
1004 * Tries to read read data from source into buffer. If buffer is full,
1005 * no data is read. Returns 0 on success, -1 on error.
1007 static int udt_do_read(struct unidirectional_transfer *t)
1009 ssize_t bytes;
1011 if (t->bufuse == BUFFERSIZE)
1012 return 0; /* No space for more. */
1014 transfer_debug("%s is readable", t->src_name);
1015 bytes = read(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
1016 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1017 errno != EINTR) {
1018 error("read(%s) failed: %s", t->src_name, strerror(errno));
1019 return -1;
1020 } else if (bytes == 0) {
1021 transfer_debug("%s EOF (with %i bytes in buffer)",
1022 t->src_name, t->bufuse);
1023 t->state = SSTATE_FLUSHING;
1024 } else if (bytes > 0) {
1025 t->bufuse += bytes;
1026 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1027 (int)bytes, t->src_name, (int)t->bufuse);
1029 return 0;
1032 /* Tries to write data from buffer into destination. If buffer is empty,
1033 * no data is written. Returns 0 on success, -1 on error.
1035 static int udt_do_write(struct unidirectional_transfer *t)
1037 ssize_t bytes;
1039 if (t->bufuse == 0)
1040 return 0; /* Nothing to write. */
1042 transfer_debug("%s is writable", t->dest_name);
1043 bytes = write(t->dest, t->buf, t->bufuse);
1044 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1045 errno != EINTR) {
1046 error("write(%s) failed: %s", t->dest_name, strerror(errno));
1047 return -1;
1048 } else if (bytes > 0) {
1049 t->bufuse -= bytes;
1050 if (t->bufuse)
1051 memmove(t->buf, t->buf + bytes, t->bufuse);
1052 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1053 (int)bytes, t->dest_name, (int)t->bufuse);
1055 return 0;
1059 /* State of bidirectional transfer loop. */
1060 struct bidirectional_transfer_state {
1061 /* Direction from program to git. */
1062 struct unidirectional_transfer ptg;
1063 /* Direction from git to program. */
1064 struct unidirectional_transfer gtp;
1067 static void *udt_copy_task_routine(void *udt)
1069 struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1070 while (t->state != SSTATE_FINISHED) {
1071 if (STATE_NEEDS_READING(t->state))
1072 if (udt_do_read(t))
1073 return NULL;
1074 if (STATE_NEEDS_WRITING(t->state))
1075 if (udt_do_write(t))
1076 return NULL;
1077 if (STATE_NEEDS_CLOSING(t->state))
1078 udt_close_if_finished(t);
1080 return udt; /* Just some non-NULL value. */
1083 #ifndef NO_PTHREADS
1086 * Join thread, with apporiate errors on failure. Name is name for the
1087 * thread (for error messages). Returns 0 on success, 1 on failure.
1089 static int tloop_join(pthread_t thread, const char *name)
1091 int err;
1092 void *tret;
1093 err = pthread_join(thread, &tret);
1094 if (!tret) {
1095 error("%s thread failed", name);
1096 return 1;
1098 if (err) {
1099 error("%s thread failed to join: %s", name, strerror(err));
1100 return 1;
1102 return 0;
1106 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1107 * -1 on failure.
1109 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1111 pthread_t gtp_thread;
1112 pthread_t ptg_thread;
1113 int err;
1114 int ret = 0;
1115 err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1116 &s->gtp);
1117 if (err)
1118 die("Can't start thread for copying data: %s", strerror(err));
1119 err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1120 &s->ptg);
1121 if (err)
1122 die("Can't start thread for copying data: %s", strerror(err));
1124 ret |= tloop_join(gtp_thread, "Git to program copy");
1125 ret |= tloop_join(ptg_thread, "Program to git copy");
1126 return ret;
1128 #else
1130 /* Close the source and target (for writing) for transfer. */
1131 static void udt_kill_transfer(struct unidirectional_transfer *t)
1133 t->state = SSTATE_FINISHED;
1135 * Socket read end left open isn't a disaster if nobody
1136 * attempts to read from it (mingw compat headers do not
1137 * have SHUT_RD)...
1139 * We can't fully close the socket since otherwise gtp
1140 * task would first close the socket it sends data to
1141 * while closing the ptg file descriptors.
1143 if (!t->src_is_sock)
1144 close(t->src);
1145 if (t->dest_is_sock)
1146 shutdown(t->dest, SHUT_WR);
1147 else
1148 close(t->dest);
1152 * Join process, with apporiate errors on failure. Name is name for the
1153 * process (for error messages). Returns 0 on success, 1 on failure.
1155 static int tloop_join(pid_t pid, const char *name)
1157 int tret;
1158 if (waitpid(pid, &tret, 0) < 0) {
1159 error("%s process failed to wait: %s", name, strerror(errno));
1160 return 1;
1162 if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
1163 error("%s process failed", name);
1164 return 1;
1166 return 0;
1170 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1171 * -1 on failure.
1173 static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1175 pid_t pid1, pid2;
1176 int ret = 0;
1178 /* Fork thread #1: git to program. */
1179 pid1 = fork();
1180 if (pid1 < 0)
1181 die_errno("Can't start thread for copying data");
1182 else if (pid1 == 0) {
1183 udt_kill_transfer(&s->ptg);
1184 exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1187 /* Fork thread #2: program to git. */
1188 pid2 = fork();
1189 if (pid2 < 0)
1190 die_errno("Can't start thread for copying data");
1191 else if (pid2 == 0) {
1192 udt_kill_transfer(&s->gtp);
1193 exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1197 * Close both streams in parent as to not interfere with
1198 * end of file detection and wait for both tasks to finish.
1200 udt_kill_transfer(&s->gtp);
1201 udt_kill_transfer(&s->ptg);
1202 ret |= tloop_join(pid1, "Git to program copy");
1203 ret |= tloop_join(pid2, "Program to git copy");
1204 return ret;
1206 #endif
1209 * Copies data from stdin to output and from input to stdout simultaneously.
1210 * Additionally filtering through given filter. If filter is NULL, uses
1211 * identity filter.
1213 int bidirectional_transfer_loop(int input, int output)
1215 struct bidirectional_transfer_state state;
1217 /* Fill the state fields. */
1218 state.ptg.src = input;
1219 state.ptg.dest = 1;
1220 state.ptg.src_is_sock = (input == output);
1221 state.ptg.dest_is_sock = 0;
1222 state.ptg.state = SSTATE_TRANSFERING;
1223 state.ptg.bufuse = 0;
1224 state.ptg.src_name = "remote input";
1225 state.ptg.dest_name = "stdout";
1227 state.gtp.src = 0;
1228 state.gtp.dest = output;
1229 state.gtp.src_is_sock = 0;
1230 state.gtp.dest_is_sock = (input == output);
1231 state.gtp.state = SSTATE_TRANSFERING;
1232 state.gtp.bufuse = 0;
1233 state.gtp.src_name = "stdin";
1234 state.gtp.dest_name = "remote output";
1236 return tloop_spawnwait_tasks(&state);