2 #include "repository.h"
9 #include "object-store.h"
14 struct packed_git
*packs
;
15 struct alt_base
*next
;
18 enum object_request_state
{
25 struct object_request
{
26 struct walker
*walker
;
28 struct alt_base
*repo
;
29 enum object_request_state state
;
30 struct http_object_request
*req
;
31 struct list_head node
;
34 struct alternates_request
{
35 struct walker
*walker
;
38 struct strbuf
*buffer
;
39 struct active_request_slot
*slot
;
49 static LIST_HEAD(object_queue_head
);
51 static void fetch_alternates(struct walker
*walker
, const char *base
);
53 static void process_object_response(void *callback_data
);
55 static void start_object_request(struct walker
*walker
,
56 struct object_request
*obj_req
)
58 struct active_request_slot
*slot
;
59 struct http_object_request
*req
;
61 req
= new_http_object_request(obj_req
->repo
->base
, &obj_req
->oid
);
63 obj_req
->state
= ABORTED
;
69 slot
->callback_func
= process_object_response
;
70 slot
->callback_data
= obj_req
;
72 /* Try to get the request started, abort the request on error */
73 obj_req
->state
= ACTIVE
;
74 if (!start_active_slot(slot
)) {
75 obj_req
->state
= ABORTED
;
76 release_http_object_request(req
);
81 static void finish_object_request(struct object_request
*obj_req
)
83 if (finish_http_object_request(obj_req
->req
))
86 if (obj_req
->req
->rename
== 0)
87 walker_say(obj_req
->walker
, "got %s\n", oid_to_hex(&obj_req
->oid
));
90 static void process_object_response(void *callback_data
)
92 struct object_request
*obj_req
=
93 (struct object_request
*)callback_data
;
94 struct walker
*walker
= obj_req
->walker
;
95 struct walker_data
*data
= walker
->data
;
96 struct alt_base
*alt
= data
->alt
;
98 process_http_object_request(obj_req
->req
);
99 obj_req
->state
= COMPLETE
;
101 normalize_curl_result(&obj_req
->req
->curl_result
,
102 obj_req
->req
->http_code
,
103 obj_req
->req
->errorstr
,
104 sizeof(obj_req
->req
->errorstr
));
106 /* Use alternates if necessary */
107 if (missing_target(obj_req
->req
)) {
108 fetch_alternates(walker
, alt
->base
);
109 if (obj_req
->repo
->next
!= NULL
) {
112 release_http_object_request(obj_req
->req
);
113 start_object_request(walker
, obj_req
);
118 finish_object_request(obj_req
);
121 static void release_object_request(struct object_request
*obj_req
)
123 if (obj_req
->req
!=NULL
&& obj_req
->req
->localfile
!= -1)
124 error("fd leakage in release: %d", obj_req
->req
->localfile
);
126 list_del(&obj_req
->node
);
130 #ifdef USE_CURL_MULTI
131 static int fill_active_slot(struct walker
*walker
)
133 struct object_request
*obj_req
;
134 struct list_head
*pos
, *tmp
, *head
= &object_queue_head
;
136 list_for_each_safe(pos
, tmp
, head
) {
137 obj_req
= list_entry(pos
, struct object_request
, node
);
138 if (obj_req
->state
== WAITING
) {
139 if (has_object_file(&obj_req
->oid
))
140 obj_req
->state
= COMPLETE
;
142 start_object_request(walker
, obj_req
);
151 static void prefetch(struct walker
*walker
, unsigned char *sha1
)
153 struct object_request
*newreq
;
154 struct walker_data
*data
= walker
->data
;
156 newreq
= xmalloc(sizeof(*newreq
));
157 newreq
->walker
= walker
;
158 hashcpy(newreq
->oid
.hash
, sha1
);
159 newreq
->repo
= data
->alt
;
160 newreq
->state
= WAITING
;
163 http_is_verbose
= walker
->get_verbosely
;
164 list_add_tail(&newreq
->node
, &object_queue_head
);
166 #ifdef USE_CURL_MULTI
172 static int is_alternate_allowed(const char *url
)
174 const char *protocols
[] = {
175 "http", "https", "ftp", "ftps"
179 if (http_follow_config
!= HTTP_FOLLOW_ALWAYS
) {
180 warning("alternate disabled by http.followRedirects: %s", url
);
184 for (i
= 0; i
< ARRAY_SIZE(protocols
); i
++) {
186 if (skip_prefix(url
, protocols
[i
], &end
) &&
187 starts_with(end
, "://"))
191 if (i
>= ARRAY_SIZE(protocols
)) {
192 warning("ignoring alternate with unknown protocol: %s", url
);
195 if (!is_transport_allowed(protocols
[i
], 0)) {
196 warning("ignoring alternate with restricted protocol: %s", url
);
203 static void process_alternates_response(void *callback_data
)
205 struct alternates_request
*alt_req
=
206 (struct alternates_request
*)callback_data
;
207 struct walker
*walker
= alt_req
->walker
;
208 struct walker_data
*cdata
= walker
->data
;
209 struct active_request_slot
*slot
= alt_req
->slot
;
210 struct alt_base
*tail
= cdata
->alt
;
211 const char *base
= alt_req
->base
;
212 const char null_byte
= '\0';
216 normalize_curl_result(&slot
->curl_result
, slot
->http_code
,
217 curl_errorstr
, sizeof(curl_errorstr
));
219 if (alt_req
->http_specific
) {
220 if (slot
->curl_result
!= CURLE_OK
||
221 !alt_req
->buffer
->len
) {
223 /* Try reusing the slot to get non-http alternates */
224 alt_req
->http_specific
= 0;
225 strbuf_reset(alt_req
->url
);
226 strbuf_addf(alt_req
->url
, "%s/objects/info/alternates",
228 curl_easy_setopt(slot
->curl
, CURLOPT_URL
,
232 if (slot
->finished
!= NULL
)
233 (*slot
->finished
) = 0;
234 if (!start_active_slot(slot
)) {
235 cdata
->got_alternates
= -1;
237 if (slot
->finished
!= NULL
)
238 (*slot
->finished
) = 1;
242 } else if (slot
->curl_result
!= CURLE_OK
) {
243 if (!missing_target(slot
)) {
244 cdata
->got_alternates
= -1;
249 fwrite_buffer((char *)&null_byte
, 1, 1, alt_req
->buffer
);
250 alt_req
->buffer
->len
--;
251 data
= alt_req
->buffer
->buf
;
253 while (i
< alt_req
->buffer
->len
) {
255 while (posn
< alt_req
->buffer
->len
&& data
[posn
] != '\n')
257 if (data
[posn
] == '\n') {
260 struct alt_base
*newalt
;
261 if (data
[i
] == '/') {
264 * http://git.host/pub/scm/linux.git/
266 * so memcpy(dst, base, serverlen) will
267 * copy up to "...git.host".
269 const char *colon_ss
= strstr(base
,"://");
271 serverlen
= (strchr(colon_ss
+ 3, '/')
275 } else if (!memcmp(data
+ i
, "../", 3)) {
277 * Relative URL; chop the corresponding
278 * number of subpath from base (and ../
279 * from data), and concatenate the result.
281 * The code first drops ../ from data, and
282 * then drops one ../ from data and one path
283 * from base. IOW, one extra ../ is dropped
284 * from data than path is dropped from base.
286 * This is not wrong. The alternate in
287 * http://git.host/pub/scm/linux.git/
289 * http://git.host/pub/scm/linus.git/
290 * is ../../linus.git/objects/. You need
291 * two ../../ to borrow from your direct
295 serverlen
= strlen(base
);
296 while (i
+ 2 < posn
&&
297 !memcmp(data
+ i
, "../", 3)) {
300 } while (serverlen
&&
301 base
[serverlen
- 1] != '/');
304 /* If the server got removed, give up. */
305 okay
= strchr(base
, ':') - base
+ 3 <
307 } else if (alt_req
->http_specific
) {
308 char *colon
= strchr(data
+ i
, ':');
309 char *slash
= strchr(data
+ i
, '/');
310 if (colon
&& slash
&& colon
< data
+ posn
&&
311 slash
< data
+ posn
&& colon
< slash
) {
316 struct strbuf target
= STRBUF_INIT
;
317 strbuf_add(&target
, base
, serverlen
);
318 strbuf_add(&target
, data
+ i
, posn
- i
);
319 if (!strbuf_strip_suffix(&target
, "objects")) {
320 warning("ignoring alternate that does"
321 " not end in 'objects': %s",
323 strbuf_release(&target
);
324 } else if (is_alternate_allowed(target
.buf
)) {
325 warning("adding alternate object store: %s",
327 newalt
= xmalloc(sizeof(*newalt
));
329 newalt
->base
= strbuf_detach(&target
, NULL
);
330 newalt
->got_indices
= 0;
331 newalt
->packs
= NULL
;
333 while (tail
->next
!= NULL
)
337 strbuf_release(&target
);
344 cdata
->got_alternates
= 1;
347 static void fetch_alternates(struct walker
*walker
, const char *base
)
349 struct strbuf buffer
= STRBUF_INIT
;
350 struct strbuf url
= STRBUF_INIT
;
351 struct active_request_slot
*slot
;
352 struct alternates_request alt_req
;
353 struct walker_data
*cdata
= walker
->data
;
356 * If another request has already started fetching alternates,
357 * wait for them to arrive and return to processing this request's
360 #ifdef USE_CURL_MULTI
361 while (cdata
->got_alternates
== 0) {
366 /* Nothing to do if they've already been fetched */
367 if (cdata
->got_alternates
== 1)
370 /* Start the fetch */
371 cdata
->got_alternates
= 0;
373 if (walker
->get_verbosely
)
374 fprintf(stderr
, "Getting alternates list for %s\n", base
);
376 strbuf_addf(&url
, "%s/objects/info/http-alternates", base
);
379 * Use a callback to process the result, since another request
380 * may fail and need to have alternates loaded before continuing
382 slot
= get_active_slot();
383 slot
->callback_func
= process_alternates_response
;
384 alt_req
.walker
= walker
;
385 slot
->callback_data
= &alt_req
;
387 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
388 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
389 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
.buf
);
393 alt_req
.buffer
= &buffer
;
394 alt_req
.http_specific
= 1;
397 if (start_active_slot(slot
))
398 run_active_slot(slot
);
400 cdata
->got_alternates
= -1;
402 strbuf_release(&buffer
);
403 strbuf_release(&url
);
406 static int fetch_indices(struct walker
*walker
, struct alt_base
*repo
)
410 if (repo
->got_indices
)
413 if (walker
->get_verbosely
)
414 fprintf(stderr
, "Getting pack list for %s\n", repo
->base
);
416 switch (http_get_info_packs(repo
->base
, &repo
->packs
)) {
418 case HTTP_MISSING_TARGET
:
419 repo
->got_indices
= 1;
423 repo
->got_indices
= 0;
430 static int http_fetch_pack(struct walker
*walker
, struct alt_base
*repo
, unsigned char *sha1
)
432 struct packed_git
*target
;
434 struct slot_results results
;
435 struct http_pack_request
*preq
;
437 if (fetch_indices(walker
, repo
))
439 target
= find_sha1_pack(sha1
, repo
->packs
);
442 close_pack_index(target
);
444 if (walker
->get_verbosely
) {
445 fprintf(stderr
, "Getting pack %s\n",
446 hash_to_hex(target
->hash
));
447 fprintf(stderr
, " which contains %s\n",
451 preq
= new_http_pack_request(target
->hash
, repo
->base
);
454 preq
->slot
->results
= &results
;
456 if (start_active_slot(preq
->slot
)) {
457 run_active_slot(preq
->slot
);
458 if (results
.curl_result
!= CURLE_OK
) {
459 error("Unable to get pack file %s\n%s", preq
->url
,
464 error("Unable to start request");
468 ret
= finish_http_pack_request(preq
);
469 release_http_pack_request(preq
);
472 http_install_packfile(target
, &repo
->packs
);
480 static void abort_object_request(struct object_request
*obj_req
)
482 release_object_request(obj_req
);
485 static int fetch_object(struct walker
*walker
, unsigned char *hash
)
487 char *hex
= hash_to_hex(hash
);
489 struct object_request
*obj_req
= NULL
;
490 struct http_object_request
*req
;
491 struct list_head
*pos
, *head
= &object_queue_head
;
493 list_for_each(pos
, head
) {
494 obj_req
= list_entry(pos
, struct object_request
, node
);
495 if (hasheq(obj_req
->oid
.hash
, hash
))
499 return error("Couldn't find request for %s in the queue", hex
);
501 if (has_object_file(&obj_req
->oid
)) {
502 if (obj_req
->req
!= NULL
)
503 abort_http_object_request(obj_req
->req
);
504 abort_object_request(obj_req
);
508 #ifdef USE_CURL_MULTI
509 while (obj_req
->state
== WAITING
)
512 start_object_request(walker
, obj_req
);
516 * obj_req->req might change when fetching alternates in the callback
517 * process_object_response; therefore, the "shortcut" variable, req,
518 * is used only after we're done with slots.
520 while (obj_req
->state
== ACTIVE
)
521 run_active_slot(obj_req
->req
->slot
);
525 if (req
->localfile
!= -1) {
526 close(req
->localfile
);
530 normalize_curl_result(&req
->curl_result
, req
->http_code
,
531 req
->errorstr
, sizeof(req
->errorstr
));
533 if (obj_req
->state
== ABORTED
) {
534 ret
= error("Request for %s aborted", hex
);
535 } else if (req
->curl_result
!= CURLE_OK
&&
536 req
->http_code
!= 416) {
537 if (missing_target(req
))
538 ret
= -1; /* Be silent, it is probably in a pack. */
540 ret
= error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
541 req
->errorstr
, req
->curl_result
,
542 req
->http_code
, hex
);
543 } else if (req
->zret
!= Z_STREAM_END
) {
544 walker
->corrupt_object_found
++;
545 ret
= error("File %s (%s) corrupt", hex
, req
->url
);
546 } else if (!oideq(&obj_req
->oid
, &req
->real_oid
)) {
547 ret
= error("File %s has bad hash", hex
);
548 } else if (req
->rename
< 0) {
549 struct strbuf buf
= STRBUF_INIT
;
550 loose_object_path(the_repository
, &buf
, &req
->oid
);
551 ret
= error("unable to write sha1 filename %s", buf
.buf
);
552 strbuf_release(&buf
);
555 release_http_object_request(req
);
556 release_object_request(obj_req
);
560 static int fetch(struct walker
*walker
, unsigned char *hash
)
562 struct walker_data
*data
= walker
->data
;
563 struct alt_base
*altbase
= data
->alt
;
565 if (!fetch_object(walker
, hash
))
568 if (!http_fetch_pack(walker
, altbase
, hash
))
570 fetch_alternates(walker
, data
->alt
->base
);
571 altbase
= altbase
->next
;
573 return error("Unable to find %s under %s", hash_to_hex(hash
),
577 static int fetch_ref(struct walker
*walker
, struct ref
*ref
)
579 struct walker_data
*data
= walker
->data
;
580 return http_fetch_ref(data
->alt
->base
, ref
);
583 static void cleanup(struct walker
*walker
)
585 struct walker_data
*data
= walker
->data
;
586 struct alt_base
*alt
, *alt_next
;
591 alt_next
= alt
->next
;
603 struct walker
*get_http_walker(const char *url
)
606 struct walker_data
*data
= xmalloc(sizeof(struct walker_data
));
607 struct walker
*walker
= xmalloc(sizeof(struct walker
));
609 data
->alt
= xmalloc(sizeof(*data
->alt
));
610 data
->alt
->base
= xstrdup(url
);
611 for (s
= data
->alt
->base
+ strlen(data
->alt
->base
) - 1; *s
== '/'; --s
)
614 data
->alt
->got_indices
= 0;
615 data
->alt
->packs
= NULL
;
616 data
->alt
->next
= NULL
;
617 data
->got_alternates
= -1;
619 walker
->corrupt_object_found
= 0;
620 walker
->fetch
= fetch
;
621 walker
->fetch_ref
= fetch_ref
;
622 walker
->prefetch
= prefetch
;
623 walker
->cleanup
= cleanup
;
626 #ifdef USE_CURL_MULTI
627 add_fill_function(walker
, (int (*)(void *)) fill_active_slot
);