1 #include "git-compat-util.h"
6 #include "run-command.h"
9 #include "credential.h"
13 #include "transport.h"
16 #include "string-list.h"
17 #include "object-store.h"
19 static struct trace_key trace_curl
= TRACE_KEY_INIT(CURL
);
20 static int trace_curl_data
= 1;
21 static struct string_list cookies_to_redact
= STRING_LIST_INIT_DUP
;
22 #if LIBCURL_VERSION_NUM >= 0x070a08
23 long int git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
25 long int git_curl_ipresolve
;
29 ssize_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
31 #if LIBCURL_VERSION_NUM >= 0x070a06
32 #define LIBCURL_CAN_HANDLE_AUTH_ANY
35 static int min_curl_sessions
= 1;
36 static int curl_session_count
;
38 static int max_requests
= -1;
41 #ifndef NO_CURL_EASY_DUPHANDLE
42 static CURL
*curl_default
;
45 #define PREV_BUF_SIZE 4096
47 char curl_errorstr
[CURL_ERROR_SIZE
];
49 static int curl_ssl_verify
= -1;
50 static int curl_ssl_try
;
51 static const char *ssl_cert
;
52 static const char *ssl_cipherlist
;
53 static const char *ssl_version
;
58 { "sslv2", CURL_SSLVERSION_SSLv2
},
59 { "sslv3", CURL_SSLVERSION_SSLv3
},
60 { "tlsv1", CURL_SSLVERSION_TLSv1
},
61 #if LIBCURL_VERSION_NUM >= 0x072200
62 { "tlsv1.0", CURL_SSLVERSION_TLSv1_0
},
63 { "tlsv1.1", CURL_SSLVERSION_TLSv1_1
},
64 { "tlsv1.2", CURL_SSLVERSION_TLSv1_2
},
66 #if LIBCURL_VERSION_NUM >= 0x073400
67 { "tlsv1.3", CURL_SSLVERSION_TLSv1_3
},
70 #if LIBCURL_VERSION_NUM >= 0x070903
71 static const char *ssl_key
;
73 #if LIBCURL_VERSION_NUM >= 0x070908
74 static const char *ssl_capath
;
76 #if LIBCURL_VERSION_NUM >= 0x071304
77 static const char *curl_no_proxy
;
79 #if LIBCURL_VERSION_NUM >= 0x072c00
80 static const char *ssl_pinnedkey
;
82 static const char *ssl_cainfo
;
83 static long curl_low_speed_limit
= -1;
84 static long curl_low_speed_time
= -1;
85 static int curl_ftp_no_epsv
;
86 static const char *curl_http_proxy
;
87 static const char *http_proxy_authmethod
;
91 } proxy_authmethods
[] = {
92 { "basic", CURLAUTH_BASIC
},
93 { "digest", CURLAUTH_DIGEST
},
94 { "negotiate", CURLAUTH_GSSNEGOTIATE
},
95 { "ntlm", CURLAUTH_NTLM
},
96 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
97 { "anyauth", CURLAUTH_ANY
},
100 * CURLAUTH_DIGEST_IE has no corresponding command-line option in
101 * curl(1) and is not included in CURLAUTH_ANY, so we leave it out
105 #ifdef CURLGSSAPI_DELEGATION_FLAG
106 static const char *curl_deleg
;
109 long curl_deleg_param
;
110 } curl_deleg_levels
[] = {
111 { "none", CURLGSSAPI_DELEGATION_NONE
},
112 { "policy", CURLGSSAPI_DELEGATION_POLICY_FLAG
},
113 { "always", CURLGSSAPI_DELEGATION_FLAG
},
117 static struct credential proxy_auth
= CREDENTIAL_INIT
;
118 static const char *curl_proxyuserpwd
;
119 static const char *curl_cookie_file
;
120 static int curl_save_cookies
;
121 struct credential http_auth
= CREDENTIAL_INIT
;
122 static int http_proactive_auth
;
123 static const char *user_agent
;
124 static int curl_empty_auth
= -1;
126 enum http_follow_config http_follow_config
= HTTP_FOLLOW_INITIAL
;
128 #if LIBCURL_VERSION_NUM >= 0x071700
129 /* Use CURLOPT_KEYPASSWD as is */
130 #elif LIBCURL_VERSION_NUM >= 0x070903
131 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
133 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
136 static struct credential cert_auth
= CREDENTIAL_INIT
;
137 static int ssl_cert_password_required
;
138 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
139 static unsigned long http_auth_methods
= CURLAUTH_ANY
;
140 static int http_auth_methods_restricted
;
141 /* Modes for which empty_auth cannot actually help us. */
142 static unsigned long empty_auth_useless
=
144 #ifdef CURLAUTH_DIGEST_IE
150 static struct curl_slist
*pragma_header
;
151 static struct curl_slist
*no_pragma_header
;
152 static struct curl_slist
*extra_http_headers
;
154 static struct active_request_slot
*active_queue_head
;
156 static char *cached_accept_language
;
158 static char *http_ssl_backend
;
160 static int http_schannel_check_revoke
= 1;
162 * With the backend being set to `schannel`, setting sslCAinfo would override
163 * the Certificate Store in cURL v7.60.0 and later, which is not what we want
166 static int http_schannel_use_ssl_cainfo
;
168 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
170 size_t size
= eltsize
* nmemb
;
171 struct buffer
*buffer
= buffer_
;
173 if (size
> buffer
->buf
.len
- buffer
->posn
)
174 size
= buffer
->buf
.len
- buffer
->posn
;
175 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
176 buffer
->posn
+= size
;
181 #ifndef NO_CURL_IOCTL
182 curlioerr
ioctl_buffer(CURL
*handle
, int cmd
, void *clientp
)
184 struct buffer
*buffer
= clientp
;
190 case CURLIOCMD_RESTARTREAD
:
195 return CURLIOE_UNKNOWNCMD
;
200 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
202 size_t size
= eltsize
* nmemb
;
203 struct strbuf
*buffer
= buffer_
;
205 strbuf_add(buffer
, ptr
, size
);
209 size_t fwrite_null(char *ptr
, size_t eltsize
, size_t nmemb
, void *strbuf
)
211 return eltsize
* nmemb
;
214 static void closedown_active_slot(struct active_request_slot
*slot
)
220 static void finish_active_slot(struct active_request_slot
*slot
)
222 closedown_active_slot(slot
);
223 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
225 if (slot
->finished
!= NULL
)
226 (*slot
->finished
) = 1;
228 /* Store slot results so they can be read after the slot is reused */
229 if (slot
->results
!= NULL
) {
230 slot
->results
->curl_result
= slot
->curl_result
;
231 slot
->results
->http_code
= slot
->http_code
;
232 #if LIBCURL_VERSION_NUM >= 0x070a08
233 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTPAUTH_AVAIL
,
234 &slot
->results
->auth_avail
);
236 slot
->results
->auth_avail
= 0;
239 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CONNECTCODE
,
240 &slot
->results
->http_connectcode
);
243 /* Run callback if appropriate */
244 if (slot
->callback_func
!= NULL
)
245 slot
->callback_func(slot
->callback_data
);
248 static void xmulti_remove_handle(struct active_request_slot
*slot
)
250 #ifdef USE_CURL_MULTI
251 curl_multi_remove_handle(curlm
, slot
->curl
);
255 #ifdef USE_CURL_MULTI
256 static void process_curl_messages(void)
259 struct active_request_slot
*slot
;
260 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
262 while (curl_message
!= NULL
) {
263 if (curl_message
->msg
== CURLMSG_DONE
) {
264 int curl_result
= curl_message
->data
.result
;
265 slot
= active_queue_head
;
266 while (slot
!= NULL
&&
267 slot
->curl
!= curl_message
->easy_handle
)
270 xmulti_remove_handle(slot
);
271 slot
->curl_result
= curl_result
;
272 finish_active_slot(slot
);
274 fprintf(stderr
, "Received DONE message for unknown request!\n");
277 fprintf(stderr
, "Unknown CURL message received: %d\n",
278 (int)curl_message
->msg
);
280 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
285 static int http_options(const char *var
, const char *value
, void *cb
)
287 if (!strcmp("http.sslverify", var
)) {
288 curl_ssl_verify
= git_config_bool(var
, value
);
291 if (!strcmp("http.sslcipherlist", var
))
292 return git_config_string(&ssl_cipherlist
, var
, value
);
293 if (!strcmp("http.sslversion", var
))
294 return git_config_string(&ssl_version
, var
, value
);
295 if (!strcmp("http.sslcert", var
))
296 return git_config_pathname(&ssl_cert
, var
, value
);
297 #if LIBCURL_VERSION_NUM >= 0x070903
298 if (!strcmp("http.sslkey", var
))
299 return git_config_pathname(&ssl_key
, var
, value
);
301 #if LIBCURL_VERSION_NUM >= 0x070908
302 if (!strcmp("http.sslcapath", var
))
303 return git_config_pathname(&ssl_capath
, var
, value
);
305 if (!strcmp("http.sslcainfo", var
))
306 return git_config_pathname(&ssl_cainfo
, var
, value
);
307 if (!strcmp("http.sslcertpasswordprotected", var
)) {
308 ssl_cert_password_required
= git_config_bool(var
, value
);
311 if (!strcmp("http.ssltry", var
)) {
312 curl_ssl_try
= git_config_bool(var
, value
);
315 if (!strcmp("http.sslbackend", var
)) {
316 free(http_ssl_backend
);
317 http_ssl_backend
= xstrdup_or_null(value
);
321 if (!strcmp("http.schannelcheckrevoke", var
)) {
322 http_schannel_check_revoke
= git_config_bool(var
, value
);
326 if (!strcmp("http.schannelusesslcainfo", var
)) {
327 http_schannel_use_ssl_cainfo
= git_config_bool(var
, value
);
331 if (!strcmp("http.minsessions", var
)) {
332 min_curl_sessions
= git_config_int(var
, value
);
333 #ifndef USE_CURL_MULTI
334 if (min_curl_sessions
> 1)
335 min_curl_sessions
= 1;
339 #ifdef USE_CURL_MULTI
340 if (!strcmp("http.maxrequests", var
)) {
341 max_requests
= git_config_int(var
, value
);
345 if (!strcmp("http.lowspeedlimit", var
)) {
346 curl_low_speed_limit
= (long)git_config_int(var
, value
);
349 if (!strcmp("http.lowspeedtime", var
)) {
350 curl_low_speed_time
= (long)git_config_int(var
, value
);
354 if (!strcmp("http.noepsv", var
)) {
355 curl_ftp_no_epsv
= git_config_bool(var
, value
);
358 if (!strcmp("http.proxy", var
))
359 return git_config_string(&curl_http_proxy
, var
, value
);
361 if (!strcmp("http.proxyauthmethod", var
))
362 return git_config_string(&http_proxy_authmethod
, var
, value
);
364 if (!strcmp("http.cookiefile", var
))
365 return git_config_pathname(&curl_cookie_file
, var
, value
);
366 if (!strcmp("http.savecookies", var
)) {
367 curl_save_cookies
= git_config_bool(var
, value
);
371 if (!strcmp("http.postbuffer", var
)) {
372 http_post_buffer
= git_config_ssize_t(var
, value
);
373 if (http_post_buffer
< 0)
374 warning(_("negative value for http.postbuffer; defaulting to %d"), LARGE_PACKET_MAX
);
375 if (http_post_buffer
< LARGE_PACKET_MAX
)
376 http_post_buffer
= LARGE_PACKET_MAX
;
380 if (!strcmp("http.useragent", var
))
381 return git_config_string(&user_agent
, var
, value
);
383 if (!strcmp("http.emptyauth", var
)) {
384 if (value
&& !strcmp("auto", value
))
385 curl_empty_auth
= -1;
387 curl_empty_auth
= git_config_bool(var
, value
);
391 if (!strcmp("http.delegation", var
)) {
392 #ifdef CURLGSSAPI_DELEGATION_FLAG
393 return git_config_string(&curl_deleg
, var
, value
);
395 warning(_("Delegation control is not supported with cURL < 7.22.0"));
400 if (!strcmp("http.pinnedpubkey", var
)) {
401 #if LIBCURL_VERSION_NUM >= 0x072c00
402 return git_config_pathname(&ssl_pinnedkey
, var
, value
);
404 warning(_("Public key pinning not supported with cURL < 7.44.0"));
409 if (!strcmp("http.extraheader", var
)) {
411 return config_error_nonbool(var
);
412 } else if (!*value
) {
413 curl_slist_free_all(extra_http_headers
);
414 extra_http_headers
= NULL
;
417 curl_slist_append(extra_http_headers
, value
);
422 if (!strcmp("http.followredirects", var
)) {
423 if (value
&& !strcmp(value
, "initial"))
424 http_follow_config
= HTTP_FOLLOW_INITIAL
;
425 else if (git_config_bool(var
, value
))
426 http_follow_config
= HTTP_FOLLOW_ALWAYS
;
428 http_follow_config
= HTTP_FOLLOW_NONE
;
432 /* Fall back on the default ones */
433 return git_default_config(var
, value
, cb
);
436 static int curl_empty_auth_enabled(void)
438 if (curl_empty_auth
>= 0)
439 return curl_empty_auth
;
441 #ifndef LIBCURL_CAN_HANDLE_AUTH_ANY
443 * Our libcurl is too old to do AUTH_ANY in the first place;
444 * just default to turning the feature off.
448 * In the automatic case, kick in the empty-auth
449 * hack as long as we would potentially try some
450 * method more exotic than "Basic" or "Digest".
452 * But only do this when this is our second or
453 * subsequent request, as by then we know what
454 * methods are available.
456 if (http_auth_methods_restricted
&&
457 (http_auth_methods
& ~empty_auth_useless
))
463 static void init_curl_http_auth(CURL
*result
)
465 if (!http_auth
.username
|| !*http_auth
.username
) {
466 if (curl_empty_auth_enabled())
467 curl_easy_setopt(result
, CURLOPT_USERPWD
, ":");
471 credential_fill(&http_auth
);
473 #if LIBCURL_VERSION_NUM >= 0x071301
474 curl_easy_setopt(result
, CURLOPT_USERNAME
, http_auth
.username
);
475 curl_easy_setopt(result
, CURLOPT_PASSWORD
, http_auth
.password
);
478 static struct strbuf up
= STRBUF_INIT
;
480 * Note that we assume we only ever have a single set of
481 * credentials in a given program run, so we do not have
482 * to worry about updating this buffer, only setting its
486 strbuf_addf(&up
, "%s:%s",
487 http_auth
.username
, http_auth
.password
);
488 curl_easy_setopt(result
, CURLOPT_USERPWD
, up
.buf
);
493 /* *var must be free-able */
494 static void var_override(const char **var
, char *value
)
498 *var
= xstrdup(value
);
502 static void set_proxyauth_name_password(CURL
*result
)
504 #if LIBCURL_VERSION_NUM >= 0x071301
505 curl_easy_setopt(result
, CURLOPT_PROXYUSERNAME
,
506 proxy_auth
.username
);
507 curl_easy_setopt(result
, CURLOPT_PROXYPASSWORD
,
508 proxy_auth
.password
);
510 struct strbuf s
= STRBUF_INIT
;
512 strbuf_addstr_urlencode(&s
, proxy_auth
.username
, 1);
513 strbuf_addch(&s
, ':');
514 strbuf_addstr_urlencode(&s
, proxy_auth
.password
, 1);
515 curl_proxyuserpwd
= strbuf_detach(&s
, NULL
);
516 curl_easy_setopt(result
, CURLOPT_PROXYUSERPWD
, curl_proxyuserpwd
);
520 static void init_curl_proxy_auth(CURL
*result
)
522 if (proxy_auth
.username
) {
523 if (!proxy_auth
.password
)
524 credential_fill(&proxy_auth
);
525 set_proxyauth_name_password(result
);
528 var_override(&http_proxy_authmethod
, getenv("GIT_HTTP_PROXY_AUTHMETHOD"));
530 #if LIBCURL_VERSION_NUM >= 0x070a07 /* CURLOPT_PROXYAUTH and CURLAUTH_ANY */
531 if (http_proxy_authmethod
) {
533 for (i
= 0; i
< ARRAY_SIZE(proxy_authmethods
); i
++) {
534 if (!strcmp(http_proxy_authmethod
, proxy_authmethods
[i
].name
)) {
535 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
,
536 proxy_authmethods
[i
].curlauth_param
);
540 if (i
== ARRAY_SIZE(proxy_authmethods
)) {
541 warning("unsupported proxy authentication method %s: using anyauth",
542 http_proxy_authmethod
);
543 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
547 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
551 static int has_cert_password(void)
553 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
555 if (!cert_auth
.password
) {
556 cert_auth
.protocol
= xstrdup("cert");
557 cert_auth
.username
= xstrdup("");
558 cert_auth
.path
= xstrdup(ssl_cert
);
559 credential_fill(&cert_auth
);
564 #if LIBCURL_VERSION_NUM >= 0x071900
565 static void set_curl_keepalive(CURL
*c
)
567 curl_easy_setopt(c
, CURLOPT_TCP_KEEPALIVE
, 1);
570 #elif LIBCURL_VERSION_NUM >= 0x071000
571 static int sockopt_callback(void *client
, curl_socket_t fd
, curlsocktype type
)
575 socklen_t len
= (socklen_t
)sizeof(ka
);
577 if (type
!= CURLSOCKTYPE_IPCXN
)
580 rc
= setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&ka
, len
);
582 warning_errno("unable to set SO_KEEPALIVE on socket");
584 return 0; /* CURL_SOCKOPT_OK only exists since curl 7.21.5 */
587 static void set_curl_keepalive(CURL
*c
)
589 curl_easy_setopt(c
, CURLOPT_SOCKOPTFUNCTION
, sockopt_callback
);
593 static void set_curl_keepalive(CURL
*c
)
595 /* not supported on older curl versions */
599 static void redact_sensitive_header(struct strbuf
*header
)
601 const char *sensitive_header
;
603 if (skip_prefix(header
->buf
, "Authorization:", &sensitive_header
) ||
604 skip_prefix(header
->buf
, "Proxy-Authorization:", &sensitive_header
)) {
605 /* The first token is the type, which is OK to log */
606 while (isspace(*sensitive_header
))
608 while (*sensitive_header
&& !isspace(*sensitive_header
))
610 /* Everything else is opaque and possibly sensitive */
611 strbuf_setlen(header
, sensitive_header
- header
->buf
);
612 strbuf_addstr(header
, " <redacted>");
613 } else if (cookies_to_redact
.nr
&&
614 skip_prefix(header
->buf
, "Cookie:", &sensitive_header
)) {
615 struct strbuf redacted_header
= STRBUF_INIT
;
618 while (isspace(*sensitive_header
))
622 * The contents of header starting from sensitive_header will
623 * subsequently be overridden, so it is fine to mutate this
624 * string (hence the assignment to "char *").
626 cookie
= (char *) sensitive_header
;
630 char *semicolon
= strstr(cookie
, "; ");
633 equals
= strchrnul(cookie
, '=');
635 /* invalid cookie, just append and continue */
636 strbuf_addstr(&redacted_header
, cookie
);
639 *equals
= 0; /* temporarily set to NUL for lookup */
640 if (string_list_lookup(&cookies_to_redact
, cookie
)) {
641 strbuf_addstr(&redacted_header
, cookie
);
642 strbuf_addstr(&redacted_header
, "=<redacted>");
645 strbuf_addstr(&redacted_header
, cookie
);
649 * There are more cookies. (Or, for some
650 * reason, the input string ends in "; ".)
652 strbuf_addstr(&redacted_header
, "; ");
653 cookie
= semicolon
+ strlen("; ");
659 strbuf_setlen(header
, sensitive_header
- header
->buf
);
660 strbuf_addbuf(header
, &redacted_header
);
664 static void curl_dump_header(const char *text
, unsigned char *ptr
, size_t size
, int hide_sensitive_header
)
666 struct strbuf out
= STRBUF_INIT
;
667 struct strbuf
**headers
, **header
;
669 strbuf_addf(&out
, "%s, %10.10ld bytes (0x%8.8lx)\n",
670 text
, (long)size
, (long)size
);
671 trace_strbuf(&trace_curl
, &out
);
673 strbuf_add(&out
, ptr
, size
);
674 headers
= strbuf_split_max(&out
, '\n', 0);
676 for (header
= headers
; *header
; header
++) {
677 if (hide_sensitive_header
)
678 redact_sensitive_header(*header
);
679 strbuf_insert((*header
), 0, text
, strlen(text
));
680 strbuf_insert((*header
), strlen(text
), ": ", 2);
681 strbuf_rtrim((*header
));
682 strbuf_addch((*header
), '\n');
683 trace_strbuf(&trace_curl
, (*header
));
685 strbuf_list_free(headers
);
686 strbuf_release(&out
);
689 static void curl_dump_data(const char *text
, unsigned char *ptr
, size_t size
)
692 struct strbuf out
= STRBUF_INIT
;
693 unsigned int width
= 60;
695 strbuf_addf(&out
, "%s, %10.10ld bytes (0x%8.8lx)\n",
696 text
, (long)size
, (long)size
);
697 trace_strbuf(&trace_curl
, &out
);
699 for (i
= 0; i
< size
; i
+= width
) {
703 strbuf_addf(&out
, "%s: ", text
);
704 for (w
= 0; (w
< width
) && (i
+ w
< size
); w
++) {
705 unsigned char ch
= ptr
[i
+ w
];
708 (ch
>= 0x20) && (ch
< 0x80)
711 strbuf_addch(&out
, '\n');
712 trace_strbuf(&trace_curl
, &out
);
714 strbuf_release(&out
);
717 static int curl_trace(CURL
*handle
, curl_infotype type
, char *data
, size_t size
, void *userp
)
720 enum { NO_FILTER
= 0, DO_FILTER
= 1 };
724 trace_printf_key(&trace_curl
, "== Info: %s", data
);
726 case CURLINFO_HEADER_OUT
:
727 text
= "=> Send header";
728 curl_dump_header(text
, (unsigned char *)data
, size
, DO_FILTER
);
730 case CURLINFO_DATA_OUT
:
731 if (trace_curl_data
) {
732 text
= "=> Send data";
733 curl_dump_data(text
, (unsigned char *)data
, size
);
736 case CURLINFO_SSL_DATA_OUT
:
737 if (trace_curl_data
) {
738 text
= "=> Send SSL data";
739 curl_dump_data(text
, (unsigned char *)data
, size
);
742 case CURLINFO_HEADER_IN
:
743 text
= "<= Recv header";
744 curl_dump_header(text
, (unsigned char *)data
, size
, NO_FILTER
);
746 case CURLINFO_DATA_IN
:
747 if (trace_curl_data
) {
748 text
= "<= Recv data";
749 curl_dump_data(text
, (unsigned char *)data
, size
);
752 case CURLINFO_SSL_DATA_IN
:
753 if (trace_curl_data
) {
754 text
= "<= Recv SSL data";
755 curl_dump_data(text
, (unsigned char *)data
, size
);
759 default: /* we ignore unknown types by default */
765 void setup_curl_trace(CURL
*handle
)
767 if (!trace_want(&trace_curl
))
769 curl_easy_setopt(handle
, CURLOPT_VERBOSE
, 1L);
770 curl_easy_setopt(handle
, CURLOPT_DEBUGFUNCTION
, curl_trace
);
771 curl_easy_setopt(handle
, CURLOPT_DEBUGDATA
, NULL
);
774 #ifdef CURLPROTO_HTTP
775 static long get_curl_allowed_protocols(int from_user
)
777 long allowed_protocols
= 0;
779 if (is_transport_allowed("http", from_user
))
780 allowed_protocols
|= CURLPROTO_HTTP
;
781 if (is_transport_allowed("https", from_user
))
782 allowed_protocols
|= CURLPROTO_HTTPS
;
783 if (is_transport_allowed("ftp", from_user
))
784 allowed_protocols
|= CURLPROTO_FTP
;
785 if (is_transport_allowed("ftps", from_user
))
786 allowed_protocols
|= CURLPROTO_FTPS
;
788 return allowed_protocols
;
792 static CURL
*get_curl_handle(void)
794 CURL
*result
= curl_easy_init();
797 die("curl_easy_init failed");
799 if (!curl_ssl_verify
) {
800 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
801 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
803 /* Verify authenticity of the peer's certificate */
804 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
805 /* The name in the cert must match whom we tried to connect */
806 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
809 #if LIBCURL_VERSION_NUM >= 0x070907
810 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
812 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
813 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
816 #ifdef CURLGSSAPI_DELEGATION_FLAG
819 for (i
= 0; i
< ARRAY_SIZE(curl_deleg_levels
); i
++) {
820 if (!strcmp(curl_deleg
, curl_deleg_levels
[i
].name
)) {
821 curl_easy_setopt(result
, CURLOPT_GSSAPI_DELEGATION
,
822 curl_deleg_levels
[i
].curl_deleg_param
);
826 if (i
== ARRAY_SIZE(curl_deleg_levels
))
827 warning("Unknown delegation method '%s': using default",
832 if (http_ssl_backend
&& !strcmp("schannel", http_ssl_backend
) &&
833 !http_schannel_check_revoke
) {
834 #if LIBCURL_VERSION_NUM >= 0x072c00
835 curl_easy_setopt(result
, CURLOPT_SSL_OPTIONS
, CURLSSLOPT_NO_REVOKE
);
837 warning("CURLSSLOPT_NO_REVOKE not applied to curl SSL options because\n"
838 "your curl version is too old (< 7.44.0)");
842 if (http_proactive_auth
)
843 init_curl_http_auth(result
);
845 if (getenv("GIT_SSL_VERSION"))
846 ssl_version
= getenv("GIT_SSL_VERSION");
847 if (ssl_version
&& *ssl_version
) {
849 for (i
= 0; i
< ARRAY_SIZE(sslversions
); i
++) {
850 if (!strcmp(ssl_version
, sslversions
[i
].name
)) {
851 curl_easy_setopt(result
, CURLOPT_SSLVERSION
,
852 sslversions
[i
].ssl_version
);
856 if (i
== ARRAY_SIZE(sslversions
))
857 warning("unsupported ssl version %s: using default",
861 if (getenv("GIT_SSL_CIPHER_LIST"))
862 ssl_cipherlist
= getenv("GIT_SSL_CIPHER_LIST");
863 if (ssl_cipherlist
!= NULL
&& *ssl_cipherlist
)
864 curl_easy_setopt(result
, CURLOPT_SSL_CIPHER_LIST
,
867 if (ssl_cert
!= NULL
)
868 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
869 if (has_cert_password())
870 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, cert_auth
.password
);
871 #if LIBCURL_VERSION_NUM >= 0x070903
873 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
875 #if LIBCURL_VERSION_NUM >= 0x070908
876 if (ssl_capath
!= NULL
)
877 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
879 #if LIBCURL_VERSION_NUM >= 0x072c00
880 if (ssl_pinnedkey
!= NULL
)
881 curl_easy_setopt(result
, CURLOPT_PINNEDPUBLICKEY
, ssl_pinnedkey
);
883 if (http_ssl_backend
&& !strcmp("schannel", http_ssl_backend
) &&
884 !http_schannel_use_ssl_cainfo
) {
885 curl_easy_setopt(result
, CURLOPT_CAINFO
, NULL
);
886 #if LIBCURL_VERSION_NUM >= 0x073400
887 curl_easy_setopt(result
, CURLOPT_PROXY_CAINFO
, NULL
);
889 } else if (ssl_cainfo
!= NULL
)
890 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
892 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
893 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
894 curl_low_speed_limit
);
895 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
896 curl_low_speed_time
);
899 curl_easy_setopt(result
, CURLOPT_MAXREDIRS
, 20);
900 #if LIBCURL_VERSION_NUM >= 0x071301
901 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
902 #elif LIBCURL_VERSION_NUM >= 0x071101
903 curl_easy_setopt(result
, CURLOPT_POST301
, 1);
905 #ifdef CURLPROTO_HTTP
906 curl_easy_setopt(result
, CURLOPT_REDIR_PROTOCOLS
,
907 get_curl_allowed_protocols(0));
908 curl_easy_setopt(result
, CURLOPT_PROTOCOLS
,
909 get_curl_allowed_protocols(-1));
911 warning("protocol restrictions not applied to curl redirects because\n"
912 "your curl version is too old (>= 7.19.4)");
914 if (getenv("GIT_CURL_VERBOSE"))
915 curl_easy_setopt(result
, CURLOPT_VERBOSE
, 1L);
916 setup_curl_trace(result
);
917 if (getenv("GIT_TRACE_CURL_NO_DATA"))
919 if (getenv("GIT_REDACT_COOKIES")) {
920 string_list_split(&cookies_to_redact
,
921 getenv("GIT_REDACT_COOKIES"), ',', -1);
922 string_list_sort(&cookies_to_redact
);
925 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
926 user_agent
? user_agent
: git_user_agent());
928 if (curl_ftp_no_epsv
)
929 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
931 #ifdef CURLOPT_USE_SSL
933 curl_easy_setopt(result
, CURLOPT_USE_SSL
, CURLUSESSL_TRY
);
937 * CURL also examines these variables as a fallback; but we need to query
938 * them here in order to decide whether to prompt for missing password (cf.
939 * init_curl_proxy_auth()).
941 * Unlike many other common environment variables, these are historically
942 * lowercase only. It appears that CURL did not know this and implemented
943 * only uppercase variants, which was later corrected to take both - with
944 * the exception of http_proxy, which is lowercase only also in CURL. As
945 * the lowercase versions are the historical quasi-standard, they take
946 * precedence here, as in CURL.
948 if (!curl_http_proxy
) {
949 if (http_auth
.protocol
&& !strcmp(http_auth
.protocol
, "https")) {
950 var_override(&curl_http_proxy
, getenv("HTTPS_PROXY"));
951 var_override(&curl_http_proxy
, getenv("https_proxy"));
953 var_override(&curl_http_proxy
, getenv("http_proxy"));
955 if (!curl_http_proxy
) {
956 var_override(&curl_http_proxy
, getenv("ALL_PROXY"));
957 var_override(&curl_http_proxy
, getenv("all_proxy"));
961 if (curl_http_proxy
&& curl_http_proxy
[0] == '\0') {
963 * Handle case with the empty http.proxy value here to keep
965 * NB: empty option disables proxying at all.
967 curl_easy_setopt(result
, CURLOPT_PROXY
, "");
968 } else if (curl_http_proxy
) {
969 #if LIBCURL_VERSION_NUM >= 0x071800
970 if (starts_with(curl_http_proxy
, "socks5h"))
971 curl_easy_setopt(result
,
972 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS5_HOSTNAME
);
973 else if (starts_with(curl_http_proxy
, "socks5"))
974 curl_easy_setopt(result
,
975 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS5
);
976 else if (starts_with(curl_http_proxy
, "socks4a"))
977 curl_easy_setopt(result
,
978 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS4A
);
979 else if (starts_with(curl_http_proxy
, "socks"))
980 curl_easy_setopt(result
,
981 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS4
);
983 #if LIBCURL_VERSION_NUM >= 0x073400
984 else if (starts_with(curl_http_proxy
, "https"))
985 curl_easy_setopt(result
,
986 CURLOPT_PROXYTYPE
, CURLPROXY_HTTPS
);
988 if (strstr(curl_http_proxy
, "://"))
989 credential_from_url(&proxy_auth
, curl_http_proxy
);
991 struct strbuf url
= STRBUF_INIT
;
992 strbuf_addf(&url
, "http://%s", curl_http_proxy
);
993 credential_from_url(&proxy_auth
, url
.buf
);
994 strbuf_release(&url
);
997 if (!proxy_auth
.host
)
998 die("Invalid proxy URL '%s'", curl_http_proxy
);
1000 curl_easy_setopt(result
, CURLOPT_PROXY
, proxy_auth
.host
);
1001 #if LIBCURL_VERSION_NUM >= 0x071304
1002 var_override(&curl_no_proxy
, getenv("NO_PROXY"));
1003 var_override(&curl_no_proxy
, getenv("no_proxy"));
1004 curl_easy_setopt(result
, CURLOPT_NOPROXY
, curl_no_proxy
);
1007 init_curl_proxy_auth(result
);
1009 set_curl_keepalive(result
);
1014 static void set_from_env(const char **var
, const char *envname
)
1016 const char *val
= getenv(envname
);
1021 void http_init(struct remote
*remote
, const char *url
, int proactive_auth
)
1023 char *low_speed_limit
;
1024 char *low_speed_time
;
1025 char *normalized_url
;
1026 struct urlmatch_config config
= { STRING_LIST_INIT_DUP
};
1028 config
.section
= "http";
1030 config
.collect_fn
= http_options
;
1031 config
.cascade_fn
= git_default_config
;
1034 http_is_verbose
= 0;
1035 normalized_url
= url_normalize(url
, &config
.url
);
1037 git_config(urlmatch_config_entry
, &config
);
1038 free(normalized_url
);
1040 #if LIBCURL_VERSION_NUM >= 0x073800
1041 if (http_ssl_backend
) {
1042 const curl_ssl_backend
**backends
;
1043 struct strbuf buf
= STRBUF_INIT
;
1046 switch (curl_global_sslset(-1, http_ssl_backend
, &backends
)) {
1047 case CURLSSLSET_UNKNOWN_BACKEND
:
1048 strbuf_addf(&buf
, _("Unsupported SSL backend '%s'. "
1049 "Supported SSL backends:"),
1051 for (i
= 0; backends
[i
]; i
++)
1052 strbuf_addf(&buf
, "\n\t%s", backends
[i
]->name
);
1054 case CURLSSLSET_NO_BACKENDS
:
1055 die(_("Could not set SSL backend to '%s': "
1056 "cURL was built without SSL backends"),
1058 case CURLSSLSET_TOO_LATE
:
1059 die(_("Could not set SSL backend to '%s': already set"),
1067 if (curl_global_init(CURL_GLOBAL_ALL
) != CURLE_OK
)
1068 die("curl_global_init failed");
1070 http_proactive_auth
= proactive_auth
;
1072 if (remote
&& remote
->http_proxy
)
1073 curl_http_proxy
= xstrdup(remote
->http_proxy
);
1076 var_override(&http_proxy_authmethod
, remote
->http_proxy_authmethod
);
1078 pragma_header
= curl_slist_append(http_copy_default_headers(),
1079 "Pragma: no-cache");
1080 no_pragma_header
= curl_slist_append(http_copy_default_headers(),
1083 #ifdef USE_CURL_MULTI
1085 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
1086 if (http_max_requests
!= NULL
)
1087 max_requests
= atoi(http_max_requests
);
1090 curlm
= curl_multi_init();
1092 die("curl_multi_init failed");
1095 if (getenv("GIT_SSL_NO_VERIFY"))
1096 curl_ssl_verify
= 0;
1098 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
1099 #if LIBCURL_VERSION_NUM >= 0x070903
1100 set_from_env(&ssl_key
, "GIT_SSL_KEY");
1102 #if LIBCURL_VERSION_NUM >= 0x070908
1103 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
1105 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
1107 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
1109 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
1110 if (low_speed_limit
!= NULL
)
1111 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
1112 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
1113 if (low_speed_time
!= NULL
)
1114 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
1116 if (curl_ssl_verify
== -1)
1117 curl_ssl_verify
= 1;
1119 curl_session_count
= 0;
1120 #ifdef USE_CURL_MULTI
1121 if (max_requests
< 1)
1122 max_requests
= DEFAULT_MAX_REQUESTS
;
1125 if (getenv("GIT_CURL_FTP_NO_EPSV"))
1126 curl_ftp_no_epsv
= 1;
1129 credential_from_url(&http_auth
, url
);
1130 if (!ssl_cert_password_required
&&
1131 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
1132 starts_with(url
, "https://"))
1133 ssl_cert_password_required
= 1;
1136 #ifndef NO_CURL_EASY_DUPHANDLE
1137 curl_default
= get_curl_handle();
1141 void http_cleanup(void)
1143 struct active_request_slot
*slot
= active_queue_head
;
1145 while (slot
!= NULL
) {
1146 struct active_request_slot
*next
= slot
->next
;
1147 if (slot
->curl
!= NULL
) {
1148 xmulti_remove_handle(slot
);
1149 curl_easy_cleanup(slot
->curl
);
1154 active_queue_head
= NULL
;
1156 #ifndef NO_CURL_EASY_DUPHANDLE
1157 curl_easy_cleanup(curl_default
);
1160 #ifdef USE_CURL_MULTI
1161 curl_multi_cleanup(curlm
);
1163 curl_global_cleanup();
1165 curl_slist_free_all(extra_http_headers
);
1166 extra_http_headers
= NULL
;
1168 curl_slist_free_all(pragma_header
);
1169 pragma_header
= NULL
;
1171 curl_slist_free_all(no_pragma_header
);
1172 no_pragma_header
= NULL
;
1174 if (curl_http_proxy
) {
1175 free((void *)curl_http_proxy
);
1176 curl_http_proxy
= NULL
;
1179 if (proxy_auth
.password
) {
1180 memset(proxy_auth
.password
, 0, strlen(proxy_auth
.password
));
1181 FREE_AND_NULL(proxy_auth
.password
);
1184 free((void *)curl_proxyuserpwd
);
1185 curl_proxyuserpwd
= NULL
;
1187 free((void *)http_proxy_authmethod
);
1188 http_proxy_authmethod
= NULL
;
1190 if (cert_auth
.password
!= NULL
) {
1191 memset(cert_auth
.password
, 0, strlen(cert_auth
.password
));
1192 FREE_AND_NULL(cert_auth
.password
);
1194 ssl_cert_password_required
= 0;
1196 FREE_AND_NULL(cached_accept_language
);
1199 struct active_request_slot
*get_active_slot(void)
1201 struct active_request_slot
*slot
= active_queue_head
;
1202 struct active_request_slot
*newslot
;
1204 #ifdef USE_CURL_MULTI
1207 /* Wait for a slot to open up if the queue is full */
1208 while (active_requests
>= max_requests
) {
1209 curl_multi_perform(curlm
, &num_transfers
);
1210 if (num_transfers
< active_requests
)
1211 process_curl_messages();
1215 while (slot
!= NULL
&& slot
->in_use
)
1219 newslot
= xmalloc(sizeof(*newslot
));
1220 newslot
->curl
= NULL
;
1221 newslot
->in_use
= 0;
1222 newslot
->next
= NULL
;
1224 slot
= active_queue_head
;
1226 active_queue_head
= newslot
;
1228 while (slot
->next
!= NULL
)
1230 slot
->next
= newslot
;
1235 if (slot
->curl
== NULL
) {
1236 #ifdef NO_CURL_EASY_DUPHANDLE
1237 slot
->curl
= get_curl_handle();
1239 slot
->curl
= curl_easy_duphandle(curl_default
);
1241 curl_session_count
++;
1246 slot
->results
= NULL
;
1247 slot
->finished
= NULL
;
1248 slot
->callback_data
= NULL
;
1249 slot
->callback_func
= NULL
;
1250 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEFILE
, curl_cookie_file
);
1251 if (curl_save_cookies
)
1252 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEJAR
, curl_cookie_file
);
1253 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
1254 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
1255 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
1256 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
1257 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
1258 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
1259 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
1260 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1261 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 1);
1262 curl_easy_setopt(slot
->curl
, CURLOPT_RANGE
, NULL
);
1265 * Default following to off unless "ALWAYS" is configured; this gives
1266 * callers a sane starting point, and they can tweak for individual
1267 * HTTP_FOLLOW_* cases themselves.
1269 if (http_follow_config
== HTTP_FOLLOW_ALWAYS
)
1270 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 1);
1272 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 0);
1274 #if LIBCURL_VERSION_NUM >= 0x070a08
1275 curl_easy_setopt(slot
->curl
, CURLOPT_IPRESOLVE
, git_curl_ipresolve
);
1277 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
1278 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPAUTH
, http_auth_methods
);
1280 if (http_auth
.password
|| curl_empty_auth_enabled())
1281 init_curl_http_auth(slot
->curl
);
1286 int start_active_slot(struct active_request_slot
*slot
)
1288 #ifdef USE_CURL_MULTI
1289 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
1292 if (curlm_result
!= CURLM_OK
&&
1293 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
1294 warning("curl_multi_add_handle failed: %s",
1295 curl_multi_strerror(curlm_result
));
1302 * We know there must be something to do, since we just added
1305 curl_multi_perform(curlm
, &num_transfers
);
1310 #ifdef USE_CURL_MULTI
1313 int (*fill
)(void *);
1314 struct fill_chain
*next
;
1317 static struct fill_chain
*fill_cfg
;
1319 void add_fill_function(void *data
, int (*fill
)(void *))
1321 struct fill_chain
*new_fill
= xmalloc(sizeof(*new_fill
));
1322 struct fill_chain
**linkp
= &fill_cfg
;
1323 new_fill
->data
= data
;
1324 new_fill
->fill
= fill
;
1325 new_fill
->next
= NULL
;
1327 linkp
= &(*linkp
)->next
;
1331 void fill_active_slots(void)
1333 struct active_request_slot
*slot
= active_queue_head
;
1335 while (active_requests
< max_requests
) {
1336 struct fill_chain
*fill
;
1337 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
1338 if (fill
->fill(fill
->data
))
1345 while (slot
!= NULL
) {
1346 if (!slot
->in_use
&& slot
->curl
!= NULL
1347 && curl_session_count
> min_curl_sessions
) {
1348 curl_easy_cleanup(slot
->curl
);
1350 curl_session_count
--;
1356 void step_active_slots(void)
1359 CURLMcode curlm_result
;
1362 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
1363 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
1364 if (num_transfers
< active_requests
) {
1365 process_curl_messages();
1366 fill_active_slots();
1371 void run_active_slot(struct active_request_slot
*slot
)
1373 #ifdef USE_CURL_MULTI
1378 struct timeval select_timeout
;
1381 slot
->finished
= &finished
;
1383 step_active_slots();
1386 #if LIBCURL_VERSION_NUM >= 0x070f04
1388 curl_multi_timeout(curlm
, &curl_timeout
);
1389 if (curl_timeout
== 0) {
1391 } else if (curl_timeout
== -1) {
1392 select_timeout
.tv_sec
= 0;
1393 select_timeout
.tv_usec
= 50000;
1395 select_timeout
.tv_sec
= curl_timeout
/ 1000;
1396 select_timeout
.tv_usec
= (curl_timeout
% 1000) * 1000;
1399 select_timeout
.tv_sec
= 0;
1400 select_timeout
.tv_usec
= 50000;
1407 curl_multi_fdset(curlm
, &readfds
, &writefds
, &excfds
, &max_fd
);
1410 * It can happen that curl_multi_timeout returns a pathologically
1411 * long timeout when curl_multi_fdset returns no file descriptors
1412 * to read. See commit message for more details.
1415 (select_timeout
.tv_sec
> 0 ||
1416 select_timeout
.tv_usec
> 50000)) {
1417 select_timeout
.tv_sec
= 0;
1418 select_timeout
.tv_usec
= 50000;
1421 select(max_fd
+1, &readfds
, &writefds
, &excfds
, &select_timeout
);
1425 while (slot
->in_use
) {
1426 slot
->curl_result
= curl_easy_perform(slot
->curl
);
1427 finish_active_slot(slot
);
1432 static void release_active_slot(struct active_request_slot
*slot
)
1434 closedown_active_slot(slot
);
1436 xmulti_remove_handle(slot
);
1437 if (curl_session_count
> min_curl_sessions
) {
1438 curl_easy_cleanup(slot
->curl
);
1440 curl_session_count
--;
1443 #ifdef USE_CURL_MULTI
1444 fill_active_slots();
1448 void finish_all_active_slots(void)
1450 struct active_request_slot
*slot
= active_queue_head
;
1452 while (slot
!= NULL
)
1454 run_active_slot(slot
);
1455 slot
= active_queue_head
;
1461 /* Helpers for modifying and creating URLs */
1462 static inline int needs_quote(int ch
)
1464 if (((ch
>= 'A') && (ch
<= 'Z'))
1465 || ((ch
>= 'a') && (ch
<= 'z'))
1466 || ((ch
>= '0') && (ch
<= '9'))
1474 static char *quote_ref_url(const char *base
, const char *ref
)
1476 struct strbuf buf
= STRBUF_INIT
;
1480 end_url_with_slash(&buf
, base
);
1482 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
1483 if (needs_quote(ch
))
1484 strbuf_addf(&buf
, "%%%02x", ch
);
1486 strbuf_addch(&buf
, *cp
);
1488 return strbuf_detach(&buf
, NULL
);
1491 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
1493 int only_two_digit_prefix
)
1495 end_url_with_slash(buf
, url
);
1497 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
1498 if (!only_two_digit_prefix
)
1499 strbuf_addstr(buf
, hex
+ 2);
1502 char *get_remote_object_url(const char *url
, const char *hex
,
1503 int only_two_digit_prefix
)
1505 struct strbuf buf
= STRBUF_INIT
;
1506 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
1507 return strbuf_detach(&buf
, NULL
);
1510 static int handle_curl_result(struct slot_results
*results
)
1513 * If we see a failing http code with CURLE_OK, we have turned off
1514 * FAILONERROR (to keep the server's custom error response), and should
1515 * translate the code into failure here.
1517 * Likewise, if we see a redirect (30x code), that means we turned off
1518 * redirect-following, and we should treat the result as an error.
1520 if (results
->curl_result
== CURLE_OK
&&
1521 results
->http_code
>= 300) {
1522 results
->curl_result
= CURLE_HTTP_RETURNED_ERROR
;
1524 * Normally curl will already have put the "reason phrase"
1525 * from the server into curl_errorstr; unfortunately without
1526 * FAILONERROR it is lost, so we can give only the numeric
1529 xsnprintf(curl_errorstr
, sizeof(curl_errorstr
),
1530 "The requested URL returned error: %ld",
1531 results
->http_code
);
1534 if (results
->curl_result
== CURLE_OK
) {
1535 credential_approve(&http_auth
);
1536 if (proxy_auth
.password
)
1537 credential_approve(&proxy_auth
);
1539 } else if (missing_target(results
))
1540 return HTTP_MISSING_TARGET
;
1541 else if (results
->http_code
== 401) {
1542 if (http_auth
.username
&& http_auth
.password
) {
1543 credential_reject(&http_auth
);
1546 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
1547 http_auth_methods
&= ~CURLAUTH_GSSNEGOTIATE
;
1548 if (results
->auth_avail
) {
1549 http_auth_methods
&= results
->auth_avail
;
1550 http_auth_methods_restricted
= 1;
1556 if (results
->http_connectcode
== 407)
1557 credential_reject(&proxy_auth
);
1558 #if LIBCURL_VERSION_NUM >= 0x070c00
1559 if (!curl_errorstr
[0])
1560 strlcpy(curl_errorstr
,
1561 curl_easy_strerror(results
->curl_result
),
1562 sizeof(curl_errorstr
));
1568 int run_one_slot(struct active_request_slot
*slot
,
1569 struct slot_results
*results
)
1571 slot
->results
= results
;
1572 if (!start_active_slot(slot
)) {
1573 xsnprintf(curl_errorstr
, sizeof(curl_errorstr
),
1574 "failed to start HTTP request");
1575 return HTTP_START_FAILED
;
1578 run_active_slot(slot
);
1579 return handle_curl_result(results
);
1582 struct curl_slist
*http_copy_default_headers(void)
1584 struct curl_slist
*headers
= NULL
, *h
;
1586 for (h
= extra_http_headers
; h
; h
= h
->next
)
1587 headers
= curl_slist_append(headers
, h
->data
);
1592 static CURLcode
curlinfo_strbuf(CURL
*curl
, CURLINFO info
, struct strbuf
*buf
)
1598 ret
= curl_easy_getinfo(curl
, info
, &ptr
);
1600 strbuf_addstr(buf
, ptr
);
1605 * Check for and extract a content-type parameter. "raw"
1606 * should be positioned at the start of the potential
1607 * parameter, with any whitespace already removed.
1609 * "name" is the name of the parameter. The value is appended
1612 static int extract_param(const char *raw
, const char *name
,
1615 size_t len
= strlen(name
);
1617 if (strncasecmp(raw
, name
, len
))
1625 while (*raw
&& !isspace(*raw
) && *raw
!= ';')
1626 strbuf_addch(out
, *raw
++);
1631 * Extract a normalized version of the content type, with any
1632 * spaces suppressed, all letters lowercased, and no trailing ";"
1635 * Note that we will silently remove even invalid whitespace. For
1636 * example, "text / plain" is specifically forbidden by RFC 2616,
1637 * but "text/plain" is the only reasonable output, and this keeps
1640 * If the "charset" argument is not NULL, store the value of any
1641 * charset parameter there.
1644 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
1645 * "text / plain" -> "text/plain"
1647 static void extract_content_type(struct strbuf
*raw
, struct strbuf
*type
,
1648 struct strbuf
*charset
)
1653 strbuf_grow(type
, raw
->len
);
1654 for (p
= raw
->buf
; *p
; p
++) {
1661 strbuf_addch(type
, tolower(*p
));
1667 strbuf_reset(charset
);
1669 while (isspace(*p
) || *p
== ';')
1671 if (!extract_param(p
, "charset", charset
))
1673 while (*p
&& !isspace(*p
))
1677 if (!charset
->len
&& starts_with(type
->buf
, "text/"))
1678 strbuf_addstr(charset
, "ISO-8859-1");
1681 static void write_accept_language(struct strbuf
*buf
)
1684 * MAX_DECIMAL_PLACES must not be larger than 3. If it is larger than
1685 * that, q-value will be smaller than 0.001, the minimum q-value the
1686 * HTTP specification allows. See
1687 * http://tools.ietf.org/html/rfc7231#section-5.3.1 for q-value.
1689 const int MAX_DECIMAL_PLACES
= 3;
1690 const int MAX_LANGUAGE_TAGS
= 1000;
1691 const int MAX_ACCEPT_LANGUAGE_HEADER_SIZE
= 4000;
1692 char **language_tags
= NULL
;
1694 const char *s
= get_preferred_languages();
1696 struct strbuf tag
= STRBUF_INIT
;
1698 /* Don't add Accept-Language header if no language is preferred. */
1703 * Split the colon-separated string of preferred languages into
1704 * language_tags array.
1707 /* collect language tag */
1708 for (; *s
&& (isalnum(*s
) || *s
== '_'); s
++)
1709 strbuf_addch(&tag
, *s
== '_' ? '-' : *s
);
1711 /* skip .codeset, @modifier and any other unnecessary parts */
1712 while (*s
&& *s
!= ':')
1717 REALLOC_ARRAY(language_tags
, num_langs
);
1718 language_tags
[num_langs
- 1] = strbuf_detach(&tag
, NULL
);
1719 if (num_langs
>= MAX_LANGUAGE_TAGS
- 1) /* -1 for '*' */
1724 /* write Accept-Language header into buf */
1726 int last_buf_len
= 0;
1732 REALLOC_ARRAY(language_tags
, num_langs
+ 1);
1733 language_tags
[num_langs
++] = "*"; /* it's OK; this won't be freed */
1735 /* compute decimal_places */
1736 for (max_q
= 1, decimal_places
= 0;
1737 max_q
< num_langs
&& decimal_places
<= MAX_DECIMAL_PLACES
;
1738 decimal_places
++, max_q
*= 10)
1741 xsnprintf(q_format
, sizeof(q_format
), ";q=0.%%0%dd", decimal_places
);
1743 strbuf_addstr(buf
, "Accept-Language: ");
1745 for (i
= 0; i
< num_langs
; i
++) {
1747 strbuf_addstr(buf
, ", ");
1749 strbuf_addstr(buf
, language_tags
[i
]);
1752 strbuf_addf(buf
, q_format
, max_q
- i
);
1754 if (buf
->len
> MAX_ACCEPT_LANGUAGE_HEADER_SIZE
) {
1755 strbuf_remove(buf
, last_buf_len
, buf
->len
- last_buf_len
);
1759 last_buf_len
= buf
->len
;
1763 /* free language tags -- last one is a static '*' */
1764 for (i
= 0; i
< num_langs
- 1; i
++)
1765 free(language_tags
[i
]);
1766 free(language_tags
);
1770 * Get an Accept-Language header which indicates user's preferred languages.
1774 * LANGUAGE=ko:en -> "Accept-Language: ko, en; q=0.9, *; q=0.1"
1775 * LANGUAGE=ko_KR.UTF-8:sr@latin -> "Accept-Language: ko-KR, sr; q=0.9, *; q=0.1"
1776 * LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *; q=0.1"
1777 * LANGUAGE= LANG=en_US.UTF-8 -> "Accept-Language: en-US, *; q=0.1"
1778 * LANGUAGE= LANG=C -> ""
1780 static const char *get_accept_language(void)
1782 if (!cached_accept_language
) {
1783 struct strbuf buf
= STRBUF_INIT
;
1784 write_accept_language(&buf
);
1786 cached_accept_language
= strbuf_detach(&buf
, NULL
);
1789 return cached_accept_language
;
1792 static void http_opt_request_remainder(CURL
*curl
, off_t pos
)
1795 xsnprintf(buf
, sizeof(buf
), "%"PRIuMAX
"-", (uintmax_t)pos
);
1796 curl_easy_setopt(curl
, CURLOPT_RANGE
, buf
);
1799 /* http_request() targets */
1800 #define HTTP_REQUEST_STRBUF 0
1801 #define HTTP_REQUEST_FILE 1
1803 static int http_request(const char *url
,
1804 void *result
, int target
,
1805 const struct http_get_options
*options
)
1807 struct active_request_slot
*slot
;
1808 struct slot_results results
;
1809 struct curl_slist
*headers
= http_copy_default_headers();
1810 struct strbuf buf
= STRBUF_INIT
;
1811 const char *accept_language
;
1814 slot
= get_active_slot();
1815 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1817 if (result
== NULL
) {
1818 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
1820 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
1821 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, result
);
1823 if (target
== HTTP_REQUEST_FILE
) {
1824 off_t posn
= ftello(result
);
1825 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1828 http_opt_request_remainder(slot
->curl
, posn
);
1830 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
1834 accept_language
= get_accept_language();
1836 if (accept_language
)
1837 headers
= curl_slist_append(headers
, accept_language
);
1839 strbuf_addstr(&buf
, "Pragma:");
1840 if (options
&& options
->no_cache
)
1841 strbuf_addstr(&buf
, " no-cache");
1842 if (options
&& options
->keep_error
)
1843 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
1844 if (options
&& options
->initial_request
&&
1845 http_follow_config
== HTTP_FOLLOW_INITIAL
)
1846 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 1);
1848 headers
= curl_slist_append(headers
, buf
.buf
);
1850 /* Add additional headers here */
1851 if (options
&& options
->extra_headers
) {
1852 const struct string_list_item
*item
;
1853 for_each_string_list_item(item
, options
->extra_headers
) {
1854 headers
= curl_slist_append(headers
, item
->string
);
1858 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1859 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
1860 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
1862 ret
= run_one_slot(slot
, &results
);
1864 if (options
&& options
->content_type
) {
1865 struct strbuf raw
= STRBUF_INIT
;
1866 curlinfo_strbuf(slot
->curl
, CURLINFO_CONTENT_TYPE
, &raw
);
1867 extract_content_type(&raw
, options
->content_type
,
1869 strbuf_release(&raw
);
1872 if (options
&& options
->effective_url
)
1873 curlinfo_strbuf(slot
->curl
, CURLINFO_EFFECTIVE_URL
,
1874 options
->effective_url
);
1876 curl_slist_free_all(headers
);
1877 strbuf_release(&buf
);
1883 * Update the "base" url to a more appropriate value, as deduced by
1884 * redirects seen when requesting a URL starting with "url".
1886 * The "asked" parameter is a URL that we asked curl to access, and must begin
1889 * The "got" parameter is the URL that curl reported to us as where we ended
1892 * Returns 1 if we updated the base url, 0 otherwise.
1894 * Our basic strategy is to compare "base" and "asked" to find the bits
1895 * specific to our request. We then strip those bits off of "got" to yield the
1896 * new base. So for example, if our base is "http://example.com/foo.git",
1897 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1898 * with "https://other.example.com/foo.git/info/refs". We would want the
1899 * new URL to become "https://other.example.com/foo.git".
1901 * Note that this assumes a sane redirect scheme. It's entirely possible
1902 * in the example above to end up at a URL that does not even end in
1903 * "info/refs". In such a case we die. There's not much we can do, such a
1904 * scheme is unlikely to represent a real git repository, and failing to
1905 * rewrite the base opens options for malicious redirects to do funny things.
1907 static int update_url_from_redirect(struct strbuf
*base
,
1909 const struct strbuf
*got
)
1914 if (!strcmp(asked
, got
->buf
))
1917 if (!skip_prefix(asked
, base
->buf
, &tail
))
1918 BUG("update_url_from_redirect: %s is not a superset of %s",
1922 if (!strip_suffix_mem(got
->buf
, &new_len
, tail
))
1923 die(_("unable to update url base from redirection:\n"
1929 strbuf_add(base
, got
->buf
, new_len
);
1934 static int http_request_reauth(const char *url
,
1935 void *result
, int target
,
1936 struct http_get_options
*options
)
1938 int ret
= http_request(url
, result
, target
, options
);
1940 if (ret
!= HTTP_OK
&& ret
!= HTTP_REAUTH
)
1943 if (options
&& options
->effective_url
&& options
->base_url
) {
1944 if (update_url_from_redirect(options
->base_url
,
1945 url
, options
->effective_url
)) {
1946 credential_from_url(&http_auth
, options
->base_url
->buf
);
1947 url
= options
->effective_url
->buf
;
1951 if (ret
!= HTTP_REAUTH
)
1955 * If we are using KEEP_ERROR, the previous request may have
1956 * put cruft into our output stream; we should clear it out before
1957 * making our next request. We only know how to do this for
1958 * the strbuf case, but that is enough to satisfy current callers.
1960 if (options
&& options
->keep_error
) {
1962 case HTTP_REQUEST_STRBUF
:
1963 strbuf_reset(result
);
1966 BUG("HTTP_KEEP_ERROR is only supported with strbufs");
1970 credential_fill(&http_auth
);
1972 return http_request(url
, result
, target
, options
);
1975 int http_get_strbuf(const char *url
,
1976 struct strbuf
*result
,
1977 struct http_get_options
*options
)
1979 return http_request_reauth(url
, result
, HTTP_REQUEST_STRBUF
, options
);
1983 * Downloads a URL and stores the result in the given file.
1985 * If a previous interrupted download is detected (i.e. a previous temporary
1986 * file is still around) the download is resumed.
1988 static int http_get_file(const char *url
, const char *filename
,
1989 struct http_get_options
*options
)
1992 struct strbuf tmpfile
= STRBUF_INIT
;
1995 strbuf_addf(&tmpfile
, "%s.temp", filename
);
1996 result
= fopen(tmpfile
.buf
, "a");
1998 error("Unable to open local file %s", tmpfile
.buf
);
2003 ret
= http_request_reauth(url
, result
, HTTP_REQUEST_FILE
, options
);
2006 if (ret
== HTTP_OK
&& finalize_object_file(tmpfile
.buf
, filename
))
2009 strbuf_release(&tmpfile
);
2013 int http_fetch_ref(const char *base
, struct ref
*ref
)
2015 struct http_get_options options
= {0};
2017 struct strbuf buffer
= STRBUF_INIT
;
2020 options
.no_cache
= 1;
2022 url
= quote_ref_url(base
, ref
->name
);
2023 if (http_get_strbuf(url
, &buffer
, &options
) == HTTP_OK
) {
2024 strbuf_rtrim(&buffer
);
2025 if (buffer
.len
== 40)
2026 ret
= get_oid_hex(buffer
.buf
, &ref
->old_oid
);
2027 else if (starts_with(buffer
.buf
, "ref: ")) {
2028 ref
->symref
= xstrdup(buffer
.buf
+ 5);
2033 strbuf_release(&buffer
);
2038 /* Helpers for fetching packs */
2039 static char *fetch_pack_index(unsigned char *sha1
, const char *base_url
)
2042 struct strbuf buf
= STRBUF_INIT
;
2044 if (http_is_verbose
)
2045 fprintf(stderr
, "Getting index for pack %s\n", sha1_to_hex(sha1
));
2047 end_url_with_slash(&buf
, base_url
);
2048 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", sha1_to_hex(sha1
));
2049 url
= strbuf_detach(&buf
, NULL
);
2051 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(sha1
));
2052 tmp
= strbuf_detach(&buf
, NULL
);
2054 if (http_get_file(url
, tmp
, NULL
) != HTTP_OK
) {
2055 error("Unable to get pack index %s", url
);
2063 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
2064 unsigned char *sha1
, const char *base_url
)
2066 struct packed_git
*new_pack
;
2067 char *tmp_idx
= NULL
;
2070 if (has_pack_index(sha1
)) {
2071 new_pack
= parse_pack_index(sha1
, sha1_pack_index_name(sha1
));
2073 return -1; /* parse_pack_index() already issued error message */
2077 tmp_idx
= fetch_pack_index(sha1
, base_url
);
2081 new_pack
= parse_pack_index(sha1
, tmp_idx
);
2086 return -1; /* parse_pack_index() already issued error message */
2089 ret
= verify_pack_index(new_pack
);
2091 close_pack_index(new_pack
);
2092 ret
= finalize_object_file(tmp_idx
, sha1_pack_index_name(sha1
));
2099 new_pack
->next
= *packs_head
;
2100 *packs_head
= new_pack
;
2104 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
2106 struct http_get_options options
= {0};
2109 struct strbuf buf
= STRBUF_INIT
;
2110 unsigned char hash
[GIT_MAX_RAWSZ
];
2111 const unsigned hexsz
= the_hash_algo
->hexsz
;
2113 end_url_with_slash(&buf
, base_url
);
2114 strbuf_addstr(&buf
, "objects/info/packs");
2115 url
= strbuf_detach(&buf
, NULL
);
2117 options
.no_cache
= 1;
2118 ret
= http_get_strbuf(url
, &buf
, &options
);
2123 while (i
< buf
.len
) {
2127 if (i
+ hexsz
+ 12 <= buf
.len
&&
2128 starts_with(data
+ i
, " pack-") &&
2129 starts_with(data
+ i
+ hexsz
+ 6, ".pack\n")) {
2130 get_sha1_hex(data
+ i
+ 6, hash
);
2131 fetch_and_setup_pack_index(packs_head
, hash
,
2137 while (i
< buf
.len
&& data
[i
] != '\n')
2148 void release_http_pack_request(struct http_pack_request
*preq
)
2150 if (preq
->packfile
!= NULL
) {
2151 fclose(preq
->packfile
);
2152 preq
->packfile
= NULL
;
2155 strbuf_release(&preq
->tmpfile
);
2160 int finish_http_pack_request(struct http_pack_request
*preq
)
2162 struct packed_git
**lst
;
2163 struct packed_git
*p
= preq
->target
;
2166 struct child_process ip
= CHILD_PROCESS_INIT
;
2168 close_pack_index(p
);
2170 fclose(preq
->packfile
);
2171 preq
->packfile
= NULL
;
2175 lst
= &((*lst
)->next
);
2176 *lst
= (*lst
)->next
;
2178 if (!strip_suffix(preq
->tmpfile
.buf
, ".pack.temp", &len
))
2179 BUG("pack tmpfile does not end in .pack.temp?");
2180 tmp_idx
= xstrfmt("%.*s.idx.temp", (int)len
, preq
->tmpfile
.buf
);
2182 argv_array_push(&ip
.args
, "index-pack");
2183 argv_array_pushl(&ip
.args
, "-o", tmp_idx
, NULL
);
2184 argv_array_push(&ip
.args
, preq
->tmpfile
.buf
);
2189 if (run_command(&ip
)) {
2190 unlink(preq
->tmpfile
.buf
);
2196 unlink(sha1_pack_index_name(p
->sha1
));
2198 if (finalize_object_file(preq
->tmpfile
.buf
, sha1_pack_name(p
->sha1
))
2199 || finalize_object_file(tmp_idx
, sha1_pack_index_name(p
->sha1
))) {
2204 install_packed_git(the_repository
, p
);
2209 struct http_pack_request
*new_http_pack_request(
2210 struct packed_git
*target
, const char *base_url
)
2212 off_t prev_posn
= 0;
2213 struct strbuf buf
= STRBUF_INIT
;
2214 struct http_pack_request
*preq
;
2216 preq
= xcalloc(1, sizeof(*preq
));
2217 strbuf_init(&preq
->tmpfile
, 0);
2218 preq
->target
= target
;
2220 end_url_with_slash(&buf
, base_url
);
2221 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
2222 sha1_to_hex(target
->sha1
));
2223 preq
->url
= strbuf_detach(&buf
, NULL
);
2225 strbuf_addf(&preq
->tmpfile
, "%s.temp", sha1_pack_name(target
->sha1
));
2226 preq
->packfile
= fopen(preq
->tmpfile
.buf
, "a");
2227 if (!preq
->packfile
) {
2228 error("Unable to open local file %s for pack",
2233 preq
->slot
= get_active_slot();
2234 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_FILE
, preq
->packfile
);
2235 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
2236 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
2237 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
2241 * If there is data present from a previous transfer attempt,
2242 * resume where it left off
2244 prev_posn
= ftello(preq
->packfile
);
2246 if (http_is_verbose
)
2248 "Resuming fetch of pack %s at byte %"PRIuMAX
"\n",
2249 sha1_to_hex(target
->sha1
), (uintmax_t)prev_posn
);
2250 http_opt_request_remainder(preq
->slot
->curl
, prev_posn
);
2256 strbuf_release(&preq
->tmpfile
);
2262 /* Helpers for fetching objects (loose) */
2263 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
2266 unsigned char expn
[4096];
2267 size_t size
= eltsize
* nmemb
;
2269 struct http_object_request
*freq
= data
;
2270 struct active_request_slot
*slot
= freq
->slot
;
2273 CURLcode c
= curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
,
2276 BUG("curl_easy_getinfo for HTTP code failed: %s",
2277 curl_easy_strerror(c
));
2278 if (slot
->http_code
>= 300)
2283 ssize_t retval
= xwrite(freq
->localfile
,
2284 (char *) ptr
+ posn
, size
- posn
);
2288 } while (posn
< size
);
2290 freq
->stream
.avail_in
= size
;
2291 freq
->stream
.next_in
= (void *)ptr
;
2293 freq
->stream
.next_out
= expn
;
2294 freq
->stream
.avail_out
= sizeof(expn
);
2295 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
2296 git_SHA1_Update(&freq
->c
, expn
,
2297 sizeof(expn
) - freq
->stream
.avail_out
);
2298 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
2302 struct http_object_request
*new_http_object_request(const char *base_url
,
2303 unsigned char *sha1
)
2305 char *hex
= sha1_to_hex(sha1
);
2306 struct strbuf filename
= STRBUF_INIT
;
2307 struct strbuf prevfile
= STRBUF_INIT
;
2309 char prev_buf
[PREV_BUF_SIZE
];
2310 ssize_t prev_read
= 0;
2311 off_t prev_posn
= 0;
2312 struct http_object_request
*freq
;
2314 freq
= xcalloc(1, sizeof(*freq
));
2315 strbuf_init(&freq
->tmpfile
, 0);
2316 hashcpy(freq
->sha1
, sha1
);
2317 freq
->localfile
= -1;
2319 sha1_file_name(the_repository
, &filename
, sha1
);
2320 strbuf_addf(&freq
->tmpfile
, "%s.temp", filename
.buf
);
2322 strbuf_addf(&prevfile
, "%s.prev", filename
.buf
);
2323 unlink_or_warn(prevfile
.buf
);
2324 rename(freq
->tmpfile
.buf
, prevfile
.buf
);
2325 unlink_or_warn(freq
->tmpfile
.buf
);
2326 strbuf_release(&filename
);
2328 if (freq
->localfile
!= -1)
2329 error("fd leakage in start: %d", freq
->localfile
);
2330 freq
->localfile
= open(freq
->tmpfile
.buf
,
2331 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
2333 * This could have failed due to the "lazy directory creation";
2334 * try to mkdir the last path component.
2336 if (freq
->localfile
< 0 && errno
== ENOENT
) {
2337 char *dir
= strrchr(freq
->tmpfile
.buf
, '/');
2340 mkdir(freq
->tmpfile
.buf
, 0777);
2343 freq
->localfile
= open(freq
->tmpfile
.buf
,
2344 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
2347 if (freq
->localfile
< 0) {
2348 error_errno("Couldn't create temporary file %s",
2353 git_inflate_init(&freq
->stream
);
2355 git_SHA1_Init(&freq
->c
);
2357 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
2360 * If a previous temp file is present, process what was already
2363 prevlocal
= open(prevfile
.buf
, O_RDONLY
);
2364 if (prevlocal
!= -1) {
2366 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
2368 if (fwrite_sha1_file(prev_buf
,
2371 freq
) == prev_read
) {
2372 prev_posn
+= prev_read
;
2377 } while (prev_read
> 0);
2380 unlink_or_warn(prevfile
.buf
);
2381 strbuf_release(&prevfile
);
2384 * Reset inflate/SHA1 if there was an error reading the previous temp
2385 * file; also rewind to the beginning of the local file.
2387 if (prev_read
== -1) {
2388 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
2389 git_inflate_init(&freq
->stream
);
2390 git_SHA1_Init(&freq
->c
);
2393 lseek(freq
->localfile
, 0, SEEK_SET
);
2394 if (ftruncate(freq
->localfile
, 0) < 0) {
2395 error_errno("Couldn't truncate temporary file %s",
2402 freq
->slot
= get_active_slot();
2404 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FILE
, freq
);
2405 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FAILONERROR
, 0);
2406 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
2407 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
2408 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
2409 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
2412 * If we have successfully processed data from a previous fetch
2413 * attempt, only fetch the data we don't already have.
2416 if (http_is_verbose
)
2418 "Resuming fetch of object %s at byte %"PRIuMAX
"\n",
2419 hex
, (uintmax_t)prev_posn
);
2420 http_opt_request_remainder(freq
->slot
->curl
, prev_posn
);
2426 strbuf_release(&prevfile
);
2432 void process_http_object_request(struct http_object_request
*freq
)
2434 if (freq
->slot
== NULL
)
2436 freq
->curl_result
= freq
->slot
->curl_result
;
2437 freq
->http_code
= freq
->slot
->http_code
;
2441 int finish_http_object_request(struct http_object_request
*freq
)
2444 struct strbuf filename
= STRBUF_INIT
;
2446 close(freq
->localfile
);
2447 freq
->localfile
= -1;
2449 process_http_object_request(freq
);
2451 if (freq
->http_code
== 416) {
2452 warning("requested range invalid; we may already have all the data.");
2453 } else if (freq
->curl_result
!= CURLE_OK
) {
2454 if (stat(freq
->tmpfile
.buf
, &st
) == 0)
2455 if (st
.st_size
== 0)
2456 unlink_or_warn(freq
->tmpfile
.buf
);
2460 git_inflate_end(&freq
->stream
);
2461 git_SHA1_Final(freq
->real_sha1
, &freq
->c
);
2462 if (freq
->zret
!= Z_STREAM_END
) {
2463 unlink_or_warn(freq
->tmpfile
.buf
);
2466 if (!hasheq(freq
->sha1
, freq
->real_sha1
)) {
2467 unlink_or_warn(freq
->tmpfile
.buf
);
2470 sha1_file_name(the_repository
, &filename
, freq
->sha1
);
2471 freq
->rename
= finalize_object_file(freq
->tmpfile
.buf
, filename
.buf
);
2472 strbuf_release(&filename
);
2474 return freq
->rename
;
2477 void abort_http_object_request(struct http_object_request
*freq
)
2479 unlink_or_warn(freq
->tmpfile
.buf
);
2481 release_http_object_request(freq
);
2484 void release_http_object_request(struct http_object_request
*freq
)
2486 if (freq
->localfile
!= -1) {
2487 close(freq
->localfile
);
2488 freq
->localfile
= -1;
2490 FREE_AND_NULL(freq
->url
);
2491 if (freq
->slot
!= NULL
) {
2492 freq
->slot
->callback_func
= NULL
;
2493 freq
->slot
->callback_data
= NULL
;
2494 release_active_slot(freq
->slot
);
2497 strbuf_release(&freq
->tmpfile
);