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