5 #include "object-store.h"
8 #include "run-command.h"
11 #include "send-pack.h"
13 #include "transport.h"
15 #include "oid-array.h"
16 #include "gpg-interface.h"
19 int option_parse_push_signed(const struct option *opt,
20 const char *arg, int unset)
23 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_NEVER;
26 switch (git_parse_maybe_bool(arg)) {
28 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_ALWAYS;
31 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_NEVER;
34 if (!strcasecmp("if-asked", arg)) {
35 *(int *)(opt->value) = SEND_PACK_PUSH_CERT_IF_ASKED;
38 die("bad %s argument: %s", opt->long_name, arg);
41 static void feed_object(const struct object_id *oid, FILE *fh, int negative)
44 !has_object_file_with_flags(oid,
45 OBJECT_INFO_SKIP_FETCH_OBJECT |
51 fputs(oid_to_hex(oid), fh);
56 * Make a pack stream and spit it out into file descriptor fd
58 static int pack_objects(int fd, struct ref *refs, struct oid_array *extra, struct send_pack_args *args)
61 * The child becomes pack-objects --revs; we feed
62 * the revision parameters to it via its stdin and
63 * let its stdout go back to the other end.
65 struct child_process po = CHILD_PROCESS_INIT;
70 argv_array_push(&po.args, "pack-objects");
71 argv_array_push(&po.args, "--all-progress-implied");
72 argv_array_push(&po.args, "--revs");
73 argv_array_push(&po.args, "--stdout");
74 if (args->use_thin_pack)
75 argv_array_push(&po.args, "--thin");
76 if (args->use_ofs_delta)
77 argv_array_push(&po.args, "--delta-base-offset");
78 if (args->quiet || !args->progress)
79 argv_array_push(&po.args, "-q");
81 argv_array_push(&po.args, "--progress");
82 if (is_repository_shallow(the_repository))
83 argv_array_push(&po.args, "--shallow");
85 po.out = args->stateless_rpc ? -1 : fd;
87 if (start_command(&po))
88 die_errno("git pack-objects failed");
91 * We feed the pack-objects we just spawned with revision
92 * parameters by writing to the pipe.
94 po_in = xfdopen(po.in, "w");
95 for (i = 0; i < extra->nr; i++)
96 feed_object(&extra->oid[i], po_in, 1);
99 if (!is_null_oid(&refs->old_oid))
100 feed_object(&refs->old_oid, po_in, 1);
101 if (!is_null_oid(&refs->new_oid))
102 feed_object(&refs->new_oid, po_in, 0);
108 die_errno("error writing to pack-objects");
111 if (args->stateless_rpc) {
112 char *buf = xmalloc(LARGE_PACKET_MAX);
114 ssize_t n = xread(po.out, buf, LARGE_PACKET_MAX);
117 send_sideband(fd, -1, buf, n, LARGE_PACKET_MAX);
124 rc = finish_command(&po);
127 * For a normal non-zero exit, we assume pack-objects wrote
128 * something useful to stderr. For death by signal, though,
129 * we should mention it to the user. The exception is SIGPIPE
130 * (141), because that's a normal occurrence if the remote end
131 * hangs up (and we'll report that by trying to read the unpack
134 if (rc > 128 && rc != 141)
135 error("pack-objects died of signal %d", rc - 128);
141 static int receive_unpack_status(struct packet_reader *reader)
143 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
144 return error(_("unexpected flush packet while reading remote unpack status"));
145 if (!skip_prefix(reader->line, "unpack ", &reader->line))
146 return error(_("unable to parse remote unpack status: %s"), reader->line);
147 if (strcmp(reader->line, "ok"))
148 return error(_("remote unpack failed: %s"), reader->line);
152 static int receive_status(struct packet_reader *reader, struct ref *refs)
156 struct ref_push_report *report = NULL;
161 ret = receive_unpack_status(reader);
163 struct object_id old_oid, new_oid;
167 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
170 p = strchr(head, ' ');
172 error("invalid status line from remote: %s", reader->line);
178 if (!strcmp(head, "option")) {
179 const char *key, *val;
181 if (!hint || !(report || new_report)) {
183 error("'option' without a matching 'ok/ng' directive");
189 hint->report = xcalloc(1, sizeof(struct ref_push_report));
190 report = hint->report;
192 report = hint->report;
194 report = report->next;
195 report->next = xcalloc(1, sizeof(struct ref_push_report));
196 report = report->next;
201 p = strchr(key, ' ');
205 if (!strcmp(key, "refname"))
206 report->ref_name = xstrdup_or_null(val);
207 else if (!strcmp(key, "old-oid") && val &&
208 !parse_oid_hex(val, &old_oid, &val))
209 report->old_oid = oiddup(&old_oid);
210 else if (!strcmp(key, "new-oid") && val &&
211 !parse_oid_hex(val, &new_oid, &val))
212 report->new_oid = oiddup(&new_oid);
213 else if (!strcmp(key, "forced-update"))
214 report->forced_update = 1;
220 if (strcmp(head, "ok") && strcmp(head, "ng")) {
221 error("invalid ref status from remote: %s", head);
226 p = strchr(refname, ' ');
229 /* first try searching at our hint, falling back to all refs */
231 hint = find_ref_by_name(hint, refname);
233 hint = find_ref_by_name(refs, refname);
235 warning("remote reported status on unknown ref: %s",
239 if (hint->status != REF_STATUS_EXPECTING_REPORT &&
240 hint->status != REF_STATUS_OK &&
241 hint->status != REF_STATUS_REMOTE_REJECT) {
242 warning("remote reported status on unexpected ref: %s",
246 if (!strcmp(head, "ng")) {
247 hint->status = REF_STATUS_REMOTE_REJECT;
249 hint->remote_status = xstrdup(p);
251 hint->remote_status = "failed";
253 hint->status = REF_STATUS_OK;
254 hint->remote_status = xstrdup_or_null(p);
261 static int sideband_demux(int in, int out, void *data)
264 if (async_with_fork())
266 ret = recv_sideband("send-pack", fd[0], out);
271 static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *cb)
273 struct strbuf *sb = cb;
274 if (graft->nr_parent == -1)
275 packet_buf_write(sb, "shallow %s\n", oid_to_hex(&graft->oid));
279 static void advertise_shallow_grafts_buf(struct strbuf *sb)
281 if (!is_repository_shallow(the_repository))
283 for_each_commit_graft(advertise_shallow_grafts_cb, sb);
286 #define CHECK_REF_NO_PUSH -1
287 #define CHECK_REF_STATUS_REJECTED -2
288 #define CHECK_REF_UPTODATE -3
289 static int check_to_send_update(const struct ref *ref, const struct send_pack_args *args)
291 if (!ref->peer_ref && !args->send_mirror)
292 return CHECK_REF_NO_PUSH;
294 /* Check for statuses set by set_ref_status_for_push() */
295 switch (ref->status) {
296 case REF_STATUS_REJECT_NONFASTFORWARD:
297 case REF_STATUS_REJECT_ALREADY_EXISTS:
298 case REF_STATUS_REJECT_FETCH_FIRST:
299 case REF_STATUS_REJECT_NEEDS_FORCE:
300 case REF_STATUS_REJECT_STALE:
301 case REF_STATUS_REJECT_NODELETE:
302 return CHECK_REF_STATUS_REJECTED;
303 case REF_STATUS_UPTODATE:
304 return CHECK_REF_UPTODATE;
311 * the beginning of the next line, or the end of buffer.
313 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
314 * convert many similar uses found by "git grep -A4 memchr".
316 static const char *next_line(const char *line, size_t len)
318 const char *nl = memchr(line, '\n', len);
320 return line + len; /* incomplete line */
324 static int generate_push_cert(struct strbuf *req_buf,
325 const struct ref *remote_refs,
326 struct send_pack_args *args,
327 const char *cap_string,
328 const char *push_cert_nonce)
330 const struct ref *ref;
331 struct string_list_item *item;
332 char *signing_key = xstrdup(get_signing_key());
334 struct strbuf cert = STRBUF_INIT;
337 strbuf_addstr(&cert, "certificate version 0.1\n");
338 strbuf_addf(&cert, "pusher %s ", signing_key);
340 strbuf_addch(&cert, '\n');
341 if (args->url && *args->url) {
342 char *anon_url = transport_anonymize_url(args->url);
343 strbuf_addf(&cert, "pushee %s\n", anon_url);
346 if (push_cert_nonce[0])
347 strbuf_addf(&cert, "nonce %s\n", push_cert_nonce);
348 if (args->push_options)
349 for_each_string_list_item(item, args->push_options)
350 strbuf_addf(&cert, "push-option %s\n", item->string);
351 strbuf_addstr(&cert, "\n");
353 for (ref = remote_refs; ref; ref = ref->next) {
354 if (check_to_send_update(ref, args) < 0)
357 strbuf_addf(&cert, "%s %s %s\n",
358 oid_to_hex(&ref->old_oid),
359 oid_to_hex(&ref->new_oid),
365 if (sign_buffer(&cert, &cert, signing_key))
366 die(_("failed to sign the push certificate"));
368 packet_buf_write(req_buf, "push-cert%c%s", 0, cap_string);
369 for (cp = cert.buf; cp < cert.buf + cert.len; cp = np) {
370 np = next_line(cp, cert.buf + cert.len - cp);
371 packet_buf_write(req_buf,
372 "%.*s", (int)(np - cp), cp);
374 packet_buf_write(req_buf, "push-cert-end\n");
378 strbuf_release(&cert);
382 #define NONCE_LEN_LIMIT 256
384 static void reject_invalid_nonce(const char *nonce, int len)
388 if (NONCE_LEN_LIMIT <= len)
389 die("the receiving end asked to sign an invalid nonce <%.*s>",
392 for (i = 0; i < len; i++) {
393 int ch = nonce[i] & 0xFF;
395 ch == '-' || ch == '.' ||
396 ch == '/' || ch == '+' ||
397 ch == '=' || ch == '_')
399 die("the receiving end asked to sign an invalid nonce <%.*s>",
404 int send_pack(struct send_pack_args *args,
405 int fd[], struct child_process *conn,
406 struct ref *remote_refs,
407 struct oid_array *extra_have)
411 struct strbuf req_buf = STRBUF_INIT;
412 struct strbuf cap_buf = STRBUF_INIT;
414 int need_pack_data = 0;
415 int allow_deleting_refs = 0;
416 int status_report = 0;
417 int use_sideband = 0;
418 int quiet_supported = 0;
419 int agent_supported = 0;
421 int atomic_supported = 0;
422 int use_push_options = 0;
423 int push_options_supported = 0;
424 unsigned cmds_sent = 0;
427 const char *push_cert_nonce = NULL;
428 struct packet_reader reader;
430 /* Does the other end support the reporting? */
431 if (server_supports("report-status-v2"))
433 else if (server_supports("report-status"))
435 if (server_supports("delete-refs"))
436 allow_deleting_refs = 1;
437 if (server_supports("ofs-delta"))
438 args->use_ofs_delta = 1;
439 if (server_supports("side-band-64k"))
441 if (server_supports("quiet"))
443 if (server_supports("agent"))
445 if (server_supports("no-thin"))
446 args->use_thin_pack = 0;
447 if (server_supports("atomic"))
448 atomic_supported = 1;
449 if (server_supports("push-options"))
450 push_options_supported = 1;
452 if (args->push_cert != SEND_PACK_PUSH_CERT_NEVER) {
454 push_cert_nonce = server_feature_value("push-cert", &len);
455 if (push_cert_nonce) {
456 reject_invalid_nonce(push_cert_nonce, len);
457 push_cert_nonce = xmemdupz(push_cert_nonce, len);
458 } else if (args->push_cert == SEND_PACK_PUSH_CERT_ALWAYS) {
459 die(_("the receiving end does not support --signed push"));
460 } else if (args->push_cert == SEND_PACK_PUSH_CERT_IF_ASKED) {
461 warning(_("not sending a push certificate since the"
462 " receiving end does not support --signed"
468 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
469 "Perhaps you should specify a branch such as 'master'.\n");
472 if (args->atomic && !atomic_supported)
473 die(_("the receiving end does not support --atomic push"));
475 use_atomic = atomic_supported && args->atomic;
477 if (args->push_options && !push_options_supported)
478 die(_("the receiving end does not support push options"));
480 use_push_options = push_options_supported && args->push_options;
482 if (status_report == 1)
483 strbuf_addstr(&cap_buf, " report-status");
484 else if (status_report == 2)
485 strbuf_addstr(&cap_buf, " report-status-v2");
487 strbuf_addstr(&cap_buf, " side-band-64k");
488 if (quiet_supported && (args->quiet || !args->progress))
489 strbuf_addstr(&cap_buf, " quiet");
491 strbuf_addstr(&cap_buf, " atomic");
492 if (use_push_options)
493 strbuf_addstr(&cap_buf, " push-options");
495 strbuf_addf(&cap_buf, " agent=%s", git_user_agent_sanitized());
498 * NEEDSWORK: why does delete-refs have to be so specific to
499 * send-pack machinery that set_ref_status_for_push() cannot
500 * set this bit for us???
502 for (ref = remote_refs; ref; ref = ref->next)
503 if (ref->deletion && !allow_deleting_refs)
504 ref->status = REF_STATUS_REJECT_NODELETE;
507 advertise_shallow_grafts_buf(&req_buf);
509 if (!args->dry_run && push_cert_nonce)
510 cmds_sent = generate_push_cert(&req_buf, remote_refs, args,
511 cap_buf.buf, push_cert_nonce);
514 * Clear the status for each ref and see if we need to send
517 for (ref = remote_refs; ref; ref = ref->next) {
518 switch (check_to_send_update(ref, args)) {
519 case 0: /* no error */
521 case CHECK_REF_STATUS_REJECTED:
523 * When we know the server would reject a ref update if
524 * we were to send it and we're trying to send the refs
525 * atomically, abort the whole operation.
528 strbuf_release(&req_buf);
529 strbuf_release(&cap_buf);
530 reject_atomic_push(remote_refs, args->send_mirror);
531 error("atomic push failed for ref %s. status: %d\n",
532 ref->name, ref->status);
533 return args->porcelain ? 0 : -1;
535 /* else fallthrough */
542 if (args->dry_run || !status_report)
543 ref->status = REF_STATUS_OK;
545 ref->status = REF_STATUS_EXPECTING_REPORT;
549 * Finally, tell the other end!
551 for (ref = remote_refs; ref; ref = ref->next) {
552 char *old_hex, *new_hex;
554 if (args->dry_run || push_cert_nonce)
557 if (check_to_send_update(ref, args) < 0)
560 old_hex = oid_to_hex(&ref->old_oid);
561 new_hex = oid_to_hex(&ref->new_oid);
563 packet_buf_write(&req_buf,
565 old_hex, new_hex, ref->name, 0,
569 packet_buf_write(&req_buf, "%s %s %s",
570 old_hex, new_hex, ref->name);
574 if (use_push_options) {
575 struct string_list_item *item;
577 packet_buf_flush(&req_buf);
578 for_each_string_list_item(item, args->push_options)
579 packet_buf_write(&req_buf, "%s", item->string);
582 if (args->stateless_rpc) {
583 if (!args->dry_run && (cmds_sent || is_repository_shallow(the_repository))) {
584 packet_buf_flush(&req_buf);
585 send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX);
588 write_or_die(out, req_buf.buf, req_buf.len);
591 strbuf_release(&req_buf);
592 strbuf_release(&cap_buf);
594 if (use_sideband && cmds_sent) {
595 memset(&demux, 0, sizeof(demux));
596 demux.proc = sideband_demux;
599 demux.isolate_sigpipe = 1;
600 if (start_async(&demux))
601 die("send-pack: unable to fork off sideband demultiplexer");
605 packet_reader_init(&reader, in, NULL, 0,
606 PACKET_READ_CHOMP_NEWLINE |
607 PACKET_READ_DIE_ON_ERR_PACKET);
609 if (need_pack_data && cmds_sent) {
610 if (pack_objects(out, remote_refs, extra_have, args) < 0) {
611 if (args->stateless_rpc)
613 if (git_connection_is_socket(conn))
614 shutdown(fd[0], SHUT_WR);
617 * Do not even bother with the return value; we know we
618 * are failing, and just want the error() side effects,
619 * as well as marking refs with their remote status (if
623 receive_status(&reader, remote_refs);
627 finish_async(&demux);
632 if (!args->stateless_rpc)
633 /* Closed by pack_objects() via start_command() */
636 if (args->stateless_rpc && cmds_sent)
639 if (status_report && cmds_sent)
640 ret = receive_status(&reader, remote_refs);
643 if (args->stateless_rpc)
646 if (use_sideband && cmds_sent) {
648 if (finish_async(&demux)) {
649 error("error in sideband demultiplexer");
660 for (ref = remote_refs; ref; ref = ref->next) {
661 switch (ref->status) {
662 case REF_STATUS_NONE:
663 case REF_STATUS_UPTODATE: