11 #include "list-objects.h"
12 #include "run-command.h"
14 static const char upload_pack_usage
[] = "git-upload-pack [--strict] [--timeout=nn] <dir>";
16 /* bits #0..7 in revision.h, #8..10 in commit.c */
17 #define THEY_HAVE (1u << 11)
18 #define OUR_REF (1u << 12)
19 #define WANTED (1u << 13)
20 #define COMMON_KNOWN (1u << 14)
21 #define REACHABLE (1u << 15)
23 #define SHALLOW (1u << 16)
24 #define NOT_SHALLOW (1u << 17)
25 #define CLIENT_SHALLOW (1u << 18)
27 static unsigned long oldest_have
;
29 static int multi_ack
, nr_our_refs
;
30 static int use_thin_pack
, use_ofs_delta
, no_progress
;
31 static struct object_array have_obj
;
32 static struct object_array want_obj
;
33 static unsigned int timeout
;
35 * otherwise maximum packet size (up to 65520 bytes).
37 static int use_sideband
;
39 static void reset_timeout(void)
44 static int strip(char *line
, int len
)
46 if (len
&& line
[len
-1] == '\n')
51 static ssize_t
send_client_data(int fd
, const char *data
, ssize_t sz
)
54 return send_sideband(1, fd
, data
, sz
, use_sideband
);
59 /* XXX: are we happy to lose stuff here? */
63 return safe_write(fd
, data
, sz
);
66 static FILE *pack_pipe
= NULL
;
67 static void show_commit(struct commit
*commit
)
69 if (commit
->object
.flags
& BOUNDARY
)
70 fputc('-', pack_pipe
);
71 if (fputs(sha1_to_hex(commit
->object
.sha1
), pack_pipe
) < 0)
72 die("broken output pipe");
73 fputc('\n', pack_pipe
);
76 commit
->buffer
= NULL
;
79 static void show_object(struct object_array_entry
*p
)
81 /* An object with name "foo\n0000000..." can be used to
82 * confuse downstream git-pack-objects very badly.
84 const char *ep
= strchr(p
->name
, '\n');
86 fprintf(pack_pipe
, "%s %.*s\n", sha1_to_hex(p
->item
->sha1
),
91 fprintf(pack_pipe
, "%s %s\n",
92 sha1_to_hex(p
->item
->sha1
), p
->name
);
95 static void show_edge(struct commit
*commit
)
97 fprintf(pack_pipe
, "-%s\n", sha1_to_hex(commit
->object
.sha1
));
100 static int do_rev_list(int fd
, void *create_full_pack
)
103 struct rev_info revs
;
105 pack_pipe
= fdopen(fd
, "w");
106 if (create_full_pack
)
107 use_thin_pack
= 0; /* no point doing it */
108 init_revisions(&revs
, NULL
);
109 revs
.tag_objects
= 1;
110 revs
.tree_objects
= 1;
111 revs
.blob_objects
= 1;
115 if (create_full_pack
) {
116 const char *args
[] = {"rev-list", "--all", NULL
};
117 setup_revisions(2, args
, &revs
, NULL
);
119 for (i
= 0; i
< want_obj
.nr
; i
++) {
120 struct object
*o
= want_obj
.objects
[i
].item
;
122 o
->flags
&= ~UNINTERESTING
;
123 add_pending_object(&revs
, o
, NULL
);
125 for (i
= 0; i
< have_obj
.nr
; i
++) {
126 struct object
*o
= have_obj
.objects
[i
].item
;
127 o
->flags
|= UNINTERESTING
;
128 add_pending_object(&revs
, o
, NULL
);
130 setup_revisions(0, NULL
, &revs
, NULL
);
132 prepare_revision_walk(&revs
);
133 mark_edges_uninteresting(revs
.commits
, &revs
, show_edge
);
134 traverse_commit_list(&revs
, show_commit
, show_object
);
140 static void create_pack_file(void)
142 struct async rev_list
;
143 struct child_process pack_objects
;
144 int create_full_pack
= (nr_our_refs
== want_obj
.nr
&& !have_obj
.nr
);
145 char data
[8193], progress
[128];
146 char abort_msg
[] = "aborting due to possible repository "
147 "corruption on the remote side.";
150 const char *argv
[10];
153 rev_list
.proc
= do_rev_list
;
154 /* .data is just a boolean: any non-NULL value will do */
155 rev_list
.data
= create_full_pack
? &rev_list
: NULL
;
156 if (start_async(&rev_list
))
157 die("git-upload-pack: unable to fork git-rev-list");
159 argv
[arg
++] = "pack-objects";
160 argv
[arg
++] = "--stdout";
162 argv
[arg
++] = "--progress";
164 argv
[arg
++] = "--delta-base-offset";
167 memset(&pack_objects
, 0, sizeof(pack_objects
));
168 pack_objects
.in
= rev_list
.out
; /* start_command closes it */
169 pack_objects
.out
= -1;
170 pack_objects
.err
= -1;
171 pack_objects
.git_cmd
= 1;
172 pack_objects
.argv
= argv
;
174 if (start_command(&pack_objects
))
175 die("git-upload-pack: unable to fork git-pack-objects");
177 /* We read from pack_objects.err to capture stderr output for
178 * progress bar, and pack_objects.out to capture the pack data.
182 struct pollfd pfd
[2];
183 int pe
, pu
, pollsize
;
190 if (0 <= pack_objects
.out
) {
191 pfd
[pollsize
].fd
= pack_objects
.out
;
192 pfd
[pollsize
].events
= POLLIN
;
196 if (0 <= pack_objects
.err
) {
197 pfd
[pollsize
].fd
= pack_objects
.err
;
198 pfd
[pollsize
].events
= POLLIN
;
206 if (poll(pfd
, pollsize
, -1) < 0) {
207 if (errno
!= EINTR
) {
208 error("poll failed, resuming: %s",
214 if (0 <= pu
&& (pfd
[pu
].revents
& (POLLIN
|POLLHUP
))) {
215 /* Data ready; we keep the last byte to ourselves
216 * in case we detect broken rev-list, so that we
217 * can leave the stream corrupted. This is
218 * unfortunate -- unpack-objects would happily
219 * accept a valid packdata with trailing garbage,
220 * so appending garbage after we pass all the
221 * pack data is not good enough to signal
222 * breakage to downstream.
230 sz
= xread(pack_objects
.out
, cp
,
231 sizeof(data
) - outsz
);
235 close(pack_objects
.out
);
236 pack_objects
.out
= -1;
242 buffered
= data
[sz
-1] & 0xFF;
247 sz
= send_client_data(1, data
, sz
);
251 if (0 <= pe
&& (pfd
[pe
].revents
& (POLLIN
|POLLHUP
))) {
252 /* Status ready; we ship that in the side-band
253 * or dump to the standard error.
255 sz
= xread(pack_objects
.err
, progress
,
258 send_client_data(2, progress
, sz
);
260 close(pack_objects
.err
);
261 pack_objects
.err
= -1;
268 if (finish_command(&pack_objects
)) {
269 error("git-upload-pack: git-pack-objects died with error.");
272 if (finish_async(&rev_list
))
273 goto fail
; /* error was already reported */
278 sz
= send_client_data(1, data
, 1);
281 fprintf(stderr
, "flushed.\n");
288 send_client_data(3, abort_msg
, sizeof(abort_msg
));
289 die("git-upload-pack: %s", abort_msg
);
292 static int got_sha1(char *hex
, unsigned char *sha1
)
295 int we_knew_they_have
= 0;
297 if (get_sha1_hex(hex
, sha1
))
298 die("git-upload-pack: expected SHA1 object, got '%s'", hex
);
299 if (!has_sha1_file(sha1
))
302 o
= lookup_object(sha1
);
303 if (!(o
&& o
->parsed
))
304 o
= parse_object(sha1
);
306 die("oops (%s)", sha1_to_hex(sha1
));
307 if (o
->type
== OBJ_COMMIT
) {
308 struct commit_list
*parents
;
309 struct commit
*commit
= (struct commit
*)o
;
310 if (o
->flags
& THEY_HAVE
)
311 we_knew_they_have
= 1;
313 o
->flags
|= THEY_HAVE
;
314 if (!oldest_have
|| (commit
->date
< oldest_have
))
315 oldest_have
= commit
->date
;
316 for (parents
= commit
->parents
;
318 parents
= parents
->next
)
319 parents
->item
->object
.flags
|= THEY_HAVE
;
321 if (!we_knew_they_have
) {
322 add_object_array(o
, NULL
, &have_obj
);
328 static int reachable(struct commit
*want
)
330 struct commit_list
*work
= NULL
;
332 insert_by_date(want
, &work
);
334 struct commit_list
*list
= work
->next
;
335 struct commit
*commit
= work
->item
;
339 if (commit
->object
.flags
& THEY_HAVE
) {
340 want
->object
.flags
|= COMMON_KNOWN
;
343 if (!commit
->object
.parsed
)
344 parse_object(commit
->object
.sha1
);
345 if (commit
->object
.flags
& REACHABLE
)
347 commit
->object
.flags
|= REACHABLE
;
348 if (commit
->date
< oldest_have
)
350 for (list
= commit
->parents
; list
; list
= list
->next
) {
351 struct commit
*parent
= list
->item
;
352 if (!(parent
->object
.flags
& REACHABLE
))
353 insert_by_date(parent
, &work
);
356 want
->object
.flags
|= REACHABLE
;
357 clear_commit_marks(want
, REACHABLE
);
358 free_commit_list(work
);
359 return (want
->object
.flags
& COMMON_KNOWN
);
362 static int ok_to_give_up(void)
369 for (i
= 0; i
< want_obj
.nr
; i
++) {
370 struct object
*want
= want_obj
.objects
[i
].item
;
372 if (want
->flags
& COMMON_KNOWN
)
374 want
= deref_tag(want
, "a want line", 0);
375 if (!want
|| want
->type
!= OBJ_COMMIT
) {
376 /* no way to tell if this is reachable by
377 * looking at the ancestry chain alone, so
378 * leave a note to ourselves not to worry about
379 * this object anymore.
381 want_obj
.objects
[i
].item
->flags
|= COMMON_KNOWN
;
384 if (!reachable((struct commit
*)want
))
390 static int get_common_commits(void)
392 static char line
[1000];
393 unsigned char sha1
[20];
394 char hex
[41], last_hex
[41];
397 track_object_refs
= 0;
398 save_commit_buffer
= 0;
401 len
= packet_read_line(0, line
, sizeof(line
));
405 if (have_obj
.nr
== 0 || multi_ack
)
406 packet_write(1, "NAK\n");
409 len
= strip(line
, len
);
410 if (!prefixcmp(line
, "have ")) {
411 switch (got_sha1(line
+5, sha1
)) {
412 case -1: /* they have what we do not */
413 if (multi_ack
&& ok_to_give_up())
414 packet_write(1, "ACK %s continue\n",
418 memcpy(hex
, sha1_to_hex(sha1
), 41);
420 const char *msg
= "ACK %s continue\n";
421 packet_write(1, msg
, hex
);
422 memcpy(last_hex
, hex
, 41);
424 else if (have_obj
.nr
== 1)
425 packet_write(1, "ACK %s\n", hex
);
430 if (!strcmp(line
, "done")) {
431 if (have_obj
.nr
> 0) {
433 packet_write(1, "ACK %s\n", last_hex
);
436 packet_write(1, "NAK\n");
439 die("git-upload-pack: expected SHA1 list, got '%s'", line
);
443 static void receive_needs(void)
445 struct object_array shallows
= {0, 0, NULL
};
446 static char line
[1000];
451 unsigned char sha1_buf
[20];
452 len
= packet_read_line(0, line
, sizeof(line
));
457 if (!prefixcmp(line
, "shallow ")) {
458 unsigned char sha1
[20];
459 struct object
*object
;
461 if (get_sha1(line
+ 8, sha1
))
462 die("invalid shallow line: %s", line
);
463 object
= parse_object(sha1
);
465 die("did not find object for %s", line
);
466 object
->flags
|= CLIENT_SHALLOW
;
467 add_object_array(object
, NULL
, &shallows
);
470 if (!prefixcmp(line
, "deepen ")) {
473 depth
= strtol(line
+ 7, &end
, 0);
474 if (end
== line
+ 7 || depth
<= 0)
475 die("Invalid deepen: %s", line
);
478 if (prefixcmp(line
, "want ") ||
479 get_sha1_hex(line
+5, sha1_buf
))
480 die("git-upload-pack: protocol error, "
481 "expected to get sha, not '%s'", line
);
482 if (strstr(line
+45, "multi_ack"))
484 if (strstr(line
+45, "thin-pack"))
486 if (strstr(line
+45, "ofs-delta"))
488 if (strstr(line
+45, "side-band-64k"))
489 use_sideband
= LARGE_PACKET_MAX
;
490 else if (strstr(line
+45, "side-band"))
491 use_sideband
= DEFAULT_PACKET_MAX
;
492 if (strstr(line
+45, "no-progress"))
495 /* We have sent all our refs already, and the other end
496 * should have chosen out of them; otherwise they are
497 * asking for nonsense.
499 * Hmph. We may later want to allow "want" line that
500 * asks for something like "master~10" (symbolic)...
501 * would it make sense? I don't know.
503 o
= lookup_object(sha1_buf
);
504 if (!o
|| !(o
->flags
& OUR_REF
))
505 die("git-upload-pack: not our ref %s", line
+5);
506 if (!(o
->flags
& WANTED
)) {
508 add_object_array(o
, NULL
, &want_obj
);
511 if (depth
== 0 && shallows
.nr
== 0)
514 struct commit_list
*result
, *backup
;
516 backup
= result
= get_shallow_commits(&want_obj
, depth
,
517 SHALLOW
, NOT_SHALLOW
);
519 struct object
*object
= &result
->item
->object
;
520 if (!(object
->flags
& (CLIENT_SHALLOW
|NOT_SHALLOW
))) {
521 packet_write(1, "shallow %s",
522 sha1_to_hex(object
->sha1
));
523 register_shallow(object
->sha1
);
525 result
= result
->next
;
527 free_commit_list(backup
);
528 for (i
= 0; i
< shallows
.nr
; i
++) {
529 struct object
*object
= shallows
.objects
[i
].item
;
530 if (object
->flags
& NOT_SHALLOW
) {
531 struct commit_list
*parents
;
532 packet_write(1, "unshallow %s",
533 sha1_to_hex(object
->sha1
));
534 object
->flags
&= ~CLIENT_SHALLOW
;
535 /* make sure the real parents are parsed */
536 unregister_shallow(object
->sha1
);
538 parse_commit((struct commit
*)object
);
539 parents
= ((struct commit
*)object
)->parents
;
541 add_object_array(&parents
->item
->object
,
543 parents
= parents
->next
;
546 /* make sure commit traversal conforms to client */
547 register_shallow(object
->sha1
);
551 if (shallows
.nr
> 0) {
553 for (i
= 0; i
< shallows
.nr
; i
++)
554 register_shallow(shallows
.objects
[i
].item
->sha1
);
556 free(shallows
.objects
);
559 static int send_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
561 static const char *capabilities
= "multi_ack thin-pack side-band"
562 " side-band-64k ofs-delta shallow no-progress";
563 struct object
*o
= parse_object(sha1
);
566 die("git-upload-pack: cannot find object %s:", sha1_to_hex(sha1
));
569 packet_write(1, "%s %s%c%s\n", sha1_to_hex(sha1
), refname
,
572 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), refname
);
574 if (!(o
->flags
& OUR_REF
)) {
578 if (o
->type
== OBJ_TAG
) {
579 o
= deref_tag(o
, refname
, 0);
580 packet_write(1, "%s %s^{}\n", sha1_to_hex(o
->sha1
), refname
);
585 static void upload_pack(void)
588 head_ref(send_ref
, NULL
);
589 for_each_ref(send_ref
, NULL
);
593 get_common_commits();
598 int main(int argc
, char **argv
)
604 for (i
= 1; i
< argc
; i
++) {
609 if (!strcmp(arg
, "--strict")) {
613 if (!prefixcmp(arg
, "--timeout=")) {
614 timeout
= atoi(arg
+10);
617 if (!strcmp(arg
, "--")) {
624 usage(upload_pack_usage
);
627 if (!enter_repo(dir
, strict
))
628 die("'%s': unable to chdir or not a git archive", dir
);
629 if (is_repository_shallow())
630 die("attempt to fetch/clone from a shallow repository");