]> git.ipfire.org Git - thirdparty/git.git/blame - upload-pack.c
fetch & clone: do not output progress when not on a tty
[thirdparty/git.git] / upload-pack.c
CommitLineData
def88e9a
LT
1#include "cache.h"
2#include "refs.h"
3#include "pkt-line.h"
958c24b1 4#include "sideband.h"
f6b42a81
JH
5#include "tag.h"
6#include "object.h"
f0243f26 7#include "commit.h"
77cb17e9 8#include "exec_cmd.h"
9b8dc263
JS
9#include "diff.h"
10#include "revision.h"
11#include "list-objects.h"
def88e9a 12
83a5ad61 13static const char upload_pack_usage[] = "git-upload-pack [--strict] [--timeout=nn] [--no-progress] <dir>";
def88e9a 14
937a515a
JH
15/* bits #0..7 in revision.h, #8..10 in commit.c */
16#define THEY_HAVE (1u << 11)
17#define OUR_REF (1u << 12)
18#define WANTED (1u << 13)
19#define COMMON_KNOWN (1u << 14)
20#define REACHABLE (1u << 15)
21
f53514bc
JS
22#define SHALLOW (1u << 16)
23#define NOT_SHALLOW (1u << 17)
24#define CLIENT_SHALLOW (1u << 18)
25
3fbe2d54 26static unsigned long oldest_have;
937a515a 27
96f1e58f 28static int multi_ack, nr_our_refs;
83a5ad61 29static int use_thin_pack, use_ofs_delta, no_progress;
b1e9fff7
JH
30static struct object_array have_obj;
31static struct object_array want_obj;
96f1e58f 32static unsigned int timeout;
d47f3db7
JH
33/* 0 for no sideband,
34 * otherwise maximum packet size (up to 65520 bytes).
35 */
96f1e58f 36static int use_sideband;
960deccb
PA
37
38static void reset_timeout(void)
39{
40 alarm(timeout);
41}
fb9040cc 42
75bfc6c2
LT
43static int strip(char *line, int len)
44{
45 if (len && line[len-1] == '\n')
46 line[--len] = 0;
47 return len;
48}
49
583b7ea3
JH
50static ssize_t send_client_data(int fd, const char *data, ssize_t sz)
51{
958c24b1 52 if (use_sideband)
d47f3db7 53 return send_sideband(1, fd, data, sz, use_sideband);
958c24b1
JH
54 if (fd == 3)
55 /* emergency quit */
56 fd = 2;
57 if (fd == 2) {
93822c22 58 /* XXX: are we happy to lose stuff here? */
958c24b1
JH
59 xwrite(fd, data, sz);
60 return sz;
583b7ea3 61 }
958c24b1 62 return safe_write(fd, data, sz);
583b7ea3
JH
63}
64
9b8dc263
JS
65FILE *pack_pipe = NULL;
66static void show_commit(struct commit *commit)
67{
68 if (commit->object.flags & BOUNDARY)
69 fputc('-', pack_pipe);
70 if (fputs(sha1_to_hex(commit->object.sha1), pack_pipe) < 0)
71 die("broken output pipe");
72 fputc('\n', pack_pipe);
73 fflush(pack_pipe);
74 free(commit->buffer);
75 commit->buffer = NULL;
76}
77
78static void show_object(struct object_array_entry *p)
79{
80 /* An object with name "foo\n0000000..." can be used to
81 * confuse downstream git-pack-objects very badly.
82 */
83 const char *ep = strchr(p->name, '\n');
84 if (ep) {
85 fprintf(pack_pipe, "%s %.*s\n", sha1_to_hex(p->item->sha1),
86 (int) (ep - p->name),
87 p->name);
88 }
89 else
90 fprintf(pack_pipe, "%s %s\n",
91 sha1_to_hex(p->item->sha1), p->name);
92}
93
94static void show_edge(struct commit *commit)
95{
96 fprintf(pack_pipe, "-%s\n", sha1_to_hex(commit->object.sha1));
97}
98
fb9040cc
LT
99static void create_pack_file(void)
100{
363b7817
JH
101 /* Pipes between rev-list to pack-objects, pack-objects to us
102 * and pack-objects error stream for progress bar.
103 */
104 int lp_pipe[2], pu_pipe[2], pe_pipe[2];
b1c71b72 105 pid_t pid_rev_list, pid_pack_objects;
b1e9fff7 106 int create_full_pack = (nr_our_refs == want_obj.nr && !have_obj.nr);
363b7817 107 char data[8193], progress[128];
583b7ea3
JH
108 char abort_msg[] = "aborting due to possible repository "
109 "corruption on the remote side.";
b1c71b72 110 int buffered = -1;
75bfc6c2 111
b1c71b72 112 if (pipe(lp_pipe) < 0)
75bfc6c2 113 die("git-upload-pack: unable to create pipe");
b1c71b72
JH
114 pid_rev_list = fork();
115 if (pid_rev_list < 0)
75bfc6c2
LT
116 die("git-upload-pack: unable to fork git-rev-list");
117
b1c71b72 118 if (!pid_rev_list) {
75bfc6c2 119 int i;
9b8dc263
JS
120 struct rev_info revs;
121
122 pack_pipe = fdopen(lp_pipe[1], "w");
e091eb93 123
b1e9fff7 124 if (create_full_pack)
9b8dc263
JS
125 use_thin_pack = 0; /* no point doing it */
126 init_revisions(&revs, NULL);
127 revs.tag_objects = 1;
128 revs.tree_objects = 1;
129 revs.blob_objects = 1;
130 if (use_thin_pack)
131 revs.edge_hint = 1;
132
133 if (create_full_pack) {
134 const char *args[] = {"rev-list", "--all", NULL};
135 setup_revisions(2, args, &revs, NULL);
136 } else {
b1e9fff7
JH
137 for (i = 0; i < want_obj.nr; i++) {
138 struct object *o = want_obj.objects[i].item;
c6702f4b 139 /* why??? */
f53514bc 140 o->flags &= ~UNINTERESTING;
9b8dc263 141 add_pending_object(&revs, o, NULL);
e091eb93 142 }
b1e9fff7
JH
143 for (i = 0; i < have_obj.nr; i++) {
144 struct object *o = have_obj.objects[i].item;
9b8dc263
JS
145 o->flags |= UNINTERESTING;
146 add_pending_object(&revs, o, NULL);
b5c367f7 147 }
9b8dc263
JS
148 setup_revisions(0, NULL, &revs, NULL);
149 }
150 prepare_revision_walk(&revs);
151 mark_edges_uninteresting(revs.commits, &revs, show_edge);
152 traverse_commit_list(&revs, show_commit, show_object);
153 exit(0);
75bfc6c2 154 }
b1c71b72
JH
155
156 if (pipe(pu_pipe) < 0)
157 die("git-upload-pack: unable to create pipe");
363b7817
JH
158 if (pipe(pe_pipe) < 0)
159 die("git-upload-pack: unable to create pipe");
b1c71b72
JH
160 pid_pack_objects = fork();
161 if (pid_pack_objects < 0) {
162 /* daemon sets things up to ignore TERM */
163 kill(pid_rev_list, SIGKILL);
164 die("git-upload-pack: unable to fork git-pack-objects");
165 }
166 if (!pid_pack_objects) {
83a5ad61
JS
167 const char *argv[10];
168 int i = 0;
169
b1c71b72
JH
170 dup2(lp_pipe[0], 0);
171 dup2(pu_pipe[1], 1);
363b7817 172 dup2(pe_pipe[1], 2);
b1c71b72
JH
173
174 close(lp_pipe[0]);
175 close(lp_pipe[1]);
176 close(pu_pipe[0]);
177 close(pu_pipe[1]);
363b7817
JH
178 close(pe_pipe[0]);
179 close(pe_pipe[1]);
83a5ad61
JS
180
181 argv[i++] = "pack-objects";
182 argv[i++] = "--stdout";
183 if (!no_progress)
184 argv[i++] = "--progress";
185 if (use_ofs_delta)
186 argv[i++] = "--delta-base-offset";
187 argv[i++] = NULL;
188
189 execv_git_cmd(argv);
b1c71b72
JH
190 kill(pid_rev_list, SIGKILL);
191 die("git-upload-pack: unable to exec git-pack-objects");
192 }
193
194 close(lp_pipe[0]);
195 close(lp_pipe[1]);
196
363b7817
JH
197 /* We read from pe_pipe[0] to capture stderr output for
198 * progress bar, and pu_pipe[0] to capture the pack data.
b1c71b72 199 */
363b7817 200 close(pe_pipe[1]);
b1c71b72
JH
201 close(pu_pipe[1]);
202
203 while (1) {
204 const char *who;
205 struct pollfd pfd[2];
206 pid_t pid;
207 int status;
208 ssize_t sz;
363b7817 209 int pe, pu, pollsize;
b1c71b72 210
0d516ada
ML
211 reset_timeout();
212
b1c71b72 213 pollsize = 0;
363b7817 214 pe = pu = -1;
b1c71b72
JH
215
216 if (0 <= pu_pipe[0]) {
217 pfd[pollsize].fd = pu_pipe[0];
218 pfd[pollsize].events = POLLIN;
219 pu = pollsize;
220 pollsize++;
221 }
363b7817
JH
222 if (0 <= pe_pipe[0]) {
223 pfd[pollsize].fd = pe_pipe[0];
224 pfd[pollsize].events = POLLIN;
225 pe = pollsize;
226 pollsize++;
227 }
b1c71b72
JH
228
229 if (pollsize) {
230 if (poll(pfd, pollsize, -1) < 0) {
231 if (errno != EINTR) {
232 error("poll failed, resuming: %s",
233 strerror(errno));
234 sleep(1);
235 }
236 continue;
237 }
238 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
239 /* Data ready; we keep the last byte
240 * to ourselves in case we detect
241 * broken rev-list, so that we can
242 * leave the stream corrupted. This
243 * is unfortunate -- unpack-objects
244 * would happily accept a valid pack
245 * data with trailing garbage, so
246 * appending garbage after we pass all
247 * the pack data is not good enough to
248 * signal breakage to downstream.
249 */
250 char *cp = data;
251 ssize_t outsz = 0;
252 if (0 <= buffered) {
253 *cp++ = buffered;
254 outsz++;
255 }
93d26e4c 256 sz = xread(pu_pipe[0], cp,
b1c71b72
JH
257 sizeof(data) - outsz);
258 if (0 < sz)
259 ;
260 else if (sz == 0) {
261 close(pu_pipe[0]);
262 pu_pipe[0] = -1;
263 }
264 else
265 goto fail;
266 sz += outsz;
267 if (1 < sz) {
268 buffered = data[sz-1] & 0xFF;
269 sz--;
270 }
271 else
272 buffered = -1;
583b7ea3 273 sz = send_client_data(1, data, sz);
b1c71b72
JH
274 if (sz < 0)
275 goto fail;
276 }
363b7817 277 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
583b7ea3
JH
278 /* Status ready; we ship that in the side-band
279 * or dump to the standard error.
363b7817 280 */
93d26e4c 281 sz = xread(pe_pipe[0], progress,
363b7817
JH
282 sizeof(progress));
283 if (0 < sz)
583b7ea3 284 send_client_data(2, progress, sz);
363b7817
JH
285 else if (sz == 0) {
286 close(pe_pipe[0]);
287 pe_pipe[0] = -1;
288 }
289 else
290 goto fail;
291 }
b1c71b72
JH
292 }
293
294 /* See if the children are still there */
295 if (pid_rev_list || pid_pack_objects) {
296 pid = waitpid(-1, &status, WNOHANG);
297 if (!pid)
298 continue;
299 who = ((pid == pid_rev_list) ? "git-rev-list" :
300 (pid == pid_pack_objects) ? "git-pack-objects" :
301 NULL);
302 if (!who) {
303 if (pid < 0) {
304 error("git-upload-pack: %s",
305 strerror(errno));
306 goto fail;
307 }
308 error("git-upload-pack: we weren't "
309 "waiting for %d", pid);
310 continue;
311 }
312 if (!WIFEXITED(status) || WEXITSTATUS(status) > 0) {
313 error("git-upload-pack: %s died with error.",
314 who);
315 goto fail;
316 }
317 if (pid == pid_rev_list)
318 pid_rev_list = 0;
319 if (pid == pid_pack_objects)
320 pid_pack_objects = 0;
321 if (pid_rev_list || pid_pack_objects)
322 continue;
323 }
324
325 /* both died happily */
326 if (pollsize)
327 continue;
328
329 /* flush the data */
330 if (0 <= buffered) {
331 data[0] = buffered;
583b7ea3 332 sz = send_client_data(1, data, 1);
b1c71b72
JH
333 if (sz < 0)
334 goto fail;
335 fprintf(stderr, "flushed.\n");
336 }
958c24b1
JH
337 if (use_sideband)
338 packet_flush(1);
b1c71b72
JH
339 return;
340 }
341 fail:
342 if (pid_pack_objects)
343 kill(pid_pack_objects, SIGKILL);
344 if (pid_rev_list)
345 kill(pid_rev_list, SIGKILL);
583b7ea3
JH
346 send_client_data(3, abort_msg, sizeof(abort_msg));
347 die("git-upload-pack: %s", abort_msg);
fb9040cc
LT
348}
349
def88e9a
LT
350static int got_sha1(char *hex, unsigned char *sha1)
351{
b1e9fff7 352 struct object *o;
937a515a 353 int we_knew_they_have = 0;
b1e9fff7 354
def88e9a
LT
355 if (get_sha1_hex(hex, sha1))
356 die("git-upload-pack: expected SHA1 object, got '%s'", hex);
fb9040cc 357 if (!has_sha1_file(sha1))
937a515a 358 return -1;
b1e9fff7
JH
359
360 o = lookup_object(sha1);
361 if (!(o && o->parsed))
362 o = parse_object(sha1);
363 if (!o)
364 die("oops (%s)", sha1_to_hex(sha1));
182a8dab 365 if (o->type == OBJ_COMMIT) {
b1e9fff7 366 struct commit_list *parents;
937a515a 367 struct commit *commit = (struct commit *)o;
b1e9fff7 368 if (o->flags & THEY_HAVE)
937a515a
JH
369 we_knew_they_have = 1;
370 else
371 o->flags |= THEY_HAVE;
372 if (!oldest_have || (commit->date < oldest_have))
373 oldest_have = commit->date;
374 for (parents = commit->parents;
b1e9fff7
JH
375 parents;
376 parents = parents->next)
377 parents->item->object.flags |= THEY_HAVE;
fb9040cc 378 }
937a515a
JH
379 if (!we_knew_they_have) {
380 add_object_array(o, NULL, &have_obj);
381 return 1;
382 }
383 return 0;
384}
385
386static int reachable(struct commit *want)
387{
388 struct commit_list *work = NULL;
389
390 insert_by_date(want, &work);
391 while (work) {
392 struct commit_list *list = work->next;
393 struct commit *commit = work->item;
394 free(work);
395 work = list;
396
397 if (commit->object.flags & THEY_HAVE) {
398 want->object.flags |= COMMON_KNOWN;
399 break;
400 }
401 if (!commit->object.parsed)
402 parse_object(commit->object.sha1);
403 if (commit->object.flags & REACHABLE)
404 continue;
405 commit->object.flags |= REACHABLE;
406 if (commit->date < oldest_have)
407 continue;
408 for (list = commit->parents; list; list = list->next) {
409 struct commit *parent = list->item;
410 if (!(parent->object.flags & REACHABLE))
411 insert_by_date(parent, &work);
412 }
413 }
414 want->object.flags |= REACHABLE;
415 clear_commit_marks(want, REACHABLE);
416 free_commit_list(work);
417 return (want->object.flags & COMMON_KNOWN);
418}
419
420static int ok_to_give_up(void)
421{
422 int i;
423
424 if (!have_obj.nr)
425 return 0;
426
427 for (i = 0; i < want_obj.nr; i++) {
428 struct object *want = want_obj.objects[i].item;
429
430 if (want->flags & COMMON_KNOWN)
431 continue;
432 want = deref_tag(want, "a want line", 0);
433 if (!want || want->type != OBJ_COMMIT) {
434 /* no way to tell if this is reachable by
435 * looking at the ancestry chain alone, so
436 * leave a note to ourselves not to worry about
437 * this object anymore.
438 */
439 want_obj.objects[i].item->flags |= COMMON_KNOWN;
440 continue;
441 }
442 if (!reachable((struct commit *)want))
443 return 0;
444 }
fb9040cc 445 return 1;
def88e9a
LT
446}
447
448static int get_common_commits(void)
449{
450 static char line[1000];
c04c4e57
JH
451 unsigned char sha1[20];
452 char hex[41], last_hex[41];
def88e9a
LT
453 int len;
454
f0243f26
JS
455 track_object_refs = 0;
456 save_commit_buffer = 0;
457
def88e9a
LT
458 for(;;) {
459 len = packet_read_line(0, line, sizeof(line));
960deccb 460 reset_timeout();
def88e9a
LT
461
462 if (!len) {
b1e9fff7 463 if (have_obj.nr == 0 || multi_ack)
1bd8c8f0 464 packet_write(1, "NAK\n");
def88e9a
LT
465 continue;
466 }
75bfc6c2 467 len = strip(line, len);
def88e9a 468 if (!strncmp(line, "have ", 5)) {
937a515a
JH
469 switch (got_sha1(line+5, sha1)) {
470 case -1: /* they have what we do not */
471 if (multi_ack && ok_to_give_up())
472 packet_write(1, "ACK %s continue\n",
473 sha1_to_hex(sha1));
474 break;
475 default:
c04c4e57
JH
476 memcpy(hex, sha1_to_hex(sha1), 41);
477 if (multi_ack) {
478 const char *msg = "ACK %s continue\n";
479 packet_write(1, msg, hex);
480 memcpy(last_hex, hex, 41);
481 }
482 else if (have_obj.nr == 1)
483 packet_write(1, "ACK %s\n", hex);
937a515a 484 break;
af2d3aa4 485 }
def88e9a
LT
486 continue;
487 }
488 if (!strcmp(line, "done")) {
b1e9fff7 489 if (have_obj.nr > 0) {
1bd8c8f0 490 if (multi_ack)
c04c4e57 491 packet_write(1, "ACK %s\n", last_hex);
1bd8c8f0
JS
492 return 0;
493 }
def88e9a
LT
494 packet_write(1, "NAK\n");
495 return -1;
496 }
497 die("git-upload-pack: expected SHA1 list, got '%s'", line);
498 }
def88e9a
LT
499}
500
b1e9fff7 501static void receive_needs(void)
fb9040cc 502{
ed09aef0 503 struct object_array shallows = {0, 0, NULL};
fb9040cc 504 static char line[1000];
016e6ccb 505 int len, depth = 0;
fb9040cc 506
fb9040cc 507 for (;;) {
565ebbf7 508 struct object *o;
6ece0d30 509 unsigned char sha1_buf[20];
fb9040cc 510 len = packet_read_line(0, line, sizeof(line));
960deccb 511 reset_timeout();
fb9040cc 512 if (!len)
ed09aef0 513 break;
e091eb93 514
ed09aef0
JS
515 if (!strncmp("shallow ", line, 8)) {
516 unsigned char sha1[20];
517 struct object *object;
f53514bc 518 use_thin_pack = 0;
ed09aef0
JS
519 if (get_sha1(line + 8, sha1))
520 die("invalid shallow line: %s", line);
521 object = parse_object(sha1);
522 if (!object)
523 die("did not find object for %s", line);
f53514bc 524 object->flags |= CLIENT_SHALLOW;
ed09aef0
JS
525 add_object_array(object, NULL, &shallows);
526 continue;
527 }
016e6ccb
JS
528 if (!strncmp("deepen ", line, 7)) {
529 char *end;
f53514bc 530 use_thin_pack = 0;
016e6ccb
JS
531 depth = strtol(line + 7, &end, 0);
532 if (end == line + 7 || depth <= 0)
533 die("Invalid deepen: %s", line);
534 continue;
535 }
6ece0d30
JH
536 if (strncmp("want ", line, 5) ||
537 get_sha1_hex(line+5, sha1_buf))
e091eb93
JH
538 die("git-upload-pack: protocol error, "
539 "expected to get sha, not '%s'", line);
1bd8c8f0
JS
540 if (strstr(line+45, "multi_ack"))
541 multi_ack = 1;
b19696c2
JH
542 if (strstr(line+45, "thin-pack"))
543 use_thin_pack = 1;
e4fe4b8e
NP
544 if (strstr(line+45, "ofs-delta"))
545 use_ofs_delta = 1;
d47f3db7
JH
546 if (strstr(line+45, "side-band-64k"))
547 use_sideband = LARGE_PACKET_MAX;
548 else if (strstr(line+45, "side-band"))
549 use_sideband = DEFAULT_PACKET_MAX;
565ebbf7
JH
550
551 /* We have sent all our refs already, and the other end
552 * should have chosen out of them; otherwise they are
553 * asking for nonsense.
554 *
555 * Hmph. We may later want to allow "want" line that
556 * asks for something like "master~10" (symbolic)...
557 * would it make sense? I don't know.
558 */
559 o = lookup_object(sha1_buf);
560 if (!o || !(o->flags & OUR_REF))
561 die("git-upload-pack: not our ref %s", line+5);
562 if (!(o->flags & WANTED)) {
563 o->flags |= WANTED;
b1e9fff7 564 add_object_array(o, NULL, &want_obj);
565ebbf7 565 }
fb9040cc 566 }
f53514bc
JS
567 if (depth == 0 && shallows.nr == 0)
568 return;
016e6ccb
JS
569 if (depth > 0) {
570 struct commit_list *result, *backup;
f53514bc
JS
571 int i;
572 backup = result = get_shallow_commits(&want_obj, depth,
573 SHALLOW, NOT_SHALLOW);
016e6ccb 574 while (result) {
f53514bc 575 struct object *object = &result->item->object;
1f2de769 576 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
f53514bc
JS
577 packet_write(1, "shallow %s",
578 sha1_to_hex(object->sha1));
579 register_shallow(object->sha1);
580 }
016e6ccb
JS
581 result = result->next;
582 }
583 free_commit_list(backup);
f53514bc
JS
584 for (i = 0; i < shallows.nr; i++) {
585 struct object *object = shallows.objects[i].item;
586 if (object->flags & NOT_SHALLOW) {
587 struct commit_list *parents;
588 packet_write(1, "unshallow %s",
589 sha1_to_hex(object->sha1));
590 object->flags &= ~CLIENT_SHALLOW;
591 /* make sure the real parents are parsed */
592 unregister_shallow(object->sha1);
176d45cb 593 object->parsed = 0;
f53514bc
JS
594 parse_commit((struct commit *)object);
595 parents = ((struct commit *)object)->parents;
596 while (parents) {
597 add_object_array(&parents->item->object,
598 NULL, &want_obj);
599 parents = parents->next;
600 }
601 }
602 /* make sure commit traversal conforms to client */
603 register_shallow(object->sha1);
604 }
605 packet_flush(1);
606 } else
607 if (shallows.nr > 0) {
608 int i;
609 for (i = 0; i < shallows.nr; i++)
610 register_shallow(shallows.objects[i].item->sha1);
611 }
612 free(shallows.objects);
fb9040cc
LT
613}
614
8da19775 615static int send_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
def88e9a 616{
ed09aef0
JS
617 static const char *capabilities = "multi_ack thin-pack side-band"
618 " side-band-64k ofs-delta shallow";
f6b42a81
JH
619 struct object *o = parse_object(sha1);
620
b5b16990
CW
621 if (!o)
622 die("git-upload-pack: cannot find object %s:", sha1_to_hex(sha1));
623
1f5881bb
JS
624 if (capabilities)
625 packet_write(1, "%s %s%c%s\n", sha1_to_hex(sha1), refname,
626 0, capabilities);
627 else
628 packet_write(1, "%s %s\n", sha1_to_hex(sha1), refname);
629 capabilities = NULL;
565ebbf7
JH
630 if (!(o->flags & OUR_REF)) {
631 o->flags |= OUR_REF;
632 nr_our_refs++;
633 }
1974632c 634 if (o->type == OBJ_TAG) {
9534f40b 635 o = deref_tag(o, refname, 0);
f6b42a81
JH
636 packet_write(1, "%s %s^{}\n", sha1_to_hex(o->sha1), refname);
637 }
def88e9a
LT
638 return 0;
639}
640
59076eba 641static void upload_pack(void)
def88e9a 642{
960deccb 643 reset_timeout();
cb5d709f
JH
644 head_ref(send_ref, NULL);
645 for_each_ref(send_ref, NULL);
def88e9a 646 packet_flush(1);
b1e9fff7 647 receive_needs();
59076eba
DR
648 if (want_obj.nr) {
649 get_common_commits();
650 create_pack_file();
651 }
def88e9a
LT
652}
653
654int main(int argc, char **argv)
655{
8d630132 656 char *dir;
960deccb
PA
657 int i;
658 int strict = 0;
659
660 for (i = 1; i < argc; i++) {
661 char *arg = argv[i];
662
663 if (arg[0] != '-')
664 break;
665 if (!strcmp(arg, "--strict")) {
666 strict = 1;
667 continue;
668 }
669 if (!strncmp(arg, "--timeout=", 10)) {
670 timeout = atoi(arg+10);
671 continue;
672 }
83a5ad61
JS
673 if (!strcmp(arg, "--no-progress")) {
674 no_progress = 1;
675 continue;
676 }
960deccb
PA
677 if (!strcmp(arg, "--")) {
678 i++;
679 break;
680 }
681 }
682
683 if (i != argc-1)
def88e9a 684 usage(upload_pack_usage);
960deccb 685 dir = argv[i];
113b9475 686
8d630132
AE
687 if (!enter_repo(dir, strict))
688 die("'%s': unable to chdir or not a git archive", dir);
a0022eeb
JH
689 if (is_repository_shallow())
690 die("attempt to fetch/clone from a shallow repository");
def88e9a
LT
691 upload_pack();
692 return 0;
693}