1 #include "git-compat-util.h"
2 #include "git-curl-compat.h"
7 #include "run-command.h"
10 #include "credential.h"
15 #include "transport.h"
17 #include "string-list.h"
18 #include "object-file.h"
19 #include "object-store-ll.h"
21 static struct trace_key trace_curl
= TRACE_KEY_INIT(CURL
);
22 static int trace_curl_data
= 1;
23 static int trace_curl_redact
= 1;
24 long int git_curl_ipresolve
= CURL_IPRESOLVE_WHATEVER
;
27 ssize_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
29 static int min_curl_sessions
= 1;
30 static int curl_session_count
;
31 static int max_requests
= -1;
33 static CURL
*curl_default
;
35 #define PREV_BUF_SIZE 4096
37 char curl_errorstr
[CURL_ERROR_SIZE
];
39 static int curl_ssl_verify
= -1;
40 static int curl_ssl_try
;
41 static const char *curl_http_version
= NULL
;
42 static const char *ssl_cert
;
43 static const char *ssl_cert_type
;
44 static const char *ssl_cipherlist
;
45 static const char *ssl_version
;
50 { "sslv2", CURL_SSLVERSION_SSLv2
},
51 { "sslv3", CURL_SSLVERSION_SSLv3
},
52 { "tlsv1", CURL_SSLVERSION_TLSv1
},
53 #ifdef GIT_CURL_HAVE_CURL_SSLVERSION_TLSv1_0
54 { "tlsv1.0", CURL_SSLVERSION_TLSv1_0
},
55 { "tlsv1.1", CURL_SSLVERSION_TLSv1_1
},
56 { "tlsv1.2", CURL_SSLVERSION_TLSv1_2
},
58 #ifdef GIT_CURL_HAVE_CURL_SSLVERSION_TLSv1_3
59 { "tlsv1.3", CURL_SSLVERSION_TLSv1_3
},
62 static const char *ssl_key
;
63 static const char *ssl_key_type
;
64 static const char *ssl_capath
;
65 static const char *curl_no_proxy
;
66 #ifdef GIT_CURL_HAVE_CURLOPT_PINNEDPUBLICKEY
67 static const char *ssl_pinnedkey
;
69 static const char *ssl_cainfo
;
70 static long curl_low_speed_limit
= -1;
71 static long curl_low_speed_time
= -1;
72 static int curl_ftp_no_epsv
;
73 static const char *curl_http_proxy
;
74 static const char *http_proxy_authmethod
;
76 static const char *http_proxy_ssl_cert
;
77 static const char *http_proxy_ssl_key
;
78 static const char *http_proxy_ssl_ca_info
;
79 static struct credential proxy_cert_auth
= CREDENTIAL_INIT
;
80 static int proxy_ssl_cert_password_required
;
85 } proxy_authmethods
[] = {
86 { "basic", CURLAUTH_BASIC
},
87 { "digest", CURLAUTH_DIGEST
},
88 { "negotiate", CURLAUTH_GSSNEGOTIATE
},
89 { "ntlm", CURLAUTH_NTLM
},
90 { "anyauth", CURLAUTH_ANY
},
92 * CURLAUTH_DIGEST_IE has no corresponding command-line option in
93 * curl(1) and is not included in CURLAUTH_ANY, so we leave it out
97 #ifdef CURLGSSAPI_DELEGATION_FLAG
98 static const char *curl_deleg
;
101 long curl_deleg_param
;
102 } curl_deleg_levels
[] = {
103 { "none", CURLGSSAPI_DELEGATION_NONE
},
104 { "policy", CURLGSSAPI_DELEGATION_POLICY_FLAG
},
105 { "always", CURLGSSAPI_DELEGATION_FLAG
},
109 static struct credential proxy_auth
= CREDENTIAL_INIT
;
110 static const char *curl_proxyuserpwd
;
111 static const char *curl_cookie_file
;
112 static int curl_save_cookies
;
113 struct credential http_auth
= CREDENTIAL_INIT
;
114 static int http_proactive_auth
;
115 static const char *user_agent
;
116 static int curl_empty_auth
= -1;
118 enum http_follow_config http_follow_config
= HTTP_FOLLOW_INITIAL
;
120 static struct credential cert_auth
= CREDENTIAL_INIT
;
121 static int ssl_cert_password_required
;
122 static unsigned long http_auth_methods
= CURLAUTH_ANY
;
123 static int http_auth_methods_restricted
;
124 /* Modes for which empty_auth cannot actually help us. */
125 static unsigned long empty_auth_useless
=
130 static struct curl_slist
*pragma_header
;
131 static struct curl_slist
*no_pragma_header
;
132 static struct string_list extra_http_headers
= STRING_LIST_INIT_DUP
;
134 static struct curl_slist
*host_resolutions
;
136 static struct active_request_slot
*active_queue_head
;
138 static char *cached_accept_language
;
140 static char *http_ssl_backend
;
142 static int http_schannel_check_revoke
= 1;
144 * With the backend being set to `schannel`, setting sslCAinfo would override
145 * the Certificate Store in cURL v7.60.0 and later, which is not what we want
148 static int http_schannel_use_ssl_cainfo
;
150 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
152 size_t size
= eltsize
* nmemb
;
153 struct buffer
*buffer
= buffer_
;
155 if (size
> buffer
->buf
.len
- buffer
->posn
)
156 size
= buffer
->buf
.len
- buffer
->posn
;
157 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
158 buffer
->posn
+= size
;
160 return size
/ eltsize
;
163 int seek_buffer(void *clientp
, curl_off_t offset
, int origin
)
165 struct buffer
*buffer
= clientp
;
167 if (origin
!= SEEK_SET
)
168 BUG("seek_buffer only handles SEEK_SET");
169 if (offset
< 0 || offset
>= buffer
->buf
.len
) {
170 error("curl seek would be outside of buffer");
171 return CURL_SEEKFUNC_FAIL
;
174 buffer
->posn
= offset
;
175 return CURL_SEEKFUNC_OK
;
178 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
180 size_t size
= eltsize
* nmemb
;
181 struct strbuf
*buffer
= buffer_
;
183 strbuf_add(buffer
, ptr
, size
);
188 * A folded header continuation line starts with any number of spaces or
189 * horizontal tab characters (SP or HTAB) as per RFC 7230 section 3.2.
190 * It is not a continuation line if the line starts with any other character.
192 static inline int is_hdr_continuation(const char *ptr
, const size_t size
)
194 return size
&& (*ptr
== ' ' || *ptr
== '\t');
197 static size_t fwrite_wwwauth(char *ptr
, size_t eltsize
, size_t nmemb
, void *p UNUSED
)
199 size_t size
= eltsize
* nmemb
;
200 struct strvec
*values
= &http_auth
.wwwauth_headers
;
201 struct strbuf buf
= STRBUF_INIT
;
206 * Header lines may not come NULL-terminated from libcurl so we must
207 * limit all scans to the maximum length of the header line, or leverage
208 * strbufs for all operations.
210 * In addition, it is possible that header values can be split over
211 * multiple lines as per RFC 7230. 'Line folding' has been deprecated
212 * but older servers may still emit them. A continuation header field
213 * value is identified as starting with a space or horizontal tab.
215 * The formal definition of a header field as given in RFC 7230 is:
217 * header-field = field-name ":" OWS field-value OWS
220 * field-value = *( field-content / obs-fold )
221 * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
222 * field-vchar = VCHAR / obs-text
224 * obs-fold = CRLF 1*( SP / HTAB )
225 * ; obsolete line folding
226 * ; see Section 3.2.4
229 /* Start of a new WWW-Authenticate header */
230 if (skip_iprefix_mem(ptr
, size
, "www-authenticate:", &val
, &val_len
)) {
231 strbuf_add(&buf
, val
, val_len
);
234 * Strip the CRLF that should be present at the end of each
235 * field as well as any trailing or leading whitespace from the
240 strvec_push(values
, buf
.buf
);
241 http_auth
.header_is_last_match
= 1;
246 * This line could be a continuation of the previously matched header
247 * field. If this is the case then we should append this value to the
248 * end of the previously consumed value.
250 if (http_auth
.header_is_last_match
&& is_hdr_continuation(ptr
, size
)) {
252 * Trim the CRLF and any leading or trailing from this line.
254 strbuf_add(&buf
, ptr
, size
);
258 * At this point we should always have at least one existing
259 * value, even if it is empty. Do not bother appending the new
260 * value if this continuation header is itself empty.
263 BUG("should have at least one existing header value");
264 } else if (buf
.len
) {
265 char *prev
= xstrdup(values
->v
[values
->nr
- 1]);
267 /* Join two non-empty values with a single space. */
268 const char *const sp
= *prev
? " " : "";
271 strvec_pushf(values
, "%s%s%s", prev
, sp
, buf
.buf
);
278 /* Not a continuation of a previously matched auth header line. */
279 http_auth
.header_is_last_match
= 0;
282 * If this is a HTTP status line and not a header field, this signals
283 * a different HTTP response. libcurl writes all the output of all
284 * response headers of all responses, including redirects.
285 * We only care about the last HTTP request response's headers so clear
286 * the existing array.
288 if (skip_iprefix_mem(ptr
, size
, "http/", &val
, &val_len
))
289 strvec_clear(values
);
292 strbuf_release(&buf
);
296 size_t fwrite_null(char *ptr UNUSED
, size_t eltsize UNUSED
, size_t nmemb
,
302 static void closedown_active_slot(struct active_request_slot
*slot
)
308 static void finish_active_slot(struct active_request_slot
*slot
)
310 closedown_active_slot(slot
);
311 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
314 (*slot
->finished
) = 1;
316 /* Store slot results so they can be read after the slot is reused */
318 slot
->results
->curl_result
= slot
->curl_result
;
319 slot
->results
->http_code
= slot
->http_code
;
320 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTPAUTH_AVAIL
,
321 &slot
->results
->auth_avail
);
323 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CONNECTCODE
,
324 &slot
->results
->http_connectcode
);
327 /* Run callback if appropriate */
328 if (slot
->callback_func
)
329 slot
->callback_func(slot
->callback_data
);
332 static void xmulti_remove_handle(struct active_request_slot
*slot
)
334 curl_multi_remove_handle(curlm
, slot
->curl
);
337 static void process_curl_messages(void)
340 struct active_request_slot
*slot
;
341 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
343 while (curl_message
!= NULL
) {
344 if (curl_message
->msg
== CURLMSG_DONE
) {
345 int curl_result
= curl_message
->data
.result
;
346 slot
= active_queue_head
;
347 while (slot
!= NULL
&&
348 slot
->curl
!= curl_message
->easy_handle
)
351 xmulti_remove_handle(slot
);
352 slot
->curl_result
= curl_result
;
353 finish_active_slot(slot
);
355 fprintf(stderr
, "Received DONE message for unknown request!\n");
358 fprintf(stderr
, "Unknown CURL message received: %d\n",
359 (int)curl_message
->msg
);
361 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
365 static int http_options(const char *var
, const char *value
,
366 const struct config_context
*ctx
, void *data
)
368 if (!strcmp("http.version", var
)) {
369 return git_config_string(&curl_http_version
, var
, value
);
371 if (!strcmp("http.sslverify", var
)) {
372 curl_ssl_verify
= git_config_bool(var
, value
);
375 if (!strcmp("http.sslcipherlist", var
))
376 return git_config_string(&ssl_cipherlist
, var
, value
);
377 if (!strcmp("http.sslversion", var
))
378 return git_config_string(&ssl_version
, var
, value
);
379 if (!strcmp("http.sslcert", var
))
380 return git_config_pathname(&ssl_cert
, var
, value
);
381 if (!strcmp("http.sslcerttype", var
))
382 return git_config_string(&ssl_cert_type
, var
, value
);
383 if (!strcmp("http.sslkey", var
))
384 return git_config_pathname(&ssl_key
, var
, value
);
385 if (!strcmp("http.sslkeytype", var
))
386 return git_config_string(&ssl_key_type
, var
, value
);
387 if (!strcmp("http.sslcapath", var
))
388 return git_config_pathname(&ssl_capath
, var
, value
);
389 if (!strcmp("http.sslcainfo", var
))
390 return git_config_pathname(&ssl_cainfo
, var
, value
);
391 if (!strcmp("http.sslcertpasswordprotected", var
)) {
392 ssl_cert_password_required
= git_config_bool(var
, value
);
395 if (!strcmp("http.ssltry", var
)) {
396 curl_ssl_try
= git_config_bool(var
, value
);
399 if (!strcmp("http.sslbackend", var
)) {
400 free(http_ssl_backend
);
401 http_ssl_backend
= xstrdup_or_null(value
);
405 if (!strcmp("http.schannelcheckrevoke", var
)) {
406 http_schannel_check_revoke
= git_config_bool(var
, value
);
410 if (!strcmp("http.schannelusesslcainfo", var
)) {
411 http_schannel_use_ssl_cainfo
= git_config_bool(var
, value
);
415 if (!strcmp("http.minsessions", var
)) {
416 min_curl_sessions
= git_config_int(var
, value
, ctx
->kvi
);
417 if (min_curl_sessions
> 1)
418 min_curl_sessions
= 1;
421 if (!strcmp("http.maxrequests", var
)) {
422 max_requests
= git_config_int(var
, value
, ctx
->kvi
);
425 if (!strcmp("http.lowspeedlimit", var
)) {
426 curl_low_speed_limit
= (long)git_config_int(var
, value
, ctx
->kvi
);
429 if (!strcmp("http.lowspeedtime", var
)) {
430 curl_low_speed_time
= (long)git_config_int(var
, value
, ctx
->kvi
);
434 if (!strcmp("http.noepsv", var
)) {
435 curl_ftp_no_epsv
= git_config_bool(var
, value
);
438 if (!strcmp("http.proxy", var
))
439 return git_config_string(&curl_http_proxy
, var
, value
);
441 if (!strcmp("http.proxyauthmethod", var
))
442 return git_config_string(&http_proxy_authmethod
, var
, value
);
444 if (!strcmp("http.proxysslcert", var
))
445 return git_config_string(&http_proxy_ssl_cert
, var
, value
);
447 if (!strcmp("http.proxysslkey", var
))
448 return git_config_string(&http_proxy_ssl_key
, var
, value
);
450 if (!strcmp("http.proxysslcainfo", var
))
451 return git_config_string(&http_proxy_ssl_ca_info
, var
, value
);
453 if (!strcmp("http.proxysslcertpasswordprotected", var
)) {
454 proxy_ssl_cert_password_required
= git_config_bool(var
, value
);
458 if (!strcmp("http.cookiefile", var
))
459 return git_config_pathname(&curl_cookie_file
, var
, value
);
460 if (!strcmp("http.savecookies", var
)) {
461 curl_save_cookies
= git_config_bool(var
, value
);
465 if (!strcmp("http.postbuffer", var
)) {
466 http_post_buffer
= git_config_ssize_t(var
, value
, ctx
->kvi
);
467 if (http_post_buffer
< 0)
468 warning(_("negative value for http.postBuffer; defaulting to %d"), LARGE_PACKET_MAX
);
469 if (http_post_buffer
< LARGE_PACKET_MAX
)
470 http_post_buffer
= LARGE_PACKET_MAX
;
474 if (!strcmp("http.useragent", var
))
475 return git_config_string(&user_agent
, var
, value
);
477 if (!strcmp("http.emptyauth", var
)) {
478 if (value
&& !strcmp("auto", value
))
479 curl_empty_auth
= -1;
481 curl_empty_auth
= git_config_bool(var
, value
);
485 if (!strcmp("http.delegation", var
)) {
486 #ifdef CURLGSSAPI_DELEGATION_FLAG
487 return git_config_string(&curl_deleg
, var
, value
);
489 warning(_("Delegation control is not supported with cURL < 7.22.0"));
494 if (!strcmp("http.pinnedpubkey", var
)) {
495 #ifdef GIT_CURL_HAVE_CURLOPT_PINNEDPUBLICKEY
496 return git_config_pathname(&ssl_pinnedkey
, var
, value
);
498 warning(_("Public key pinning not supported with cURL < 7.39.0"));
503 if (!strcmp("http.extraheader", var
)) {
505 return config_error_nonbool(var
);
506 } else if (!*value
) {
507 string_list_clear(&extra_http_headers
, 0);
509 string_list_append(&extra_http_headers
, value
);
514 if (!strcmp("http.curloptresolve", var
)) {
516 return config_error_nonbool(var
);
517 } else if (!*value
) {
518 curl_slist_free_all(host_resolutions
);
519 host_resolutions
= NULL
;
521 host_resolutions
= curl_slist_append(host_resolutions
, value
);
526 if (!strcmp("http.followredirects", var
)) {
527 if (value
&& !strcmp(value
, "initial"))
528 http_follow_config
= HTTP_FOLLOW_INITIAL
;
529 else if (git_config_bool(var
, value
))
530 http_follow_config
= HTTP_FOLLOW_ALWAYS
;
532 http_follow_config
= HTTP_FOLLOW_NONE
;
536 /* Fall back on the default ones */
537 return git_default_config(var
, value
, ctx
, data
);
540 static int curl_empty_auth_enabled(void)
542 if (curl_empty_auth
>= 0)
543 return curl_empty_auth
;
546 * In the automatic case, kick in the empty-auth
547 * hack as long as we would potentially try some
548 * method more exotic than "Basic" or "Digest".
550 * But only do this when this is our second or
551 * subsequent request, as by then we know what
552 * methods are available.
554 if (http_auth_methods_restricted
&&
555 (http_auth_methods
& ~empty_auth_useless
))
560 static void init_curl_http_auth(CURL
*result
)
562 if (!http_auth
.username
|| !*http_auth
.username
) {
563 if (curl_empty_auth_enabled())
564 curl_easy_setopt(result
, CURLOPT_USERPWD
, ":");
568 credential_fill(&http_auth
);
570 curl_easy_setopt(result
, CURLOPT_USERNAME
, http_auth
.username
);
571 curl_easy_setopt(result
, CURLOPT_PASSWORD
, http_auth
.password
);
574 /* *var must be free-able */
575 static void var_override(const char **var
, char *value
)
579 *var
= xstrdup(value
);
583 static void set_proxyauth_name_password(CURL
*result
)
585 curl_easy_setopt(result
, CURLOPT_PROXYUSERNAME
,
586 proxy_auth
.username
);
587 curl_easy_setopt(result
, CURLOPT_PROXYPASSWORD
,
588 proxy_auth
.password
);
591 static void init_curl_proxy_auth(CURL
*result
)
593 if (proxy_auth
.username
) {
594 if (!proxy_auth
.password
)
595 credential_fill(&proxy_auth
);
596 set_proxyauth_name_password(result
);
599 var_override(&http_proxy_authmethod
, getenv("GIT_HTTP_PROXY_AUTHMETHOD"));
601 if (http_proxy_authmethod
) {
603 for (i
= 0; i
< ARRAY_SIZE(proxy_authmethods
); i
++) {
604 if (!strcmp(http_proxy_authmethod
, proxy_authmethods
[i
].name
)) {
605 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
,
606 proxy_authmethods
[i
].curlauth_param
);
610 if (i
== ARRAY_SIZE(proxy_authmethods
)) {
611 warning("unsupported proxy authentication method %s: using anyauth",
612 http_proxy_authmethod
);
613 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
617 curl_easy_setopt(result
, CURLOPT_PROXYAUTH
, CURLAUTH_ANY
);
620 static int has_cert_password(void)
622 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
624 if (!cert_auth
.password
) {
625 cert_auth
.protocol
= xstrdup("cert");
626 cert_auth
.host
= xstrdup("");
627 cert_auth
.username
= xstrdup("");
628 cert_auth
.path
= xstrdup(ssl_cert
);
629 credential_fill(&cert_auth
);
634 #ifdef GIT_CURL_HAVE_CURLOPT_PROXY_KEYPASSWD
635 static int has_proxy_cert_password(void)
637 if (http_proxy_ssl_cert
== NULL
|| proxy_ssl_cert_password_required
!= 1)
639 if (!proxy_cert_auth
.password
) {
640 proxy_cert_auth
.protocol
= xstrdup("cert");
641 proxy_cert_auth
.host
= xstrdup("");
642 proxy_cert_auth
.username
= xstrdup("");
643 proxy_cert_auth
.path
= xstrdup(http_proxy_ssl_cert
);
644 credential_fill(&proxy_cert_auth
);
650 #ifdef GITCURL_HAVE_CURLOPT_TCP_KEEPALIVE
651 static void set_curl_keepalive(CURL
*c
)
653 curl_easy_setopt(c
, CURLOPT_TCP_KEEPALIVE
, 1);
657 static int sockopt_callback(void *client
, curl_socket_t fd
, curlsocktype type
)
661 socklen_t len
= (socklen_t
)sizeof(ka
);
663 if (type
!= CURLSOCKTYPE_IPCXN
)
666 rc
= setsockopt(fd
, SOL_SOCKET
, SO_KEEPALIVE
, (void *)&ka
, len
);
668 warning_errno("unable to set SO_KEEPALIVE on socket");
670 return CURL_SOCKOPT_OK
;
673 static void set_curl_keepalive(CURL
*c
)
675 curl_easy_setopt(c
, CURLOPT_SOCKOPTFUNCTION
, sockopt_callback
);
679 /* Return 1 if redactions have been made, 0 otherwise. */
680 static int redact_sensitive_header(struct strbuf
*header
, size_t offset
)
683 const char *sensitive_header
;
685 if (trace_curl_redact
&&
686 (skip_iprefix(header
->buf
+ offset
, "Authorization:", &sensitive_header
) ||
687 skip_iprefix(header
->buf
+ offset
, "Proxy-Authorization:", &sensitive_header
))) {
688 /* The first token is the type, which is OK to log */
689 while (isspace(*sensitive_header
))
691 while (*sensitive_header
&& !isspace(*sensitive_header
))
693 /* Everything else is opaque and possibly sensitive */
694 strbuf_setlen(header
, sensitive_header
- header
->buf
);
695 strbuf_addstr(header
, " <redacted>");
697 } else if (trace_curl_redact
&&
698 skip_iprefix(header
->buf
+ offset
, "Cookie:", &sensitive_header
)) {
699 struct strbuf redacted_header
= STRBUF_INIT
;
702 while (isspace(*sensitive_header
))
705 cookie
= sensitive_header
;
709 char *semicolon
= strstr(cookie
, "; ");
712 equals
= strchrnul(cookie
, '=');
714 /* invalid cookie, just append and continue */
715 strbuf_addstr(&redacted_header
, cookie
);
718 strbuf_add(&redacted_header
, cookie
, equals
- cookie
);
719 strbuf_addstr(&redacted_header
, "=<redacted>");
722 * There are more cookies. (Or, for some
723 * reason, the input string ends in "; ".)
725 strbuf_addstr(&redacted_header
, "; ");
726 cookie
= semicolon
+ strlen("; ");
732 strbuf_setlen(header
, sensitive_header
- header
->buf
);
733 strbuf_addbuf(header
, &redacted_header
);
739 static int match_curl_h2_trace(const char *line
, const char **out
)
744 * curl prior to 8.1.0 gives us:
746 * h2h3 [<header-name>: <header-val>]
748 * Starting in 8.1.0, the first token became just "h2".
750 if (skip_iprefix(line
, "h2h3 [", out
) ||
751 skip_iprefix(line
, "h2 [", out
))
756 * [HTTP/2] [<stream-id>] [<header-name>: <header-val>]
757 * where <stream-id> is numeric.
759 if (skip_iprefix(line
, "[HTTP/2] [", &p
)) {
762 if (skip_prefix(p
, "] [", out
))
769 /* Redact headers in info */
770 static void redact_sensitive_info_header(struct strbuf
*header
)
772 const char *sensitive_header
;
774 if (trace_curl_redact
&&
775 match_curl_h2_trace(header
->buf
, &sensitive_header
)) {
776 if (redact_sensitive_header(header
, sensitive_header
- header
->buf
)) {
777 /* redaction ate our closing bracket */
778 strbuf_addch(header
, ']');
783 static void curl_dump_header(const char *text
, unsigned char *ptr
, size_t size
, int hide_sensitive_header
)
785 struct strbuf out
= STRBUF_INIT
;
786 struct strbuf
**headers
, **header
;
788 strbuf_addf(&out
, "%s, %10.10ld bytes (0x%8.8lx)\n",
789 text
, (long)size
, (long)size
);
790 trace_strbuf(&trace_curl
, &out
);
792 strbuf_add(&out
, ptr
, size
);
793 headers
= strbuf_split_max(&out
, '\n', 0);
795 for (header
= headers
; *header
; header
++) {
796 if (hide_sensitive_header
)
797 redact_sensitive_header(*header
, 0);
798 strbuf_insertstr((*header
), 0, text
);
799 strbuf_insertstr((*header
), strlen(text
), ": ");
800 strbuf_rtrim((*header
));
801 strbuf_addch((*header
), '\n');
802 trace_strbuf(&trace_curl
, (*header
));
804 strbuf_list_free(headers
);
805 strbuf_release(&out
);
808 static void curl_dump_data(const char *text
, unsigned char *ptr
, size_t size
)
811 struct strbuf out
= STRBUF_INIT
;
812 unsigned int width
= 60;
814 strbuf_addf(&out
, "%s, %10.10ld bytes (0x%8.8lx)\n",
815 text
, (long)size
, (long)size
);
816 trace_strbuf(&trace_curl
, &out
);
818 for (i
= 0; i
< size
; i
+= width
) {
822 strbuf_addf(&out
, "%s: ", text
);
823 for (w
= 0; (w
< width
) && (i
+ w
< size
); w
++) {
824 unsigned char ch
= ptr
[i
+ w
];
827 (ch
>= 0x20) && (ch
< 0x80)
830 strbuf_addch(&out
, '\n');
831 trace_strbuf(&trace_curl
, &out
);
833 strbuf_release(&out
);
836 static void curl_dump_info(char *data
, size_t size
)
838 struct strbuf buf
= STRBUF_INIT
;
840 strbuf_add(&buf
, data
, size
);
842 redact_sensitive_info_header(&buf
);
843 trace_printf_key(&trace_curl
, "== Info: %s", buf
.buf
);
845 strbuf_release(&buf
);
848 static int curl_trace(CURL
*handle UNUSED
, curl_infotype type
,
849 char *data
, size_t size
,
853 enum { NO_FILTER
= 0, DO_FILTER
= 1 };
857 curl_dump_info(data
, size
);
859 case CURLINFO_HEADER_OUT
:
860 text
= "=> Send header";
861 curl_dump_header(text
, (unsigned char *)data
, size
, DO_FILTER
);
863 case CURLINFO_DATA_OUT
:
864 if (trace_curl_data
) {
865 text
= "=> Send data";
866 curl_dump_data(text
, (unsigned char *)data
, size
);
869 case CURLINFO_SSL_DATA_OUT
:
870 if (trace_curl_data
) {
871 text
= "=> Send SSL data";
872 curl_dump_data(text
, (unsigned char *)data
, size
);
875 case CURLINFO_HEADER_IN
:
876 text
= "<= Recv header";
877 curl_dump_header(text
, (unsigned char *)data
, size
, NO_FILTER
);
879 case CURLINFO_DATA_IN
:
880 if (trace_curl_data
) {
881 text
= "<= Recv data";
882 curl_dump_data(text
, (unsigned char *)data
, size
);
885 case CURLINFO_SSL_DATA_IN
:
886 if (trace_curl_data
) {
887 text
= "<= Recv SSL data";
888 curl_dump_data(text
, (unsigned char *)data
, size
);
892 default: /* we ignore unknown types by default */
898 void http_trace_curl_no_data(void)
900 trace_override_envvar(&trace_curl
, "1");
904 void setup_curl_trace(CURL
*handle
)
906 if (!trace_want(&trace_curl
))
908 curl_easy_setopt(handle
, CURLOPT_VERBOSE
, 1L);
909 curl_easy_setopt(handle
, CURLOPT_DEBUGFUNCTION
, curl_trace
);
910 curl_easy_setopt(handle
, CURLOPT_DEBUGDATA
, NULL
);
913 static void proto_list_append(struct strbuf
*list
, const char *proto
)
918 strbuf_addch(list
, ',');
919 strbuf_addstr(list
, proto
);
922 static long get_curl_allowed_protocols(int from_user
, struct strbuf
*list
)
926 if (is_transport_allowed("http", from_user
)) {
927 bits
|= CURLPROTO_HTTP
;
928 proto_list_append(list
, "http");
930 if (is_transport_allowed("https", from_user
)) {
931 bits
|= CURLPROTO_HTTPS
;
932 proto_list_append(list
, "https");
934 if (is_transport_allowed("ftp", from_user
)) {
935 bits
|= CURLPROTO_FTP
;
936 proto_list_append(list
, "ftp");
938 if (is_transport_allowed("ftps", from_user
)) {
939 bits
|= CURLPROTO_FTPS
;
940 proto_list_append(list
, "ftps");
946 #ifdef GIT_CURL_HAVE_CURL_HTTP_VERSION_2
947 static int get_curl_http_version_opt(const char *version_string
, long *opt
)
954 { "HTTP/1.1", CURL_HTTP_VERSION_1_1
},
955 { "HTTP/2", CURL_HTTP_VERSION_2
}
958 for (i
= 0; i
< ARRAY_SIZE(choice
); i
++) {
959 if (!strcmp(version_string
, choice
[i
].name
)) {
960 *opt
= choice
[i
].opt_token
;
965 warning("unknown value given to http.version: '%s'", version_string
);
966 return -1; /* not found */
971 static CURL
*get_curl_handle(void)
973 CURL
*result
= curl_easy_init();
976 die("curl_easy_init failed");
978 if (!curl_ssl_verify
) {
979 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
980 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
982 /* Verify authenticity of the peer's certificate */
983 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
984 /* The name in the cert must match whom we tried to connect */
985 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
988 #ifdef GIT_CURL_HAVE_CURL_HTTP_VERSION_2
989 if (curl_http_version
) {
991 if (!get_curl_http_version_opt(curl_http_version
, &opt
)) {
992 /* Set request use http version */
993 curl_easy_setopt(result
, CURLOPT_HTTP_VERSION
, opt
);
998 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
999 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
1001 #ifdef CURLGSSAPI_DELEGATION_FLAG
1004 for (i
= 0; i
< ARRAY_SIZE(curl_deleg_levels
); i
++) {
1005 if (!strcmp(curl_deleg
, curl_deleg_levels
[i
].name
)) {
1006 curl_easy_setopt(result
, CURLOPT_GSSAPI_DELEGATION
,
1007 curl_deleg_levels
[i
].curl_deleg_param
);
1011 if (i
== ARRAY_SIZE(curl_deleg_levels
))
1012 warning("Unknown delegation method '%s': using default",
1017 if (http_ssl_backend
&& !strcmp("schannel", http_ssl_backend
) &&
1018 !http_schannel_check_revoke
) {
1019 #ifdef GIT_CURL_HAVE_CURLSSLOPT_NO_REVOKE
1020 curl_easy_setopt(result
, CURLOPT_SSL_OPTIONS
, CURLSSLOPT_NO_REVOKE
);
1022 warning(_("CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"));
1026 if (http_proactive_auth
)
1027 init_curl_http_auth(result
);
1029 if (getenv("GIT_SSL_VERSION"))
1030 ssl_version
= getenv("GIT_SSL_VERSION");
1031 if (ssl_version
&& *ssl_version
) {
1033 for (i
= 0; i
< ARRAY_SIZE(sslversions
); i
++) {
1034 if (!strcmp(ssl_version
, sslversions
[i
].name
)) {
1035 curl_easy_setopt(result
, CURLOPT_SSLVERSION
,
1036 sslversions
[i
].ssl_version
);
1040 if (i
== ARRAY_SIZE(sslversions
))
1041 warning("unsupported ssl version %s: using default",
1045 if (getenv("GIT_SSL_CIPHER_LIST"))
1046 ssl_cipherlist
= getenv("GIT_SSL_CIPHER_LIST");
1047 if (ssl_cipherlist
!= NULL
&& *ssl_cipherlist
)
1048 curl_easy_setopt(result
, CURLOPT_SSL_CIPHER_LIST
,
1052 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
1054 curl_easy_setopt(result
, CURLOPT_SSLCERTTYPE
, ssl_cert_type
);
1055 if (has_cert_password())
1056 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, cert_auth
.password
);
1058 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
1060 curl_easy_setopt(result
, CURLOPT_SSLKEYTYPE
, ssl_key_type
);
1062 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
1063 #ifdef GIT_CURL_HAVE_CURLOPT_PINNEDPUBLICKEY
1065 curl_easy_setopt(result
, CURLOPT_PINNEDPUBLICKEY
, ssl_pinnedkey
);
1067 if (http_ssl_backend
&& !strcmp("schannel", http_ssl_backend
) &&
1068 !http_schannel_use_ssl_cainfo
) {
1069 curl_easy_setopt(result
, CURLOPT_CAINFO
, NULL
);
1070 #ifdef GIT_CURL_HAVE_CURLOPT_PROXY_CAINFO
1071 curl_easy_setopt(result
, CURLOPT_PROXY_CAINFO
, NULL
);
1073 } else if (ssl_cainfo
!= NULL
|| http_proxy_ssl_ca_info
!= NULL
) {
1075 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
1076 #ifdef GIT_CURL_HAVE_CURLOPT_PROXY_CAINFO
1077 if (http_proxy_ssl_ca_info
)
1078 curl_easy_setopt(result
, CURLOPT_PROXY_CAINFO
, http_proxy_ssl_ca_info
);
1082 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
1083 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
1084 curl_low_speed_limit
);
1085 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
1086 curl_low_speed_time
);
1089 curl_easy_setopt(result
, CURLOPT_MAXREDIRS
, 20);
1090 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
1092 #ifdef GIT_CURL_HAVE_CURLOPT_PROTOCOLS_STR
1094 struct strbuf buf
= STRBUF_INIT
;
1096 get_curl_allowed_protocols(0, &buf
);
1097 curl_easy_setopt(result
, CURLOPT_REDIR_PROTOCOLS_STR
, buf
.buf
);
1100 get_curl_allowed_protocols(-1, &buf
);
1101 curl_easy_setopt(result
, CURLOPT_PROTOCOLS_STR
, buf
.buf
);
1102 strbuf_release(&buf
);
1105 curl_easy_setopt(result
, CURLOPT_REDIR_PROTOCOLS
,
1106 get_curl_allowed_protocols(0, NULL
));
1107 curl_easy_setopt(result
, CURLOPT_PROTOCOLS
,
1108 get_curl_allowed_protocols(-1, NULL
));
1111 if (getenv("GIT_CURL_VERBOSE"))
1112 http_trace_curl_no_data();
1113 setup_curl_trace(result
);
1114 if (getenv("GIT_TRACE_CURL_NO_DATA"))
1115 trace_curl_data
= 0;
1116 if (!git_env_bool("GIT_TRACE_REDACT", 1))
1117 trace_curl_redact
= 0;
1119 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
1120 user_agent
? user_agent
: git_user_agent());
1122 if (curl_ftp_no_epsv
)
1123 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
1126 curl_easy_setopt(result
, CURLOPT_USE_SSL
, CURLUSESSL_TRY
);
1129 * CURL also examines these variables as a fallback; but we need to query
1130 * them here in order to decide whether to prompt for missing password (cf.
1131 * init_curl_proxy_auth()).
1133 * Unlike many other common environment variables, these are historically
1134 * lowercase only. It appears that CURL did not know this and implemented
1135 * only uppercase variants, which was later corrected to take both - with
1136 * the exception of http_proxy, which is lowercase only also in CURL. As
1137 * the lowercase versions are the historical quasi-standard, they take
1138 * precedence here, as in CURL.
1140 if (!curl_http_proxy
) {
1141 if (http_auth
.protocol
&& !strcmp(http_auth
.protocol
, "https")) {
1142 var_override(&curl_http_proxy
, getenv("HTTPS_PROXY"));
1143 var_override(&curl_http_proxy
, getenv("https_proxy"));
1145 var_override(&curl_http_proxy
, getenv("http_proxy"));
1147 if (!curl_http_proxy
) {
1148 var_override(&curl_http_proxy
, getenv("ALL_PROXY"));
1149 var_override(&curl_http_proxy
, getenv("all_proxy"));
1153 if (curl_http_proxy
&& curl_http_proxy
[0] == '\0') {
1155 * Handle case with the empty http.proxy value here to keep
1156 * common code clean.
1157 * NB: empty option disables proxying at all.
1159 curl_easy_setopt(result
, CURLOPT_PROXY
, "");
1160 } else if (curl_http_proxy
) {
1161 if (starts_with(curl_http_proxy
, "socks5h"))
1162 curl_easy_setopt(result
,
1163 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS5_HOSTNAME
);
1164 else if (starts_with(curl_http_proxy
, "socks5"))
1165 curl_easy_setopt(result
,
1166 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS5
);
1167 else if (starts_with(curl_http_proxy
, "socks4a"))
1168 curl_easy_setopt(result
,
1169 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS4A
);
1170 else if (starts_with(curl_http_proxy
, "socks"))
1171 curl_easy_setopt(result
,
1172 CURLOPT_PROXYTYPE
, CURLPROXY_SOCKS4
);
1173 #ifdef GIT_CURL_HAVE_CURLOPT_PROXY_KEYPASSWD
1174 else if (starts_with(curl_http_proxy
, "https")) {
1175 curl_easy_setopt(result
, CURLOPT_PROXYTYPE
, CURLPROXY_HTTPS
);
1177 if (http_proxy_ssl_cert
)
1178 curl_easy_setopt(result
, CURLOPT_PROXY_SSLCERT
, http_proxy_ssl_cert
);
1180 if (http_proxy_ssl_key
)
1181 curl_easy_setopt(result
, CURLOPT_PROXY_SSLKEY
, http_proxy_ssl_key
);
1183 if (has_proxy_cert_password())
1184 curl_easy_setopt(result
, CURLOPT_PROXY_KEYPASSWD
, proxy_cert_auth
.password
);
1187 if (strstr(curl_http_proxy
, "://"))
1188 credential_from_url(&proxy_auth
, curl_http_proxy
);
1190 struct strbuf url
= STRBUF_INIT
;
1191 strbuf_addf(&url
, "http://%s", curl_http_proxy
);
1192 credential_from_url(&proxy_auth
, url
.buf
);
1193 strbuf_release(&url
);
1196 if (!proxy_auth
.host
)
1197 die("Invalid proxy URL '%s'", curl_http_proxy
);
1199 curl_easy_setopt(result
, CURLOPT_PROXY
, proxy_auth
.host
);
1200 var_override(&curl_no_proxy
, getenv("NO_PROXY"));
1201 var_override(&curl_no_proxy
, getenv("no_proxy"));
1202 curl_easy_setopt(result
, CURLOPT_NOPROXY
, curl_no_proxy
);
1204 init_curl_proxy_auth(result
);
1206 set_curl_keepalive(result
);
1211 static void set_from_env(const char **var
, const char *envname
)
1213 const char *val
= getenv(envname
);
1218 void http_init(struct remote
*remote
, const char *url
, int proactive_auth
)
1220 char *low_speed_limit
;
1221 char *low_speed_time
;
1222 char *normalized_url
;
1223 struct urlmatch_config config
= URLMATCH_CONFIG_INIT
;
1225 config
.section
= "http";
1227 config
.collect_fn
= http_options
;
1228 config
.cascade_fn
= git_default_config
;
1231 http_is_verbose
= 0;
1232 normalized_url
= url_normalize(url
, &config
.url
);
1234 git_config(urlmatch_config_entry
, &config
);
1235 free(normalized_url
);
1236 string_list_clear(&config
.vars
, 1);
1238 #ifdef GIT_CURL_HAVE_CURLSSLSET_NO_BACKENDS
1239 if (http_ssl_backend
) {
1240 const curl_ssl_backend
**backends
;
1241 struct strbuf buf
= STRBUF_INIT
;
1244 switch (curl_global_sslset(-1, http_ssl_backend
, &backends
)) {
1245 case CURLSSLSET_UNKNOWN_BACKEND
:
1246 strbuf_addf(&buf
, _("Unsupported SSL backend '%s'. "
1247 "Supported SSL backends:"),
1249 for (i
= 0; backends
[i
]; i
++)
1250 strbuf_addf(&buf
, "\n\t%s", backends
[i
]->name
);
1252 case CURLSSLSET_NO_BACKENDS
:
1253 die(_("Could not set SSL backend to '%s': "
1254 "cURL was built without SSL backends"),
1256 case CURLSSLSET_TOO_LATE
:
1257 die(_("Could not set SSL backend to '%s': already set"),
1265 if (curl_global_init(CURL_GLOBAL_ALL
) != CURLE_OK
)
1266 die("curl_global_init failed");
1268 http_proactive_auth
= proactive_auth
;
1270 if (remote
&& remote
->http_proxy
)
1271 curl_http_proxy
= xstrdup(remote
->http_proxy
);
1274 var_override(&http_proxy_authmethod
, remote
->http_proxy_authmethod
);
1276 pragma_header
= curl_slist_append(http_copy_default_headers(),
1277 "Pragma: no-cache");
1278 no_pragma_header
= curl_slist_append(http_copy_default_headers(),
1282 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
1283 if (http_max_requests
)
1284 max_requests
= atoi(http_max_requests
);
1287 curlm
= curl_multi_init();
1289 die("curl_multi_init failed");
1291 if (getenv("GIT_SSL_NO_VERIFY"))
1292 curl_ssl_verify
= 0;
1294 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
1295 set_from_env(&ssl_cert_type
, "GIT_SSL_CERT_TYPE");
1296 set_from_env(&ssl_key
, "GIT_SSL_KEY");
1297 set_from_env(&ssl_key_type
, "GIT_SSL_KEY_TYPE");
1298 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
1299 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
1301 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
1303 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
1304 if (low_speed_limit
)
1305 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
1306 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
1308 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
1310 if (curl_ssl_verify
== -1)
1311 curl_ssl_verify
= 1;
1313 curl_session_count
= 0;
1314 if (max_requests
< 1)
1315 max_requests
= DEFAULT_MAX_REQUESTS
;
1317 set_from_env(&http_proxy_ssl_cert
, "GIT_PROXY_SSL_CERT");
1318 set_from_env(&http_proxy_ssl_key
, "GIT_PROXY_SSL_KEY");
1319 set_from_env(&http_proxy_ssl_ca_info
, "GIT_PROXY_SSL_CAINFO");
1321 if (getenv("GIT_PROXY_SSL_CERT_PASSWORD_PROTECTED"))
1322 proxy_ssl_cert_password_required
= 1;
1324 if (getenv("GIT_CURL_FTP_NO_EPSV"))
1325 curl_ftp_no_epsv
= 1;
1328 credential_from_url(&http_auth
, url
);
1329 if (!ssl_cert_password_required
&&
1330 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
1331 starts_with(url
, "https://"))
1332 ssl_cert_password_required
= 1;
1335 curl_default
= get_curl_handle();
1338 void http_cleanup(void)
1340 struct active_request_slot
*slot
= active_queue_head
;
1342 while (slot
!= NULL
) {
1343 struct active_request_slot
*next
= slot
->next
;
1345 xmulti_remove_handle(slot
);
1346 curl_easy_cleanup(slot
->curl
);
1351 active_queue_head
= NULL
;
1353 curl_easy_cleanup(curl_default
);
1355 curl_multi_cleanup(curlm
);
1356 curl_global_cleanup();
1358 string_list_clear(&extra_http_headers
, 0);
1360 curl_slist_free_all(pragma_header
);
1361 pragma_header
= NULL
;
1363 curl_slist_free_all(no_pragma_header
);
1364 no_pragma_header
= NULL
;
1366 curl_slist_free_all(host_resolutions
);
1367 host_resolutions
= NULL
;
1369 if (curl_http_proxy
) {
1370 free((void *)curl_http_proxy
);
1371 curl_http_proxy
= NULL
;
1374 if (proxy_auth
.password
) {
1375 memset(proxy_auth
.password
, 0, strlen(proxy_auth
.password
));
1376 FREE_AND_NULL(proxy_auth
.password
);
1379 free((void *)curl_proxyuserpwd
);
1380 curl_proxyuserpwd
= NULL
;
1382 free((void *)http_proxy_authmethod
);
1383 http_proxy_authmethod
= NULL
;
1385 if (cert_auth
.password
) {
1386 memset(cert_auth
.password
, 0, strlen(cert_auth
.password
));
1387 FREE_AND_NULL(cert_auth
.password
);
1389 ssl_cert_password_required
= 0;
1391 if (proxy_cert_auth
.password
) {
1392 memset(proxy_cert_auth
.password
, 0, strlen(proxy_cert_auth
.password
));
1393 FREE_AND_NULL(proxy_cert_auth
.password
);
1395 proxy_ssl_cert_password_required
= 0;
1397 FREE_AND_NULL(cached_accept_language
);
1400 struct active_request_slot
*get_active_slot(void)
1402 struct active_request_slot
*slot
= active_queue_head
;
1403 struct active_request_slot
*newslot
;
1407 /* Wait for a slot to open up if the queue is full */
1408 while (active_requests
>= max_requests
) {
1409 curl_multi_perform(curlm
, &num_transfers
);
1410 if (num_transfers
< active_requests
)
1411 process_curl_messages();
1414 while (slot
!= NULL
&& slot
->in_use
)
1418 newslot
= xmalloc(sizeof(*newslot
));
1419 newslot
->curl
= NULL
;
1420 newslot
->in_use
= 0;
1421 newslot
->next
= NULL
;
1423 slot
= active_queue_head
;
1425 active_queue_head
= newslot
;
1427 while (slot
->next
!= NULL
)
1429 slot
->next
= newslot
;
1435 slot
->curl
= curl_easy_duphandle(curl_default
);
1436 curl_session_count
++;
1441 slot
->results
= NULL
;
1442 slot
->finished
= NULL
;
1443 slot
->callback_data
= NULL
;
1444 slot
->callback_func
= NULL
;
1445 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEFILE
, curl_cookie_file
);
1446 if (curl_save_cookies
)
1447 curl_easy_setopt(slot
->curl
, CURLOPT_COOKIEJAR
, curl_cookie_file
);
1448 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
1449 curl_easy_setopt(slot
->curl
, CURLOPT_RESOLVE
, host_resolutions
);
1450 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
1451 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
1452 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
1453 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
1454 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
1455 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDSIZE
, -1L);
1456 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
1457 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1458 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 1);
1459 curl_easy_setopt(slot
->curl
, CURLOPT_RANGE
, NULL
);
1462 * Default following to off unless "ALWAYS" is configured; this gives
1463 * callers a sane starting point, and they can tweak for individual
1464 * HTTP_FOLLOW_* cases themselves.
1466 if (http_follow_config
== HTTP_FOLLOW_ALWAYS
)
1467 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 1);
1469 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 0);
1471 curl_easy_setopt(slot
->curl
, CURLOPT_IPRESOLVE
, git_curl_ipresolve
);
1472 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPAUTH
, http_auth_methods
);
1473 if (http_auth
.password
|| curl_empty_auth_enabled())
1474 init_curl_http_auth(slot
->curl
);
1479 int start_active_slot(struct active_request_slot
*slot
)
1481 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
1484 if (curlm_result
!= CURLM_OK
&&
1485 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
1486 warning("curl_multi_add_handle failed: %s",
1487 curl_multi_strerror(curlm_result
));
1494 * We know there must be something to do, since we just added
1497 curl_multi_perform(curlm
, &num_transfers
);
1503 int (*fill
)(void *);
1504 struct fill_chain
*next
;
1507 static struct fill_chain
*fill_cfg
;
1509 void add_fill_function(void *data
, int (*fill
)(void *))
1511 struct fill_chain
*new_fill
= xmalloc(sizeof(*new_fill
));
1512 struct fill_chain
**linkp
= &fill_cfg
;
1513 new_fill
->data
= data
;
1514 new_fill
->fill
= fill
;
1515 new_fill
->next
= NULL
;
1517 linkp
= &(*linkp
)->next
;
1521 void fill_active_slots(void)
1523 struct active_request_slot
*slot
= active_queue_head
;
1525 while (active_requests
< max_requests
) {
1526 struct fill_chain
*fill
;
1527 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
1528 if (fill
->fill(fill
->data
))
1535 while (slot
!= NULL
) {
1536 if (!slot
->in_use
&& slot
->curl
!= NULL
1537 && curl_session_count
> min_curl_sessions
) {
1538 curl_easy_cleanup(slot
->curl
);
1540 curl_session_count
--;
1546 void step_active_slots(void)
1549 CURLMcode curlm_result
;
1552 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
1553 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
1554 if (num_transfers
< active_requests
) {
1555 process_curl_messages();
1556 fill_active_slots();
1560 void run_active_slot(struct active_request_slot
*slot
)
1566 struct timeval select_timeout
;
1569 slot
->finished
= &finished
;
1571 step_active_slots();
1575 curl_multi_timeout(curlm
, &curl_timeout
);
1576 if (curl_timeout
== 0) {
1578 } else if (curl_timeout
== -1) {
1579 select_timeout
.tv_sec
= 0;
1580 select_timeout
.tv_usec
= 50000;
1582 select_timeout
.tv_sec
= curl_timeout
/ 1000;
1583 select_timeout
.tv_usec
= (curl_timeout
% 1000) * 1000;
1590 curl_multi_fdset(curlm
, &readfds
, &writefds
, &excfds
, &max_fd
);
1593 * It can happen that curl_multi_timeout returns a pathologically
1594 * long timeout when curl_multi_fdset returns no file descriptors
1595 * to read. See commit message for more details.
1598 (select_timeout
.tv_sec
> 0 ||
1599 select_timeout
.tv_usec
> 50000)) {
1600 select_timeout
.tv_sec
= 0;
1601 select_timeout
.tv_usec
= 50000;
1604 select(max_fd
+1, &readfds
, &writefds
, &excfds
, &select_timeout
);
1609 * The value of slot->finished we set before the loop was used
1610 * to set our "finished" variable when our request completed.
1612 * 1. The slot may not have been reused for another requst
1613 * yet, in which case it still has &finished.
1615 * 2. The slot may already be in-use to serve another request,
1616 * which can further be divided into two cases:
1618 * (a) If call run_active_slot() hasn't been called for that
1619 * other request, slot->finished would have been cleared
1620 * by get_active_slot() and has NULL.
1622 * (b) If the request did call run_active_slot(), then the
1623 * call would have updated slot->finished at the beginning
1624 * of this function, and with the clearing of the member
1625 * below, we would find that slot->finished is now NULL.
1627 * In all cases, slot->finished has no useful information to
1628 * anybody at this point. Some compilers warn us for
1629 * attempting to smuggle a pointer that is about to become
1630 * invalid, i.e. &finished. We clear it here to assure them.
1632 slot
->finished
= NULL
;
1635 static void release_active_slot(struct active_request_slot
*slot
)
1637 closedown_active_slot(slot
);
1639 xmulti_remove_handle(slot
);
1640 if (curl_session_count
> min_curl_sessions
) {
1641 curl_easy_cleanup(slot
->curl
);
1643 curl_session_count
--;
1646 fill_active_slots();
1649 void finish_all_active_slots(void)
1651 struct active_request_slot
*slot
= active_queue_head
;
1653 while (slot
!= NULL
)
1655 run_active_slot(slot
);
1656 slot
= active_queue_head
;
1662 /* Helpers for modifying and creating URLs */
1663 static inline int needs_quote(int ch
)
1665 if (((ch
>= 'A') && (ch
<= 'Z'))
1666 || ((ch
>= 'a') && (ch
<= 'z'))
1667 || ((ch
>= '0') && (ch
<= '9'))
1675 static char *quote_ref_url(const char *base
, const char *ref
)
1677 struct strbuf buf
= STRBUF_INIT
;
1681 end_url_with_slash(&buf
, base
);
1683 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
1684 if (needs_quote(ch
))
1685 strbuf_addf(&buf
, "%%%02x", ch
);
1687 strbuf_addch(&buf
, *cp
);
1689 return strbuf_detach(&buf
, NULL
);
1692 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
1694 int only_two_digit_prefix
)
1696 end_url_with_slash(buf
, url
);
1698 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
1699 if (!only_two_digit_prefix
)
1700 strbuf_addstr(buf
, hex
+ 2);
1703 char *get_remote_object_url(const char *url
, const char *hex
,
1704 int only_two_digit_prefix
)
1706 struct strbuf buf
= STRBUF_INIT
;
1707 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
1708 return strbuf_detach(&buf
, NULL
);
1711 void normalize_curl_result(CURLcode
*result
, long http_code
,
1712 char *errorstr
, size_t errorlen
)
1715 * If we see a failing http code with CURLE_OK, we have turned off
1716 * FAILONERROR (to keep the server's custom error response), and should
1717 * translate the code into failure here.
1719 * Likewise, if we see a redirect (30x code), that means we turned off
1720 * redirect-following, and we should treat the result as an error.
1722 if (*result
== CURLE_OK
&& http_code
>= 300) {
1723 *result
= CURLE_HTTP_RETURNED_ERROR
;
1725 * Normally curl will already have put the "reason phrase"
1726 * from the server into curl_errorstr; unfortunately without
1727 * FAILONERROR it is lost, so we can give only the numeric
1730 xsnprintf(errorstr
, errorlen
,
1731 "The requested URL returned error: %ld",
1736 static int handle_curl_result(struct slot_results
*results
)
1738 normalize_curl_result(&results
->curl_result
, results
->http_code
,
1739 curl_errorstr
, sizeof(curl_errorstr
));
1741 if (results
->curl_result
== CURLE_OK
) {
1742 credential_approve(&http_auth
);
1743 credential_approve(&proxy_auth
);
1744 credential_approve(&cert_auth
);
1746 } else if (results
->curl_result
== CURLE_SSL_CERTPROBLEM
) {
1748 * We can't tell from here whether it's a bad path, bad
1749 * certificate, bad password, or something else wrong
1750 * with the certificate. So we reject the credential to
1751 * avoid caching or saving a bad password.
1753 credential_reject(&cert_auth
);
1755 #ifdef GIT_CURL_HAVE_CURLE_SSL_PINNEDPUBKEYNOTMATCH
1756 } else if (results
->curl_result
== CURLE_SSL_PINNEDPUBKEYNOTMATCH
) {
1757 return HTTP_NOMATCHPUBLICKEY
;
1759 } else if (missing_target(results
))
1760 return HTTP_MISSING_TARGET
;
1761 else if (results
->http_code
== 401) {
1762 if (http_auth
.username
&& http_auth
.password
) {
1763 credential_reject(&http_auth
);
1766 http_auth_methods
&= ~CURLAUTH_GSSNEGOTIATE
;
1767 if (results
->auth_avail
) {
1768 http_auth_methods
&= results
->auth_avail
;
1769 http_auth_methods_restricted
= 1;
1774 if (results
->http_connectcode
== 407)
1775 credential_reject(&proxy_auth
);
1776 if (!curl_errorstr
[0])
1777 strlcpy(curl_errorstr
,
1778 curl_easy_strerror(results
->curl_result
),
1779 sizeof(curl_errorstr
));
1784 int run_one_slot(struct active_request_slot
*slot
,
1785 struct slot_results
*results
)
1787 slot
->results
= results
;
1788 if (!start_active_slot(slot
)) {
1789 xsnprintf(curl_errorstr
, sizeof(curl_errorstr
),
1790 "failed to start HTTP request");
1791 return HTTP_START_FAILED
;
1794 run_active_slot(slot
);
1795 return handle_curl_result(results
);
1798 struct curl_slist
*http_copy_default_headers(void)
1800 struct curl_slist
*headers
= NULL
;
1801 const struct string_list_item
*item
;
1803 for_each_string_list_item(item
, &extra_http_headers
)
1804 headers
= curl_slist_append(headers
, item
->string
);
1809 static CURLcode
curlinfo_strbuf(CURL
*curl
, CURLINFO info
, struct strbuf
*buf
)
1815 ret
= curl_easy_getinfo(curl
, info
, &ptr
);
1817 strbuf_addstr(buf
, ptr
);
1822 * Check for and extract a content-type parameter. "raw"
1823 * should be positioned at the start of the potential
1824 * parameter, with any whitespace already removed.
1826 * "name" is the name of the parameter. The value is appended
1829 static int extract_param(const char *raw
, const char *name
,
1832 size_t len
= strlen(name
);
1834 if (strncasecmp(raw
, name
, len
))
1842 while (*raw
&& !isspace(*raw
) && *raw
!= ';')
1843 strbuf_addch(out
, *raw
++);
1848 * Extract a normalized version of the content type, with any
1849 * spaces suppressed, all letters lowercased, and no trailing ";"
1852 * Note that we will silently remove even invalid whitespace. For
1853 * example, "text / plain" is specifically forbidden by RFC 2616,
1854 * but "text/plain" is the only reasonable output, and this keeps
1857 * If the "charset" argument is not NULL, store the value of any
1858 * charset parameter there.
1861 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
1862 * "text / plain" -> "text/plain"
1864 static void extract_content_type(struct strbuf
*raw
, struct strbuf
*type
,
1865 struct strbuf
*charset
)
1870 strbuf_grow(type
, raw
->len
);
1871 for (p
= raw
->buf
; *p
; p
++) {
1878 strbuf_addch(type
, tolower(*p
));
1884 strbuf_reset(charset
);
1886 while (isspace(*p
) || *p
== ';')
1888 if (!extract_param(p
, "charset", charset
))
1890 while (*p
&& !isspace(*p
))
1894 if (!charset
->len
&& starts_with(type
->buf
, "text/"))
1895 strbuf_addstr(charset
, "ISO-8859-1");
1898 static void write_accept_language(struct strbuf
*buf
)
1901 * MAX_DECIMAL_PLACES must not be larger than 3. If it is larger than
1902 * that, q-value will be smaller than 0.001, the minimum q-value the
1903 * HTTP specification allows. See
1904 * https://datatracker.ietf.org/doc/html/rfc7231#section-5.3.1 for q-value.
1906 const int MAX_DECIMAL_PLACES
= 3;
1907 const int MAX_LANGUAGE_TAGS
= 1000;
1908 const int MAX_ACCEPT_LANGUAGE_HEADER_SIZE
= 4000;
1909 char **language_tags
= NULL
;
1911 const char *s
= get_preferred_languages();
1913 struct strbuf tag
= STRBUF_INIT
;
1915 /* Don't add Accept-Language header if no language is preferred. */
1920 * Split the colon-separated string of preferred languages into
1921 * language_tags array.
1924 /* collect language tag */
1925 for (; *s
&& (isalnum(*s
) || *s
== '_'); s
++)
1926 strbuf_addch(&tag
, *s
== '_' ? '-' : *s
);
1928 /* skip .codeset, @modifier and any other unnecessary parts */
1929 while (*s
&& *s
!= ':')
1934 REALLOC_ARRAY(language_tags
, num_langs
);
1935 language_tags
[num_langs
- 1] = strbuf_detach(&tag
, NULL
);
1936 if (num_langs
>= MAX_LANGUAGE_TAGS
- 1) /* -1 for '*' */
1941 /* write Accept-Language header into buf */
1943 int last_buf_len
= 0;
1949 REALLOC_ARRAY(language_tags
, num_langs
+ 1);
1950 language_tags
[num_langs
++] = "*"; /* it's OK; this won't be freed */
1952 /* compute decimal_places */
1953 for (max_q
= 1, decimal_places
= 0;
1954 max_q
< num_langs
&& decimal_places
<= MAX_DECIMAL_PLACES
;
1955 decimal_places
++, max_q
*= 10)
1958 xsnprintf(q_format
, sizeof(q_format
), ";q=0.%%0%dd", decimal_places
);
1960 strbuf_addstr(buf
, "Accept-Language: ");
1962 for (i
= 0; i
< num_langs
; i
++) {
1964 strbuf_addstr(buf
, ", ");
1966 strbuf_addstr(buf
, language_tags
[i
]);
1969 strbuf_addf(buf
, q_format
, max_q
- i
);
1971 if (buf
->len
> MAX_ACCEPT_LANGUAGE_HEADER_SIZE
) {
1972 strbuf_remove(buf
, last_buf_len
, buf
->len
- last_buf_len
);
1976 last_buf_len
= buf
->len
;
1980 /* free language tags -- last one is a static '*' */
1981 for (i
= 0; i
< num_langs
- 1; i
++)
1982 free(language_tags
[i
]);
1983 free(language_tags
);
1987 * Get an Accept-Language header which indicates user's preferred languages.
1991 * LANGUAGE=ko:en -> "Accept-Language: ko, en; q=0.9, *; q=0.1"
1992 * LANGUAGE=ko_KR.UTF-8:sr@latin -> "Accept-Language: ko-KR, sr; q=0.9, *; q=0.1"
1993 * LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *; q=0.1"
1994 * LANGUAGE= LANG=en_US.UTF-8 -> "Accept-Language: en-US, *; q=0.1"
1995 * LANGUAGE= LANG=C -> ""
1997 const char *http_get_accept_language_header(void)
1999 if (!cached_accept_language
) {
2000 struct strbuf buf
= STRBUF_INIT
;
2001 write_accept_language(&buf
);
2003 cached_accept_language
= strbuf_detach(&buf
, NULL
);
2006 return cached_accept_language
;
2009 static void http_opt_request_remainder(CURL
*curl
, off_t pos
)
2012 xsnprintf(buf
, sizeof(buf
), "%"PRIuMAX
"-", (uintmax_t)pos
);
2013 curl_easy_setopt(curl
, CURLOPT_RANGE
, buf
);
2016 /* http_request() targets */
2017 #define HTTP_REQUEST_STRBUF 0
2018 #define HTTP_REQUEST_FILE 1
2020 static int http_request(const char *url
,
2021 void *result
, int target
,
2022 const struct http_get_options
*options
)
2024 struct active_request_slot
*slot
;
2025 struct slot_results results
;
2026 struct curl_slist
*headers
= http_copy_default_headers();
2027 struct strbuf buf
= STRBUF_INIT
;
2028 const char *accept_language
;
2031 slot
= get_active_slot();
2032 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
2035 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
2037 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
2038 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEDATA
, result
);
2040 if (target
== HTTP_REQUEST_FILE
) {
2041 off_t posn
= ftello(result
);
2042 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
2045 http_opt_request_remainder(slot
->curl
, posn
);
2047 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
2051 curl_easy_setopt(slot
->curl
, CURLOPT_HEADERFUNCTION
, fwrite_wwwauth
);
2053 accept_language
= http_get_accept_language_header();
2055 if (accept_language
)
2056 headers
= curl_slist_append(headers
, accept_language
);
2058 strbuf_addstr(&buf
, "Pragma:");
2059 if (options
&& options
->no_cache
)
2060 strbuf_addstr(&buf
, " no-cache");
2061 if (options
&& options
->initial_request
&&
2062 http_follow_config
== HTTP_FOLLOW_INITIAL
)
2063 curl_easy_setopt(slot
->curl
, CURLOPT_FOLLOWLOCATION
, 1);
2065 headers
= curl_slist_append(headers
, buf
.buf
);
2067 /* Add additional headers here */
2068 if (options
&& options
->extra_headers
) {
2069 const struct string_list_item
*item
;
2070 for_each_string_list_item(item
, options
->extra_headers
) {
2071 headers
= curl_slist_append(headers
, item
->string
);
2075 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
2076 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
2077 curl_easy_setopt(slot
->curl
, CURLOPT_ENCODING
, "");
2078 curl_easy_setopt(slot
->curl
, CURLOPT_FAILONERROR
, 0);
2080 ret
= run_one_slot(slot
, &results
);
2082 if (options
&& options
->content_type
) {
2083 struct strbuf raw
= STRBUF_INIT
;
2084 curlinfo_strbuf(slot
->curl
, CURLINFO_CONTENT_TYPE
, &raw
);
2085 extract_content_type(&raw
, options
->content_type
,
2087 strbuf_release(&raw
);
2090 if (options
&& options
->effective_url
)
2091 curlinfo_strbuf(slot
->curl
, CURLINFO_EFFECTIVE_URL
,
2092 options
->effective_url
);
2094 curl_slist_free_all(headers
);
2095 strbuf_release(&buf
);
2101 * Update the "base" url to a more appropriate value, as deduced by
2102 * redirects seen when requesting a URL starting with "url".
2104 * The "asked" parameter is a URL that we asked curl to access, and must begin
2107 * The "got" parameter is the URL that curl reported to us as where we ended
2110 * Returns 1 if we updated the base url, 0 otherwise.
2112 * Our basic strategy is to compare "base" and "asked" to find the bits
2113 * specific to our request. We then strip those bits off of "got" to yield the
2114 * new base. So for example, if our base is "http://example.com/foo.git",
2115 * and we ask for "http://example.com/foo.git/info/refs", we might end up
2116 * with "https://other.example.com/foo.git/info/refs". We would want the
2117 * new URL to become "https://other.example.com/foo.git".
2119 * Note that this assumes a sane redirect scheme. It's entirely possible
2120 * in the example above to end up at a URL that does not even end in
2121 * "info/refs". In such a case we die. There's not much we can do, such a
2122 * scheme is unlikely to represent a real git repository, and failing to
2123 * rewrite the base opens options for malicious redirects to do funny things.
2125 static int update_url_from_redirect(struct strbuf
*base
,
2127 const struct strbuf
*got
)
2132 if (!strcmp(asked
, got
->buf
))
2135 if (!skip_prefix(asked
, base
->buf
, &tail
))
2136 BUG("update_url_from_redirect: %s is not a superset of %s",
2140 if (!strip_suffix_mem(got
->buf
, &new_len
, tail
))
2141 die(_("unable to update url base from redirection:\n"
2147 strbuf_add(base
, got
->buf
, new_len
);
2152 static int http_request_reauth(const char *url
,
2153 void *result
, int target
,
2154 struct http_get_options
*options
)
2156 int ret
= http_request(url
, result
, target
, options
);
2158 if (ret
!= HTTP_OK
&& ret
!= HTTP_REAUTH
)
2161 if (options
&& options
->effective_url
&& options
->base_url
) {
2162 if (update_url_from_redirect(options
->base_url
,
2163 url
, options
->effective_url
)) {
2164 credential_from_url(&http_auth
, options
->base_url
->buf
);
2165 url
= options
->effective_url
->buf
;
2169 if (ret
!= HTTP_REAUTH
)
2173 * The previous request may have put cruft into our output stream; we
2174 * should clear it out before making our next request.
2177 case HTTP_REQUEST_STRBUF
:
2178 strbuf_reset(result
);
2180 case HTTP_REQUEST_FILE
:
2181 if (fflush(result
)) {
2182 error_errno("unable to flush a file");
2183 return HTTP_START_FAILED
;
2186 if (ftruncate(fileno(result
), 0) < 0) {
2187 error_errno("unable to truncate a file");
2188 return HTTP_START_FAILED
;
2192 BUG("Unknown http_request target");
2195 credential_fill(&http_auth
);
2197 return http_request(url
, result
, target
, options
);
2200 int http_get_strbuf(const char *url
,
2201 struct strbuf
*result
,
2202 struct http_get_options
*options
)
2204 return http_request_reauth(url
, result
, HTTP_REQUEST_STRBUF
, options
);
2208 * Downloads a URL and stores the result in the given file.
2210 * If a previous interrupted download is detected (i.e. a previous temporary
2211 * file is still around) the download is resumed.
2213 int http_get_file(const char *url
, const char *filename
,
2214 struct http_get_options
*options
)
2217 struct strbuf tmpfile
= STRBUF_INIT
;
2220 strbuf_addf(&tmpfile
, "%s.temp", filename
);
2221 result
= fopen(tmpfile
.buf
, "a");
2223 error("Unable to open local file %s", tmpfile
.buf
);
2228 ret
= http_request_reauth(url
, result
, HTTP_REQUEST_FILE
, options
);
2231 if (ret
== HTTP_OK
&& finalize_object_file(tmpfile
.buf
, filename
))
2234 strbuf_release(&tmpfile
);
2238 int http_fetch_ref(const char *base
, struct ref
*ref
)
2240 struct http_get_options options
= {0};
2242 struct strbuf buffer
= STRBUF_INIT
;
2245 options
.no_cache
= 1;
2247 url
= quote_ref_url(base
, ref
->name
);
2248 if (http_get_strbuf(url
, &buffer
, &options
) == HTTP_OK
) {
2249 strbuf_rtrim(&buffer
);
2250 if (buffer
.len
== the_hash_algo
->hexsz
)
2251 ret
= get_oid_hex(buffer
.buf
, &ref
->old_oid
);
2252 else if (starts_with(buffer
.buf
, "ref: ")) {
2253 ref
->symref
= xstrdup(buffer
.buf
+ 5);
2258 strbuf_release(&buffer
);
2263 /* Helpers for fetching packs */
2264 static char *fetch_pack_index(unsigned char *hash
, const char *base_url
)
2267 struct strbuf buf
= STRBUF_INIT
;
2269 if (http_is_verbose
)
2270 fprintf(stderr
, "Getting index for pack %s\n", hash_to_hex(hash
));
2272 end_url_with_slash(&buf
, base_url
);
2273 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", hash_to_hex(hash
));
2274 url
= strbuf_detach(&buf
, NULL
);
2276 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(hash
));
2277 tmp
= strbuf_detach(&buf
, NULL
);
2279 if (http_get_file(url
, tmp
, NULL
) != HTTP_OK
) {
2280 error("Unable to get pack index %s", url
);
2288 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
2289 unsigned char *sha1
, const char *base_url
)
2291 struct packed_git
*new_pack
;
2292 char *tmp_idx
= NULL
;
2295 if (has_pack_index(sha1
)) {
2296 new_pack
= parse_pack_index(sha1
, sha1_pack_index_name(sha1
));
2298 return -1; /* parse_pack_index() already issued error message */
2302 tmp_idx
= fetch_pack_index(sha1
, base_url
);
2306 new_pack
= parse_pack_index(sha1
, tmp_idx
);
2311 return -1; /* parse_pack_index() already issued error message */
2314 ret
= verify_pack_index(new_pack
);
2316 close_pack_index(new_pack
);
2317 ret
= finalize_object_file(tmp_idx
, sha1_pack_index_name(sha1
));
2324 new_pack
->next
= *packs_head
;
2325 *packs_head
= new_pack
;
2329 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
2331 struct http_get_options options
= {0};
2335 struct strbuf buf
= STRBUF_INIT
;
2336 struct object_id oid
;
2338 end_url_with_slash(&buf
, base_url
);
2339 strbuf_addstr(&buf
, "objects/info/packs");
2340 url
= strbuf_detach(&buf
, NULL
);
2342 options
.no_cache
= 1;
2343 ret
= http_get_strbuf(url
, &buf
, &options
);
2349 if (skip_prefix(data
, "P pack-", &data
) &&
2350 !parse_oid_hex(data
, &oid
, &data
) &&
2351 skip_prefix(data
, ".pack", &data
) &&
2352 (*data
== '\n' || *data
== '\0')) {
2353 fetch_and_setup_pack_index(packs_head
, oid
.hash
, base_url
);
2355 data
= strchrnul(data
, '\n');
2358 data
++; /* skip past newline */
2366 void release_http_pack_request(struct http_pack_request
*preq
)
2368 if (preq
->packfile
) {
2369 fclose(preq
->packfile
);
2370 preq
->packfile
= NULL
;
2373 strbuf_release(&preq
->tmpfile
);
2378 static const char *default_index_pack_args
[] =
2379 {"index-pack", "--stdin", NULL
};
2381 int finish_http_pack_request(struct http_pack_request
*preq
)
2383 struct child_process ip
= CHILD_PROCESS_INIT
;
2387 fclose(preq
->packfile
);
2388 preq
->packfile
= NULL
;
2390 tmpfile_fd
= xopen(preq
->tmpfile
.buf
, O_RDONLY
);
2394 strvec_pushv(&ip
.args
, preq
->index_pack_args
?
2395 preq
->index_pack_args
:
2396 default_index_pack_args
);
2398 if (preq
->preserve_index_pack_stdout
)
2403 if (run_command(&ip
)) {
2410 unlink(preq
->tmpfile
.buf
);
2414 void http_install_packfile(struct packed_git
*p
,
2415 struct packed_git
**list_to_remove_from
)
2417 struct packed_git
**lst
= list_to_remove_from
;
2420 lst
= &((*lst
)->next
);
2421 *lst
= (*lst
)->next
;
2423 install_packed_git(the_repository
, p
);
2426 struct http_pack_request
*new_http_pack_request(
2427 const unsigned char *packed_git_hash
, const char *base_url
) {
2429 struct strbuf buf
= STRBUF_INIT
;
2431 end_url_with_slash(&buf
, base_url
);
2432 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
2433 hash_to_hex(packed_git_hash
));
2434 return new_direct_http_pack_request(packed_git_hash
,
2435 strbuf_detach(&buf
, NULL
));
2438 struct http_pack_request
*new_direct_http_pack_request(
2439 const unsigned char *packed_git_hash
, char *url
)
2441 off_t prev_posn
= 0;
2442 struct http_pack_request
*preq
;
2444 CALLOC_ARRAY(preq
, 1);
2445 strbuf_init(&preq
->tmpfile
, 0);
2449 strbuf_addf(&preq
->tmpfile
, "%s.temp", sha1_pack_name(packed_git_hash
));
2450 preq
->packfile
= fopen(preq
->tmpfile
.buf
, "a");
2451 if (!preq
->packfile
) {
2452 error("Unable to open local file %s for pack",
2457 preq
->slot
= get_active_slot();
2458 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEDATA
, preq
->packfile
);
2459 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
2460 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
2461 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
2465 * If there is data present from a previous transfer attempt,
2466 * resume where it left off
2468 prev_posn
= ftello(preq
->packfile
);
2470 if (http_is_verbose
)
2472 "Resuming fetch of pack %s at byte %"PRIuMAX
"\n",
2473 hash_to_hex(packed_git_hash
),
2474 (uintmax_t)prev_posn
);
2475 http_opt_request_remainder(preq
->slot
->curl
, prev_posn
);
2481 strbuf_release(&preq
->tmpfile
);
2487 /* Helpers for fetching objects (loose) */
2488 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
2491 unsigned char expn
[4096];
2492 size_t size
= eltsize
* nmemb
;
2494 struct http_object_request
*freq
= data
;
2495 struct active_request_slot
*slot
= freq
->slot
;
2498 CURLcode c
= curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
,
2501 BUG("curl_easy_getinfo for HTTP code failed: %s",
2502 curl_easy_strerror(c
));
2503 if (slot
->http_code
>= 300)
2508 ssize_t retval
= xwrite(freq
->localfile
,
2509 (char *) ptr
+ posn
, size
- posn
);
2511 return posn
/ eltsize
;
2513 } while (posn
< size
);
2515 freq
->stream
.avail_in
= size
;
2516 freq
->stream
.next_in
= (void *)ptr
;
2518 freq
->stream
.next_out
= expn
;
2519 freq
->stream
.avail_out
= sizeof(expn
);
2520 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
2521 the_hash_algo
->update_fn(&freq
->c
, expn
,
2522 sizeof(expn
) - freq
->stream
.avail_out
);
2523 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
2527 struct http_object_request
*new_http_object_request(const char *base_url
,
2528 const struct object_id
*oid
)
2530 char *hex
= oid_to_hex(oid
);
2531 struct strbuf filename
= STRBUF_INIT
;
2532 struct strbuf prevfile
= STRBUF_INIT
;
2534 char prev_buf
[PREV_BUF_SIZE
];
2535 ssize_t prev_read
= 0;
2536 off_t prev_posn
= 0;
2537 struct http_object_request
*freq
;
2539 CALLOC_ARRAY(freq
, 1);
2540 strbuf_init(&freq
->tmpfile
, 0);
2541 oidcpy(&freq
->oid
, oid
);
2542 freq
->localfile
= -1;
2544 loose_object_path(the_repository
, &filename
, oid
);
2545 strbuf_addf(&freq
->tmpfile
, "%s.temp", filename
.buf
);
2547 strbuf_addf(&prevfile
, "%s.prev", filename
.buf
);
2548 unlink_or_warn(prevfile
.buf
);
2549 rename(freq
->tmpfile
.buf
, prevfile
.buf
);
2550 unlink_or_warn(freq
->tmpfile
.buf
);
2551 strbuf_release(&filename
);
2553 if (freq
->localfile
!= -1)
2554 error("fd leakage in start: %d", freq
->localfile
);
2555 freq
->localfile
= open(freq
->tmpfile
.buf
,
2556 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
2558 * This could have failed due to the "lazy directory creation";
2559 * try to mkdir the last path component.
2561 if (freq
->localfile
< 0 && errno
== ENOENT
) {
2562 char *dir
= strrchr(freq
->tmpfile
.buf
, '/');
2565 mkdir(freq
->tmpfile
.buf
, 0777);
2568 freq
->localfile
= open(freq
->tmpfile
.buf
,
2569 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
2572 if (freq
->localfile
< 0) {
2573 error_errno("Couldn't create temporary file %s",
2578 git_inflate_init(&freq
->stream
);
2580 the_hash_algo
->init_fn(&freq
->c
);
2582 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
2585 * If a previous temp file is present, process what was already
2588 prevlocal
= open(prevfile
.buf
, O_RDONLY
);
2589 if (prevlocal
!= -1) {
2591 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
2593 if (fwrite_sha1_file(prev_buf
,
2596 freq
) == prev_read
) {
2597 prev_posn
+= prev_read
;
2602 } while (prev_read
> 0);
2605 unlink_or_warn(prevfile
.buf
);
2606 strbuf_release(&prevfile
);
2609 * Reset inflate/SHA1 if there was an error reading the previous temp
2610 * file; also rewind to the beginning of the local file.
2612 if (prev_read
== -1) {
2613 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
2614 git_inflate_init(&freq
->stream
);
2615 the_hash_algo
->init_fn(&freq
->c
);
2618 lseek(freq
->localfile
, 0, SEEK_SET
);
2619 if (ftruncate(freq
->localfile
, 0) < 0) {
2620 error_errno("Couldn't truncate temporary file %s",
2627 freq
->slot
= get_active_slot();
2629 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEDATA
, freq
);
2630 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FAILONERROR
, 0);
2631 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
2632 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
2633 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
2634 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
2637 * If we have successfully processed data from a previous fetch
2638 * attempt, only fetch the data we don't already have.
2641 if (http_is_verbose
)
2643 "Resuming fetch of object %s at byte %"PRIuMAX
"\n",
2644 hex
, (uintmax_t)prev_posn
);
2645 http_opt_request_remainder(freq
->slot
->curl
, prev_posn
);
2651 strbuf_release(&prevfile
);
2657 void process_http_object_request(struct http_object_request
*freq
)
2661 freq
->curl_result
= freq
->slot
->curl_result
;
2662 freq
->http_code
= freq
->slot
->http_code
;
2666 int finish_http_object_request(struct http_object_request
*freq
)
2669 struct strbuf filename
= STRBUF_INIT
;
2671 close(freq
->localfile
);
2672 freq
->localfile
= -1;
2674 process_http_object_request(freq
);
2676 if (freq
->http_code
== 416) {
2677 warning("requested range invalid; we may already have all the data.");
2678 } else if (freq
->curl_result
!= CURLE_OK
) {
2679 if (stat(freq
->tmpfile
.buf
, &st
) == 0)
2680 if (st
.st_size
== 0)
2681 unlink_or_warn(freq
->tmpfile
.buf
);
2685 git_inflate_end(&freq
->stream
);
2686 the_hash_algo
->final_oid_fn(&freq
->real_oid
, &freq
->c
);
2687 if (freq
->zret
!= Z_STREAM_END
) {
2688 unlink_or_warn(freq
->tmpfile
.buf
);
2691 if (!oideq(&freq
->oid
, &freq
->real_oid
)) {
2692 unlink_or_warn(freq
->tmpfile
.buf
);
2695 loose_object_path(the_repository
, &filename
, &freq
->oid
);
2696 freq
->rename
= finalize_object_file(freq
->tmpfile
.buf
, filename
.buf
);
2697 strbuf_release(&filename
);
2699 return freq
->rename
;
2702 void abort_http_object_request(struct http_object_request
*freq
)
2704 unlink_or_warn(freq
->tmpfile
.buf
);
2706 release_http_object_request(freq
);
2709 void release_http_object_request(struct http_object_request
*freq
)
2711 if (freq
->localfile
!= -1) {
2712 close(freq
->localfile
);
2713 freq
->localfile
= -1;
2715 FREE_AND_NULL(freq
->url
);
2717 freq
->slot
->callback_func
= NULL
;
2718 freq
->slot
->callback_data
= NULL
;
2719 release_active_slot(freq
->slot
);
2722 strbuf_release(&freq
->tmpfile
);