9 #if LIBCURL_VERSION_NUM >= 0x070908
10 #define USE_CURL_MULTI
11 #define DEFAULT_MAX_REQUESTS 5
14 #if LIBCURL_VERSION_NUM < 0x070704
15 #define curl_global_cleanup() do { /* nothing */ } while(0)
17 #if LIBCURL_VERSION_NUM < 0x070800
18 #define curl_global_init(a) do { /* nothing */ } while(0)
21 #if LIBCURL_VERSION_NUM < 0x070c04
22 #define NO_CURL_EASY_DUPHANDLE
25 #define PREV_BUF_SIZE 4096
26 #define RANGE_HEADER_SIZE 30
28 static int got_alternates
= -1;
29 static int active_requests
= 0;
30 static int data_received
;
33 static int max_requests
= -1;
36 #ifndef NO_CURL_EASY_DUPHANDLE
37 static CURL
*curl_default
;
39 static struct curl_slist
*pragma_header
;
40 static struct curl_slist
*no_pragma_header
;
41 static struct curl_slist
*no_range_header
;
42 static char curl_errorstr
[CURL_ERROR_SIZE
];
48 struct packed_git
*packs
;
49 struct alt_base
*next
;
52 static struct alt_base
*alt
= NULL
;
61 struct transfer_request
63 unsigned char sha1
[20];
64 struct alt_base
*repo
;
66 char filename
[PATH_MAX
];
67 char tmpfile
[PATH_MAX
];
69 enum transfer_state state
;
71 char errorstr
[CURL_ERROR_SIZE
];
73 unsigned char real_sha1
[20];
78 struct active_request_slot
*slot
;
79 struct transfer_request
*next
;
82 struct active_request_slot
91 void (*callback_func
)(void *data
);
92 struct active_request_slot
*next
;
98 struct buffer
*buffer
;
99 struct active_request_slot
*slot
;
103 static struct transfer_request
*request_queue_head
= NULL
;
104 static struct active_request_slot
*active_queue_head
= NULL
;
106 static int curl_ssl_verify
= -1;
107 static char *ssl_cert
= NULL
;
108 #if LIBCURL_VERSION_NUM >= 0x070902
109 static char *ssl_key
= NULL
;
111 #if LIBCURL_VERSION_NUM >= 0x070908
112 static char *ssl_capath
= NULL
;
114 static char *ssl_cainfo
= NULL
;
115 static long curl_low_speed_limit
= -1;
116 static long curl_low_speed_time
= -1;
125 static int http_options(const char *var
, const char *value
)
127 if (!strcmp("http.sslverify", var
)) {
128 if (curl_ssl_verify
== -1) {
129 curl_ssl_verify
= git_config_bool(var
, value
);
134 if (!strcmp("http.sslcert", var
)) {
135 if (ssl_cert
== NULL
) {
136 ssl_cert
= xmalloc(strlen(value
)+1);
137 strcpy(ssl_cert
, value
);
141 #if LIBCURL_VERSION_NUM >= 0x070902
142 if (!strcmp("http.sslkey", var
)) {
143 if (ssl_key
== NULL
) {
144 ssl_key
= xmalloc(strlen(value
)+1);
145 strcpy(ssl_key
, value
);
150 #if LIBCURL_VERSION_NUM >= 0x070908
151 if (!strcmp("http.sslcapath", var
)) {
152 if (ssl_capath
== NULL
) {
153 ssl_capath
= xmalloc(strlen(value
)+1);
154 strcpy(ssl_capath
, value
);
159 if (!strcmp("http.sslcainfo", var
)) {
160 if (ssl_cainfo
== NULL
) {
161 ssl_cainfo
= xmalloc(strlen(value
)+1);
162 strcpy(ssl_cainfo
, value
);
167 #ifdef USE_CURL_MULTI
168 if (!strcmp("http.maxrequests", var
)) {
169 if (max_requests
== -1)
170 max_requests
= git_config_int(var
, value
);
175 if (!strcmp("http.lowspeedlimit", var
)) {
176 if (curl_low_speed_limit
== -1)
177 curl_low_speed_limit
= (long)git_config_int(var
, value
);
180 if (!strcmp("http.lowspeedtime", var
)) {
181 if (curl_low_speed_time
== -1)
182 curl_low_speed_time
= (long)git_config_int(var
, value
);
186 /* Fall back on the default ones */
187 return git_default_config(var
, value
);
190 static size_t fwrite_buffer(void *ptr
, size_t eltsize
, size_t nmemb
,
191 struct buffer
*buffer
)
193 size_t size
= eltsize
* nmemb
;
194 if (size
> buffer
->size
- buffer
->posn
)
195 size
= buffer
->size
- buffer
->posn
;
196 memcpy(buffer
->buffer
+ buffer
->posn
, ptr
, size
);
197 buffer
->posn
+= size
;
202 static size_t fwrite_buffer_dynamic(const void *ptr
, size_t eltsize
,
203 size_t nmemb
, struct buffer
*buffer
)
205 size_t size
= eltsize
* nmemb
;
206 if (size
> buffer
->size
- buffer
->posn
) {
207 buffer
->size
= buffer
->size
* 3 / 2;
208 if (buffer
->size
< buffer
->posn
+ size
)
209 buffer
->size
= buffer
->posn
+ size
;
210 buffer
->buffer
= xrealloc(buffer
->buffer
, buffer
->size
);
212 memcpy(buffer
->buffer
+ buffer
->posn
, ptr
, size
);
213 buffer
->posn
+= size
;
218 static size_t fwrite_sha1_file(void *ptr
, size_t eltsize
, size_t nmemb
,
221 unsigned char expn
[4096];
222 size_t size
= eltsize
* nmemb
;
224 struct transfer_request
*request
= (struct transfer_request
*)data
;
226 ssize_t retval
= write(request
->local
,
227 ptr
+ posn
, size
- posn
);
231 } while (posn
< size
);
233 request
->stream
.avail_in
= size
;
234 request
->stream
.next_in
= ptr
;
236 request
->stream
.next_out
= expn
;
237 request
->stream
.avail_out
= sizeof(expn
);
238 request
->zret
= inflate(&request
->stream
, Z_SYNC_FLUSH
);
239 SHA1_Update(&request
->c
, expn
,
240 sizeof(expn
) - request
->stream
.avail_out
);
241 } while (request
->stream
.avail_in
&& request
->zret
== Z_OK
);
246 #ifdef USE_CURL_MULTI
247 static void process_curl_messages(void);
248 static void process_request_queue(void);
250 static void fetch_alternates(char *base
);
252 static CURL
* get_curl_handle(void)
254 CURL
* result
= curl_easy_init();
256 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, curl_ssl_verify
);
257 #if LIBCURL_VERSION_NUM >= 0x070907
258 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
261 if (ssl_cert
!= NULL
)
262 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
263 #if LIBCURL_VERSION_NUM >= 0x070902
265 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
267 #if LIBCURL_VERSION_NUM >= 0x070908
268 if (ssl_capath
!= NULL
)
269 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
271 if (ssl_cainfo
!= NULL
)
272 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
273 curl_easy_setopt(result
, CURLOPT_FAILONERROR
, 1);
275 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
276 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
277 curl_low_speed_limit
);
278 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
279 curl_low_speed_time
);
282 curl_easy_setopt(result
, CURLOPT_FOLLOWLOCATION
, 1);
287 static struct active_request_slot
*get_active_slot(void)
289 struct active_request_slot
*slot
= active_queue_head
;
290 struct active_request_slot
*newslot
;
292 #ifdef USE_CURL_MULTI
295 /* Wait for a slot to open up if the queue is full */
296 while (active_requests
>= max_requests
) {
297 curl_multi_perform(curlm
, &num_transfers
);
298 if (num_transfers
< active_requests
) {
299 process_curl_messages();
304 while (slot
!= NULL
&& slot
->in_use
) {
308 newslot
= xmalloc(sizeof(*newslot
));
309 newslot
->curl
= NULL
;
311 newslot
->next
= NULL
;
313 slot
= active_queue_head
;
315 active_queue_head
= newslot
;
317 while (slot
->next
!= NULL
) {
320 slot
->next
= newslot
;
325 if (slot
->curl
== NULL
) {
326 #ifdef NO_CURL_EASY_DUPHANDLE
327 slot
->curl
= get_curl_handle();
329 slot
->curl
= curl_easy_duphandle(curl_default
);
337 slot
->callback_data
= NULL
;
338 slot
->callback_func
= NULL
;
339 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
340 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_range_header
);
341 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
346 static int start_active_slot(struct active_request_slot
*slot
)
348 #ifdef USE_CURL_MULTI
349 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
351 if (curlm_result
!= CURLM_OK
&&
352 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
361 static void run_active_slot(struct active_request_slot
*slot
)
363 #ifdef USE_CURL_MULTI
371 struct timeval select_timeout
;
372 CURLMcode curlm_result
;
374 while (!slot
->done
) {
377 curlm_result
= curl_multi_perform(curlm
,
379 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
380 if (num_transfers
< active_requests
) {
381 process_curl_messages();
382 process_request_queue();
385 if (!data_received
&& slot
->local
!= NULL
) {
386 current_pos
= ftell(slot
->local
);
387 if (current_pos
> last_pos
)
389 last_pos
= current_pos
;
392 if (!slot
->done
&& !data_received
) {
397 select_timeout
.tv_sec
= 0;
398 select_timeout
.tv_usec
= 50000;
399 select(max_fd
, &readfds
, &writefds
,
400 &excfds
, &select_timeout
);
404 slot
->curl_result
= curl_easy_perform(slot
->curl
);
409 static void start_request(struct transfer_request
*request
)
411 char *hex
= sha1_to_hex(request
->sha1
);
412 char prevfile
[PATH_MAX
];
416 unsigned char prev_buf
[PREV_BUF_SIZE
];
417 ssize_t prev_read
= 0;
419 char range
[RANGE_HEADER_SIZE
];
420 struct curl_slist
*range_header
= NULL
;
421 struct active_request_slot
*slot
;
423 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", request
->filename
);
425 rename(request
->tmpfile
, prevfile
);
426 unlink(request
->tmpfile
);
428 if (request
->local
!= -1)
429 error("fd leakage in start: %d", request
->local
);
430 request
->local
= open(request
->tmpfile
,
431 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
432 /* This could have failed due to the "lazy directory creation";
433 * try to mkdir the last path component.
435 if (request
->local
< 0 && errno
== ENOENT
) {
436 char *dir
= strrchr(request
->tmpfile
, '/');
439 mkdir(request
->tmpfile
, 0777);
442 request
->local
= open(request
->tmpfile
,
443 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
446 if (request
->local
< 0) {
447 request
->state
= ABORTED
;
448 error("Couldn't create temporary file %s for %s: %s\n",
449 request
->tmpfile
, request
->filename
, strerror(errno
));
453 memset(&request
->stream
, 0, sizeof(request
->stream
));
455 inflateInit(&request
->stream
);
457 SHA1_Init(&request
->c
);
459 url
= xmalloc(strlen(request
->repo
->base
) + 50);
460 request
->url
= xmalloc(strlen(request
->repo
->base
) + 50);
461 strcpy(url
, request
->repo
->base
);
462 posn
= url
+ strlen(request
->repo
->base
);
463 strcpy(posn
, "objects/");
465 memcpy(posn
, hex
, 2);
468 strcpy(posn
, hex
+ 2);
469 strcpy(request
->url
, url
);
471 /* If a previous temp file is present, process what was already
473 prevlocal
= open(prevfile
, O_RDONLY
);
474 if (prevlocal
!= -1) {
476 prev_read
= read(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
478 if (fwrite_sha1_file(prev_buf
,
481 request
) == prev_read
) {
482 prev_posn
+= prev_read
;
487 } while (prev_read
> 0);
492 /* Reset inflate/SHA1 if there was an error reading the previous temp
493 file; also rewind to the beginning of the local file. */
494 if (prev_read
== -1) {
495 memset(&request
->stream
, 0, sizeof(request
->stream
));
496 inflateInit(&request
->stream
);
497 SHA1_Init(&request
->c
);
500 lseek(request
->local
, SEEK_SET
, 0);
501 ftruncate(request
->local
, 0);
505 slot
= get_active_slot();
506 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, request
);
507 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
508 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, request
->errorstr
);
509 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
510 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
512 /* If we have successfully processed data from a previous fetch
513 attempt, only fetch the data we don't already have. */
517 "Resuming fetch of object %s at byte %ld\n",
519 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
520 range_header
= curl_slist_append(range_header
, range
);
521 curl_easy_setopt(slot
->curl
,
522 CURLOPT_HTTPHEADER
, range_header
);
525 /* Try to get the request started, abort the request on error */
526 if (!start_active_slot(slot
)) {
527 request
->state
= ABORTED
;
528 close(request
->local
); request
->local
= -1;
533 request
->slot
= slot
;
534 request
->state
= ACTIVE
;
537 static void finish_request(struct transfer_request
*request
)
541 fchmod(request
->local
, 0444);
542 close(request
->local
); request
->local
= -1;
544 if (request
->http_code
== 416) {
545 fprintf(stderr
, "Warning: requested range invalid; we may already have all the data.\n");
546 } else if (request
->curl_result
!= CURLE_OK
) {
547 if (stat(request
->tmpfile
, &st
) == 0)
549 unlink(request
->tmpfile
);
553 inflateEnd(&request
->stream
);
554 SHA1_Final(request
->real_sha1
, &request
->c
);
555 if (request
->zret
!= Z_STREAM_END
) {
556 unlink(request
->tmpfile
);
559 if (memcmp(request
->sha1
, request
->real_sha1
, 20)) {
560 unlink(request
->tmpfile
);
564 move_temp_to_file(request
->tmpfile
, request
->filename
);
566 if (request
->rename
== 0)
567 pull_say("got %s\n", sha1_to_hex(request
->sha1
));
570 static void release_request(struct transfer_request
*request
)
572 struct transfer_request
*entry
= request_queue_head
;
574 if (request
->local
!= -1)
575 error("fd leakage in release: %d", request
->local
);
576 if (request
== request_queue_head
) {
577 request_queue_head
= request
->next
;
579 while (entry
->next
!= NULL
&& entry
->next
!= request
)
581 if (entry
->next
== request
)
582 entry
->next
= entry
->next
->next
;
589 #ifdef USE_CURL_MULTI
590 static void process_curl_messages(void)
593 struct active_request_slot
*slot
;
594 struct transfer_request
*request
= NULL
;
595 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
597 while (curl_message
!= NULL
) {
598 if (curl_message
->msg
== CURLMSG_DONE
) {
599 int curl_result
= curl_message
->data
.result
;
600 slot
= active_queue_head
;
601 while (slot
!= NULL
&&
602 slot
->curl
!= curl_message
->easy_handle
)
605 curl_multi_remove_handle(curlm
, slot
->curl
);
609 slot
->curl_result
= curl_result
;
610 curl_easy_getinfo(slot
->curl
,
613 request
= request_queue_head
;
614 while (request
!= NULL
&&
615 request
->slot
!= slot
)
616 request
= request
->next
;
618 fprintf(stderr
, "Received DONE message for unknown request!\n");
621 /* Process slot callback if appropriate */
622 if (slot
->callback_func
!= NULL
) {
623 slot
->callback_func(slot
->callback_data
);
626 if (request
!= NULL
) {
627 request
->curl_result
= curl_result
;
628 request
->http_code
= slot
->http_code
;
629 request
->slot
= NULL
;
630 request
->state
= COMPLETE
;
632 /* Use alternates if necessary */
633 if (request
->http_code
== 404) {
634 fetch_alternates(alt
->base
);
635 if (request
->repo
->next
!= NULL
) {
638 close(request
->local
);
640 start_request(request
);
642 finish_request(request
);
645 finish_request(request
);
649 fprintf(stderr
, "Unknown CURL message received: %d\n",
650 (int)curl_message
->msg
);
652 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
656 static void process_request_queue(void)
658 struct transfer_request
*request
= request_queue_head
;
659 struct active_request_slot
*slot
= active_queue_head
;
662 while (active_requests
< max_requests
&& request
!= NULL
) {
663 if (request
->state
== WAITING
) {
664 if (has_sha1_file(request
->sha1
))
665 release_request(request
);
667 start_request(request
);
668 curl_multi_perform(curlm
, &num_transfers
);
670 request
= request
->next
;
673 while (slot
!= NULL
) {
674 if (!slot
->in_use
&& slot
->curl
!= NULL
) {
675 curl_easy_cleanup(slot
->curl
);
683 void prefetch(unsigned char *sha1
)
685 struct transfer_request
*newreq
;
686 struct transfer_request
*tail
;
687 char *filename
= sha1_file_name(sha1
);
689 newreq
= xmalloc(sizeof(*newreq
));
690 memcpy(newreq
->sha1
, sha1
, 20);
694 newreq
->state
= WAITING
;
695 snprintf(newreq
->filename
, sizeof(newreq
->filename
), "%s", filename
);
696 snprintf(newreq
->tmpfile
, sizeof(newreq
->tmpfile
),
697 "%s.temp", filename
);
700 if (request_queue_head
== NULL
) {
701 request_queue_head
= newreq
;
703 tail
= request_queue_head
;
704 while (tail
->next
!= NULL
) {
709 #ifdef USE_CURL_MULTI
710 process_request_queue();
711 process_curl_messages();
715 static int fetch_index(struct alt_base
*repo
, unsigned char *sha1
)
717 char *hex
= sha1_to_hex(sha1
);
720 char tmpfile
[PATH_MAX
];
722 char range
[RANGE_HEADER_SIZE
];
723 struct curl_slist
*range_header
= NULL
;
726 struct active_request_slot
*slot
;
728 if (has_pack_index(sha1
))
732 fprintf(stderr
, "Getting index for pack %s\n", hex
);
734 url
= xmalloc(strlen(repo
->base
) + 64);
735 sprintf(url
, "%s/objects/pack/pack-%s.idx", repo
->base
, hex
);
737 filename
= sha1_pack_index_name(sha1
);
738 snprintf(tmpfile
, sizeof(tmpfile
), "%s.temp", filename
);
739 indexfile
= fopen(tmpfile
, "a");
741 return error("Unable to open local file %s for pack index",
744 slot
= get_active_slot();
745 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, indexfile
);
746 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
747 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
748 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
749 slot
->local
= indexfile
;
751 /* If there is data present from a previous transfer attempt,
752 resume where it left off */
753 prev_posn
= ftell(indexfile
);
757 "Resuming fetch of index for pack %s at byte %ld\n",
759 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
760 range_header
= curl_slist_append(range_header
, range
);
761 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, range_header
);
764 if (start_active_slot(slot
)) {
765 run_active_slot(slot
);
766 if (slot
->curl_result
!= CURLE_OK
) {
768 return error("Unable to get pack index %s\n%s", url
,
773 return error("Unable to start request");
778 return move_temp_to_file(tmpfile
, filename
);
781 static int setup_index(struct alt_base
*repo
, unsigned char *sha1
)
783 struct packed_git
*new_pack
;
784 if (has_pack_file(sha1
))
785 return 0; // don't list this as something we can get
787 if (fetch_index(repo
, sha1
))
790 new_pack
= parse_pack_index(sha1
);
791 new_pack
->next
= repo
->packs
;
792 repo
->packs
= new_pack
;
796 static void process_alternates(void *callback_data
)
798 struct alt_request
*alt_req
= (struct alt_request
*)callback_data
;
799 struct active_request_slot
*slot
= alt_req
->slot
;
800 struct alt_base
*tail
= alt
;
801 char *base
= alt_req
->base
;
802 static const char null_byte
= '\0';
806 if (alt_req
->http_specific
) {
807 if (slot
->curl_result
!= CURLE_OK
||
808 !alt_req
->buffer
->posn
) {
810 /* Try reusing the slot to get non-http alternates */
811 alt_req
->http_specific
= 0;
812 sprintf(alt_req
->url
, "%s/objects/info/alternates",
814 curl_easy_setopt(slot
->curl
, CURLOPT_URL
,
819 if (start_active_slot(slot
)) {
827 } else if (slot
->curl_result
!= CURLE_OK
) {
828 if (slot
->http_code
!= 404) {
834 fwrite_buffer_dynamic(&null_byte
, 1, 1, alt_req
->buffer
);
835 alt_req
->buffer
->posn
--;
836 data
= alt_req
->buffer
->buffer
;
838 while (i
< alt_req
->buffer
->posn
) {
840 while (posn
< alt_req
->buffer
->posn
&& data
[posn
] != '\n')
842 if (data
[posn
] == '\n') {
845 struct alt_base
*newalt
;
847 if (data
[i
] == '/') {
848 serverlen
= strchr(base
+ 8, '/') - base
;
850 } else if (!memcmp(data
+ i
, "../", 3)) {
852 serverlen
= strlen(base
);
853 while (i
+ 2 < posn
&&
854 !memcmp(data
+ i
, "../", 3)) {
857 } while (serverlen
&&
858 base
[serverlen
- 1] != '/');
861 // If the server got removed, give up.
862 okay
= strchr(base
, ':') - base
+ 3 <
864 } else if (alt_req
->http_specific
) {
865 char *colon
= strchr(data
+ i
, ':');
866 char *slash
= strchr(data
+ i
, '/');
867 if (colon
&& slash
&& colon
< data
+ posn
&&
868 slash
< data
+ posn
&& colon
< slash
) {
872 // skip 'objects' at end
874 target
= xmalloc(serverlen
+ posn
- i
- 6);
875 strncpy(target
, base
, serverlen
);
876 strncpy(target
+ serverlen
, data
+ i
,
878 target
[serverlen
+ posn
- i
- 7] = '\0';
881 "Also look at %s\n", target
);
882 newalt
= xmalloc(sizeof(*newalt
));
884 newalt
->base
= target
;
885 newalt
->got_indices
= 0;
886 newalt
->packs
= NULL
;
887 while (tail
->next
!= NULL
)
898 static void fetch_alternates(char *base
)
900 struct buffer buffer
;
903 struct active_request_slot
*slot
;
904 static struct alt_request alt_req
;
907 /* If another request has already started fetching alternates,
908 wait for them to arrive and return to processing this request's
910 while (got_alternates
== 0) {
911 curl_multi_perform(curlm
, &num_transfers
);
912 process_curl_messages();
913 process_request_queue();
916 /* Nothing to do if they've already been fetched */
917 if (got_alternates
== 1)
920 /* Start the fetch */
923 data
= xmalloc(4096);
926 buffer
.buffer
= data
;
929 fprintf(stderr
, "Getting alternates list for %s\n", base
);
931 url
= xmalloc(strlen(base
) + 31);
932 sprintf(url
, "%s/objects/info/http-alternates", base
);
934 /* Use a callback to process the result, since another request
935 may fail and need to have alternates loaded before continuing */
936 slot
= get_active_slot();
937 slot
->callback_func
= process_alternates
;
938 slot
->callback_data
= &alt_req
;
940 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
941 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
942 fwrite_buffer_dynamic
);
943 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
947 alt_req
.buffer
= &buffer
;
948 alt_req
.http_specific
= 1;
951 if (start_active_slot(slot
))
952 run_active_slot(slot
);
960 static int fetch_indices(struct alt_base
*repo
)
962 unsigned char sha1
[20];
964 struct buffer buffer
;
968 struct active_request_slot
*slot
;
970 if (repo
->got_indices
)
973 data
= xmalloc(4096);
976 buffer
.buffer
= data
;
979 fprintf(stderr
, "Getting pack list for %s\n", repo
->base
);
981 url
= xmalloc(strlen(repo
->base
) + 21);
982 sprintf(url
, "%s/objects/info/packs", repo
->base
);
984 slot
= get_active_slot();
985 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
986 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
987 fwrite_buffer_dynamic
);
988 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
989 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, NULL
);
990 if (start_active_slot(slot
)) {
991 run_active_slot(slot
);
992 if (slot
->curl_result
!= CURLE_OK
) {
994 return error("%s", curl_errorstr
);
998 return error("Unable to start request");
1001 data
= buffer
.buffer
;
1002 while (i
< buffer
.posn
) {
1006 if (i
+ 52 < buffer
.posn
&&
1007 !strncmp(data
+ i
, " pack-", 6) &&
1008 !strncmp(data
+ i
+ 46, ".pack\n", 6)) {
1009 get_sha1_hex(data
+ i
+ 6, sha1
);
1010 setup_index(repo
, sha1
);
1015 while (data
[i
] != '\n')
1021 free(buffer
.buffer
);
1022 repo
->got_indices
= 1;
1026 static int fetch_pack(struct alt_base
*repo
, unsigned char *sha1
)
1029 struct packed_git
*target
;
1030 struct packed_git
**lst
;
1033 char tmpfile
[PATH_MAX
];
1036 char range
[RANGE_HEADER_SIZE
];
1037 struct curl_slist
*range_header
= NULL
;
1039 struct active_request_slot
*slot
;
1041 if (fetch_indices(repo
))
1043 target
= find_sha1_pack(sha1
, repo
->packs
);
1047 if (get_verbosely
) {
1048 fprintf(stderr
, "Getting pack %s\n",
1049 sha1_to_hex(target
->sha1
));
1050 fprintf(stderr
, " which contains %s\n",
1054 url
= xmalloc(strlen(repo
->base
) + 65);
1055 sprintf(url
, "%s/objects/pack/pack-%s.pack",
1056 repo
->base
, sha1_to_hex(target
->sha1
));
1058 filename
= sha1_pack_name(target
->sha1
);
1059 snprintf(tmpfile
, sizeof(tmpfile
), "%s.temp", filename
);
1060 packfile
= fopen(tmpfile
, "a");
1062 return error("Unable to open local file %s for pack",
1065 slot
= get_active_slot();
1066 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, packfile
);
1067 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
1068 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1069 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
1070 slot
->local
= packfile
;
1072 /* If there is data present from a previous transfer attempt,
1073 resume where it left off */
1074 prev_posn
= ftell(packfile
);
1078 "Resuming fetch of pack %s at byte %ld\n",
1079 sha1_to_hex(target
->sha1
), prev_posn
);
1080 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1081 range_header
= curl_slist_append(range_header
, range
);
1082 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, range_header
);
1085 if (start_active_slot(slot
)) {
1086 run_active_slot(slot
);
1087 if (slot
->curl_result
!= CURLE_OK
) {
1089 return error("Unable to get pack file %s\n%s", url
,
1094 return error("Unable to start request");
1099 ret
= move_temp_to_file(tmpfile
, filename
);
1104 while (*lst
!= target
)
1105 lst
= &((*lst
)->next
);
1106 *lst
= (*lst
)->next
;
1108 if (verify_pack(target
, 0))
1110 install_packed_git(target
);
1115 static int fetch_object(struct alt_base
*repo
, unsigned char *sha1
)
1117 char *hex
= sha1_to_hex(sha1
);
1119 struct transfer_request
*request
= request_queue_head
;
1121 while (request
!= NULL
&& memcmp(request
->sha1
, sha1
, 20))
1122 request
= request
->next
;
1123 if (request
== NULL
)
1124 return error("Couldn't find request for %s in the queue", hex
);
1126 if (has_sha1_file(request
->sha1
)) {
1127 release_request(request
);
1131 #ifdef USE_CURL_MULTI
1132 while (request
->state
== WAITING
) {
1134 curl_multi_perform(curlm
, &num_transfers
);
1135 if (num_transfers
< active_requests
) {
1136 process_curl_messages();
1137 process_request_queue();
1141 start_request(request
);
1144 while (request
->state
== ACTIVE
) {
1145 run_active_slot(request
->slot
);
1146 #ifndef USE_CURL_MULTI
1147 request
->curl_result
= request
->slot
->curl_result
;
1148 request
->http_code
= request
->slot
->http_code
;
1149 request
->slot
= NULL
;
1151 /* Use alternates if necessary */
1152 if (request
->http_code
== 404) {
1153 fetch_alternates(alt
->base
);
1154 if (request
->repo
->next
!= NULL
) {
1155 request
->repo
= request
->repo
->next
;
1156 close(request
->local
); request
->local
= -1;
1157 start_request(request
);
1160 finish_request(request
);
1161 request
->state
= COMPLETE
;
1165 if (request
->local
!= -1) {
1166 close(request
->local
); request
->local
= -1;
1169 if (request
->state
== ABORTED
) {
1170 release_request(request
);
1171 return error("Request for %s aborted", hex
);
1174 if (request
->curl_result
!= CURLE_OK
&& request
->http_code
!= 416) {
1175 if (request
->http_code
== 404)
1176 ret
= -1; /* Be silent, it is probably in a pack. */
1178 ret
= error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
1179 request
->errorstr
, request
->curl_result
,
1180 request
->http_code
, hex
);
1181 release_request(request
);
1185 if (request
->zret
!= Z_STREAM_END
) {
1186 ret
= error("File %s (%s) corrupt\n", hex
, request
->url
);
1187 release_request(request
);
1191 if (memcmp(request
->sha1
, request
->real_sha1
, 20)) {
1192 release_request(request
);
1193 return error("File %s has bad hash\n", hex
);
1196 if (request
->rename
< 0) {
1197 ret
= error("unable to write sha1 filename %s: %s",
1199 strerror(request
->rename
));
1200 release_request(request
);
1204 release_request(request
);
1208 int fetch(unsigned char *sha1
)
1210 struct alt_base
*altbase
= alt
;
1212 if (!fetch_object(altbase
, sha1
))
1215 if (!fetch_pack(altbase
, sha1
))
1217 fetch_alternates(alt
->base
);
1218 altbase
= altbase
->next
;
1220 return error("Unable to find %s under %s\n", sha1_to_hex(sha1
),
1224 static inline int needs_quote(int ch
)
1227 case '/': case '-': case '.':
1228 case 'A'...'Z': case 'a'...'z': case '0'...'9':
1235 static inline int hex(int v
)
1237 if (v
< 10) return '0' + v
;
1238 else return 'A' + v
- 10;
1241 static char *quote_ref_url(const char *base
, const char *ref
)
1245 int len
, baselen
, ch
;
1247 baselen
= strlen(base
);
1248 len
= baselen
+ 6; /* "refs/" + NUL */
1249 for (cp
= ref
; (ch
= *cp
) != 0; cp
++, len
++)
1250 if (needs_quote(ch
))
1251 len
+= 2; /* extra two hex plus replacement % */
1252 qref
= xmalloc(len
);
1253 memcpy(qref
, base
, baselen
);
1254 memcpy(qref
+ baselen
, "refs/", 5);
1255 for (cp
= ref
, dp
= qref
+ baselen
+ 5; (ch
= *cp
) != 0; cp
++) {
1256 if (needs_quote(ch
)) {
1258 *dp
++ = hex((ch
>> 4) & 0xF);
1259 *dp
++ = hex(ch
& 0xF);
1269 int fetch_ref(char *ref
, unsigned char *sha1
)
1273 struct buffer buffer
;
1274 char *base
= alt
->base
;
1275 struct active_request_slot
*slot
;
1278 buffer
.buffer
= hex
;
1281 url
= quote_ref_url(base
, ref
);
1282 slot
= get_active_slot();
1283 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
1284 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1285 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, NULL
);
1286 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1287 if (start_active_slot(slot
)) {
1288 run_active_slot(slot
);
1289 if (slot
->curl_result
!= CURLE_OK
)
1290 return error("Couldn't get %s for %s\n%s",
1291 url
, ref
, curl_errorstr
);
1293 return error("Unable to start request");
1297 get_sha1_hex(hex
, sha1
);
1301 int main(int argc
, char **argv
)
1306 struct active_request_slot
*slot
;
1307 char *low_speed_limit
;
1308 char *low_speed_time
;
1312 while (arg
< argc
&& argv
[arg
][0] == '-') {
1313 if (argv
[arg
][1] == 't') {
1315 } else if (argv
[arg
][1] == 'c') {
1317 } else if (argv
[arg
][1] == 'a') {
1321 } else if (argv
[arg
][1] == 'v') {
1323 } else if (argv
[arg
][1] == 'w') {
1324 write_ref
= argv
[arg
+ 1];
1326 } else if (!strcmp(argv
[arg
], "--recover")) {
1331 if (argc
< arg
+ 2) {
1332 usage("git-http-fetch [-c] [-t] [-a] [-d] [-v] [--recover] [-w ref] commit-id url");
1335 commit_id
= argv
[arg
];
1336 url
= argv
[arg
+ 1];
1338 curl_global_init(CURL_GLOBAL_ALL
);
1340 #ifdef USE_CURL_MULTI
1342 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
1343 if (http_max_requests
!= NULL
)
1344 max_requests
= atoi(http_max_requests
);
1347 curlm
= curl_multi_init();
1348 if (curlm
== NULL
) {
1349 fprintf(stderr
, "Error creating curl multi handle.\n");
1354 if (getenv("GIT_SSL_NO_VERIFY"))
1355 curl_ssl_verify
= 0;
1357 ssl_cert
= getenv("GIT_SSL_CERT");
1358 #if LIBCURL_VERSION_NUM >= 0x070902
1359 ssl_key
= getenv("GIT_SSL_KEY");
1361 #if LIBCURL_VERSION_NUM >= 0x070908
1362 ssl_capath
= getenv("GIT_SSL_CAPATH");
1364 ssl_cainfo
= getenv("GIT_SSL_CAINFO");
1366 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
1367 if (low_speed_limit
!= NULL
)
1368 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
1369 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
1370 if (low_speed_time
!= NULL
)
1371 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
1373 git_config(http_options
);
1375 if (curl_ssl_verify
== -1)
1376 curl_ssl_verify
= 1;
1378 #ifdef USE_CURL_MULTI
1379 if (max_requests
< 1)
1380 max_requests
= DEFAULT_MAX_REQUESTS
;
1383 pragma_header
= curl_slist_append(pragma_header
, "Pragma: no-cache");
1384 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
1385 no_range_header
= curl_slist_append(no_range_header
, "Range:");
1387 #ifndef NO_CURL_EASY_DUPHANDLE
1388 curl_default
= get_curl_handle();
1391 alt
= xmalloc(sizeof(*alt
));
1393 alt
->got_indices
= 0;
1397 if (pull(commit_id
))
1400 curl_slist_free_all(pragma_header
);
1401 curl_slist_free_all(no_pragma_header
);
1402 curl_slist_free_all(no_range_header
);
1403 #ifndef NO_CURL_EASY_DUPHANDLE
1404 curl_easy_cleanup(curl_default
);
1406 slot
= active_queue_head
;
1407 while (slot
!= NULL
) {
1409 if (get_verbosely
) {
1410 curl_easy_getinfo(slot
->curl
,
1411 CURLINFO_EFFECTIVE_URL
,
1413 fprintf(stderr
, "Waiting for %s\n", wait_url
);
1415 run_active_slot(slot
);
1417 if (slot
->curl
!= NULL
)
1418 curl_easy_cleanup(slot
->curl
);
1421 #ifdef USE_CURL_MULTI
1422 curl_multi_cleanup(curlm
);
1424 curl_global_cleanup();