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