1 #include "git-compat-util.h"
5 #include "run-command.h"
8 #include "credential.h"
12 #include "transport.h"
16 size_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
18 #if LIBCURL_VERSION_NUM >= 0x070a06
19 #define LIBCURL_CAN_HANDLE_AUTH_ANY
22 static int min_curl_sessions
= 1;
23 static int curl_session_count
;
25 static int max_requests
= -1;
28 #ifndef NO_CURL_EASY_DUPHANDLE
29 static CURL
*curl_default
;
32 #define PREV_BUF_SIZE 4096
33 #define RANGE_HEADER_SIZE 30
35 char curl_errorstr
[CURL_ERROR_SIZE
];
37 static int curl_ssl_verify
= -1;
38 static int curl_ssl_try
;
39 static const char *ssl_cert
;
40 static const char *ssl_cipherlist
;
41 static const char *ssl_version
;
46 { "sslv2", CURL_SSLVERSION_SSLv2
},
47 { "sslv3", CURL_SSLVERSION_SSLv3
},
48 { "tlsv1", CURL_SSLVERSION_TLSv1
},
49 #if LIBCURL_VERSION_NUM >= 0x072200
50 { "tlsv1.0", CURL_SSLVERSION_TLSv1_0
},
51 { "tlsv1.1", CURL_SSLVERSION_TLSv1_1
},
52 { "tlsv1.2", CURL_SSLVERSION_TLSv1_2
},
55 #if LIBCURL_VERSION_NUM >= 0x070903
56 static const char *ssl_key
;
58 #if LIBCURL_VERSION_NUM >= 0x070908
59 static const char *ssl_capath
;
61 static const char *ssl_cainfo
;
62 static long curl_low_speed_limit
= -1;
63 static long curl_low_speed_time
= -1;
64 static int curl_ftp_no_epsv
;
65 static const char *curl_http_proxy
;
66 static const char *curl_cookie_file
;
67 static int curl_save_cookies
;
68 struct credential http_auth
= CREDENTIAL_INIT
;
69 static int http_proactive_auth
;
70 static const char *user_agent
;
72 #if LIBCURL_VERSION_NUM >= 0x071700
73 /* Use CURLOPT_KEYPASSWD as is */
74 #elif LIBCURL_VERSION_NUM >= 0x070903
75 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
77 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
80 static struct credential cert_auth
= CREDENTIAL_INIT
;
81 static int ssl_cert_password_required
;
82 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
83 static unsigned long http_auth_methods
= CURLAUTH_ANY
;
86 static struct curl_slist
*pragma_header
;
87 static struct curl_slist
*no_pragma_header
;
89 static struct active_request_slot
*active_queue_head
;
91 static char *cached_accept_language
;
93 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
95 size_t size
= eltsize
* nmemb
;
96 struct buffer
*buffer
= buffer_
;
98 if (size
> buffer
->buf
.len
- buffer
->posn
)
99 size
= buffer
->buf
.len
- buffer
->posn
;
100 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
101 buffer
->posn
+= size
;
106 #ifndef NO_CURL_IOCTL
107 curlioerr
ioctl_buffer(CURL
*handle
, int cmd
, void *clientp
)
109 struct buffer
*buffer
= clientp
;
115 case CURLIOCMD_RESTARTREAD
:
120 return CURLIOE_UNKNOWNCMD
;
125 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
127 size_t size
= eltsize
* nmemb
;
128 struct strbuf
*buffer
= buffer_
;
130 strbuf_add(buffer
, ptr
, size
);
134 size_t fwrite_null(char *ptr
, size_t eltsize
, size_t nmemb
, void *strbuf
)
136 return eltsize
* nmemb
;
139 static void closedown_active_slot(struct active_request_slot
*slot
)
145 static void finish_active_slot(struct active_request_slot
*slot
)
147 closedown_active_slot(slot
);
148 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
150 if (slot
->finished
!= NULL
)
151 (*slot
->finished
) = 1;
153 /* Store slot results so they can be read after the slot is reused */
154 if (slot
->results
!= NULL
) {
155 slot
->results
->curl_result
= slot
->curl_result
;
156 slot
->results
->http_code
= slot
->http_code
;
157 #if LIBCURL_VERSION_NUM >= 0x070a08
158 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTPAUTH_AVAIL
,
159 &slot
->results
->auth_avail
);
161 slot
->results
->auth_avail
= 0;
165 /* Run callback if appropriate */
166 if (slot
->callback_func
!= NULL
)
167 slot
->callback_func(slot
->callback_data
);
170 #ifdef USE_CURL_MULTI
171 static void process_curl_messages(void)
174 struct active_request_slot
*slot
;
175 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
177 while (curl_message
!= NULL
) {
178 if (curl_message
->msg
== CURLMSG_DONE
) {
179 int curl_result
= curl_message
->data
.result
;
180 slot
= active_queue_head
;
181 while (slot
!= NULL
&&
182 slot
->curl
!= curl_message
->easy_handle
)
185 curl_multi_remove_handle(curlm
, slot
->curl
);
186 slot
->curl_result
= curl_result
;
187 finish_active_slot(slot
);
189 fprintf(stderr
, "Received DONE message for unknown request!\n");
192 fprintf(stderr
, "Unknown CURL message received: %d\n",
193 (int)curl_message
->msg
);
195 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
200 static int http_options(const char *var
, const char *value
, void *cb
)
202 if (!strcmp("http.sslverify", var
)) {
203 curl_ssl_verify
= git_config_bool(var
, value
);
206 if (!strcmp("http.sslcipherlist", var
))
207 return git_config_string(&ssl_cipherlist
, var
, value
);
208 if (!strcmp("http.sslversion", var
))
209 return git_config_string(&ssl_version
, var
, value
);
210 if (!strcmp("http.sslcert", var
))
211 return git_config_string(&ssl_cert
, var
, value
);
212 #if LIBCURL_VERSION_NUM >= 0x070903
213 if (!strcmp("http.sslkey", var
))
214 return git_config_string(&ssl_key
, var
, value
);
216 #if LIBCURL_VERSION_NUM >= 0x070908
217 if (!strcmp("http.sslcapath", var
))
218 return git_config_string(&ssl_capath
, var
, value
);
220 if (!strcmp("http.sslcainfo", var
))
221 return git_config_string(&ssl_cainfo
, var
, value
);
222 if (!strcmp("http.sslcertpasswordprotected", var
)) {
223 ssl_cert_password_required
= git_config_bool(var
, value
);
226 if (!strcmp("http.ssltry", var
)) {
227 curl_ssl_try
= git_config_bool(var
, value
);
230 if (!strcmp("http.minsessions", var
)) {
231 min_curl_sessions
= git_config_int(var
, value
);
232 #ifndef USE_CURL_MULTI
233 if (min_curl_sessions
> 1)
234 min_curl_sessions
= 1;
238 #ifdef USE_CURL_MULTI
239 if (!strcmp("http.maxrequests", var
)) {
240 max_requests
= git_config_int(var
, value
);
244 if (!strcmp("http.lowspeedlimit", var
)) {
245 curl_low_speed_limit
= (long)git_config_int(var
, value
);
248 if (!strcmp("http.lowspeedtime", var
)) {
249 curl_low_speed_time
= (long)git_config_int(var
, value
);
253 if (!strcmp("http.noepsv", var
)) {
254 curl_ftp_no_epsv
= git_config_bool(var
, value
);
257 if (!strcmp("http.proxy", var
))
258 return git_config_string(&curl_http_proxy
, var
, value
);
260 if (!strcmp("http.cookiefile", var
))
261 return git_config_string(&curl_cookie_file
, var
, value
);
262 if (!strcmp("http.savecookies", var
)) {
263 curl_save_cookies
= git_config_bool(var
, value
);
267 if (!strcmp("http.postbuffer", var
)) {
268 http_post_buffer
= git_config_int(var
, value
);
269 if (http_post_buffer
< LARGE_PACKET_MAX
)
270 http_post_buffer
= LARGE_PACKET_MAX
;
274 if (!strcmp("http.useragent", var
))
275 return git_config_string(&user_agent
, var
, value
);
277 /* Fall back on the default ones */
278 return git_default_config(var
, value
, cb
);
281 static void init_curl_http_auth(CURL
*result
)
283 if (!http_auth
.username
)
286 credential_fill(&http_auth
);
288 #if LIBCURL_VERSION_NUM >= 0x071301
289 curl_easy_setopt(result
, CURLOPT_USERNAME
, http_auth
.username
);
290 curl_easy_setopt(result
, CURLOPT_PASSWORD
, http_auth
.password
);
293 static struct strbuf up
= STRBUF_INIT
;
295 * Note that we assume we only ever have a single set of
296 * credentials in a given program run, so we do not have
297 * to worry about updating this buffer, only setting its
301 strbuf_addf(&up
, "%s:%s",
302 http_auth
.username
, http_auth
.password
);
303 curl_easy_setopt(result
, CURLOPT_USERPWD
, up
.buf
);
308 static int has_cert_password(void)
310 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
312 if (!cert_auth
.password
) {
313 cert_auth
.protocol
= xstrdup("cert");
314 cert_auth
.username
= xstrdup("");
315 cert_auth
.path
= xstrdup(ssl_cert
);
316 credential_fill(&cert_auth
);
321 #if LIBCURL_VERSION_NUM >= 0x071900
322 static void set_curl_keepalive(CURL
*c
)
324 curl_easy_setopt(c
, CURLOPT_TCP_KEEPALIVE
, 1);
327 #elif LIBCURL_VERSION_NUM >= 0x071000
328 static int sockopt_callback(void *client
, curl_socket_t fd
, curlsocktype type
)
332 socklen_t len
= (socklen_t
)sizeof(ka
);
334 if (type
!= CURLSOCKTYPE_IPCXN
)
337 rc
= setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&ka
, len
);
339 warning("unable to set SO_KEEPALIVE on socket %s",
342 return 0; /* CURL_SOCKOPT_OK only exists since curl 7.21.5 */
345 static void set_curl_keepalive(CURL
*c
)
347 curl_easy_setopt(c
, CURLOPT_SOCKOPTFUNCTION
, sockopt_callback
);
351 static void set_curl_keepalive(CURL
*c
)
353 /* not supported on older curl versions */
357 static CURL
*get_curl_handle(void)
359 CURL
*result
= curl_easy_init();
360 long allowed_protocols
= 0;
363 die("curl_easy_init failed");
365 if (!curl_ssl_verify
) {
366 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
367 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
369 /* Verify authenticity of the peer's certificate */
370 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
371 /* The name in the cert must match whom we tried to connect */
372 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
375 #if LIBCURL_VERSION_NUM >= 0x070907
376 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
378 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
379 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
382 if (http_proactive_auth
)
383 init_curl_http_auth(result
);
385 if (getenv("GIT_SSL_VERSION"))
386 ssl_version
= getenv("GIT_SSL_VERSION");
387 if (ssl_version
&& *ssl_version
) {
389 for (i
= 0; i
< ARRAY_SIZE(sslversions
); i
++) {
390 if (!strcmp(ssl_version
, sslversions
[i
].name
)) {
391 curl_easy_setopt(result
, CURLOPT_SSLVERSION
,
392 sslversions
[i
].ssl_version
);
396 if (i
== ARRAY_SIZE(sslversions
))
397 warning("unsupported ssl version %s: using default",
401 if (getenv("GIT_SSL_CIPHER_LIST"))
402 ssl_cipherlist
= getenv("GIT_SSL_CIPHER_LIST");
403 if (ssl_cipherlist
!= NULL
&& *ssl_cipherlist
)
404 curl_easy_setopt(result
, CURLOPT_SSL_CIPHER_LIST
,
407 if (ssl_cert
!= NULL
)
408 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
409 if (has_cert_password())
410 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, cert_auth
.password
);
411 #if LIBCURL_VERSION_NUM >= 0x070903
413 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
415 #if LIBCURL_VERSION_NUM >= 0x070908
416 if (ssl_capath
!= NULL
)
417 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
419 if (ssl_cainfo
!= NULL
)
420 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
422 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
423 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
424 curl_low_speed_limit
);
425 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
426 curl_low_speed_time
);
429 curl_easy_setopt(result
, CURLOPT_FOLLOWLOCATION
, 1);
430 curl_easy_setopt(result
, CURLOPT_MAXREDIRS
, 20);
431 #if LIBCURL_VERSION_NUM >= 0x071301
432 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
433 #elif LIBCURL_VERSION_NUM >= 0x071101
434 curl_easy_setopt(result
, CURLOPT_POST301
, 1);
436 #if LIBCURL_VERSION_NUM >= 0x071304
437 if (is_transport_allowed("http"))
438 allowed_protocols
|= CURLPROTO_HTTP
;
439 if (is_transport_allowed("https"))
440 allowed_protocols
|= CURLPROTO_HTTPS
;
441 if (is_transport_allowed("ftp"))
442 allowed_protocols
|= CURLPROTO_FTP
;
443 if (is_transport_allowed("ftps"))
444 allowed_protocols
|= CURLPROTO_FTPS
;
445 curl_easy_setopt(result
, CURLOPT_REDIR_PROTOCOLS
, allowed_protocols
);
447 if (transport_restrict_protocols())
448 warning("protocol restrictions not applied to curl redirects because\n"
449 "your curl version is too old (>= 7.19.4)");
452 if (getenv("GIT_CURL_VERBOSE"))
453 curl_easy_setopt(result
, CURLOPT_VERBOSE
, 1);
455 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
456 user_agent
? user_agent
: git_user_agent());
458 if (curl_ftp_no_epsv
)
459 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
461 #ifdef CURLOPT_USE_SSL
463 curl_easy_setopt(result
, CURLOPT_USE_SSL
, CURLUSESSL_TRY
);
466 if (curl_http_proxy
) {
467 curl_easy_setopt(result
, CURLOPT_PROXY
, curl_http_proxy
);
469 #if LIBCURL_VERSION_NUM >= 0x070a07
470 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
473 set_curl_keepalive(result
);
478 static void set_from_env(const char **var
, const char *envname
)
480 const char *val
= getenv(envname
);
485 void http_init(struct remote
*remote
, const char *url
, int proactive_auth
)
487 char *low_speed_limit
;
488 char *low_speed_time
;
489 char *normalized_url
;
490 struct urlmatch_config config
= { STRING_LIST_INIT_DUP
};
492 config
.section
= "http";
494 config
.collect_fn
= http_options
;
495 config
.cascade_fn
= git_default_config
;
499 normalized_url
= url_normalize(url
, &config
.url
);
501 git_config(urlmatch_config_entry
, &config
);
502 free(normalized_url
);
504 if (curl_global_init(CURL_GLOBAL_ALL
) != CURLE_OK
)
505 die("curl_global_init failed");
507 http_proactive_auth
= proactive_auth
;
509 if (remote
&& remote
->http_proxy
)
510 curl_http_proxy
= xstrdup(remote
->http_proxy
);
512 pragma_header
= curl_slist_append(pragma_header
, "Pragma: no-cache");
513 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
515 #ifdef USE_CURL_MULTI
517 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
518 if (http_max_requests
!= NULL
)
519 max_requests
= atoi(http_max_requests
);
522 curlm
= curl_multi_init();
524 die("curl_multi_init failed");
527 if (getenv("GIT_SSL_NO_VERIFY"))
530 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
531 #if LIBCURL_VERSION_NUM >= 0x070903
532 set_from_env(&ssl_key
, "GIT_SSL_KEY");
534 #if LIBCURL_VERSION_NUM >= 0x070908
535 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
537 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
539 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
541 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
542 if (low_speed_limit
!= NULL
)
543 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
544 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
545 if (low_speed_time
!= NULL
)
546 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
548 if (curl_ssl_verify
== -1)
551 curl_session_count
= 0;
552 #ifdef USE_CURL_MULTI
553 if (max_requests
< 1)
554 max_requests
= DEFAULT_MAX_REQUESTS
;
557 if (getenv("GIT_CURL_FTP_NO_EPSV"))
558 curl_ftp_no_epsv
= 1;
561 credential_from_url(&http_auth
, url
);
562 if (!ssl_cert_password_required
&&
563 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
564 starts_with(url
, "https://"))
565 ssl_cert_password_required
= 1;
568 #ifndef NO_CURL_EASY_DUPHANDLE
569 curl_default
= get_curl_handle();
573 void http_cleanup(void)
575 struct active_request_slot
*slot
= active_queue_head
;
577 while (slot
!= NULL
) {
578 struct active_request_slot
*next
= slot
->next
;
579 if (slot
->curl
!= NULL
) {
580 #ifdef USE_CURL_MULTI
581 curl_multi_remove_handle(curlm
, slot
->curl
);
583 curl_easy_cleanup(slot
->curl
);
588 active_queue_head
= NULL
;
590 #ifndef NO_CURL_EASY_DUPHANDLE
591 curl_easy_cleanup(curl_default
);
594 #ifdef USE_CURL_MULTI
595 curl_multi_cleanup(curlm
);
597 curl_global_cleanup();
599 curl_slist_free_all(pragma_header
);
600 pragma_header
= NULL
;
602 curl_slist_free_all(no_pragma_header
);
603 no_pragma_header
= NULL
;
605 if (curl_http_proxy
) {
606 free((void *)curl_http_proxy
);
607 curl_http_proxy
= NULL
;
610 if (cert_auth
.password
!= NULL
) {
611 memset(cert_auth
.password
, 0, strlen(cert_auth
.password
));
612 free(cert_auth
.password
);
613 cert_auth
.password
= NULL
;
615 ssl_cert_password_required
= 0;
617 free(cached_accept_language
);
618 cached_accept_language
= NULL
;
621 struct active_request_slot
*get_active_slot(void)
623 struct active_request_slot
*slot
= active_queue_head
;
624 struct active_request_slot
*newslot
;
626 #ifdef USE_CURL_MULTI
629 /* Wait for a slot to open up if the queue is full */
630 while (active_requests
>= max_requests
) {
631 curl_multi_perform(curlm
, &num_transfers
);
632 if (num_transfers
< active_requests
)
633 process_curl_messages();
637 while (slot
!= NULL
&& slot
->in_use
)
641 newslot
= xmalloc(sizeof(*newslot
));
642 newslot
->curl
= NULL
;
644 newslot
->next
= NULL
;
646 slot
= active_queue_head
;
648 active_queue_head
= newslot
;
650 while (slot
->next
!= NULL
)
652 slot
->next
= newslot
;
657 if (slot
->curl
== NULL
) {
658 #ifdef NO_CURL_EASY_DUPHANDLE
659 slot
->curl
= get_curl_handle();
661 slot
->curl
= curl_easy_duphandle(curl_default
);
663 curl_session_count
++;
668 slot
->results
= NULL
;
669 slot
->finished
= NULL
;
670 slot
->callback_data
= NULL
;
671 slot
->callback_func
= NULL
;
672 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEFILE
, curl_cookie_file
);
673 if (curl_save_cookies
)
674 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEJAR
, curl_cookie_file
);
675 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
676 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
677 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
678 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
679 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
680 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
681 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
682 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
683 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 1);
684 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
685 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPAUTH
, http_auth_methods
);
687 if (http_auth
.password
)
688 init_curl_http_auth(slot
->curl
);
693 int start_active_slot(struct active_request_slot
*slot
)
695 #ifdef USE_CURL_MULTI
696 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
699 if (curlm_result
!= CURLM_OK
&&
700 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
707 * We know there must be something to do, since we just added
710 curl_multi_perform(curlm
, &num_transfers
);
715 #ifdef USE_CURL_MULTI
719 struct fill_chain
*next
;
722 static struct fill_chain
*fill_cfg
;
724 void add_fill_function(void *data
, int (*fill
)(void *))
726 struct fill_chain
*new = xmalloc(sizeof(*new));
727 struct fill_chain
**linkp
= &fill_cfg
;
732 linkp
= &(*linkp
)->next
;
736 void fill_active_slots(void)
738 struct active_request_slot
*slot
= active_queue_head
;
740 while (active_requests
< max_requests
) {
741 struct fill_chain
*fill
;
742 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
743 if (fill
->fill(fill
->data
))
750 while (slot
!= NULL
) {
751 if (!slot
->in_use
&& slot
->curl
!= NULL
752 && curl_session_count
> min_curl_sessions
) {
753 curl_easy_cleanup(slot
->curl
);
755 curl_session_count
--;
761 void step_active_slots(void)
764 CURLMcode curlm_result
;
767 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
768 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
769 if (num_transfers
< active_requests
) {
770 process_curl_messages();
776 void run_active_slot(struct active_request_slot
*slot
)
778 #ifdef USE_CURL_MULTI
783 struct timeval select_timeout
;
786 slot
->finished
= &finished
;
791 #if LIBCURL_VERSION_NUM >= 0x070f04
793 curl_multi_timeout(curlm
, &curl_timeout
);
794 if (curl_timeout
== 0) {
796 } else if (curl_timeout
== -1) {
797 select_timeout
.tv_sec
= 0;
798 select_timeout
.tv_usec
= 50000;
800 select_timeout
.tv_sec
= curl_timeout
/ 1000;
801 select_timeout
.tv_usec
= (curl_timeout
% 1000) * 1000;
804 select_timeout
.tv_sec
= 0;
805 select_timeout
.tv_usec
= 50000;
812 curl_multi_fdset(curlm
, &readfds
, &writefds
, &excfds
, &max_fd
);
815 * It can happen that curl_multi_timeout returns a pathologically
816 * long timeout when curl_multi_fdset returns no file descriptors
817 * to read. See commit message for more details.
820 (select_timeout
.tv_sec
> 0 ||
821 select_timeout
.tv_usec
> 50000)) {
822 select_timeout
.tv_sec
= 0;
823 select_timeout
.tv_usec
= 50000;
826 select(max_fd
+1, &readfds
, &writefds
, &excfds
, &select_timeout
);
830 while (slot
->in_use
) {
831 slot
->curl_result
= curl_easy_perform(slot
->curl
);
832 finish_active_slot(slot
);
837 static void release_active_slot(struct active_request_slot
*slot
)
839 closedown_active_slot(slot
);
840 if (slot
->curl
&& curl_session_count
> min_curl_sessions
) {
841 #ifdef USE_CURL_MULTI
842 curl_multi_remove_handle(curlm
, slot
->curl
);
844 curl_easy_cleanup(slot
->curl
);
846 curl_session_count
--;
848 #ifdef USE_CURL_MULTI
853 void finish_all_active_slots(void)
855 struct active_request_slot
*slot
= active_queue_head
;
859 run_active_slot(slot
);
860 slot
= active_queue_head
;
866 /* Helpers for modifying and creating URLs */
867 static inline int needs_quote(int ch
)
869 if (((ch
>= 'A') && (ch
<= 'Z'))
870 || ((ch
>= 'a') && (ch
<= 'z'))
871 || ((ch
>= '0') && (ch
<= '9'))
879 static char *quote_ref_url(const char *base
, const char *ref
)
881 struct strbuf buf
= STRBUF_INIT
;
885 end_url_with_slash(&buf
, base
);
887 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
889 strbuf_addf(&buf
, "%%%02x", ch
);
891 strbuf_addch(&buf
, *cp
);
893 return strbuf_detach(&buf
, NULL
);
896 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
898 int only_two_digit_prefix
)
900 end_url_with_slash(buf
, url
);
902 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
903 if (!only_two_digit_prefix
)
904 strbuf_addf(buf
, "%s", hex
+2);
907 char *get_remote_object_url(const char *url
, const char *hex
,
908 int only_two_digit_prefix
)
910 struct strbuf buf
= STRBUF_INIT
;
911 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
912 return strbuf_detach(&buf
, NULL
);
915 static int handle_curl_result(struct slot_results
*results
)
918 * If we see a failing http code with CURLE_OK, we have turned off
919 * FAILONERROR (to keep the server's custom error response), and should
920 * translate the code into failure here.
922 if (results
->curl_result
== CURLE_OK
&&
923 results
->http_code
>= 400) {
924 results
->curl_result
= CURLE_HTTP_RETURNED_ERROR
;
926 * Normally curl will already have put the "reason phrase"
927 * from the server into curl_errorstr; unfortunately without
928 * FAILONERROR it is lost, so we can give only the numeric
931 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
932 "The requested URL returned error: %ld",
936 if (results
->curl_result
== CURLE_OK
) {
937 credential_approve(&http_auth
);
939 } else if (missing_target(results
))
940 return HTTP_MISSING_TARGET
;
941 else if (results
->http_code
== 401) {
942 if (http_auth
.username
&& http_auth
.password
) {
943 credential_reject(&http_auth
);
946 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
947 http_auth_methods
&= ~CURLAUTH_GSSNEGOTIATE
;
952 #if LIBCURL_VERSION_NUM >= 0x070c00
953 if (!curl_errorstr
[0])
954 strlcpy(curl_errorstr
,
955 curl_easy_strerror(results
->curl_result
),
956 sizeof(curl_errorstr
));
962 int run_one_slot(struct active_request_slot
*slot
,
963 struct slot_results
*results
)
965 slot
->results
= results
;
966 if (!start_active_slot(slot
)) {
967 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
968 "failed to start HTTP request");
969 return HTTP_START_FAILED
;
972 run_active_slot(slot
);
973 return handle_curl_result(results
);
976 static CURLcode
curlinfo_strbuf(CURL
*curl
, CURLINFO info
, struct strbuf
*buf
)
982 ret
= curl_easy_getinfo(curl
, info
, &ptr
);
984 strbuf_addstr(buf
, ptr
);
989 * Check for and extract a content-type parameter. "raw"
990 * should be positioned at the start of the potential
991 * parameter, with any whitespace already removed.
993 * "name" is the name of the parameter. The value is appended
996 static int extract_param(const char *raw
, const char *name
,
999 size_t len
= strlen(name
);
1001 if (strncasecmp(raw
, name
, len
))
1009 while (*raw
&& !isspace(*raw
) && *raw
!= ';')
1010 strbuf_addch(out
, *raw
++);
1015 * Extract a normalized version of the content type, with any
1016 * spaces suppressed, all letters lowercased, and no trailing ";"
1019 * Note that we will silently remove even invalid whitespace. For
1020 * example, "text / plain" is specifically forbidden by RFC 2616,
1021 * but "text/plain" is the only reasonable output, and this keeps
1024 * If the "charset" argument is not NULL, store the value of any
1025 * charset parameter there.
1028 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
1029 * "text / plain" -> "text/plain"
1031 static void extract_content_type(struct strbuf
*raw
, struct strbuf
*type
,
1032 struct strbuf
*charset
)
1037 strbuf_grow(type
, raw
->len
);
1038 for (p
= raw
->buf
; *p
; p
++) {
1045 strbuf_addch(type
, tolower(*p
));
1051 strbuf_reset(charset
);
1053 while (isspace(*p
) || *p
== ';')
1055 if (!extract_param(p
, "charset", charset
))
1057 while (*p
&& !isspace(*p
))
1061 if (!charset
->len
&& starts_with(type
->buf
, "text/"))
1062 strbuf_addstr(charset
, "ISO-8859-1");
1065 static void write_accept_language(struct strbuf
*buf
)
1068 * MAX_DECIMAL_PLACES must not be larger than 3. If it is larger than
1069 * that, q-value will be smaller than 0.001, the minimum q-value the
1070 * HTTP specification allows. See
1071 * http://tools.ietf.org/html/rfc7231#section-5.3.1 for q-value.
1073 const int MAX_DECIMAL_PLACES
= 3;
1074 const int MAX_LANGUAGE_TAGS
= 1000;
1075 const int MAX_ACCEPT_LANGUAGE_HEADER_SIZE
= 4000;
1076 char **language_tags
= NULL
;
1078 const char *s
= get_preferred_languages();
1080 struct strbuf tag
= STRBUF_INIT
;
1082 /* Don't add Accept-Language header if no language is preferred. */
1087 * Split the colon-separated string of preferred languages into
1088 * language_tags array.
1091 /* collect language tag */
1092 for (; *s
&& (isalnum(*s
) || *s
== '_'); s
++)
1093 strbuf_addch(&tag
, *s
== '_' ? '-' : *s
);
1095 /* skip .codeset, @modifier and any other unnecessary parts */
1096 while (*s
&& *s
!= ':')
1101 REALLOC_ARRAY(language_tags
, num_langs
);
1102 language_tags
[num_langs
- 1] = strbuf_detach(&tag
, NULL
);
1103 if (num_langs
>= MAX_LANGUAGE_TAGS
- 1) /* -1 for '*' */
1108 /* write Accept-Language header into buf */
1110 int last_buf_len
= 0;
1116 REALLOC_ARRAY(language_tags
, num_langs
+ 1);
1117 language_tags
[num_langs
++] = "*"; /* it's OK; this won't be freed */
1119 /* compute decimal_places */
1120 for (max_q
= 1, decimal_places
= 0;
1121 max_q
< num_langs
&& decimal_places
<= MAX_DECIMAL_PLACES
;
1122 decimal_places
++, max_q
*= 10)
1125 sprintf(q_format
, ";q=0.%%0%dd", decimal_places
);
1127 strbuf_addstr(buf
, "Accept-Language: ");
1129 for (i
= 0; i
< num_langs
; i
++) {
1131 strbuf_addstr(buf
, ", ");
1133 strbuf_addstr(buf
, language_tags
[i
]);
1136 strbuf_addf(buf
, q_format
, max_q
- i
);
1138 if (buf
->len
> MAX_ACCEPT_LANGUAGE_HEADER_SIZE
) {
1139 strbuf_remove(buf
, last_buf_len
, buf
->len
- last_buf_len
);
1143 last_buf_len
= buf
->len
;
1147 /* free language tags -- last one is a static '*' */
1148 for (i
= 0; i
< num_langs
- 1; i
++)
1149 free(language_tags
[i
]);
1150 free(language_tags
);
1154 * Get an Accept-Language header which indicates user's preferred languages.
1158 * LANGUAGE=ko:en -> "Accept-Language: ko, en; q=0.9, *; q=0.1"
1159 * LANGUAGE=ko_KR.UTF-8:sr@latin -> "Accept-Language: ko-KR, sr; q=0.9, *; q=0.1"
1160 * LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *; q=0.1"
1161 * LANGUAGE= LANG=en_US.UTF-8 -> "Accept-Language: en-US, *; q=0.1"
1162 * LANGUAGE= LANG=C -> ""
1164 static const char *get_accept_language(void)
1166 if (!cached_accept_language
) {
1167 struct strbuf buf
= STRBUF_INIT
;
1168 write_accept_language(&buf
);
1170 cached_accept_language
= strbuf_detach(&buf
, NULL
);
1173 return cached_accept_language
;
1176 /* http_request() targets */
1177 #define HTTP_REQUEST_STRBUF 0
1178 #define HTTP_REQUEST_FILE 1
1180 static int http_request(const char *url
,
1181 void *result
, int target
,
1182 const struct http_get_options
*options
)
1184 struct active_request_slot
*slot
;
1185 struct slot_results results
;
1186 struct curl_slist
*headers
= NULL
;
1187 struct strbuf buf
= STRBUF_INIT
;
1188 const char *accept_language
;
1191 slot
= get_active_slot();
1192 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1194 if (result
== NULL
) {
1195 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
1197 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
1198 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, result
);
1200 if (target
== HTTP_REQUEST_FILE
) {
1201 long posn
= ftell(result
);
1202 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1205 strbuf_addf(&buf
, "Range: bytes=%ld-", posn
);
1206 headers
= curl_slist_append(headers
, buf
.buf
);
1210 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1214 accept_language
= get_accept_language();
1216 if (accept_language
)
1217 headers
= curl_slist_append(headers
, accept_language
);
1219 strbuf_addstr(&buf
, "Pragma:");
1220 if (options
&& options
->no_cache
)
1221 strbuf_addstr(&buf
, " no-cache");
1222 if (options
&& options
->keep_error
)
1223 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1225 headers
= curl_slist_append(headers
, buf
.buf
);
1227 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1228 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1229 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "gzip");
1231 ret
= run_one_slot(slot
, &results
);
1233 if (options
&& options
->content_type
) {
1234 struct strbuf raw
= STRBUF_INIT
;
1235 curlinfo_strbuf(slot
->curl
, CURLINFO_CONTENT_TYPE
, &raw
);
1236 extract_content_type(&raw
, options
->content_type
,
1238 strbuf_release(&raw
);
1241 if (options
&& options
->effective_url
)
1242 curlinfo_strbuf(slot
->curl
, CURLINFO_EFFECTIVE_URL
,
1243 options
->effective_url
);
1245 curl_slist_free_all(headers
);
1246 strbuf_release(&buf
);
1252 * Update the "base" url to a more appropriate value, as deduced by
1253 * redirects seen when requesting a URL starting with "url".
1255 * The "asked" parameter is a URL that we asked curl to access, and must begin
1258 * The "got" parameter is the URL that curl reported to us as where we ended
1261 * Returns 1 if we updated the base url, 0 otherwise.
1263 * Our basic strategy is to compare "base" and "asked" to find the bits
1264 * specific to our request. We then strip those bits off of "got" to yield the
1265 * new base. So for example, if our base is "http://example.com/foo.git",
1266 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1267 * with "https://other.example.com/foo.git/info/refs". We would want the
1268 * new URL to become "https://other.example.com/foo.git".
1270 * Note that this assumes a sane redirect scheme. It's entirely possible
1271 * in the example above to end up at a URL that does not even end in
1272 * "info/refs". In such a case we simply punt, as there is not much we can
1273 * do (and such a scheme is unlikely to represent a real git repository,
1274 * which means we are likely about to abort anyway).
1276 static int update_url_from_redirect(struct strbuf
*base
,
1278 const struct strbuf
*got
)
1283 if (!strcmp(asked
, got
->buf
))
1286 if (!skip_prefix(asked
, base
->buf
, &tail
))
1287 die("BUG: update_url_from_redirect: %s is not a superset of %s",
1290 tail_len
= strlen(tail
);
1292 if (got
->len
< tail_len
||
1293 strcmp(tail
, got
->buf
+ got
->len
- tail_len
))
1294 return 0; /* insane redirect scheme */
1297 strbuf_add(base
, got
->buf
, got
->len
- tail_len
);
1301 static int http_request_reauth(const char *url
,
1302 void *result
, int target
,
1303 struct http_get_options
*options
)
1305 int ret
= http_request(url
, result
, target
, options
);
1307 if (options
&& options
->effective_url
&& options
->base_url
) {
1308 if (update_url_from_redirect(options
->base_url
,
1309 url
, options
->effective_url
)) {
1310 credential_from_url(&http_auth
, options
->base_url
->buf
);
1311 url
= options
->effective_url
->buf
;
1315 if (ret
!= HTTP_REAUTH
)
1319 * If we are using KEEP_ERROR, the previous request may have
1320 * put cruft into our output stream; we should clear it out before
1321 * making our next request. We only know how to do this for
1322 * the strbuf case, but that is enough to satisfy current callers.
1324 if (options
&& options
->keep_error
) {
1326 case HTTP_REQUEST_STRBUF
:
1327 strbuf_reset(result
);
1330 die("BUG: HTTP_KEEP_ERROR is only supported with strbufs");
1334 credential_fill(&http_auth
);
1336 return http_request(url
, result
, target
, options
);
1339 int http_get_strbuf(const char *url
,
1340 struct strbuf
*result
,
1341 struct http_get_options
*options
)
1343 return http_request_reauth(url
, result
, HTTP_REQUEST_STRBUF
, options
);
1347 * Downloads a URL and stores the result in the given file.
1349 * If a previous interrupted download is detected (i.e. a previous temporary
1350 * file is still around) the download is resumed.
1352 static int http_get_file(const char *url
, const char *filename
,
1353 struct http_get_options
*options
)
1356 struct strbuf tmpfile
= STRBUF_INIT
;
1359 strbuf_addf(&tmpfile
, "%s.temp", filename
);
1360 result
= fopen(tmpfile
.buf
, "a");
1362 error("Unable to open local file %s", tmpfile
.buf
);
1367 ret
= http_request_reauth(url
, result
, HTTP_REQUEST_FILE
, options
);
1370 if (ret
== HTTP_OK
&& finalize_object_file(tmpfile
.buf
, filename
))
1373 strbuf_release(&tmpfile
);
1377 int http_fetch_ref(const char *base
, struct ref
*ref
)
1379 struct http_get_options options
= {0};
1381 struct strbuf buffer
= STRBUF_INIT
;
1384 options
.no_cache
= 1;
1386 url
= quote_ref_url(base
, ref
->name
);
1387 if (http_get_strbuf(url
, &buffer
, &options
) == HTTP_OK
) {
1388 strbuf_rtrim(&buffer
);
1389 if (buffer
.len
== 40)
1390 ret
= get_sha1_hex(buffer
.buf
, ref
->old_sha1
);
1391 else if (starts_with(buffer
.buf
, "ref: ")) {
1392 ref
->symref
= xstrdup(buffer
.buf
+ 5);
1397 strbuf_release(&buffer
);
1402 /* Helpers for fetching packs */
1403 static char *fetch_pack_index(unsigned char *sha1
, const char *base_url
)
1406 struct strbuf buf
= STRBUF_INIT
;
1408 if (http_is_verbose
)
1409 fprintf(stderr
, "Getting index for pack %s\n", sha1_to_hex(sha1
));
1411 end_url_with_slash(&buf
, base_url
);
1412 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", sha1_to_hex(sha1
));
1413 url
= strbuf_detach(&buf
, NULL
);
1415 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(sha1
));
1416 tmp
= strbuf_detach(&buf
, NULL
);
1418 if (http_get_file(url
, tmp
, NULL
) != HTTP_OK
) {
1419 error("Unable to get pack index %s", url
);
1428 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
1429 unsigned char *sha1
, const char *base_url
)
1431 struct packed_git
*new_pack
;
1432 char *tmp_idx
= NULL
;
1435 if (has_pack_index(sha1
)) {
1436 new_pack
= parse_pack_index(sha1
, sha1_pack_index_name(sha1
));
1438 return -1; /* parse_pack_index() already issued error message */
1442 tmp_idx
= fetch_pack_index(sha1
, base_url
);
1446 new_pack
= parse_pack_index(sha1
, tmp_idx
);
1451 return -1; /* parse_pack_index() already issued error message */
1454 ret
= verify_pack_index(new_pack
);
1456 close_pack_index(new_pack
);
1457 ret
= finalize_object_file(tmp_idx
, sha1_pack_index_name(sha1
));
1464 new_pack
->next
= *packs_head
;
1465 *packs_head
= new_pack
;
1469 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
1471 struct http_get_options options
= {0};
1474 struct strbuf buf
= STRBUF_INIT
;
1475 unsigned char sha1
[20];
1477 end_url_with_slash(&buf
, base_url
);
1478 strbuf_addstr(&buf
, "objects/info/packs");
1479 url
= strbuf_detach(&buf
, NULL
);
1481 options
.no_cache
= 1;
1482 ret
= http_get_strbuf(url
, &buf
, &options
);
1487 while (i
< buf
.len
) {
1491 if (i
+ 52 <= buf
.len
&&
1492 starts_with(data
+ i
, " pack-") &&
1493 starts_with(data
+ i
+ 46, ".pack\n")) {
1494 get_sha1_hex(data
+ i
+ 6, sha1
);
1495 fetch_and_setup_pack_index(packs_head
, sha1
,
1501 while (i
< buf
.len
&& data
[i
] != '\n')
1512 void release_http_pack_request(struct http_pack_request
*preq
)
1514 if (preq
->packfile
!= NULL
) {
1515 fclose(preq
->packfile
);
1516 preq
->packfile
= NULL
;
1518 if (preq
->range_header
!= NULL
) {
1519 curl_slist_free_all(preq
->range_header
);
1520 preq
->range_header
= NULL
;
1527 int finish_http_pack_request(struct http_pack_request
*preq
)
1529 struct packed_git
**lst
;
1530 struct packed_git
*p
= preq
->target
;
1532 struct child_process ip
= CHILD_PROCESS_INIT
;
1533 const char *ip_argv
[8];
1535 close_pack_index(p
);
1537 fclose(preq
->packfile
);
1538 preq
->packfile
= NULL
;
1542 lst
= &((*lst
)->next
);
1543 *lst
= (*lst
)->next
;
1545 tmp_idx
= xstrdup(preq
->tmpfile
);
1546 strcpy(tmp_idx
+ strlen(tmp_idx
) - strlen(".pack.temp"),
1549 ip_argv
[0] = "index-pack";
1551 ip_argv
[2] = tmp_idx
;
1552 ip_argv
[3] = preq
->tmpfile
;
1560 if (run_command(&ip
)) {
1561 unlink(preq
->tmpfile
);
1567 unlink(sha1_pack_index_name(p
->sha1
));
1569 if (finalize_object_file(preq
->tmpfile
, sha1_pack_name(p
->sha1
))
1570 || finalize_object_file(tmp_idx
, sha1_pack_index_name(p
->sha1
))) {
1575 install_packed_git(p
);
1580 struct http_pack_request
*new_http_pack_request(
1581 struct packed_git
*target
, const char *base_url
)
1584 char range
[RANGE_HEADER_SIZE
];
1585 struct strbuf buf
= STRBUF_INIT
;
1586 struct http_pack_request
*preq
;
1588 preq
= xcalloc(1, sizeof(*preq
));
1589 preq
->target
= target
;
1591 end_url_with_slash(&buf
, base_url
);
1592 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
1593 sha1_to_hex(target
->sha1
));
1594 preq
->url
= strbuf_detach(&buf
, NULL
);
1596 snprintf(preq
->tmpfile
, sizeof(preq
->tmpfile
), "%s.temp",
1597 sha1_pack_name(target
->sha1
));
1598 preq
->packfile
= fopen(preq
->tmpfile
, "a");
1599 if (!preq
->packfile
) {
1600 error("Unable to open local file %s for pack",
1605 preq
->slot
= get_active_slot();
1606 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_FILE
, preq
->packfile
);
1607 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
1608 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
1609 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1613 * If there is data present from a previous transfer attempt,
1614 * resume where it left off
1616 prev_posn
= ftell(preq
->packfile
);
1618 if (http_is_verbose
)
1620 "Resuming fetch of pack %s at byte %ld\n",
1621 sha1_to_hex(target
->sha1
), prev_posn
);
1622 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1623 preq
->range_header
= curl_slist_append(NULL
, range
);
1624 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1625 preq
->range_header
);
1636 /* Helpers for fetching objects (loose) */
1637 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
1640 unsigned char expn
[4096];
1641 size_t size
= eltsize
* nmemb
;
1643 struct http_object_request
*freq
=
1644 (struct http_object_request
*)data
;
1646 ssize_t retval
= xwrite(freq
->localfile
,
1647 (char *) ptr
+ posn
, size
- posn
);
1651 } while (posn
< size
);
1653 freq
->stream
.avail_in
= size
;
1654 freq
->stream
.next_in
= (void *)ptr
;
1656 freq
->stream
.next_out
= expn
;
1657 freq
->stream
.avail_out
= sizeof(expn
);
1658 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
1659 git_SHA1_Update(&freq
->c
, expn
,
1660 sizeof(expn
) - freq
->stream
.avail_out
);
1661 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
1665 struct http_object_request
*new_http_object_request(const char *base_url
,
1666 unsigned char *sha1
)
1668 char *hex
= sha1_to_hex(sha1
);
1669 const char *filename
;
1670 char prevfile
[PATH_MAX
];
1672 char prev_buf
[PREV_BUF_SIZE
];
1673 ssize_t prev_read
= 0;
1675 char range
[RANGE_HEADER_SIZE
];
1676 struct curl_slist
*range_header
= NULL
;
1677 struct http_object_request
*freq
;
1679 freq
= xcalloc(1, sizeof(*freq
));
1680 hashcpy(freq
->sha1
, sha1
);
1681 freq
->localfile
= -1;
1683 filename
= sha1_file_name(sha1
);
1684 snprintf(freq
->tmpfile
, sizeof(freq
->tmpfile
),
1685 "%s.temp", filename
);
1687 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", filename
);
1688 unlink_or_warn(prevfile
);
1689 rename(freq
->tmpfile
, prevfile
);
1690 unlink_or_warn(freq
->tmpfile
);
1692 if (freq
->localfile
!= -1)
1693 error("fd leakage in start: %d", freq
->localfile
);
1694 freq
->localfile
= open(freq
->tmpfile
,
1695 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1697 * This could have failed due to the "lazy directory creation";
1698 * try to mkdir the last path component.
1700 if (freq
->localfile
< 0 && errno
== ENOENT
) {
1701 char *dir
= strrchr(freq
->tmpfile
, '/');
1704 mkdir(freq
->tmpfile
, 0777);
1707 freq
->localfile
= open(freq
->tmpfile
,
1708 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1711 if (freq
->localfile
< 0) {
1712 error("Couldn't create temporary file %s: %s",
1713 freq
->tmpfile
, strerror(errno
));
1717 git_inflate_init(&freq
->stream
);
1719 git_SHA1_Init(&freq
->c
);
1721 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
1724 * If a previous temp file is present, process what was already
1727 prevlocal
= open(prevfile
, O_RDONLY
);
1728 if (prevlocal
!= -1) {
1730 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
1732 if (fwrite_sha1_file(prev_buf
,
1735 freq
) == prev_read
) {
1736 prev_posn
+= prev_read
;
1741 } while (prev_read
> 0);
1744 unlink_or_warn(prevfile
);
1747 * Reset inflate/SHA1 if there was an error reading the previous temp
1748 * file; also rewind to the beginning of the local file.
1750 if (prev_read
== -1) {
1751 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
1752 git_inflate_init(&freq
->stream
);
1753 git_SHA1_Init(&freq
->c
);
1756 lseek(freq
->localfile
, 0, SEEK_SET
);
1757 if (ftruncate(freq
->localfile
, 0) < 0) {
1758 error("Couldn't truncate temporary file %s: %s",
1759 freq
->tmpfile
, strerror(errno
));
1765 freq
->slot
= get_active_slot();
1767 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FILE
, freq
);
1768 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
1769 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
1770 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
1771 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
1774 * If we have successfully processed data from a previous fetch
1775 * attempt, only fetch the data we don't already have.
1778 if (http_is_verbose
)
1780 "Resuming fetch of object %s at byte %ld\n",
1782 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1783 range_header
= curl_slist_append(range_header
, range
);
1784 curl_easy_setopt(freq
->slot
->curl
,
1785 CURLOPT_HTTPHEADER
, range_header
);
1796 void process_http_object_request(struct http_object_request
*freq
)
1798 if (freq
->slot
== NULL
)
1800 freq
->curl_result
= freq
->slot
->curl_result
;
1801 freq
->http_code
= freq
->slot
->http_code
;
1805 int finish_http_object_request(struct http_object_request
*freq
)
1809 close(freq
->localfile
);
1810 freq
->localfile
= -1;
1812 process_http_object_request(freq
);
1814 if (freq
->http_code
== 416) {
1815 warning("requested range invalid; we may already have all the data.");
1816 } else if (freq
->curl_result
!= CURLE_OK
) {
1817 if (stat(freq
->tmpfile
, &st
) == 0)
1818 if (st
.st_size
== 0)
1819 unlink_or_warn(freq
->tmpfile
);
1823 git_inflate_end(&freq
->stream
);
1824 git_SHA1_Final(freq
->real_sha1
, &freq
->c
);
1825 if (freq
->zret
!= Z_STREAM_END
) {
1826 unlink_or_warn(freq
->tmpfile
);
1829 if (hashcmp(freq
->sha1
, freq
->real_sha1
)) {
1830 unlink_or_warn(freq
->tmpfile
);
1834 finalize_object_file(freq
->tmpfile
, sha1_file_name(freq
->sha1
));
1836 return freq
->rename
;
1839 void abort_http_object_request(struct http_object_request
*freq
)
1841 unlink_or_warn(freq
->tmpfile
);
1843 release_http_object_request(freq
);
1846 void release_http_object_request(struct http_object_request
*freq
)
1848 if (freq
->localfile
!= -1) {
1849 close(freq
->localfile
);
1850 freq
->localfile
= -1;
1852 if (freq
->url
!= NULL
) {
1856 if (freq
->slot
!= NULL
) {
1857 freq
->slot
->callback_func
= NULL
;
1858 freq
->slot
->callback_data
= NULL
;
1859 release_active_slot(freq
->slot
);