]> git.ipfire.org Git - thirdparty/git.git/blame - upload-pack.c
Merge branch 'ms/packet-err-check' into jt/fetch-v2-sideband
[thirdparty/git.git] / upload-pack.c
CommitLineData
def88e9a 1#include "cache.h"
b2141fc1 2#include "config.h"
def88e9a
LT
3#include "refs.h"
4#include "pkt-line.h"
958c24b1 5#include "sideband.h"
109cd76d 6#include "repository.h"
cbd53a21 7#include "object-store.h"
f6b42a81
JH
8#include "tag.h"
9#include "object.h"
f0243f26 10#include "commit.h"
9b8dc263
JS
11#include "diff.h"
12#include "revision.h"
13#include "list-objects.h"
10ac85c7
JH
14#include "list-objects-filter.h"
15#include "list-objects-filter-options.h"
cc41fa8d 16#include "run-command.h"
47a59185 17#include "connect.h"
051e4005 18#include "sigchain.h"
ff5effdf 19#include "version.h"
daebaa78 20#include "string-list.h"
569e554b 21#include "argv-array.h"
5411b10c 22#include "prio-queue.h"
aa9bab29 23#include "protocol.h"
10ac85c7 24#include "quote.h"
a3d6b53e 25#include "upload-pack.h"
3145ea95 26#include "serve.h"
829a3215 27#include "commit-graph.h"
ba3ca1ed 28#include "commit-reach.h"
def88e9a 29
208acbfb 30/* Remember to update object flag allocation in object.h */
937a515a
JH
31#define THEY_HAVE (1u << 11)
32#define OUR_REF (1u << 12)
33#define WANTED (1u << 13)
34#define COMMON_KNOWN (1u << 14)
937a515a 35
f53514bc
JS
36#define SHALLOW (1u << 16)
37#define NOT_SHALLOW (1u << 17)
38#define CLIENT_SHALLOW (1u << 18)
390eb36b 39#define HIDDEN_REF (1u << 19)
f53514bc 40
d1035cac
JT
41#define ALL_FLAGS (THEY_HAVE | OUR_REF | WANTED | COMMON_KNOWN | SHALLOW | \
42 NOT_SHALLOW | CLIENT_SHALLOW | HIDDEN_REF)
43
dddbad72 44static timestamp_t oldest_have;
937a515a 45
cccf74e2 46static int deepen_relative;
3f1da57f 47static int multi_ack;
4e10cf9a 48static int no_done;
348e390b 49static int use_thin_pack, use_ofs_delta, use_include_tag;
9462e3f5 50static int no_progress, daemon_mode;
7199c093
FM
51/* Allow specifying sha1 if it is a ref tip. */
52#define ALLOW_TIP_SHA1 01
68ee6289
FM
53/* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
54#define ALLOW_REACHABLE_SHA1 02
f8edeaa0
DT
55/* Allow request of any sha1. Implies ALLOW_TIP_SHA1 and ALLOW_REACHABLE_SHA1. */
56#define ALLOW_ANY_SHA1 07
7199c093 57static unsigned int allow_unadvertised_object_request;
f0cea83f 58static int shallow_nr;
6523078b 59static struct object_array extra_edge_obj;
96f1e58f 60static unsigned int timeout;
115dedd7 61static int keepalive = 5;
d47f3db7
JH
62/* 0 for no sideband,
63 * otherwise maximum packet size (up to 65520 bytes).
64 */
96f1e58f 65static int use_sideband;
42526b47 66static int stateless_rpc;
20b20a22 67static const char *pack_objects_hook;
960deccb 68
10ac85c7 69static int filter_capability_requested;
c7620bd0 70static int allow_filter;
516e2b76 71static int allow_ref_in_want;
10ac85c7
JH
72static struct list_objects_filter_options filter_options;
73
960deccb
PA
74static void reset_timeout(void)
75{
76 alarm(timeout);
77}
fb9040cc 78
fcf0fe9e 79static void send_client_data(int fd, const char *data, ssize_t sz)
583b7ea3 80{
4c4b7d1d
LF
81 if (use_sideband) {
82 send_sideband(1, fd, data, sz, use_sideband);
fcf0fe9e 83 return;
4c4b7d1d 84 }
958c24b1
JH
85 if (fd == 3)
86 /* emergency quit */
87 fd = 2;
88 if (fd == 2) {
93822c22 89 /* XXX: are we happy to lose stuff here? */
958c24b1 90 xwrite(fd, data, sz);
fcf0fe9e 91 return;
583b7ea3 92 }
cdf4fb8e 93 write_or_die(fd, data, sz);
583b7ea3
JH
94}
95
b790e0f6
NTND
96static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
97{
98 FILE *fp = cb_data;
99 if (graft->nr_parent == -1)
7683e2e6 100 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
b790e0f6
NTND
101 return 0;
102}
103
1d1243fe
JT
104static void create_pack_file(const struct object_array *have_obj,
105 const struct object_array *want_obj)
fb9040cc 106{
d3180279 107 struct child_process pack_objects = CHILD_PROCESS_INIT;
363b7817 108 char data[8193], progress[128];
583b7ea3
JH
109 char abort_msg[] = "aborting due to possible repository "
110 "corruption on the remote side.";
b1c71b72 111 int buffered = -1;
1456b043 112 ssize_t sz;
65a3629e 113 int i;
cdab4858 114 FILE *pipe_fd;
75bfc6c2 115
20b20a22
JK
116 if (!pack_objects_hook)
117 pack_objects.git_cmd = 1;
118 else {
119 argv_array_push(&pack_objects.args, pack_objects_hook);
120 argv_array_push(&pack_objects.args, "git");
121 pack_objects.use_shell = 1;
122 }
123
cdab4858 124 if (shallow_nr) {
65a3629e
MP
125 argv_array_push(&pack_objects.args, "--shallow-file");
126 argv_array_push(&pack_objects.args, "");
f0cea83f 127 }
65a3629e
MP
128 argv_array_push(&pack_objects.args, "pack-objects");
129 argv_array_push(&pack_objects.args, "--revs");
cdab4858 130 if (use_thin_pack)
65a3629e 131 argv_array_push(&pack_objects.args, "--thin");
75bfc6c2 132
65a3629e 133 argv_array_push(&pack_objects.args, "--stdout");
2dacf26d 134 if (shallow_nr)
65a3629e 135 argv_array_push(&pack_objects.args, "--shallow");
cc41fa8d 136 if (!no_progress)
65a3629e 137 argv_array_push(&pack_objects.args, "--progress");
cc41fa8d 138 if (use_ofs_delta)
65a3629e 139 argv_array_push(&pack_objects.args, "--delta-base-offset");
348e390b 140 if (use_include_tag)
65a3629e 141 argv_array_push(&pack_objects.args, "--include-tag");
10ac85c7 142 if (filter_options.filter_spec) {
0b6069fe
JT
143 if (pack_objects.use_shell) {
144 struct strbuf buf = STRBUF_INIT;
145 sq_quote_buf(&buf, filter_options.filter_spec);
146 argv_array_pushf(&pack_objects.args, "--filter=%s", buf.buf);
147 strbuf_release(&buf);
148 } else {
149 argv_array_pushf(&pack_objects.args, "--filter=%s",
150 filter_options.filter_spec);
151 }
10ac85c7 152 }
cc41fa8d 153
b9612197 154 pack_objects.in = -1;
cc41fa8d
JS
155 pack_objects.out = -1;
156 pack_objects.err = -1;
21edd3f1 157
4c324c00 158 if (start_command(&pack_objects))
7e44c935 159 die("git upload-pack: unable to fork git-pack-objects");
b1c71b72 160
cdab4858
NTND
161 pipe_fd = xfdopen(pack_objects.in, "w");
162
b790e0f6
NTND
163 if (shallow_nr)
164 for_each_commit_graft(write_one_shallow, pipe_fd);
165
1d1243fe 166 for (i = 0; i < want_obj->nr; i++)
cdab4858 167 fprintf(pipe_fd, "%s\n",
1d1243fe 168 oid_to_hex(&want_obj->objects[i].item->oid));
cdab4858 169 fprintf(pipe_fd, "--not\n");
0b9333ff 170 for (i = 0; i < have_obj->nr; i++)
cdab4858 171 fprintf(pipe_fd, "%s\n",
0b9333ff 172 oid_to_hex(&have_obj->objects[i].item->oid));
cdab4858
NTND
173 for (i = 0; i < extra_edge_obj.nr; i++)
174 fprintf(pipe_fd, "%s\n",
f2fd0760 175 oid_to_hex(&extra_edge_obj.objects[i].item->oid));
cdab4858
NTND
176 fprintf(pipe_fd, "\n");
177 fflush(pipe_fd);
178 fclose(pipe_fd);
f0cea83f 179
cc41fa8d
JS
180 /* We read from pack_objects.err to capture stderr output for
181 * progress bar, and pack_objects.out to capture the pack data.
b1c71b72 182 */
b1c71b72
JH
183
184 while (1) {
b1c71b72 185 struct pollfd pfd[2];
363b7817 186 int pe, pu, pollsize;
05e95155 187 int ret;
b1c71b72 188
0d516ada
ML
189 reset_timeout();
190
b1c71b72 191 pollsize = 0;
363b7817 192 pe = pu = -1;
b1c71b72 193
cc41fa8d
JS
194 if (0 <= pack_objects.out) {
195 pfd[pollsize].fd = pack_objects.out;
b1c71b72
JH
196 pfd[pollsize].events = POLLIN;
197 pu = pollsize;
198 pollsize++;
199 }
cc41fa8d
JS
200 if (0 <= pack_objects.err) {
201 pfd[pollsize].fd = pack_objects.err;
363b7817
JH
202 pfd[pollsize].events = POLLIN;
203 pe = pollsize;
204 pollsize++;
205 }
b1c71b72 206
4c324c00
JS
207 if (!pollsize)
208 break;
209
6c71f8b0
ET
210 ret = poll(pfd, pollsize,
211 keepalive < 0 ? -1 : 1000 * keepalive);
212
05e95155 213 if (ret < 0) {
4c324c00 214 if (errno != EINTR) {
d2b6afa2 215 error_errno("poll failed, resuming");
4c324c00 216 sleep(1);
b1c71b72 217 }
4c324c00
JS
218 continue;
219 }
6b59f51b
NP
220 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
221 /* Status ready; we ship that in the side-band
222 * or dump to the standard error.
223 */
224 sz = xread(pack_objects.err, progress,
225 sizeof(progress));
226 if (0 < sz)
227 send_client_data(2, progress, sz);
228 else if (sz == 0) {
229 close(pack_objects.err);
230 pack_objects.err = -1;
231 }
232 else
233 goto fail;
234 /* give priority to status messages */
235 continue;
236 }
4c324c00
JS
237 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
238 /* Data ready; we keep the last byte to ourselves
239 * in case we detect broken rev-list, so that we
240 * can leave the stream corrupted. This is
241 * unfortunate -- unpack-objects would happily
242 * accept a valid packdata with trailing garbage,
243 * so appending garbage after we pass all the
244 * pack data is not good enough to signal
245 * breakage to downstream.
246 */
247 char *cp = data;
248 ssize_t outsz = 0;
249 if (0 <= buffered) {
250 *cp++ = buffered;
251 outsz++;
b1c71b72 252 }
4c324c00
JS
253 sz = xread(pack_objects.out, cp,
254 sizeof(data) - outsz);
255 if (0 < sz)
1456b043 256 ;
4c324c00
JS
257 else if (sz == 0) {
258 close(pack_objects.out);
259 pack_objects.out = -1;
363b7817 260 }
4c324c00
JS
261 else
262 goto fail;
263 sz += outsz;
264 if (1 < sz) {
265 buffered = data[sz-1] & 0xFF;
266 sz--;
b1c71b72 267 }
4c324c00
JS
268 else
269 buffered = -1;
fcf0fe9e 270 send_client_data(1, data, sz);
4c324c00 271 }
05e95155
JK
272
273 /*
274 * We hit the keepalive timeout without saying anything; send
275 * an empty message on the data sideband just to let the other
276 * side know we're still working on it, but don't have any data
277 * yet.
278 *
279 * If we don't have a sideband channel, there's no room in the
280 * protocol to say anything, so those clients are just out of
281 * luck.
282 */
283 if (!ret && use_sideband) {
284 static const char buf[] = "0005\1";
285 write_or_die(1, buf, 5);
286 }
4c324c00 287 }
b1c71b72 288
4c324c00 289 if (finish_command(&pack_objects)) {
7e44c935 290 error("git upload-pack: git-pack-objects died with error.");
4c324c00
JS
291 goto fail;
292 }
b1c71b72 293
4c324c00
JS
294 /* flush the data */
295 if (0 <= buffered) {
296 data[0] = buffered;
fcf0fe9e 297 send_client_data(1, data, 1);
4c324c00 298 fprintf(stderr, "flushed.\n");
b1c71b72 299 }
4c324c00
JS
300 if (use_sideband)
301 packet_flush(1);
302 return;
303
b1c71b72 304 fail:
583b7ea3 305 send_client_data(3, abort_msg, sizeof(abort_msg));
7e44c935 306 die("git upload-pack: %s", abort_msg);
fb9040cc
LT
307}
308
0b9333ff
JT
309static int got_oid(const char *hex, struct object_id *oid,
310 struct object_array *have_obj)
def88e9a 311{
b1e9fff7 312 struct object *o;
937a515a 313 int we_knew_they_have = 0;
b1e9fff7 314
cf93982f 315 if (get_oid_hex(hex, oid))
7e44c935 316 die("git upload-pack: expected SHA1 object, got '%s'", hex);
cf93982f 317 if (!has_object_file(oid))
937a515a 318 return -1;
b1e9fff7 319
109cd76d 320 o = parse_object(the_repository, oid);
b1e9fff7 321 if (!o)
cf93982f 322 die("oops (%s)", oid_to_hex(oid));
182a8dab 323 if (o->type == OBJ_COMMIT) {
b1e9fff7 324 struct commit_list *parents;
937a515a 325 struct commit *commit = (struct commit *)o;
b1e9fff7 326 if (o->flags & THEY_HAVE)
937a515a
JH
327 we_knew_they_have = 1;
328 else
329 o->flags |= THEY_HAVE;
330 if (!oldest_have || (commit->date < oldest_have))
331 oldest_have = commit->date;
332 for (parents = commit->parents;
b1e9fff7
JH
333 parents;
334 parents = parents->next)
335 parents->item->object.flags |= THEY_HAVE;
fb9040cc 336 }
937a515a 337 if (!we_knew_they_have) {
0b9333ff 338 add_object_array(o, NULL, have_obj);
937a515a
JH
339 return 1;
340 }
341 return 0;
342}
343
1d1243fe
JT
344static int ok_to_give_up(const struct object_array *have_obj,
345 struct object_array *want_obj)
937a515a 346{
4fbcca4e 347 uint32_t min_generation = GENERATION_NUMBER_ZERO;
937a515a 348
0b9333ff 349 if (!have_obj->nr)
937a515a
JH
350 return 0;
351
1d1243fe 352 return can_all_from_reach_with_flag(want_obj, THEY_HAVE,
4fbcca4e
DS
353 COMMON_KNOWN, oldest_have,
354 min_generation);
def88e9a
LT
355}
356
01f9ec64
MS
357static int get_common_commits(struct packet_reader *reader,
358 struct object_array *have_obj,
1d1243fe 359 struct object_array *want_obj)
def88e9a 360{
cf93982f 361 struct object_id oid;
362 char last_hex[GIT_MAX_HEXSZ + 1];
49bee717
SP
363 int got_common = 0;
364 int got_other = 0;
4e10cf9a 365 int sent_ready = 0;
def88e9a 366
f0243f26
JS
367 save_commit_buffer = 0;
368
eeefa7c9 369 for (;;) {
8bf3b758
NTND
370 const char *arg;
371
960deccb 372 reset_timeout();
def88e9a 373
01f9ec64 374 if (packet_reader_read(reader) != PACKET_READ_NORMAL) {
49bee717 375 if (multi_ack == 2 && got_common
1d1243fe 376 && !got_other && ok_to_give_up(have_obj, want_obj)) {
4e10cf9a 377 sent_ready = 1;
81c634e9 378 packet_write_fmt(1, "ACK %s ready\n", last_hex);
4e10cf9a 379 }
0b9333ff 380 if (have_obj->nr == 0 || multi_ack)
81c634e9 381 packet_write_fmt(1, "NAK\n");
4e10cf9a
JH
382
383 if (no_done && sent_ready) {
81c634e9 384 packet_write_fmt(1, "ACK %s\n", last_hex);
4e10cf9a
JH
385 return 0;
386 }
42526b47
SP
387 if (stateless_rpc)
388 exit(0);
49bee717
SP
389 got_common = 0;
390 got_other = 0;
def88e9a
LT
391 continue;
392 }
01f9ec64 393 if (skip_prefix(reader->line, "have ", &arg)) {
0b9333ff 394 switch (got_oid(arg, &oid, have_obj)) {
937a515a 395 case -1: /* they have what we do not */
49bee717 396 got_other = 1;
1d1243fe 397 if (multi_ack && ok_to_give_up(have_obj, want_obj)) {
cf93982f 398 const char *hex = oid_to_hex(&oid);
4e10cf9a
JH
399 if (multi_ack == 2) {
400 sent_ready = 1;
81c634e9 401 packet_write_fmt(1, "ACK %s ready\n", hex);
4e10cf9a 402 } else
81c634e9 403 packet_write_fmt(1, "ACK %s continue\n", hex);
78affc49 404 }
937a515a
JH
405 break;
406 default:
49bee717 407 got_common = 1;
55dc227d 408 oid_to_hex_r(last_hex, &oid);
78affc49 409 if (multi_ack == 2)
81c634e9 410 packet_write_fmt(1, "ACK %s common\n", last_hex);
78affc49 411 else if (multi_ack)
81c634e9 412 packet_write_fmt(1, "ACK %s continue\n", last_hex);
0b9333ff 413 else if (have_obj->nr == 1)
81c634e9 414 packet_write_fmt(1, "ACK %s\n", last_hex);
937a515a 415 break;
af2d3aa4 416 }
def88e9a
LT
417 continue;
418 }
01f9ec64 419 if (!strcmp(reader->line, "done")) {
0b9333ff 420 if (have_obj->nr > 0) {
1bd8c8f0 421 if (multi_ack)
81c634e9 422 packet_write_fmt(1, "ACK %s\n", last_hex);
1bd8c8f0
JS
423 return 0;
424 }
81c634e9 425 packet_write_fmt(1, "NAK\n");
def88e9a
LT
426 return -1;
427 }
01f9ec64 428 die("git upload-pack: expected SHA1 list, got '%s'", reader->line);
def88e9a 429 }
def88e9a
LT
430}
431
390eb36b
JH
432static int is_our_ref(struct object *o)
433{
68ee6289
FM
434 int allow_hidden_ref = (allow_unadvertised_object_request &
435 (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
7199c093 436 return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
390eb36b
JH
437}
438
2997178e
NTND
439/*
440 * on successful case, it's up to the caller to close cmd->out
441 */
442static int do_reachable_revlist(struct child_process *cmd,
079aa97e
NTND
443 struct object_array *src,
444 struct object_array *reachable)
051e4005
JH
445{
446 static const char *argv[] = {
447 "rev-list", "--stdin", NULL,
448 };
051e4005 449 struct object *o;
55dc227d 450 char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
051e4005 451 int i;
f690b6b0 452 const unsigned hexsz = the_hash_algo->hexsz;
051e4005 453
2997178e
NTND
454 cmd->argv = argv;
455 cmd->git_cmd = 1;
456 cmd->no_stderr = 1;
457 cmd->in = -1;
458 cmd->out = -1;
051e4005
JH
459
460 /*
7fcbd37f
NTND
461 * If the next rev-list --stdin encounters an unknown commit,
462 * it terminates, which will cause SIGPIPE in the write loop
051e4005
JH
463 * below.
464 */
465 sigchain_push(SIGPIPE, SIG_IGN);
466
2997178e 467 if (start_command(cmd))
7fcbd37f
NTND
468 goto error;
469
051e4005 470 namebuf[0] = '^';
f690b6b0 471 namebuf[hexsz + 1] = '\n';
051e4005
JH
472 for (i = get_max_object_index(); 0 < i; ) {
473 o = get_indexed_object(--i);
2a745324
BH
474 if (!o)
475 continue;
079aa97e
NTND
476 if (reachable && o->type == OBJ_COMMIT)
477 o->flags &= ~TMP_MARK;
390eb36b 478 if (!is_our_ref(o))
051e4005 479 continue;
f690b6b0 480 memcpy(namebuf + 1, oid_to_hex(&o->oid), hexsz);
481 if (write_in_full(cmd->in, namebuf, hexsz + 2) < 0)
051e4005
JH
482 goto error;
483 }
f690b6b0 484 namebuf[hexsz] = '\n';
3f0f6624
NTND
485 for (i = 0; i < src->nr; i++) {
486 o = src->objects[i].item;
079aa97e
NTND
487 if (is_our_ref(o)) {
488 if (reachable)
489 add_object_array(o, NULL, reachable);
051e4005 490 continue;
079aa97e
NTND
491 }
492 if (reachable && o->type == OBJ_COMMIT)
493 o->flags |= TMP_MARK;
f690b6b0 494 memcpy(namebuf, oid_to_hex(&o->oid), hexsz);
495 if (write_in_full(cmd->in, namebuf, hexsz + 1) < 0)
051e4005
JH
496 goto error;
497 }
2997178e
NTND
498 close(cmd->in);
499 cmd->in = -1;
500 sigchain_pop(SIGPIPE);
051e4005 501
2997178e
NTND
502 return 0;
503
504error:
051e4005
JH
505 sigchain_pop(SIGPIPE);
506
2997178e
NTND
507 if (cmd->in >= 0)
508 close(cmd->in);
509 if (cmd->out >= 0)
510 close(cmd->out);
511 return -1;
512}
513
079aa97e
NTND
514static int get_reachable_list(struct object_array *src,
515 struct object_array *reachable)
516{
517 struct child_process cmd = CHILD_PROCESS_INIT;
518 int i;
519 struct object *o;
55dc227d 520 char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
521 const unsigned hexsz = the_hash_algo->hexsz;
079aa97e
NTND
522
523 if (do_reachable_revlist(&cmd, src, reachable) < 0)
524 return -1;
525
55dc227d 526 while ((i = read_in_full(cmd.out, namebuf, hexsz + 1)) == hexsz + 1) {
079aa97e 527 struct object_id sha1;
55dc227d 528 const char *p;
079aa97e 529
55dc227d 530 if (parse_oid_hex(namebuf, &sha1, &p) || *p != '\n')
079aa97e
NTND
531 break;
532
5abddd1e 533 o = lookup_object(the_repository, sha1.hash);
079aa97e
NTND
534 if (o && o->type == OBJ_COMMIT) {
535 o->flags &= ~TMP_MARK;
536 }
537 }
538 for (i = get_max_object_index(); 0 < i; i--) {
539 o = get_indexed_object(i - 1);
540 if (o && o->type == OBJ_COMMIT &&
541 (o->flags & TMP_MARK)) {
542 add_object_array(o, NULL, reachable);
543 o->flags &= ~TMP_MARK;
544 }
545 }
546 close(cmd.out);
547
548 if (finish_command(&cmd))
549 return -1;
550
551 return 0;
552}
553
2997178e
NTND
554static int has_unreachable(struct object_array *src)
555{
556 struct child_process cmd = CHILD_PROCESS_INIT;
557 char buf[1];
558 int i;
559
079aa97e 560 if (do_reachable_revlist(&cmd, src, NULL) < 0)
2997178e 561 return 1;
051e4005
JH
562
563 /*
564 * The commits out of the rev-list are not ancestors of
565 * our ref.
566 */
2997178e 567 i = read_in_full(cmd.out, buf, 1);
051e4005
JH
568 if (i)
569 goto error;
570 close(cmd.out);
7fcbd37f 571 cmd.out = -1;
051e4005
JH
572
573 /*
574 * rev-list may have died by encountering a bad commit
575 * in the history, in which case we do want to bail out
576 * even when it showed no commit.
577 */
578 if (finish_command(&cmd))
579 goto error;
580
581 /* All the non-tip ones are ancestors of what we advertised */
3f0f6624 582 return 0;
051e4005
JH
583
584error:
7fcbd37f 585 sigchain_pop(SIGPIPE);
7fcbd37f
NTND
586 if (cmd.out >= 0)
587 close(cmd.out);
3f0f6624
NTND
588 return 1;
589}
7fcbd37f 590
1d1243fe 591static void check_non_tip(struct object_array *want_obj)
3f0f6624
NTND
592{
593 int i;
594
595 /*
596 * In the normal in-process case without
597 * uploadpack.allowReachableSHA1InWant,
598 * non-tip requests can never happen.
599 */
600 if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
601 goto error;
1d1243fe 602 if (!has_unreachable(want_obj))
3f0f6624
NTND
603 /* All the non-tip ones are ancestors of what we advertised */
604 return;
051e4005
JH
605
606error:
607 /* Pick one of them (we know there at least is one) */
1d1243fe
JT
608 for (i = 0; i < want_obj->nr; i++) {
609 struct object *o = want_obj->objects[i].item;
390eb36b 610 if (!is_our_ref(o))
051e4005 611 die("git upload-pack: not our ref %s",
f2fd0760 612 oid_to_hex(&o->oid));
051e4005
JH
613 }
614}
615
5c24cdea
NTND
616static void send_shallow(struct commit_list *result)
617{
618 while (result) {
619 struct object *object = &result->item->object;
620 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
dbaa6bdc
JH
621 packet_write_fmt(1, "shallow %s",
622 oid_to_hex(&object->oid));
19143f13 623 register_shallow(the_repository, &object->oid);
5c24cdea
NTND
624 shallow_nr++;
625 }
626 result = result->next;
627 }
628}
629
1d1243fe
JT
630static void send_unshallow(const struct object_array *shallows,
631 struct object_array *want_obj)
e8e44de7 632{
e8e44de7 633 int i;
873700c9 634
e8e44de7
NTND
635 for (i = 0; i < shallows->nr; i++) {
636 struct object *object = shallows->objects[i].item;
637 if (object->flags & NOT_SHALLOW) {
638 struct commit_list *parents;
dbaa6bdc
JH
639 packet_write_fmt(1, "unshallow %s",
640 oid_to_hex(&object->oid));
e8e44de7 641 object->flags &= ~CLIENT_SHALLOW;
873700c9
NTND
642 /*
643 * We want to _register_ "object" as shallow, but we
644 * also need to traverse object's parents to deepen a
645 * shallow clone. Unregister it for now so we can
646 * parse and add the parents to the want list, then
647 * re-register it.
648 */
e92b848c 649 unregister_shallow(&object->oid);
e8e44de7
NTND
650 object->parsed = 0;
651 parse_commit_or_die((struct commit *)object);
652 parents = ((struct commit *)object)->parents;
653 while (parents) {
654 add_object_array(&parents->item->object,
1d1243fe 655 NULL, want_obj);
e8e44de7
NTND
656 parents = parents->next;
657 }
658 add_object_array(object, NULL, &extra_edge_obj);
659 }
660 /* make sure commit traversal conforms to client */
19143f13 661 register_shallow(the_repository, &object->oid);
e8e44de7 662 }
873700c9
NTND
663}
664
cccf74e2 665static void deepen(int depth, int deepen_relative,
1d1243fe 666 struct object_array *shallows, struct object_array *want_obj)
873700c9 667{
c8813487 668 if (depth == INFINITE_DEPTH && !is_repository_shallow(the_repository)) {
873700c9
NTND
669 int i;
670
671 for (i = 0; i < shallows->nr; i++) {
672 struct object *object = shallows->objects[i].item;
673 object->flags |= NOT_SHALLOW;
674 }
cccf74e2
NTND
675 } else if (deepen_relative) {
676 struct object_array reachable_shallows = OBJECT_ARRAY_INIT;
677 struct commit_list *result;
678
679 get_reachable_list(shallows, &reachable_shallows);
680 result = get_shallow_commits(&reachable_shallows,
681 depth + 1,
682 SHALLOW, NOT_SHALLOW);
683 send_shallow(result);
684 free_commit_list(result);
685 object_array_clear(&reachable_shallows);
873700c9
NTND
686 } else {
687 struct commit_list *result;
688
1d1243fe 689 result = get_shallow_commits(want_obj, depth,
873700c9
NTND
690 SHALLOW, NOT_SHALLOW);
691 send_shallow(result);
692 free_commit_list(result);
693 }
694
1d1243fe 695 send_unshallow(shallows, want_obj);
e8e44de7
NTND
696}
697
569e554b 698static void deepen_by_rev_list(int ac, const char **av,
1d1243fe
JT
699 struct object_array *shallows,
700 struct object_array *want_obj)
569e554b
NTND
701{
702 struct commit_list *result;
703
829a3215 704 close_commit_graph(the_repository);
569e554b
NTND
705 result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW);
706 send_shallow(result);
707 free_commit_list(result);
1d1243fe 708 send_unshallow(shallows, want_obj);
685fbd32
BW
709}
710
711/* Returns 1 if a shallow list is sent or 0 otherwise */
712static int send_shallow_list(int depth, int deepen_rev_list,
713 timestamp_t deepen_since,
714 struct string_list *deepen_not,
1d1243fe
JT
715 struct object_array *shallows,
716 struct object_array *want_obj)
685fbd32
BW
717{
718 int ret = 0;
719
720 if (depth > 0 && deepen_rev_list)
721 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
722 if (depth > 0) {
1d1243fe 723 deepen(depth, deepen_relative, shallows, want_obj);
685fbd32
BW
724 ret = 1;
725 } else if (deepen_rev_list) {
726 struct argv_array av = ARGV_ARRAY_INIT;
727 int i;
728
729 argv_array_push(&av, "rev-list");
730 if (deepen_since)
731 argv_array_pushf(&av, "--max-age=%"PRItime, deepen_since);
732 if (deepen_not->nr) {
733 argv_array_push(&av, "--not");
734 for (i = 0; i < deepen_not->nr; i++) {
735 struct string_list_item *s = deepen_not->items + i;
736 argv_array_push(&av, s->string);
737 }
738 argv_array_push(&av, "--not");
739 }
1d1243fe
JT
740 for (i = 0; i < want_obj->nr; i++) {
741 struct object *o = want_obj->objects[i].item;
685fbd32
BW
742 argv_array_push(&av, oid_to_hex(&o->oid));
743 }
1d1243fe 744 deepen_by_rev_list(av.argc, av.argv, shallows, want_obj);
685fbd32
BW
745 argv_array_clear(&av);
746 ret = 1;
747 } else {
748 if (shallows->nr > 0) {
749 int i;
750 for (i = 0; i < shallows->nr; i++)
00624d60
JH
751 register_shallow(the_repository,
752 &shallows->objects[i].item->oid);
685fbd32
BW
753 }
754 }
755
756 shallow_nr += shallows->nr;
757 return ret;
569e554b
NTND
758}
759
ae2948f3
BW
760static int process_shallow(const char *line, struct object_array *shallows)
761{
762 const char *arg;
763 if (skip_prefix(line, "shallow ", &arg)) {
764 struct object_id oid;
765 struct object *object;
766 if (get_oid_hex(arg, &oid))
767 die("invalid shallow line: %s", line);
109cd76d 768 object = parse_object(the_repository, &oid);
ae2948f3
BW
769 if (!object)
770 return 1;
771 if (object->type != OBJ_COMMIT)
772 die("invalid shallow object %s", oid_to_hex(&oid));
773 if (!(object->flags & CLIENT_SHALLOW)) {
774 object->flags |= CLIENT_SHALLOW;
775 add_object_array(object, NULL, shallows);
776 }
777 return 1;
778 }
779
780 return 0;
781}
782
783static int process_deepen(const char *line, int *depth)
784{
785 const char *arg;
786 if (skip_prefix(line, "deepen ", &arg)) {
787 char *end = NULL;
788 *depth = (int)strtol(arg, &end, 0);
789 if (!end || *end || *depth <= 0)
790 die("Invalid deepen: %s", line);
791 return 1;
792 }
793
794 return 0;
795}
796
797static int process_deepen_since(const char *line, timestamp_t *deepen_since, int *deepen_rev_list)
798{
799 const char *arg;
800 if (skip_prefix(line, "deepen-since ", &arg)) {
801 char *end = NULL;
802 *deepen_since = parse_timestamp(arg, &end, 0);
803 if (!end || *end || !deepen_since ||
804 /* revisions.c's max_age -1 is special */
805 *deepen_since == -1)
806 die("Invalid deepen-since: %s", line);
807 *deepen_rev_list = 1;
808 return 1;
809 }
810 return 0;
811}
812
813static int process_deepen_not(const char *line, struct string_list *deepen_not, int *deepen_rev_list)
814{
815 const char *arg;
816 if (skip_prefix(line, "deepen-not ", &arg)) {
817 char *ref = NULL;
818 struct object_id oid;
819 if (expand_ref(arg, strlen(arg), &oid, &ref) != 1)
820 die("git upload-pack: ambiguous deepen-not: %s", line);
821 string_list_append(deepen_not, ref);
822 free(ref);
823 *deepen_rev_list = 1;
824 return 1;
825 }
826 return 0;
569e554b
NTND
827}
828
01f9ec64 829static void receive_needs(struct packet_reader *reader, struct object_array *want_obj)
fb9040cc 830{
3cd47459 831 struct object_array shallows = OBJECT_ARRAY_INIT;
269a7a83 832 struct string_list deepen_not = STRING_LIST_INIT_DUP;
74543a04 833 int depth = 0;
051e4005 834 int has_non_tip = 0;
dddbad72 835 timestamp_t deepen_since = 0;
569e554b 836 int deepen_rev_list = 0;
fb9040cc 837
f0cea83f 838 shallow_nr = 0;
fb9040cc 839 for (;;) {
565ebbf7 840 struct object *o;
f47182c8 841 const char *features;
cf93982f 842 struct object_id oid_buf;
8bf3b758
NTND
843 const char *arg;
844
960deccb 845 reset_timeout();
01f9ec64 846 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
ed09aef0 847 break;
e091eb93 848
01f9ec64 849 if (process_shallow(reader->line, &shallows))
ed09aef0 850 continue;
01f9ec64 851 if (process_deepen(reader->line, &depth))
016e6ccb 852 continue;
01f9ec64 853 if (process_deepen_since(reader->line, &deepen_since, &deepen_rev_list))
569e554b 854 continue;
01f9ec64 855 if (process_deepen_not(reader->line, &deepen_not, &deepen_rev_list))
269a7a83 856 continue;
ae2948f3 857
01f9ec64 858 if (skip_prefix(reader->line, "filter ", &arg)) {
10ac85c7
JH
859 if (!filter_capability_requested)
860 die("git upload-pack: filtering capability not negotiated");
861 parse_list_objects_filter(&filter_options, arg);
862 continue;
863 }
9bfa0f9b 864
01f9ec64 865 if (!skip_prefix(reader->line, "want ", &arg) ||
55dc227d 866 parse_oid_hex(arg, &oid_buf, &features))
7e44c935 867 die("git upload-pack: protocol error, "
01f9ec64 868 "expected to get object ID, not '%s'", reader->line);
f47182c8 869
cccf74e2
NTND
870 if (parse_feature_request(features, "deepen-relative"))
871 deepen_relative = 1;
f47182c8 872 if (parse_feature_request(features, "multi_ack_detailed"))
78affc49 873 multi_ack = 2;
f47182c8 874 else if (parse_feature_request(features, "multi_ack"))
1bd8c8f0 875 multi_ack = 1;
f47182c8 876 if (parse_feature_request(features, "no-done"))
4e10cf9a 877 no_done = 1;
f47182c8 878 if (parse_feature_request(features, "thin-pack"))
b19696c2 879 use_thin_pack = 1;
f47182c8 880 if (parse_feature_request(features, "ofs-delta"))
e4fe4b8e 881 use_ofs_delta = 1;
f47182c8 882 if (parse_feature_request(features, "side-band-64k"))
d47f3db7 883 use_sideband = LARGE_PACKET_MAX;
f47182c8 884 else if (parse_feature_request(features, "side-band"))
d47f3db7 885 use_sideband = DEFAULT_PACKET_MAX;
f47182c8 886 if (parse_feature_request(features, "no-progress"))
b0e90897 887 no_progress = 1;
f47182c8 888 if (parse_feature_request(features, "include-tag"))
348e390b 889 use_include_tag = 1;
c7620bd0 890 if (allow_filter && parse_feature_request(features, "filter"))
10ac85c7 891 filter_capability_requested = 1;
565ebbf7 892
109cd76d 893 o = parse_object(the_repository, &oid_buf);
bdb31ead
JT
894 if (!o) {
895 packet_write_fmt(1,
896 "ERR upload-pack: not our ref %s",
cf93982f 897 oid_to_hex(&oid_buf));
9f9aa761 898 die("git upload-pack: not our ref %s",
cf93982f 899 oid_to_hex(&oid_buf));
bdb31ead 900 }
565ebbf7
JH
901 if (!(o->flags & WANTED)) {
902 o->flags |= WANTED;
f8edeaa0
DT
903 if (!((allow_unadvertised_object_request & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1
904 || is_our_ref(o)))
051e4005 905 has_non_tip = 1;
1d1243fe 906 add_object_array(o, NULL, want_obj);
565ebbf7 907 }
fb9040cc 908 }
9462e3f5 909
051e4005
JH
910 /*
911 * We have sent all our refs already, and the other end
912 * should have chosen out of them. When we are operating
913 * in the stateless RPC mode, however, their choice may
914 * have been based on the set of older refs advertised
915 * by another process that handled the initial request.
916 */
917 if (has_non_tip)
1d1243fe 918 check_non_tip(want_obj);
051e4005 919
9462e3f5
JS
920 if (!use_sideband && daemon_mode)
921 no_progress = 1;
922
569e554b 923 if (depth == 0 && !deepen_rev_list && shallows.nr == 0)
f53514bc 924 return;
569e554b 925
685fbd32 926 if (send_shallow_list(depth, deepen_rev_list, deepen_since,
1d1243fe 927 &deepen_not, &shallows, want_obj))
685fbd32 928 packet_flush(1);
dcb572ab 929 object_array_clear(&shallows);
fb9040cc
LT
930}
931
daebaa78 932/* return non-zero if the ref is hidden, otherwise 0 */
78a766ab
LF
933static int mark_our_ref(const char *refname, const char *refname_full,
934 const struct object_id *oid)
cbbe50db 935{
363e98bf 936 struct object *o = lookup_unknown_object(oid->hash);
daebaa78 937
78a766ab 938 if (ref_is_hidden(refname, refname_full)) {
390eb36b 939 o->flags |= HIDDEN_REF;
daebaa78 940 return 1;
390eb36b 941 }
3f1da57f 942 o->flags |= OUR_REF;
cbbe50db
JH
943 return 0;
944}
945
78a766ab 946static int check_ref(const char *refname_full, const struct object_id *oid,
363e98bf 947 int flag, void *cb_data)
e172755b 948{
78a766ab
LF
949 const char *refname = strip_namespace(refname_full);
950
951 mark_our_ref(refname, refname_full, oid);
e172755b
JK
952 return 0;
953}
954
7171d8c1
JH
955static void format_symref_info(struct strbuf *buf, struct string_list *symref)
956{
957 struct string_list_item *item;
958
959 if (!symref->nr)
960 return;
961 for_each_string_list_item(item, symref)
962 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
963}
964
363e98bf
MH
965static int send_ref(const char *refname, const struct object_id *oid,
966 int flag, void *cb_data)
def88e9a 967{
ed09aef0 968 static const char *capabilities = "multi_ack thin-pack side-band"
cccf74e2
NTND
969 " side-band-64k ofs-delta shallow deepen-since deepen-not"
970 " deepen-relative no-progress include-tag multi_ack_detailed";
6b01ecfe 971 const char *refname_nons = strip_namespace(refname);
21758aff 972 struct object_id peeled;
b5b16990 973
78a766ab 974 if (mark_our_ref(refname_nons, refname, oid))
daebaa78 975 return 0;
cbbe50db 976
7171d8c1
JH
977 if (capabilities) {
978 struct strbuf symref_info = STRBUF_INIT;
979
980 format_symref_info(&symref_info, cb_data);
10ac85c7 981 packet_write_fmt(1, "%s %s%c%s%s%s%s%s%s agent=%s\n",
363e98bf 982 oid_to_hex(oid), refname_nons,
cf2ad8e6 983 0, capabilities,
7199c093
FM
984 (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
985 " allow-tip-sha1-in-want" : "",
68ee6289
FM
986 (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
987 " allow-reachable-sha1-in-want" : "",
ff5effdf 988 stateless_rpc ? " no-done" : "",
7171d8c1 989 symref_info.buf,
c7620bd0 990 allow_filter ? " filter" : "",
ff5effdf 991 git_user_agent_sanitized());
7171d8c1
JH
992 strbuf_release(&symref_info);
993 } else {
81c634e9 994 packet_write_fmt(1, "%s %s\n", oid_to_hex(oid), refname_nons);
7171d8c1 995 }
1f5881bb 996 capabilities = NULL;
b420d909 997 if (!peel_ref(refname, &peeled))
81c634e9 998 packet_write_fmt(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
def88e9a
LT
999 return 0;
1000}
1001
7dabd056
MH
1002static int find_symref(const char *refname, const struct object_id *oid,
1003 int flag, void *cb_data)
7171d8c1
JH
1004{
1005 const char *symref_target;
1006 struct string_list_item *item;
7171d8c1
JH
1007
1008 if ((flag & REF_ISSYMREF) == 0)
1009 return 0;
744c040b 1010 symref_target = resolve_ref_unsafe(refname, 0, NULL, &flag);
7171d8c1
JH
1011 if (!symref_target || (flag & REF_ISSYMREF) == 0)
1012 die("'%s' is a symref but it is not?", refname);
1013 item = string_list_append(cb_data, refname);
1014 item->util = xstrdup(symref_target);
1015 return 0;
1016}
1017
daebaa78
JH
1018static int upload_pack_config(const char *var, const char *value, void *unused)
1019{
7199c093
FM
1020 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
1021 if (git_config_bool(var, value))
1022 allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
1023 else
1024 allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
68ee6289
FM
1025 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
1026 if (git_config_bool(var, value))
1027 allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
1028 else
1029 allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
f8edeaa0
DT
1030 } else if (!strcmp("uploadpack.allowanysha1inwant", var)) {
1031 if (git_config_bool(var, value))
1032 allow_unadvertised_object_request |= ALLOW_ANY_SHA1;
1033 else
1034 allow_unadvertised_object_request &= ~ALLOW_ANY_SHA1;
7199c093 1035 } else if (!strcmp("uploadpack.keepalive", var)) {
05e95155
JK
1036 keepalive = git_config_int(var, value);
1037 if (!keepalive)
1038 keepalive = -1;
10ac85c7 1039 } else if (!strcmp("uploadpack.allowfilter", var)) {
c7620bd0 1040 allow_filter = git_config_bool(var, value);
516e2b76
BW
1041 } else if (!strcmp("uploadpack.allowrefinwant", var)) {
1042 allow_ref_in_want = git_config_bool(var, value);
05e95155 1043 }
aaaa8818
JK
1044
1045 if (current_config_scope() != CONFIG_SCOPE_REPO) {
1046 if (!strcmp("uploadpack.packobjectshook", var))
1047 return git_config_string(&pack_objects_hook, var, value);
1048 }
1049
daebaa78
JH
1050 return parse_hide_refs_config(var, value, "uploadpack");
1051}
1052
a3d6b53e 1053void upload_pack(struct upload_pack_options *options)
def88e9a 1054{
a3d6b53e 1055 struct string_list symref = STRING_LIST_INIT_DUP;
1d1243fe 1056 struct object_array want_obj = OBJECT_ARRAY_INIT;
01f9ec64 1057 struct packet_reader reader;
960deccb 1058
a3d6b53e
BW
1059 stateless_rpc = options->stateless_rpc;
1060 timeout = options->timeout;
1061 daemon_mode = options->daemon_mode;
2fb3f6db 1062
daebaa78 1063 git_config(upload_pack_config, NULL);
960deccb 1064
a3d6b53e 1065 head_ref_namespaced(find_symref, &symref);
a6080a0a 1066
a3d6b53e
BW
1067 if (options->advertise_refs || !stateless_rpc) {
1068 reset_timeout();
1069 head_ref_namespaced(send_ref, &symref);
1070 for_each_namespaced_ref(send_ref, &symref);
1071 advertise_shallow_grafts(1);
1072 packet_flush(1);
1073 } else {
1074 head_ref_namespaced(check_ref, NULL);
1075 for_each_namespaced_ref(check_ref, NULL);
aa9bab29 1076 }
a3d6b53e
BW
1077 string_list_clear(&symref, 1);
1078 if (options->advertise_refs)
1079 return;
04b33055 1080
2d103c31
MS
1081 packet_reader_init(&reader, 0, NULL, 0,
1082 PACKET_READ_CHOMP_NEWLINE |
1083 PACKET_READ_DIE_ON_ERR_PACKET);
01f9ec64
MS
1084
1085 receive_needs(&reader, &want_obj);
a3d6b53e 1086 if (want_obj.nr) {
0b9333ff 1087 struct object_array have_obj = OBJECT_ARRAY_INIT;
01f9ec64 1088 get_common_commits(&reader, &have_obj, &want_obj);
1d1243fe 1089 create_pack_file(&have_obj, &want_obj);
a3d6b53e 1090 }
def88e9a 1091}
04b33055 1092
3145ea95
BW
1093struct upload_pack_data {
1094 struct object_array wants;
516e2b76 1095 struct string_list wanted_refs;
3145ea95 1096 struct oid_array haves;
113b9475 1097
685fbd32
BW
1098 struct object_array shallows;
1099 struct string_list deepen_not;
1100 int depth;
1101 timestamp_t deepen_since;
1102 int deepen_rev_list;
1103 int deepen_relative;
ad491366 1104
3145ea95 1105 unsigned stateless_rpc : 1;
aa9bab29 1106
3145ea95
BW
1107 unsigned use_thin_pack : 1;
1108 unsigned use_ofs_delta : 1;
1109 unsigned no_progress : 1;
1110 unsigned use_include_tag : 1;
1111 unsigned done : 1;
1112};
1113
1114static void upload_pack_data_init(struct upload_pack_data *data)
1115{
1116 struct object_array wants = OBJECT_ARRAY_INIT;
516e2b76 1117 struct string_list wanted_refs = STRING_LIST_INIT_DUP;
3145ea95 1118 struct oid_array haves = OID_ARRAY_INIT;
685fbd32
BW
1119 struct object_array shallows = OBJECT_ARRAY_INIT;
1120 struct string_list deepen_not = STRING_LIST_INIT_DUP;
3145ea95
BW
1121
1122 memset(data, 0, sizeof(*data));
1123 data->wants = wants;
516e2b76 1124 data->wanted_refs = wanted_refs;
3145ea95 1125 data->haves = haves;
685fbd32
BW
1126 data->shallows = shallows;
1127 data->deepen_not = deepen_not;
3145ea95
BW
1128}
1129
1130static void upload_pack_data_clear(struct upload_pack_data *data)
1131{
1132 object_array_clear(&data->wants);
516e2b76 1133 string_list_clear(&data->wanted_refs, 1);
3145ea95 1134 oid_array_clear(&data->haves);
685fbd32
BW
1135 object_array_clear(&data->shallows);
1136 string_list_clear(&data->deepen_not, 0);
3145ea95
BW
1137}
1138
1d1243fe 1139static int parse_want(const char *line, struct object_array *want_obj)
3145ea95
BW
1140{
1141 const char *arg;
1142 if (skip_prefix(line, "want ", &arg)) {
1143 struct object_id oid;
1144 struct object *o;
1145
1146 if (get_oid_hex(arg, &oid))
1147 die("git upload-pack: protocol error, "
1148 "expected to get oid, not '%s'", line);
1149
109cd76d 1150 o = parse_object(the_repository, &oid);
3145ea95
BW
1151 if (!o) {
1152 packet_write_fmt(1,
1153 "ERR upload-pack: not our ref %s",
1154 oid_to_hex(&oid));
1155 die("git upload-pack: not our ref %s",
1156 oid_to_hex(&oid));
1157 }
1158
1159 if (!(o->flags & WANTED)) {
1160 o->flags |= WANTED;
1d1243fe 1161 add_object_array(o, NULL, want_obj);
3145ea95
BW
1162 }
1163
1164 return 1;
1165 }
1166
1167 return 0;
1168}
1169
1d1243fe
JT
1170static int parse_want_ref(const char *line, struct string_list *wanted_refs,
1171 struct object_array *want_obj)
516e2b76
BW
1172{
1173 const char *arg;
1174 if (skip_prefix(line, "want-ref ", &arg)) {
1175 struct object_id oid;
1176 struct string_list_item *item;
1177 struct object *o;
1178
1179 if (read_ref(arg, &oid)) {
1180 packet_write_fmt(1, "ERR unknown ref %s", arg);
1181 die("unknown ref %s", arg);
1182 }
1183
1184 item = string_list_append(wanted_refs, arg);
1185 item->util = oiddup(&oid);
1186
1187 o = parse_object_or_die(&oid, arg);
1188 if (!(o->flags & WANTED)) {
1189 o->flags |= WANTED;
1d1243fe 1190 add_object_array(o, NULL, want_obj);
516e2b76
BW
1191 }
1192
1193 return 1;
1194 }
1195
1196 return 0;
1197}
1198
3145ea95
BW
1199static int parse_have(const char *line, struct oid_array *haves)
1200{
1201 const char *arg;
1202 if (skip_prefix(line, "have ", &arg)) {
1203 struct object_id oid;
1204
1205 if (get_oid_hex(arg, &oid))
1206 die("git upload-pack: expected SHA1 object, got '%s'", arg);
1207 oid_array_append(haves, &oid);
1208 return 1;
aa9bab29
BW
1209 }
1210
def88e9a
LT
1211 return 0;
1212}
3145ea95
BW
1213
1214static void process_args(struct packet_reader *request,
1d1243fe
JT
1215 struct upload_pack_data *data,
1216 struct object_array *want_obj)
3145ea95
BW
1217{
1218 while (packet_reader_read(request) != PACKET_READ_FLUSH) {
1219 const char *arg = request->line;
ba95710a 1220 const char *p;
3145ea95
BW
1221
1222 /* process want */
1d1243fe 1223 if (parse_want(arg, want_obj))
3145ea95 1224 continue;
1d1243fe
JT
1225 if (allow_ref_in_want &&
1226 parse_want_ref(arg, &data->wanted_refs, want_obj))
516e2b76 1227 continue;
3145ea95
BW
1228 /* process have line */
1229 if (parse_have(arg, &data->haves))
1230 continue;
1231
1232 /* process args like thin-pack */
1233 if (!strcmp(arg, "thin-pack")) {
1234 use_thin_pack = 1;
1235 continue;
1236 }
1237 if (!strcmp(arg, "ofs-delta")) {
1238 use_ofs_delta = 1;
1239 continue;
1240 }
1241 if (!strcmp(arg, "no-progress")) {
1242 no_progress = 1;
1243 continue;
1244 }
1245 if (!strcmp(arg, "include-tag")) {
1246 use_include_tag = 1;
1247 continue;
1248 }
1249 if (!strcmp(arg, "done")) {
1250 data->done = 1;
1251 continue;
1252 }
1253
685fbd32
BW
1254 /* Shallow related arguments */
1255 if (process_shallow(arg, &data->shallows))
1256 continue;
1257 if (process_deepen(arg, &data->depth))
1258 continue;
1259 if (process_deepen_since(arg, &data->deepen_since,
1260 &data->deepen_rev_list))
1261 continue;
1262 if (process_deepen_not(arg, &data->deepen_not,
1263 &data->deepen_rev_list))
1264 continue;
1265 if (!strcmp(arg, "deepen-relative")) {
1266 data->deepen_relative = 1;
1267 continue;
1268 }
1269
ba95710a
JT
1270 if (allow_filter && skip_prefix(arg, "filter ", &p)) {
1271 parse_list_objects_filter(&filter_options, p);
1272 continue;
1273 }
1274
3145ea95 1275 /* ignore unknown lines maybe? */
7cc6ed2d 1276 die("unexpected line: '%s'", arg);
3145ea95
BW
1277 }
1278}
1279
0b9333ff
JT
1280static int process_haves(struct oid_array *haves, struct oid_array *common,
1281 struct object_array *have_obj)
3145ea95
BW
1282{
1283 int i;
1284
1285 /* Process haves */
1286 for (i = 0; i < haves->nr; i++) {
1287 const struct object_id *oid = &haves->oid[i];
1288 struct object *o;
1289 int we_knew_they_have = 0;
1290
1291 if (!has_object_file(oid))
1292 continue;
1293
1294 oid_array_append(common, oid);
1295
109cd76d 1296 o = parse_object(the_repository, oid);
3145ea95
BW
1297 if (!o)
1298 die("oops (%s)", oid_to_hex(oid));
1299 if (o->type == OBJ_COMMIT) {
1300 struct commit_list *parents;
1301 struct commit *commit = (struct commit *)o;
1302 if (o->flags & THEY_HAVE)
1303 we_knew_they_have = 1;
1304 else
1305 o->flags |= THEY_HAVE;
1306 if (!oldest_have || (commit->date < oldest_have))
1307 oldest_have = commit->date;
1308 for (parents = commit->parents;
1309 parents;
1310 parents = parents->next)
1311 parents->item->object.flags |= THEY_HAVE;
1312 }
1313 if (!we_knew_they_have)
0b9333ff 1314 add_object_array(o, NULL, have_obj);
3145ea95
BW
1315 }
1316
1317 return 0;
1318}
1319
0b9333ff 1320static int send_acks(struct oid_array *acks, struct strbuf *response,
1d1243fe
JT
1321 const struct object_array *have_obj,
1322 struct object_array *want_obj)
3145ea95
BW
1323{
1324 int i;
1325
1326 packet_buf_write(response, "acknowledgments\n");
1327
1328 /* Send Acks */
1329 if (!acks->nr)
1330 packet_buf_write(response, "NAK\n");
1331
1332 for (i = 0; i < acks->nr; i++) {
1333 packet_buf_write(response, "ACK %s\n",
1334 oid_to_hex(&acks->oid[i]));
1335 }
1336
1d1243fe 1337 if (ok_to_give_up(have_obj, want_obj)) {
3145ea95
BW
1338 /* Send Ready */
1339 packet_buf_write(response, "ready\n");
1340 return 1;
1341 }
1342
1343 return 0;
1344}
1345
0b9333ff 1346static int process_haves_and_send_acks(struct upload_pack_data *data,
1d1243fe
JT
1347 struct object_array *have_obj,
1348 struct object_array *want_obj)
3145ea95
BW
1349{
1350 struct oid_array common = OID_ARRAY_INIT;
1351 struct strbuf response = STRBUF_INIT;
1352 int ret = 0;
1353
0b9333ff 1354 process_haves(&data->haves, &common, have_obj);
3145ea95
BW
1355 if (data->done) {
1356 ret = 1;
1d1243fe 1357 } else if (send_acks(&common, &response, have_obj, want_obj)) {
3145ea95
BW
1358 packet_buf_delim(&response);
1359 ret = 1;
1360 } else {
1361 /* Add Flush */
1362 packet_buf_flush(&response);
1363 ret = 0;
1364 }
1365
1366 /* Send response */
1367 write_or_die(1, response.buf, response.len);
1368 strbuf_release(&response);
1369
1370 oid_array_clear(&data->haves);
1371 oid_array_clear(&common);
1372 return ret;
1373}
1374
516e2b76
BW
1375static void send_wanted_ref_info(struct upload_pack_data *data)
1376{
1377 const struct string_list_item *item;
1378
1379 if (!data->wanted_refs.nr)
1380 return;
1381
1382 packet_write_fmt(1, "wanted-refs\n");
1383
1384 for_each_string_list_item(item, &data->wanted_refs) {
1385 packet_write_fmt(1, "%s %s\n",
1386 oid_to_hex(item->util),
1387 item->string);
1388 }
1389
1390 packet_delim(1);
1391}
1392
1d1243fe
JT
1393static void send_shallow_info(struct upload_pack_data *data,
1394 struct object_array *want_obj)
685fbd32
BW
1395{
1396 /* No shallow info needs to be sent */
1397 if (!data->depth && !data->deepen_rev_list && !data->shallows.nr &&
00624d60 1398 !is_repository_shallow(the_repository))
685fbd32
BW
1399 return;
1400
1401 packet_write_fmt(1, "shallow-info\n");
1402
1403 if (!send_shallow_list(data->depth, data->deepen_rev_list,
1404 data->deepen_since, &data->deepen_not,
1d1243fe 1405 &data->shallows, want_obj) &&
00624d60 1406 is_repository_shallow(the_repository))
1d1243fe
JT
1407 deepen(INFINITE_DEPTH, data->deepen_relative, &data->shallows,
1408 want_obj);
685fbd32
BW
1409
1410 packet_delim(1);
1411}
1412
3145ea95
BW
1413enum fetch_state {
1414 FETCH_PROCESS_ARGS = 0,
1415 FETCH_SEND_ACKS,
1416 FETCH_SEND_PACK,
1417 FETCH_DONE,
1418};
1419
1420int upload_pack_v2(struct repository *r, struct argv_array *keys,
1421 struct packet_reader *request)
1422{
1423 enum fetch_state state = FETCH_PROCESS_ARGS;
1424 struct upload_pack_data data;
d1035cac
JT
1425 struct object_array have_obj = OBJECT_ARRAY_INIT;
1426 struct object_array want_obj = OBJECT_ARRAY_INIT;
1427
1428 clear_object_flags(ALL_FLAGS);
3145ea95 1429
54592687
JT
1430 git_config(upload_pack_config, NULL);
1431
3145ea95
BW
1432 upload_pack_data_init(&data);
1433 use_sideband = LARGE_PACKET_MAX;
1434
1435 while (state != FETCH_DONE) {
1436 switch (state) {
1437 case FETCH_PROCESS_ARGS:
1d1243fe 1438 process_args(request, &data, &want_obj);
3145ea95
BW
1439
1440 if (!want_obj.nr) {
1441 /*
1442 * Request didn't contain any 'want' lines,
1443 * guess they didn't want anything.
1444 */
1445 state = FETCH_DONE;
1446 } else if (data.haves.nr) {
1447 /*
1448 * Request had 'have' lines, so lets ACK them.
1449 */
1450 state = FETCH_SEND_ACKS;
1451 } else {
1452 /*
1453 * Request had 'want's but no 'have's so we can
1454 * immedietly go to construct and send a pack.
1455 */
1456 state = FETCH_SEND_PACK;
1457 }
1458 break;
1459 case FETCH_SEND_ACKS:
1d1243fe
JT
1460 if (process_haves_and_send_acks(&data, &have_obj,
1461 &want_obj))
3145ea95
BW
1462 state = FETCH_SEND_PACK;
1463 else
1464 state = FETCH_DONE;
1465 break;
1466 case FETCH_SEND_PACK:
516e2b76 1467 send_wanted_ref_info(&data);
1d1243fe 1468 send_shallow_info(&data, &want_obj);
685fbd32 1469
3145ea95 1470 packet_write_fmt(1, "packfile\n");
1d1243fe 1471 create_pack_file(&have_obj, &want_obj);
3145ea95
BW
1472 state = FETCH_DONE;
1473 break;
1474 case FETCH_DONE:
1475 continue;
1476 }
1477 }
1478
1479 upload_pack_data_clear(&data);
d1035cac
JT
1480 object_array_clear(&have_obj);
1481 object_array_clear(&want_obj);
3145ea95
BW
1482 return 0;
1483}
685fbd32
BW
1484
1485int upload_pack_advertise(struct repository *r,
1486 struct strbuf *value)
1487{
ba95710a
JT
1488 if (value) {
1489 int allow_filter_value;
516e2b76
BW
1490 int allow_ref_in_want;
1491
685fbd32 1492 strbuf_addstr(value, "shallow");
516e2b76 1493
ba95710a
JT
1494 if (!repo_config_get_bool(the_repository,
1495 "uploadpack.allowfilter",
1496 &allow_filter_value) &&
1497 allow_filter_value)
1498 strbuf_addstr(value, " filter");
516e2b76
BW
1499
1500 if (!repo_config_get_bool(the_repository,
1501 "uploadpack.allowrefinwant",
1502 &allow_ref_in_want) &&
1503 allow_ref_in_want)
1504 strbuf_addstr(value, " ref-in-want");
ba95710a 1505 }
516e2b76 1506
685fbd32
BW
1507 return 1;
1508}