6 #include "run-command.h"
11 #include "transport.h"
13 #include "sha1-array.h"
15 static int feed_object(const unsigned char *sha1, int fd, int negative)
19 if (negative && !has_sha1_file(sha1))
22 memcpy(buf + negative, sha1_to_hex(sha1), 40);
25 buf[40 + negative] = '\n';
26 return write_or_whine(fd, buf, 41 + negative, "send-pack: send refs");
30 * Make a pack stream and spit it out into file descriptor fd
32 static int pack_objects(int fd, struct ref *refs, struct sha1_array *extra, struct send_pack_args *args)
35 * The child becomes pack-objects --revs; we feed
36 * the revision parameters to it via its stdin and
37 * let its stdout go back to the other end.
39 const char *argv[] = {
41 "--all-progress-implied",
50 struct child_process po;
54 if (args->use_thin_pack)
56 if (args->use_ofs_delta)
57 argv[i++] = "--delta-base-offset";
58 if (args->quiet || !args->progress)
61 argv[i++] = "--progress";
62 memset(&po, 0, sizeof(po));
65 po.out = args->stateless_rpc ? -1 : fd;
67 if (start_command(&po))
68 die_errno("git pack-objects failed");
71 * We feed the pack-objects we just spawned with revision
72 * parameters by writing to the pipe.
74 for (i = 0; i < extra->nr; i++)
75 if (!feed_object(extra->sha1[i], po.in, 1))
79 if (!is_null_sha1(refs->old_sha1) &&
80 !feed_object(refs->old_sha1, po.in, 1))
82 if (!is_null_sha1(refs->new_sha1) &&
83 !feed_object(refs->new_sha1, po.in, 0))
90 if (args->stateless_rpc) {
91 char *buf = xmalloc(LARGE_PACKET_MAX);
93 ssize_t n = xread(po.out, buf, LARGE_PACKET_MAX);
96 send_sideband(fd, -1, buf, n, LARGE_PACKET_MAX);
103 if (finish_command(&po))
108 static int receive_status(int in, struct ref *refs)
112 char *line = packet_read_line(in, NULL);
113 if (prefixcmp(line, "unpack "))
114 return error("did not receive remote status");
115 if (strcmp(line, "unpack ok")) {
116 error("unpack failed: %s", line + 7);
123 line = packet_read_line(in, NULL);
126 if (prefixcmp(line, "ok ") && prefixcmp(line, "ng ")) {
127 error("invalid ref status from remote: %s", line);
133 msg = strchr(refname, ' ');
137 /* first try searching at our hint, falling back to all refs */
139 hint = find_ref_by_name(hint, refname);
141 hint = find_ref_by_name(refs, refname);
143 warning("remote reported status on unknown ref: %s",
147 if (hint->status != REF_STATUS_EXPECTING_REPORT) {
148 warning("remote reported status on unexpected ref: %s",
153 if (line[0] == 'o' && line[1] == 'k')
154 hint->status = REF_STATUS_OK;
156 hint->status = REF_STATUS_REMOTE_REJECT;
160 hint->remote_status = xstrdup(msg);
161 /* start our next search from the next ref */
167 static int sideband_demux(int in, int out, void *data)
173 ret = recv_sideband("send-pack", fd[0], out);
178 int send_pack(struct send_pack_args *args,
179 int fd[], struct child_process *conn,
180 struct ref *remote_refs,
181 struct sha1_array *extra_have)
185 struct strbuf req_buf = STRBUF_INIT;
188 int allow_deleting_refs = 0;
189 int status_report = 0;
190 int use_sideband = 0;
191 int quiet_supported = 0;
192 int agent_supported = 0;
193 unsigned cmds_sent = 0;
197 /* Does the other end support the reporting? */
198 if (server_supports("report-status"))
200 if (server_supports("delete-refs"))
201 allow_deleting_refs = 1;
202 if (server_supports("ofs-delta"))
203 args->use_ofs_delta = 1;
204 if (server_supports("side-band-64k"))
206 if (server_supports("quiet"))
208 if (server_supports("agent"))
212 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
213 "Perhaps you should specify a branch such as 'master'.\n");
218 * Finally, tell the other end!
221 for (ref = remote_refs; ref; ref = ref->next) {
222 if (!ref->peer_ref && !args->send_mirror)
225 /* Check for statuses set by set_ref_status_for_push() */
226 switch (ref->status) {
227 case REF_STATUS_REJECT_NONFASTFORWARD:
228 case REF_STATUS_REJECT_ALREADY_EXISTS:
229 case REF_STATUS_REJECT_FETCH_FIRST:
230 case REF_STATUS_REJECT_NEEDS_FORCE:
231 case REF_STATUS_REJECT_STALE:
232 case REF_STATUS_UPTODATE:
238 if (ref->deletion && !allow_deleting_refs) {
239 ref->status = REF_STATUS_REJECT_NODELETE;
247 ref->status = REF_STATUS_OK;
249 char *old_hex = sha1_to_hex(ref->old_sha1);
250 char *new_hex = sha1_to_hex(ref->new_sha1);
251 int quiet = quiet_supported && (args->quiet || !args->progress);
253 if (!cmds_sent && (status_report || use_sideband ||
254 quiet || agent_supported)) {
255 packet_buf_write(&req_buf,
256 "%s %s %s%c%s%s%s%s%s",
257 old_hex, new_hex, ref->name, 0,
258 status_report ? " report-status" : "",
259 use_sideband ? " side-band-64k" : "",
260 quiet ? " quiet" : "",
261 agent_supported ? " agent=" : "",
262 agent_supported ? git_user_agent_sanitized() : ""
266 packet_buf_write(&req_buf, "%s %s %s",
267 old_hex, new_hex, ref->name);
268 ref->status = status_report ?
269 REF_STATUS_EXPECTING_REPORT :
275 if (args->stateless_rpc) {
276 if (!args->dry_run && cmds_sent) {
277 packet_buf_flush(&req_buf);
278 send_sideband(out, -1, req_buf.buf, req_buf.len, LARGE_PACKET_MAX);
281 write_or_die(out, req_buf.buf, req_buf.len);
284 strbuf_release(&req_buf);
286 if (use_sideband && cmds_sent) {
287 memset(&demux, 0, sizeof(demux));
288 demux.proc = sideband_demux;
291 if (start_async(&demux))
292 die("send-pack: unable to fork off sideband demultiplexer");
296 if (new_refs && cmds_sent) {
297 if (pack_objects(out, remote_refs, extra_have, args) < 0) {
298 for (ref = remote_refs; ref; ref = ref->next)
299 ref->status = REF_STATUS_NONE;
300 if (args->stateless_rpc)
302 if (git_connection_is_socket(conn))
303 shutdown(fd[0], SHUT_WR);
305 finish_async(&demux);
309 if (!args->stateless_rpc)
310 /* Closed by pack_objects() via start_command() */
313 if (args->stateless_rpc && cmds_sent)
316 if (status_report && cmds_sent)
317 ret = receive_status(in, remote_refs);
320 if (args->stateless_rpc)
323 if (use_sideband && cmds_sent) {
324 if (finish_async(&demux)) {
325 error("error in sideband demultiplexer");
337 for (ref = remote_refs; ref; ref = ref->next) {
338 switch (ref->status) {
339 case REF_STATUS_NONE:
340 case REF_STATUS_UPTODATE: