4 #include "run-command.h"
6 #include "credential.h"
12 size_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
14 #if LIBCURL_VERSION_NUM >= 0x070a06
15 #define LIBCURL_CAN_HANDLE_AUTH_ANY
18 static int min_curl_sessions
= 1;
19 static int curl_session_count
;
21 static int max_requests
= -1;
24 #ifndef NO_CURL_EASY_DUPHANDLE
25 static CURL
*curl_default
;
28 #define PREV_BUF_SIZE 4096
29 #define RANGE_HEADER_SIZE 30
31 char curl_errorstr
[CURL_ERROR_SIZE
];
33 static int curl_ssl_verify
= -1;
34 static int curl_ssl_try
;
35 static const char *ssl_cert
;
36 #if LIBCURL_VERSION_NUM >= 0x070903
37 static const char *ssl_key
;
39 #if LIBCURL_VERSION_NUM >= 0x070908
40 static const char *ssl_capath
;
42 static const char *ssl_cainfo
;
43 static long curl_low_speed_limit
= -1;
44 static long curl_low_speed_time
= -1;
45 static int curl_ftp_no_epsv
;
46 static const char *curl_http_proxy
;
47 static const char *curl_cookie_file
;
48 static struct credential http_auth
= CREDENTIAL_INIT
;
49 static int http_proactive_auth
;
50 static const char *user_agent
;
52 #if LIBCURL_VERSION_NUM >= 0x071700
53 /* Use CURLOPT_KEYPASSWD as is */
54 #elif LIBCURL_VERSION_NUM >= 0x070903
55 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
57 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
60 static struct credential cert_auth
= CREDENTIAL_INIT
;
61 static int ssl_cert_password_required
;
63 static struct curl_slist
*pragma_header
;
64 static struct curl_slist
*no_pragma_header
;
66 static struct active_request_slot
*active_queue_head
;
68 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
70 size_t size
= eltsize
* nmemb
;
71 struct buffer
*buffer
= buffer_
;
73 if (size
> buffer
->buf
.len
- buffer
->posn
)
74 size
= buffer
->buf
.len
- buffer
->posn
;
75 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
82 curlioerr
ioctl_buffer(CURL
*handle
, int cmd
, void *clientp
)
84 struct buffer
*buffer
= clientp
;
90 case CURLIOCMD_RESTARTREAD
:
95 return CURLIOE_UNKNOWNCMD
;
100 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
102 size_t size
= eltsize
* nmemb
;
103 struct strbuf
*buffer
= buffer_
;
105 strbuf_add(buffer
, ptr
, size
);
109 size_t fwrite_null(char *ptr
, size_t eltsize
, size_t nmemb
, void *strbuf
)
111 return eltsize
* nmemb
;
114 #ifdef USE_CURL_MULTI
115 static void process_curl_messages(void)
118 struct active_request_slot
*slot
;
119 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
121 while (curl_message
!= NULL
) {
122 if (curl_message
->msg
== CURLMSG_DONE
) {
123 int curl_result
= curl_message
->data
.result
;
124 slot
= active_queue_head
;
125 while (slot
!= NULL
&&
126 slot
->curl
!= curl_message
->easy_handle
)
129 curl_multi_remove_handle(curlm
, slot
->curl
);
130 slot
->curl_result
= curl_result
;
131 finish_active_slot(slot
);
133 fprintf(stderr
, "Received DONE message for unknown request!\n");
136 fprintf(stderr
, "Unknown CURL message received: %d\n",
137 (int)curl_message
->msg
);
139 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
144 static int http_options(const char *var
, const char *value
, void *cb
)
146 if (!strcmp("http.sslverify", var
)) {
147 curl_ssl_verify
= git_config_bool(var
, value
);
150 if (!strcmp("http.sslcert", var
))
151 return git_config_string(&ssl_cert
, var
, value
);
152 #if LIBCURL_VERSION_NUM >= 0x070903
153 if (!strcmp("http.sslkey", var
))
154 return git_config_string(&ssl_key
, var
, value
);
156 #if LIBCURL_VERSION_NUM >= 0x070908
157 if (!strcmp("http.sslcapath", var
))
158 return git_config_string(&ssl_capath
, var
, value
);
160 if (!strcmp("http.sslcainfo", var
))
161 return git_config_string(&ssl_cainfo
, var
, value
);
162 if (!strcmp("http.sslcertpasswordprotected", var
)) {
163 if (git_config_bool(var
, value
))
164 ssl_cert_password_required
= 1;
167 if (!strcmp("http.ssltry", var
)) {
168 curl_ssl_try
= git_config_bool(var
, value
);
171 if (!strcmp("http.minsessions", var
)) {
172 min_curl_sessions
= git_config_int(var
, value
);
173 #ifndef USE_CURL_MULTI
174 if (min_curl_sessions
> 1)
175 min_curl_sessions
= 1;
179 #ifdef USE_CURL_MULTI
180 if (!strcmp("http.maxrequests", var
)) {
181 max_requests
= git_config_int(var
, value
);
185 if (!strcmp("http.lowspeedlimit", var
)) {
186 curl_low_speed_limit
= (long)git_config_int(var
, value
);
189 if (!strcmp("http.lowspeedtime", var
)) {
190 curl_low_speed_time
= (long)git_config_int(var
, value
);
194 if (!strcmp("http.noepsv", var
)) {
195 curl_ftp_no_epsv
= git_config_bool(var
, value
);
198 if (!strcmp("http.proxy", var
))
199 return git_config_string(&curl_http_proxy
, var
, value
);
201 if (!strcmp("http.cookiefile", var
))
202 return git_config_string(&curl_cookie_file
, var
, value
);
204 if (!strcmp("http.postbuffer", var
)) {
205 http_post_buffer
= git_config_int(var
, value
);
206 if (http_post_buffer
< LARGE_PACKET_MAX
)
207 http_post_buffer
= LARGE_PACKET_MAX
;
211 if (!strcmp("http.useragent", var
))
212 return git_config_string(&user_agent
, var
, value
);
214 /* Fall back on the default ones */
215 return git_default_config(var
, value
, cb
);
218 static void init_curl_http_auth(CURL
*result
)
220 if (!http_auth
.username
)
223 credential_fill(&http_auth
);
225 #if LIBCURL_VERSION_NUM >= 0x071301
226 curl_easy_setopt(result
, CURLOPT_USERNAME
, http_auth
.username
);
227 curl_easy_setopt(result
, CURLOPT_PASSWORD
, http_auth
.password
);
230 static struct strbuf up
= STRBUF_INIT
;
232 * Note that we assume we only ever have a single set of
233 * credentials in a given program run, so we do not have
234 * to worry about updating this buffer, only setting its
238 strbuf_addf(&up
, "%s:%s",
239 http_auth
.username
, http_auth
.password
);
240 curl_easy_setopt(result
, CURLOPT_USERPWD
, up
.buf
);
245 static int has_cert_password(void)
247 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
249 if (!cert_auth
.password
) {
250 cert_auth
.protocol
= xstrdup("cert");
251 cert_auth
.username
= xstrdup("");
252 cert_auth
.path
= xstrdup(ssl_cert
);
253 credential_fill(&cert_auth
);
258 static CURL
*get_curl_handle(void)
260 CURL
*result
= curl_easy_init();
262 if (!curl_ssl_verify
) {
263 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
264 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
266 /* Verify authenticity of the peer's certificate */
267 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
268 /* The name in the cert must match whom we tried to connect */
269 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
272 #if LIBCURL_VERSION_NUM >= 0x070907
273 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
275 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
276 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
279 if (http_proactive_auth
)
280 init_curl_http_auth(result
);
282 if (ssl_cert
!= NULL
)
283 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
284 if (has_cert_password())
285 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, cert_auth
.password
);
286 #if LIBCURL_VERSION_NUM >= 0x070903
288 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
290 #if LIBCURL_VERSION_NUM >= 0x070908
291 if (ssl_capath
!= NULL
)
292 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
294 if (ssl_cainfo
!= NULL
)
295 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
297 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
298 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
299 curl_low_speed_limit
);
300 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
301 curl_low_speed_time
);
304 curl_easy_setopt(result
, CURLOPT_FOLLOWLOCATION
, 1);
305 #if LIBCURL_VERSION_NUM >= 0x071301
306 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
307 #elif LIBCURL_VERSION_NUM >= 0x071101
308 curl_easy_setopt(result
, CURLOPT_POST301
, 1);
311 if (getenv("GIT_CURL_VERBOSE"))
312 curl_easy_setopt(result
, CURLOPT_VERBOSE
, 1);
314 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
315 user_agent
? user_agent
: git_user_agent());
317 if (curl_ftp_no_epsv
)
318 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
320 #ifdef CURLOPT_USE_SSL
322 curl_easy_setopt(result
, CURLOPT_USE_SSL
, CURLUSESSL_TRY
);
325 if (curl_http_proxy
) {
326 curl_easy_setopt(result
, CURLOPT_PROXY
, curl_http_proxy
);
327 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
333 static void set_from_env(const char **var
, const char *envname
)
335 const char *val
= getenv(envname
);
340 void http_init(struct remote
*remote
, const char *url
, int proactive_auth
)
342 char *low_speed_limit
;
343 char *low_speed_time
;
347 git_config(http_options
, NULL
);
349 curl_global_init(CURL_GLOBAL_ALL
);
351 http_proactive_auth
= proactive_auth
;
353 if (remote
&& remote
->http_proxy
)
354 curl_http_proxy
= xstrdup(remote
->http_proxy
);
356 pragma_header
= curl_slist_append(pragma_header
, "Pragma: no-cache");
357 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
359 #ifdef USE_CURL_MULTI
361 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
362 if (http_max_requests
!= NULL
)
363 max_requests
= atoi(http_max_requests
);
366 curlm
= curl_multi_init();
368 fprintf(stderr
, "Error creating curl multi handle.\n");
373 if (getenv("GIT_SSL_NO_VERIFY"))
376 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
377 #if LIBCURL_VERSION_NUM >= 0x070903
378 set_from_env(&ssl_key
, "GIT_SSL_KEY");
380 #if LIBCURL_VERSION_NUM >= 0x070908
381 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
383 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
385 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
387 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
388 if (low_speed_limit
!= NULL
)
389 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
390 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
391 if (low_speed_time
!= NULL
)
392 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
394 if (curl_ssl_verify
== -1)
397 curl_session_count
= 0;
398 #ifdef USE_CURL_MULTI
399 if (max_requests
< 1)
400 max_requests
= DEFAULT_MAX_REQUESTS
;
403 if (getenv("GIT_CURL_FTP_NO_EPSV"))
404 curl_ftp_no_epsv
= 1;
407 credential_from_url(&http_auth
, url
);
408 if (!ssl_cert_password_required
&&
409 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
410 !prefixcmp(url
, "https://"))
411 ssl_cert_password_required
= 1;
414 #ifndef NO_CURL_EASY_DUPHANDLE
415 curl_default
= get_curl_handle();
419 void http_cleanup(void)
421 struct active_request_slot
*slot
= active_queue_head
;
423 while (slot
!= NULL
) {
424 struct active_request_slot
*next
= slot
->next
;
425 if (slot
->curl
!= NULL
) {
426 #ifdef USE_CURL_MULTI
427 curl_multi_remove_handle(curlm
, slot
->curl
);
429 curl_easy_cleanup(slot
->curl
);
434 active_queue_head
= NULL
;
436 #ifndef NO_CURL_EASY_DUPHANDLE
437 curl_easy_cleanup(curl_default
);
440 #ifdef USE_CURL_MULTI
441 curl_multi_cleanup(curlm
);
443 curl_global_cleanup();
445 curl_slist_free_all(pragma_header
);
446 pragma_header
= NULL
;
448 curl_slist_free_all(no_pragma_header
);
449 no_pragma_header
= NULL
;
451 if (curl_http_proxy
) {
452 free((void *)curl_http_proxy
);
453 curl_http_proxy
= NULL
;
456 if (cert_auth
.password
!= NULL
) {
457 memset(cert_auth
.password
, 0, strlen(cert_auth
.password
));
458 free(cert_auth
.password
);
459 cert_auth
.password
= NULL
;
461 ssl_cert_password_required
= 0;
464 struct active_request_slot
*get_active_slot(void)
466 struct active_request_slot
*slot
= active_queue_head
;
467 struct active_request_slot
*newslot
;
469 #ifdef USE_CURL_MULTI
472 /* Wait for a slot to open up if the queue is full */
473 while (active_requests
>= max_requests
) {
474 curl_multi_perform(curlm
, &num_transfers
);
475 if (num_transfers
< active_requests
)
476 process_curl_messages();
480 while (slot
!= NULL
&& slot
->in_use
)
484 newslot
= xmalloc(sizeof(*newslot
));
485 newslot
->curl
= NULL
;
487 newslot
->next
= NULL
;
489 slot
= active_queue_head
;
491 active_queue_head
= newslot
;
493 while (slot
->next
!= NULL
)
495 slot
->next
= newslot
;
500 if (slot
->curl
== NULL
) {
501 #ifdef NO_CURL_EASY_DUPHANDLE
502 slot
->curl
= get_curl_handle();
504 slot
->curl
= curl_easy_duphandle(curl_default
);
506 curl_session_count
++;
511 slot
->results
= NULL
;
512 slot
->finished
= NULL
;
513 slot
->callback_data
= NULL
;
514 slot
->callback_func
= NULL
;
515 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEFILE
, curl_cookie_file
);
516 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
517 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
518 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
519 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
520 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
521 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
522 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
523 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
524 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 1);
525 if (http_auth
.password
)
526 init_curl_http_auth(slot
->curl
);
531 int start_active_slot(struct active_request_slot
*slot
)
533 #ifdef USE_CURL_MULTI
534 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
537 if (curlm_result
!= CURLM_OK
&&
538 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
545 * We know there must be something to do, since we just added
548 curl_multi_perform(curlm
, &num_transfers
);
553 #ifdef USE_CURL_MULTI
557 struct fill_chain
*next
;
560 static struct fill_chain
*fill_cfg
;
562 void add_fill_function(void *data
, int (*fill
)(void *))
564 struct fill_chain
*new = xmalloc(sizeof(*new));
565 struct fill_chain
**linkp
= &fill_cfg
;
570 linkp
= &(*linkp
)->next
;
574 void fill_active_slots(void)
576 struct active_request_slot
*slot
= active_queue_head
;
578 while (active_requests
< max_requests
) {
579 struct fill_chain
*fill
;
580 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
581 if (fill
->fill(fill
->data
))
588 while (slot
!= NULL
) {
589 if (!slot
->in_use
&& slot
->curl
!= NULL
590 && curl_session_count
> min_curl_sessions
) {
591 curl_easy_cleanup(slot
->curl
);
593 curl_session_count
--;
599 void step_active_slots(void)
602 CURLMcode curlm_result
;
605 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
606 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
607 if (num_transfers
< active_requests
) {
608 process_curl_messages();
614 void run_active_slot(struct active_request_slot
*slot
)
616 #ifdef USE_CURL_MULTI
621 struct timeval select_timeout
;
624 slot
->finished
= &finished
;
629 #if LIBCURL_VERSION_NUM >= 0x070f04
631 curl_multi_timeout(curlm
, &curl_timeout
);
632 if (curl_timeout
== 0) {
634 } else if (curl_timeout
== -1) {
635 select_timeout
.tv_sec
= 0;
636 select_timeout
.tv_usec
= 50000;
638 select_timeout
.tv_sec
= curl_timeout
/ 1000;
639 select_timeout
.tv_usec
= (curl_timeout
% 1000) * 1000;
642 select_timeout
.tv_sec
= 0;
643 select_timeout
.tv_usec
= 50000;
650 curl_multi_fdset(curlm
, &readfds
, &writefds
, &excfds
, &max_fd
);
653 * It can happen that curl_multi_timeout returns a pathologically
654 * long timeout when curl_multi_fdset returns no file descriptors
655 * to read. See commit message for more details.
658 (select_timeout
.tv_sec
> 0 ||
659 select_timeout
.tv_usec
> 50000)) {
660 select_timeout
.tv_sec
= 0;
661 select_timeout
.tv_usec
= 50000;
664 select(max_fd
+1, &readfds
, &writefds
, &excfds
, &select_timeout
);
668 while (slot
->in_use
) {
669 slot
->curl_result
= curl_easy_perform(slot
->curl
);
670 finish_active_slot(slot
);
675 static void closedown_active_slot(struct active_request_slot
*slot
)
681 static void release_active_slot(struct active_request_slot
*slot
)
683 closedown_active_slot(slot
);
684 if (slot
->curl
&& curl_session_count
> min_curl_sessions
) {
685 #ifdef USE_CURL_MULTI
686 curl_multi_remove_handle(curlm
, slot
->curl
);
688 curl_easy_cleanup(slot
->curl
);
690 curl_session_count
--;
692 #ifdef USE_CURL_MULTI
697 void finish_active_slot(struct active_request_slot
*slot
)
699 closedown_active_slot(slot
);
700 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
702 if (slot
->finished
!= NULL
)
703 (*slot
->finished
) = 1;
705 /* Store slot results so they can be read after the slot is reused */
706 if (slot
->results
!= NULL
) {
707 slot
->results
->curl_result
= slot
->curl_result
;
708 slot
->results
->http_code
= slot
->http_code
;
709 #if LIBCURL_VERSION_NUM >= 0x070a08
710 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTPAUTH_AVAIL
,
711 &slot
->results
->auth_avail
);
713 slot
->results
->auth_avail
= 0;
717 /* Run callback if appropriate */
718 if (slot
->callback_func
!= NULL
)
719 slot
->callback_func(slot
->callback_data
);
722 void finish_all_active_slots(void)
724 struct active_request_slot
*slot
= active_queue_head
;
728 run_active_slot(slot
);
729 slot
= active_queue_head
;
735 /* Helpers for modifying and creating URLs */
736 static inline int needs_quote(int ch
)
738 if (((ch
>= 'A') && (ch
<= 'Z'))
739 || ((ch
>= 'a') && (ch
<= 'z'))
740 || ((ch
>= '0') && (ch
<= '9'))
748 static char *quote_ref_url(const char *base
, const char *ref
)
750 struct strbuf buf
= STRBUF_INIT
;
754 end_url_with_slash(&buf
, base
);
756 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
758 strbuf_addf(&buf
, "%%%02x", ch
);
760 strbuf_addch(&buf
, *cp
);
762 return strbuf_detach(&buf
, NULL
);
765 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
767 int only_two_digit_prefix
)
769 end_url_with_slash(buf
, url
);
771 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
772 if (!only_two_digit_prefix
)
773 strbuf_addf(buf
, "%s", hex
+2);
776 char *get_remote_object_url(const char *url
, const char *hex
,
777 int only_two_digit_prefix
)
779 struct strbuf buf
= STRBUF_INIT
;
780 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
781 return strbuf_detach(&buf
, NULL
);
784 int handle_curl_result(struct slot_results
*results
)
787 * If we see a failing http code with CURLE_OK, we have turned off
788 * FAILONERROR (to keep the server's custom error response), and should
789 * translate the code into failure here.
791 if (results
->curl_result
== CURLE_OK
&&
792 results
->http_code
>= 400) {
793 results
->curl_result
= CURLE_HTTP_RETURNED_ERROR
;
795 * Normally curl will already have put the "reason phrase"
796 * from the server into curl_errorstr; unfortunately without
797 * FAILONERROR it is lost, so we can give only the numeric
800 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
801 "The requested URL returned error: %ld",
805 if (results
->curl_result
== CURLE_OK
) {
806 credential_approve(&http_auth
);
808 } else if (missing_target(results
))
809 return HTTP_MISSING_TARGET
;
810 else if (results
->http_code
== 401) {
811 if (http_auth
.username
&& http_auth
.password
) {
812 credential_reject(&http_auth
);
815 credential_fill(&http_auth
);
819 #if LIBCURL_VERSION_NUM >= 0x070c00
820 if (!curl_errorstr
[0])
821 strlcpy(curl_errorstr
,
822 curl_easy_strerror(results
->curl_result
),
823 sizeof(curl_errorstr
));
829 /* http_request() targets */
830 #define HTTP_REQUEST_STRBUF 0
831 #define HTTP_REQUEST_FILE 1
833 static int http_request(const char *url
, struct strbuf
*type
,
834 void *result
, int target
, int options
)
836 struct active_request_slot
*slot
;
837 struct slot_results results
;
838 struct curl_slist
*headers
= NULL
;
839 struct strbuf buf
= STRBUF_INIT
;
842 slot
= get_active_slot();
843 slot
->results
= &results
;
844 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
846 if (result
== NULL
) {
847 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
849 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
850 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, result
);
852 if (target
== HTTP_REQUEST_FILE
) {
853 long posn
= ftell(result
);
854 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
857 strbuf_addf(&buf
, "Range: bytes=%ld-", posn
);
858 headers
= curl_slist_append(headers
, buf
.buf
);
862 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
866 strbuf_addstr(&buf
, "Pragma:");
867 if (options
& HTTP_NO_CACHE
)
868 strbuf_addstr(&buf
, " no-cache");
869 if (options
& HTTP_KEEP_ERROR
)
870 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
872 headers
= curl_slist_append(headers
, buf
.buf
);
874 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
875 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
876 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "gzip");
878 if (start_active_slot(slot
)) {
879 run_active_slot(slot
);
880 ret
= handle_curl_result(&results
);
882 snprintf(curl_errorstr
, sizeof(curl_errorstr
),
883 "failed to start HTTP request");
884 ret
= HTTP_START_FAILED
;
890 curl_easy_getinfo(slot
->curl
, CURLINFO_CONTENT_TYPE
, &t
);
892 strbuf_addstr(type
, t
);
895 curl_slist_free_all(headers
);
896 strbuf_release(&buf
);
901 static int http_request_reauth(const char *url
,
903 void *result
, int target
,
906 int ret
= http_request(url
, type
, result
, target
, options
);
907 if (ret
!= HTTP_REAUTH
)
911 * If we are using KEEP_ERROR, the previous request may have
912 * put cruft into our output stream; we should clear it out before
913 * making our next request. We only know how to do this for
914 * the strbuf case, but that is enough to satisfy current callers.
916 if (options
& HTTP_KEEP_ERROR
) {
918 case HTTP_REQUEST_STRBUF
:
919 strbuf_reset(result
);
922 die("BUG: HTTP_KEEP_ERROR is only supported with strbufs");
925 return http_request(url
, type
, result
, target
, options
);
928 int http_get_strbuf(const char *url
,
930 struct strbuf
*result
, int options
)
932 return http_request_reauth(url
, type
, result
,
933 HTTP_REQUEST_STRBUF
, options
);
937 * Downloads a URL and stores the result in the given file.
939 * If a previous interrupted download is detected (i.e. a previous temporary
940 * file is still around) the download is resumed.
942 static int http_get_file(const char *url
, const char *filename
, int options
)
945 struct strbuf tmpfile
= STRBUF_INIT
;
948 strbuf_addf(&tmpfile
, "%s.temp", filename
);
949 result
= fopen(tmpfile
.buf
, "a");
951 error("Unable to open local file %s", tmpfile
.buf
);
956 ret
= http_request_reauth(url
, NULL
, result
, HTTP_REQUEST_FILE
, options
);
959 if ((ret
== HTTP_OK
) && move_temp_to_file(tmpfile
.buf
, filename
))
962 strbuf_release(&tmpfile
);
966 int http_fetch_ref(const char *base
, struct ref
*ref
)
969 struct strbuf buffer
= STRBUF_INIT
;
972 url
= quote_ref_url(base
, ref
->name
);
973 if (http_get_strbuf(url
, NULL
, &buffer
, HTTP_NO_CACHE
) == HTTP_OK
) {
974 strbuf_rtrim(&buffer
);
975 if (buffer
.len
== 40)
976 ret
= get_sha1_hex(buffer
.buf
, ref
->old_sha1
);
977 else if (!prefixcmp(buffer
.buf
, "ref: ")) {
978 ref
->symref
= xstrdup(buffer
.buf
+ 5);
983 strbuf_release(&buffer
);
988 /* Helpers for fetching packs */
989 static char *fetch_pack_index(unsigned char *sha1
, const char *base_url
)
992 struct strbuf buf
= STRBUF_INIT
;
995 fprintf(stderr
, "Getting index for pack %s\n", sha1_to_hex(sha1
));
997 end_url_with_slash(&buf
, base_url
);
998 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", sha1_to_hex(sha1
));
999 url
= strbuf_detach(&buf
, NULL
);
1001 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(sha1
));
1002 tmp
= strbuf_detach(&buf
, NULL
);
1004 if (http_get_file(url
, tmp
, 0) != HTTP_OK
) {
1005 error("Unable to get pack index %s", url
);
1014 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
1015 unsigned char *sha1
, const char *base_url
)
1017 struct packed_git
*new_pack
;
1018 char *tmp_idx
= NULL
;
1021 if (has_pack_index(sha1
)) {
1022 new_pack
= parse_pack_index(sha1
, NULL
);
1024 return -1; /* parse_pack_index() already issued error message */
1028 tmp_idx
= fetch_pack_index(sha1
, base_url
);
1032 new_pack
= parse_pack_index(sha1
, tmp_idx
);
1037 return -1; /* parse_pack_index() already issued error message */
1040 ret
= verify_pack_index(new_pack
);
1042 close_pack_index(new_pack
);
1043 ret
= move_temp_to_file(tmp_idx
, sha1_pack_index_name(sha1
));
1050 new_pack
->next
= *packs_head
;
1051 *packs_head
= new_pack
;
1055 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
1059 struct strbuf buf
= STRBUF_INIT
;
1060 unsigned char sha1
[20];
1062 end_url_with_slash(&buf
, base_url
);
1063 strbuf_addstr(&buf
, "objects/info/packs");
1064 url
= strbuf_detach(&buf
, NULL
);
1066 ret
= http_get_strbuf(url
, NULL
, &buf
, HTTP_NO_CACHE
);
1071 while (i
< buf
.len
) {
1075 if (i
+ 52 <= buf
.len
&&
1076 !prefixcmp(data
+ i
, " pack-") &&
1077 !prefixcmp(data
+ i
+ 46, ".pack\n")) {
1078 get_sha1_hex(data
+ i
+ 6, sha1
);
1079 fetch_and_setup_pack_index(packs_head
, sha1
,
1085 while (i
< buf
.len
&& data
[i
] != '\n')
1096 void release_http_pack_request(struct http_pack_request
*preq
)
1098 if (preq
->packfile
!= NULL
) {
1099 fclose(preq
->packfile
);
1100 preq
->packfile
= NULL
;
1102 if (preq
->range_header
!= NULL
) {
1103 curl_slist_free_all(preq
->range_header
);
1104 preq
->range_header
= NULL
;
1110 int finish_http_pack_request(struct http_pack_request
*preq
)
1112 struct packed_git
**lst
;
1113 struct packed_git
*p
= preq
->target
;
1115 struct child_process ip
;
1116 const char *ip_argv
[8];
1118 close_pack_index(p
);
1120 fclose(preq
->packfile
);
1121 preq
->packfile
= NULL
;
1125 lst
= &((*lst
)->next
);
1126 *lst
= (*lst
)->next
;
1128 tmp_idx
= xstrdup(preq
->tmpfile
);
1129 strcpy(tmp_idx
+ strlen(tmp_idx
) - strlen(".pack.temp"),
1132 ip_argv
[0] = "index-pack";
1134 ip_argv
[2] = tmp_idx
;
1135 ip_argv
[3] = preq
->tmpfile
;
1138 memset(&ip
, 0, sizeof(ip
));
1144 if (run_command(&ip
)) {
1145 unlink(preq
->tmpfile
);
1151 unlink(sha1_pack_index_name(p
->sha1
));
1153 if (move_temp_to_file(preq
->tmpfile
, sha1_pack_name(p
->sha1
))
1154 || move_temp_to_file(tmp_idx
, sha1_pack_index_name(p
->sha1
))) {
1159 install_packed_git(p
);
1164 struct http_pack_request
*new_http_pack_request(
1165 struct packed_git
*target
, const char *base_url
)
1168 char range
[RANGE_HEADER_SIZE
];
1169 struct strbuf buf
= STRBUF_INIT
;
1170 struct http_pack_request
*preq
;
1172 preq
= xcalloc(1, sizeof(*preq
));
1173 preq
->target
= target
;
1175 end_url_with_slash(&buf
, base_url
);
1176 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
1177 sha1_to_hex(target
->sha1
));
1178 preq
->url
= strbuf_detach(&buf
, NULL
);
1180 snprintf(preq
->tmpfile
, sizeof(preq
->tmpfile
), "%s.temp",
1181 sha1_pack_name(target
->sha1
));
1182 preq
->packfile
= fopen(preq
->tmpfile
, "a");
1183 if (!preq
->packfile
) {
1184 error("Unable to open local file %s for pack",
1189 preq
->slot
= get_active_slot();
1190 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_FILE
, preq
->packfile
);
1191 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
1192 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
1193 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1197 * If there is data present from a previous transfer attempt,
1198 * resume where it left off
1200 prev_posn
= ftell(preq
->packfile
);
1202 if (http_is_verbose
)
1204 "Resuming fetch of pack %s at byte %ld\n",
1205 sha1_to_hex(target
->sha1
), prev_posn
);
1206 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1207 preq
->range_header
= curl_slist_append(NULL
, range
);
1208 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1209 preq
->range_header
);
1220 /* Helpers for fetching objects (loose) */
1221 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
1224 unsigned char expn
[4096];
1225 size_t size
= eltsize
* nmemb
;
1227 struct http_object_request
*freq
=
1228 (struct http_object_request
*)data
;
1230 ssize_t retval
= xwrite(freq
->localfile
,
1231 (char *) ptr
+ posn
, size
- posn
);
1235 } while (posn
< size
);
1237 freq
->stream
.avail_in
= size
;
1238 freq
->stream
.next_in
= (void *)ptr
;
1240 freq
->stream
.next_out
= expn
;
1241 freq
->stream
.avail_out
= sizeof(expn
);
1242 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
1243 git_SHA1_Update(&freq
->c
, expn
,
1244 sizeof(expn
) - freq
->stream
.avail_out
);
1245 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
1249 struct http_object_request
*new_http_object_request(const char *base_url
,
1250 unsigned char *sha1
)
1252 char *hex
= sha1_to_hex(sha1
);
1254 char prevfile
[PATH_MAX
];
1256 char prev_buf
[PREV_BUF_SIZE
];
1257 ssize_t prev_read
= 0;
1259 char range
[RANGE_HEADER_SIZE
];
1260 struct curl_slist
*range_header
= NULL
;
1261 struct http_object_request
*freq
;
1263 freq
= xcalloc(1, sizeof(*freq
));
1264 hashcpy(freq
->sha1
, sha1
);
1265 freq
->localfile
= -1;
1267 filename
= sha1_file_name(sha1
);
1268 snprintf(freq
->tmpfile
, sizeof(freq
->tmpfile
),
1269 "%s.temp", filename
);
1271 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", filename
);
1272 unlink_or_warn(prevfile
);
1273 rename(freq
->tmpfile
, prevfile
);
1274 unlink_or_warn(freq
->tmpfile
);
1276 if (freq
->localfile
!= -1)
1277 error("fd leakage in start: %d", freq
->localfile
);
1278 freq
->localfile
= open(freq
->tmpfile
,
1279 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1281 * This could have failed due to the "lazy directory creation";
1282 * try to mkdir the last path component.
1284 if (freq
->localfile
< 0 && errno
== ENOENT
) {
1285 char *dir
= strrchr(freq
->tmpfile
, '/');
1288 mkdir(freq
->tmpfile
, 0777);
1291 freq
->localfile
= open(freq
->tmpfile
,
1292 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1295 if (freq
->localfile
< 0) {
1296 error("Couldn't create temporary file %s: %s",
1297 freq
->tmpfile
, strerror(errno
));
1301 git_inflate_init(&freq
->stream
);
1303 git_SHA1_Init(&freq
->c
);
1305 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
1308 * If a previous temp file is present, process what was already
1311 prevlocal
= open(prevfile
, O_RDONLY
);
1312 if (prevlocal
!= -1) {
1314 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
1316 if (fwrite_sha1_file(prev_buf
,
1319 freq
) == prev_read
) {
1320 prev_posn
+= prev_read
;
1325 } while (prev_read
> 0);
1328 unlink_or_warn(prevfile
);
1331 * Reset inflate/SHA1 if there was an error reading the previous temp
1332 * file; also rewind to the beginning of the local file.
1334 if (prev_read
== -1) {
1335 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
1336 git_inflate_init(&freq
->stream
);
1337 git_SHA1_Init(&freq
->c
);
1340 lseek(freq
->localfile
, 0, SEEK_SET
);
1341 if (ftruncate(freq
->localfile
, 0) < 0) {
1342 error("Couldn't truncate temporary file %s: %s",
1343 freq
->tmpfile
, strerror(errno
));
1349 freq
->slot
= get_active_slot();
1351 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FILE
, freq
);
1352 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
1353 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
1354 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
1355 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
1358 * If we have successfully processed data from a previous fetch
1359 * attempt, only fetch the data we don't already have.
1362 if (http_is_verbose
)
1364 "Resuming fetch of object %s at byte %ld\n",
1366 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1367 range_header
= curl_slist_append(range_header
, range
);
1368 curl_easy_setopt(freq
->slot
->curl
,
1369 CURLOPT_HTTPHEADER
, range_header
);
1380 void process_http_object_request(struct http_object_request
*freq
)
1382 if (freq
->slot
== NULL
)
1384 freq
->curl_result
= freq
->slot
->curl_result
;
1385 freq
->http_code
= freq
->slot
->http_code
;
1389 int finish_http_object_request(struct http_object_request
*freq
)
1393 close(freq
->localfile
);
1394 freq
->localfile
= -1;
1396 process_http_object_request(freq
);
1398 if (freq
->http_code
== 416) {
1399 warning("requested range invalid; we may already have all the data.");
1400 } else if (freq
->curl_result
!= CURLE_OK
) {
1401 if (stat(freq
->tmpfile
, &st
) == 0)
1402 if (st
.st_size
== 0)
1403 unlink_or_warn(freq
->tmpfile
);
1407 git_inflate_end(&freq
->stream
);
1408 git_SHA1_Final(freq
->real_sha1
, &freq
->c
);
1409 if (freq
->zret
!= Z_STREAM_END
) {
1410 unlink_or_warn(freq
->tmpfile
);
1413 if (hashcmp(freq
->sha1
, freq
->real_sha1
)) {
1414 unlink_or_warn(freq
->tmpfile
);
1418 move_temp_to_file(freq
->tmpfile
, sha1_file_name(freq
->sha1
));
1420 return freq
->rename
;
1423 void abort_http_object_request(struct http_object_request
*freq
)
1425 unlink_or_warn(freq
->tmpfile
);
1427 release_http_object_request(freq
);
1430 void release_http_object_request(struct http_object_request
*freq
)
1432 if (freq
->localfile
!= -1) {
1433 close(freq
->localfile
);
1434 freq
->localfile
= -1;
1436 if (freq
->url
!= NULL
) {
1440 if (freq
->slot
!= NULL
) {
1441 freq
->slot
->callback_func
= NULL
;
1442 freq
->slot
->callback_data
= NULL
;
1443 release_active_slot(freq
->slot
);