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"
20 int option_parse_push_signed(const struct option
*opt
,
21 const char *arg
, int unset
)
24 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_NEVER
;
27 switch (git_parse_maybe_bool(arg
)) {
29 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_ALWAYS
;
32 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_NEVER
;
35 if (!strcasecmp("if-asked", arg
)) {
36 *(int *)(opt
->value
) = SEND_PACK_PUSH_CERT_IF_ASKED
;
39 die("bad %s argument: %s", opt
->long_name
, arg
);
42 static void feed_object(const struct object_id
*oid
, FILE *fh
, int negative
)
45 !has_object_file_with_flags(oid
,
46 OBJECT_INFO_SKIP_FETCH_OBJECT
|
52 fputs(oid_to_hex(oid
), fh
);
57 * Make a pack stream and spit it out into file descriptor fd
59 static int pack_objects(int fd
, struct ref
*refs
, struct oid_array
*extra
, struct send_pack_args
*args
)
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.
66 struct child_process po
= CHILD_PROCESS_INIT
;
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");
75 if (args
->use_thin_pack
)
76 strvec_push(&po
.args
, "--thin");
77 if (args
->use_ofs_delta
)
78 strvec_push(&po
.args
, "--delta-base-offset");
79 if (args
->quiet
|| !args
->progress
)
80 strvec_push(&po
.args
, "-q");
82 strvec_push(&po
.args
, "--progress");
83 if (is_repository_shallow(the_repository
))
84 strvec_push(&po
.args
, "--shallow");
86 po
.out
= args
->stateless_rpc
? -1 : fd
;
88 if (start_command(&po
))
89 die_errno("git pack-objects failed");
92 * We feed the pack-objects we just spawned with revision
93 * parameters by writing to the pipe.
95 po_in
= xfdopen(po
.in
, "w");
96 for (i
= 0; i
< extra
->nr
; i
++)
97 feed_object(&extra
->oid
[i
], po_in
, 1);
100 if (!is_null_oid(&refs
->old_oid
))
101 feed_object(&refs
->old_oid
, po_in
, 1);
102 if (!is_null_oid(&refs
->new_oid
))
103 feed_object(&refs
->new_oid
, po_in
, 0);
109 die_errno("error writing to pack-objects");
112 if (args
->stateless_rpc
) {
113 char *buf
= xmalloc(LARGE_PACKET_MAX
);
115 ssize_t n
= xread(po
.out
, buf
, LARGE_PACKET_MAX
);
118 send_sideband(fd
, -1, buf
, n
, LARGE_PACKET_MAX
);
125 rc
= finish_command(&po
);
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
131 * (141), because that's a normal occurrence if the remote end
132 * hangs up (and we'll report that by trying to read the unpack
135 if (rc
> 128 && rc
!= 141)
136 error("pack-objects died of signal %d", rc
- 128);
142 static int receive_unpack_status(struct packet_reader
*reader
)
144 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
145 return error(_("unexpected flush packet while reading remote unpack status"));
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
);
153 static int receive_status(struct packet_reader
*reader
, struct ref
*refs
)
157 struct ref_push_report
*report
= NULL
;
162 ret
= receive_unpack_status(reader
);
164 struct object_id old_oid
, new_oid
;
168 if (packet_reader_read(reader
) != PACKET_READ_NORMAL
)
171 p
= strchr(head
, ' ');
173 error("invalid status line from remote: %s", reader
->line
);
179 if (!strcmp(head
, "option")) {
180 const char *key
, *val
;
182 if (!hint
|| !(report
|| new_report
)) {
184 error("'option' without a matching 'ok/ng' directive");
190 hint
->report
= xcalloc(1, sizeof(struct ref_push_report
));
191 report
= hint
->report
;
193 report
= hint
->report
;
195 report
= report
->next
;
196 report
->next
= xcalloc(1, sizeof(struct ref_push_report
));
197 report
= report
->next
;
202 p
= strchr(key
, ' ');
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;
221 if (strcmp(head
, "ok") && strcmp(head
, "ng")) {
222 error("invalid ref status from remote: %s", head
);
227 p
= strchr(refname
, ' ');
230 /* first try searching at our hint, falling back to all refs */
232 hint
= find_ref_by_name(hint
, refname
);
234 hint
= find_ref_by_name(refs
, refname
);
236 warning("remote reported status on unknown ref: %s",
240 if (hint
->status
!= REF_STATUS_EXPECTING_REPORT
&&
241 hint
->status
!= REF_STATUS_OK
&&
242 hint
->status
!= REF_STATUS_REMOTE_REJECT
) {
243 warning("remote reported status on unexpected ref: %s",
247 if (!strcmp(head
, "ng")) {
248 hint
->status
= REF_STATUS_REMOTE_REJECT
;
250 hint
->remote_status
= xstrdup(p
);
252 hint
->remote_status
= "failed";
254 hint
->status
= REF_STATUS_OK
;
255 hint
->remote_status
= xstrdup_or_null(p
);
262 static int sideband_demux(int in
, int out
, void *data
)
265 if (async_with_fork())
267 ret
= recv_sideband("send-pack", fd
[0], out
);
272 static int advertise_shallow_grafts_cb(const struct commit_graft
*graft
, void *cb
)
274 struct strbuf
*sb
= cb
;
275 if (graft
->nr_parent
== -1)
276 packet_buf_write(sb
, "shallow %s\n", oid_to_hex(&graft
->oid
));
280 static void advertise_shallow_grafts_buf(struct strbuf
*sb
)
282 if (!is_repository_shallow(the_repository
))
284 for_each_commit_graft(advertise_shallow_grafts_cb
, sb
);
287 #define CHECK_REF_NO_PUSH -1
288 #define CHECK_REF_STATUS_REJECTED -2
289 #define CHECK_REF_UPTODATE -3
290 static int check_to_send_update(const struct ref
*ref
, const struct send_pack_args
*args
)
292 if (!ref
->peer_ref
&& !args
->send_mirror
)
293 return CHECK_REF_NO_PUSH
;
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
:
302 case REF_STATUS_REJECT_REMOTE_UPDATED
:
303 case REF_STATUS_REJECT_NODELETE
:
304 return CHECK_REF_STATUS_REJECTED
;
305 case REF_STATUS_UPTODATE
:
306 return CHECK_REF_UPTODATE
;
309 case REF_STATUS_EXPECTING_REPORT
:
310 /* already passed checks on the local side */
312 /* of course this is OK */
318 * the beginning of the next line, or the end of buffer.
320 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
321 * convert many similar uses found by "git grep -A4 memchr".
323 static const char *next_line(const char *line
, size_t len
)
325 const char *nl
= memchr(line
, '\n', len
);
327 return line
+ len
; /* incomplete line */
331 static int generate_push_cert(struct strbuf
*req_buf
,
332 const struct ref
*remote_refs
,
333 struct send_pack_args
*args
,
334 const char *cap_string
,
335 const char *push_cert_nonce
)
337 const struct ref
*ref
;
338 struct string_list_item
*item
;
339 char *signing_key
= xstrdup(get_signing_key());
341 struct strbuf cert
= STRBUF_INIT
;
344 strbuf_addstr(&cert
, "certificate version 0.1\n");
345 strbuf_addf(&cert
, "pusher %s ", signing_key
);
347 strbuf_addch(&cert
, '\n');
348 if (args
->url
&& *args
->url
) {
349 char *anon_url
= transport_anonymize_url(args
->url
);
350 strbuf_addf(&cert
, "pushee %s\n", anon_url
);
353 if (push_cert_nonce
[0])
354 strbuf_addf(&cert
, "nonce %s\n", push_cert_nonce
);
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
);
358 strbuf_addstr(&cert
, "\n");
360 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
361 if (check_to_send_update(ref
, args
) < 0)
364 strbuf_addf(&cert
, "%s %s %s\n",
365 oid_to_hex(&ref
->old_oid
),
366 oid_to_hex(&ref
->new_oid
),
372 if (sign_buffer(&cert
, &cert
, signing_key
))
373 die(_("failed to sign the push certificate"));
375 packet_buf_write(req_buf
, "push-cert%c%s", 0, cap_string
);
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
);
381 packet_buf_write(req_buf
, "push-cert-end\n");
385 strbuf_release(&cert
);
389 #define NONCE_LEN_LIMIT 256
391 static void reject_invalid_nonce(const char *nonce
, int len
)
395 if (NONCE_LEN_LIMIT
<= len
)
396 die("the receiving end asked to sign an invalid nonce <%.*s>",
399 for (i
= 0; i
< len
; i
++) {
400 int ch
= nonce
[i
] & 0xFF;
402 ch
== '-' || ch
== '.' ||
403 ch
== '/' || ch
== '+' ||
404 ch
== '=' || ch
== '_')
406 die("the receiving end asked to sign an invalid nonce <%.*s>",
411 int send_pack(struct send_pack_args
*args
,
412 int fd
[], struct child_process
*conn
,
413 struct ref
*remote_refs
,
414 struct oid_array
*extra_have
)
418 struct strbuf req_buf
= STRBUF_INIT
;
419 struct strbuf cap_buf
= STRBUF_INIT
;
421 int need_pack_data
= 0;
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;
428 int atomic_supported
= 0;
429 int use_push_options
= 0;
430 int push_options_supported
= 0;
431 int object_format_supported
= 0;
432 unsigned cmds_sent
= 0;
435 const char *push_cert_nonce
= NULL
;
436 struct packet_reader reader
;
438 /* Does the other end support the reporting? */
439 if (server_supports("report-status-v2"))
441 else if (server_supports("report-status"))
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"))
449 if (server_supports("quiet"))
451 if (server_supports("agent"))
453 if (server_supports("no-thin"))
454 args
->use_thin_pack
= 0;
455 if (server_supports("atomic"))
456 atomic_supported
= 1;
457 if (server_supports("push-options"))
458 push_options_supported
= 1;
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"));
463 if (args
->push_cert
!= SEND_PACK_PUSH_CERT_NEVER
) {
465 push_cert_nonce
= server_feature_value("push-cert", &len
);
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
) {
470 die(_("the receiving end does not support --signed push"));
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"
479 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
480 "Perhaps you should specify a branch.\n");
483 if (args
->atomic
&& !atomic_supported
)
484 die(_("the receiving end does not support --atomic push"));
486 use_atomic
= atomic_supported
&& args
->atomic
;
488 if (args
->push_options
&& !push_options_supported
)
489 die(_("the receiving end does not support push options"));
491 use_push_options
= push_options_supported
&& args
->push_options
;
493 if (status_report
== 1)
494 strbuf_addstr(&cap_buf
, " report-status");
495 else if (status_report
== 2)
496 strbuf_addstr(&cap_buf
, " report-status-v2");
498 strbuf_addstr(&cap_buf
, " side-band-64k");
499 if (quiet_supported
&& (args
->quiet
|| !args
->progress
))
500 strbuf_addstr(&cap_buf
, " quiet");
502 strbuf_addstr(&cap_buf
, " atomic");
503 if (use_push_options
)
504 strbuf_addstr(&cap_buf
, " push-options");
505 if (object_format_supported
)
506 strbuf_addf(&cap_buf
, " object-format=%s", the_hash_algo
->name
);
508 strbuf_addf(&cap_buf
, " agent=%s", git_user_agent_sanitized());
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???
515 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
516 if (ref
->deletion
&& !allow_deleting_refs
)
517 ref
->status
= REF_STATUS_REJECT_NODELETE
;
520 * Clear the status for each ref and see if we need to send
523 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
524 switch (check_to_send_update(ref
, args
)) {
525 case 0: /* no error */
527 case CHECK_REF_STATUS_REJECTED
:
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.
534 strbuf_release(&req_buf
);
535 strbuf_release(&cap_buf
);
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
);
539 return args
->porcelain
? 0 : -1;
541 /* else fallthrough */
548 if (args
->dry_run
|| !status_report
)
549 ref
->status
= REF_STATUS_OK
;
551 ref
->status
= REF_STATUS_EXPECTING_REPORT
;
555 advertise_shallow_grafts_buf(&req_buf
);
558 * Finally, tell the other end!
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
;
567 if (check_to_send_update(ref
, args
) < 0)
570 old_hex
= oid_to_hex(&ref
->old_oid
);
571 new_hex
= oid_to_hex(&ref
->new_oid
);
573 packet_buf_write(&req_buf
,
575 old_hex
, new_hex
, ref
->name
, 0,
579 packet_buf_write(&req_buf
, "%s %s %s",
580 old_hex
, new_hex
, ref
->name
);
584 if (use_push_options
) {
585 struct string_list_item
*item
;
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
);
592 if (args
->stateless_rpc
) {
593 if (!args
->dry_run
&& (cmds_sent
|| is_repository_shallow(the_repository
))) {
594 packet_buf_flush(&req_buf
);
595 send_sideband(out
, -1, req_buf
.buf
, req_buf
.len
, LARGE_PACKET_MAX
);
598 write_or_die(out
, req_buf
.buf
, req_buf
.len
);
601 strbuf_release(&req_buf
);
602 strbuf_release(&cap_buf
);
604 if (use_sideband
&& cmds_sent
) {
605 memset(&demux
, 0, sizeof(demux
));
606 demux
.proc
= sideband_demux
;
609 demux
.isolate_sigpipe
= 1;
610 if (start_async(&demux
))
611 die("send-pack: unable to fork off sideband demultiplexer");
615 packet_reader_init(&reader
, in
, NULL
, 0,
616 PACKET_READ_CHOMP_NEWLINE
|
617 PACKET_READ_DIE_ON_ERR_PACKET
);
619 if (need_pack_data
&& cmds_sent
) {
620 if (pack_objects(out
, remote_refs
, extra_have
, args
) < 0) {
621 if (args
->stateless_rpc
)
623 if (git_connection_is_socket(conn
))
624 shutdown(fd
[0], SHUT_WR
);
627 * Do not even bother with the return value; we know we
628 * are failing, and just want the error() side effects,
629 * as well as marking refs with their remote status (if
633 receive_status(&reader
, remote_refs
);
637 finish_async(&demux
);
642 if (!args
->stateless_rpc
)
643 /* Closed by pack_objects() via start_command() */
646 if (args
->stateless_rpc
&& cmds_sent
)
649 if (status_report
&& cmds_sent
)
650 ret
= receive_status(&reader
, remote_refs
);
653 if (args
->stateless_rpc
)
656 if (use_sideband
&& cmds_sent
) {
658 if (finish_async(&demux
)) {
659 error("error in sideband demultiplexer");
670 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
671 switch (ref
->status
) {
672 case REF_STATUS_NONE
:
673 case REF_STATUS_UPTODATE
: