]> git.ipfire.org Git - thirdparty/git.git/blame - transport-helper.c
push --force-with-lease: implement logic to populate old_sha1_expect[]
[thirdparty/git.git] / transport-helper.c
CommitLineData
6eb996b5
DB
1#include "cache.h"
2#include "transport.h"
ae4efe19 3#include "quote.h"
6eb996b5
DB
4#include "run-command.h"
5#include "commit.h"
6#include "diff.h"
7#include "revision.h"
ef08ef9e 8#include "quote.h"
72ff8943 9#include "remote.h"
73b49a75 10#include "string-list.h"
7851b1e6 11#include "thread-utils.h"
c34fe630 12#include "sigchain.h"
bfc366d9 13#include "argv-array.h"
664059fb 14#include "refs.h"
7851b1e6 15
bf3c523c
IL
16static int debug;
17
9cba13ca 18struct helper_data {
6eb996b5
DB
19 const char *name;
20 struct child_process *helper;
292ce46b 21 FILE *out;
ef08ef9e 22 unsigned fetch : 1,
a24a32dd 23 import : 1,
bfc366d9 24 bidi_import : 1,
73b49a75 25 export : 1,
ae4efe19 26 option : 1,
fa8c097c
IL
27 push : 1,
28 connect : 1,
0d957a4d 29 signed_tags : 1,
fa8c097c 30 no_disconnect_req : 1;
a515ebe9
SR
31 char *export_marks;
32 char *import_marks;
72ff8943
DB
33 /* These go from remote name (as in "list") to private name */
34 struct refspec *refspecs;
35 int refspec_nr;
61b075bd
IL
36 /* Transport options for fetch-pack/send-pack (should one of
37 * those be invoked).
38 */
39 struct git_transport_options transport_options;
6eb996b5
DB
40};
41
bf3c523c
IL
42static void sendline(struct helper_data *helper, struct strbuf *buffer)
43{
44 if (debug)
45 fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
46 if (write_in_full(helper->helper->in, buffer->buf, buffer->len)
47 != buffer->len)
48 die_errno("Full write to remote helper failed");
49}
50
c096955c 51static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
bf3c523c
IL
52{
53 strbuf_reset(buffer);
54 if (debug)
55 fprintf(stderr, "Debug: Remote helper: Waiting...\n");
fa8c097c 56 if (strbuf_getline(buffer, helper, '\n') == EOF) {
bf3c523c
IL
57 if (debug)
58 fprintf(stderr, "Debug: Remote helper quit.\n");
266f1fdf 59 exit(128);
bf3c523c
IL
60 }
61
62 if (debug)
63 fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
64 return 0;
65}
66
fa8c097c
IL
67static int recvline(struct helper_data *helper, struct strbuf *buffer)
68{
c096955c 69 return recvline_fh(helper->out, buffer, helper->name);
fa8c097c
IL
70}
71
bf3c523c
IL
72static void xchgline(struct helper_data *helper, struct strbuf *buffer)
73{
74 sendline(helper, buffer);
75 recvline(helper, buffer);
76}
77
78static void write_constant(int fd, const char *str)
79{
80 if (debug)
81 fprintf(stderr, "Debug: Remote helper: -> %s", str);
82 if (write_in_full(fd, str, strlen(str)) != strlen(str))
83 die_errno("Full write to remote helper failed");
84}
85
c2e86add 86static const char *remove_ext_force(const char *url)
25d5cc48
IL
87{
88 if (url) {
89 const char *colon = strchr(url, ':');
90 if (colon && colon[1] == ':')
91 return colon + 2;
92 }
93 return url;
94}
95
fa8c097c
IL
96static void do_take_over(struct transport *transport)
97{
98 struct helper_data *data;
99 data = (struct helper_data *)transport->data;
100 transport_take_over(transport, data->helper);
101 fclose(data->out);
102 free(data);
103}
104
6eb996b5
DB
105static struct child_process *get_helper(struct transport *transport)
106{
107 struct helper_data *data = transport->data;
bfc366d9 108 struct argv_array argv = ARGV_ARRAY_INIT;
6eb996b5
DB
109 struct strbuf buf = STRBUF_INIT;
110 struct child_process *helper;
72ff8943
DB
111 const char **refspecs = NULL;
112 int refspec_nr = 0;
113 int refspec_alloc = 0;
61b075bd 114 int duped;
6b02de3b 115 int code;
e1735872
DI
116 char git_dir_buf[sizeof(GIT_DIR_ENVIRONMENT) + PATH_MAX + 1];
117 const char *helper_env[] = {
118 git_dir_buf,
119 NULL
120 };
121
6eb996b5
DB
122
123 if (data->helper)
124 return data->helper;
125
126 helper = xcalloc(1, sizeof(*helper));
127 helper->in = -1;
128 helper->out = -1;
129 helper->err = 0;
bfc366d9
FA
130 argv_array_pushf(&argv, "git-remote-%s", data->name);
131 argv_array_push(&argv, transport->remote->name);
132 argv_array_push(&argv, remove_ext_force(transport->url));
133 helper->argv = argv_array_detach(&argv, NULL);
6b02de3b
IL
134 helper->git_cmd = 0;
135 helper->silent_exec_failure = 1;
e1735872
DI
136
137 snprintf(git_dir_buf, sizeof(git_dir_buf), "%s=%s", GIT_DIR_ENVIRONMENT, get_git_dir());
138 helper->env = helper_env;
139
6b02de3b
IL
140 code = start_command(helper);
141 if (code < 0 && errno == ENOENT)
142 die("Unable to find remote helper for '%s'", data->name);
143 else if (code != 0)
144 exit(code);
145
6eb996b5 146 data->helper = helper;
fa8c097c 147 data->no_disconnect_req = 0;
6eb996b5 148
61b075bd
IL
149 /*
150 * Open the output as FILE* so strbuf_getline() can be used.
151 * Do this with duped fd because fclose() will close the fd,
152 * and stuff like taking over will require the fd to remain.
61b075bd
IL
153 */
154 duped = dup(helper->out);
155 if (duped < 0)
156 die_errno("Can't dup helper output fd");
157 data->out = xfdopen(duped, "r");
158
bf3c523c 159 write_constant(helper->in, "capabilities\n");
2d14d65c 160
6eb996b5 161 while (1) {
28ed5b35
IL
162 const char *capname;
163 int mandatory = 0;
bf3c523c 164 recvline(data, &buf);
6eb996b5
DB
165
166 if (!*buf.buf)
167 break;
28ed5b35
IL
168
169 if (*buf.buf == '*') {
170 capname = buf.buf + 1;
171 mandatory = 1;
172 } else
173 capname = buf.buf;
174
bf3c523c 175 if (debug)
28ed5b35
IL
176 fprintf(stderr, "Debug: Got cap %s\n", capname);
177 if (!strcmp(capname, "fetch"))
6eb996b5 178 data->fetch = 1;
28ed5b35 179 else if (!strcmp(capname, "option"))
ef08ef9e 180 data->option = 1;
28ed5b35 181 else if (!strcmp(capname, "push"))
ae4efe19 182 data->push = 1;
28ed5b35 183 else if (!strcmp(capname, "import"))
e65e91ed 184 data->import = 1;
bfc366d9
FA
185 else if (!strcmp(capname, "bidi-import"))
186 data->bidi_import = 1;
73b49a75
SR
187 else if (!strcmp(capname, "export"))
188 data->export = 1;
28ed5b35 189 else if (!data->refspecs && !prefixcmp(capname, "refspec ")) {
72ff8943
DB
190 ALLOC_GROW(refspecs,
191 refspec_nr + 1,
192 refspec_alloc);
c28cce55 193 refspecs[refspec_nr++] = xstrdup(capname + strlen("refspec "));
fa8c097c
IL
194 } else if (!strcmp(capname, "connect")) {
195 data->connect = 1;
0d957a4d
JK
196 } else if (!strcmp(capname, "signed-tags")) {
197 data->signed_tags = 1;
a515ebe9
SR
198 } else if (!prefixcmp(capname, "export-marks ")) {
199 struct strbuf arg = STRBUF_INIT;
200 strbuf_addstr(&arg, "--export-marks=");
201 strbuf_addstr(&arg, capname + strlen("export-marks "));
202 data->export_marks = strbuf_detach(&arg, NULL);
203 } else if (!prefixcmp(capname, "import-marks")) {
204 struct strbuf arg = STRBUF_INIT;
205 strbuf_addstr(&arg, "--import-marks=");
206 strbuf_addstr(&arg, capname + strlen("import-marks "));
207 data->import_marks = strbuf_detach(&arg, NULL);
28ed5b35 208 } else if (mandatory) {
9517e6b8 209 die("Unknown mandatory capability %s. This remote "
82247e9b 210 "helper probably needs newer version of Git.",
28ed5b35 211 capname);
72ff8943
DB
212 }
213 }
214 if (refspecs) {
215 int i;
216 data->refspec_nr = refspec_nr;
217 data->refspecs = parse_fetch_refspec(refspec_nr, refspecs);
b120ef3e 218 for (i = 0; i < refspec_nr; i++)
72ff8943 219 free((char *)refspecs[i]);
72ff8943 220 free(refspecs);
a93b4a09
FC
221 } else if (data->import || data->bidi_import || data->export) {
222 warning("This remote helper should implement refspec capability.");
6eb996b5 223 }
b962dbdc 224 strbuf_release(&buf);
bf3c523c
IL
225 if (debug)
226 fprintf(stderr, "Debug: Capabilities complete.\n");
6eb996b5
DB
227 return data->helper;
228}
229
230static int disconnect_helper(struct transport *transport)
231{
232 struct helper_data *data = transport->data;
cc567322 233 int res = 0;
bf3c523c 234
6eb996b5 235 if (data->helper) {
bf3c523c
IL
236 if (debug)
237 fprintf(stderr, "Debug: Disconnecting.\n");
fa8c097c 238 if (!data->no_disconnect_req) {
c34fe630
JK
239 /*
240 * Ignore write errors; there's nothing we can do,
241 * since we're about to close the pipe anyway. And the
242 * most likely error is EPIPE due to the helper dying
243 * to report an error itself.
244 */
245 sigchain_push(SIGPIPE, SIG_IGN);
246 xwrite(data->helper->in, "\n", 1);
247 sigchain_pop(SIGPIPE);
fa8c097c 248 }
6eb996b5 249 close(data->helper->in);
61b075bd 250 close(data->helper->out);
292ce46b 251 fclose(data->out);
cc567322 252 res = finish_command(data->helper);
bfc366d9 253 argv_array_free_detached(data->helper->argv);
6eb996b5
DB
254 free(data->helper);
255 data->helper = NULL;
256 }
cc567322 257 return res;
6eb996b5
DB
258}
259
ef08ef9e
SP
260static const char *unsupported_options[] = {
261 TRANS_OPT_UPLOADPACK,
262 TRANS_OPT_RECEIVEPACK,
263 TRANS_OPT_THIN,
264 TRANS_OPT_KEEP
265 };
266static const char *boolean_options[] = {
267 TRANS_OPT_THIN,
268 TRANS_OPT_KEEP,
269 TRANS_OPT_FOLLOWTAGS
270 };
271
272static int set_helper_option(struct transport *transport,
273 const char *name, const char *value)
274{
275 struct helper_data *data = transport->data;
ef08ef9e
SP
276 struct strbuf buf = STRBUF_INIT;
277 int i, ret, is_bool = 0;
278
bf3c523c
IL
279 get_helper(transport);
280
ef08ef9e
SP
281 if (!data->option)
282 return 1;
283
284 for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
285 if (!strcmp(name, unsupported_options[i]))
286 return 1;
287 }
288
289 for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
290 if (!strcmp(name, boolean_options[i])) {
291 is_bool = 1;
292 break;
293 }
294 }
295
296 strbuf_addf(&buf, "option %s ", name);
297 if (is_bool)
298 strbuf_addstr(&buf, value ? "true" : "false");
299 else
300 quote_c_style(value, &buf, NULL, 0);
301 strbuf_addch(&buf, '\n');
302
bf3c523c 303 xchgline(data, &buf);
ef08ef9e
SP
304
305 if (!strcmp(buf.buf, "ok"))
306 ret = 0;
307 else if (!prefixcmp(buf.buf, "error")) {
308 ret = -1;
309 } else if (!strcmp(buf.buf, "unsupported"))
310 ret = 1;
311 else {
312 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
313 ret = 1;
314 }
315 strbuf_release(&buf);
316 return ret;
317}
318
319static void standard_options(struct transport *t)
320{
321 char buf[16];
322 int n;
323 int v = t->verbose;
ef08ef9e 324
d01b3c02 325 set_helper_option(t, "progress", t->progress ? "true" : "false");
ef08ef9e
SP
326
327 n = snprintf(buf, sizeof(buf), "%d", v + 1);
328 if (n >= sizeof(buf))
329 die("impossibly large verbosity value");
330 set_helper_option(t, "verbosity", buf);
331}
332
f2a37151
DB
333static int release_helper(struct transport *transport)
334{
cc567322 335 int res = 0;
72ff8943
DB
336 struct helper_data *data = transport->data;
337 free_refspec(data->refspec_nr, data->refspecs);
338 data->refspecs = NULL;
cc567322 339 res = disconnect_helper(transport);
f2a37151 340 free(transport->data);
cc567322 341 return res;
f2a37151
DB
342}
343
6eb996b5 344static int fetch_with_fetch(struct transport *transport,
37148311 345 int nr_heads, struct ref **to_fetch)
6eb996b5 346{
292ce46b 347 struct helper_data *data = transport->data;
6eb996b5
DB
348 int i;
349 struct strbuf buf = STRBUF_INIT;
350
ef08ef9e
SP
351 standard_options(transport);
352
6eb996b5 353 for (i = 0; i < nr_heads; i++) {
1088261f 354 const struct ref *posn = to_fetch[i];
6eb996b5
DB
355 if (posn->status & REF_STATUS_UPTODATE)
356 continue;
2d14d65c
DB
357
358 strbuf_addf(&buf, "fetch %s %s\n",
359 sha1_to_hex(posn->old_sha1), posn->name);
292ce46b 360 }
2d14d65c 361
292ce46b 362 strbuf_addch(&buf, '\n');
bf3c523c 363 sendline(data, &buf);
292ce46b
SP
364
365 while (1) {
bf3c523c 366 recvline(data, &buf);
292ce46b
SP
367
368 if (!prefixcmp(buf.buf, "lock ")) {
369 const char *name = buf.buf + 5;
370 if (transport->pack_lockfile)
371 warning("%s also locked %s", data->name, name);
372 else
373 transport->pack_lockfile = xstrdup(name);
374 }
375 else if (!buf.len)
376 break;
377 else
378 warning("%s unexpectedly said: '%s'", data->name, buf.buf);
6eb996b5 379 }
292ce46b 380 strbuf_release(&buf);
6eb996b5
DB
381 return 0;
382}
383
e65e91ed
DB
384static int get_importer(struct transport *transport, struct child_process *fastimport)
385{
386 struct child_process *helper = get_helper(transport);
bfc366d9
FA
387 struct helper_data *data = transport->data;
388 struct argv_array argv = ARGV_ARRAY_INIT;
389 int cat_blob_fd, code;
e65e91ed
DB
390 memset(fastimport, 0, sizeof(*fastimport));
391 fastimport->in = helper->out;
bfc366d9 392 argv_array_push(&argv, "fast-import");
19ba02af 393 argv_array_push(&argv, debug ? "--stats" : "--quiet");
e65e91ed 394
bfc366d9
FA
395 if (data->bidi_import) {
396 cat_blob_fd = xdup(helper->in);
397 argv_array_pushf(&argv, "--cat-blob-fd=%d", cat_blob_fd);
398 }
399 fastimport->argv = argv.argv;
e65e91ed 400 fastimport->git_cmd = 1;
bfc366d9
FA
401
402 code = start_command(fastimport);
403 return code;
e65e91ed
DB
404}
405
73b49a75
SR
406static int get_exporter(struct transport *transport,
407 struct child_process *fastexport,
73b49a75
SR
408 struct string_list *revlist_args)
409{
a515ebe9 410 struct helper_data *data = transport->data;
73b49a75
SR
411 struct child_process *helper = get_helper(transport);
412 int argc = 0, i;
413 memset(fastexport, 0, sizeof(*fastexport));
414
415 /* we need to duplicate helper->in because we want to use it after
416 * fastexport is done with it. */
417 fastexport->out = dup(helper->in);
b8bd826f 418 fastexport->argv = xcalloc(6 + revlist_args->nr, sizeof(*fastexport->argv));
73b49a75 419 fastexport->argv[argc++] = "fast-export";
1f25c504 420 fastexport->argv[argc++] = "--use-done-feature";
0d957a4d
JK
421 fastexport->argv[argc++] = data->signed_tags ?
422 "--signed-tags=verbatim" : "--signed-tags=warn-strip";
a515ebe9
SR
423 if (data->export_marks)
424 fastexport->argv[argc++] = data->export_marks;
425 if (data->import_marks)
426 fastexport->argv[argc++] = data->import_marks;
73b49a75
SR
427
428 for (i = 0; i < revlist_args->nr; i++)
429 fastexport->argv[argc++] = revlist_args->items[i].string;
430
431 fastexport->git_cmd = 1;
432 return start_command(fastexport);
433}
434
e65e91ed
DB
435static int fetch_with_import(struct transport *transport,
436 int nr_heads, struct ref **to_fetch)
437{
438 struct child_process fastimport;
72ff8943 439 struct helper_data *data = transport->data;
e65e91ed
DB
440 int i;
441 struct ref *posn;
442 struct strbuf buf = STRBUF_INIT;
443
bf3c523c
IL
444 get_helper(transport);
445
e65e91ed
DB
446 if (get_importer(transport, &fastimport))
447 die("Couldn't run fast-import");
448
449 for (i = 0; i < nr_heads; i++) {
450 posn = to_fetch[i];
451 if (posn->status & REF_STATUS_UPTODATE)
452 continue;
453
454 strbuf_addf(&buf, "import %s\n", posn->name);
bf3c523c 455 sendline(data, &buf);
e65e91ed
DB
456 strbuf_reset(&buf);
457 }
9504bc9d
SR
458
459 write_constant(data->helper->in, "\n");
bfc366d9
FA
460 /*
461 * remote-helpers that advertise the bidi-import capability are required to
462 * buffer the complete batch of import commands until this newline before
463 * sending data to fast-import.
464 * These helpers read back data from fast-import on their stdin, which could
465 * be mixed with import commands, otherwise.
466 */
9504bc9d 467
cc567322
SR
468 if (finish_command(&fastimport))
469 die("Error while running fast-import");
bfc366d9 470 argv_array_free_detached(fastimport.argv);
e65e91ed 471
dff9d65d
FA
472 /*
473 * The fast-import stream of a remote helper that advertises
474 * the "refspec" capability writes to the refs named after the
475 * right hand side of the first refspec matching each ref we
476 * were fetching.
477 *
478 * (If no "refspec" capability was specified, for historical
7a43c554 479 * reasons we default to the equivalent of *:*.)
dff9d65d
FA
480 *
481 * Store the result in to_fetch[i].old_sha1. Callers such
482 * as "git fetch" can use the value to write feedback to the
483 * terminal, populate FETCH_HEAD, and determine what new value
484 * should be written to peer_ref if the update is a
485 * fast-forward or this is a forced update.
486 */
e65e91ed 487 for (i = 0; i < nr_heads; i++) {
72ff8943 488 char *private;
e65e91ed
DB
489 posn = to_fetch[i];
490 if (posn->status & REF_STATUS_UPTODATE)
491 continue;
72ff8943
DB
492 if (data->refspecs)
493 private = apply_refspecs(data->refspecs, data->refspec_nr, posn->name);
494 else
c28cce55 495 private = xstrdup(posn->name);
d51b720f
MH
496 if (private) {
497 read_ref(private, posn->old_sha1);
498 free(private);
499 }
e65e91ed 500 }
b962dbdc 501 strbuf_release(&buf);
e65e91ed
DB
502 return 0;
503}
504
fa8c097c
IL
505static int process_connect_service(struct transport *transport,
506 const char *name, const char *exec)
507{
508 struct helper_data *data = transport->data;
509 struct strbuf cmdbuf = STRBUF_INIT;
510 struct child_process *helper;
511 int r, duped, ret = 0;
512 FILE *input;
513
514 helper = get_helper(transport);
515
516 /*
517 * Yes, dup the pipe another time, as we need unbuffered version
518 * of input pipe as FILE*. fclose() closes the underlying fd and
519 * stream buffering only can be changed before first I/O operation
520 * on it.
521 */
522 duped = dup(helper->out);
523 if (duped < 0)
524 die_errno("Can't dup helper output fd");
525 input = xfdopen(duped, "r");
526 setvbuf(input, NULL, _IONBF, 0);
527
528 /*
529 * Handle --upload-pack and friends. This is fire and forget...
530 * just warn if it fails.
531 */
532 if (strcmp(name, exec)) {
533 r = set_helper_option(transport, "servpath", exec);
534 if (r > 0)
535 warning("Setting remote service path not supported by protocol.");
536 else if (r < 0)
537 warning("Invalid remote service path.");
538 }
539
540 if (data->connect)
541 strbuf_addf(&cmdbuf, "connect %s\n", name);
542 else
543 goto exit;
544
545 sendline(data, &cmdbuf);
c096955c 546 recvline_fh(input, &cmdbuf, name);
fa8c097c
IL
547 if (!strcmp(cmdbuf.buf, "")) {
548 data->no_disconnect_req = 1;
549 if (debug)
550 fprintf(stderr, "Debug: Smart transport connection "
551 "ready.\n");
552 ret = 1;
553 } else if (!strcmp(cmdbuf.buf, "fallback")) {
554 if (debug)
555 fprintf(stderr, "Debug: Falling back to dumb "
556 "transport.\n");
557 } else
558 die("Unknown response to connect: %s",
559 cmdbuf.buf);
560
561exit:
562 fclose(input);
563 return ret;
564}
565
566static int process_connect(struct transport *transport,
567 int for_push)
568{
569 struct helper_data *data = transport->data;
570 const char *name;
571 const char *exec;
572
573 name = for_push ? "git-receive-pack" : "git-upload-pack";
574 if (for_push)
575 exec = data->transport_options.receivepack;
576 else
577 exec = data->transport_options.uploadpack;
578
579 return process_connect_service(transport, name, exec);
580}
581
b236752a
IL
582static int connect_helper(struct transport *transport, const char *name,
583 const char *exec, int fd[2])
584{
585 struct helper_data *data = transport->data;
586
587 /* Get_helper so connect is inited. */
588 get_helper(transport);
589 if (!data->connect)
590 die("Operation not supported by protocol.");
591
592 if (!process_connect_service(transport, name, exec))
593 die("Can't connect to subservice %s.", name);
594
595 fd[0] = data->helper->out;
596 fd[1] = data->helper->in;
597 return 0;
598}
599
6eb996b5 600static int fetch(struct transport *transport,
37148311 601 int nr_heads, struct ref **to_fetch)
6eb996b5
DB
602{
603 struct helper_data *data = transport->data;
604 int i, count;
605
fa8c097c
IL
606 if (process_connect(transport, 0)) {
607 do_take_over(transport);
608 return transport->fetch(transport, nr_heads, to_fetch);
609 }
610
6eb996b5
DB
611 count = 0;
612 for (i = 0; i < nr_heads; i++)
613 if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
614 count++;
615
616 if (!count)
617 return 0;
618
619 if (data->fetch)
620 return fetch_with_fetch(transport, nr_heads, to_fetch);
621
e65e91ed
DB
622 if (data->import)
623 return fetch_with_import(transport, nr_heads, to_fetch);
624
6eb996b5
DB
625 return -1;
626}
627
664059fb 628static int push_update_ref_status(struct strbuf *buf,
d2e73c6f
SR
629 struct ref **ref,
630 struct ref *remote_refs)
631{
632 char *refname, *msg;
633 int status;
634
635 if (!prefixcmp(buf->buf, "ok ")) {
636 status = REF_STATUS_OK;
637 refname = buf->buf + 3;
638 } else if (!prefixcmp(buf->buf, "error ")) {
639 status = REF_STATUS_REMOTE_REJECT;
640 refname = buf->buf + 6;
641 } else
82247e9b 642 die("expected ok/error, helper said '%s'", buf->buf);
d2e73c6f
SR
643
644 msg = strchr(refname, ' ');
645 if (msg) {
646 struct strbuf msg_buf = STRBUF_INIT;
647 const char *end;
648
649 *msg++ = '\0';
650 if (!unquote_c_style(&msg_buf, msg, &end))
651 msg = strbuf_detach(&msg_buf, NULL);
652 else
653 msg = xstrdup(msg);
654 strbuf_release(&msg_buf);
655
656 if (!strcmp(msg, "no match")) {
657 status = REF_STATUS_NONE;
658 free(msg);
659 msg = NULL;
660 }
661 else if (!strcmp(msg, "up to date")) {
662 status = REF_STATUS_UPTODATE;
663 free(msg);
664 msg = NULL;
665 }
666 else if (!strcmp(msg, "non-fast forward")) {
667 status = REF_STATUS_REJECT_NONFASTFORWARD;
668 free(msg);
669 msg = NULL;
670 }
dbfeddb1
CR
671 else if (!strcmp(msg, "already exists")) {
672 status = REF_STATUS_REJECT_ALREADY_EXISTS;
673 free(msg);
674 msg = NULL;
675 }
75e5c0dc
JH
676 else if (!strcmp(msg, "fetch first")) {
677 status = REF_STATUS_REJECT_FETCH_FIRST;
678 free(msg);
679 msg = NULL;
680 }
681 else if (!strcmp(msg, "needs force")) {
682 status = REF_STATUS_REJECT_NEEDS_FORCE;
683 free(msg);
684 msg = NULL;
685 }
d2e73c6f
SR
686 }
687
688 if (*ref)
689 *ref = find_ref_by_name(*ref, refname);
690 if (!*ref)
691 *ref = find_ref_by_name(remote_refs, refname);
692 if (!*ref) {
693 warning("helper reported unexpected status of %s", refname);
664059fb 694 return 1;
d2e73c6f
SR
695 }
696
697 if ((*ref)->status != REF_STATUS_NONE) {
698 /*
699 * Earlier, the ref was marked not to be pushed, so ignore the ref
700 * status reported by the remote helper if the latter is 'no match'.
701 */
702 if (status == REF_STATUS_NONE)
664059fb 703 return 1;
d2e73c6f
SR
704 }
705
706 (*ref)->status = status;
707 (*ref)->remote_status = msg;
126aac5c 708 return !(status == REF_STATUS_OK);
d2e73c6f
SR
709}
710
711static void push_update_refs_status(struct helper_data *data,
712 struct ref *remote_refs)
713{
714 struct strbuf buf = STRBUF_INIT;
715 struct ref *ref = remote_refs;
716 for (;;) {
664059fb
FC
717 char *private;
718
d2e73c6f
SR
719 recvline(data, &buf);
720 if (!buf.len)
721 break;
722
664059fb
FC
723 if (push_update_ref_status(&buf, &ref, remote_refs))
724 continue;
725
726 if (!data->refspecs)
727 continue;
728
729 /* propagate back the update to the remote namespace */
730 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
731 if (!private)
732 continue;
733 update_ref("update by helper", private, ref->new_sha1, NULL, 0, 0);
734 free(private);
d2e73c6f
SR
735 }
736 strbuf_release(&buf);
737}
738
73b49a75 739static int push_refs_with_push(struct transport *transport,
ae4efe19
SP
740 struct ref *remote_refs, int flags)
741{
742 int force_all = flags & TRANSPORT_PUSH_FORCE;
743 int mirror = flags & TRANSPORT_PUSH_MIRROR;
744 struct helper_data *data = transport->data;
745 struct strbuf buf = STRBUF_INIT;
ae4efe19
SP
746 struct ref *ref;
747
c0aa335c 748 get_helper(transport);
ae4efe19
SP
749 if (!data->push)
750 return 1;
751
752 for (ref = remote_refs; ref; ref = ref->next) {
20e8b465 753 if (!ref->peer_ref && !mirror)
ae4efe19
SP
754 continue;
755
20e8b465
TRC
756 /* Check for statuses set by set_ref_status_for_push() */
757 switch (ref->status) {
758 case REF_STATUS_REJECT_NONFASTFORWARD:
dbfeddb1 759 case REF_STATUS_REJECT_ALREADY_EXISTS:
20e8b465 760 case REF_STATUS_UPTODATE:
ae4efe19 761 continue;
20e8b465
TRC
762 default:
763 ; /* do nothing */
ae4efe19
SP
764 }
765
766 if (force_all)
767 ref->force = 1;
768
769 strbuf_addstr(&buf, "push ");
770 if (!ref->deletion) {
771 if (ref->force)
772 strbuf_addch(&buf, '+');
773 if (ref->peer_ref)
774 strbuf_addstr(&buf, ref->peer_ref->name);
775 else
776 strbuf_addstr(&buf, sha1_to_hex(ref->new_sha1));
777 }
778 strbuf_addch(&buf, ':');
779 strbuf_addstr(&buf, ref->name);
780 strbuf_addch(&buf, '\n');
781 }
d8f67d20
CB
782 if (buf.len == 0)
783 return 0;
ae4efe19 784
ae4efe19
SP
785 standard_options(transport);
786
787 if (flags & TRANSPORT_PUSH_DRY_RUN) {
788 if (set_helper_option(transport, "dry-run", "true") != 0)
789 die("helper %s does not support dry-run", data->name);
790 }
791
792 strbuf_addch(&buf, '\n');
bf3c523c 793 sendline(data, &buf);
ae4efe19 794 strbuf_release(&buf);
d2e73c6f
SR
795
796 push_update_refs_status(data, remote_refs);
ae4efe19
SP
797 return 0;
798}
799
73b49a75
SR
800static int push_refs_with_export(struct transport *transport,
801 struct ref *remote_refs, int flags)
802{
803 struct ref *ref;
804 struct child_process *helper, exporter;
805 struct helper_data *data = transport->data;
183113a5 806 struct string_list revlist_args = STRING_LIST_INIT_NODUP;
73b49a75
SR
807 struct strbuf buf = STRBUF_INIT;
808
21610d82
FC
809 if (!data->refspecs)
810 die("remote-helper doesn't support push; refspec needed");
811
21457f57
FC
812 if (flags & TRANSPORT_PUSH_DRY_RUN) {
813 if (set_helper_option(transport, "dry-run", "true") != 0)
814 die("helper %s does not support dry-run", data->name);
815 }
816
73b49a75
SR
817 helper = get_helper(transport);
818
819 write_constant(helper->in, "export\n");
820
73b49a75
SR
821 strbuf_reset(&buf);
822
823 for (ref = remote_refs; ref; ref = ref->next) {
824 char *private;
825 unsigned char sha1[20];
826
9c51558c
FC
827 if (ref->deletion)
828 die("remote-helpers do not support ref deletion");
829
73b49a75
SR
830 private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
831 if (private && !get_sha1(private, sha1)) {
832 strbuf_addf(&buf, "^%s", private);
1d2f80fa 833 string_list_append(&revlist_args, strbuf_detach(&buf, NULL));
b056620f 834 hashcpy(ref->old_sha1, sha1);
73b49a75 835 }
2faa1527 836 free(private);
73b49a75 837
99d9ec09 838 if (ref->deletion)
105fe3e4 839 die("remote-helpers do not support ref deletion");
105fe3e4 840
67c9c782
FC
841 if (ref->peer_ref) {
842 if (strcmp(ref->peer_ref->name, ref->name))
843 die("remote-helpers do not support old:new syntax");
3ea7d094 844 string_list_append(&revlist_args, ref->peer_ref->name);
67c9c782 845 }
73b49a75
SR
846 }
847
a515ebe9 848 if (get_exporter(transport, &exporter, &revlist_args))
73b49a75
SR
849 die("Couldn't run fast-export");
850
cc567322
SR
851 if (finish_command(&exporter))
852 die("Error while running fast-export");
6c8151a3 853 push_update_refs_status(data, remote_refs);
73b49a75
SR
854 return 0;
855}
856
857static int push_refs(struct transport *transport,
858 struct ref *remote_refs, int flags)
859{
860 struct helper_data *data = transport->data;
861
862 if (process_connect(transport, 1)) {
863 do_take_over(transport);
864 return transport->push_refs(transport, remote_refs, flags);
865 }
866
867 if (!remote_refs) {
868 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
869 "Perhaps you should specify a branch such as 'master'.\n");
870 return 0;
871 }
872
873 if (data->push)
874 return push_refs_with_push(transport, remote_refs, flags);
875
876 if (data->export)
877 return push_refs_with_export(transport, remote_refs, flags);
878
879 return -1;
880}
881
882
f8ec9167
DB
883static int has_attribute(const char *attrs, const char *attr) {
884 int len;
885 if (!attrs)
886 return 0;
887
888 len = strlen(attr);
889 for (;;) {
890 const char *space = strchrnul(attrs, ' ');
891 if (len == space - attrs && !strncmp(attrs, attr, len))
892 return 1;
893 if (!*space)
894 return 0;
895 attrs = space + 1;
896 }
897}
898
6eb996b5
DB
899static struct ref *get_refs_list(struct transport *transport, int for_push)
900{
292ce46b 901 struct helper_data *data = transport->data;
6eb996b5
DB
902 struct child_process *helper;
903 struct ref *ret = NULL;
904 struct ref **tail = &ret;
905 struct ref *posn;
906 struct strbuf buf = STRBUF_INIT;
6eb996b5
DB
907
908 helper = get_helper(transport);
2d14d65c 909
fa8c097c
IL
910 if (process_connect(transport, for_push)) {
911 do_take_over(transport);
912 return transport->get_refs_list(transport, for_push);
913 }
914
ae4efe19
SP
915 if (data->push && for_push)
916 write_str_in_full(helper->in, "list for-push\n");
917 else
918 write_str_in_full(helper->in, "list\n");
6eb996b5 919
6eb996b5
DB
920 while (1) {
921 char *eov, *eon;
bf3c523c 922 recvline(data, &buf);
6eb996b5
DB
923
924 if (!*buf.buf)
925 break;
926
927 eov = strchr(buf.buf, ' ');
928 if (!eov)
929 die("Malformed response in ref list: %s", buf.buf);
930 eon = strchr(eov + 1, ' ');
931 *eov = '\0';
932 if (eon)
933 *eon = '\0';
934 *tail = alloc_ref(eov + 1);
935 if (buf.buf[0] == '@')
936 (*tail)->symref = xstrdup(buf.buf + 1);
937 else if (buf.buf[0] != '?')
938 get_sha1_hex(buf.buf, (*tail)->old_sha1);
f8ec9167
DB
939 if (eon) {
940 if (has_attribute(eon + 1, "unchanged")) {
941 (*tail)->status |= REF_STATUS_UPTODATE;
942 read_ref((*tail)->name, (*tail)->old_sha1);
943 }
944 }
6eb996b5
DB
945 tail = &((*tail)->next);
946 }
bf3c523c
IL
947 if (debug)
948 fprintf(stderr, "Debug: Read ref listing.\n");
6eb996b5
DB
949 strbuf_release(&buf);
950
951 for (posn = ret; posn; posn = posn->next)
952 resolve_remote_symref(posn, ret);
953
954 return ret;
955}
956
c9e388bb 957int transport_helper_init(struct transport *transport, const char *name)
6eb996b5
DB
958{
959 struct helper_data *data = xcalloc(sizeof(*data), 1);
c9e388bb 960 data->name = name;
6eb996b5 961
bf3c523c
IL
962 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
963 debug = 1;
964
6eb996b5 965 transport->data = data;
ef08ef9e 966 transport->set_option = set_helper_option;
6eb996b5
DB
967 transport->get_refs_list = get_refs_list;
968 transport->fetch = fetch;
ae4efe19 969 transport->push_refs = push_refs;
f2a37151 970 transport->disconnect = release_helper;
b236752a 971 transport->connect = connect_helper;
61b075bd 972 transport->smart_options = &(data->transport_options);
6eb996b5
DB
973 return 0;
974}
419f37db
IL
975
976/*
977 * Linux pipes can buffer 65536 bytes at once (and most platforms can
978 * buffer less), so attempt reads and writes with up to that size.
979 */
980#define BUFFERSIZE 65536
981/* This should be enough to hold debugging message. */
982#define PBUFFERSIZE 8192
983
984/* Print bidirectional transfer loop debug message. */
985static void transfer_debug(const char *fmt, ...)
986{
987 va_list args;
988 char msgbuf[PBUFFERSIZE];
989 static int debug_enabled = -1;
990
991 if (debug_enabled < 0)
992 debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
993 if (!debug_enabled)
994 return;
995
996 va_start(args, fmt);
997 vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
998 va_end(args);
999 fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
1000}
1001
1002/* Stream state: More data may be coming in this direction. */
1003#define SSTATE_TRANSFERING 0
1004/*
1005 * Stream state: No more data coming in this direction, flushing rest of
1006 * data.
1007 */
1008#define SSTATE_FLUSHING 1
1009/* Stream state: Transfer in this direction finished. */
1010#define SSTATE_FINISHED 2
1011
1012#define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERING)
1013#define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1014#define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1015
1016/* Unidirectional transfer. */
1017struct unidirectional_transfer {
1018 /* Source */
1019 int src;
1020 /* Destination */
1021 int dest;
1022 /* Is source socket? */
1023 int src_is_sock;
1024 /* Is destination socket? */
1025 int dest_is_sock;
41ccfdd9 1026 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
419f37db
IL
1027 int state;
1028 /* Buffer. */
1029 char buf[BUFFERSIZE];
1030 /* Buffer used. */
1031 size_t bufuse;
1032 /* Name of source. */
1033 const char *src_name;
1034 /* Name of destination. */
1035 const char *dest_name;
1036};
1037
1038/* Closes the target (for writing) if transfer has finished. */
1039static void udt_close_if_finished(struct unidirectional_transfer *t)
1040{
1041 if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
1042 t->state = SSTATE_FINISHED;
1043 if (t->dest_is_sock)
1044 shutdown(t->dest, SHUT_WR);
1045 else
1046 close(t->dest);
1047 transfer_debug("Closed %s.", t->dest_name);
1048 }
1049}
1050
1051/*
1052 * Tries to read read data from source into buffer. If buffer is full,
1053 * no data is read. Returns 0 on success, -1 on error.
1054 */
1055static int udt_do_read(struct unidirectional_transfer *t)
1056{
1057 ssize_t bytes;
1058
1059 if (t->bufuse == BUFFERSIZE)
1060 return 0; /* No space for more. */
1061
1062 transfer_debug("%s is readable", t->src_name);
1063 bytes = read(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
1064 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1065 errno != EINTR) {
1066 error("read(%s) failed: %s", t->src_name, strerror(errno));
1067 return -1;
1068 } else if (bytes == 0) {
1069 transfer_debug("%s EOF (with %i bytes in buffer)",
1070 t->src_name, t->bufuse);
1071 t->state = SSTATE_FLUSHING;
1072 } else if (bytes > 0) {
1073 t->bufuse += bytes;
1074 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1075 (int)bytes, t->src_name, (int)t->bufuse);
1076 }
1077 return 0;
1078}
1079
1080/* Tries to write data from buffer into destination. If buffer is empty,
1081 * no data is written. Returns 0 on success, -1 on error.
1082 */
1083static int udt_do_write(struct unidirectional_transfer *t)
1084{
803dbdb9 1085 ssize_t bytes;
419f37db
IL
1086
1087 if (t->bufuse == 0)
1088 return 0; /* Nothing to write. */
1089
1090 transfer_debug("%s is writable", t->dest_name);
1091 bytes = write(t->dest, t->buf, t->bufuse);
1092 if (bytes < 0 && errno != EWOULDBLOCK && errno != EAGAIN &&
1093 errno != EINTR) {
1094 error("write(%s) failed: %s", t->dest_name, strerror(errno));
1095 return -1;
1096 } else if (bytes > 0) {
1097 t->bufuse -= bytes;
1098 if (t->bufuse)
1099 memmove(t->buf, t->buf + bytes, t->bufuse);
1100 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1101 (int)bytes, t->dest_name, (int)t->bufuse);
1102 }
1103 return 0;
1104}
1105
1106
1107/* State of bidirectional transfer loop. */
1108struct bidirectional_transfer_state {
1109 /* Direction from program to git. */
1110 struct unidirectional_transfer ptg;
1111 /* Direction from git to program. */
1112 struct unidirectional_transfer gtp;
1113};
1114
1115static void *udt_copy_task_routine(void *udt)
1116{
1117 struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1118 while (t->state != SSTATE_FINISHED) {
1119 if (STATE_NEEDS_READING(t->state))
1120 if (udt_do_read(t))
1121 return NULL;
1122 if (STATE_NEEDS_WRITING(t->state))
1123 if (udt_do_write(t))
1124 return NULL;
1125 if (STATE_NEEDS_CLOSING(t->state))
1126 udt_close_if_finished(t);
1127 }
1128 return udt; /* Just some non-NULL value. */
1129}
1130
1131#ifndef NO_PTHREADS
1132
1133/*
1134 * Join thread, with apporiate errors on failure. Name is name for the
1135 * thread (for error messages). Returns 0 on success, 1 on failure.
1136 */
1137static int tloop_join(pthread_t thread, const char *name)
1138{
1139 int err;
1140 void *tret;
1141 err = pthread_join(thread, &tret);
1142 if (!tret) {
1143 error("%s thread failed", name);
1144 return 1;
1145 }
1146 if (err) {
1147 error("%s thread failed to join: %s", name, strerror(err));
1148 return 1;
1149 }
1150 return 0;
1151}
1152
1153/*
1154 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1155 * -1 on failure.
1156 */
1157static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1158{
1159 pthread_t gtp_thread;
1160 pthread_t ptg_thread;
1161 int err;
1162 int ret = 0;
1163 err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1164 &s->gtp);
1165 if (err)
1166 die("Can't start thread for copying data: %s", strerror(err));
1167 err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1168 &s->ptg);
1169 if (err)
1170 die("Can't start thread for copying data: %s", strerror(err));
1171
1172 ret |= tloop_join(gtp_thread, "Git to program copy");
1173 ret |= tloop_join(ptg_thread, "Program to git copy");
1174 return ret;
1175}
1176#else
1177
1178/* Close the source and target (for writing) for transfer. */
1179static void udt_kill_transfer(struct unidirectional_transfer *t)
1180{
1181 t->state = SSTATE_FINISHED;
1182 /*
1183 * Socket read end left open isn't a disaster if nobody
1184 * attempts to read from it (mingw compat headers do not
1185 * have SHUT_RD)...
1186 *
1187 * We can't fully close the socket since otherwise gtp
1188 * task would first close the socket it sends data to
1189 * while closing the ptg file descriptors.
1190 */
1191 if (!t->src_is_sock)
1192 close(t->src);
1193 if (t->dest_is_sock)
1194 shutdown(t->dest, SHUT_WR);
1195 else
1196 close(t->dest);
1197}
1198
1199/*
1200 * Join process, with apporiate errors on failure. Name is name for the
1201 * process (for error messages). Returns 0 on success, 1 on failure.
1202 */
1203static int tloop_join(pid_t pid, const char *name)
1204{
1205 int tret;
1206 if (waitpid(pid, &tret, 0) < 0) {
1207 error("%s process failed to wait: %s", name, strerror(errno));
1208 return 1;
1209 }
1210 if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
1211 error("%s process failed", name);
1212 return 1;
1213 }
1214 return 0;
1215}
1216
1217/*
1218 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1219 * -1 on failure.
1220 */
1221static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1222{
1223 pid_t pid1, pid2;
1224 int ret = 0;
1225
1226 /* Fork thread #1: git to program. */
1227 pid1 = fork();
1228 if (pid1 < 0)
1229 die_errno("Can't start thread for copying data");
1230 else if (pid1 == 0) {
1231 udt_kill_transfer(&s->ptg);
1232 exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1233 }
1234
1235 /* Fork thread #2: program to git. */
1236 pid2 = fork();
1237 if (pid2 < 0)
1238 die_errno("Can't start thread for copying data");
1239 else if (pid2 == 0) {
1240 udt_kill_transfer(&s->gtp);
1241 exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1242 }
1243
1244 /*
1245 * Close both streams in parent as to not interfere with
1246 * end of file detection and wait for both tasks to finish.
1247 */
1248 udt_kill_transfer(&s->gtp);
1249 udt_kill_transfer(&s->ptg);
1250 ret |= tloop_join(pid1, "Git to program copy");
1251 ret |= tloop_join(pid2, "Program to git copy");
1252 return ret;
1253}
1254#endif
1255
1256/*
1257 * Copies data from stdin to output and from input to stdout simultaneously.
1258 * Additionally filtering through given filter. If filter is NULL, uses
1259 * identity filter.
1260 */
1261int bidirectional_transfer_loop(int input, int output)
1262{
1263 struct bidirectional_transfer_state state;
1264
1265 /* Fill the state fields. */
1266 state.ptg.src = input;
1267 state.ptg.dest = 1;
1268 state.ptg.src_is_sock = (input == output);
1269 state.ptg.dest_is_sock = 0;
1270 state.ptg.state = SSTATE_TRANSFERING;
1271 state.ptg.bufuse = 0;
1272 state.ptg.src_name = "remote input";
1273 state.ptg.dest_name = "stdout";
1274
1275 state.gtp.src = 0;
1276 state.gtp.dest = output;
1277 state.gtp.src_is_sock = 0;
1278 state.gtp.dest_is_sock = (input == output);
1279 state.gtp.state = SSTATE_TRANSFERING;
1280 state.gtp.bufuse = 0;
1281 state.gtp.src_name = "stdin";
1282 state.gtp.dest_name = "remote output";
1283
1284 return tloop_spawnwait_tasks(&state);
1285}