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)
54 return safe_write(fd, data, sz);
63 if (PACKET_MAX - 5 < n)
65 sprintf(hdr, "%04x", n + 5);
67 safe_write(1, hdr, 5);
75 static void create_pack_file(void)
77 /* Pipes between rev-list to pack-objects, pack-objects to us
78 * and pack-objects error stream for progress bar.
80 int lp_pipe[2], pu_pipe[2], pe_pipe[2];
81 pid_t pid_rev_list, pid_pack_objects;
82 int create_full_pack = (nr_our_refs == nr_needs && !nr_has);
83 char data[8193], progress[128];
84 char abort_msg[] = "aborting due to possible repository "
85 "corruption on the remote side.";
88 if (pipe(lp_pipe) < 0)
89 die("git-upload-pack: unable to create pipe");
90 pid_rev_list = fork();
92 die("git-upload-pack: unable to fork git-rev-list");
101 if (create_full_pack) {
103 use_thin_pack = 0; /* no point doing it */
106 args = nr_has + nr_needs + 5;
107 p = xmalloc(args * sizeof(char *));
108 argv = (const char **) p;
109 buf = xmalloc(args * 45);
116 *p++ = use_thin_pack ? "--objects-edge" : "--objects";
117 if (create_full_pack || MAX_NEEDS <= nr_needs)
120 for (i = 0; i < nr_needs; i++) {
122 memcpy(buf, sha1_to_hex(needs_sha1[i]), 41);
126 if (!create_full_pack)
127 for (i = 0; i < nr_has; i++) {
130 memcpy(buf, sha1_to_hex(has_sha1[i]), 41);
135 die("git-upload-pack: unable to exec git-rev-list");
138 if (pipe(pu_pipe) < 0)
139 die("git-upload-pack: unable to create pipe");
140 if (pipe(pe_pipe) < 0)
141 die("git-upload-pack: unable to create pipe");
142 pid_pack_objects = fork();
143 if (pid_pack_objects < 0) {
144 /* daemon sets things up to ignore TERM */
145 kill(pid_rev_list, SIGKILL);
146 die("git-upload-pack: unable to fork git-pack-objects");
148 if (!pid_pack_objects) {
159 execl_git_cmd("pack-objects", "--stdout", "--progress", NULL);
160 kill(pid_rev_list, SIGKILL);
161 die("git-upload-pack: unable to exec git-pack-objects");
167 /* We read from pe_pipe[0] to capture stderr output for
168 * progress bar, and pu_pipe[0] to capture the pack data.
175 struct pollfd pfd[2];
179 int pe, pu, pollsize;
184 if (0 <= pu_pipe[0]) {
185 pfd[pollsize].fd = pu_pipe[0];
186 pfd[pollsize].events = POLLIN;
190 if (0 <= pe_pipe[0]) {
191 pfd[pollsize].fd = pe_pipe[0];
192 pfd[pollsize].events = POLLIN;
198 if (poll(pfd, pollsize, -1) < 0) {
199 if (errno != EINTR) {
200 error("poll failed, resuming: %s",
206 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
207 /* Data ready; we keep the last byte
208 * to ourselves in case we detect
209 * broken rev-list, so that we can
210 * leave the stream corrupted. This
211 * is unfortunate -- unpack-objects
212 * would happily accept a valid pack
213 * data with trailing garbage, so
214 * appending garbage after we pass all
215 * the pack data is not good enough to
216 * signal breakage to downstream.
224 sz = read(pu_pipe[0], cp,
225 sizeof(data) - outsz);
236 buffered = data[sz-1] & 0xFF;
241 sz = send_client_data(1, data, sz);
245 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
246 /* Status ready; we ship that in the side-band
247 * or dump to the standard error.
249 sz = read(pe_pipe[0], progress,
252 send_client_data(2, progress, sz);
262 /* See if the children are still there */
263 if (pid_rev_list || pid_pack_objects) {
264 pid = waitpid(-1, &status, WNOHANG);
267 who = ((pid == pid_rev_list) ? "git-rev-list" :
268 (pid == pid_pack_objects) ? "git-pack-objects" :
272 error("git-upload-pack: %s",
276 error("git-upload-pack: we weren't "
277 "waiting for %d", pid);
280 if (!WIFEXITED(status) || WEXITSTATUS(status) > 0) {
281 error("git-upload-pack: %s died with error.",
285 if (pid == pid_rev_list)
287 if (pid == pid_pack_objects)
288 pid_pack_objects = 0;
289 if (pid_rev_list || pid_pack_objects)
293 /* both died happily */
300 sz = send_client_data(1, data, 1);
303 fprintf(stderr, "flushed.\n");
305 send_client_data(1, NULL, 0);
309 if (pid_pack_objects)
310 kill(pid_pack_objects, SIGKILL);
312 kill(pid_rev_list, SIGKILL);
313 send_client_data(3, abort_msg, sizeof(abort_msg));
314 die("git-upload-pack: %s", abort_msg);
317 static int got_sha1(char *hex, unsigned char *sha1)
319 if (get_sha1_hex(hex, sha1))
320 die("git-upload-pack: expected SHA1 object, got '%s'", hex);
321 if (!has_sha1_file(sha1))
323 if (nr_has < MAX_HAS) {
324 struct object *o = lookup_object(sha1);
325 if (!(o && o->parsed))
326 o = parse_object(sha1);
328 die("oops (%s)", sha1_to_hex(sha1));
329 if (o->type == TYPE_COMMIT) {
330 struct commit_list *parents;
331 if (o->flags & THEY_HAVE)
333 o->flags |= THEY_HAVE;
334 for (parents = ((struct commit*)o)->parents;
336 parents = parents->next)
337 parents->item->object.flags |= THEY_HAVE;
339 memcpy(has_sha1[nr_has++], sha1, 20);
344 static int get_common_commits(void)
346 static char line[1000];
347 unsigned char sha1[20], last_sha1[20];
350 track_object_refs = 0;
351 save_commit_buffer = 0;
354 len = packet_read_line(0, line, sizeof(line));
358 if (nr_has == 0 || multi_ack)
359 packet_write(1, "NAK\n");
362 len = strip(line, len);
363 if (!strncmp(line, "have ", 5)) {
364 if (got_sha1(line+5, sha1) &&
365 (multi_ack || nr_has == 1)) {
366 if (nr_has >= MAX_HAS)
368 packet_write(1, "ACK %s%s\n",
370 multi_ack ? " continue" : "");
372 memcpy(last_sha1, sha1, 20);
376 if (!strcmp(line, "done")) {
379 packet_write(1, "ACK %s\n",
380 sha1_to_hex(last_sha1));
383 packet_write(1, "NAK\n");
386 die("git-upload-pack: expected SHA1 list, got '%s'", line);
390 static int receive_needs(void)
392 static char line[1000];
398 unsigned char dummy[20], *sha1_buf;
399 len = packet_read_line(0, line, sizeof(line));
405 if (needs == MAX_NEEDS) {
407 "warning: supporting only a max of %d requests. "
408 "sending everything instead.\n",
411 else if (needs < MAX_NEEDS)
412 sha1_buf = needs_sha1[needs];
414 if (strncmp("want ", line, 5) || get_sha1_hex(line+5, sha1_buf))
415 die("git-upload-pack: protocol error, "
416 "expected to get sha, not '%s'", line);
417 if (strstr(line+45, "multi_ack"))
419 if (strstr(line+45, "thin-pack"))
421 if (strstr(line+45, "side-band"))
424 /* We have sent all our refs already, and the other end
425 * should have chosen out of them; otherwise they are
426 * asking for nonsense.
428 * Hmph. We may later want to allow "want" line that
429 * asks for something like "master~10" (symbolic)...
430 * would it make sense? I don't know.
432 o = lookup_object(sha1_buf);
433 if (!o || !(o->flags & OUR_REF))
434 die("git-upload-pack: not our ref %s", line+5);
435 if (!(o->flags & WANTED)) {
442 static int send_ref(const char *refname, const unsigned char *sha1)
444 static char *capabilities = "multi_ack thin-pack side-band";
445 struct object *o = parse_object(sha1);
448 die("git-upload-pack: cannot find object %s:", sha1_to_hex(sha1));
451 packet_write(1, "%s %s%c%s\n", sha1_to_hex(sha1), refname,
454 packet_write(1, "%s %s\n", sha1_to_hex(sha1), refname);
456 if (!(o->flags & OUR_REF)) {
460 if (o->type == TYPE_TAG) {
461 o = deref_tag(o, refname, 0);
462 packet_write(1, "%s %s^{}\n", sha1_to_hex(o->sha1), refname);
467 static int upload_pack(void)
471 for_each_ref(send_ref);
473 nr_needs = receive_needs();
476 get_common_commits();
481 int main(int argc, char **argv)
487 for (i = 1; i < argc; i++) {
492 if (!strcmp(arg, "--strict")) {
496 if (!strncmp(arg, "--timeout=", 10)) {
497 timeout = atoi(arg+10);
500 if (!strcmp(arg, "--")) {
507 usage(upload_pack_usage);
510 if (!enter_repo(dir, strict))
511 die("'%s': unable to chdir or not a git archive", dir);