12 static const char upload_pack_usage
[] = "git-upload-pack [--strict] [--timeout=nn] <dir>";
14 #define THEY_HAVE (1U << 0)
15 #define OUR_REF (1U << 1)
16 #define WANTED (1U << 2)
19 static int nr_has
= 0, nr_needs
= 0, multi_ack
= 0, nr_our_refs
= 0;
20 static int use_thin_pack
= 0;
21 static unsigned char has_sha1
[MAX_HAS
][20];
22 static unsigned char needs_sha1
[MAX_NEEDS
][20];
23 static unsigned int timeout
= 0;
24 static int use_sideband
= 0;
26 static void reset_timeout(void)
31 static int strip(char *line
, int len
)
33 if (len
&& line
[len
-1] == '\n')
38 #define PACKET_MAX 1000
39 static ssize_t
send_client_data(int fd
, const char *data
, ssize_t sz
)
58 return safe_write(fd
, data
, sz
);
67 if (PACKET_MAX
- 5 < n
)
69 sprintf(hdr
, "%04x", n
+ 5);
71 safe_write(1, hdr
, 5);
79 static void create_pack_file(void)
81 /* Pipes between rev-list to pack-objects, pack-objects to us
82 * and pack-objects error stream for progress bar.
84 int lp_pipe
[2], pu_pipe
[2], pe_pipe
[2];
85 pid_t pid_rev_list
, pid_pack_objects
;
86 int create_full_pack
= (nr_our_refs
== nr_needs
&& !nr_has
);
87 char data
[8193], progress
[128];
88 char abort_msg
[] = "aborting due to possible repository "
89 "corruption on the remote side.";
92 if (pipe(lp_pipe
) < 0)
93 die("git-upload-pack: unable to create pipe");
94 pid_rev_list
= fork();
96 die("git-upload-pack: unable to fork git-rev-list");
105 if (create_full_pack
) {
107 use_thin_pack
= 0; /* no point doing it */
110 args
= nr_has
+ nr_needs
+ 5;
111 p
= xmalloc(args
* sizeof(char *));
112 argv
= (const char **) p
;
113 buf
= xmalloc(args
* 45);
120 *p
++ = use_thin_pack
? "--objects-edge" : "--objects";
121 if (create_full_pack
|| MAX_NEEDS
<= nr_needs
)
124 for (i
= 0; i
< nr_needs
; i
++) {
126 memcpy(buf
, sha1_to_hex(needs_sha1
[i
]), 41);
130 if (!create_full_pack
)
131 for (i
= 0; i
< nr_has
; i
++) {
134 memcpy(buf
, sha1_to_hex(has_sha1
[i
]), 41);
139 die("git-upload-pack: unable to exec git-rev-list");
142 if (pipe(pu_pipe
) < 0)
143 die("git-upload-pack: unable to create pipe");
144 if (pipe(pe_pipe
) < 0)
145 die("git-upload-pack: unable to create pipe");
146 pid_pack_objects
= fork();
147 if (pid_pack_objects
< 0) {
148 /* daemon sets things up to ignore TERM */
149 kill(pid_rev_list
, SIGKILL
);
150 die("git-upload-pack: unable to fork git-pack-objects");
152 if (!pid_pack_objects
) {
163 execl_git_cmd("pack-objects", "--stdout", "--progress", NULL
);
164 kill(pid_rev_list
, SIGKILL
);
165 die("git-upload-pack: unable to exec git-pack-objects");
171 /* We read from pe_pipe[0] to capture stderr output for
172 * progress bar, and pu_pipe[0] to capture the pack data.
179 struct pollfd pfd
[2];
183 int pe
, pu
, pollsize
;
190 if (0 <= pu_pipe
[0]) {
191 pfd
[pollsize
].fd
= pu_pipe
[0];
192 pfd
[pollsize
].events
= POLLIN
;
196 if (0 <= pe_pipe
[0]) {
197 pfd
[pollsize
].fd
= pe_pipe
[0];
198 pfd
[pollsize
].events
= POLLIN
;
204 if (poll(pfd
, pollsize
, -1) < 0) {
205 if (errno
!= EINTR
) {
206 error("poll failed, resuming: %s",
212 if (0 <= pu
&& (pfd
[pu
].revents
& (POLLIN
|POLLHUP
))) {
213 /* Data ready; we keep the last byte
214 * to ourselves in case we detect
215 * broken rev-list, so that we can
216 * leave the stream corrupted. This
217 * is unfortunate -- unpack-objects
218 * would happily accept a valid pack
219 * data with trailing garbage, so
220 * appending garbage after we pass all
221 * the pack data is not good enough to
222 * signal breakage to downstream.
230 sz
= read(pu_pipe
[0], cp
,
231 sizeof(data
) - outsz
);
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
= read(pe_pipe
[0], progress
,
258 send_client_data(2, progress
, sz
);
268 /* See if the children are still there */
269 if (pid_rev_list
|| pid_pack_objects
) {
270 pid
= waitpid(-1, &status
, WNOHANG
);
273 who
= ((pid
== pid_rev_list
) ? "git-rev-list" :
274 (pid
== pid_pack_objects
) ? "git-pack-objects" :
278 error("git-upload-pack: %s",
282 error("git-upload-pack: we weren't "
283 "waiting for %d", pid
);
286 if (!WIFEXITED(status
) || WEXITSTATUS(status
) > 0) {
287 error("git-upload-pack: %s died with error.",
291 if (pid
== pid_rev_list
)
293 if (pid
== pid_pack_objects
)
294 pid_pack_objects
= 0;
295 if (pid_rev_list
|| pid_pack_objects
)
299 /* both died happily */
306 sz
= send_client_data(1, data
, 1);
309 fprintf(stderr
, "flushed.\n");
311 send_client_data(1, NULL
, 0);
315 if (pid_pack_objects
)
316 kill(pid_pack_objects
, SIGKILL
);
318 kill(pid_rev_list
, SIGKILL
);
319 send_client_data(3, abort_msg
, sizeof(abort_msg
));
320 die("git-upload-pack: %s", abort_msg
);
323 static int got_sha1(char *hex
, unsigned char *sha1
)
325 if (get_sha1_hex(hex
, sha1
))
326 die("git-upload-pack: expected SHA1 object, got '%s'", hex
);
327 if (!has_sha1_file(sha1
))
329 if (nr_has
< MAX_HAS
) {
330 struct object
*o
= lookup_object(sha1
);
331 if (!(o
&& o
->parsed
))
332 o
= parse_object(sha1
);
334 die("oops (%s)", sha1_to_hex(sha1
));
335 if (o
->type
== OBJ_COMMIT
) {
336 struct commit_list
*parents
;
337 if (o
->flags
& THEY_HAVE
)
339 o
->flags
|= THEY_HAVE
;
340 for (parents
= ((struct commit
*)o
)->parents
;
342 parents
= parents
->next
)
343 parents
->item
->object
.flags
|= THEY_HAVE
;
345 memcpy(has_sha1
[nr_has
++], sha1
, 20);
350 static int get_common_commits(void)
352 static char line
[1000];
353 unsigned char sha1
[20], last_sha1
[20];
356 track_object_refs
= 0;
357 save_commit_buffer
= 0;
360 len
= packet_read_line(0, line
, sizeof(line
));
364 if (nr_has
== 0 || multi_ack
)
365 packet_write(1, "NAK\n");
368 len
= strip(line
, len
);
369 if (!strncmp(line
, "have ", 5)) {
370 if (got_sha1(line
+5, sha1
) &&
371 (multi_ack
|| nr_has
== 1)) {
372 if (nr_has
>= MAX_HAS
)
374 packet_write(1, "ACK %s%s\n",
376 multi_ack
? " continue" : "");
378 memcpy(last_sha1
, sha1
, 20);
382 if (!strcmp(line
, "done")) {
385 packet_write(1, "ACK %s\n",
386 sha1_to_hex(last_sha1
));
389 packet_write(1, "NAK\n");
392 die("git-upload-pack: expected SHA1 list, got '%s'", line
);
396 static int receive_needs(void)
398 static char line
[1000];
404 unsigned char dummy
[20], *sha1_buf
;
405 len
= packet_read_line(0, line
, sizeof(line
));
411 if (needs
== MAX_NEEDS
) {
413 "warning: supporting only a max of %d requests. "
414 "sending everything instead.\n",
417 else if (needs
< MAX_NEEDS
)
418 sha1_buf
= needs_sha1
[needs
];
420 if (strncmp("want ", line
, 5) || get_sha1_hex(line
+5, sha1_buf
))
421 die("git-upload-pack: protocol error, "
422 "expected to get sha, not '%s'", line
);
423 if (strstr(line
+45, "multi_ack"))
425 if (strstr(line
+45, "thin-pack"))
427 if (strstr(line
+45, "side-band"))
430 /* We have sent all our refs already, and the other end
431 * should have chosen out of them; otherwise they are
432 * asking for nonsense.
434 * Hmph. We may later want to allow "want" line that
435 * asks for something like "master~10" (symbolic)...
436 * would it make sense? I don't know.
438 o
= lookup_object(sha1_buf
);
439 if (!o
|| !(o
->flags
& OUR_REF
))
440 die("git-upload-pack: not our ref %s", line
+5);
441 if (!(o
->flags
& WANTED
)) {
448 static int send_ref(const char *refname
, const unsigned char *sha1
)
450 static const char *capabilities
= "multi_ack thin-pack side-band";
451 struct object
*o
= parse_object(sha1
);
454 die("git-upload-pack: cannot find object %s:", sha1_to_hex(sha1
));
457 packet_write(1, "%s %s%c%s\n", sha1_to_hex(sha1
), refname
,
460 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), refname
);
462 if (!(o
->flags
& OUR_REF
)) {
466 if (o
->type
== OBJ_TAG
) {
467 o
= deref_tag(o
, refname
, 0);
468 packet_write(1, "%s %s^{}\n", sha1_to_hex(o
->sha1
), refname
);
473 static int upload_pack(void)
477 for_each_ref(send_ref
);
479 nr_needs
= receive_needs();
482 get_common_commits();
487 int main(int argc
, char **argv
)
493 for (i
= 1; i
< argc
; i
++) {
498 if (!strcmp(arg
, "--strict")) {
502 if (!strncmp(arg
, "--timeout=", 10)) {
503 timeout
= atoi(arg
+10);
506 if (!strcmp(arg
, "--")) {
513 usage(upload_pack_usage
);
516 if (!enter_repo(dir
, strict
))
517 die("'%s': unable to chdir or not a git archive", dir
);