]> git.ipfire.org Git - thirdparty/git.git/blame - transport-helper.c
The sixth batch
[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"
72ff8943 8#include "remote.h"
73b49a75 9#include "string-list.h"
7851b1e6 10#include "thread-utils.h"
c34fe630 11#include "sigchain.h"
bfc366d9 12#include "argv-array.h"
664059fb 13#include "refs.h"
ec0cb496 14#include "refspec.h"
e967ca38 15#include "transport-internal.h"
edc9caf7 16#include "protocol.h"
7851b1e6 17
bf3c523c
IL
18static int debug;
19
9cba13ca 20struct helper_data {
6eb996b5
DB
21 const char *name;
22 struct child_process *helper;
292ce46b 23 FILE *out;
ef08ef9e 24 unsigned fetch : 1,
a24a32dd 25 import : 1,
bfc366d9 26 bidi_import : 1,
73b49a75 27 export : 1,
ae4efe19 28 option : 1,
fa8c097c
IL
29 push : 1,
30 connect : 1,
edc9caf7 31 stateless_connect : 1,
0d957a4d 32 signed_tags : 1,
9ba38048 33 check_connectivity : 1,
597b831a
MM
34 no_disconnect_req : 1,
35 no_private_update : 1;
ac3fda82
JT
36
37 /*
38 * As an optimization, the transport code may invoke fetch before
39 * get_refs_list. If this happens, and if the transport helper doesn't
40 * support connect or stateless_connect, we need to invoke
41 * get_refs_list ourselves if we haven't already done so. Keep track of
42 * whether we have invoked get_refs_list.
43 */
44 unsigned get_refs_list_called : 1;
45
a515ebe9
SR
46 char *export_marks;
47 char *import_marks;
72ff8943 48 /* These go from remote name (as in "list") to private name */
57f32ac2 49 struct refspec rs;
61b075bd
IL
50 /* Transport options for fetch-pack/send-pack (should one of
51 * those be invoked).
52 */
53 struct git_transport_options transport_options;
6eb996b5
DB
54};
55
bf3c523c
IL
56static void sendline(struct helper_data *helper, struct strbuf *buffer)
57{
58 if (debug)
59 fprintf(stderr, "Debug: Remote helper: -> %s", buffer->buf);
06f46f23 60 if (write_in_full(helper->helper->in, buffer->buf, buffer->len) < 0)
6b5b309f 61 die_errno(_("full write to remote helper failed"));
bf3c523c
IL
62}
63
b1c2edfc 64static int recvline_fh(FILE *helper, struct strbuf *buffer)
bf3c523c
IL
65{
66 strbuf_reset(buffer);
67 if (debug)
68 fprintf(stderr, "Debug: Remote helper: Waiting...\n");
692dfdfa 69 if (strbuf_getline(buffer, helper) == EOF) {
bf3c523c
IL
70 if (debug)
71 fprintf(stderr, "Debug: Remote helper quit.\n");
5931b33e 72 return 1;
bf3c523c
IL
73 }
74
75 if (debug)
76 fprintf(stderr, "Debug: Remote helper: <- %s\n", buffer->buf);
77 return 0;
78}
79
fa8c097c
IL
80static int recvline(struct helper_data *helper, struct strbuf *buffer)
81{
b1c2edfc 82 return recvline_fh(helper->out, buffer);
fa8c097c
IL
83}
84
bf3c523c
IL
85static void write_constant(int fd, const char *str)
86{
87 if (debug)
88 fprintf(stderr, "Debug: Remote helper: -> %s", str);
06f46f23 89 if (write_in_full(fd, str, strlen(str)) < 0)
6b5b309f 90 die_errno(_("full write to remote helper failed"));
bf3c523c
IL
91}
92
c2e86add 93static const char *remove_ext_force(const char *url)
25d5cc48
IL
94{
95 if (url) {
96 const char *colon = strchr(url, ':');
97 if (colon && colon[1] == ':')
98 return colon + 2;
99 }
100 return url;
101}
102
fa8c097c
IL
103static void do_take_over(struct transport *transport)
104{
105 struct helper_data *data;
106 data = (struct helper_data *)transport->data;
107 transport_take_over(transport, data->helper);
108 fclose(data->out);
109 free(data);
110}
111
2879bc3b
MH
112static void standard_options(struct transport *t);
113
6eb996b5
DB
114static struct child_process *get_helper(struct transport *transport)
115{
116 struct helper_data *data = transport->data;
117 struct strbuf buf = STRBUF_INIT;
118 struct child_process *helper;
61b075bd 119 int duped;
6b02de3b 120 int code;
6eb996b5
DB
121
122 if (data->helper)
123 return data->helper;
124
483bbd4e
RS
125 helper = xmalloc(sizeof(*helper));
126 child_process_init(helper);
6eb996b5
DB
127 helper->in = -1;
128 helper->out = -1;
129 helper->err = 0;
e0ab2ac6
JK
130 argv_array_pushf(&helper->args, "git-remote-%s", data->name);
131 argv_array_push(&helper->args, transport->remote->name);
132 argv_array_push(&helper->args, remove_ext_force(transport->url));
6b02de3b
IL
133 helper->git_cmd = 0;
134 helper->silent_exec_failure = 1;
e1735872 135
4b0c3c77
JN
136 if (have_git_dir())
137 argv_array_pushf(&helper->env_array, "%s=%s",
138 GIT_DIR_ENVIRONMENT, get_git_dir());
e1735872 139
abd81a3d
JH
140 helper->trace2_child_class = helper->args.argv[0]; /* "remote-<name>" */
141
6b02de3b
IL
142 code = start_command(helper);
143 if (code < 0 && errno == ENOENT)
6b5b309f 144 die(_("unable to find remote helper for '%s'"), data->name);
6b02de3b
IL
145 else if (code != 0)
146 exit(code);
147
6eb996b5 148 data->helper = helper;
fa8c097c 149 data->no_disconnect_req = 0;
57f32ac2 150 refspec_init(&data->rs, REFSPEC_FETCH);
6eb996b5 151
61b075bd 152 /*
1a0c8dfd
JH
153 * Open the output as FILE* so strbuf_getline_*() family of
154 * functions can be used.
61b075bd
IL
155 * Do this with duped fd because fclose() will close the fd,
156 * and stuff like taking over will require the fd to remain.
61b075bd
IL
157 */
158 duped = dup(helper->out);
159 if (duped < 0)
6b5b309f 160 die_errno(_("can't dup helper output fd"));
61b075bd
IL
161 data->out = xfdopen(duped, "r");
162
bf3c523c 163 write_constant(helper->in, "capabilities\n");
2d14d65c 164
6eb996b5 165 while (1) {
21a2d4ad 166 const char *capname, *arg;
28ed5b35 167 int mandatory = 0;
5931b33e
FC
168 if (recvline(data, &buf))
169 exit(128);
6eb996b5
DB
170
171 if (!*buf.buf)
172 break;
28ed5b35
IL
173
174 if (*buf.buf == '*') {
175 capname = buf.buf + 1;
176 mandatory = 1;
177 } else
178 capname = buf.buf;
179
bf3c523c 180 if (debug)
28ed5b35
IL
181 fprintf(stderr, "Debug: Got cap %s\n", capname);
182 if (!strcmp(capname, "fetch"))
6eb996b5 183 data->fetch = 1;
28ed5b35 184 else if (!strcmp(capname, "option"))
ef08ef9e 185 data->option = 1;
28ed5b35 186 else if (!strcmp(capname, "push"))
ae4efe19 187 data->push = 1;
28ed5b35 188 else if (!strcmp(capname, "import"))
e65e91ed 189 data->import = 1;
bfc366d9
FA
190 else if (!strcmp(capname, "bidi-import"))
191 data->bidi_import = 1;
73b49a75
SR
192 else if (!strcmp(capname, "export"))
193 data->export = 1;
9ba38048
NTND
194 else if (!strcmp(capname, "check-connectivity"))
195 data->check_connectivity = 1;
57f32ac2
BW
196 else if (skip_prefix(capname, "refspec ", &arg)) {
197 refspec_append(&data->rs, arg);
fa8c097c
IL
198 } else if (!strcmp(capname, "connect")) {
199 data->connect = 1;
edc9caf7
BW
200 } else if (!strcmp(capname, "stateless-connect")) {
201 data->stateless_connect = 1;
0d957a4d
JK
202 } else if (!strcmp(capname, "signed-tags")) {
203 data->signed_tags = 1;
21a2d4ad
JK
204 } else if (skip_prefix(capname, "export-marks ", &arg)) {
205 data->export_marks = xstrdup(arg);
206 } else if (skip_prefix(capname, "import-marks ", &arg)) {
207 data->import_marks = xstrdup(arg);
59556548 208 } else if (starts_with(capname, "no-private-update")) {
597b831a 209 data->no_private_update = 1;
28ed5b35 210 } else if (mandatory) {
6b5b309f
NTND
211 die(_("unknown mandatory capability %s; this remote "
212 "helper probably needs newer version of Git"),
28ed5b35 213 capname);
72ff8943
DB
214 }
215 }
57f32ac2 216 if (!data->rs.nr && (data->import || data->bidi_import || data->export)) {
6b5b309f 217 warning(_("this remote helper should implement refspec capability"));
6eb996b5 218 }
b962dbdc 219 strbuf_release(&buf);
bf3c523c
IL
220 if (debug)
221 fprintf(stderr, "Debug: Capabilities complete.\n");
2879bc3b 222 standard_options(transport);
6eb996b5
DB
223 return data->helper;
224}
225
226static int disconnect_helper(struct transport *transport)
227{
228 struct helper_data *data = transport->data;
cc567322 229 int res = 0;
bf3c523c 230
6eb996b5 231 if (data->helper) {
bf3c523c
IL
232 if (debug)
233 fprintf(stderr, "Debug: Disconnecting.\n");
fa8c097c 234 if (!data->no_disconnect_req) {
c34fe630
JK
235 /*
236 * Ignore write errors; there's nothing we can do,
237 * since we're about to close the pipe anyway. And the
238 * most likely error is EPIPE due to the helper dying
239 * to report an error itself.
240 */
241 sigchain_push(SIGPIPE, SIG_IGN);
242 xwrite(data->helper->in, "\n", 1);
243 sigchain_pop(SIGPIPE);
fa8c097c 244 }
6eb996b5 245 close(data->helper->in);
61b075bd 246 close(data->helper->out);
292ce46b 247 fclose(data->out);
cc567322 248 res = finish_command(data->helper);
6a83d902 249 FREE_AND_NULL(data->helper);
6eb996b5 250 }
cc567322 251 return res;
6eb996b5
DB
252}
253
ef08ef9e
SP
254static const char *unsupported_options[] = {
255 TRANS_OPT_UPLOADPACK,
256 TRANS_OPT_RECEIVEPACK,
257 TRANS_OPT_THIN,
258 TRANS_OPT_KEEP
259 };
23cd01ec 260
ef08ef9e
SP
261static const char *boolean_options[] = {
262 TRANS_OPT_THIN,
263 TRANS_OPT_KEEP,
0ea47f9d 264 TRANS_OPT_FOLLOWTAGS,
cccf74e2 265 TRANS_OPT_DEEPEN_RELATIVE
ef08ef9e
SP
266 };
267
9318c5dd
NTND
268static int strbuf_set_helper_option(struct helper_data *data,
269 struct strbuf *buf)
270{
271 int ret;
272
273 sendline(data, buf);
274 if (recvline(data, buf))
275 exit(128);
276
277 if (!strcmp(buf->buf, "ok"))
278 ret = 0;
279 else if (starts_with(buf->buf, "error"))
280 ret = -1;
281 else if (!strcmp(buf->buf, "unsupported"))
282 ret = 1;
283 else {
6b5b309f 284 warning(_("%s unexpectedly said: '%s'"), data->name, buf->buf);
9318c5dd
NTND
285 ret = 1;
286 }
287 return ret;
288}
289
a45a2600
NTND
290static int string_list_set_helper_option(struct helper_data *data,
291 const char *name,
292 struct string_list *list)
293{
294 struct strbuf buf = STRBUF_INIT;
295 int i, ret = 0;
296
297 for (i = 0; i < list->nr; i++) {
298 strbuf_addf(&buf, "option %s ", name);
299 quote_c_style(list->items[i].string, &buf, NULL, 0);
300 strbuf_addch(&buf, '\n');
301
302 if ((ret = strbuf_set_helper_option(data, &buf)))
303 break;
304 strbuf_reset(&buf);
305 }
306 strbuf_release(&buf);
307 return ret;
308}
309
ef08ef9e
SP
310static int set_helper_option(struct transport *transport,
311 const char *name, const char *value)
312{
313 struct helper_data *data = transport->data;
ef08ef9e
SP
314 struct strbuf buf = STRBUF_INIT;
315 int i, ret, is_bool = 0;
316
bf3c523c
IL
317 get_helper(transport);
318
ef08ef9e
SP
319 if (!data->option)
320 return 1;
321
a45a2600
NTND
322 if (!strcmp(name, "deepen-not"))
323 return string_list_set_helper_option(data, name,
324 (struct string_list *)value);
325
ef08ef9e
SP
326 for (i = 0; i < ARRAY_SIZE(unsupported_options); i++) {
327 if (!strcmp(name, unsupported_options[i]))
328 return 1;
329 }
330
331 for (i = 0; i < ARRAY_SIZE(boolean_options); i++) {
332 if (!strcmp(name, boolean_options[i])) {
333 is_bool = 1;
334 break;
335 }
336 }
337
338 strbuf_addf(&buf, "option %s ", name);
339 if (is_bool)
340 strbuf_addstr(&buf, value ? "true" : "false");
341 else
342 quote_c_style(value, &buf, NULL, 0);
343 strbuf_addch(&buf, '\n');
344
9318c5dd 345 ret = strbuf_set_helper_option(data, &buf);
ef08ef9e
SP
346 strbuf_release(&buf);
347 return ret;
348}
349
350static void standard_options(struct transport *t)
351{
352 char buf[16];
ef08ef9e 353 int v = t->verbose;
ef08ef9e 354
d01b3c02 355 set_helper_option(t, "progress", t->progress ? "true" : "false");
ef08ef9e 356
8c5acfb9 357 xsnprintf(buf, sizeof(buf), "%d", v + 1);
ef08ef9e 358 set_helper_option(t, "verbosity", buf);
c915f11e
EW
359
360 switch (t->family) {
361 case TRANSPORT_FAMILY_ALL:
362 /*
363 * this is already the default,
364 * do not break old remote helpers by setting "all" here
365 */
366 break;
367 case TRANSPORT_FAMILY_IPV4:
368 set_helper_option(t, "family", "ipv4");
369 break;
370 case TRANSPORT_FAMILY_IPV6:
371 set_helper_option(t, "family", "ipv6");
372 break;
373 }
ef08ef9e
SP
374}
375
f2a37151
DB
376static int release_helper(struct transport *transport)
377{
cc567322 378 int res = 0;
72ff8943 379 struct helper_data *data = transport->data;
57f32ac2 380 refspec_clear(&data->rs);
cc567322 381 res = disconnect_helper(transport);
f2a37151 382 free(transport->data);
cc567322 383 return res;
f2a37151
DB
384}
385
6eb996b5 386static int fetch_with_fetch(struct transport *transport,
37148311 387 int nr_heads, struct ref **to_fetch)
6eb996b5 388{
292ce46b 389 struct helper_data *data = transport->data;
6eb996b5
DB
390 int i;
391 struct strbuf buf = STRBUF_INIT;
392
393 for (i = 0; i < nr_heads; i++) {
1088261f 394 const struct ref *posn = to_fetch[i];
6eb996b5
DB
395 if (posn->status & REF_STATUS_UPTODATE)
396 continue;
2d14d65c
DB
397
398 strbuf_addf(&buf, "fetch %s %s\n",
f4e54d02 399 oid_to_hex(&posn->old_oid),
33cae542 400 posn->symref ? posn->symref : posn->name);
292ce46b 401 }
2d14d65c 402
292ce46b 403 strbuf_addch(&buf, '\n');
bf3c523c 404 sendline(data, &buf);
292ce46b
SP
405
406 while (1) {
145136a9
JH
407 const char *name;
408
5931b33e
FC
409 if (recvline(data, &buf))
410 exit(128);
292ce46b 411
145136a9 412 if (skip_prefix(buf.buf, "lock ", &name)) {
9da69a65 413 if (transport->pack_lockfiles.nr)
6b5b309f 414 warning(_("%s also locked %s"), data->name, name);
292ce46b 415 else
9da69a65
JT
416 string_list_append(&transport->pack_lockfiles,
417 name);
292ce46b 418 }
9ba38048
NTND
419 else if (data->check_connectivity &&
420 data->transport_options.check_self_contained_and_connected &&
421 !strcmp(buf.buf, "connectivity-ok"))
422 data->transport_options.self_contained_and_connected = 1;
292ce46b
SP
423 else if (!buf.len)
424 break;
425 else
6b5b309f 426 warning(_("%s unexpectedly said: '%s'"), data->name, buf.buf);
6eb996b5 427 }
292ce46b 428 strbuf_release(&buf);
6eb996b5
DB
429 return 0;
430}
431
e65e91ed
DB
432static int get_importer(struct transport *transport, struct child_process *fastimport)
433{
434 struct child_process *helper = get_helper(transport);
bfc366d9 435 struct helper_data *data = transport->data;
bfc366d9 436 int cat_blob_fd, code;
483bbd4e 437 child_process_init(fastimport);
8b355427 438 fastimport->in = xdup(helper->out);
173fd1a1 439 argv_array_push(&fastimport->args, "fast-import");
68061e34 440 argv_array_push(&fastimport->args, "--allow-unsafe-features");
173fd1a1 441 argv_array_push(&fastimport->args, debug ? "--stats" : "--quiet");
e65e91ed 442
bfc366d9
FA
443 if (data->bidi_import) {
444 cat_blob_fd = xdup(helper->in);
173fd1a1 445 argv_array_pushf(&fastimport->args, "--cat-blob-fd=%d", cat_blob_fd);
bfc366d9 446 }
e65e91ed 447 fastimport->git_cmd = 1;
bfc366d9
FA
448
449 code = start_command(fastimport);
450 return code;
e65e91ed
DB
451}
452
73b49a75
SR
453static int get_exporter(struct transport *transport,
454 struct child_process *fastexport,
73b49a75
SR
455 struct string_list *revlist_args)
456{
a515ebe9 457 struct helper_data *data = transport->data;
73b49a75 458 struct child_process *helper = get_helper(transport);
2aeae40a 459 int i;
852e54bc 460
8828f298 461 child_process_init(fastexport);
73b49a75
SR
462
463 /* we need to duplicate helper->in because we want to use it after
464 * fastexport is done with it. */
465 fastexport->out = dup(helper->in);
2aeae40a
JK
466 argv_array_push(&fastexport->args, "fast-export");
467 argv_array_push(&fastexport->args, "--use-done-feature");
468 argv_array_push(&fastexport->args, data->signed_tags ?
469 "--signed-tags=verbatim" : "--signed-tags=warn-strip");
470 if (data->export_marks)
471 argv_array_pushf(&fastexport->args, "--export-marks=%s.tmp", data->export_marks);
472 if (data->import_marks)
473 argv_array_pushf(&fastexport->args, "--import-marks=%s", data->import_marks);
73b49a75
SR
474
475 for (i = 0; i < revlist_args->nr; i++)
2aeae40a 476 argv_array_push(&fastexport->args, revlist_args->items[i].string);
73b49a75
SR
477
478 fastexport->git_cmd = 1;
479 return start_command(fastexport);
480}
481
e65e91ed
DB
482static int fetch_with_import(struct transport *transport,
483 int nr_heads, struct ref **to_fetch)
484{
485 struct child_process fastimport;
72ff8943 486 struct helper_data *data = transport->data;
e65e91ed
DB
487 int i;
488 struct ref *posn;
489 struct strbuf buf = STRBUF_INIT;
490
bf3c523c
IL
491 get_helper(transport);
492
e65e91ed 493 if (get_importer(transport, &fastimport))
6b5b309f 494 die(_("couldn't run fast-import"));
e65e91ed
DB
495
496 for (i = 0; i < nr_heads; i++) {
497 posn = to_fetch[i];
498 if (posn->status & REF_STATUS_UPTODATE)
499 continue;
500
33cae542
MH
501 strbuf_addf(&buf, "import %s\n",
502 posn->symref ? posn->symref : posn->name);
bf3c523c 503 sendline(data, &buf);
e65e91ed
DB
504 strbuf_reset(&buf);
505 }
9504bc9d
SR
506
507 write_constant(data->helper->in, "\n");
bfc366d9
FA
508 /*
509 * remote-helpers that advertise the bidi-import capability are required to
510 * buffer the complete batch of import commands until this newline before
511 * sending data to fast-import.
512 * These helpers read back data from fast-import on their stdin, which could
513 * be mixed with import commands, otherwise.
514 */
9504bc9d 515
cc567322 516 if (finish_command(&fastimport))
6b5b309f 517 die(_("error while running fast-import"));
e65e91ed 518
dff9d65d
FA
519 /*
520 * The fast-import stream of a remote helper that advertises
521 * the "refspec" capability writes to the refs named after the
522 * right hand side of the first refspec matching each ref we
523 * were fetching.
524 *
525 * (If no "refspec" capability was specified, for historical
7a43c554 526 * reasons we default to the equivalent of *:*.)
dff9d65d
FA
527 *
528 * Store the result in to_fetch[i].old_sha1. Callers such
529 * as "git fetch" can use the value to write feedback to the
530 * terminal, populate FETCH_HEAD, and determine what new value
531 * should be written to peer_ref if the update is a
532 * fast-forward or this is a forced update.
533 */
e65e91ed 534 for (i = 0; i < nr_heads; i++) {
33cae542 535 char *private, *name;
e65e91ed
DB
536 posn = to_fetch[i];
537 if (posn->status & REF_STATUS_UPTODATE)
538 continue;
33cae542 539 name = posn->symref ? posn->symref : posn->name;
57f32ac2 540 if (data->rs.nr)
d000414e 541 private = apply_refspecs(&data->rs, name);
72ff8943 542 else
33cae542 543 private = xstrdup(name);
d51b720f 544 if (private) {
34c290a6 545 if (read_ref(private, &posn->old_oid) < 0)
6b5b309f 546 die(_("could not read ref %s"), private);
d51b720f
MH
547 free(private);
548 }
e65e91ed 549 }
b962dbdc 550 strbuf_release(&buf);
e65e91ed
DB
551 return 0;
552}
553
176e85c1 554static int run_connect(struct transport *transport, struct strbuf *cmdbuf)
fa8c097c
IL
555{
556 struct helper_data *data = transport->data;
176e85c1
BW
557 int ret = 0;
558 int duped;
fa8c097c 559 FILE *input;
176e85c1 560 struct child_process *helper;
fa8c097c
IL
561
562 helper = get_helper(transport);
563
564 /*
565 * Yes, dup the pipe another time, as we need unbuffered version
566 * of input pipe as FILE*. fclose() closes the underlying fd and
567 * stream buffering only can be changed before first I/O operation
568 * on it.
569 */
570 duped = dup(helper->out);
571 if (duped < 0)
6b5b309f 572 die_errno(_("can't dup helper output fd"));
fa8c097c
IL
573 input = xfdopen(duped, "r");
574 setvbuf(input, NULL, _IONBF, 0);
575
176e85c1
BW
576 sendline(data, cmdbuf);
577 if (recvline_fh(input, cmdbuf))
578 exit(128);
579
580 if (!strcmp(cmdbuf->buf, "")) {
581 data->no_disconnect_req = 1;
582 if (debug)
583 fprintf(stderr, "Debug: Smart transport connection "
584 "ready.\n");
585 ret = 1;
586 } else if (!strcmp(cmdbuf->buf, "fallback")) {
587 if (debug)
588 fprintf(stderr, "Debug: Falling back to dumb "
589 "transport.\n");
590 } else {
739fb716 591 die(_("unknown response to connect: %s"),
6b5b309f 592 cmdbuf->buf);
176e85c1
BW
593 }
594
595 fclose(input);
596 return ret;
597}
598
599static int process_connect_service(struct transport *transport,
600 const char *name, const char *exec)
601{
602 struct helper_data *data = transport->data;
603 struct strbuf cmdbuf = STRBUF_INIT;
604 int ret = 0;
605
fa8c097c
IL
606 /*
607 * Handle --upload-pack and friends. This is fire and forget...
608 * just warn if it fails.
609 */
610 if (strcmp(name, exec)) {
176e85c1 611 int r = set_helper_option(transport, "servpath", exec);
fa8c097c 612 if (r > 0)
6b5b309f 613 warning(_("setting remote service path not supported by protocol"));
fa8c097c 614 else if (r < 0)
6b5b309f 615 warning(_("invalid remote service path"));
fa8c097c
IL
616 }
617
176e85c1 618 if (data->connect) {
fa8c097c 619 strbuf_addf(&cmdbuf, "connect %s\n", name);
176e85c1 620 ret = run_connect(transport, &cmdbuf);
edc9caf7
BW
621 } else if (data->stateless_connect &&
622 (get_protocol_version_config() == protocol_v2) &&
623 !strcmp("git-upload-pack", name)) {
624 strbuf_addf(&cmdbuf, "stateless-connect %s\n", name);
625 ret = run_connect(transport, &cmdbuf);
626 if (ret)
627 transport->stateless_rpc = 1;
176e85c1 628 }
fa8c097c 629
4168be8e 630 strbuf_release(&cmdbuf);
fa8c097c
IL
631 return ret;
632}
633
634static int process_connect(struct transport *transport,
635 int for_push)
636{
637 struct helper_data *data = transport->data;
638 const char *name;
639 const char *exec;
640
641 name = for_push ? "git-receive-pack" : "git-upload-pack";
642 if (for_push)
643 exec = data->transport_options.receivepack;
644 else
645 exec = data->transport_options.uploadpack;
646
647 return process_connect_service(transport, name, exec);
648}
649
b236752a
IL
650static int connect_helper(struct transport *transport, const char *name,
651 const char *exec, int fd[2])
652{
653 struct helper_data *data = transport->data;
654
655 /* Get_helper so connect is inited. */
656 get_helper(transport);
657 if (!data->connect)
6b5b309f 658 die(_("operation not supported by protocol"));
b236752a
IL
659
660 if (!process_connect_service(transport, name, exec))
6b5b309f 661 die(_("can't connect to subservice %s"), name);
b236752a
IL
662
663 fd[0] = data->helper->out;
664 fd[1] = data->helper->in;
665 return 0;
666}
667
ac3fda82
JT
668static struct ref *get_refs_list_using_list(struct transport *transport,
669 int for_push);
670
6eb996b5 671static int fetch(struct transport *transport,
e2842b39 672 int nr_heads, struct ref **to_fetch)
6eb996b5
DB
673{
674 struct helper_data *data = transport->data;
675 int i, count;
676
ac3fda82
JT
677 get_helper(transport);
678
fa8c097c
IL
679 if (process_connect(transport, 0)) {
680 do_take_over(transport);
e2842b39 681 return transport->vtable->fetch(transport, nr_heads, to_fetch);
fa8c097c
IL
682 }
683
ac3fda82
JT
684 if (!data->get_refs_list_called)
685 get_refs_list_using_list(transport, 0);
686
6eb996b5
DB
687 count = 0;
688 for (i = 0; i < nr_heads; i++)
689 if (!(to_fetch[i]->status & REF_STATUS_UPTODATE))
690 count++;
691
692 if (!count)
693 return 0;
694
aab1beb0
MH
695 if (data->check_connectivity &&
696 data->transport_options.check_self_contained_and_connected)
697 set_helper_option(transport, "check-connectivity", "true");
698
699 if (transport->cloning)
700 set_helper_option(transport, "cloning", "true");
701
702 if (data->transport_options.update_shallow)
703 set_helper_option(transport, "update-shallow", "true");
704
87c2d9d3 705 if (data->transport_options.filter_options.choice) {
cf9ceb5a
MD
706 const char *spec = expand_list_objects_filter_spec(
707 &data->transport_options.filter_options);
708 set_helper_option(transport, "filter", spec);
87c2d9d3 709 }
640d8b72 710
3390e42a
JT
711 if (data->transport_options.negotiation_tips)
712 warning("Ignoring --negotiation-tip because the protocol does not support it.");
713
6eb996b5
DB
714 if (data->fetch)
715 return fetch_with_fetch(transport, nr_heads, to_fetch);
716
e65e91ed
DB
717 if (data->import)
718 return fetch_with_import(transport, nr_heads, to_fetch);
719
6eb996b5
DB
720 return -1;
721}
722
664059fb 723static int push_update_ref_status(struct strbuf *buf,
d2e73c6f
SR
724 struct ref **ref,
725 struct ref *remote_refs)
726{
727 char *refname, *msg;
f9e3c6be 728 int status, forced = 0;
d2e73c6f 729
59556548 730 if (starts_with(buf->buf, "ok ")) {
d2e73c6f
SR
731 status = REF_STATUS_OK;
732 refname = buf->buf + 3;
59556548 733 } else if (starts_with(buf->buf, "error ")) {
d2e73c6f
SR
734 status = REF_STATUS_REMOTE_REJECT;
735 refname = buf->buf + 6;
736 } else
6b5b309f 737 die(_("expected ok/error, helper said '%s'"), buf->buf);
d2e73c6f
SR
738
739 msg = strchr(refname, ' ');
740 if (msg) {
741 struct strbuf msg_buf = STRBUF_INIT;
742 const char *end;
743
744 *msg++ = '\0';
745 if (!unquote_c_style(&msg_buf, msg, &end))
746 msg = strbuf_detach(&msg_buf, NULL);
747 else
748 msg = xstrdup(msg);
749 strbuf_release(&msg_buf);
750
751 if (!strcmp(msg, "no match")) {
752 status = REF_STATUS_NONE;
6a83d902 753 FREE_AND_NULL(msg);
d2e73c6f
SR
754 }
755 else if (!strcmp(msg, "up to date")) {
756 status = REF_STATUS_UPTODATE;
6a83d902 757 FREE_AND_NULL(msg);
d2e73c6f
SR
758 }
759 else if (!strcmp(msg, "non-fast forward")) {
760 status = REF_STATUS_REJECT_NONFASTFORWARD;
6a83d902 761 FREE_AND_NULL(msg);
d2e73c6f 762 }
dbfeddb1
CR
763 else if (!strcmp(msg, "already exists")) {
764 status = REF_STATUS_REJECT_ALREADY_EXISTS;
6a83d902 765 FREE_AND_NULL(msg);
dbfeddb1 766 }
75e5c0dc
JH
767 else if (!strcmp(msg, "fetch first")) {
768 status = REF_STATUS_REJECT_FETCH_FIRST;
6a83d902 769 FREE_AND_NULL(msg);
75e5c0dc
JH
770 }
771 else if (!strcmp(msg, "needs force")) {
772 status = REF_STATUS_REJECT_NEEDS_FORCE;
6a83d902 773 FREE_AND_NULL(msg);
75e5c0dc 774 }
631b5ef2
JH
775 else if (!strcmp(msg, "stale info")) {
776 status = REF_STATUS_REJECT_STALE;
6a83d902 777 FREE_AND_NULL(msg);
631b5ef2 778 }
f9e3c6be
FC
779 else if (!strcmp(msg, "forced update")) {
780 forced = 1;
6a83d902 781 FREE_AND_NULL(msg);
f9e3c6be 782 }
d2e73c6f
SR
783 }
784
785 if (*ref)
786 *ref = find_ref_by_name(*ref, refname);
787 if (!*ref)
788 *ref = find_ref_by_name(remote_refs, refname);
789 if (!*ref) {
6b5b309f 790 warning(_("helper reported unexpected status of %s"), refname);
664059fb 791 return 1;
d2e73c6f
SR
792 }
793
794 if ((*ref)->status != REF_STATUS_NONE) {
795 /*
796 * Earlier, the ref was marked not to be pushed, so ignore the ref
797 * status reported by the remote helper if the latter is 'no match'.
798 */
799 if (status == REF_STATUS_NONE)
664059fb 800 return 1;
d2e73c6f
SR
801 }
802
803 (*ref)->status = status;
cf31f70c 804 (*ref)->forced_update |= forced;
d2e73c6f 805 (*ref)->remote_status = msg;
126aac5c 806 return !(status == REF_STATUS_OK);
d2e73c6f
SR
807}
808
0551a06c 809static int push_update_refs_status(struct helper_data *data,
5a75353f
FC
810 struct ref *remote_refs,
811 int flags)
d2e73c6f
SR
812{
813 struct strbuf buf = STRBUF_INIT;
814 struct ref *ref = remote_refs;
0551a06c
FC
815 int ret = 0;
816
d2e73c6f 817 for (;;) {
664059fb
FC
818 char *private;
819
0551a06c
FC
820 if (recvline(data, &buf)) {
821 ret = 1;
822 break;
823 }
824
d2e73c6f
SR
825 if (!buf.len)
826 break;
827
664059fb
FC
828 if (push_update_ref_status(&buf, &ref, remote_refs))
829 continue;
830
57f32ac2 831 if (flags & TRANSPORT_PUSH_DRY_RUN || !data->rs.nr || data->no_private_update)
664059fb
FC
832 continue;
833
834 /* propagate back the update to the remote namespace */
d000414e 835 private = apply_refspecs(&data->rs, ref->name);
664059fb
FC
836 if (!private)
837 continue;
ae077771 838 update_ref("update by helper", private, &ref->new_oid, NULL,
839 0, 0);
664059fb 840 free(private);
d2e73c6f
SR
841 }
842 strbuf_release(&buf);
0551a06c 843 return ret;
d2e73c6f
SR
844}
845
30261094
DB
846static void set_common_push_options(struct transport *transport,
847 const char *name, int flags)
848{
849 if (flags & TRANSPORT_PUSH_DRY_RUN) {
850 if (set_helper_option(transport, "dry-run", "true") != 0)
6b5b309f 851 die(_("helper %s does not support dry-run"), name);
30261094
DB
852 } else if (flags & TRANSPORT_PUSH_CERT_ALWAYS) {
853 if (set_helper_option(transport, TRANS_OPT_PUSH_CERT, "true") != 0)
6b5b309f 854 die(_("helper %s does not support --signed"), name);
30261094
DB
855 } else if (flags & TRANSPORT_PUSH_CERT_IF_ASKED) {
856 if (set_helper_option(transport, TRANS_OPT_PUSH_CERT, "if-asked") != 0)
6b5b309f 857 die(_("helper %s does not support --signed=if-asked"), name);
30261094 858 }
438fc684 859
6f119424 860 if (flags & TRANSPORT_PUSH_ATOMIC)
861 if (set_helper_option(transport, TRANS_OPT_ATOMIC, "true") != 0)
862 die(_("helper %s does not support --atomic"), name);
863
438fc684
SB
864 if (flags & TRANSPORT_PUSH_OPTIONS) {
865 struct string_list_item *item;
866 for_each_string_list_item(item, transport->push_options)
867 if (set_helper_option(transport, "push-option", item->string) != 0)
6b5b309f 868 die(_("helper %s does not support 'push-option'"), name);
438fc684 869 }
30261094
DB
870}
871
73b49a75 872static int push_refs_with_push(struct transport *transport,
05c1eb10 873 struct ref *remote_refs, int flags)
ae4efe19
SP
874{
875 int force_all = flags & TRANSPORT_PUSH_FORCE;
876 int mirror = flags & TRANSPORT_PUSH_MIRROR;
3bca1e7f 877 int atomic = flags & TRANSPORT_PUSH_ATOMIC;
ae4efe19
SP
878 struct helper_data *data = transport->data;
879 struct strbuf buf = STRBUF_INIT;
ae4efe19 880 struct ref *ref;
05c1eb10
JH
881 struct string_list cas_options = STRING_LIST_INIT_DUP;
882 struct string_list_item *cas_option;
ae4efe19 883
c0aa335c 884 get_helper(transport);
ae4efe19
SP
885 if (!data->push)
886 return 1;
887
888 for (ref = remote_refs; ref; ref = ref->next) {
20e8b465 889 if (!ref->peer_ref && !mirror)
ae4efe19
SP
890 continue;
891
20e8b465
TRC
892 /* Check for statuses set by set_ref_status_for_push() */
893 switch (ref->status) {
894 case REF_STATUS_REJECT_NONFASTFORWARD:
631b5ef2 895 case REF_STATUS_REJECT_STALE:
dbfeddb1 896 case REF_STATUS_REJECT_ALREADY_EXISTS:
3bca1e7f 897 if (atomic) {
dfe1b7f1 898 reject_atomic_push(remote_refs, mirror);
3bca1e7f
ES
899 string_list_clear(&cas_options, 0);
900 return 0;
901 } else
902 continue;
20e8b465 903 case REF_STATUS_UPTODATE:
ae4efe19 904 continue;
20e8b465
TRC
905 default:
906 ; /* do nothing */
ae4efe19
SP
907 }
908
909 if (force_all)
910 ref->force = 1;
911
912 strbuf_addstr(&buf, "push ");
913 if (!ref->deletion) {
914 if (ref->force)
915 strbuf_addch(&buf, '+');
916 if (ref->peer_ref)
917 strbuf_addstr(&buf, ref->peer_ref->name);
918 else
f4e54d02 919 strbuf_addstr(&buf, oid_to_hex(&ref->new_oid));
ae4efe19
SP
920 }
921 strbuf_addch(&buf, ':');
922 strbuf_addstr(&buf, ref->name);
923 strbuf_addch(&buf, '\n');
05c1eb10
JH
924
925 /*
926 * The "--force-with-lease" options without explicit
927 * values to expect have already been expanded into
f4e54d02 928 * the ref->old_oid_expect[] field; we can ignore
05c1eb10
JH
929 * transport->smart_options->cas altogether and instead
930 * can enumerate them from the refs.
931 */
932 if (ref->expect_old_sha1) {
933 struct strbuf cas = STRBUF_INIT;
934 strbuf_addf(&cas, "%s:%s",
f4e54d02 935 ref->name, oid_to_hex(&ref->old_oid_expect));
176cb979
RS
936 string_list_append_nodup(&cas_options,
937 strbuf_detach(&cas, NULL));
05c1eb10 938 }
ae4efe19 939 }
05c1eb10
JH
940 if (buf.len == 0) {
941 string_list_clear(&cas_options, 0);
d8f67d20 942 return 0;
05c1eb10 943 }
ae4efe19 944
05c1eb10
JH
945 for_each_string_list_item(cas_option, &cas_options)
946 set_helper_option(transport, "cas", cas_option->string);
30261094 947 set_common_push_options(transport, data->name, flags);
ae4efe19
SP
948
949 strbuf_addch(&buf, '\n');
bf3c523c 950 sendline(data, &buf);
ae4efe19 951 strbuf_release(&buf);
176cb979 952 string_list_clear(&cas_options, 0);
d2e73c6f 953
0551a06c 954 return push_update_refs_status(data, remote_refs, flags);
ae4efe19
SP
955}
956
73b49a75
SR
957static int push_refs_with_export(struct transport *transport,
958 struct ref *remote_refs, int flags)
959{
960 struct ref *ref;
961 struct child_process *helper, exporter;
962 struct helper_data *data = transport->data;
d98c8153 963 struct string_list revlist_args = STRING_LIST_INIT_DUP;
73b49a75
SR
964 struct strbuf buf = STRBUF_INIT;
965
57f32ac2 966 if (!data->rs.nr)
6b5b309f 967 die(_("remote-helper doesn't support push; refspec needed"));
21610d82 968
30261094 969 set_common_push_options(transport, data->name, flags);
510fa6f5
FC
970 if (flags & TRANSPORT_PUSH_FORCE) {
971 if (set_helper_option(transport, "force", "true") != 0)
6b5b309f 972 warning(_("helper %s does not support 'force'"), data->name);
510fa6f5
FC
973 }
974
73b49a75
SR
975 helper = get_helper(transport);
976
977 write_constant(helper->in, "export\n");
978
73b49a75
SR
979 for (ref = remote_refs; ref; ref = ref->next) {
980 char *private;
27912a03 981 struct object_id oid;
73b49a75 982
d000414e 983 private = apply_refspecs(&data->rs, ref->name);
e82caf38 984 if (private && !get_oid(private, &oid)) {
73b49a75 985 strbuf_addf(&buf, "^%s", private);
176cb979
RS
986 string_list_append_nodup(&revlist_args,
987 strbuf_detach(&buf, NULL));
27912a03 988 oidcpy(&ref->old_oid, &oid);
73b49a75 989 }
2faa1527 990 free(private);
73b49a75 991
67c9c782 992 if (ref->peer_ref) {
d98c8153 993 if (strcmp(ref->name, ref->peer_ref->name)) {
f3d03763
FC
994 if (!ref->deletion) {
995 const char *name;
996 int flag;
997
998 /* Follow symbolic refs (mainly for HEAD). */
49e61479 999 name = resolve_ref_unsafe(ref->peer_ref->name,
1000 RESOLVE_REF_READING,
1001 &oid, &flag);
f3d03763
FC
1002 if (!name || !(flag & REF_ISSYMREF))
1003 name = ref->peer_ref->name;
9193f742 1004
f3d03763
FC
1005 strbuf_addf(&buf, "%s:%s", name, ref->name);
1006 } else
1007 strbuf_addf(&buf, ":%s", ref->name);
9193f742 1008
d98c8153
FC
1009 string_list_append(&revlist_args, "--refspec");
1010 string_list_append(&revlist_args, buf.buf);
1011 strbuf_release(&buf);
1012 }
f3d03763
FC
1013 if (!ref->deletion)
1014 string_list_append(&revlist_args, ref->peer_ref->name);
67c9c782 1015 }
73b49a75
SR
1016 }
1017
a515ebe9 1018 if (get_exporter(transport, &exporter, &revlist_args))
6b5b309f 1019 die(_("couldn't run fast-export"));
73b49a75 1020
d98c8153
FC
1021 string_list_clear(&revlist_args, 1);
1022
cc567322 1023 if (finish_command(&exporter))
6b5b309f 1024 die(_("error while running fast-export"));
3994e64d
FC
1025 if (push_update_refs_status(data, remote_refs, flags))
1026 return 1;
1027
1028 if (data->export_marks) {
1029 strbuf_addf(&buf, "%s.tmp", data->export_marks);
1030 rename(buf.buf, data->export_marks);
1031 strbuf_release(&buf);
1032 }
1033
1034 return 0;
73b49a75
SR
1035}
1036
1037static int push_refs(struct transport *transport,
1038 struct ref *remote_refs, int flags)
1039{
1040 struct helper_data *data = transport->data;
1041
1042 if (process_connect(transport, 1)) {
1043 do_take_over(transport);
e967ca38 1044 return transport->vtable->push_refs(transport, remote_refs, flags);
73b49a75
SR
1045 }
1046
1047 if (!remote_refs) {
6b5b309f
NTND
1048 fprintf(stderr,
1049 _("No refs in common and none specified; doing nothing.\n"
1050 "Perhaps you should specify a branch such as 'master'.\n"));
73b49a75
SR
1051 return 0;
1052 }
1053
1054 if (data->push)
1055 return push_refs_with_push(transport, remote_refs, flags);
1056
1057 if (data->export)
1058 return push_refs_with_export(transport, remote_refs, flags);
1059
1060 return -1;
1061}
1062
1063
3b335762
NTND
1064static int has_attribute(const char *attrs, const char *attr)
1065{
f8ec9167
DB
1066 int len;
1067 if (!attrs)
1068 return 0;
1069
1070 len = strlen(attr);
1071 for (;;) {
1072 const char *space = strchrnul(attrs, ' ');
1073 if (len == space - attrs && !strncmp(attrs, attr, len))
1074 return 1;
1075 if (!*space)
1076 return 0;
1077 attrs = space + 1;
1078 }
1079}
1080
834cf34b
BW
1081static struct ref *get_refs_list(struct transport *transport, int for_push,
1082 const struct argv_array *ref_prefixes)
ac3fda82
JT
1083{
1084 get_helper(transport);
1085
1086 if (process_connect(transport, for_push)) {
1087 do_take_over(transport);
1088 return transport->vtable->get_refs_list(transport, for_push, ref_prefixes);
1089 }
1090
1091 return get_refs_list_using_list(transport, for_push);
1092}
1093
1094static struct ref *get_refs_list_using_list(struct transport *transport,
1095 int for_push)
6eb996b5 1096{
292ce46b 1097 struct helper_data *data = transport->data;
6eb996b5
DB
1098 struct child_process *helper;
1099 struct ref *ret = NULL;
1100 struct ref **tail = &ret;
1101 struct ref *posn;
1102 struct strbuf buf = STRBUF_INIT;
6eb996b5 1103
ac3fda82 1104 data->get_refs_list_called = 1;
6eb996b5 1105 helper = get_helper(transport);
2d14d65c 1106
ae4efe19
SP
1107 if (data->push && for_push)
1108 write_str_in_full(helper->in, "list for-push\n");
1109 else
1110 write_str_in_full(helper->in, "list\n");
6eb996b5 1111
6eb996b5
DB
1112 while (1) {
1113 char *eov, *eon;
5931b33e
FC
1114 if (recvline(data, &buf))
1115 exit(128);
6eb996b5
DB
1116
1117 if (!*buf.buf)
1118 break;
1119
1120 eov = strchr(buf.buf, ' ');
1121 if (!eov)
6b5b309f 1122 die(_("malformed response in ref list: %s"), buf.buf);
6eb996b5
DB
1123 eon = strchr(eov + 1, ' ');
1124 *eov = '\0';
1125 if (eon)
1126 *eon = '\0';
1127 *tail = alloc_ref(eov + 1);
1128 if (buf.buf[0] == '@')
1129 (*tail)->symref = xstrdup(buf.buf + 1);
1130 else if (buf.buf[0] != '?')
f4e54d02 1131 get_oid_hex(buf.buf, &(*tail)->old_oid);
f8ec9167
DB
1132 if (eon) {
1133 if (has_attribute(eon + 1, "unchanged")) {
1134 (*tail)->status |= REF_STATUS_UPTODATE;
34c290a6 1135 if (read_ref((*tail)->name, &(*tail)->old_oid) < 0)
1a07e59c 1136 die(_("could not read ref %s"),
ae25fd39 1137 (*tail)->name);
f8ec9167
DB
1138 }
1139 }
6eb996b5
DB
1140 tail = &((*tail)->next);
1141 }
bf3c523c
IL
1142 if (debug)
1143 fprintf(stderr, "Debug: Read ref listing.\n");
6eb996b5
DB
1144 strbuf_release(&buf);
1145
1146 for (posn = ret; posn; posn = posn->next)
1147 resolve_remote_symref(posn, ret);
1148
1149 return ret;
1150}
1151
e967ca38
JT
1152static struct transport_vtable vtable = {
1153 set_helper_option,
1154 get_refs_list,
1155 fetch,
1156 push_refs,
1157 connect_helper,
1158 release_helper
1159};
1160
c9e388bb 1161int transport_helper_init(struct transport *transport, const char *name)
6eb996b5 1162{
92e25b6b 1163 struct helper_data *data = xcalloc(1, sizeof(*data));
c9e388bb 1164 data->name = name;
6eb996b5 1165
a5adaced
JK
1166 transport_check_allowed(name);
1167
bf3c523c
IL
1168 if (getenv("GIT_TRANSPORT_HELPER_DEBUG"))
1169 debug = 1;
1170
6eb996b5 1171 transport->data = data;
e967ca38 1172 transport->vtable = &vtable;
61b075bd 1173 transport->smart_options = &(data->transport_options);
6eb996b5
DB
1174 return 0;
1175}
419f37db
IL
1176
1177/*
1178 * Linux pipes can buffer 65536 bytes at once (and most platforms can
1179 * buffer less), so attempt reads and writes with up to that size.
1180 */
1181#define BUFFERSIZE 65536
1182/* This should be enough to hold debugging message. */
1183#define PBUFFERSIZE 8192
1184
1185/* Print bidirectional transfer loop debug message. */
4621085b 1186__attribute__((format (printf, 1, 2)))
419f37db
IL
1187static void transfer_debug(const char *fmt, ...)
1188{
6cdf8a79
1189 /*
1190 * NEEDSWORK: This function is sometimes used from multiple threads, and
1191 * we end up using debug_enabled racily. That "should not matter" since
1192 * we always write the same value, but it's still wrong. This function
1193 * is listed in .tsan-suppressions for the time being.
1194 */
1195
419f37db
IL
1196 va_list args;
1197 char msgbuf[PBUFFERSIZE];
1198 static int debug_enabled = -1;
1199
1200 if (debug_enabled < 0)
1201 debug_enabled = getenv("GIT_TRANSLOOP_DEBUG") ? 1 : 0;
1202 if (!debug_enabled)
1203 return;
1204
1205 va_start(args, fmt);
1206 vsnprintf(msgbuf, PBUFFERSIZE, fmt, args);
1207 va_end(args);
1208 fprintf(stderr, "Transfer loop debugging: %s\n", msgbuf);
1209}
1210
1211/* Stream state: More data may be coming in this direction. */
2e3a16b2 1212#define SSTATE_TRANSFERRING 0
419f37db
IL
1213/*
1214 * Stream state: No more data coming in this direction, flushing rest of
1215 * data.
1216 */
1217#define SSTATE_FLUSHING 1
1218/* Stream state: Transfer in this direction finished. */
1219#define SSTATE_FINISHED 2
1220
2e3a16b2 1221#define STATE_NEEDS_READING(state) ((state) <= SSTATE_TRANSFERRING)
419f37db
IL
1222#define STATE_NEEDS_WRITING(state) ((state) <= SSTATE_FLUSHING)
1223#define STATE_NEEDS_CLOSING(state) ((state) == SSTATE_FLUSHING)
1224
1225/* Unidirectional transfer. */
1226struct unidirectional_transfer {
1227 /* Source */
1228 int src;
1229 /* Destination */
1230 int dest;
1231 /* Is source socket? */
1232 int src_is_sock;
1233 /* Is destination socket? */
1234 int dest_is_sock;
41ccfdd9 1235 /* Transfer state (TRANSFERRING/FLUSHING/FINISHED) */
419f37db
IL
1236 int state;
1237 /* Buffer. */
1238 char buf[BUFFERSIZE];
1239 /* Buffer used. */
1240 size_t bufuse;
1241 /* Name of source. */
1242 const char *src_name;
1243 /* Name of destination. */
1244 const char *dest_name;
1245};
1246
1247/* Closes the target (for writing) if transfer has finished. */
1248static void udt_close_if_finished(struct unidirectional_transfer *t)
1249{
1250 if (STATE_NEEDS_CLOSING(t->state) && !t->bufuse) {
1251 t->state = SSTATE_FINISHED;
1252 if (t->dest_is_sock)
1253 shutdown(t->dest, SHUT_WR);
1254 else
1255 close(t->dest);
1256 transfer_debug("Closed %s.", t->dest_name);
1257 }
1258}
1259
1260/*
832c0e5e 1261 * Tries to read data from source into buffer. If buffer is full,
419f37db
IL
1262 * no data is read. Returns 0 on success, -1 on error.
1263 */
1264static int udt_do_read(struct unidirectional_transfer *t)
1265{
1266 ssize_t bytes;
1267
1268 if (t->bufuse == BUFFERSIZE)
1269 return 0; /* No space for more. */
1270
1271 transfer_debug("%s is readable", t->src_name);
c14e5a1a 1272 bytes = xread(t->src, t->buf + t->bufuse, BUFFERSIZE - t->bufuse);
d4c81368 1273 if (bytes < 0) {
6b5b309f 1274 error_errno(_("read(%s) failed"), t->src_name);
419f37db
IL
1275 return -1;
1276 } else if (bytes == 0) {
1277 transfer_debug("%s EOF (with %i bytes in buffer)",
4621085b 1278 t->src_name, (int)t->bufuse);
419f37db
IL
1279 t->state = SSTATE_FLUSHING;
1280 } else if (bytes > 0) {
1281 t->bufuse += bytes;
1282 transfer_debug("Read %i bytes from %s (buffer now at %i)",
1283 (int)bytes, t->src_name, (int)t->bufuse);
1284 }
1285 return 0;
1286}
1287
1288/* Tries to write data from buffer into destination. If buffer is empty,
1289 * no data is written. Returns 0 on success, -1 on error.
1290 */
1291static int udt_do_write(struct unidirectional_transfer *t)
1292{
803dbdb9 1293 ssize_t bytes;
419f37db
IL
1294
1295 if (t->bufuse == 0)
1296 return 0; /* Nothing to write. */
1297
1298 transfer_debug("%s is writable", t->dest_name);
7edc02f4 1299 bytes = xwrite(t->dest, t->buf, t->bufuse);
d4c81368 1300 if (bytes < 0) {
6b5b309f 1301 error_errno(_("write(%s) failed"), t->dest_name);
419f37db
IL
1302 return -1;
1303 } else if (bytes > 0) {
1304 t->bufuse -= bytes;
1305 if (t->bufuse)
1306 memmove(t->buf, t->buf + bytes, t->bufuse);
1307 transfer_debug("Wrote %i bytes to %s (buffer now at %i)",
1308 (int)bytes, t->dest_name, (int)t->bufuse);
1309 }
1310 return 0;
1311}
1312
1313
1314/* State of bidirectional transfer loop. */
1315struct bidirectional_transfer_state {
1316 /* Direction from program to git. */
1317 struct unidirectional_transfer ptg;
1318 /* Direction from git to program. */
1319 struct unidirectional_transfer gtp;
1320};
1321
1322static void *udt_copy_task_routine(void *udt)
1323{
1324 struct unidirectional_transfer *t = (struct unidirectional_transfer *)udt;
1325 while (t->state != SSTATE_FINISHED) {
1326 if (STATE_NEEDS_READING(t->state))
1327 if (udt_do_read(t))
1328 return NULL;
1329 if (STATE_NEEDS_WRITING(t->state))
1330 if (udt_do_write(t))
1331 return NULL;
1332 if (STATE_NEEDS_CLOSING(t->state))
1333 udt_close_if_finished(t);
1334 }
1335 return udt; /* Just some non-NULL value. */
1336}
1337
1338#ifndef NO_PTHREADS
1339
1340/*
98e023de 1341 * Join thread, with appropriate errors on failure. Name is name for the
419f37db
IL
1342 * thread (for error messages). Returns 0 on success, 1 on failure.
1343 */
1344static int tloop_join(pthread_t thread, const char *name)
1345{
1346 int err;
1347 void *tret;
1348 err = pthread_join(thread, &tret);
1349 if (!tret) {
6b5b309f 1350 error(_("%s thread failed"), name);
419f37db
IL
1351 return 1;
1352 }
1353 if (err) {
6b5b309f 1354 error(_("%s thread failed to join: %s"), name, strerror(err));
419f37db
IL
1355 return 1;
1356 }
1357 return 0;
1358}
1359
1360/*
1361 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1362 * -1 on failure.
1363 */
1364static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1365{
1366 pthread_t gtp_thread;
1367 pthread_t ptg_thread;
1368 int err;
1369 int ret = 0;
1370 err = pthread_create(&gtp_thread, NULL, udt_copy_task_routine,
1371 &s->gtp);
1372 if (err)
6b5b309f 1373 die(_("can't start thread for copying data: %s"), strerror(err));
419f37db
IL
1374 err = pthread_create(&ptg_thread, NULL, udt_copy_task_routine,
1375 &s->ptg);
1376 if (err)
6b5b309f 1377 die(_("can't start thread for copying data: %s"), strerror(err));
419f37db
IL
1378
1379 ret |= tloop_join(gtp_thread, "Git to program copy");
1380 ret |= tloop_join(ptg_thread, "Program to git copy");
1381 return ret;
1382}
1383#else
1384
1385/* Close the source and target (for writing) for transfer. */
1386static void udt_kill_transfer(struct unidirectional_transfer *t)
1387{
1388 t->state = SSTATE_FINISHED;
1389 /*
1390 * Socket read end left open isn't a disaster if nobody
1391 * attempts to read from it (mingw compat headers do not
1392 * have SHUT_RD)...
1393 *
1394 * We can't fully close the socket since otherwise gtp
1395 * task would first close the socket it sends data to
1396 * while closing the ptg file descriptors.
1397 */
1398 if (!t->src_is_sock)
1399 close(t->src);
1400 if (t->dest_is_sock)
1401 shutdown(t->dest, SHUT_WR);
1402 else
1403 close(t->dest);
1404}
1405
1406/*
98e023de 1407 * Join process, with appropriate errors on failure. Name is name for the
419f37db
IL
1408 * process (for error messages). Returns 0 on success, 1 on failure.
1409 */
1410static int tloop_join(pid_t pid, const char *name)
1411{
1412 int tret;
1413 if (waitpid(pid, &tret, 0) < 0) {
6b5b309f 1414 error_errno(_("%s process failed to wait"), name);
419f37db
IL
1415 return 1;
1416 }
1417 if (!WIFEXITED(tret) || WEXITSTATUS(tret)) {
6b5b309f 1418 error(_("%s process failed"), name);
419f37db
IL
1419 return 1;
1420 }
1421 return 0;
1422}
1423
1424/*
1425 * Spawn the transfer tasks and then wait for them. Returns 0 on success,
1426 * -1 on failure.
1427 */
1428static int tloop_spawnwait_tasks(struct bidirectional_transfer_state *s)
1429{
1430 pid_t pid1, pid2;
1431 int ret = 0;
1432
1433 /* Fork thread #1: git to program. */
1434 pid1 = fork();
1435 if (pid1 < 0)
6b5b309f 1436 die_errno(_("can't start thread for copying data"));
419f37db
IL
1437 else if (pid1 == 0) {
1438 udt_kill_transfer(&s->ptg);
1439 exit(udt_copy_task_routine(&s->gtp) ? 0 : 1);
1440 }
1441
1442 /* Fork thread #2: program to git. */
1443 pid2 = fork();
1444 if (pid2 < 0)
6b5b309f 1445 die_errno(_("can't start thread for copying data"));
419f37db
IL
1446 else if (pid2 == 0) {
1447 udt_kill_transfer(&s->gtp);
1448 exit(udt_copy_task_routine(&s->ptg) ? 0 : 1);
1449 }
1450
1451 /*
1452 * Close both streams in parent as to not interfere with
1453 * end of file detection and wait for both tasks to finish.
1454 */
1455 udt_kill_transfer(&s->gtp);
1456 udt_kill_transfer(&s->ptg);
1457 ret |= tloop_join(pid1, "Git to program copy");
1458 ret |= tloop_join(pid2, "Program to git copy");
1459 return ret;
1460}
1461#endif
1462
1463/*
1464 * Copies data from stdin to output and from input to stdout simultaneously.
1465 * Additionally filtering through given filter. If filter is NULL, uses
1466 * identity filter.
1467 */
1468int bidirectional_transfer_loop(int input, int output)
1469{
1470 struct bidirectional_transfer_state state;
1471
1472 /* Fill the state fields. */
1473 state.ptg.src = input;
1474 state.ptg.dest = 1;
1475 state.ptg.src_is_sock = (input == output);
1476 state.ptg.dest_is_sock = 0;
2e3a16b2 1477 state.ptg.state = SSTATE_TRANSFERRING;
419f37db
IL
1478 state.ptg.bufuse = 0;
1479 state.ptg.src_name = "remote input";
1480 state.ptg.dest_name = "stdout";
1481
1482 state.gtp.src = 0;
1483 state.gtp.dest = output;
1484 state.gtp.src_is_sock = 0;
1485 state.gtp.dest_is_sock = (input == output);
2e3a16b2 1486 state.gtp.state = SSTATE_TRANSFERRING;
419f37db
IL
1487 state.gtp.bufuse = 0;
1488 state.gtp.src_name = "stdin";
1489 state.gtp.dest_name = "remote output";
1490
1491 return tloop_spawnwait_tasks(&state);
1492}
dfe1b7f1
JX
1493
1494void reject_atomic_push(struct ref *remote_refs, int mirror_mode)
1495{
1496 struct ref *ref;
1497
1498 /* Mark other refs as failed */
1499 for (ref = remote_refs; ref; ref = ref->next) {
1500 if (!ref->peer_ref && !mirror_mode)
1501 continue;
1502
1503 switch (ref->status) {
1504 case REF_STATUS_NONE:
1505 case REF_STATUS_OK:
1506 case REF_STATUS_EXPECTING_REPORT:
1507 ref->status = REF_STATUS_ATOMIC_PUSH_FAILED;
1508 continue;
1509 default:
1510 break; /* do nothing */
1511 }
1512 }
1513 return;
1514}