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