]> git.ipfire.org Git - thirdparty/git.git/blame - send-pack.c
Merge branch 'bc/sha-256-part-2'
[thirdparty/git.git] / send-pack.c
CommitLineData
f5d942e1 1#include "builtin.h"
b2141fc1 2#include "config.h"
f5d942e1
NTND
3#include "commit.h"
4#include "refs.h"
cbd53a21 5#include "object-store.h"
f5d942e1
NTND
6#include "pkt-line.h"
7#include "sideband.h"
8#include "run-command.h"
9#include "remote.h"
47a59185 10#include "connect.h"
f5d942e1
NTND
11#include "send-pack.h"
12#include "quote.h"
13#include "transport.h"
14#include "version.h"
fe299ec5 15#include "oid-array.h"
a85b377d 16#include "gpg-interface.h"
30261094 17#include "cache.h"
120ad2b0 18#include "shallow.h"
30261094
DB
19
20int option_parse_push_signed(const struct option *opt,
21 const char *arg, int unset)
22{
23 if (unset) {
24 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_NEVER;
25 return 0;
26 }
27 switch (git_parse_maybe_bool(arg)) {
28 case 1:
29 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_ALWAYS;
30 return 0;
31 case 0:
32 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_NEVER;
33 return 0;
34 }
35 if (!strcasecmp("if-asked", arg)) {
36 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_IF_ASKED;
37 return 0;
38 }
39 die("bad %s argument: %s", opt->long_name, arg);
40}
f5d942e1 41
246d7400 42static void feed_object(const struct object_id *oid, FILE *fh, int negative)
f5d942e1 43{
d8bc1a51 44 if (negative &&
5cf7a17d
JK
45 !has_object_file_with_flags(oid,
46 OBJECT_INFO_SKIP_FETCH_OBJECT |
47 OBJECT_INFO_QUICK))
f0bca72d 48 return;
f5d942e1 49
f5d942e1 50 if (negative)
f0bca72d 51 putc('^', fh);
246d7400 52 fputs(oid_to_hex(oid), fh);
f0bca72d 53 putc('\n', fh);
f5d942e1
NTND
54}
55
56/*
57 * Make a pack stream and spit it out into file descriptor fd
58 */
910650d2 59static int pack_objects(int fd, struct ref *refs, struct oid_array *extra, struct send_pack_args *args)
f5d942e1
NTND
60{
61 /*
62 * The child becomes pack-objects --revs; we feed
63 * the revision parameters to it via its stdin and
64 * let its stdout go back to the other end.
65 */
d3180279 66 struct child_process po = CHILD_PROCESS_INIT;
f0bca72d 67 FILE *po_in;
f5d942e1 68 int i;
d1a13d3f 69 int rc;
f5d942e1 70
a923e059
RS
71 argv_array_push(&po.args, "pack-objects");
72 argv_array_push(&po.args, "--all-progress-implied");
73 argv_array_push(&po.args, "--revs");
74 argv_array_push(&po.args, "--stdout");
f5d942e1 75 if (args->use_thin_pack)
a923e059 76 argv_array_push(&po.args, "--thin");
f5d942e1 77 if (args->use_ofs_delta)
a923e059 78 argv_array_push(&po.args, "--delta-base-offset");
f5d942e1 79 if (args->quiet || !args->progress)
a923e059 80 argv_array_push(&po.args, "-q");
f5d942e1 81 if (args->progress)
a923e059 82 argv_array_push(&po.args, "--progress");
c8813487 83 if (is_repository_shallow(the_repository))
a923e059 84 argv_array_push(&po.args, "--shallow");
f5d942e1
NTND
85 po.in = -1;
86 po.out = args->stateless_rpc ? -1 : fd;
87 po.git_cmd = 1;
88 if (start_command(&po))
89 die_errno("git pack-objects failed");
90
91 /*
92 * We feed the pack-objects we just spawned with revision
93 * parameters by writing to the pipe.
94 */
f0bca72d 95 po_in = xfdopen(po.in, "w");
f5d942e1 96 for (i = 0; i < extra->nr; i++)
246d7400 97 feed_object(&extra->oid[i], po_in, 1);
f5d942e1
NTND
98
99 while (refs) {
f0bca72d 100 if (!is_null_oid(&refs->old_oid))
246d7400 101 feed_object(&refs->old_oid, po_in, 1);
f0bca72d 102 if (!is_null_oid(&refs->new_oid))
246d7400 103 feed_object(&refs->new_oid, po_in, 0);
f5d942e1
NTND
104 refs = refs->next;
105 }
106
f0bca72d
JK
107 fflush(po_in);
108 if (ferror(po_in))
109 die_errno("error writing to pack-objects");
110 fclose(po_in);
f5d942e1
NTND
111
112 if (args->stateless_rpc) {
113 char *buf = xmalloc(LARGE_PACKET_MAX);
114 while (1) {
115 ssize_t n = xread(po.out, buf, LARGE_PACKET_MAX);
116 if (n <= 0)
117 break;
118 send_sideband(fd, -1, buf, n, LARGE_PACKET_MAX);
119 }
120 free(buf);
121 close(po.out);
122 po.out = -1;
123 }
124
d1a13d3f
JK
125 rc = finish_command(&po);
126 if (rc) {
127 /*
128 * For a normal non-zero exit, we assume pack-objects wrote
129 * something useful to stderr. For death by signal, though,
130 * we should mention it to the user. The exception is SIGPIPE
64127575 131 * (141), because that's a normal occurrence if the remote end
d1a13d3f
JK
132 * hangs up (and we'll report that by trying to read the unpack
133 * status).
134 */
135 if (rc > 128 && rc != 141)
136 error("pack-objects died of signal %d", rc - 128);
f5d942e1 137 return -1;
d1a13d3f 138 }
f5d942e1
NTND
139 return 0;
140}
141
01f9ec64 142static int receive_unpack_status(struct packet_reader *reader)
f5d942e1 143{
01f9ec64 144 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
bb1356dc 145 return error(_("unexpected flush packet while reading remote unpack status"));
01f9ec64
MS
146 if (!skip_prefix(reader->line, "unpack ", &reader->line))
147 return error(_("unable to parse remote unpack status: %s"), reader->line);
148 if (strcmp(reader->line, "ok"))
149 return error(_("remote unpack failed: %s"), reader->line);
7c39df29
JK
150 return 0;
151}
152
01f9ec64 153static int receive_status(struct packet_reader *reader, struct ref *refs)
7c39df29
JK
154{
155 struct ref *hint;
156 int ret;
157
f5d942e1 158 hint = NULL;
01f9ec64 159 ret = receive_unpack_status(reader);
f5d942e1 160 while (1) {
01f9ec64 161 const char *refname;
f5d942e1 162 char *msg;
01f9ec64 163 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
f5d942e1 164 break;
01f9ec64
MS
165 if (!starts_with(reader->line, "ok ") && !starts_with(reader->line, "ng ")) {
166 error("invalid ref status from remote: %s", reader->line);
f5d942e1
NTND
167 ret = -1;
168 break;
169 }
170
01f9ec64 171 refname = reader->line + 3;
f5d942e1
NTND
172 msg = strchr(refname, ' ');
173 if (msg)
174 *msg++ = '\0';
175
176 /* first try searching at our hint, falling back to all refs */
177 if (hint)
178 hint = find_ref_by_name(hint, refname);
179 if (!hint)
180 hint = find_ref_by_name(refs, refname);
181 if (!hint) {
182 warning("remote reported status on unknown ref: %s",
183 refname);
184 continue;
185 }
186 if (hint->status != REF_STATUS_EXPECTING_REPORT) {
187 warning("remote reported status on unexpected ref: %s",
188 refname);
189 continue;
190 }
191
01f9ec64 192 if (reader->line[0] == 'o' && reader->line[1] == 'k')
f5d942e1 193 hint->status = REF_STATUS_OK;
7dcbeaa0 194 else
f5d942e1 195 hint->status = REF_STATUS_REMOTE_REJECT;
13092a91 196 hint->remote_status = xstrdup_or_null(msg);
f5d942e1
NTND
197 /* start our next search from the next ref */
198 hint = hint->next;
199 }
200 return ret;
201}
202
203static int sideband_demux(int in, int out, void *data)
204{
205 int *fd = data, ret;
c0e40a2d
NTND
206 if (async_with_fork())
207 close(fd[1]);
f5d942e1
NTND
208 ret = recv_sideband("send-pack", fd[0], out);
209 close(out);
210 return ret;
211}
212
f2c681cf
NTND
213static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *cb)
214{
215 struct strbuf *sb = cb;
216 if (graft->nr_parent == -1)
7683e2e6 217 packet_buf_write(sb, "shallow %s\n", oid_to_hex(&graft->oid));
f2c681cf
NTND
218 return 0;
219}
220
16a2743c 221static void advertise_shallow_grafts_buf(struct strbuf *sb)
f2c681cf 222{
c8813487 223 if (!is_repository_shallow(the_repository))
f2c681cf
NTND
224 return;
225 for_each_commit_graft(advertise_shallow_grafts_cb, sb);
226}
227
7582e939
SB
228#define CHECK_REF_NO_PUSH -1
229#define CHECK_REF_STATUS_REJECTED -2
230#define CHECK_REF_UPTODATE -3
231static int check_to_send_update(const struct ref *ref, const struct send_pack_args *args)
e40671a3
JH
232{
233 if (!ref->peer_ref && !args->send_mirror)
7582e939 234 return CHECK_REF_NO_PUSH;
e40671a3
JH
235
236 /* Check for statuses set by set_ref_status_for_push() */
237 switch (ref->status) {
238 case REF_STATUS_REJECT_NONFASTFORWARD:
239 case REF_STATUS_REJECT_ALREADY_EXISTS:
240 case REF_STATUS_REJECT_FETCH_FIRST:
241 case REF_STATUS_REJECT_NEEDS_FORCE:
242 case REF_STATUS_REJECT_STALE:
243 case REF_STATUS_REJECT_NODELETE:
7582e939 244 return CHECK_REF_STATUS_REJECTED;
e40671a3 245 case REF_STATUS_UPTODATE:
7582e939 246 return CHECK_REF_UPTODATE;
e40671a3 247 default:
7582e939 248 return 0;
e40671a3
JH
249 }
250}
251
a85b377d
JH
252/*
253 * the beginning of the next line, or the end of buffer.
254 *
255 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
256 * convert many similar uses found by "git grep -A4 memchr".
257 */
258static const char *next_line(const char *line, size_t len)
259{
260 const char *nl = memchr(line, '\n', len);
261 if (!nl)
262 return line + len; /* incomplete line */
263 return nl + 1;
264}
265
20a7558f
JH
266static int generate_push_cert(struct strbuf *req_buf,
267 const struct ref *remote_refs,
268 struct send_pack_args *args,
b89363e4
JH
269 const char *cap_string,
270 const char *push_cert_nonce)
a85b377d
JH
271{
272 const struct ref *ref;
f6a4e61f 273 struct string_list_item *item;
a85b377d
JH
274 char *signing_key = xstrdup(get_signing_key());
275 const char *cp, *np;
276 struct strbuf cert = STRBUF_INIT;
277 int update_seen = 0;
278
02962d36 279 strbuf_addstr(&cert, "certificate version 0.1\n");
fb06b528
JH
280 strbuf_addf(&cert, "pusher %s ", signing_key);
281 datestamp(&cert);
282 strbuf_addch(&cert, '\n');
9be89160
JH
283 if (args->url && *args->url) {
284 char *anon_url = transport_anonymize_url(args->url);
285 strbuf_addf(&cert, "pushee %s\n", anon_url);
286 free(anon_url);
287 }
b89363e4
JH
288 if (push_cert_nonce[0])
289 strbuf_addf(&cert, "nonce %s\n", push_cert_nonce);
f6a4e61f
SB
290 if (args->push_options)
291 for_each_string_list_item(item, args->push_options)
292 strbuf_addf(&cert, "push-option %s\n", item->string);
a85b377d
JH
293 strbuf_addstr(&cert, "\n");
294
295 for (ref = remote_refs; ref; ref = ref->next) {
7582e939 296 if (check_to_send_update(ref, args) < 0)
a85b377d
JH
297 continue;
298 update_seen = 1;
299 strbuf_addf(&cert, "%s %s %s\n",
f4e54d02 300 oid_to_hex(&ref->old_oid),
301 oid_to_hex(&ref->new_oid),
a85b377d
JH
302 ref->name);
303 }
304 if (!update_seen)
305 goto free_return;
306
307 if (sign_buffer(&cert, &cert, signing_key))
308 die(_("failed to sign the push certificate"));
309
20a7558f 310 packet_buf_write(req_buf, "push-cert%c%s", 0, cap_string);
a85b377d
JH
311 for (cp = cert.buf; cp < cert.buf + cert.len; cp = np) {
312 np = next_line(cp, cert.buf + cert.len - cp);
313 packet_buf_write(req_buf,
314 "%.*s", (int)(np - cp), cp);
315 }
316 packet_buf_write(req_buf, "push-cert-end\n");
317
318free_return:
319 free(signing_key);
320 strbuf_release(&cert);
20a7558f 321 return update_seen;
a85b377d
JH
322}
323
afcb6ee3
JH
324#define NONCE_LEN_LIMIT 256
325
326static void reject_invalid_nonce(const char *nonce, int len)
327{
328 int i = 0;
329
330 if (NONCE_LEN_LIMIT <= len)
331 die("the receiving end asked to sign an invalid nonce <%.*s>",
332 len, nonce);
333
334 for (i = 0; i < len; i++) {
335 int ch = nonce[i] & 0xFF;
336 if (isalnum(ch) ||
337 ch == '-' || ch == '.' ||
338 ch == '/' || ch == '+' ||
339 ch == '=' || ch == '_')
340 continue;
341 die("the receiving end asked to sign an invalid nonce <%.*s>",
342 len, nonce);
343 }
344}
345
f5d942e1
NTND
346int send_pack(struct send_pack_args *args,
347 int fd[], struct child_process *conn,
348 struct ref *remote_refs,
910650d2 349 struct oid_array *extra_have)
f5d942e1
NTND
350{
351 int in = fd[0];
352 int out = fd[1];
353 struct strbuf req_buf = STRBUF_INIT;
887f3533 354 struct strbuf cap_buf = STRBUF_INIT;
f5d942e1 355 struct ref *ref;
ab2b0c90 356 int need_pack_data = 0;
f5d942e1
NTND
357 int allow_deleting_refs = 0;
358 int status_report = 0;
359 int use_sideband = 0;
360 int quiet_supported = 0;
361 int agent_supported = 0;
4ff17f10
RS
362 int use_atomic = 0;
363 int atomic_supported = 0;
f6a4e61f
SB
364 int use_push_options = 0;
365 int push_options_supported = 0;
82db03ab 366 int object_format_supported = 0;
f5d942e1
NTND
367 unsigned cmds_sent = 0;
368 int ret;
369 struct async demux;
b89363e4 370 const char *push_cert_nonce = NULL;
01f9ec64 371 struct packet_reader reader;
f5d942e1
NTND
372
373 /* Does the other end support the reporting? */
374 if (server_supports("report-status"))
375 status_report = 1;
376 if (server_supports("delete-refs"))
377 allow_deleting_refs = 1;
378 if (server_supports("ofs-delta"))
379 args->use_ofs_delta = 1;
380 if (server_supports("side-band-64k"))
381 use_sideband = 1;
382 if (server_supports("quiet"))
383 quiet_supported = 1;
384 if (server_supports("agent"))
385 agent_supported = 1;
1ba98a79
CMN
386 if (server_supports("no-thin"))
387 args->use_thin_pack = 0;
4ff17f10
RS
388 if (server_supports("atomic"))
389 atomic_supported = 1;
f6a4e61f
SB
390 if (server_supports("push-options"))
391 push_options_supported = 1;
b89363e4 392
82db03ab 393 if (!server_supports_hash(the_hash_algo->name, &object_format_supported))
394 die(_("the receiving end does not support this repository's hash algorithm"));
395
30261094
DB
396 if (args->push_cert != SEND_PACK_PUSH_CERT_NEVER) {
397 int len;
b89363e4 398 push_cert_nonce = server_feature_value("push-cert", &len);
30261094
DB
399 if (push_cert_nonce) {
400 reject_invalid_nonce(push_cert_nonce, len);
401 push_cert_nonce = xmemdupz(push_cert_nonce, len);
402 } else if (args->push_cert == SEND_PACK_PUSH_CERT_ALWAYS) {
b89363e4 403 die(_("the receiving end does not support --signed push"));
30261094
DB
404 } else if (args->push_cert == SEND_PACK_PUSH_CERT_IF_ASKED) {
405 warning(_("not sending a push certificate since the"
406 " receiving end does not support --signed"
407 " push"));
408 }
b89363e4 409 }
f5d942e1
NTND
410
411 if (!remote_refs) {
412 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
413 "Perhaps you should specify a branch such as 'master'.\n");
414 return 0;
415 }
4ff17f10 416 if (args->atomic && !atomic_supported)
c8b8f22a 417 die(_("the receiving end does not support --atomic push"));
4ff17f10
RS
418
419 use_atomic = atomic_supported && args->atomic;
f5d942e1 420
f6a4e61f
SB
421 if (args->push_options && !push_options_supported)
422 die(_("the receiving end does not support push options"));
423
424 use_push_options = push_options_supported && args->push_options;
425
887f3533
JH
426 if (status_report)
427 strbuf_addstr(&cap_buf, " report-status");
428 if (use_sideband)
429 strbuf_addstr(&cap_buf, " side-band-64k");
430 if (quiet_supported && (args->quiet || !args->progress))
431 strbuf_addstr(&cap_buf, " quiet");
4ff17f10
RS
432 if (use_atomic)
433 strbuf_addstr(&cap_buf, " atomic");
f6a4e61f
SB
434 if (use_push_options)
435 strbuf_addstr(&cap_buf, " push-options");
82db03ab 436 if (object_format_supported)
437 strbuf_addf(&cap_buf, " object-format=%s", the_hash_algo->name);
887f3533
JH
438 if (agent_supported)
439 strbuf_addf(&cap_buf, " agent=%s", git_user_agent_sanitized());
440
621b0599
JH
441 /*
442 * NEEDSWORK: why does delete-refs have to be so specific to
443 * send-pack machinery that set_ref_status_for_push() cannot
444 * set this bit for us???
445 */
446 for (ref = remote_refs; ref; ref = ref->next)
447 if (ref->deletion && !allow_deleting_refs)
448 ref->status = REF_STATUS_REJECT_NODELETE;
449
5dbd7676 450 if (!args->dry_run)
f2c681cf 451 advertise_shallow_grafts_buf(&req_buf);
5dbd7676 452
30261094 453 if (!args->dry_run && push_cert_nonce)
20a7558f 454 cmds_sent = generate_push_cert(&req_buf, remote_refs, args,
b89363e4 455 cap_buf.buf, push_cert_nonce);
a85b377d 456
f5d942e1 457 /*
b783aa71
JH
458 * Clear the status for each ref and see if we need to send
459 * the pack data.
f5d942e1 460 */
f5d942e1 461 for (ref = remote_refs; ref; ref = ref->next) {
4ff17f10
RS
462 switch (check_to_send_update(ref, args)) {
463 case 0: /* no error */
464 break;
465 case CHECK_REF_STATUS_REJECTED:
466 /*
467 * When we know the server would reject a ref update if
468 * we were to send it and we're trying to send the refs
469 * atomically, abort the whole operation.
470 */
872d651f
RS
471 if (use_atomic) {
472 strbuf_release(&req_buf);
473 strbuf_release(&cap_buf);
dfe1b7f1
JX
474 reject_atomic_push(remote_refs, args->send_mirror);
475 error("atomic push failed for ref %s. status: %d\n",
476 ref->name, ref->status);
7dcbeaa0 477 return args->porcelain ? 0 : -1;
872d651f 478 }
1cf01a34 479 /* else fallthrough */
4ff17f10 480 default:
f5d942e1 481 continue;
4ff17f10 482 }
f5d942e1 483 if (!ref->deletion)
ab2b0c90 484 need_pack_data = 1;
f5d942e1 485
b783aa71 486 if (args->dry_run || !status_report)
f5d942e1 487 ref->status = REF_STATUS_OK;
b783aa71
JH
488 else
489 ref->status = REF_STATUS_EXPECTING_REPORT;
490 }
491
492 /*
493 * Finally, tell the other end!
494 */
495 for (ref = remote_refs; ref; ref = ref->next) {
496 char *old_hex, *new_hex;
497
30261094 498 if (args->dry_run || push_cert_nonce)
f5d942e1 499 continue;
f5d942e1 500
7582e939 501 if (check_to_send_update(ref, args) < 0)
b783aa71 502 continue;
f5d942e1 503
f4e54d02 504 old_hex = oid_to_hex(&ref->old_oid);
505 new_hex = oid_to_hex(&ref->new_oid);
c67072b9 506 if (!cmds_sent) {
b783aa71
JH
507 packet_buf_write(&req_buf,
508 "%s %s %s%c%s",
509 old_hex, new_hex, ref->name, 0,
510 cap_buf.buf);
c67072b9 511 cmds_sent = 1;
f5d942e1 512 } else {
b783aa71
JH
513 packet_buf_write(&req_buf, "%s %s %s",
514 old_hex, new_hex, ref->name);
f5d942e1
NTND
515 }
516 }
517
eb7b9749
BW
518 if (use_push_options) {
519 struct string_list_item *item;
520
521 packet_buf_flush(&req_buf);
522 for_each_string_list_item(item, args->push_options)
523 packet_buf_write(&req_buf, "%s", item->string);
524 }
525
f5d942e1 526 if (args->stateless_rpc) {
c8813487 527 if (!args->dry_run && (cmds_sent || is_repository_shallow(the_repository))) {
f5d942e1
NTND
528 packet_buf_flush(&req_buf);
529 send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX);
530 }
531 } else {
cdf4fb8e 532 write_or_die(out, req_buf.buf, req_buf.len);
f5d942e1
NTND
533 packet_flush(out);
534 }
535 strbuf_release(&req_buf);
887f3533 536 strbuf_release(&cap_buf);
f5d942e1
NTND
537
538 if (use_sideband && cmds_sent) {
539 memset(&demux, 0, sizeof(demux));
540 demux.proc = sideband_demux;
541 demux.data = fd;
542 demux.out = -1;
3e8b06d0 543 demux.isolate_sigpipe = 1;
f5d942e1
NTND
544 if (start_async(&demux))
545 die("send-pack: unable to fork off sideband demultiplexer");
546 in = demux.out;
547 }
548
2d103c31
MS
549 packet_reader_init(&reader, in, NULL, 0,
550 PACKET_READ_CHOMP_NEWLINE |
551 PACKET_READ_DIE_ON_ERR_PACKET);
01f9ec64 552
ab2b0c90 553 if (need_pack_data && cmds_sent) {
f5d942e1 554 if (pack_objects(out, remote_refs, extra_have, args) < 0) {
f5d942e1
NTND
555 if (args->stateless_rpc)
556 close(out);
557 if (git_connection_is_socket(conn))
558 shutdown(fd[0], SHUT_WR);
ba69f92d
JK
559
560 /*
561 * Do not even bother with the return value; we know we
ad7a4032
JK
562 * are failing, and just want the error() side effects,
563 * as well as marking refs with their remote status (if
564 * we get one).
ba69f92d
JK
565 */
566 if (status_report)
ad7a4032 567 receive_status(&reader, remote_refs);
ba69f92d 568
739cf491
JK
569 if (use_sideband) {
570 close(demux.out);
f5d942e1 571 finish_async(&demux);
739cf491 572 }
37cb1dd6 573 fd[1] = -1;
f5d942e1
NTND
574 return -1;
575 }
37cb1dd6
JL
576 if (!args->stateless_rpc)
577 /* Closed by pack_objects() via start_command() */
578 fd[1] = -1;
f5d942e1
NTND
579 }
580 if (args->stateless_rpc && cmds_sent)
581 packet_flush(out);
582
583 if (status_report && cmds_sent)
01f9ec64 584 ret = receive_status(&reader, remote_refs);
f5d942e1
NTND
585 else
586 ret = 0;
587 if (args->stateless_rpc)
588 packet_flush(out);
589
590 if (use_sideband && cmds_sent) {
739cf491 591 close(demux.out);
f5d942e1
NTND
592 if (finish_async(&demux)) {
593 error("error in sideband demultiplexer");
594 ret = -1;
595 }
f5d942e1
NTND
596 }
597
598 if (ret < 0)
599 return ret;
600
601 if (args->porcelain)
602 return 0;
603
604 for (ref = remote_refs; ref; ref = ref->next) {
605 switch (ref->status) {
606 case REF_STATUS_NONE:
607 case REF_STATUS_UPTODATE:
608 case REF_STATUS_OK:
609 break;
610 default:
611 return -1;
612 }
613 }
614 return 0;
615}