]> git.ipfire.org Git - thirdparty/git.git/blame - send-pack.c
Merge branch 'so/format-patch-doc-on-default-diff-format'
[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
c972bf4c
JK
71 strvec_push(&po.args, "pack-objects");
72 strvec_push(&po.args, "--all-progress-implied");
73 strvec_push(&po.args, "--revs");
74 strvec_push(&po.args, "--stdout");
f5d942e1 75 if (args->use_thin_pack)
c972bf4c 76 strvec_push(&po.args, "--thin");
f5d942e1 77 if (args->use_ofs_delta)
c972bf4c 78 strvec_push(&po.args, "--delta-base-offset");
f5d942e1 79 if (args->quiet || !args->progress)
c972bf4c 80 strvec_push(&po.args, "-q");
f5d942e1 81 if (args->progress)
c972bf4c 82 strvec_push(&po.args, "--progress");
c8813487 83 if (is_repository_shallow(the_repository))
c972bf4c 84 strvec_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;
63518a57
JX
157 struct ref_push_report *report = NULL;
158 int new_report = 0;
159 int once = 0;
7c39df29 160
f5d942e1 161 hint = NULL;
01f9ec64 162 ret = receive_unpack_status(reader);
f5d942e1 163 while (1) {
63518a57
JX
164 struct object_id old_oid, new_oid;
165 const char *head;
01f9ec64 166 const char *refname;
63518a57 167 char *p;
01f9ec64 168 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
f5d942e1 169 break;
63518a57
JX
170 head = reader->line;
171 p = strchr(head, ' ');
172 if (!p) {
173 error("invalid status line from remote: %s", reader->line);
f5d942e1
NTND
174 ret = -1;
175 break;
176 }
63518a57
JX
177 *p++ = '\0';
178
179 if (!strcmp(head, "option")) {
180 const char *key, *val;
181
182 if (!hint || !(report || new_report)) {
183 if (!once++)
184 error("'option' without a matching 'ok/ng' directive");
185 ret = -1;
186 continue;
187 }
188 if (new_report) {
189 if (!hint->report) {
190 hint->report = xcalloc(1, sizeof(struct ref_push_report));
191 report = hint->report;
192 } else {
193 report = hint->report;
194 while (report->next)
195 report = report->next;
196 report->next = xcalloc(1, sizeof(struct ref_push_report));
197 report = report->next;
198 }
199 new_report = 0;
200 }
201 key = p;
202 p = strchr(key, ' ');
203 if (p)
204 *p++ = '\0';
205 val = p;
206 if (!strcmp(key, "refname"))
207 report->ref_name = xstrdup_or_null(val);
208 else if (!strcmp(key, "old-oid") && val &&
209 !parse_oid_hex(val, &old_oid, &val))
210 report->old_oid = oiddup(&old_oid);
211 else if (!strcmp(key, "new-oid") && val &&
212 !parse_oid_hex(val, &new_oid, &val))
213 report->new_oid = oiddup(&new_oid);
214 else if (!strcmp(key, "forced-update"))
215 report->forced_update = 1;
216 continue;
217 }
f5d942e1 218
63518a57
JX
219 report = NULL;
220 new_report = 0;
221 if (strcmp(head, "ok") && strcmp(head, "ng")) {
222 error("invalid ref status from remote: %s", head);
223 ret = -1;
224 break;
225 }
226 refname = p;
227 p = strchr(refname, ' ');
228 if (p)
229 *p++ = '\0';
f5d942e1
NTND
230 /* first try searching at our hint, falling back to all refs */
231 if (hint)
232 hint = find_ref_by_name(hint, refname);
233 if (!hint)
234 hint = find_ref_by_name(refs, refname);
235 if (!hint) {
236 warning("remote reported status on unknown ref: %s",
63518a57 237 refname);
f5d942e1
NTND
238 continue;
239 }
63518a57
JX
240 if (hint->status != REF_STATUS_EXPECTING_REPORT &&
241 hint->status != REF_STATUS_OK &&
242 hint->status != REF_STATUS_REMOTE_REJECT) {
f5d942e1 243 warning("remote reported status on unexpected ref: %s",
63518a57 244 refname);
f5d942e1
NTND
245 continue;
246 }
63518a57 247 if (!strcmp(head, "ng")) {
f5d942e1 248 hint->status = REF_STATUS_REMOTE_REJECT;
63518a57
JX
249 if (p)
250 hint->remote_status = xstrdup(p);
251 else
252 hint->remote_status = "failed";
253 } else {
254 hint->status = REF_STATUS_OK;
255 hint->remote_status = xstrdup_or_null(p);
256 new_report = 1;
257 }
f5d942e1
NTND
258 }
259 return ret;
260}
261
262static int sideband_demux(int in, int out, void *data)
263{
264 int *fd = data, ret;
c0e40a2d
NTND
265 if (async_with_fork())
266 close(fd[1]);
f5d942e1
NTND
267 ret = recv_sideband("send-pack", fd[0], out);
268 close(out);
269 return ret;
270}
271
f2c681cf
NTND
272static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *cb)
273{
274 struct strbuf *sb = cb;
275 if (graft->nr_parent == -1)
7683e2e6 276 packet_buf_write(sb, "shallow %s\n", oid_to_hex(&graft->oid));
f2c681cf
NTND
277 return 0;
278}
279
16a2743c 280static void advertise_shallow_grafts_buf(struct strbuf *sb)
f2c681cf 281{
c8813487 282 if (!is_repository_shallow(the_repository))
f2c681cf
NTND
283 return;
284 for_each_commit_graft(advertise_shallow_grafts_cb, sb);
285}
286
7582e939
SB
287#define CHECK_REF_NO_PUSH -1
288#define CHECK_REF_STATUS_REJECTED -2
289#define CHECK_REF_UPTODATE -3
290static int check_to_send_update(const struct ref *ref, const struct send_pack_args *args)
e40671a3
JH
291{
292 if (!ref->peer_ref && !args->send_mirror)
7582e939 293 return CHECK_REF_NO_PUSH;
e40671a3
JH
294
295 /* Check for statuses set by set_ref_status_for_push() */
296 switch (ref->status) {
297 case REF_STATUS_REJECT_NONFASTFORWARD:
298 case REF_STATUS_REJECT_ALREADY_EXISTS:
299 case REF_STATUS_REJECT_FETCH_FIRST:
300 case REF_STATUS_REJECT_NEEDS_FORCE:
301 case REF_STATUS_REJECT_STALE:
99a1f9ae 302 case REF_STATUS_REJECT_REMOTE_UPDATED:
e40671a3 303 case REF_STATUS_REJECT_NODELETE:
7582e939 304 return CHECK_REF_STATUS_REJECTED;
e40671a3 305 case REF_STATUS_UPTODATE:
7582e939 306 return CHECK_REF_UPTODATE;
a4f324a4 307
e40671a3 308 default:
a4f324a4
HX
309 case REF_STATUS_EXPECTING_REPORT:
310 /* already passed checks on the local side */
311 case REF_STATUS_OK:
312 /* of course this is OK */
7582e939 313 return 0;
e40671a3
JH
314 }
315}
316
a85b377d
JH
317/*
318 * the beginning of the next line, or the end of buffer.
319 *
320 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
321 * convert many similar uses found by "git grep -A4 memchr".
322 */
323static const char *next_line(const char *line, size_t len)
324{
325 const char *nl = memchr(line, '\n', len);
326 if (!nl)
327 return line + len; /* incomplete line */
328 return nl + 1;
329}
330
20a7558f
JH
331static int generate_push_cert(struct strbuf *req_buf,
332 const struct ref *remote_refs,
333 struct send_pack_args *args,
b89363e4
JH
334 const char *cap_string,
335 const char *push_cert_nonce)
a85b377d
JH
336{
337 const struct ref *ref;
f6a4e61f 338 struct string_list_item *item;
a85b377d
JH
339 char *signing_key = xstrdup(get_signing_key());
340 const char *cp, *np;
341 struct strbuf cert = STRBUF_INIT;
342 int update_seen = 0;
343
02962d36 344 strbuf_addstr(&cert, "certificate version 0.1\n");
fb06b528
JH
345 strbuf_addf(&cert, "pusher %s ", signing_key);
346 datestamp(&cert);
347 strbuf_addch(&cert, '\n');
9be89160
JH
348 if (args->url && *args->url) {
349 char *anon_url = transport_anonymize_url(args->url);
350 strbuf_addf(&cert, "pushee %s\n", anon_url);
351 free(anon_url);
352 }
b89363e4
JH
353 if (push_cert_nonce[0])
354 strbuf_addf(&cert, "nonce %s\n", push_cert_nonce);
f6a4e61f
SB
355 if (args->push_options)
356 for_each_string_list_item(item, args->push_options)
357 strbuf_addf(&cert, "push-option %s\n", item->string);
a85b377d
JH
358 strbuf_addstr(&cert, "\n");
359
360 for (ref = remote_refs; ref; ref = ref->next) {
7582e939 361 if (check_to_send_update(ref, args) < 0)
a85b377d
JH
362 continue;
363 update_seen = 1;
364 strbuf_addf(&cert, "%s %s %s\n",
f4e54d02 365 oid_to_hex(&ref->old_oid),
366 oid_to_hex(&ref->new_oid),
a85b377d
JH
367 ref->name);
368 }
369 if (!update_seen)
370 goto free_return;
371
372 if (sign_buffer(&cert, &cert, signing_key))
373 die(_("failed to sign the push certificate"));
374
20a7558f 375 packet_buf_write(req_buf, "push-cert%c%s", 0, cap_string);
a85b377d
JH
376 for (cp = cert.buf; cp < cert.buf + cert.len; cp = np) {
377 np = next_line(cp, cert.buf + cert.len - cp);
378 packet_buf_write(req_buf,
379 "%.*s", (int)(np - cp), cp);
380 }
381 packet_buf_write(req_buf, "push-cert-end\n");
382
383free_return:
384 free(signing_key);
385 strbuf_release(&cert);
20a7558f 386 return update_seen;
a85b377d
JH
387}
388
afcb6ee3
JH
389#define NONCE_LEN_LIMIT 256
390
391static void reject_invalid_nonce(const char *nonce, int len)
392{
393 int i = 0;
394
395 if (NONCE_LEN_LIMIT <= len)
396 die("the receiving end asked to sign an invalid nonce <%.*s>",
397 len, nonce);
398
399 for (i = 0; i < len; i++) {
400 int ch = nonce[i] & 0xFF;
401 if (isalnum(ch) ||
402 ch == '-' || ch == '.' ||
403 ch == '/' || ch == '+' ||
404 ch == '=' || ch == '_')
405 continue;
406 die("the receiving end asked to sign an invalid nonce <%.*s>",
407 len, nonce);
408 }
409}
410
f5d942e1
NTND
411int send_pack(struct send_pack_args *args,
412 int fd[], struct child_process *conn,
413 struct ref *remote_refs,
910650d2 414 struct oid_array *extra_have)
f5d942e1
NTND
415{
416 int in = fd[0];
417 int out = fd[1];
418 struct strbuf req_buf = STRBUF_INIT;
887f3533 419 struct strbuf cap_buf = STRBUF_INIT;
f5d942e1 420 struct ref *ref;
ab2b0c90 421 int need_pack_data = 0;
f5d942e1
NTND
422 int allow_deleting_refs = 0;
423 int status_report = 0;
424 int use_sideband = 0;
425 int quiet_supported = 0;
426 int agent_supported = 0;
4ff17f10
RS
427 int use_atomic = 0;
428 int atomic_supported = 0;
f6a4e61f
SB
429 int use_push_options = 0;
430 int push_options_supported = 0;
82db03ab 431 int object_format_supported = 0;
f5d942e1
NTND
432 unsigned cmds_sent = 0;
433 int ret;
434 struct async demux;
b89363e4 435 const char *push_cert_nonce = NULL;
01f9ec64 436 struct packet_reader reader;
f5d942e1
NTND
437
438 /* Does the other end support the reporting? */
63518a57
JX
439 if (server_supports("report-status-v2"))
440 status_report = 2;
441 else if (server_supports("report-status"))
f5d942e1
NTND
442 status_report = 1;
443 if (server_supports("delete-refs"))
444 allow_deleting_refs = 1;
445 if (server_supports("ofs-delta"))
446 args->use_ofs_delta = 1;
447 if (server_supports("side-band-64k"))
448 use_sideband = 1;
449 if (server_supports("quiet"))
450 quiet_supported = 1;
451 if (server_supports("agent"))
452 agent_supported = 1;
1ba98a79
CMN
453 if (server_supports("no-thin"))
454 args->use_thin_pack = 0;
4ff17f10
RS
455 if (server_supports("atomic"))
456 atomic_supported = 1;
f6a4e61f
SB
457 if (server_supports("push-options"))
458 push_options_supported = 1;
b89363e4 459
82db03ab 460 if (!server_supports_hash(the_hash_algo->name, &object_format_supported))
461 die(_("the receiving end does not support this repository's hash algorithm"));
462
30261094
DB
463 if (args->push_cert != SEND_PACK_PUSH_CERT_NEVER) {
464 int len;
b89363e4 465 push_cert_nonce = server_feature_value("push-cert", &len);
30261094
DB
466 if (push_cert_nonce) {
467 reject_invalid_nonce(push_cert_nonce, len);
468 push_cert_nonce = xmemdupz(push_cert_nonce, len);
469 } else if (args->push_cert == SEND_PACK_PUSH_CERT_ALWAYS) {
b89363e4 470 die(_("the receiving end does not support --signed push"));
30261094
DB
471 } else if (args->push_cert == SEND_PACK_PUSH_CERT_IF_ASKED) {
472 warning(_("not sending a push certificate since the"
473 " receiving end does not support --signed"
474 " push"));
475 }
b89363e4 476 }
f5d942e1
NTND
477
478 if (!remote_refs) {
479 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
4d04658d 480 "Perhaps you should specify a branch.\n");
f5d942e1
NTND
481 return 0;
482 }
4ff17f10 483 if (args->atomic && !atomic_supported)
c8b8f22a 484 die(_("the receiving end does not support --atomic push"));
4ff17f10
RS
485
486 use_atomic = atomic_supported && args->atomic;
f5d942e1 487
f6a4e61f
SB
488 if (args->push_options && !push_options_supported)
489 die(_("the receiving end does not support push options"));
490
491 use_push_options = push_options_supported && args->push_options;
492
63518a57 493 if (status_report == 1)
887f3533 494 strbuf_addstr(&cap_buf, " report-status");
63518a57
JX
495 else if (status_report == 2)
496 strbuf_addstr(&cap_buf, " report-status-v2");
887f3533
JH
497 if (use_sideband)
498 strbuf_addstr(&cap_buf, " side-band-64k");
499 if (quiet_supported && (args->quiet || !args->progress))
500 strbuf_addstr(&cap_buf, " quiet");
4ff17f10
RS
501 if (use_atomic)
502 strbuf_addstr(&cap_buf, " atomic");
f6a4e61f
SB
503 if (use_push_options)
504 strbuf_addstr(&cap_buf, " push-options");
82db03ab 505 if (object_format_supported)
506 strbuf_addf(&cap_buf, " object-format=%s", the_hash_algo->name);
887f3533
JH
507 if (agent_supported)
508 strbuf_addf(&cap_buf, " agent=%s", git_user_agent_sanitized());
509
621b0599
JH
510 /*
511 * NEEDSWORK: why does delete-refs have to be so specific to
512 * send-pack machinery that set_ref_status_for_push() cannot
513 * set this bit for us???
514 */
515 for (ref = remote_refs; ref; ref = ref->next)
516 if (ref->deletion && !allow_deleting_refs)
517 ref->status = REF_STATUS_REJECT_NODELETE;
518
f5d942e1 519 /*
b783aa71
JH
520 * Clear the status for each ref and see if we need to send
521 * the pack data.
f5d942e1 522 */
f5d942e1 523 for (ref = remote_refs; ref; ref = ref->next) {
4ff17f10
RS
524 switch (check_to_send_update(ref, args)) {
525 case 0: /* no error */
526 break;
527 case CHECK_REF_STATUS_REJECTED:
528 /*
529 * When we know the server would reject a ref update if
530 * we were to send it and we're trying to send the refs
531 * atomically, abort the whole operation.
532 */
872d651f
RS
533 if (use_atomic) {
534 strbuf_release(&req_buf);
535 strbuf_release(&cap_buf);
dfe1b7f1
JX
536 reject_atomic_push(remote_refs, args->send_mirror);
537 error("atomic push failed for ref %s. status: %d\n",
538 ref->name, ref->status);
7dcbeaa0 539 return args->porcelain ? 0 : -1;
872d651f 540 }
1cf01a34 541 /* else fallthrough */
4ff17f10 542 default:
f5d942e1 543 continue;
4ff17f10 544 }
f5d942e1 545 if (!ref->deletion)
ab2b0c90 546 need_pack_data = 1;
f5d942e1 547
b783aa71 548 if (args->dry_run || !status_report)
f5d942e1 549 ref->status = REF_STATUS_OK;
b783aa71
JH
550 else
551 ref->status = REF_STATUS_EXPECTING_REPORT;
552 }
553
a4f324a4
HX
554 if (!args->dry_run)
555 advertise_shallow_grafts_buf(&req_buf);
556
b783aa71
JH
557 /*
558 * Finally, tell the other end!
559 */
a4f324a4
HX
560 if (!args->dry_run && push_cert_nonce)
561 cmds_sent = generate_push_cert(&req_buf, remote_refs, args,
562 cap_buf.buf, push_cert_nonce);
563 else if (!args->dry_run)
564 for (ref = remote_refs; ref; ref = ref->next) {
565 char *old_hex, *new_hex;
f5d942e1 566
a4f324a4
HX
567 if (check_to_send_update(ref, args) < 0)
568 continue;
f5d942e1 569
a4f324a4
HX
570 old_hex = oid_to_hex(&ref->old_oid);
571 new_hex = oid_to_hex(&ref->new_oid);
572 if (!cmds_sent) {
573 packet_buf_write(&req_buf,
574 "%s %s %s%c%s",
575 old_hex, new_hex, ref->name, 0,
576 cap_buf.buf);
577 cmds_sent = 1;
578 } else {
579 packet_buf_write(&req_buf, "%s %s %s",
580 old_hex, new_hex, ref->name);
581 }
f5d942e1 582 }
f5d942e1 583
eb7b9749
BW
584 if (use_push_options) {
585 struct string_list_item *item;
586
587 packet_buf_flush(&req_buf);
588 for_each_string_list_item(item, args->push_options)
589 packet_buf_write(&req_buf, "%s", item->string);
590 }
591
f5d942e1 592 if (args->stateless_rpc) {
c8813487 593 if (!args->dry_run && (cmds_sent || is_repository_shallow(the_repository))) {
f5d942e1
NTND
594 packet_buf_flush(&req_buf);
595 send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX);
596 }
597 } else {
cdf4fb8e 598 write_or_die(out, req_buf.buf, req_buf.len);
f5d942e1
NTND
599 packet_flush(out);
600 }
601 strbuf_release(&req_buf);
887f3533 602 strbuf_release(&cap_buf);
f5d942e1
NTND
603
604 if (use_sideband && cmds_sent) {
605 memset(&demux, 0, sizeof(demux));
606 demux.proc = sideband_demux;
607 demux.data = fd;
608 demux.out = -1;
3e8b06d0 609 demux.isolate_sigpipe = 1;
f5d942e1
NTND
610 if (start_async(&demux))
611 die("send-pack: unable to fork off sideband demultiplexer");
612 in = demux.out;
613 }
614
2d103c31
MS
615 packet_reader_init(&reader, in, NULL, 0,
616 PACKET_READ_CHOMP_NEWLINE |
617 PACKET_READ_DIE_ON_ERR_PACKET);
01f9ec64 618
ab2b0c90 619 if (need_pack_data && cmds_sent) {
f5d942e1 620 if (pack_objects(out, remote_refs, extra_have, args) < 0) {
f5d942e1
NTND
621 if (args->stateless_rpc)
622 close(out);
623 if (git_connection_is_socket(conn))
624 shutdown(fd[0], SHUT_WR);
ba69f92d
JK
625
626 /*
627 * Do not even bother with the return value; we know we
ad7a4032
JK
628 * are failing, and just want the error() side effects,
629 * as well as marking refs with their remote status (if
630 * we get one).
ba69f92d
JK
631 */
632 if (status_report)
ad7a4032 633 receive_status(&reader, remote_refs);
ba69f92d 634
739cf491
JK
635 if (use_sideband) {
636 close(demux.out);
f5d942e1 637 finish_async(&demux);
739cf491 638 }
37cb1dd6 639 fd[1] = -1;
f5d942e1
NTND
640 return -1;
641 }
37cb1dd6
JL
642 if (!args->stateless_rpc)
643 /* Closed by pack_objects() via start_command() */
644 fd[1] = -1;
f5d942e1
NTND
645 }
646 if (args->stateless_rpc && cmds_sent)
647 packet_flush(out);
648
649 if (status_report && cmds_sent)
01f9ec64 650 ret = receive_status(&reader, remote_refs);
f5d942e1
NTND
651 else
652 ret = 0;
653 if (args->stateless_rpc)
654 packet_flush(out);
655
656 if (use_sideband && cmds_sent) {
739cf491 657 close(demux.out);
f5d942e1
NTND
658 if (finish_async(&demux)) {
659 error("error in sideband demultiplexer");
660 ret = -1;
661 }
f5d942e1
NTND
662 }
663
664 if (ret < 0)
665 return ret;
666
667 if (args->porcelain)
668 return 0;
669
670 for (ref = remote_refs; ref; ref = ref->next) {
671 switch (ref->status) {
672 case REF_STATUS_NONE:
673 case REF_STATUS_UPTODATE:
674 case REF_STATUS_OK:
675 break;
676 default:
677 return -1;
678 }
679 }
680 return 0;
681}