6 #include "run-command.h"
11 #include "transport.h"
13 #include "sha1-array.h"
14 #include "gpg-interface.h"
16 static int feed_object(const unsigned char *sha1, int fd, int negative)
20 if (negative && !has_sha1_file(sha1))
23 memcpy(buf + negative, sha1_to_hex(sha1), 40);
26 buf[40 + negative] = '\n';
27 return write_or_whine(fd, buf, 41 + negative, "send-pack: send refs");
31 * Make a pack stream and spit it out into file descriptor fd
33 static int pack_objects(int fd, struct ref *refs, struct sha1_array *extra, struct send_pack_args *args)
36 * The child becomes pack-objects --revs; we feed
37 * the revision parameters to it via its stdin and
38 * let its stdout go back to the other end.
40 const char *argv[] = {
42 "--all-progress-implied",
52 struct child_process po = CHILD_PROCESS_INIT;
56 if (args->use_thin_pack)
58 if (args->use_ofs_delta)
59 argv[i++] = "--delta-base-offset";
60 if (args->quiet || !args->progress)
63 argv[i++] = "--progress";
64 if (is_repository_shallow())
65 argv[i++] = "--shallow";
68 po.out = args->stateless_rpc ? -1 : fd;
70 if (start_command(&po))
71 die_errno("git pack-objects failed");
74 * We feed the pack-objects we just spawned with revision
75 * parameters by writing to the pipe.
77 for (i = 0; i < extra->nr; i++)
78 if (!feed_object(extra->sha1[i], po.in, 1))
82 if (!is_null_sha1(refs->old_sha1) &&
83 !feed_object(refs->old_sha1, po.in, 1))
85 if (!is_null_sha1(refs->new_sha1) &&
86 !feed_object(refs->new_sha1, po.in, 0))
93 if (args->stateless_rpc) {
94 char *buf = xmalloc(LARGE_PACKET_MAX);
96 ssize_t n = xread(po.out, buf, LARGE_PACKET_MAX);
99 send_sideband(fd, -1, buf, n, LARGE_PACKET_MAX);
106 if (finish_command(&po))
111 static int receive_status(int in, struct ref *refs)
115 char *line = packet_read_line(in, NULL);
116 if (!starts_with(line, "unpack "))
117 return error("did not receive remote status");
118 if (strcmp(line, "unpack ok")) {
119 error("unpack failed: %s", line + 7);
126 line = packet_read_line(in, NULL);
129 if (!starts_with(line, "ok ") && !starts_with(line, "ng ")) {
130 error("invalid ref status from remote: %s", line);
136 msg = strchr(refname, ' ');
140 /* first try searching at our hint, falling back to all refs */
142 hint = find_ref_by_name(hint, refname);
144 hint = find_ref_by_name(refs, refname);
146 warning("remote reported status on unknown ref: %s",
150 if (hint->status != REF_STATUS_EXPECTING_REPORT) {
151 warning("remote reported status on unexpected ref: %s",
156 if (line[0] == 'o' && line[1] == 'k')
157 hint->status = REF_STATUS_OK;
159 hint->status = REF_STATUS_REMOTE_REJECT;
163 hint->remote_status = xstrdup(msg);
164 /* start our next search from the next ref */
170 static int sideband_demux(int in, int out, void *data)
176 ret = recv_sideband("send-pack", fd[0], out);
181 static int advertise_shallow_grafts_cb(const struct commit_graft *graft, void *cb)
183 struct strbuf *sb = cb;
184 if (graft->nr_parent == -1)
185 packet_buf_write(sb, "shallow %s\n", oid_to_hex(&graft->oid));
189 static void advertise_shallow_grafts_buf(struct strbuf *sb)
191 if (!is_repository_shallow())
193 for_each_commit_graft(advertise_shallow_grafts_cb, sb);
196 #define CHECK_REF_NO_PUSH -1
197 #define CHECK_REF_STATUS_REJECTED -2
198 #define CHECK_REF_UPTODATE -3
199 static int check_to_send_update(const struct ref *ref, const struct send_pack_args *args)
201 if (!ref->peer_ref && !args->send_mirror)
202 return CHECK_REF_NO_PUSH;
204 /* Check for statuses set by set_ref_status_for_push() */
205 switch (ref->status) {
206 case REF_STATUS_REJECT_NONFASTFORWARD:
207 case REF_STATUS_REJECT_ALREADY_EXISTS:
208 case REF_STATUS_REJECT_FETCH_FIRST:
209 case REF_STATUS_REJECT_NEEDS_FORCE:
210 case REF_STATUS_REJECT_STALE:
211 case REF_STATUS_REJECT_NODELETE:
212 return CHECK_REF_STATUS_REJECTED;
213 case REF_STATUS_UPTODATE:
214 return CHECK_REF_UPTODATE;
221 * the beginning of the next line, or the end of buffer.
223 * NEEDSWORK: perhaps move this to git-compat-util.h or somewhere and
224 * convert many similar uses found by "git grep -A4 memchr".
226 static const char *next_line(const char *line, size_t len)
228 const char *nl = memchr(line, '\n', len);
230 return line + len; /* incomplete line */
234 static int generate_push_cert(struct strbuf *req_buf,
235 const struct ref *remote_refs,
236 struct send_pack_args *args,
237 const char *cap_string,
238 const char *push_cert_nonce)
240 const struct ref *ref;
241 char *signing_key = xstrdup(get_signing_key());
243 struct strbuf cert = STRBUF_INIT;
246 strbuf_addf(&cert, "certificate version 0.1\n");
247 strbuf_addf(&cert, "pusher %s ", signing_key);
249 strbuf_addch(&cert, '\n');
250 if (args->url && *args->url) {
251 char *anon_url = transport_anonymize_url(args->url);
252 strbuf_addf(&cert, "pushee %s\n", anon_url);
255 if (push_cert_nonce[0])
256 strbuf_addf(&cert, "nonce %s\n", push_cert_nonce);
257 strbuf_addstr(&cert, "\n");
259 for (ref = remote_refs; ref; ref = ref->next) {
260 if (check_to_send_update(ref, args) < 0)
263 strbuf_addf(&cert, "%s %s %s\n",
264 sha1_to_hex(ref->old_sha1),
265 sha1_to_hex(ref->new_sha1),
271 if (sign_buffer(&cert, &cert, signing_key))
272 die(_("failed to sign the push certificate"));
274 packet_buf_write(req_buf, "push-cert%c%s", 0, cap_string);
275 for (cp = cert.buf; cp < cert.buf + cert.len; cp = np) {
276 np = next_line(cp, cert.buf + cert.len - cp);
277 packet_buf_write(req_buf,
278 "%.*s", (int)(np - cp), cp);
280 packet_buf_write(req_buf, "push-cert-end\n");
284 strbuf_release(&cert);
289 static int atomic_push_failure(struct send_pack_args *args,
290 struct ref *remote_refs,
291 struct ref *failing_ref)
294 /* Mark other refs as failed */
295 for (ref = remote_refs; ref; ref = ref->next) {
296 if (!ref->peer_ref && !args->send_mirror)
299 switch (ref->status) {
300 case REF_STATUS_EXPECTING_REPORT:
301 ref->status = REF_STATUS_ATOMIC_PUSH_FAILED;
304 break; /* do nothing */
307 return error("atomic push failed for ref %s. status: %d\n",
308 failing_ref->name, failing_ref->status);
311 #define NONCE_LEN_LIMIT 256
313 static void reject_invalid_nonce(const char *nonce, int len)
317 if (NONCE_LEN_LIMIT <= len)
318 die("the receiving end asked to sign an invalid nonce <%.*s>",
321 for (i = 0; i < len; i++) {
322 int ch = nonce[i] & 0xFF;
324 ch == '-' || ch == '.' ||
325 ch == '/' || ch == '+' ||
326 ch == '=' || ch == '_')
328 die("the receiving end asked to sign an invalid nonce <%.*s>",
333 int send_pack(struct send_pack_args *args,
334 int fd[], struct child_process *conn,
335 struct ref *remote_refs,
336 struct sha1_array *extra_have)
340 struct strbuf req_buf = STRBUF_INIT;
341 struct strbuf cap_buf = STRBUF_INIT;
343 int need_pack_data = 0;
344 int allow_deleting_refs = 0;
345 int status_report = 0;
346 int use_sideband = 0;
347 int quiet_supported = 0;
348 int agent_supported = 0;
350 int atomic_supported = 0;
351 unsigned cmds_sent = 0;
354 const char *push_cert_nonce = NULL;
356 /* Does the other end support the reporting? */
357 if (server_supports("report-status"))
359 if (server_supports("delete-refs"))
360 allow_deleting_refs = 1;
361 if (server_supports("ofs-delta"))
362 args->use_ofs_delta = 1;
363 if (server_supports("side-band-64k"))
365 if (server_supports("quiet"))
367 if (server_supports("agent"))
369 if (server_supports("no-thin"))
370 args->use_thin_pack = 0;
371 if (server_supports("atomic"))
372 atomic_supported = 1;
373 if (args->push_cert) {
376 push_cert_nonce = server_feature_value("push-cert", &len);
377 if (!push_cert_nonce)
378 die(_("the receiving end does not support --signed push"));
379 reject_invalid_nonce(push_cert_nonce, len);
380 push_cert_nonce = xmemdupz(push_cert_nonce, len);
384 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
385 "Perhaps you should specify a branch such as 'master'.\n");
388 if (args->atomic && !atomic_supported)
389 die(_("the receiving end does not support --atomic push"));
391 use_atomic = atomic_supported && args->atomic;
394 strbuf_addstr(&cap_buf, " report-status");
396 strbuf_addstr(&cap_buf, " side-band-64k");
397 if (quiet_supported && (args->quiet || !args->progress))
398 strbuf_addstr(&cap_buf, " quiet");
400 strbuf_addstr(&cap_buf, " atomic");
402 strbuf_addf(&cap_buf, " agent=%s", git_user_agent_sanitized());
405 * NEEDSWORK: why does delete-refs have to be so specific to
406 * send-pack machinery that set_ref_status_for_push() cannot
407 * set this bit for us???
409 for (ref = remote_refs; ref; ref = ref->next)
410 if (ref->deletion && !allow_deleting_refs)
411 ref->status = REF_STATUS_REJECT_NODELETE;
414 advertise_shallow_grafts_buf(&req_buf);
416 if (!args->dry_run && args->push_cert)
417 cmds_sent = generate_push_cert(&req_buf, remote_refs, args,
418 cap_buf.buf, push_cert_nonce);
421 * Clear the status for each ref and see if we need to send
424 for (ref = remote_refs; ref; ref = ref->next) {
425 switch (check_to_send_update(ref, args)) {
426 case 0: /* no error */
428 case CHECK_REF_STATUS_REJECTED:
430 * When we know the server would reject a ref update if
431 * we were to send it and we're trying to send the refs
432 * atomically, abort the whole operation.
435 return atomic_push_failure(args, remote_refs, ref);
436 /* Fallthrough for non atomic case. */
443 if (args->dry_run || !status_report)
444 ref->status = REF_STATUS_OK;
446 ref->status = REF_STATUS_EXPECTING_REPORT;
450 * Finally, tell the other end!
452 for (ref = remote_refs; ref; ref = ref->next) {
453 char *old_hex, *new_hex;
455 if (args->dry_run || args->push_cert)
458 if (check_to_send_update(ref, args) < 0)
461 old_hex = sha1_to_hex(ref->old_sha1);
462 new_hex = sha1_to_hex(ref->new_sha1);
464 packet_buf_write(&req_buf,
466 old_hex, new_hex, ref->name, 0,
470 packet_buf_write(&req_buf, "%s %s %s",
471 old_hex, new_hex, ref->name);
475 if (args->stateless_rpc) {
476 if (!args->dry_run && (cmds_sent || is_repository_shallow())) {
477 packet_buf_flush(&req_buf);
478 send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX);
481 write_or_die(out, req_buf.buf, req_buf.len);
484 strbuf_release(&req_buf);
485 strbuf_release(&cap_buf);
487 if (use_sideband && cmds_sent) {
488 memset(&demux, 0, sizeof(demux));
489 demux.proc = sideband_demux;
492 if (start_async(&demux))
493 die("send-pack: unable to fork off sideband demultiplexer");
497 if (need_pack_data && cmds_sent) {
498 if (pack_objects(out, remote_refs, extra_have, args) < 0) {
499 for (ref = remote_refs; ref; ref = ref->next)
500 ref->status = REF_STATUS_NONE;
501 if (args->stateless_rpc)
503 if (git_connection_is_socket(conn))
504 shutdown(fd[0], SHUT_WR);
506 finish_async(&demux);
510 if (!args->stateless_rpc)
511 /* Closed by pack_objects() via start_command() */
514 if (args->stateless_rpc && cmds_sent)
517 if (status_report && cmds_sent)
518 ret = receive_status(in, remote_refs);
521 if (args->stateless_rpc)
524 if (use_sideband && cmds_sent) {
525 if (finish_async(&demux)) {
526 error("error in sideband demultiplexer");
538 for (ref = remote_refs; ref; ref = ref->next) {
539 switch (ref->status) {
540 case REF_STATUS_NONE:
541 case REF_STATUS_UPTODATE: