6 #include "run-command.h"
10 #include "transport.h"
13 static int feed_object(const unsigned char *sha1
, int fd
, int negative
)
17 if (negative
&& !has_sha1_file(sha1
))
20 memcpy(buf
+ negative
, sha1_to_hex(sha1
), 40);
23 buf
[40 + negative
] = '\n';
24 return write_or_whine(fd
, buf
, 41 + negative
, "send-pack: send refs");
28 * Make a pack stream and spit it out into file descriptor fd
30 static int pack_objects(int fd
, struct ref
*refs
, struct extra_have_objects
*extra
, struct send_pack_args
*args
)
33 * The child becomes pack-objects --revs; we feed
34 * the revision parameters to it via its stdin and
35 * let its stdout go back to the other end.
37 const char *argv
[] = {
39 "--all-progress-implied",
48 struct child_process po
;
52 if (args
->use_thin_pack
)
54 if (args
->use_ofs_delta
)
55 argv
[i
++] = "--delta-base-offset";
56 if (args
->quiet
|| !args
->progress
)
59 argv
[i
++] = "--progress";
60 memset(&po
, 0, sizeof(po
));
63 po
.out
= args
->stateless_rpc
? -1 : fd
;
65 if (start_command(&po
))
66 die_errno("git pack-objects failed");
69 * We feed the pack-objects we just spawned with revision
70 * parameters by writing to the pipe.
72 for (i
= 0; i
< extra
->nr
; i
++)
73 if (!feed_object(extra
->array
[i
], po
.in
, 1))
77 if (!is_null_sha1(refs
->old_sha1
) &&
78 !feed_object(refs
->old_sha1
, po
.in
, 1))
80 if (!is_null_sha1(refs
->new_sha1
) &&
81 !feed_object(refs
->new_sha1
, po
.in
, 0))
88 if (args
->stateless_rpc
) {
89 char *buf
= xmalloc(LARGE_PACKET_MAX
);
91 ssize_t n
= xread(po
.out
, buf
, LARGE_PACKET_MAX
);
94 send_sideband(fd
, -1, buf
, n
, LARGE_PACKET_MAX
);
101 if (finish_command(&po
))
106 static int receive_status(int in
, struct ref
*refs
)
111 int len
= packet_read_line(in
, line
, sizeof(line
));
112 if (len
< 10 || memcmp(line
, "unpack ", 7))
113 return error("did not receive remote status");
114 if (memcmp(line
, "unpack ok\n", 10)) {
115 char *p
= line
+ strlen(line
) - 1;
118 error("unpack failed: %s", line
+ 7);
125 len
= packet_read_line(in
, line
, sizeof(line
));
129 (memcmp(line
, "ok ", 3) && memcmp(line
, "ng ", 3))) {
130 fprintf(stderr
, "protocol error: %s\n", line
);
135 line
[strlen(line
)-1] = '\0';
137 msg
= strchr(refname
, ' ');
141 /* first try searching at our hint, falling back to all refs */
143 hint
= find_ref_by_name(hint
, refname
);
145 hint
= find_ref_by_name(refs
, refname
);
147 warning("remote reported status on unknown ref: %s",
151 if (hint
->status
!= REF_STATUS_EXPECTING_REPORT
) {
152 warning("remote reported status on unexpected ref: %s",
157 if (line
[0] == 'o' && line
[1] == 'k')
158 hint
->status
= REF_STATUS_OK
;
160 hint
->status
= REF_STATUS_REMOTE_REJECT
;
164 hint
->remote_status
= xstrdup(msg
);
165 /* start our next search from the next ref */
171 static int sideband_demux(int in
, int out
, void *data
)
177 ret
= recv_sideband("send-pack", fd
[0], out
);
182 int send_pack(struct send_pack_args
*args
,
183 int fd
[], struct child_process
*conn
,
184 struct ref
*remote_refs
,
185 struct extra_have_objects
*extra_have
)
189 struct strbuf req_buf
= STRBUF_INIT
;
192 int allow_deleting_refs
= 0;
193 int status_report
= 0;
194 int use_sideband
= 0;
195 int quiet_supported
= 0;
196 int agent_supported
= 0;
197 unsigned cmds_sent
= 0;
201 /* Does the other end support the reporting? */
202 if (server_supports("report-status"))
204 if (server_supports("delete-refs"))
205 allow_deleting_refs
= 1;
206 if (server_supports("ofs-delta"))
207 args
->use_ofs_delta
= 1;
208 if (server_supports("side-band-64k"))
210 if (server_supports("quiet"))
212 if (server_supports("agent"))
216 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n"
217 "Perhaps you should specify a branch such as 'master'.\n");
222 * Finally, tell the other end!
225 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
226 if (!ref
->peer_ref
&& !args
->send_mirror
)
229 /* Check for statuses set by set_ref_status_for_push() */
230 switch (ref
->status
) {
231 case REF_STATUS_REJECT_NONFASTFORWARD
:
232 case REF_STATUS_REJECT_ALREADY_EXISTS
:
233 case REF_STATUS_UPTODATE
:
239 if (ref
->deletion
&& !allow_deleting_refs
) {
240 ref
->status
= REF_STATUS_REJECT_NODELETE
;
248 ref
->status
= REF_STATUS_OK
;
250 char *old_hex
= sha1_to_hex(ref
->old_sha1
);
251 char *new_hex
= sha1_to_hex(ref
->new_sha1
);
252 int quiet
= quiet_supported
&& (args
->quiet
|| !args
->progress
);
254 if (!cmds_sent
&& (status_report
|| use_sideband
||
255 quiet
|| agent_supported
)) {
256 packet_buf_write(&req_buf
,
257 "%s %s %s%c%s%s%s%s%s",
258 old_hex
, new_hex
, ref
->name
, 0,
259 status_report
? " report-status" : "",
260 use_sideband
? " side-band-64k" : "",
261 quiet
? " quiet" : "",
262 agent_supported
? " agent=" : "",
263 agent_supported
? git_user_agent_sanitized() : ""
267 packet_buf_write(&req_buf
, "%s %s %s",
268 old_hex
, new_hex
, ref
->name
);
269 ref
->status
= status_report
?
270 REF_STATUS_EXPECTING_REPORT
:
276 if (args
->stateless_rpc
) {
277 if (!args
->dry_run
&& cmds_sent
) {
278 packet_buf_flush(&req_buf
);
279 send_sideband(out
, -1, req_buf
.buf
, req_buf
.len
, LARGE_PACKET_MAX
);
282 safe_write(out
, req_buf
.buf
, req_buf
.len
);
285 strbuf_release(&req_buf
);
287 if (use_sideband
&& cmds_sent
) {
288 memset(&demux
, 0, sizeof(demux
));
289 demux
.proc
= sideband_demux
;
292 if (start_async(&demux
))
293 die("send-pack: unable to fork off sideband demultiplexer");
297 if (new_refs
&& cmds_sent
) {
298 if (pack_objects(out
, remote_refs
, extra_have
, args
) < 0) {
299 for (ref
= remote_refs
; ref
; ref
= ref
->next
)
300 ref
->status
= REF_STATUS_NONE
;
301 if (args
->stateless_rpc
)
303 if (git_connection_is_socket(conn
))
304 shutdown(fd
[0], SHUT_WR
);
306 finish_async(&demux
);
310 if (args
->stateless_rpc
&& cmds_sent
)
313 if (status_report
&& cmds_sent
)
314 ret
= receive_status(in
, remote_refs
);
317 if (args
->stateless_rpc
)
320 if (use_sideband
&& cmds_sent
) {
321 if (finish_async(&demux
)) {
322 error("error in sideband demultiplexer");
334 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
335 switch (ref
->status
) {
336 case REF_STATUS_NONE
:
337 case REF_STATUS_UPTODATE
: