]> git.ipfire.org Git - thirdparty/git.git/blame - upload-pack.c
Merge branch 'rs/grep-no-no-or'
[thirdparty/git.git] / upload-pack.c
CommitLineData
5579f44d 1#include "git-compat-util.h"
b2141fc1 2#include "config.h"
32a8f510 3#include "environment.h"
f394e093 4#include "gettext.h"
41771fa4 5#include "hex.h"
def88e9a
LT
6#include "refs.h"
7#include "pkt-line.h"
958c24b1 8#include "sideband.h"
109cd76d 9#include "repository.h"
a034e910 10#include "object-store-ll.h"
6f2d7430 11#include "oid-array.h"
f6b42a81
JH
12#include "tag.h"
13#include "object.h"
f0243f26 14#include "commit.h"
9b8dc263
JS
15#include "diff.h"
16#include "revision.h"
17#include "list-objects.h"
10ac85c7
JH
18#include "list-objects-filter.h"
19#include "list-objects-filter-options.h"
cc41fa8d 20#include "run-command.h"
47a59185 21#include "connect.h"
051e4005 22#include "sigchain.h"
ff5effdf 23#include "version.h"
daebaa78 24#include "string-list.h"
dbbcd44f 25#include "strvec.h"
74ea5c95 26#include "trace2.h"
5411b10c 27#include "prio-queue.h"
aa9bab29 28#include "protocol.h"
10ac85c7 29#include "quote.h"
a3d6b53e 30#include "upload-pack.h"
3145ea95 31#include "serve.h"
829a3215 32#include "commit-graph.h"
ba3ca1ed 33#include "commit-reach.h"
120ad2b0 34#include "shallow.h"
d48be35c 35#include "write-or-die.h"
def88e9a 36
208acbfb 37/* Remember to update object flag allocation in object.h */
937a515a
JH
38#define THEY_HAVE (1u << 11)
39#define OUR_REF (1u << 12)
40#define WANTED (1u << 13)
41#define COMMON_KNOWN (1u << 14)
937a515a 42
f53514bc
JS
43#define SHALLOW (1u << 16)
44#define NOT_SHALLOW (1u << 17)
45#define CLIENT_SHALLOW (1u << 18)
390eb36b 46#define HIDDEN_REF (1u << 19)
f53514bc 47
d1035cac
JT
48#define ALL_FLAGS (THEY_HAVE | OUR_REF | WANTED | COMMON_KNOWN | SHALLOW | \
49 NOT_SHALLOW | CLIENT_SHALLOW | HIDDEN_REF)
50
629060d9
CC
51/* Enum for allowed unadvertised object request (UOR) */
52enum allow_uor {
53 /* Allow specifying sha1 if it is a ref tip. */
54 ALLOW_TIP_SHA1 = 0x01,
55 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
56 ALLOW_REACHABLE_SHA1 = 0x02,
57 /* Allow request of any sha1. Implies ALLOW_TIP_SHA1 and ALLOW_REACHABLE_SHA1. */
58 ALLOW_ANY_SHA1 = 0x07
59};
960deccb 60
a8497288
CC
61/*
62 * Please annotate, and if possible group together, fields used only
63 * for protocol v0 or only for protocol v2.
64 */
e8498322 65struct upload_pack_data {
a8497288 66 struct string_list symref; /* v0 only */
e8498322
CC
67 struct object_array want_obj;
68 struct object_array have_obj;
a8497288
CC
69 struct oid_array haves; /* v2 only */
70 struct string_list wanted_refs; /* v2 only */
c45841ff 71 struct strvec hidden_refs;
e8498322
CC
72
73 struct object_array shallows;
74 struct string_list deepen_not;
de0e9f74 75 struct object_array extra_edge_obj;
e8498322
CC
76 int depth;
77 timestamp_t deepen_since;
78 int deepen_rev_list;
79 int deepen_relative;
f203a88c 80 int keepalive;
35b43a10 81 int shallow_nr;
f01c7916 82 timestamp_t oldest_have;
e8498322 83
d40f04e0 84 unsigned int timeout; /* v0 only */
e9d882b8
CC
85 enum {
86 NO_MULTI_ACK = 0,
87 MULTI_ACK = 1,
88 MULTI_ACK_DETAILED = 2
89 } multi_ack; /* v0 only */
d40f04e0 90
f8edd1ca
CC
91 /* 0 for no sideband, otherwise DEFAULT_PACKET_MAX or LARGE_PACKET_MAX */
92 int use_sideband;
93
dd4b732d 94 struct string_list uri_protocols;
629060d9 95 enum allow_uor allow_uor;
f1514c6a 96
e8498322 97 struct list_objects_filter_options filter_options;
6dd3456a 98 struct string_list allowed_filters;
e8498322
CC
99
100 struct packet_writer writer;
101
339a9840
CC
102 const char *pack_objects_hook;
103
a8497288 104 unsigned stateless_rpc : 1; /* v0 only */
d40f04e0
CC
105 unsigned no_done : 1; /* v0 only */
106 unsigned daemon_mode : 1; /* v0 only */
59a90261 107 unsigned filter_capability_requested : 1; /* v0 only */
e8498322
CC
108
109 unsigned use_thin_pack : 1;
110 unsigned use_ofs_delta : 1;
111 unsigned no_progress : 1;
112 unsigned use_include_tag : 1;
9c1e657a 113 unsigned wait_for_done : 1;
59abe196 114 unsigned allow_filter : 1;
6dd3456a 115 unsigned allow_filter_fallback : 1;
5b01a4e8 116 unsigned long tree_filter_max_depth;
a8497288
CC
117
118 unsigned done : 1; /* v2 only */
d1d7a945 119 unsigned allow_ref_in_want : 1; /* v2 only */
e3835cd4 120 unsigned allow_sideband_all : 1; /* v2 only */
791e1adf 121 unsigned advertise_sid : 1;
933e3a4e 122 unsigned sent_capabilities : 1;
e8498322
CC
123};
124
125static void upload_pack_data_init(struct upload_pack_data *data)
126{
438528f6 127 struct string_list symref = STRING_LIST_INIT_DUP;
e8498322 128 struct string_list wanted_refs = STRING_LIST_INIT_DUP;
c45841ff 129 struct strvec hidden_refs = STRVEC_INIT;
e8498322
CC
130 struct object_array want_obj = OBJECT_ARRAY_INIT;
131 struct object_array have_obj = OBJECT_ARRAY_INIT;
132 struct oid_array haves = OID_ARRAY_INIT;
133 struct object_array shallows = OBJECT_ARRAY_INIT;
134 struct string_list deepen_not = STRING_LIST_INIT_DUP;
dd4b732d 135 struct string_list uri_protocols = STRING_LIST_INIT_DUP;
de0e9f74 136 struct object_array extra_edge_obj = OBJECT_ARRAY_INIT;
6dd3456a 137 struct string_list allowed_filters = STRING_LIST_INIT_DUP;
e8498322
CC
138
139 memset(data, 0, sizeof(*data));
438528f6 140 data->symref = symref;
e8498322 141 data->wanted_refs = wanted_refs;
9b67eb6f 142 data->hidden_refs = hidden_refs;
e8498322
CC
143 data->want_obj = want_obj;
144 data->have_obj = have_obj;
145 data->haves = haves;
146 data->shallows = shallows;
147 data->deepen_not = deepen_not;
dd4b732d 148 data->uri_protocols = uri_protocols;
de0e9f74 149 data->extra_edge_obj = extra_edge_obj;
6dd3456a
TB
150 data->allowed_filters = allowed_filters;
151 data->allow_filter_fallback = 1;
5b01a4e8 152 data->tree_filter_max_depth = ULONG_MAX;
e8498322 153 packet_writer_init(&data->writer, 1);
2a01bded 154 list_objects_filter_init(&data->filter_options);
f203a88c
CC
155
156 data->keepalive = 5;
791e1adf 157 data->advertise_sid = 0;
e8498322
CC
158}
159
160static void upload_pack_data_clear(struct upload_pack_data *data)
161{
438528f6 162 string_list_clear(&data->symref, 1);
e8498322 163 string_list_clear(&data->wanted_refs, 1);
c45841ff 164 strvec_clear(&data->hidden_refs);
e8498322
CC
165 object_array_clear(&data->want_obj);
166 object_array_clear(&data->have_obj);
167 oid_array_clear(&data->haves);
168 object_array_clear(&data->shallows);
169 string_list_clear(&data->deepen_not, 0);
de0e9f74 170 object_array_clear(&data->extra_edge_obj);
e8498322 171 list_objects_filter_release(&data->filter_options);
8d133f50 172 string_list_clear(&data->allowed_filters, 0);
339a9840
CC
173
174 free((char *)data->pack_objects_hook);
e8498322
CC
175}
176
d40f04e0 177static void reset_timeout(unsigned int timeout)
960deccb
PA
178{
179 alarm(timeout);
180}
fb9040cc 181
f8edd1ca
CC
182static void send_client_data(int fd, const char *data, ssize_t sz,
183 int use_sideband)
583b7ea3 184{
4c4b7d1d
LF
185 if (use_sideband) {
186 send_sideband(1, fd, data, sz, use_sideband);
fcf0fe9e 187 return;
4c4b7d1d 188 }
958c24b1
JH
189 if (fd == 3)
190 /* emergency quit */
191 fd = 2;
192 if (fd == 2) {
93822c22 193 /* XXX: are we happy to lose stuff here? */
958c24b1 194 xwrite(fd, data, sz);
fcf0fe9e 195 return;
583b7ea3 196 }
cdf4fb8e 197 write_or_die(fd, data, sz);
583b7ea3
JH
198}
199
b790e0f6
NTND
200static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
201{
202 FILE *fp = cb_data;
203 if (graft->nr_parent == -1)
7683e2e6 204 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
b790e0f6
NTND
205 return 0;
206}
207
acaaca7d 208struct output_state {
55a9651d
JV
209 /*
210 * We do writes no bigger than LARGE_PACKET_DATA_MAX - 1, because with
211 * sideband-64k the band designator takes up 1 byte of space. Because
212 * relay_pack_data keeps the last byte to itself, we make the buffer 1
213 * byte bigger than the intended maximum write size.
214 */
215 char buffer[(LARGE_PACKET_DATA_MAX - 1) + 1];
acaaca7d 216 int used;
dd4b732d
JT
217 unsigned packfile_uris_started : 1;
218 unsigned packfile_started : 1;
acaaca7d
JT
219};
220
221static int relay_pack_data(int pack_objects_out, struct output_state *os,
dd4b732d 222 int use_sideband, int write_packfile_line)
acaaca7d
JT
223{
224 /*
225 * We keep the last byte to ourselves
226 * in case we detect broken rev-list, so that we
227 * can leave the stream corrupted. This is
228 * unfortunate -- unpack-objects would happily
229 * accept a valid packdata with trailing garbage,
230 * so appending garbage after we pass all the
231 * pack data is not good enough to signal
232 * breakage to downstream.
233 */
234 ssize_t readsz;
235
236 readsz = xread(pack_objects_out, os->buffer + os->used,
237 sizeof(os->buffer) - os->used);
238 if (readsz < 0) {
239 return readsz;
240 }
241 os->used += readsz;
242
dd4b732d
JT
243 while (!os->packfile_started) {
244 char *p;
245 if (os->used >= 4 && !memcmp(os->buffer, "PACK", 4)) {
246 os->packfile_started = 1;
247 if (write_packfile_line) {
248 if (os->packfile_uris_started)
249 packet_delim(1);
250 packet_write_fmt(1, "\1packfile\n");
251 }
252 break;
253 }
254 if ((p = memchr(os->buffer, '\n', os->used))) {
255 if (!os->packfile_uris_started) {
256 os->packfile_uris_started = 1;
257 if (!write_packfile_line)
258 BUG("packfile_uris requires sideband-all");
259 packet_write_fmt(1, "\1packfile-uris\n");
260 }
261 *p = '\0';
262 packet_write_fmt(1, "\1%s\n", os->buffer);
263
264 os->used -= p - os->buffer + 1;
265 memmove(os->buffer, p + 1, os->used);
266 } else {
267 /*
268 * Incomplete line.
269 */
270 return readsz;
271 }
272 }
273
acaaca7d
JT
274 if (os->used > 1) {
275 send_client_data(1, os->buffer, os->used - 1, use_sideband);
276 os->buffer[0] = os->buffer[os->used - 1];
277 os->used = 1;
278 } else {
279 send_client_data(1, os->buffer, os->used, use_sideband);
280 os->used = 0;
281 }
282
283 return readsz;
284}
285
dd4b732d
JT
286static void create_pack_file(struct upload_pack_data *pack_data,
287 const struct string_list *uri_protocols)
fb9040cc 288{
d3180279 289 struct child_process pack_objects = CHILD_PROCESS_INIT;
55a9651d 290 struct output_state *output_state = xcalloc(1, sizeof(struct output_state));
acaaca7d 291 char progress[128];
583b7ea3
JH
292 char abort_msg[] = "aborting due to possible repository "
293 "corruption on the remote side.";
1456b043 294 ssize_t sz;
65a3629e 295 int i;
cdab4858 296 FILE *pipe_fd;
75bfc6c2 297
339a9840 298 if (!pack_data->pack_objects_hook)
20b20a22
JK
299 pack_objects.git_cmd = 1;
300 else {
c972bf4c
JK
301 strvec_push(&pack_objects.args, pack_data->pack_objects_hook);
302 strvec_push(&pack_objects.args, "git");
20b20a22
JK
303 pack_objects.use_shell = 1;
304 }
305
35b43a10 306 if (pack_data->shallow_nr) {
c972bf4c
JK
307 strvec_push(&pack_objects.args, "--shallow-file");
308 strvec_push(&pack_objects.args, "");
f0cea83f 309 }
c972bf4c
JK
310 strvec_push(&pack_objects.args, "pack-objects");
311 strvec_push(&pack_objects.args, "--revs");
b5a2068c 312 if (pack_data->use_thin_pack)
c972bf4c 313 strvec_push(&pack_objects.args, "--thin");
75bfc6c2 314
c972bf4c 315 strvec_push(&pack_objects.args, "--stdout");
35b43a10 316 if (pack_data->shallow_nr)
c972bf4c 317 strvec_push(&pack_objects.args, "--shallow");
b5a2068c 318 if (!pack_data->no_progress)
c972bf4c 319 strvec_push(&pack_objects.args, "--progress");
b5a2068c 320 if (pack_data->use_ofs_delta)
c972bf4c 321 strvec_push(&pack_objects.args, "--delta-base-offset");
b5a2068c 322 if (pack_data->use_include_tag)
c972bf4c 323 strvec_push(&pack_objects.args, "--include-tag");
c9f03259 324 if (pack_data->filter_options.choice) {
cf9ceb5a 325 const char *spec =
c9f03259 326 expand_list_objects_filter_spec(&pack_data->filter_options);
ad5df6b7 327 strvec_pushf(&pack_objects.args, "--filter=%s", spec);
10ac85c7 328 }
dd4b732d
JT
329 if (uri_protocols) {
330 for (i = 0; i < uri_protocols->nr; i++)
c972bf4c 331 strvec_pushf(&pack_objects.args, "--uri-protocol=%s",
dd4b732d
JT
332 uri_protocols->items[i].string);
333 }
cc41fa8d 334
b9612197 335 pack_objects.in = -1;
cc41fa8d
JS
336 pack_objects.out = -1;
337 pack_objects.err = -1;
309a4028 338 pack_objects.clean_on_exit = 1;
21edd3f1 339
4c324c00 340 if (start_command(&pack_objects))
7e44c935 341 die("git upload-pack: unable to fork git-pack-objects");
b1c71b72 342
cdab4858
NTND
343 pipe_fd = xfdopen(pack_objects.in, "w");
344
35b43a10 345 if (pack_data->shallow_nr)
b790e0f6
NTND
346 for_each_commit_graft(write_one_shallow, pipe_fd);
347
c9f03259 348 for (i = 0; i < pack_data->want_obj.nr; i++)
cdab4858 349 fprintf(pipe_fd, "%s\n",
c9f03259 350 oid_to_hex(&pack_data->want_obj.objects[i].item->oid));
cdab4858 351 fprintf(pipe_fd, "--not\n");
c9f03259 352 for (i = 0; i < pack_data->have_obj.nr; i++)
cdab4858 353 fprintf(pipe_fd, "%s\n",
c9f03259 354 oid_to_hex(&pack_data->have_obj.objects[i].item->oid));
de0e9f74 355 for (i = 0; i < pack_data->extra_edge_obj.nr; i++)
cdab4858 356 fprintf(pipe_fd, "%s\n",
de0e9f74 357 oid_to_hex(&pack_data->extra_edge_obj.objects[i].item->oid));
cdab4858
NTND
358 fprintf(pipe_fd, "\n");
359 fflush(pipe_fd);
360 fclose(pipe_fd);
f0cea83f 361
cc41fa8d
JS
362 /* We read from pack_objects.err to capture stderr output for
363 * progress bar, and pack_objects.out to capture the pack data.
b1c71b72 364 */
b1c71b72
JH
365
366 while (1) {
b1c71b72 367 struct pollfd pfd[2];
f203a88c 368 int pe, pu, pollsize, polltimeout;
05e95155 369 int ret;
b1c71b72 370
d40f04e0 371 reset_timeout(pack_data->timeout);
0d516ada 372
b1c71b72 373 pollsize = 0;
363b7817 374 pe = pu = -1;
b1c71b72 375
cc41fa8d
JS
376 if (0 <= pack_objects.out) {
377 pfd[pollsize].fd = pack_objects.out;
b1c71b72
JH
378 pfd[pollsize].events = POLLIN;
379 pu = pollsize;
380 pollsize++;
381 }
cc41fa8d
JS
382 if (0 <= pack_objects.err) {
383 pfd[pollsize].fd = pack_objects.err;
363b7817
JH
384 pfd[pollsize].events = POLLIN;
385 pe = pollsize;
386 pollsize++;
387 }
b1c71b72 388
4c324c00
JS
389 if (!pollsize)
390 break;
391
f203a88c
CC
392 polltimeout = pack_data->keepalive < 0
393 ? -1
394 : 1000 * pack_data->keepalive;
395
396 ret = poll(pfd, pollsize, polltimeout);
6c71f8b0 397
05e95155 398 if (ret < 0) {
4c324c00 399 if (errno != EINTR) {
d2b6afa2 400 error_errno("poll failed, resuming");
4c324c00 401 sleep(1);
b1c71b72 402 }
4c324c00
JS
403 continue;
404 }
6b59f51b
NP
405 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
406 /* Status ready; we ship that in the side-band
407 * or dump to the standard error.
408 */
409 sz = xread(pack_objects.err, progress,
410 sizeof(progress));
411 if (0 < sz)
f8edd1ca
CC
412 send_client_data(2, progress, sz,
413 pack_data->use_sideband);
6b59f51b
NP
414 else if (sz == 0) {
415 close(pack_objects.err);
416 pack_objects.err = -1;
417 }
418 else
419 goto fail;
420 /* give priority to status messages */
421 continue;
422 }
4c324c00 423 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
acaaca7d 424 int result = relay_pack_data(pack_objects.out,
55a9651d 425 output_state,
dd4b732d
JT
426 pack_data->use_sideband,
427 !!uri_protocols);
acaaca7d
JT
428
429 if (result == 0) {
4c324c00
JS
430 close(pack_objects.out);
431 pack_objects.out = -1;
acaaca7d 432 } else if (result < 0) {
4c324c00 433 goto fail;
b1c71b72 434 }
4c324c00 435 }
05e95155
JK
436
437 /*
438 * We hit the keepalive timeout without saying anything; send
439 * an empty message on the data sideband just to let the other
440 * side know we're still working on it, but don't have any data
441 * yet.
442 *
443 * If we don't have a sideband channel, there's no room in the
444 * protocol to say anything, so those clients are just out of
445 * luck.
446 */
f8edd1ca 447 if (!ret && pack_data->use_sideband) {
05e95155
JK
448 static const char buf[] = "0005\1";
449 write_or_die(1, buf, 5);
450 }
4c324c00 451 }
b1c71b72 452
4c324c00 453 if (finish_command(&pack_objects)) {
7e44c935 454 error("git upload-pack: git-pack-objects died with error.");
4c324c00
JS
455 goto fail;
456 }
b1c71b72 457
4c324c00 458 /* flush the data */
55a9651d
JV
459 if (output_state->used > 0) {
460 send_client_data(1, output_state->buffer, output_state->used,
f8edd1ca 461 pack_data->use_sideband);
4c324c00 462 fprintf(stderr, "flushed.\n");
b1c71b72 463 }
55a9651d 464 free(output_state);
f8edd1ca 465 if (pack_data->use_sideband)
4c324c00
JS
466 packet_flush(1);
467 return;
468
b1c71b72 469 fail:
c68d5dbc 470 free(output_state);
f8edd1ca
CC
471 send_client_data(3, abort_msg, sizeof(abort_msg),
472 pack_data->use_sideband);
7e44c935 473 die("git upload-pack: %s", abort_msg);
fb9040cc
LT
474}
475
ea2c6e60 476static int do_got_oid(struct upload_pack_data *data, const struct object_id *oid)
def88e9a 477{
937a515a 478 int we_knew_they_have = 0;
ea2c6e60 479 struct object *o = parse_object(the_repository, oid);
b1e9fff7 480
b1e9fff7 481 if (!o)
cf93982f 482 die("oops (%s)", oid_to_hex(oid));
182a8dab 483 if (o->type == OBJ_COMMIT) {
b1e9fff7 484 struct commit_list *parents;
937a515a 485 struct commit *commit = (struct commit *)o;
b1e9fff7 486 if (o->flags & THEY_HAVE)
937a515a
JH
487 we_knew_they_have = 1;
488 else
489 o->flags |= THEY_HAVE;
f01c7916
CC
490 if (!data->oldest_have || (commit->date < data->oldest_have))
491 data->oldest_have = commit->date;
937a515a 492 for (parents = commit->parents;
b1e9fff7
JH
493 parents;
494 parents = parents->next)
495 parents->item->object.flags |= THEY_HAVE;
fb9040cc 496 }
937a515a 497 if (!we_knew_they_have) {
460ed0d4 498 add_object_array(o, NULL, &data->have_obj);
937a515a
JH
499 return 1;
500 }
501 return 0;
502}
503
ea2c6e60
CC
504static int got_oid(struct upload_pack_data *data,
505 const char *hex, struct object_id *oid)
506{
507 if (get_oid_hex(hex, oid))
508 die("git upload-pack: expected SHA1 object, got '%s'", hex);
bc726bd0
ÆAB
509 if (!repo_has_object_file_with_flags(the_repository, oid,
510 OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT))
ea2c6e60
CC
511 return -1;
512 return do_got_oid(data, oid);
513}
514
08667348 515static int ok_to_give_up(struct upload_pack_data *data)
937a515a 516{
d7f92784 517 timestamp_t min_generation = GENERATION_NUMBER_ZERO;
937a515a 518
08667348 519 if (!data->have_obj.nr)
937a515a
JH
520 return 0;
521
08667348 522 return can_all_from_reach_with_flag(&data->want_obj, THEY_HAVE,
f01c7916 523 COMMON_KNOWN, data->oldest_have,
4fbcca4e 524 min_generation);
def88e9a
LT
525}
526
07977695
CC
527static int get_common_commits(struct upload_pack_data *data,
528 struct packet_reader *reader)
def88e9a 529{
cf93982f 530 struct object_id oid;
531 char last_hex[GIT_MAX_HEXSZ + 1];
49bee717
SP
532 int got_common = 0;
533 int got_other = 0;
4e10cf9a 534 int sent_ready = 0;
def88e9a 535
f0243f26
JS
536 save_commit_buffer = 0;
537
eeefa7c9 538 for (;;) {
8bf3b758
NTND
539 const char *arg;
540
d40f04e0 541 reset_timeout(data->timeout);
def88e9a 542
01f9ec64 543 if (packet_reader_read(reader) != PACKET_READ_NORMAL) {
e9d882b8 544 if (data->multi_ack == MULTI_ACK_DETAILED
07977695
CC
545 && got_common
546 && !got_other
08667348 547 && ok_to_give_up(data)) {
4e10cf9a 548 sent_ready = 1;
81c634e9 549 packet_write_fmt(1, "ACK %s ready\n", last_hex);
4e10cf9a 550 }
53d69506 551 if (data->have_obj.nr == 0 || data->multi_ack)
81c634e9 552 packet_write_fmt(1, "NAK\n");
4e10cf9a 553
d40f04e0 554 if (data->no_done && sent_ready) {
81c634e9 555 packet_write_fmt(1, "ACK %s\n", last_hex);
4e10cf9a
JH
556 return 0;
557 }
df654abc 558 if (data->stateless_rpc)
42526b47 559 exit(0);
49bee717
SP
560 got_common = 0;
561 got_other = 0;
def88e9a
LT
562 continue;
563 }
01f9ec64 564 if (skip_prefix(reader->line, "have ", &arg)) {
460ed0d4 565 switch (got_oid(data, arg, &oid)) {
937a515a 566 case -1: /* they have what we do not */
49bee717 567 got_other = 1;
53d69506 568 if (data->multi_ack
08667348 569 && ok_to_give_up(data)) {
cf93982f 570 const char *hex = oid_to_hex(&oid);
e9d882b8 571 if (data->multi_ack == MULTI_ACK_DETAILED) {
4e10cf9a 572 sent_ready = 1;
81c634e9 573 packet_write_fmt(1, "ACK %s ready\n", hex);
4e10cf9a 574 } else
81c634e9 575 packet_write_fmt(1, "ACK %s continue\n", hex);
78affc49 576 }
937a515a
JH
577 break;
578 default:
49bee717 579 got_common = 1;
55dc227d 580 oid_to_hex_r(last_hex, &oid);
e9d882b8 581 if (data->multi_ack == MULTI_ACK_DETAILED)
81c634e9 582 packet_write_fmt(1, "ACK %s common\n", last_hex);
53d69506 583 else if (data->multi_ack)
81c634e9 584 packet_write_fmt(1, "ACK %s continue\n", last_hex);
07977695 585 else if (data->have_obj.nr == 1)
81c634e9 586 packet_write_fmt(1, "ACK %s\n", last_hex);
937a515a 587 break;
af2d3aa4 588 }
def88e9a
LT
589 continue;
590 }
01f9ec64 591 if (!strcmp(reader->line, "done")) {
07977695 592 if (data->have_obj.nr > 0) {
53d69506 593 if (data->multi_ack)
81c634e9 594 packet_write_fmt(1, "ACK %s\n", last_hex);
1bd8c8f0
JS
595 return 0;
596 }
81c634e9 597 packet_write_fmt(1, "NAK\n");
def88e9a
LT
598 return -1;
599 }
01f9ec64 600 die("git upload-pack: expected SHA1 list, got '%s'", reader->line);
def88e9a 601 }
def88e9a
LT
602}
603
18b6b1b5
TB
604static int allow_hidden_refs(enum allow_uor allow_uor)
605{
606 if ((allow_uor & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1)
607 return 1;
608 return !(allow_uor & (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
609}
610
611static void for_each_namespaced_ref_1(each_ref_fn fn,
612 struct upload_pack_data *data)
613{
614 const char **excludes = NULL;
615 /*
616 * If `data->allow_uor` allows fetching hidden refs, we need to
617 * mark all references (including hidden ones), to check in
618 * `is_our_ref()` below.
619 *
620 * Otherwise, we only care about whether each reference's object
621 * has the OUR_REF bit set or not, so do not need to visit
622 * hidden references.
623 */
624 if (allow_hidden_refs(data->allow_uor))
625 excludes = hidden_refs_to_excludes(&data->hidden_refs);
626
627 for_each_namespaced_ref(excludes, fn, data);
628}
629
630
629060d9 631static int is_our_ref(struct object *o, enum allow_uor allow_uor)
390eb36b 632{
18b6b1b5 633 return o->flags & ((allow_hidden_refs(allow_uor) ? 0 : HIDDEN_REF) | OUR_REF);
390eb36b
JH
634}
635
2997178e
NTND
636/*
637 * on successful case, it's up to the caller to close cmd->out
638 */
639static int do_reachable_revlist(struct child_process *cmd,
079aa97e 640 struct object_array *src,
f1514c6a 641 struct object_array *reachable,
629060d9 642 enum allow_uor allow_uor)
051e4005 643{
051e4005 644 struct object *o;
a698d67b 645 FILE *cmd_in = NULL;
051e4005
JH
646 int i;
647
2b709893 648 strvec_pushl(&cmd->args, "rev-list", "--stdin", NULL);
2997178e
NTND
649 cmd->git_cmd = 1;
650 cmd->no_stderr = 1;
651 cmd->in = -1;
652 cmd->out = -1;
051e4005
JH
653
654 /*
7fcbd37f
NTND
655 * If the next rev-list --stdin encounters an unknown commit,
656 * it terminates, which will cause SIGPIPE in the write loop
051e4005
JH
657 * below.
658 */
659 sigchain_push(SIGPIPE, SIG_IGN);
660
2997178e 661 if (start_command(cmd))
7fcbd37f
NTND
662 goto error;
663
a698d67b
RS
664 cmd_in = xfdopen(cmd->in, "w");
665
051e4005
JH
666 for (i = get_max_object_index(); 0 < i; ) {
667 o = get_indexed_object(--i);
2a745324
BH
668 if (!o)
669 continue;
079aa97e
NTND
670 if (reachable && o->type == OBJ_COMMIT)
671 o->flags &= ~TMP_MARK;
629060d9 672 if (!is_our_ref(o, allow_uor))
051e4005 673 continue;
a698d67b 674 if (fprintf(cmd_in, "^%s\n", oid_to_hex(&o->oid)) < 0)
051e4005
JH
675 goto error;
676 }
3f0f6624
NTND
677 for (i = 0; i < src->nr; i++) {
678 o = src->objects[i].item;
629060d9 679 if (is_our_ref(o, allow_uor)) {
079aa97e
NTND
680 if (reachable)
681 add_object_array(o, NULL, reachable);
051e4005 682 continue;
079aa97e
NTND
683 }
684 if (reachable && o->type == OBJ_COMMIT)
685 o->flags |= TMP_MARK;
a698d67b 686 if (fprintf(cmd_in, "%s\n", oid_to_hex(&o->oid)) < 0)
051e4005
JH
687 goto error;
688 }
a698d67b
RS
689 if (ferror(cmd_in) || fflush(cmd_in))
690 goto error;
691 fclose(cmd_in);
2997178e
NTND
692 cmd->in = -1;
693 sigchain_pop(SIGPIPE);
051e4005 694
2997178e
NTND
695 return 0;
696
697error:
051e4005
JH
698 sigchain_pop(SIGPIPE);
699
a698d67b
RS
700 if (cmd_in)
701 fclose(cmd_in);
2997178e
NTND
702 if (cmd->out >= 0)
703 close(cmd->out);
704 return -1;
705}
706
f1514c6a 707static int get_reachable_list(struct upload_pack_data *data,
079aa97e
NTND
708 struct object_array *reachable)
709{
710 struct child_process cmd = CHILD_PROCESS_INIT;
711 int i;
712 struct object *o;
55dc227d 713 char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
714 const unsigned hexsz = the_hash_algo->hexsz;
079aa97e 715
f1514c6a 716 if (do_reachable_revlist(&cmd, &data->shallows, reachable,
629060d9 717 data->allow_uor) < 0)
079aa97e
NTND
718 return -1;
719
55dc227d 720 while ((i = read_in_full(cmd.out, namebuf, hexsz + 1)) == hexsz + 1) {
62b89d43 721 struct object_id oid;
55dc227d 722 const char *p;
079aa97e 723
62b89d43 724 if (parse_oid_hex(namebuf, &oid, &p) || *p != '\n')
079aa97e
NTND
725 break;
726
d0229abd 727 o = lookup_object(the_repository, &oid);
079aa97e
NTND
728 if (o && o->type == OBJ_COMMIT) {
729 o->flags &= ~TMP_MARK;
730 }
731 }
732 for (i = get_max_object_index(); 0 < i; i--) {
733 o = get_indexed_object(i - 1);
734 if (o && o->type == OBJ_COMMIT &&
735 (o->flags & TMP_MARK)) {
736 add_object_array(o, NULL, reachable);
737 o->flags &= ~TMP_MARK;
738 }
739 }
740 close(cmd.out);
741
742 if (finish_command(&cmd))
743 return -1;
744
745 return 0;
746}
747
629060d9 748static int has_unreachable(struct object_array *src, enum allow_uor allow_uor)
2997178e
NTND
749{
750 struct child_process cmd = CHILD_PROCESS_INIT;
751 char buf[1];
752 int i;
753
629060d9 754 if (do_reachable_revlist(&cmd, src, NULL, allow_uor) < 0)
2997178e 755 return 1;
051e4005
JH
756
757 /*
758 * The commits out of the rev-list are not ancestors of
759 * our ref.
760 */
2997178e 761 i = read_in_full(cmd.out, buf, 1);
051e4005
JH
762 if (i)
763 goto error;
764 close(cmd.out);
7fcbd37f 765 cmd.out = -1;
051e4005
JH
766
767 /*
768 * rev-list may have died by encountering a bad commit
769 * in the history, in which case we do want to bail out
770 * even when it showed no commit.
771 */
772 if (finish_command(&cmd))
773 goto error;
774
775 /* All the non-tip ones are ancestors of what we advertised */
3f0f6624 776 return 0;
051e4005
JH
777
778error:
7fcbd37f
NTND
779 if (cmd.out >= 0)
780 close(cmd.out);
3f0f6624
NTND
781 return 1;
782}
7fcbd37f 783
b08c9742 784static void check_non_tip(struct upload_pack_data *data)
3f0f6624
NTND
785{
786 int i;
787
788 /*
789 * In the normal in-process case without
790 * uploadpack.allowReachableSHA1InWant,
791 * non-tip requests can never happen.
792 */
629060d9 793 if (!data->stateless_rpc && !(data->allow_uor & ALLOW_REACHABLE_SHA1))
3f0f6624 794 goto error;
629060d9 795 if (!has_unreachable(&data->want_obj, data->allow_uor))
3f0f6624
NTND
796 /* All the non-tip ones are ancestors of what we advertised */
797 return;
051e4005
JH
798
799error:
800 /* Pick one of them (we know there at least is one) */
b08c9742
CC
801 for (i = 0; i < data->want_obj.nr; i++) {
802 struct object *o = data->want_obj.objects[i].item;
629060d9 803 if (!is_our_ref(o, data->allow_uor)) {
7ba7c52d
DS
804 error("git upload-pack: not our ref %s",
805 oid_to_hex(&o->oid));
b08c9742 806 packet_writer_error(&data->writer,
014ade74
JK
807 "upload-pack: not our ref %s",
808 oid_to_hex(&o->oid));
5f33a843 809 exit(128);
014ade74 810 }
051e4005
JH
811 }
812}
813
35b43a10 814static void send_shallow(struct upload_pack_data *data,
bc2e795c 815 struct commit_list *result)
5c24cdea
NTND
816{
817 while (result) {
818 struct object *object = &result->item->object;
819 if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
35b43a10 820 packet_writer_write(&data->writer, "shallow %s",
bc2e795c 821 oid_to_hex(&object->oid));
19143f13 822 register_shallow(the_repository, &object->oid);
35b43a10 823 data->shallow_nr++;
5c24cdea
NTND
824 }
825 result = result->next;
826 }
827}
828
329f9960 829static void send_unshallow(struct upload_pack_data *data)
e8e44de7 830{
e8e44de7 831 int i;
873700c9 832
329f9960
CC
833 for (i = 0; i < data->shallows.nr; i++) {
834 struct object *object = data->shallows.objects[i].item;
e8e44de7
NTND
835 if (object->flags & NOT_SHALLOW) {
836 struct commit_list *parents;
329f9960 837 packet_writer_write(&data->writer, "unshallow %s",
bc2e795c 838 oid_to_hex(&object->oid));
e8e44de7 839 object->flags &= ~CLIENT_SHALLOW;
873700c9
NTND
840 /*
841 * We want to _register_ "object" as shallow, but we
842 * also need to traverse object's parents to deepen a
843 * shallow clone. Unregister it for now so we can
844 * parse and add the parents to the want list, then
845 * re-register it.
846 */
e92b848c 847 unregister_shallow(&object->oid);
e8e44de7
NTND
848 object->parsed = 0;
849 parse_commit_or_die((struct commit *)object);
850 parents = ((struct commit *)object)->parents;
851 while (parents) {
852 add_object_array(&parents->item->object,
329f9960 853 NULL, &data->want_obj);
e8e44de7
NTND
854 parents = parents->next;
855 }
de0e9f74 856 add_object_array(object, NULL, &data->extra_edge_obj);
e8e44de7
NTND
857 }
858 /* make sure commit traversal conforms to client */
19143f13 859 register_shallow(the_repository, &object->oid);
e8e44de7 860 }
873700c9
NTND
861}
862
5056cf4a
JT
863static int check_ref(const char *refname_full, const struct object_id *oid,
864 int flag, void *cb_data);
b1492f22 865static void deepen(struct upload_pack_data *data, int depth)
873700c9 866{
c8813487 867 if (depth == INFINITE_DEPTH && !is_repository_shallow(the_repository)) {
873700c9
NTND
868 int i;
869
b1492f22
CC
870 for (i = 0; i < data->shallows.nr; i++) {
871 struct object *object = data->shallows.objects[i].item;
873700c9
NTND
872 object->flags |= NOT_SHALLOW;
873 }
b1492f22 874 } else if (data->deepen_relative) {
cccf74e2
NTND
875 struct object_array reachable_shallows = OBJECT_ARRAY_INIT;
876 struct commit_list *result;
877
5056cf4a
JT
878 /*
879 * Checking for reachable shallows requires that our refs be
880 * marked with OUR_REF.
881 */
9b67eb6f 882 head_ref_namespaced(check_ref, data);
18b6b1b5 883 for_each_namespaced_ref_1(check_ref, data);
5056cf4a 884
f1514c6a 885 get_reachable_list(data, &reachable_shallows);
cccf74e2
NTND
886 result = get_shallow_commits(&reachable_shallows,
887 depth + 1,
888 SHALLOW, NOT_SHALLOW);
35b43a10 889 send_shallow(data, result);
cccf74e2
NTND
890 free_commit_list(result);
891 object_array_clear(&reachable_shallows);
873700c9
NTND
892 } else {
893 struct commit_list *result;
894
b1492f22 895 result = get_shallow_commits(&data->want_obj, depth,
873700c9 896 SHALLOW, NOT_SHALLOW);
35b43a10 897 send_shallow(data, result);
873700c9
NTND
898 free_commit_list(result);
899 }
900
329f9960 901 send_unshallow(data);
e8e44de7
NTND
902}
903
446e42c5
CC
904static void deepen_by_rev_list(struct upload_pack_data *data,
905 int ac,
906 const char **av)
569e554b
NTND
907{
908 struct commit_list *result;
909
6abada18 910 disable_commit_graph(the_repository);
569e554b 911 result = get_shallow_commits_by_rev_list(ac, av, SHALLOW, NOT_SHALLOW);
35b43a10 912 send_shallow(data, result);
569e554b 913 free_commit_list(result);
329f9960 914 send_unshallow(data);
685fbd32
BW
915}
916
917/* Returns 1 if a shallow list is sent or 0 otherwise */
ee703c8a 918static int send_shallow_list(struct upload_pack_data *data)
685fbd32
BW
919{
920 int ret = 0;
921
ee703c8a 922 if (data->depth > 0 && data->deepen_rev_list)
685fbd32 923 die("git upload-pack: deepen and deepen-since (or deepen-not) cannot be used together");
ee703c8a 924 if (data->depth > 0) {
b1492f22 925 deepen(data, data->depth);
685fbd32 926 ret = 1;
ee703c8a 927 } else if (data->deepen_rev_list) {
c972bf4c 928 struct strvec av = STRVEC_INIT;
685fbd32
BW
929 int i;
930
c972bf4c 931 strvec_push(&av, "rev-list");
ee703c8a 932 if (data->deepen_since)
c972bf4c 933 strvec_pushf(&av, "--max-age=%"PRItime, data->deepen_since);
ee703c8a 934 if (data->deepen_not.nr) {
c972bf4c 935 strvec_push(&av, "--not");
ee703c8a
CC
936 for (i = 0; i < data->deepen_not.nr; i++) {
937 struct string_list_item *s = data->deepen_not.items + i;
c972bf4c 938 strvec_push(&av, s->string);
685fbd32 939 }
c972bf4c 940 strvec_push(&av, "--not");
685fbd32 941 }
ee703c8a
CC
942 for (i = 0; i < data->want_obj.nr; i++) {
943 struct object *o = data->want_obj.objects[i].item;
c972bf4c 944 strvec_push(&av, oid_to_hex(&o->oid));
685fbd32 945 }
d70a9eb6 946 deepen_by_rev_list(data, av.nr, av.v);
c972bf4c 947 strvec_clear(&av);
685fbd32
BW
948 ret = 1;
949 } else {
ee703c8a 950 if (data->shallows.nr > 0) {
685fbd32 951 int i;
ee703c8a 952 for (i = 0; i < data->shallows.nr; i++)
00624d60 953 register_shallow(the_repository,
ee703c8a 954 &data->shallows.objects[i].item->oid);
685fbd32
BW
955 }
956 }
957
35b43a10 958 data->shallow_nr += data->shallows.nr;
685fbd32 959 return ret;
569e554b
NTND
960}
961
ae2948f3
BW
962static int process_shallow(const char *line, struct object_array *shallows)
963{
964 const char *arg;
965 if (skip_prefix(line, "shallow ", &arg)) {
966 struct object_id oid;
967 struct object *object;
968 if (get_oid_hex(arg, &oid))
969 die("invalid shallow line: %s", line);
109cd76d 970 object = parse_object(the_repository, &oid);
ae2948f3
BW
971 if (!object)
972 return 1;
973 if (object->type != OBJ_COMMIT)
974 die("invalid shallow object %s", oid_to_hex(&oid));
975 if (!(object->flags & CLIENT_SHALLOW)) {
976 object->flags |= CLIENT_SHALLOW;
977 add_object_array(object, NULL, shallows);
978 }
979 return 1;
980 }
981
982 return 0;
983}
984
985static int process_deepen(const char *line, int *depth)
986{
987 const char *arg;
988 if (skip_prefix(line, "deepen ", &arg)) {
989 char *end = NULL;
990 *depth = (int)strtol(arg, &end, 0);
991 if (!end || *end || *depth <= 0)
992 die("Invalid deepen: %s", line);
993 return 1;
994 }
995
996 return 0;
997}
998
999static int process_deepen_since(const char *line, timestamp_t *deepen_since, int *deepen_rev_list)
1000{
1001 const char *arg;
1002 if (skip_prefix(line, "deepen-since ", &arg)) {
1003 char *end = NULL;
1004 *deepen_since = parse_timestamp(arg, &end, 0);
1005 if (!end || *end || !deepen_since ||
1006 /* revisions.c's max_age -1 is special */
1007 *deepen_since == -1)
1008 die("Invalid deepen-since: %s", line);
1009 *deepen_rev_list = 1;
1010 return 1;
1011 }
1012 return 0;
1013}
1014
1015static int process_deepen_not(const char *line, struct string_list *deepen_not, int *deepen_rev_list)
1016{
1017 const char *arg;
1018 if (skip_prefix(line, "deepen-not ", &arg)) {
1019 char *ref = NULL;
1020 struct object_id oid;
0b1dbf53 1021 if (expand_ref(the_repository, arg, strlen(arg), &oid, &ref) != 1)
ae2948f3
BW
1022 die("git upload-pack: ambiguous deepen-not: %s", line);
1023 string_list_append(deepen_not, ref);
1024 free(ref);
1025 *deepen_rev_list = 1;
1026 return 1;
1027 }
1028 return 0;
569e554b
NTND
1029}
1030
6dd3456a
TB
1031NORETURN __attribute__((format(printf,2,3)))
1032static void send_err_and_die(struct upload_pack_data *data,
1033 const char *fmt, ...)
1034{
1035 struct strbuf buf = STRBUF_INIT;
1036 va_list ap;
1037
1038 va_start(ap, fmt);
1039 strbuf_vaddf(&buf, fmt, ap);
1040 va_end(ap);
1041
1042 packet_writer_error(&data->writer, "%s", buf.buf);
1043 die("%s", buf.buf);
1044}
1045
1046static void check_one_filter(struct upload_pack_data *data,
1047 struct list_objects_filter_options *opts)
1048{
1049 const char *key = list_object_filter_config_name(opts->choice);
1050 struct string_list_item *item = string_list_lookup(&data->allowed_filters,
1051 key);
1052 int allowed;
1053
1054 if (item)
1055 allowed = (intptr_t)item->util;
1056 else
1057 allowed = data->allow_filter_fallback;
1058
1059 if (!allowed)
1060 send_err_and_die(data, "filter '%s' not supported", key);
5b01a4e8
TB
1061
1062 if (opts->choice == LOFC_TREE_DEPTH &&
1063 opts->tree_exclude_depth > data->tree_filter_max_depth)
1064 send_err_and_die(data,
1065 "tree filter allows max depth %lu, but got %lu",
1066 data->tree_filter_max_depth,
1067 opts->tree_exclude_depth);
6dd3456a
TB
1068}
1069
1070static void check_filter_recurse(struct upload_pack_data *data,
1071 struct list_objects_filter_options *opts)
1072{
1073 size_t i;
1074
1075 check_one_filter(data, opts);
1076 if (opts->choice != LOFC_COMBINE)
1077 return;
1078
1079 for (i = 0; i < opts->sub_nr; i++)
1080 check_filter_recurse(data, &opts->sub[i]);
1081}
1082
1083static void die_if_using_banned_filter(struct upload_pack_data *data)
1084{
1085 check_filter_recurse(data, &data->filter_options);
1086}
1087
d92ae2c0
CC
1088static void receive_needs(struct upload_pack_data *data,
1089 struct packet_reader *reader)
fb9040cc 1090{
051e4005 1091 int has_non_tip = 0;
fb9040cc 1092
35b43a10 1093 data->shallow_nr = 0;
fb9040cc 1094 for (;;) {
565ebbf7 1095 struct object *o;
f47182c8 1096 const char *features;
cf93982f 1097 struct object_id oid_buf;
8bf3b758 1098 const char *arg;
7ce4c8f7 1099 size_t feature_len;
8bf3b758 1100
d40f04e0 1101 reset_timeout(data->timeout);
01f9ec64 1102 if (packet_reader_read(reader) != PACKET_READ_NORMAL)
ed09aef0 1103 break;
e091eb93 1104
7a516764 1105 if (process_shallow(reader->line, &data->shallows))
ed09aef0 1106 continue;
7a516764 1107 if (process_deepen(reader->line, &data->depth))
016e6ccb 1108 continue;
7a516764 1109 if (process_deepen_since(reader->line, &data->deepen_since, &data->deepen_rev_list))
569e554b 1110 continue;
7a516764 1111 if (process_deepen_not(reader->line, &data->deepen_not, &data->deepen_rev_list))
269a7a83 1112 continue;
ae2948f3 1113
01f9ec64 1114 if (skip_prefix(reader->line, "filter ", &arg)) {
59a90261 1115 if (!data->filter_capability_requested)
10ac85c7 1116 die("git upload-pack: filtering capability not negotiated");
d92ae2c0
CC
1117 list_objects_filter_die_if_populated(&data->filter_options);
1118 parse_list_objects_filter(&data->filter_options, arg);
6dd3456a 1119 die_if_using_banned_filter(data);
10ac85c7
JH
1120 continue;
1121 }
9bfa0f9b 1122
01f9ec64 1123 if (!skip_prefix(reader->line, "want ", &arg) ||
55dc227d 1124 parse_oid_hex(arg, &oid_buf, &features))
7e44c935 1125 die("git upload-pack: protocol error, "
01f9ec64 1126 "expected to get object ID, not '%s'", reader->line);
f47182c8 1127
cccf74e2 1128 if (parse_feature_request(features, "deepen-relative"))
7a516764 1129 data->deepen_relative = 1;
f47182c8 1130 if (parse_feature_request(features, "multi_ack_detailed"))
e9d882b8 1131 data->multi_ack = MULTI_ACK_DETAILED;
f47182c8 1132 else if (parse_feature_request(features, "multi_ack"))
e9d882b8 1133 data->multi_ack = MULTI_ACK;
f47182c8 1134 if (parse_feature_request(features, "no-done"))
d40f04e0 1135 data->no_done = 1;
f47182c8 1136 if (parse_feature_request(features, "thin-pack"))
b5a2068c 1137 data->use_thin_pack = 1;
f47182c8 1138 if (parse_feature_request(features, "ofs-delta"))
b5a2068c 1139 data->use_ofs_delta = 1;
f47182c8 1140 if (parse_feature_request(features, "side-band-64k"))
f8edd1ca 1141 data->use_sideband = LARGE_PACKET_MAX;
f47182c8 1142 else if (parse_feature_request(features, "side-band"))
f8edd1ca 1143 data->use_sideband = DEFAULT_PACKET_MAX;
f47182c8 1144 if (parse_feature_request(features, "no-progress"))
b5a2068c 1145 data->no_progress = 1;
f47182c8 1146 if (parse_feature_request(features, "include-tag"))
b5a2068c 1147 data->use_include_tag = 1;
59abe196
CC
1148 if (data->allow_filter &&
1149 parse_feature_request(features, "filter"))
59a90261 1150 data->filter_capability_requested = 1;
565ebbf7 1151
82959467
JS
1152 arg = parse_feature_value(features, "session-id", &feature_len, NULL);
1153 if (arg) {
1154 char *client_sid = xstrndup(arg, feature_len);
1155 trace2_data_string("transfer", NULL, "client-sid", client_sid);
1156 free(client_sid);
1157 }
1158
109cd76d 1159 o = parse_object(the_repository, &oid_buf);
bdb31ead 1160 if (!o) {
4ace0283 1161 packet_writer_error(&data->writer,
bc2e795c
JT
1162 "upload-pack: not our ref %s",
1163 oid_to_hex(&oid_buf));
9f9aa761 1164 die("git upload-pack: not our ref %s",
cf93982f 1165 oid_to_hex(&oid_buf));
bdb31ead 1166 }
565ebbf7
JH
1167 if (!(o->flags & WANTED)) {
1168 o->flags |= WANTED;
629060d9
CC
1169 if (!((data->allow_uor & ALLOW_ANY_SHA1) == ALLOW_ANY_SHA1
1170 || is_our_ref(o, data->allow_uor)))
051e4005 1171 has_non_tip = 1;
d92ae2c0 1172 add_object_array(o, NULL, &data->want_obj);
565ebbf7 1173 }
fb9040cc 1174 }
9462e3f5 1175
051e4005
JH
1176 /*
1177 * We have sent all our refs already, and the other end
1178 * should have chosen out of them. When we are operating
1179 * in the stateless RPC mode, however, their choice may
1180 * have been based on the set of older refs advertised
1181 * by another process that handled the initial request.
1182 */
1183 if (has_non_tip)
b08c9742 1184 check_non_tip(data);
051e4005 1185
f8edd1ca 1186 if (!data->use_sideband && data->daemon_mode)
b5a2068c 1187 data->no_progress = 1;
9462e3f5 1188
7a516764 1189 if (data->depth == 0 && !data->deepen_rev_list && data->shallows.nr == 0)
f53514bc 1190 return;
569e554b 1191
ee703c8a 1192 if (send_shallow_list(data))
685fbd32 1193 packet_flush(1);
fb9040cc
LT
1194}
1195
daebaa78 1196/* return non-zero if the ref is hidden, otherwise 0 */
78a766ab 1197static int mark_our_ref(const char *refname, const char *refname_full,
c45841ff 1198 const struct object_id *oid, const struct strvec *hidden_refs)
cbbe50db 1199{
45a187cc 1200 struct object *o = lookup_unknown_object(the_repository, oid);
daebaa78 1201
9b67eb6f 1202 if (ref_is_hidden(refname, refname_full, hidden_refs)) {
390eb36b 1203 o->flags |= HIDDEN_REF;
daebaa78 1204 return 1;
390eb36b 1205 }
3f1da57f 1206 o->flags |= OUR_REF;
cbbe50db
JH
1207 return 0;
1208}
1209
78a766ab 1210static int check_ref(const char *refname_full, const struct object_id *oid,
9b67eb6f 1211 int flag UNUSED, void *cb_data)
e172755b 1212{
78a766ab 1213 const char *refname = strip_namespace(refname_full);
9b67eb6f 1214 struct upload_pack_data *data = cb_data;
78a766ab 1215
9b67eb6f 1216 mark_our_ref(refname, refname_full, oid, &data->hidden_refs);
e172755b
JK
1217 return 0;
1218}
1219
7171d8c1
JH
1220static void format_symref_info(struct strbuf *buf, struct string_list *symref)
1221{
1222 struct string_list_item *item;
1223
1224 if (!symref->nr)
1225 return;
1226 for_each_string_list_item(item, symref)
1227 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
1228}
1229
791e1adf
JS
1230static void format_session_id(struct strbuf *buf, struct upload_pack_data *d) {
1231 if (d->advertise_sid)
1232 strbuf_addf(buf, " session-id=%s", trace2_session_id());
1233}
1234
933e3a4e 1235static void write_v0_ref(struct upload_pack_data *data,
1236 const char *refname, const char *refname_nons,
1237 const struct object_id *oid)
def88e9a 1238{
ed09aef0 1239 static const char *capabilities = "multi_ack thin-pack side-band"
cccf74e2
NTND
1240 " side-band-64k ofs-delta shallow deepen-since deepen-not"
1241 " deepen-relative no-progress include-tag multi_ack_detailed";
21758aff 1242 struct object_id peeled;
b5b16990 1243
9b67eb6f 1244 if (mark_our_ref(refname_nons, refname, oid, &data->hidden_refs))
933e3a4e 1245 return;
cbbe50db 1246
7171d8c1
JH
1247 if (capabilities) {
1248 struct strbuf symref_info = STRBUF_INIT;
791e1adf 1249 struct strbuf session_id = STRBUF_INIT;
7171d8c1 1250
762f9276 1251 format_symref_info(&symref_info, &data->symref);
791e1adf 1252 format_session_id(&session_id, data);
70afef5c 1253 packet_fwrite_fmt(stdout, "%s %s%c%s%s%s%s%s%s%s object-format=%s agent=%s\n",
363e98bf 1254 oid_to_hex(oid), refname_nons,
cf2ad8e6 1255 0, capabilities,
629060d9 1256 (data->allow_uor & ALLOW_TIP_SHA1) ?
7199c093 1257 " allow-tip-sha1-in-want" : "",
629060d9 1258 (data->allow_uor & ALLOW_REACHABLE_SHA1) ?
68ee6289 1259 " allow-reachable-sha1-in-want" : "",
f234da80 1260 data->no_done ? " no-done" : "",
7171d8c1 1261 symref_info.buf,
59abe196 1262 data->allow_filter ? " filter" : "",
791e1adf 1263 session_id.buf,
bf30dbf8 1264 the_hash_algo->name,
ff5effdf 1265 git_user_agent_sanitized());
7171d8c1 1266 strbuf_release(&symref_info);
791e1adf 1267 strbuf_release(&session_id);
933e3a4e 1268 data->sent_capabilities = 1;
7171d8c1 1269 } else {
70afef5c 1270 packet_fwrite_fmt(stdout, "%s %s\n", oid_to_hex(oid), refname_nons);
7171d8c1 1271 }
1f5881bb 1272 capabilities = NULL;
36a31792 1273 if (!peel_iterated_oid(oid, &peeled))
70afef5c 1274 packet_fwrite_fmt(stdout, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
933e3a4e 1275 return;
1276}
1277
1278static int send_ref(const char *refname, const struct object_id *oid,
1279 int flag UNUSED, void *cb_data)
1280{
1281 write_v0_ref(cb_data, refname, strip_namespace(refname), oid);
def88e9a
LT
1282 return 0;
1283}
1284
63e14ee2 1285static int find_symref(const char *refname,
5cf88fd8 1286 const struct object_id *oid UNUSED,
7dabd056 1287 int flag, void *cb_data)
7171d8c1
JH
1288{
1289 const char *symref_target;
1290 struct string_list_item *item;
7171d8c1
JH
1291
1292 if ((flag & REF_ISSYMREF) == 0)
1293 return 0;
744c040b 1294 symref_target = resolve_ref_unsafe(refname, 0, NULL, &flag);
7171d8c1
JH
1295 if (!symref_target || (flag & REF_ISSYMREF) == 0)
1296 die("'%s' is a symref but it is not?", refname);
533e0882
JK
1297 item = string_list_append(cb_data, strip_namespace(refname));
1298 item->util = xstrdup(strip_namespace(symref_target));
7171d8c1
JH
1299 return 0;
1300}
1301
6dd3456a 1302static int parse_object_filter_config(const char *var, const char *value,
8868b1eb
GC
1303 const struct key_value_info *kvi,
1304 struct upload_pack_data *data)
6dd3456a
TB
1305{
1306 struct strbuf buf = STRBUF_INIT;
1307 const char *sub, *key;
1308 size_t sub_len;
1309
1310 if (parse_config_key(var, "uploadpackfilter", &sub, &sub_len, &key))
1311 return 0;
1312
1313 if (!sub) {
1314 if (!strcmp(key, "allow"))
1315 data->allow_filter_fallback = git_config_bool(var, value);
1316 return 0;
1317 }
1318
1319 strbuf_add(&buf, sub, sub_len);
1320
1321 if (!strcmp(key, "allow"))
1322 string_list_insert(&data->allowed_filters, buf.buf)->util =
1323 (void *)(intptr_t)git_config_bool(var, value);
5b01a4e8
TB
1324 else if (!strcmp(buf.buf, "tree") && !strcmp(key, "maxdepth")) {
1325 if (!value) {
1326 strbuf_release(&buf);
1327 return config_error_nonbool(var);
1328 }
1329 string_list_insert(&data->allowed_filters, buf.buf)->util =
1330 (void *)(intptr_t)1;
8868b1eb
GC
1331 data->tree_filter_max_depth = git_config_ulong(var, value,
1332 kvi);
5b01a4e8 1333 }
6dd3456a
TB
1334
1335 strbuf_release(&buf);
1336 return 0;
1337}
1338
a4e7e317 1339static int upload_pack_config(const char *var, const char *value,
8868b1eb 1340 const struct config_context *ctx,
a4e7e317 1341 void *cb_data)
daebaa78 1342{
f203a88c
CC
1343 struct upload_pack_data *data = cb_data;
1344
7199c093
FM
1345 if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
1346 if (git_config_bool(var, value))
629060d9 1347 data->allow_uor |= ALLOW_TIP_SHA1;
7199c093 1348 else
629060d9 1349 data->allow_uor &= ~ALLOW_TIP_SHA1;
68ee6289
FM
1350 } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
1351 if (git_config_bool(var, value))
629060d9 1352 data->allow_uor |= ALLOW_REACHABLE_SHA1;
68ee6289 1353 else
629060d9 1354 data->allow_uor &= ~ALLOW_REACHABLE_SHA1;
f8edeaa0
DT
1355 } else if (!strcmp("uploadpack.allowanysha1inwant", var)) {
1356 if (git_config_bool(var, value))
629060d9 1357 data->allow_uor |= ALLOW_ANY_SHA1;
f8edeaa0 1358 else
629060d9 1359 data->allow_uor &= ~ALLOW_ANY_SHA1;
7199c093 1360 } else if (!strcmp("uploadpack.keepalive", var)) {
8868b1eb 1361 data->keepalive = git_config_int(var, value, ctx->kvi);
f203a88c
CC
1362 if (!data->keepalive)
1363 data->keepalive = -1;
10ac85c7 1364 } else if (!strcmp("uploadpack.allowfilter", var)) {
59abe196 1365 data->allow_filter = git_config_bool(var, value);
516e2b76 1366 } else if (!strcmp("uploadpack.allowrefinwant", var)) {
d1d7a945 1367 data->allow_ref_in_want = git_config_bool(var, value);
0bbc0bc5 1368 } else if (!strcmp("uploadpack.allowsidebandall", var)) {
e3835cd4 1369 data->allow_sideband_all = git_config_bool(var, value);
8e712ef6
EN
1370 } else if (!strcmp("core.precomposeunicode", var)) {
1371 precomposed_unicode = git_config_bool(var, value);
791e1adf
JS
1372 } else if (!strcmp("transfer.advertisesid", var)) {
1373 data->advertise_sid = git_config_bool(var, value);
05e95155 1374 }
aaaa8818 1375
8868b1eb 1376 if (parse_object_filter_config(var, value, ctx->kvi, data) < 0)
d43a21bd 1377 return -1;
6dd3456a 1378
9b67eb6f 1379 return parse_hide_refs_config(var, value, "uploadpack", &data->hidden_refs);
daebaa78
JH
1380}
1381
a4e7e317
GC
1382static int upload_pack_protected_config(const char *var, const char *value,
1383 const struct config_context *ctx UNUSED,
1384 void *cb_data)
5b3c6507
GC
1385{
1386 struct upload_pack_data *data = cb_data;
1387
1388 if (!strcmp("uploadpack.packobjectshook", var))
1389 return git_config_string(&data->pack_objects_hook, var, value);
1390 return 0;
1391}
1392
1393static void get_upload_pack_config(struct upload_pack_data *data)
1394{
1395 git_config(upload_pack_config, data);
1396 git_protected_config(upload_pack_protected_config, data);
1397}
1398
f234da80
ÆAB
1399void upload_pack(const int advertise_refs, const int stateless_rpc,
1400 const int timeout)
def88e9a 1401{
01f9ec64 1402 struct packet_reader reader;
ebf8ebcc 1403 struct upload_pack_data data;
960deccb 1404
ebf8ebcc 1405 upload_pack_data_init(&data);
5b3c6507 1406 get_upload_pack_config(&data);
8a0e6f16 1407
f234da80
ÆAB
1408 data.stateless_rpc = stateless_rpc;
1409 data.timeout = timeout;
1410 if (data.timeout)
1411 data.daemon_mode = 1;
df654abc 1412
438528f6 1413 head_ref_namespaced(find_symref, &data.symref);
a6080a0a 1414
f234da80 1415 if (advertise_refs || !data.stateless_rpc) {
d40f04e0 1416 reset_timeout(data.timeout);
f234da80
ÆAB
1417 if (advertise_refs)
1418 data.no_done = 1;
762f9276 1419 head_ref_namespaced(send_ref, &data);
18b6b1b5 1420 for_each_namespaced_ref_1(send_ref, &data);
933e3a4e 1421 if (!data.sent_capabilities) {
1422 const char *refname = "capabilities^{}";
1423 write_v0_ref(&data, refname, refname, null_oid());
1424 }
70afef5c
JV
1425 /*
1426 * fflush stdout before calling advertise_shallow_grafts because send_ref
1427 * uses stdio.
1428 */
1429 fflush_or_die(stdout);
a3d6b53e
BW
1430 advertise_shallow_grafts(1);
1431 packet_flush(1);
1432 } else {
9b67eb6f 1433 head_ref_namespaced(check_ref, &data);
18b6b1b5 1434 for_each_namespaced_ref_1(check_ref, &data);
aa9bab29 1435 }
01f9ec64 1436
f234da80 1437 if (!advertise_refs) {
ebf8ebcc
CC
1438 packet_reader_init(&reader, 0, NULL, 0,
1439 PACKET_READ_CHOMP_NEWLINE |
1440 PACKET_READ_DIE_ON_ERR_PACKET);
1441
d92ae2c0 1442 receive_needs(&data, &reader);
fb3d1a08
DD
1443
1444 /*
1445 * An EOF at this exact point in negotiation should be
1446 * acceptable from stateless clients as they will consume the
1447 * shallow list before doing subsequent rpc with haves/etc.
1448 */
1449 if (data.stateless_rpc)
1450 reader.options |= PACKET_READ_GENTLE_ON_EOF;
1451
1452 if (data.want_obj.nr &&
1453 packet_reader_peek(&reader) != PACKET_READ_EOF) {
1454 reader.options &= ~PACKET_READ_GENTLE_ON_EOF;
07977695 1455 get_common_commits(&data, &reader);
cae2ee10 1456 create_pack_file(&data, NULL);
ebf8ebcc 1457 }
a3d6b53e 1458 }
08450ef7 1459
ebf8ebcc 1460 upload_pack_data_clear(&data);
def88e9a 1461}
04b33055 1462
bc2e795c
JT
1463static int parse_want(struct packet_writer *writer, const char *line,
1464 struct object_array *want_obj)
3145ea95
BW
1465{
1466 const char *arg;
1467 if (skip_prefix(line, "want ", &arg)) {
1468 struct object_id oid;
1469 struct object *o;
1470
1471 if (get_oid_hex(arg, &oid))
1472 die("git upload-pack: protocol error, "
1473 "expected to get oid, not '%s'", line);
1474
9a8c3c4a
JK
1475 o = parse_object_with_flags(the_repository, &oid,
1476 PARSE_OBJECT_SKIP_HASH_CHECK);
4de65626 1477
3145ea95 1478 if (!o) {
bc2e795c
JT
1479 packet_writer_error(writer,
1480 "upload-pack: not our ref %s",
1481 oid_to_hex(&oid));
3145ea95
BW
1482 die("git upload-pack: not our ref %s",
1483 oid_to_hex(&oid));
1484 }
1485
1486 if (!(o->flags & WANTED)) {
1487 o->flags |= WANTED;
1d1243fe 1488 add_object_array(o, NULL, want_obj);
3145ea95
BW
1489 }
1490
1491 return 1;
1492 }
1493
1494 return 0;
1495}
1496
bc2e795c
JT
1497static int parse_want_ref(struct packet_writer *writer, const char *line,
1498 struct string_list *wanted_refs,
c45841ff 1499 struct strvec *hidden_refs,
1d1243fe 1500 struct object_array *want_obj)
516e2b76 1501{
39551406
KA
1502 const char *refname_nons;
1503 if (skip_prefix(line, "want-ref ", &refname_nons)) {
516e2b76
BW
1504 struct object_id oid;
1505 struct string_list_item *item;
4de65626 1506 struct object *o = NULL;
39551406 1507 struct strbuf refname = STRBUF_INIT;
516e2b76 1508
39551406 1509 strbuf_addf(&refname, "%s%s", get_git_namespace(), refname_nons);
9b67eb6f 1510 if (ref_is_hidden(refname_nons, refname.buf, hidden_refs) ||
39551406
KA
1511 read_ref(refname.buf, &oid)) {
1512 packet_writer_error(writer, "unknown ref %s", refname_nons);
1513 die("unknown ref %s", refname_nons);
516e2b76 1514 }
39551406 1515 strbuf_release(&refname);
516e2b76 1516
39551406 1517 item = string_list_append(wanted_refs, refname_nons);
516e2b76
BW
1518 item->util = oiddup(&oid);
1519
4de65626
PS
1520 if (!starts_with(refname_nons, "refs/tags/")) {
1521 struct commit *commit = lookup_commit_in_graph(the_repository, &oid);
1522 if (commit)
1523 o = &commit->object;
1524 }
1525
1526 if (!o)
1527 o = parse_object_or_die(&oid, refname_nons);
1528
516e2b76
BW
1529 if (!(o->flags & WANTED)) {
1530 o->flags |= WANTED;
1d1243fe 1531 add_object_array(o, NULL, want_obj);
516e2b76
BW
1532 }
1533
1534 return 1;
1535 }
1536
1537 return 0;
1538}
1539
3145ea95
BW
1540static int parse_have(const char *line, struct oid_array *haves)
1541{
1542 const char *arg;
1543 if (skip_prefix(line, "have ", &arg)) {
1544 struct object_id oid;
1545
1546 if (get_oid_hex(arg, &oid))
1547 die("git upload-pack: expected SHA1 object, got '%s'", arg);
1548 oid_array_append(haves, &oid);
1549 return 1;
aa9bab29
BW
1550 }
1551
def88e9a
LT
1552 return 0;
1553}
3145ea95
BW
1554
1555static void process_args(struct packet_reader *request,
389f161a 1556 struct upload_pack_data *data)
3145ea95 1557{
4845b772 1558 while (packet_reader_read(request) == PACKET_READ_NORMAL) {
3145ea95 1559 const char *arg = request->line;
ba95710a 1560 const char *p;
3145ea95
BW
1561
1562 /* process want */
389f161a 1563 if (parse_want(&data->writer, arg, &data->want_obj))
3145ea95 1564 continue;
d1d7a945 1565 if (data->allow_ref_in_want &&
bc2e795c 1566 parse_want_ref(&data->writer, arg, &data->wanted_refs,
9b67eb6f 1567 &data->hidden_refs, &data->want_obj))
516e2b76 1568 continue;
3145ea95
BW
1569 /* process have line */
1570 if (parse_have(arg, &data->haves))
1571 continue;
1572
1573 /* process args like thin-pack */
1574 if (!strcmp(arg, "thin-pack")) {
b5a2068c 1575 data->use_thin_pack = 1;
3145ea95
BW
1576 continue;
1577 }
1578 if (!strcmp(arg, "ofs-delta")) {
b5a2068c 1579 data->use_ofs_delta = 1;
3145ea95
BW
1580 continue;
1581 }
1582 if (!strcmp(arg, "no-progress")) {
b5a2068c 1583 data->no_progress = 1;
3145ea95
BW
1584 continue;
1585 }
1586 if (!strcmp(arg, "include-tag")) {
b5a2068c 1587 data->use_include_tag = 1;
3145ea95
BW
1588 continue;
1589 }
1590 if (!strcmp(arg, "done")) {
1591 data->done = 1;
1592 continue;
1593 }
9c1e657a
JT
1594 if (!strcmp(arg, "wait-for-done")) {
1595 data->wait_for_done = 1;
1596 continue;
1597 }
3145ea95 1598
685fbd32
BW
1599 /* Shallow related arguments */
1600 if (process_shallow(arg, &data->shallows))
1601 continue;
1602 if (process_deepen(arg, &data->depth))
1603 continue;
1604 if (process_deepen_since(arg, &data->deepen_since,
1605 &data->deepen_rev_list))
1606 continue;
1607 if (process_deepen_not(arg, &data->deepen_not,
1608 &data->deepen_rev_list))
1609 continue;
1610 if (!strcmp(arg, "deepen-relative")) {
1611 data->deepen_relative = 1;
1612 continue;
1613 }
1614
59abe196 1615 if (data->allow_filter && skip_prefix(arg, "filter ", &p)) {
08450ef7
CC
1616 list_objects_filter_die_if_populated(&data->filter_options);
1617 parse_list_objects_filter(&data->filter_options, p);
6dd3456a 1618 die_if_using_banned_filter(data);
ba95710a
JT
1619 continue;
1620 }
1621
07c3c2aa 1622 if ((git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
e3835cd4 1623 data->allow_sideband_all) &&
07c3c2aa 1624 !strcmp(arg, "sideband-all")) {
0bbc0bc5
JT
1625 data->writer.use_sideband = 1;
1626 continue;
1627 }
1628
dd4b732d
JT
1629 if (skip_prefix(arg, "packfile-uris ", &p)) {
1630 string_list_split(&data->uri_protocols, p, ',', -1);
1631 continue;
1632 }
1633
3145ea95 1634 /* ignore unknown lines maybe? */
7cc6ed2d 1635 die("unexpected line: '%s'", arg);
3145ea95 1636 }
4845b772 1637
dd4b732d
JT
1638 if (data->uri_protocols.nr && !data->writer.use_sideband)
1639 string_list_clear(&data->uri_protocols, 0);
1640
4845b772
JK
1641 if (request->status != PACKET_READ_FLUSH)
1642 die(_("expected flush after fetch arguments"));
3145ea95
BW
1643}
1644
8dcf2278 1645static int process_haves(struct upload_pack_data *data, struct oid_array *common)
3145ea95
BW
1646{
1647 int i;
1648
1649 /* Process haves */
8dcf2278
CC
1650 for (i = 0; i < data->haves.nr; i++) {
1651 const struct object_id *oid = &data->haves.oid[i];
3145ea95 1652
bc726bd0
ÆAB
1653 if (!repo_has_object_file_with_flags(the_repository, oid,
1654 OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT))
3145ea95
BW
1655 continue;
1656
1657 oid_array_append(common, oid);
1658
ea2c6e60 1659 do_got_oid(data, oid);
3145ea95
BW
1660 }
1661
1662 return 0;
1663}
1664
6fbbc437 1665static int send_acks(struct upload_pack_data *data, struct oid_array *acks)
3145ea95
BW
1666{
1667 int i;
1668
6fbbc437 1669 packet_writer_write(&data->writer, "acknowledgments\n");
3145ea95
BW
1670
1671 /* Send Acks */
1672 if (!acks->nr)
6fbbc437 1673 packet_writer_write(&data->writer, "NAK\n");
3145ea95
BW
1674
1675 for (i = 0; i < acks->nr; i++) {
6fbbc437 1676 packet_writer_write(&data->writer, "ACK %s\n",
bc2e795c 1677 oid_to_hex(&acks->oid[i]));
3145ea95
BW
1678 }
1679
9c1e657a 1680 if (!data->wait_for_done && ok_to_give_up(data)) {
3145ea95 1681 /* Send Ready */
6fbbc437 1682 packet_writer_write(&data->writer, "ready\n");
3145ea95
BW
1683 return 1;
1684 }
1685
1686 return 0;
1687}
1688
389f161a 1689static int process_haves_and_send_acks(struct upload_pack_data *data)
3145ea95
BW
1690{
1691 struct oid_array common = OID_ARRAY_INIT;
3145ea95
BW
1692 int ret = 0;
1693
8dcf2278 1694 process_haves(data, &common);
3145ea95
BW
1695 if (data->done) {
1696 ret = 1;
6fbbc437 1697 } else if (send_acks(data, &common)) {
bc2e795c 1698 packet_writer_delim(&data->writer);
3145ea95
BW
1699 ret = 1;
1700 } else {
1701 /* Add Flush */
bc2e795c 1702 packet_writer_flush(&data->writer);
3145ea95
BW
1703 ret = 0;
1704 }
1705
3145ea95
BW
1706 oid_array_clear(&data->haves);
1707 oid_array_clear(&common);
1708 return ret;
1709}
1710
516e2b76
BW
1711static void send_wanted_ref_info(struct upload_pack_data *data)
1712{
1713 const struct string_list_item *item;
1714
1715 if (!data->wanted_refs.nr)
1716 return;
1717
bc2e795c 1718 packet_writer_write(&data->writer, "wanted-refs\n");
516e2b76
BW
1719
1720 for_each_string_list_item(item, &data->wanted_refs) {
bc2e795c
JT
1721 packet_writer_write(&data->writer, "%s %s\n",
1722 oid_to_hex(item->util),
1723 item->string);
516e2b76
BW
1724 }
1725
bc2e795c 1726 packet_writer_delim(&data->writer);
516e2b76
BW
1727}
1728
389f161a 1729static void send_shallow_info(struct upload_pack_data *data)
685fbd32
BW
1730{
1731 /* No shallow info needs to be sent */
1732 if (!data->depth && !data->deepen_rev_list && !data->shallows.nr &&
00624d60 1733 !is_repository_shallow(the_repository))
685fbd32
BW
1734 return;
1735
bc2e795c 1736 packet_writer_write(&data->writer, "shallow-info\n");
685fbd32 1737
ee703c8a 1738 if (!send_shallow_list(data) &&
00624d60 1739 is_repository_shallow(the_repository))
b1492f22 1740 deepen(data, INFINITE_DEPTH);
685fbd32
BW
1741
1742 packet_delim(1);
1743}
1744
3145ea95
BW
1745enum fetch_state {
1746 FETCH_PROCESS_ARGS = 0,
1747 FETCH_SEND_ACKS,
1748 FETCH_SEND_PACK,
1749 FETCH_DONE,
1750};
1751
74595cca 1752int upload_pack_v2(struct repository *r UNUSED, struct packet_reader *request)
3145ea95
BW
1753{
1754 enum fetch_state state = FETCH_PROCESS_ARGS;
1755 struct upload_pack_data data;
d1035cac
JT
1756
1757 clear_object_flags(ALL_FLAGS);
3145ea95
BW
1758
1759 upload_pack_data_init(&data);
f8edd1ca 1760 data.use_sideband = LARGE_PACKET_MAX;
5b3c6507 1761 get_upload_pack_config(&data);
8a0e6f16 1762
3145ea95
BW
1763 while (state != FETCH_DONE) {
1764 switch (state) {
1765 case FETCH_PROCESS_ARGS:
389f161a 1766 process_args(request, &data);
3145ea95 1767
9c1e657a 1768 if (!data.want_obj.nr && !data.wait_for_done) {
3145ea95 1769 /*
9c1e657a
JT
1770 * Request didn't contain any 'want' lines (and
1771 * the request does not contain
1772 * "wait-for-done", in which it is reasonable
1773 * to just send 'have's without 'want's); guess
1774 * they didn't want anything.
3145ea95
BW
1775 */
1776 state = FETCH_DONE;
1777 } else if (data.haves.nr) {
1778 /*
1779 * Request had 'have' lines, so lets ACK them.
1780 */
1781 state = FETCH_SEND_ACKS;
1782 } else {
1783 /*
1784 * Request had 'want's but no 'have's so we can
1785 * immedietly go to construct and send a pack.
1786 */
1787 state = FETCH_SEND_PACK;
1788 }
1789 break;
1790 case FETCH_SEND_ACKS:
389f161a 1791 if (process_haves_and_send_acks(&data))
3145ea95
BW
1792 state = FETCH_SEND_PACK;
1793 else
1794 state = FETCH_DONE;
1795 break;
1796 case FETCH_SEND_PACK:
516e2b76 1797 send_wanted_ref_info(&data);
389f161a 1798 send_shallow_info(&data);
685fbd32 1799
dd4b732d
JT
1800 if (data.uri_protocols.nr) {
1801 create_pack_file(&data, &data.uri_protocols);
1802 } else {
1803 packet_writer_write(&data.writer, "packfile\n");
1804 create_pack_file(&data, NULL);
1805 }
3145ea95
BW
1806 state = FETCH_DONE;
1807 break;
1808 case FETCH_DONE:
1809 continue;
1810 }
1811 }
1812
1813 upload_pack_data_clear(&data);
1814 return 0;
1815}
685fbd32
BW
1816
1817int upload_pack_advertise(struct repository *r,
1818 struct strbuf *value)
1819{
ba95710a
JT
1820 if (value) {
1821 int allow_filter_value;
516e2b76 1822 int allow_ref_in_want;
0bbc0bc5 1823 int allow_sideband_all_value;
dd4b732d 1824 char *str = NULL;
516e2b76 1825
9c1e657a 1826 strbuf_addstr(value, "shallow wait-for-done");
516e2b76 1827
4b4e75dd 1828 if (!repo_config_get_bool(r,
ba95710a
JT
1829 "uploadpack.allowfilter",
1830 &allow_filter_value) &&
1831 allow_filter_value)
1832 strbuf_addstr(value, " filter");
516e2b76 1833
4b4e75dd 1834 if (!repo_config_get_bool(r,
516e2b76
BW
1835 "uploadpack.allowrefinwant",
1836 &allow_ref_in_want) &&
1837 allow_ref_in_want)
1838 strbuf_addstr(value, " ref-in-want");
0bbc0bc5 1839
07c3c2aa 1840 if (git_env_bool("GIT_TEST_SIDEBAND_ALL", 0) ||
4b4e75dd 1841 (!repo_config_get_bool(r,
07c3c2aa
JT
1842 "uploadpack.allowsidebandall",
1843 &allow_sideband_all_value) &&
1844 allow_sideband_all_value))
0bbc0bc5 1845 strbuf_addstr(value, " sideband-all");
dd4b732d 1846
4b4e75dd 1847 if (!repo_config_get_string(r,
dd4b732d
JT
1848 "uploadpack.blobpackfileuri",
1849 &str) &&
1850 str) {
1851 strbuf_addstr(value, " packfile-uris");
1852 free(str);
1853 }
ba95710a 1854 }
516e2b76 1855
685fbd32
BW
1856 return 1;
1857}