1 #include "git-compat-util.h"
7 #include "object-store.h"
10 #include "run-command.h"
13 #include "send-pack.h"
14 #include "transport.h"
16 #include "oid-array.h"
17 #include "gpg-interface.h"
19 #include "parse-options.h"
21 #include "write-or-die.h"
23 int option_parse_push_signed(const struct option
*opt
,
24 const char *arg
, int unset
)
27 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_NEVER
;
30 switch (git_parse_maybe_bool(arg
)) {
32 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_ALWAYS
;
35 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_NEVER
;
38 if (!strcasecmp("if-asked", arg
)) {
39 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_IF_ASKED
;
42 die("bad %s argument: %s", opt
->long_name
, arg
);
45 static void feed_object(struct repository
*r
,
46 const struct object_id
*oid
, FILE *fh
, int negative
)
48 if (negative
&& !has_object(r
, oid
, 0))
53 fputs(oid_to_hex(oid
), fh
);
58 * Make a pack stream and spit it out into file descriptor fd
60 static int pack_objects(struct repository
*r
,
61 int fd
, struct ref
*refs
, struct oid_array
*advertised
,
62 struct oid_array
*negotiated
,
63 struct send_pack_args
*args
)
66 * The child becomes pack-objects --revs; we feed
67 * the revision parameters to it via its stdin and
68 * let its stdout go back to the other end.
70 struct child_process po
= CHILD_PROCESS_INIT
;
74 trace2_region_enter("send_pack", "pack_objects", r
);
75 strvec_push(&po
.args
, "pack-objects");
76 strvec_push(&po
.args
, "--all-progress-implied");
77 strvec_push(&po
.args
, "--revs");
78 strvec_push(&po
.args
, "--stdout");
79 if (args
->use_thin_pack
)
80 strvec_push(&po
.args
, "--thin");
81 if (args
->use_ofs_delta
)
82 strvec_push(&po
.args
, "--delta-base-offset");
83 if (args
->quiet
|| !args
->progress
)
84 strvec_push(&po
.args
, "-q");
86 strvec_push(&po
.args
, "--progress");
87 if (is_repository_shallow(r
))
88 strvec_push(&po
.args
, "--shallow");
89 if (args
->disable_bitmaps
)
90 strvec_push(&po
.args
, "--no-use-bitmap-index");
92 po
.out
= args
->stateless_rpc
? -1 : fd
;
95 if (start_command(&po
))
96 die_errno("git pack-objects failed");
99 * We feed the pack-objects we just spawned with revision
100 * parameters by writing to the pipe.
102 po_in
= xfdopen(po
.in
, "w");
103 for (size_t i
= 0; i
< advertised
->nr
; i
++)
104 feed_object(r
, &advertised
->oid
[i
], po_in
, 1);
105 for (size_t i
= 0; i
< negotiated
->nr
; i
++)
106 feed_object(r
, &negotiated
->oid
[i
], po_in
, 1);
109 if (!is_null_oid(&refs
->old_oid
))
110 feed_object(r
, &refs
->old_oid
, po_in
, 1);
111 if (!is_null_oid(&refs
->new_oid
))
112 feed_object(r
, &refs
->new_oid
, po_in
, 0);
118 die_errno("error writing to pack-objects");
121 if (args
->stateless_rpc
) {
122 char *buf
= xmalloc(LARGE_PACKET_MAX
);
124 ssize_t n
= xread(po
.out
, buf
, LARGE_PACKET_MAX
);
127 send_sideband(fd
, -1, buf
, n
, LARGE_PACKET_MAX
);
134 rc
= finish_command(&po
);
137 * For a normal non-zero exit, we assume pack-objects wrote
138 * something useful to stderr. For death by signal, though,
139 * we should mention it to the user. The exception is SIGPIPE
140 * (141), because that's a normal occurrence if the remote end
141 * hangs up (and we'll report that by trying to read the unpack
144 if (rc
> 128 && rc
!= 141)
145 error("pack-objects died of signal %d", rc
- 128);
146 trace2_region_leave("send_pack", "pack_objects", r
);
149 trace2_region_leave("send_pack", "pack_objects", r
);
153 static int receive_unpack_status(struct packet_reader
*reader
)
155 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
156 return error(_("unexpected flush packet while reading remote unpack status"));
157 if (!skip_prefix(reader
->line
, "unpack ", &reader
->line
))
158 return error(_("unable to parse remote unpack status: %s"), reader
->line
);
159 if (strcmp(reader
->line
, "ok"))
160 return error(_("remote unpack failed: %s"), reader
->line
);
164 static int receive_status(struct repository
*r
,
165 struct packet_reader
*reader
, struct ref
*refs
)
169 struct ref_push_report
*report
= NULL
;
173 trace2_region_enter("send_pack", "receive_status", r
);
175 ret
= receive_unpack_status(reader
);
177 struct object_id old_oid
, new_oid
;
181 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
184 p
= strchr(head
, ' ');
186 error("invalid status line from remote: %s", reader
->line
);
192 if (!strcmp(head
, "option")) {
193 const char *key
, *val
;
195 if (!hint
|| !(report
|| new_report
)) {
197 error("'option' without a matching 'ok/ng' directive");
203 CALLOC_ARRAY(hint
->report
, 1);
204 report
= hint
->report
;
206 report
= hint
->report
;
208 report
= report
->next
;
209 CALLOC_ARRAY(report
->next
, 1);
210 report
= report
->next
;
215 p
= strchr(key
, ' ');
219 if (!strcmp(key
, "refname"))
220 report
->ref_name
= xstrdup_or_null(val
);
221 else if (!strcmp(key
, "old-oid") && val
&&
222 !parse_oid_hex_algop(val
, &old_oid
, &val
, r
->hash_algo
))
223 report
->old_oid
= oiddup(&old_oid
);
224 else if (!strcmp(key
, "new-oid") && val
&&
225 !parse_oid_hex_algop(val
, &new_oid
, &val
, r
->hash_algo
))
226 report
->new_oid
= oiddup(&new_oid
);
227 else if (!strcmp(key
, "forced-update"))
228 report
->forced_update
= 1;
234 if (strcmp(head
, "ok") && strcmp(head
, "ng")) {
235 error("invalid ref status from remote: %s", head
);
240 p
= strchr(refname
, ' ');
243 /* first try searching at our hint, falling back to all refs */
245 hint
= find_ref_by_name(hint
, refname
);
247 hint
= find_ref_by_name(refs
, refname
);
249 warning("remote reported status on unknown ref: %s",
253 if (hint
->status
!= REF_STATUS_EXPECTING_REPORT
&&
254 hint
->status
!= REF_STATUS_OK
&&
255 hint
->status
!= REF_STATUS_REMOTE_REJECT
) {
256 warning("remote reported status on unexpected ref: %s",
260 if (!strcmp(head
, "ng")) {
261 hint
->status
= REF_STATUS_REMOTE_REJECT
;
263 hint
->remote_status
= xstrdup(p
);
265 hint
->remote_status
= xstrdup("failed");
267 hint
->status
= REF_STATUS_OK
;
268 hint
->remote_status
= xstrdup_or_null(p
);
272 trace2_region_leave("send_pack", "receive_status", r
);
276 static int sideband_demux(int in UNUSED
, int out
, void *data
)
279 if (async_with_fork())
281 ret
= recv_sideband("send-pack", fd
[0], out
);
286 static int advertise_shallow_grafts_cb(const struct commit_graft
*graft
, void *cb
)
288 struct strbuf
*sb
= cb
;
289 if (graft
->nr_parent
== -1)
290 packet_buf_write(sb
, "shallow %s\n", oid_to_hex(&graft
->oid
));
294 static void advertise_shallow_grafts_buf(struct repository
*r
, struct strbuf
*sb
)
296 if (!is_repository_shallow(r
))
298 for_each_commit_graft(advertise_shallow_grafts_cb
, sb
);
301 #define CHECK_REF_NO_PUSH -1
302 #define CHECK_REF_STATUS_REJECTED -2
303 #define CHECK_REF_UPTODATE -3
304 static int check_to_send_update(const struct ref
*ref
, const struct send_pack_args
*args
)
306 if (!ref
->peer_ref
&& !args
->send_mirror
)
307 return CHECK_REF_NO_PUSH
;
309 /* Check for statuses set by set_ref_status_for_push() */
310 switch (ref
->status
) {
311 case REF_STATUS_REJECT_NONFASTFORWARD
:
312 case REF_STATUS_REJECT_ALREADY_EXISTS
:
313 case REF_STATUS_REJECT_FETCH_FIRST
:
314 case REF_STATUS_REJECT_NEEDS_FORCE
:
315 case REF_STATUS_REJECT_STALE
:
316 case REF_STATUS_REJECT_REMOTE_UPDATED
:
317 case REF_STATUS_REJECT_NODELETE
:
318 return CHECK_REF_STATUS_REJECTED
;
319 case REF_STATUS_UPTODATE
:
320 return CHECK_REF_UPTODATE
;
323 case REF_STATUS_EXPECTING_REPORT
:
324 /* already passed checks on the local side */
326 /* of course this is OK */
332 * the beginning of the next line, or the end of buffer.
334 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
335 * convert many similar uses found by "git grep -A4 memchr".
337 static const char *next_line(const char *line
, size_t len
)
339 const char *nl
= memchr(line
, '\n', len
);
341 return line
+ len
; /* incomplete line */
345 static int generate_push_cert(struct strbuf
*req_buf
,
346 const struct ref
*remote_refs
,
347 struct send_pack_args
*args
,
348 const char *cap_string
,
349 const char *push_cert_nonce
)
351 const struct ref
*ref
;
352 struct string_list_item
*item
;
353 char *signing_key_id
= get_signing_key_id();
354 char *signing_key
= get_signing_key();
356 struct strbuf cert
= STRBUF_INIT
;
359 strbuf_addstr(&cert
, "certificate version 0.1\n");
360 strbuf_addf(&cert
, "pusher %s ", signing_key_id
);
362 strbuf_addch(&cert
, '\n');
363 if (args
->url
&& *args
->url
) {
364 char *anon_url
= transport_anonymize_url(args
->url
);
365 strbuf_addf(&cert
, "pushee %s\n", anon_url
);
368 if (push_cert_nonce
[0])
369 strbuf_addf(&cert
, "nonce %s\n", push_cert_nonce
);
370 if (args
->push_options
)
371 for_each_string_list_item(item
, args
->push_options
)
372 strbuf_addf(&cert
, "push-option %s\n", item
->string
);
373 strbuf_addstr(&cert
, "\n");
375 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
376 if (check_to_send_update(ref
, args
) < 0)
379 strbuf_addf(&cert
, "%s %s %s\n",
380 oid_to_hex(&ref
->old_oid
),
381 oid_to_hex(&ref
->new_oid
),
387 if (sign_buffer(&cert
, &cert
, signing_key
))
388 die(_("failed to sign the push certificate"));
390 packet_buf_write(req_buf
, "push-cert%c%s", 0, cap_string
);
391 for (cp
= cert
.buf
; cp
< cert
.buf
+ cert
.len
; cp
= np
) {
392 np
= next_line(cp
, cert
.buf
+ cert
.len
- cp
);
393 packet_buf_write(req_buf
,
394 "%.*s", (int)(np
- cp
), cp
);
396 packet_buf_write(req_buf
, "push-cert-end\n");
399 free(signing_key_id
);
401 strbuf_release(&cert
);
405 #define NONCE_LEN_LIMIT 256
407 static void reject_invalid_nonce(const char *nonce
, int len
)
411 if (NONCE_LEN_LIMIT
<= len
)
412 die("the receiving end asked to sign an invalid nonce <%.*s>",
415 for (i
= 0; i
< len
; i
++) {
416 int ch
= nonce
[i
] & 0xFF;
418 ch
== '-' || ch
== '.' ||
419 ch
== '/' || ch
== '+' ||
420 ch
== '=' || ch
== '_')
422 die("the receiving end asked to sign an invalid nonce <%.*s>",
427 static void get_commons_through_negotiation(struct repository
*r
,
429 const struct ref
*remote_refs
,
430 struct oid_array
*commons
)
432 struct child_process child
= CHILD_PROCESS_INIT
;
433 const struct ref
*ref
;
434 int len
= r
->hash_algo
->hexsz
+ 1; /* hash + NL */
435 int nr_negotiation_tip
= 0;
440 strvec_pushl(&child
.args
, "fetch", "--negotiate-only", NULL
);
441 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
442 if (!is_null_oid(&ref
->new_oid
)) {
443 strvec_pushf(&child
.args
, "--negotiation-tip=%s",
444 oid_to_hex(&ref
->new_oid
));
445 nr_negotiation_tip
++;
448 strvec_push(&child
.args
, url
);
450 if (!nr_negotiation_tip
) {
451 child_process_clear(&child
);
455 if (start_command(&child
))
456 die(_("send-pack: unable to fork off fetch subprocess"));
459 char hex_hash
[GIT_MAX_HEXSZ
+ 1];
460 int read_len
= read_in_full(child
.out
, hex_hash
, len
);
461 struct object_id oid
;
467 die("invalid length read %d", read_len
);
468 if (parse_oid_hex_algop(hex_hash
, &oid
, &end
, r
->hash_algo
) || *end
!= '\n')
470 oid_array_append(commons
, &oid
);
473 if (finish_command(&child
)) {
475 * The information that push negotiation provides is useful but
478 warning(_("push negotiation failed; proceeding anyway with push"));
482 int send_pack(struct repository
*r
,
483 struct send_pack_args
*args
,
484 int fd
[], struct child_process
*conn
,
485 struct ref
*remote_refs
,
486 struct oid_array
*extra_have
)
488 struct oid_array commons
= OID_ARRAY_INIT
;
491 struct strbuf req_buf
= STRBUF_INIT
;
492 struct strbuf cap_buf
= STRBUF_INIT
;
494 int need_pack_data
= 0;
495 int allow_deleting_refs
= 0;
496 int status_report
= 0;
497 int use_sideband
= 0;
498 int quiet_supported
= 0;
499 int agent_supported
= 0;
500 int advertise_sid
= 0;
501 int push_negotiate
= 0;
503 int atomic_supported
= 0;
504 int use_push_options
= 0;
505 int push_options_supported
= 0;
506 int object_format_supported
= 0;
507 unsigned cmds_sent
= 0;
510 char *push_cert_nonce
= NULL
;
511 struct packet_reader reader
;
515 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
516 "Perhaps you should specify a branch.\n");
521 repo_config_get_bool(r
, "push.negotiate", &push_negotiate
);
522 if (push_negotiate
) {
523 trace2_region_enter("send_pack", "push_negotiate", r
);
524 get_commons_through_negotiation(r
, args
->url
, remote_refs
, &commons
);
525 trace2_region_leave("send_pack", "push_negotiate", r
);
528 if (!repo_config_get_bool(r
, "push.usebitmaps", &use_bitmaps
))
529 args
->disable_bitmaps
= !use_bitmaps
;
531 repo_config_get_bool(r
, "transfer.advertisesid", &advertise_sid
);
533 /* Does the other end support the reporting? */
534 if (server_supports("report-status-v2"))
536 else if (server_supports("report-status"))
538 if (server_supports("delete-refs"))
539 allow_deleting_refs
= 1;
540 if (server_supports("ofs-delta"))
541 args
->use_ofs_delta
= 1;
542 if (server_supports("side-band-64k"))
544 if (server_supports("quiet"))
546 if (server_supports("agent"))
548 if (!server_supports("session-id"))
550 if (server_supports("no-thin"))
551 args
->use_thin_pack
= 0;
552 if (server_supports("atomic"))
553 atomic_supported
= 1;
554 if (server_supports("push-options"))
555 push_options_supported
= 1;
557 if (!server_supports_hash(r
->hash_algo
->name
, &object_format_supported
))
558 die(_("the receiving end does not support this repository's hash algorithm"));
560 if (args
->push_cert
!= SEND_PACK_PUSH_CERT_NEVER
) {
562 const char *nonce
= server_feature_value("push-cert", &len
);
565 reject_invalid_nonce(nonce
, len
);
566 push_cert_nonce
= xmemdupz(nonce
, len
);
567 } else if (args
->push_cert
== SEND_PACK_PUSH_CERT_ALWAYS
) {
568 die(_("the receiving end does not support --signed push"));
569 } else if (args
->push_cert
== SEND_PACK_PUSH_CERT_IF_ASKED
) {
570 warning(_("not sending a push certificate since the"
571 " receiving end does not support --signed"
576 if (args
->atomic
&& !atomic_supported
)
577 die(_("the receiving end does not support --atomic push"));
579 use_atomic
= atomic_supported
&& args
->atomic
;
581 if (args
->push_options
&& !push_options_supported
)
582 die(_("the receiving end does not support push options"));
584 use_push_options
= push_options_supported
&& args
->push_options
;
586 if (status_report
== 1)
587 strbuf_addstr(&cap_buf
, " report-status");
588 else if (status_report
== 2)
589 strbuf_addstr(&cap_buf
, " report-status-v2");
591 strbuf_addstr(&cap_buf
, " side-band-64k");
592 if (quiet_supported
&& (args
->quiet
|| !args
->progress
))
593 strbuf_addstr(&cap_buf
, " quiet");
595 strbuf_addstr(&cap_buf
, " atomic");
596 if (use_push_options
)
597 strbuf_addstr(&cap_buf
, " push-options");
598 if (object_format_supported
)
599 strbuf_addf(&cap_buf
, " object-format=%s", r
->hash_algo
->name
);
601 strbuf_addf(&cap_buf
, " agent=%s", git_user_agent_sanitized());
603 strbuf_addf(&cap_buf
, " session-id=%s", trace2_session_id());
606 * NEEDSWORK: why does delete-refs have to be so specific to
607 * send-pack machinery that set_ref_status_for_push() cannot
608 * set this bit for us???
610 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
611 if (ref
->deletion
&& !allow_deleting_refs
)
612 ref
->status
= REF_STATUS_REJECT_NODELETE
;
615 * Clear the status for each ref and see if we need to send
618 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
619 switch (check_to_send_update(ref
, args
)) {
620 case 0: /* no error */
622 case CHECK_REF_STATUS_REJECTED
:
624 * When we know the server would reject a ref update if
625 * we were to send it and we're trying to send the refs
626 * atomically, abort the whole operation.
629 reject_atomic_push(remote_refs
, args
->send_mirror
);
630 error("atomic push failed for ref %s. status: %d",
631 ref
->name
, ref
->status
);
632 ret
= ERROR_SEND_PACK_BAD_REF_STATUS
;
636 /* else fallthrough */
643 if (args
->dry_run
|| !status_report
)
644 ref
->status
= REF_STATUS_OK
;
646 ref
->status
= REF_STATUS_EXPECTING_REPORT
;
650 advertise_shallow_grafts_buf(r
, &req_buf
);
653 * Finally, tell the other end!
655 if (!args
->dry_run
&& push_cert_nonce
) {
656 cmds_sent
= generate_push_cert(&req_buf
, remote_refs
, args
,
657 cap_buf
.buf
, push_cert_nonce
);
658 trace2_printf("Generated push certificate");
659 } else if (!args
->dry_run
) {
660 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
661 char *old_hex
, *new_hex
;
663 if (check_to_send_update(ref
, args
) < 0)
666 old_hex
= oid_to_hex(&ref
->old_oid
);
667 new_hex
= oid_to_hex(&ref
->new_oid
);
669 packet_buf_write(&req_buf
,
671 old_hex
, new_hex
, ref
->name
, 0,
675 packet_buf_write(&req_buf
, "%s %s %s",
676 old_hex
, new_hex
, ref
->name
);
681 if (use_push_options
) {
682 struct string_list_item
*item
;
684 packet_buf_flush(&req_buf
);
685 for_each_string_list_item(item
, args
->push_options
)
686 packet_buf_write(&req_buf
, "%s", item
->string
);
689 if (args
->stateless_rpc
) {
690 if (!args
->dry_run
&& (cmds_sent
|| is_repository_shallow(r
))) {
691 packet_buf_flush(&req_buf
);
692 send_sideband(out
, -1, req_buf
.buf
, req_buf
.len
, LARGE_PACKET_MAX
);
695 write_or_die(out
, req_buf
.buf
, req_buf
.len
);
699 if (use_sideband
&& cmds_sent
) {
700 memset(&demux
, 0, sizeof(demux
));
701 demux
.proc
= sideband_demux
;
704 demux
.isolate_sigpipe
= 1;
705 if (start_async(&demux
))
706 die("send-pack: unable to fork off sideband demultiplexer");
710 packet_reader_init(&reader
, in
, NULL
, 0,
711 PACKET_READ_CHOMP_NEWLINE
|
712 PACKET_READ_DIE_ON_ERR_PACKET
);
714 if (need_pack_data
&& cmds_sent
) {
715 if (pack_objects(r
, out
, remote_refs
, extra_have
, &commons
, args
) < 0) {
716 if (args
->stateless_rpc
)
718 if (git_connection_is_socket(conn
))
719 shutdown(fd
[0], SHUT_WR
);
722 * Do not even bother with the return value; we know we
723 * are failing, and just want the error() side effects,
724 * as well as marking refs with their remote status (if
728 receive_status(r
, &reader
, remote_refs
);
732 finish_async(&demux
);
739 if (!args
->stateless_rpc
)
740 /* Closed by pack_objects() via start_command() */
743 if (args
->stateless_rpc
&& cmds_sent
)
746 if (status_report
&& cmds_sent
)
747 ret
= receive_status(r
, &reader
, remote_refs
);
750 if (args
->stateless_rpc
)
753 if (use_sideband
&& cmds_sent
) {
755 if (finish_async(&demux
)) {
756 error("error in sideband demultiplexer");
764 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
765 switch (ref
->status
) {
766 case REF_STATUS_NONE
:
767 case REF_STATUS_UPTODATE
:
771 ret
= ERROR_SEND_PACK_BAD_REF_STATUS
;
779 oid_array_clear(&commons
);
780 strbuf_release(&req_buf
);
781 strbuf_release(&cap_buf
);
782 free(push_cert_nonce
);