10 static const char upload_pack_usage
[] = "git-upload-pack [--strict] [--timeout=nn] <dir>";
12 /* bits #0..7 in revision.h, #8..10 in commit.c */
13 #define THEY_HAVE (1u << 11)
14 #define OUR_REF (1u << 12)
15 #define WANTED (1u << 13)
16 #define COMMON_KNOWN (1u << 14)
17 #define REACHABLE (1u << 15)
19 static unsigned long oldest_have
;
21 static int multi_ack
, nr_our_refs
;
22 static int use_thin_pack
, use_ofs_delta
;
23 static struct object_array have_obj
;
24 static struct object_array want_obj
;
25 static unsigned int timeout
;
27 * otherwise maximum packet size (up to 65520 bytes).
29 static int use_sideband
;
31 static void reset_timeout(void)
36 static int strip(char *line
, int len
)
38 if (len
&& line
[len
-1] == '\n')
43 static ssize_t
send_client_data(int fd
, const char *data
, ssize_t sz
)
46 return send_sideband(1, fd
, data
, sz
, use_sideband
);
54 return safe_write(fd
, data
, sz
);
57 static void create_pack_file(void)
59 /* Pipes between rev-list to pack-objects, pack-objects to us
60 * and pack-objects error stream for progress bar.
62 int lp_pipe
[2], pu_pipe
[2], pe_pipe
[2];
63 pid_t pid_rev_list
, pid_pack_objects
;
64 int create_full_pack
= (nr_our_refs
== want_obj
.nr
&& !have_obj
.nr
);
65 char data
[8193], progress
[128];
66 char abort_msg
[] = "aborting due to possible repository "
67 "corruption on the remote side.";
70 if (pipe(lp_pipe
) < 0)
71 die("git-upload-pack: unable to create pipe");
72 pid_rev_list
= fork();
74 die("git-upload-pack: unable to fork git-rev-list");
83 if (create_full_pack
) {
85 use_thin_pack
= 0; /* no point doing it */
88 args
= have_obj
.nr
+ want_obj
.nr
+ 5;
89 p
= xmalloc(args
* sizeof(char *));
90 argv
= (const char **) p
;
91 buf
= xmalloc(args
* 45);
98 *p
++ = use_thin_pack
? "--objects-edge" : "--objects";
102 for (i
= 0; i
< want_obj
.nr
; i
++) {
103 struct object
*o
= want_obj
.objects
[i
].item
;
105 memcpy(buf
, sha1_to_hex(o
->sha1
), 41);
109 if (!create_full_pack
)
110 for (i
= 0; i
< have_obj
.nr
; i
++) {
111 struct object
*o
= have_obj
.objects
[i
].item
;
114 memcpy(buf
, sha1_to_hex(o
->sha1
), 41);
119 die("git-upload-pack: unable to exec git-rev-list");
122 if (pipe(pu_pipe
) < 0)
123 die("git-upload-pack: unable to create pipe");
124 if (pipe(pe_pipe
) < 0)
125 die("git-upload-pack: unable to create pipe");
126 pid_pack_objects
= fork();
127 if (pid_pack_objects
< 0) {
128 /* daemon sets things up to ignore TERM */
129 kill(pid_rev_list
, SIGKILL
);
130 die("git-upload-pack: unable to fork git-pack-objects");
132 if (!pid_pack_objects
) {
143 execl_git_cmd("pack-objects", "--stdout", "--progress",
144 use_ofs_delta
? "--delta-base-offset" : NULL
,
146 kill(pid_rev_list
, SIGKILL
);
147 die("git-upload-pack: unable to exec git-pack-objects");
153 /* We read from pe_pipe[0] to capture stderr output for
154 * progress bar, and pu_pipe[0] to capture the pack data.
161 struct pollfd pfd
[2];
165 int pe
, pu
, pollsize
;
172 if (0 <= pu_pipe
[0]) {
173 pfd
[pollsize
].fd
= pu_pipe
[0];
174 pfd
[pollsize
].events
= POLLIN
;
178 if (0 <= pe_pipe
[0]) {
179 pfd
[pollsize
].fd
= pe_pipe
[0];
180 pfd
[pollsize
].events
= POLLIN
;
186 if (poll(pfd
, pollsize
, -1) < 0) {
187 if (errno
!= EINTR
) {
188 error("poll failed, resuming: %s",
194 if (0 <= pu
&& (pfd
[pu
].revents
& (POLLIN
|POLLHUP
))) {
195 /* Data ready; we keep the last byte
196 * to ourselves in case we detect
197 * broken rev-list, so that we can
198 * leave the stream corrupted. This
199 * is unfortunate -- unpack-objects
200 * would happily accept a valid pack
201 * data with trailing garbage, so
202 * appending garbage after we pass all
203 * the pack data is not good enough to
204 * signal breakage to downstream.
212 sz
= read(pu_pipe
[0], cp
,
213 sizeof(data
) - outsz
);
224 buffered
= data
[sz
-1] & 0xFF;
229 sz
= send_client_data(1, data
, sz
);
233 if (0 <= pe
&& (pfd
[pe
].revents
& (POLLIN
|POLLHUP
))) {
234 /* Status ready; we ship that in the side-band
235 * or dump to the standard error.
237 sz
= read(pe_pipe
[0], progress
,
240 send_client_data(2, progress
, sz
);
250 /* See if the children are still there */
251 if (pid_rev_list
|| pid_pack_objects
) {
252 pid
= waitpid(-1, &status
, WNOHANG
);
255 who
= ((pid
== pid_rev_list
) ? "git-rev-list" :
256 (pid
== pid_pack_objects
) ? "git-pack-objects" :
260 error("git-upload-pack: %s",
264 error("git-upload-pack: we weren't "
265 "waiting for %d", pid
);
268 if (!WIFEXITED(status
) || WEXITSTATUS(status
) > 0) {
269 error("git-upload-pack: %s died with error.",
273 if (pid
== pid_rev_list
)
275 if (pid
== pid_pack_objects
)
276 pid_pack_objects
= 0;
277 if (pid_rev_list
|| pid_pack_objects
)
281 /* both died happily */
288 sz
= send_client_data(1, data
, 1);
291 fprintf(stderr
, "flushed.\n");
298 if (pid_pack_objects
)
299 kill(pid_pack_objects
, SIGKILL
);
301 kill(pid_rev_list
, SIGKILL
);
302 send_client_data(3, abort_msg
, sizeof(abort_msg
));
303 die("git-upload-pack: %s", abort_msg
);
306 static int got_sha1(char *hex
, unsigned char *sha1
)
309 int we_knew_they_have
= 0;
311 if (get_sha1_hex(hex
, sha1
))
312 die("git-upload-pack: expected SHA1 object, got '%s'", hex
);
313 if (!has_sha1_file(sha1
))
316 o
= lookup_object(sha1
);
317 if (!(o
&& o
->parsed
))
318 o
= parse_object(sha1
);
320 die("oops (%s)", sha1_to_hex(sha1
));
321 if (o
->type
== OBJ_COMMIT
) {
322 struct commit_list
*parents
;
323 struct commit
*commit
= (struct commit
*)o
;
324 if (o
->flags
& THEY_HAVE
)
325 we_knew_they_have
= 1;
327 o
->flags
|= THEY_HAVE
;
328 if (!oldest_have
|| (commit
->date
< oldest_have
))
329 oldest_have
= commit
->date
;
330 for (parents
= commit
->parents
;
332 parents
= parents
->next
)
333 parents
->item
->object
.flags
|= THEY_HAVE
;
335 if (!we_knew_they_have
) {
336 add_object_array(o
, NULL
, &have_obj
);
342 static int reachable(struct commit
*want
)
344 struct commit_list
*work
= NULL
;
346 insert_by_date(want
, &work
);
348 struct commit_list
*list
= work
->next
;
349 struct commit
*commit
= work
->item
;
353 if (commit
->object
.flags
& THEY_HAVE
) {
354 want
->object
.flags
|= COMMON_KNOWN
;
357 if (!commit
->object
.parsed
)
358 parse_object(commit
->object
.sha1
);
359 if (commit
->object
.flags
& REACHABLE
)
361 commit
->object
.flags
|= REACHABLE
;
362 if (commit
->date
< oldest_have
)
364 for (list
= commit
->parents
; list
; list
= list
->next
) {
365 struct commit
*parent
= list
->item
;
366 if (!(parent
->object
.flags
& REACHABLE
))
367 insert_by_date(parent
, &work
);
370 want
->object
.flags
|= REACHABLE
;
371 clear_commit_marks(want
, REACHABLE
);
372 free_commit_list(work
);
373 return (want
->object
.flags
& COMMON_KNOWN
);
376 static int ok_to_give_up(void)
383 for (i
= 0; i
< want_obj
.nr
; i
++) {
384 struct object
*want
= want_obj
.objects
[i
].item
;
386 if (want
->flags
& COMMON_KNOWN
)
388 want
= deref_tag(want
, "a want line", 0);
389 if (!want
|| want
->type
!= OBJ_COMMIT
) {
390 /* no way to tell if this is reachable by
391 * looking at the ancestry chain alone, so
392 * leave a note to ourselves not to worry about
393 * this object anymore.
395 want_obj
.objects
[i
].item
->flags
|= COMMON_KNOWN
;
398 if (!reachable((struct commit
*)want
))
404 static int get_common_commits(void)
406 static char line
[1000];
407 unsigned char sha1
[20];
408 char hex
[41], last_hex
[41];
411 track_object_refs
= 0;
412 save_commit_buffer
= 0;
415 len
= packet_read_line(0, line
, sizeof(line
));
419 if (have_obj
.nr
== 0 || multi_ack
)
420 packet_write(1, "NAK\n");
423 len
= strip(line
, len
);
424 if (!strncmp(line
, "have ", 5)) {
425 switch (got_sha1(line
+5, sha1
)) {
426 case -1: /* they have what we do not */
427 if (multi_ack
&& ok_to_give_up())
428 packet_write(1, "ACK %s continue\n",
432 memcpy(hex
, sha1_to_hex(sha1
), 41);
434 const char *msg
= "ACK %s continue\n";
435 packet_write(1, msg
, hex
);
436 memcpy(last_hex
, hex
, 41);
438 else if (have_obj
.nr
== 1)
439 packet_write(1, "ACK %s\n", hex
);
444 if (!strcmp(line
, "done")) {
445 if (have_obj
.nr
> 0) {
447 packet_write(1, "ACK %s\n", last_hex
);
450 packet_write(1, "NAK\n");
453 die("git-upload-pack: expected SHA1 list, got '%s'", line
);
457 static void receive_needs(void)
459 static char line
[1000];
464 unsigned char sha1_buf
[20];
465 len
= packet_read_line(0, line
, sizeof(line
));
470 if (strncmp("want ", line
, 5) ||
471 get_sha1_hex(line
+5, sha1_buf
))
472 die("git-upload-pack: protocol error, "
473 "expected to get sha, not '%s'", line
);
474 if (strstr(line
+45, "multi_ack"))
476 if (strstr(line
+45, "thin-pack"))
478 if (strstr(line
+45, "ofs-delta"))
480 if (strstr(line
+45, "side-band-64k"))
481 use_sideband
= LARGE_PACKET_MAX
;
482 else if (strstr(line
+45, "side-band"))
483 use_sideband
= DEFAULT_PACKET_MAX
;
485 /* We have sent all our refs already, and the other end
486 * should have chosen out of them; otherwise they are
487 * asking for nonsense.
489 * Hmph. We may later want to allow "want" line that
490 * asks for something like "master~10" (symbolic)...
491 * would it make sense? I don't know.
493 o
= lookup_object(sha1_buf
);
494 if (!o
|| !(o
->flags
& OUR_REF
))
495 die("git-upload-pack: not our ref %s", line
+5);
496 if (!(o
->flags
& WANTED
)) {
498 add_object_array(o
, NULL
, &want_obj
);
503 static int send_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
505 static const char *capabilities
= "multi_ack thin-pack side-band side-band-64k ofs-delta";
506 struct object
*o
= parse_object(sha1
);
509 die("git-upload-pack: cannot find object %s:", sha1_to_hex(sha1
));
512 packet_write(1, "%s %s%c%s\n", sha1_to_hex(sha1
), refname
,
515 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), refname
);
517 if (!(o
->flags
& OUR_REF
)) {
521 if (o
->type
== OBJ_TAG
) {
522 o
= deref_tag(o
, refname
, 0);
523 packet_write(1, "%s %s^{}\n", sha1_to_hex(o
->sha1
), refname
);
528 static void upload_pack(void)
531 head_ref(send_ref
, NULL
);
532 for_each_ref(send_ref
, NULL
);
536 get_common_commits();
541 int main(int argc
, char **argv
)
547 for (i
= 1; i
< argc
; i
++) {
552 if (!strcmp(arg
, "--strict")) {
556 if (!strncmp(arg
, "--timeout=", 10)) {
557 timeout
= atoi(arg
+10);
560 if (!strcmp(arg
, "--")) {
567 usage(upload_pack_usage
);
570 if (!enter_repo(dir
, strict
))
571 die("'%s': unable to chdir or not a git archive", dir
);