]> git.ipfire.org Git - thirdparty/git.git/blame - http.c
http: correct curl version check for CURLOPT_PINNEDPUBLICKEY
[thirdparty/git.git] / http.c
CommitLineData
1c4b6604 1#include "git-compat-util.h"
29508e1e 2#include "http.h"
b2141fc1 3#include "config.h"
2264dfa5 4#include "pack.h"
de1a2fdd 5#include "sideband.h"
fe72d420 6#include "run-command.h"
f39f72d8 7#include "url.h"
6a56993b 8#include "urlmatch.h"
148bb6a7 9#include "credential.h"
745c7c8e 10#include "version.h"
047ec602 11#include "pkt-line.h"
93f7d910 12#include "gettext.h"
f4113cac 13#include "transport.h"
4f39cd82 14#include "packfile.h"
19113a26 15#include "protocol.h"
83411783 16#include "string-list.h"
a80d72db 17#include "object-store.h"
29508e1e 18
74c682d3 19static struct trace_key trace_curl = TRACE_KEY_INIT(CURL);
8ba18e6f 20static int trace_curl_data = 1;
827e7d4d 21static int trace_curl_redact = 1;
c915f11e 22long int git_curl_ipresolve = CURL_IPRESOLVE_WHATEVER;
4251ccbd 23int active_requests;
e9176745 24int http_is_verbose;
37ee680d 25ssize_t http_post_buffer = 16 * LARGE_PACKET_MAX;
29508e1e 26
ad75ebe5
TRC
27static int min_curl_sessions = 1;
28static int curl_session_count;
cc3530e8
MH
29static int max_requests = -1;
30static CURLM *curlm;
cc3530e8 31static CURL *curl_default;
5424bc55
TRC
32
33#define PREV_BUF_SIZE 4096
5424bc55 34
29508e1e
NH
35char curl_errorstr[CURL_ERROR_SIZE];
36
cc3530e8 37static int curl_ssl_verify = -1;
4bc444eb 38static int curl_ssl_try;
d73019fe 39static const char *curl_http_version = NULL;
4251ccbd 40static const char *ssl_cert;
f6f2a9e4 41static const char *ssl_cipherlist;
01861cb7
EP
42static const char *ssl_version;
43static struct {
44 const char *name;
45 long ssl_version;
46} sslversions[] = {
47 { "sslv2", CURL_SSLVERSION_SSLv2 },
48 { "sslv3", CURL_SSLVERSION_SSLv3 },
49 { "tlsv1", CURL_SSLVERSION_TLSv1 },
50#if LIBCURL_VERSION_NUM >= 0x072200
51 { "tlsv1.0", CURL_SSLVERSION_TLSv1_0 },
52 { "tlsv1.1", CURL_SSLVERSION_TLSv1_1 },
53 { "tlsv1.2", CURL_SSLVERSION_TLSv1_2 },
54#endif
d81b651f
LV
55#if LIBCURL_VERSION_NUM >= 0x073400
56 { "tlsv1.3", CURL_SSLVERSION_TLSv1_3 },
57#endif
01861cb7 58};
4251ccbd 59static const char *ssl_key;
4251ccbd 60static const char *ssl_capath;
b8fd6008 61static const char *curl_no_proxy;
905a0288 62#if LIBCURL_VERSION_NUM >= 0x072700
aeff8a61
CE
63static const char *ssl_pinnedkey;
64#endif
4251ccbd 65static const char *ssl_cainfo;
cc3530e8
MH
66static long curl_low_speed_limit = -1;
67static long curl_low_speed_time = -1;
4251ccbd
JH
68static int curl_ftp_no_epsv;
69static const char *curl_http_proxy;
ef976395 70static const char *http_proxy_authmethod;
88238e02
JLS
71
72static const char *http_proxy_ssl_cert;
73static const char *http_proxy_ssl_key;
74static const char *http_proxy_ssl_ca_info;
75static struct credential proxy_cert_auth = CREDENTIAL_INIT;
76static int proxy_ssl_cert_password_required;
77
ef976395
KF
78static struct {
79 const char *name;
80 long curlauth_param;
81} proxy_authmethods[] = {
82 { "basic", CURLAUTH_BASIC },
83 { "digest", CURLAUTH_DIGEST },
84 { "negotiate", CURLAUTH_GSSNEGOTIATE },
85 { "ntlm", CURLAUTH_NTLM },
ef976395 86 { "anyauth", CURLAUTH_ANY },
ef976395
KF
87 /*
88 * CURLAUTH_DIGEST_IE has no corresponding command-line option in
89 * curl(1) and is not included in CURLAUTH_ANY, so we leave it out
90 * here, too
91 */
92};
dd5df538 93#ifdef CURLGSSAPI_DELEGATION_FLAG
26a7b234
PS
94static const char *curl_deleg;
95static struct {
96 const char *name;
97 long curl_deleg_param;
98} curl_deleg_levels[] = {
99 { "none", CURLGSSAPI_DELEGATION_NONE },
100 { "policy", CURLGSSAPI_DELEGATION_POLICY_FLAG },
101 { "always", CURLGSSAPI_DELEGATION_FLAG },
102};
103#endif
104
372370f1
KF
105static struct credential proxy_auth = CREDENTIAL_INIT;
106static const char *curl_proxyuserpwd;
bcfb95dd 107static const char *curl_cookie_file;
912b2acf 108static int curl_save_cookies;
2501aff8 109struct credential http_auth = CREDENTIAL_INIT;
a4ddbc33 110static int http_proactive_auth;
b1d1058c 111static const char *user_agent;
40a18fc7 112static int curl_empty_auth = -1;
29508e1e 113
50d34137
JK
114enum http_follow_config http_follow_config = HTTP_FOLLOW_INITIAL;
115
148bb6a7 116static struct credential cert_auth = CREDENTIAL_INIT;
30dd9163 117static int ssl_cert_password_required;
4dbe6646 118static unsigned long http_auth_methods = CURLAUTH_ANY;
40a18fc7
JK
119static int http_auth_methods_restricted;
120/* Modes for which empty_auth cannot actually help us. */
121static unsigned long empty_auth_useless =
122 CURLAUTH_BASIC
40a18fc7 123 | CURLAUTH_DIGEST_IE
40a18fc7 124 | CURLAUTH_DIGEST;
30dd9163 125
cc3530e8 126static struct curl_slist *pragma_header;
5424bc55 127static struct curl_slist *no_pragma_header;
4d17fd25 128static struct string_list extra_http_headers = STRING_LIST_INIT_DUP;
e9176745 129
4251ccbd 130static struct active_request_slot *active_queue_head;
29508e1e 131
f18604bb
YE
132static char *cached_accept_language;
133
21084e84
JS
134static char *http_ssl_backend;
135
93aef7c7 136static int http_schannel_check_revoke = 1;
b67d40ad
JS
137/*
138 * With the backend being set to `schannel`, setting sslCAinfo would override
139 * the Certificate Store in cURL v7.60.0 and later, which is not what we want
140 * by default.
141 */
142static int http_schannel_use_ssl_cainfo;
93aef7c7 143
a04ff3ec 144size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
29508e1e
NH
145{
146 size_t size = eltsize * nmemb;
f444e528
JH
147 struct buffer *buffer = buffer_;
148
028c2976
MH
149 if (size > buffer->buf.len - buffer->posn)
150 size = buffer->buf.len - buffer->posn;
151 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
29508e1e 152 buffer->posn += size;
028c2976 153
5c3d5a38 154 return size / eltsize;
29508e1e
NH
155}
156
3944ba0c
MS
157curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
158{
159 struct buffer *buffer = clientp;
160
161 switch (cmd) {
162 case CURLIOCMD_NOP:
163 return CURLIOE_OK;
164
165 case CURLIOCMD_RESTARTREAD:
166 buffer->posn = 0;
167 return CURLIOE_OK;
168
169 default:
170 return CURLIOE_UNKNOWNCMD;
171 }
172}
3944ba0c 173
a04ff3ec 174size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
29508e1e
NH
175{
176 size_t size = eltsize * nmemb;
f444e528
JH
177 struct strbuf *buffer = buffer_;
178
028c2976 179 strbuf_add(buffer, ptr, size);
5c3d5a38 180 return nmemb;
29508e1e
NH
181}
182
a04ff3ec 183size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf)
29508e1e 184{
5c3d5a38 185 return nmemb;
29508e1e
NH
186}
187
b90a3d7b
JH
188static void closedown_active_slot(struct active_request_slot *slot)
189{
190 active_requests--;
191 slot->in_use = 0;
192}
193
194static void finish_active_slot(struct active_request_slot *slot)
195{
196 closedown_active_slot(slot);
197 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
198
199 if (slot->finished != NULL)
200 (*slot->finished) = 1;
201
202 /* Store slot results so they can be read after the slot is reused */
203 if (slot->results != NULL) {
204 slot->results->curl_result = slot->curl_result;
205 slot->results->http_code = slot->http_code;
b90a3d7b
JH
206 curl_easy_getinfo(slot->curl, CURLINFO_HTTPAUTH_AVAIL,
207 &slot->results->auth_avail);
372370f1
KF
208
209 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CONNECTCODE,
210 &slot->results->http_connectcode);
b90a3d7b
JH
211 }
212
213 /* Run callback if appropriate */
214 if (slot->callback_func != NULL)
215 slot->callback_func(slot->callback_data);
216}
217
d8b6b84d
EW
218static void xmulti_remove_handle(struct active_request_slot *slot)
219{
d8b6b84d 220 curl_multi_remove_handle(curlm, slot->curl);
d8b6b84d
EW
221}
222
29508e1e
NH
223static void process_curl_messages(void)
224{
225 int num_messages;
226 struct active_request_slot *slot;
227 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
228
229 while (curl_message != NULL) {
230 if (curl_message->msg == CURLMSG_DONE) {
231 int curl_result = curl_message->data.result;
232 slot = active_queue_head;
233 while (slot != NULL &&
234 slot->curl != curl_message->easy_handle)
235 slot = slot->next;
236 if (slot != NULL) {
d8b6b84d 237 xmulti_remove_handle(slot);
29508e1e
NH
238 slot->curl_result = curl_result;
239 finish_active_slot(slot);
240 } else {
241 fprintf(stderr, "Received DONE message for unknown request!\n");
242 }
243 } else {
244 fprintf(stderr, "Unknown CURL message received: %d\n",
245 (int)curl_message->msg);
246 }
247 curl_message = curl_multi_info_read(curlm, &num_messages);
248 }
249}
29508e1e 250
ef90d6d4 251static int http_options(const char *var, const char *value, void *cb)
29508e1e 252{
d73019fe
FC
253 if (!strcmp("http.version", var)) {
254 return git_config_string(&curl_http_version, var, value);
255 }
29508e1e 256 if (!strcmp("http.sslverify", var)) {
7059cd99 257 curl_ssl_verify = git_config_bool(var, value);
29508e1e
NH
258 return 0;
259 }
f6f2a9e4
LKS
260 if (!strcmp("http.sslcipherlist", var))
261 return git_config_string(&ssl_cipherlist, var, value);
01861cb7
EP
262 if (!strcmp("http.sslversion", var))
263 return git_config_string(&ssl_version, var, value);
7059cd99 264 if (!strcmp("http.sslcert", var))
8d154964 265 return git_config_pathname(&ssl_cert, var, value);
7059cd99 266 if (!strcmp("http.sslkey", var))
8d154964 267 return git_config_pathname(&ssl_key, var, value);
7059cd99 268 if (!strcmp("http.sslcapath", var))
bf9acba2 269 return git_config_pathname(&ssl_capath, var, value);
7059cd99 270 if (!strcmp("http.sslcainfo", var))
bf9acba2 271 return git_config_pathname(&ssl_cainfo, var, value);
754ae192 272 if (!strcmp("http.sslcertpasswordprotected", var)) {
3f4ccd2b 273 ssl_cert_password_required = git_config_bool(var, value);
754ae192
ML
274 return 0;
275 }
4bc444eb
MV
276 if (!strcmp("http.ssltry", var)) {
277 curl_ssl_try = git_config_bool(var, value);
278 return 0;
279 }
21084e84
JS
280 if (!strcmp("http.sslbackend", var)) {
281 free(http_ssl_backend);
282 http_ssl_backend = xstrdup_or_null(value);
283 return 0;
284 }
285
93aef7c7
BF
286 if (!strcmp("http.schannelcheckrevoke", var)) {
287 http_schannel_check_revoke = git_config_bool(var, value);
288 return 0;
289 }
290
b67d40ad
JS
291 if (!strcmp("http.schannelusesslcainfo", var)) {
292 http_schannel_use_ssl_cainfo = git_config_bool(var, value);
293 return 0;
294 }
295
ad75ebe5
TRC
296 if (!strcmp("http.minsessions", var)) {
297 min_curl_sessions = git_config_int(var, value);
ad75ebe5
TRC
298 if (min_curl_sessions > 1)
299 min_curl_sessions = 1;
ad75ebe5
TRC
300 return 0;
301 }
29508e1e 302 if (!strcmp("http.maxrequests", var)) {
7059cd99 303 max_requests = git_config_int(var, value);
29508e1e
NH
304 return 0;
305 }
29508e1e 306 if (!strcmp("http.lowspeedlimit", var)) {
7059cd99 307 curl_low_speed_limit = (long)git_config_int(var, value);
29508e1e
NH
308 return 0;
309 }
310 if (!strcmp("http.lowspeedtime", var)) {
7059cd99 311 curl_low_speed_time = (long)git_config_int(var, value);
29508e1e
NH
312 return 0;
313 }
314
3ea099d4
SK
315 if (!strcmp("http.noepsv", var)) {
316 curl_ftp_no_epsv = git_config_bool(var, value);
317 return 0;
318 }
7059cd99
JH
319 if (!strcmp("http.proxy", var))
320 return git_config_string(&curl_http_proxy, var, value);
3ea099d4 321
ef976395
KF
322 if (!strcmp("http.proxyauthmethod", var))
323 return git_config_string(&http_proxy_authmethod, var, value);
324
88238e02
JLS
325 if (!strcmp("http.proxysslcert", var))
326 return git_config_string(&http_proxy_ssl_cert, var, value);
327
328 if (!strcmp("http.proxysslkey", var))
329 return git_config_string(&http_proxy_ssl_key, var, value);
330
331 if (!strcmp("http.proxysslcainfo", var))
332 return git_config_string(&http_proxy_ssl_ca_info, var, value);
333
334 if (!strcmp("http.proxysslcertpasswordprotected", var)) {
335 proxy_ssl_cert_password_required = git_config_bool(var, value);
336 return 0;
337 }
338
bcfb95dd 339 if (!strcmp("http.cookiefile", var))
e5a39ad8 340 return git_config_pathname(&curl_cookie_file, var, value);
912b2acf
DB
341 if (!strcmp("http.savecookies", var)) {
342 curl_save_cookies = git_config_bool(var, value);
343 return 0;
344 }
bcfb95dd 345
de1a2fdd 346 if (!strcmp("http.postbuffer", var)) {
37ee680d
DT
347 http_post_buffer = git_config_ssize_t(var, value);
348 if (http_post_buffer < 0)
349 warning(_("negative value for http.postbuffer; defaulting to %d"), LARGE_PACKET_MAX);
de1a2fdd
SP
350 if (http_post_buffer < LARGE_PACKET_MAX)
351 http_post_buffer = LARGE_PACKET_MAX;
352 return 0;
353 }
354
b1d1058c
SO
355 if (!strcmp("http.useragent", var))
356 return git_config_string(&user_agent, var, value);
357
121061f6 358 if (!strcmp("http.emptyauth", var)) {
40a18fc7
JK
359 if (value && !strcmp("auto", value))
360 curl_empty_auth = -1;
361 else
362 curl_empty_auth = git_config_bool(var, value);
121061f6 363 return 0;
364 }
365
26a7b234 366 if (!strcmp("http.delegation", var)) {
dd5df538 367#ifdef CURLGSSAPI_DELEGATION_FLAG
26a7b234
PS
368 return git_config_string(&curl_deleg, var, value);
369#else
370 warning(_("Delegation control is not supported with cURL < 7.22.0"));
371 return 0;
372#endif
373 }
374
aeff8a61 375 if (!strcmp("http.pinnedpubkey", var)) {
905a0288 376#if LIBCURL_VERSION_NUM >= 0x072700
aeff8a61
CE
377 return git_config_pathname(&ssl_pinnedkey, var, value);
378#else
905a0288 379 warning(_("Public key pinning not supported with cURL < 7.39.0"));
aeff8a61
CE
380 return 0;
381#endif
382 }
e79112d2 383
8cb01e2f
JS
384 if (!strcmp("http.extraheader", var)) {
385 if (!value) {
386 return config_error_nonbool(var);
387 } else if (!*value) {
4d17fd25 388 string_list_clear(&extra_http_headers, 0);
8cb01e2f 389 } else {
4d17fd25 390 string_list_append(&extra_http_headers, value);
8cb01e2f
JS
391 }
392 return 0;
393 }
394
50d34137
JK
395 if (!strcmp("http.followredirects", var)) {
396 if (value && !strcmp(value, "initial"))
397 http_follow_config = HTTP_FOLLOW_INITIAL;
398 else if (git_config_bool(var, value))
399 http_follow_config = HTTP_FOLLOW_ALWAYS;
400 else
401 http_follow_config = HTTP_FOLLOW_NONE;
402 return 0;
403 }
404
29508e1e 405 /* Fall back on the default ones */
ef90d6d4 406 return git_default_config(var, value, cb);
29508e1e
NH
407}
408
40a18fc7
JK
409static int curl_empty_auth_enabled(void)
410{
411 if (curl_empty_auth >= 0)
412 return curl_empty_auth;
413
40a18fc7
JK
414 /*
415 * In the automatic case, kick in the empty-auth
416 * hack as long as we would potentially try some
417 * method more exotic than "Basic" or "Digest".
418 *
419 * But only do this when this is our second or
420 * subsequent request, as by then we know what
421 * methods are available.
422 */
423 if (http_auth_methods_restricted &&
424 (http_auth_methods & ~empty_auth_useless))
425 return 1;
40a18fc7
JK
426 return 0;
427}
428
c33976cb
JH
429static void init_curl_http_auth(CURL *result)
430{
5275c308 431 if (!http_auth.username || !*http_auth.username) {
40a18fc7 432 if (curl_empty_auth_enabled())
121061f6 433 curl_easy_setopt(result, CURLOPT_USERPWD, ":");
6f4c347c 434 return;
121061f6 435 }
6f4c347c
JK
436
437 credential_fill(&http_auth);
438
6f4c347c
JK
439 curl_easy_setopt(result, CURLOPT_USERNAME, http_auth.username);
440 curl_easy_setopt(result, CURLOPT_PASSWORD, http_auth.password);
c33976cb
JH
441}
442
ef976395
KF
443/* *var must be free-able */
444static void var_override(const char **var, char *value)
445{
446 if (value) {
447 free((void *)*var);
448 *var = xstrdup(value);
449 }
450}
451
372370f1
KF
452static void set_proxyauth_name_password(CURL *result)
453{
372370f1
KF
454 curl_easy_setopt(result, CURLOPT_PROXYUSERNAME,
455 proxy_auth.username);
456 curl_easy_setopt(result, CURLOPT_PROXYPASSWORD,
457 proxy_auth.password);
372370f1
KF
458}
459
ef976395
KF
460static void init_curl_proxy_auth(CURL *result)
461{
372370f1
KF
462 if (proxy_auth.username) {
463 if (!proxy_auth.password)
464 credential_fill(&proxy_auth);
465 set_proxyauth_name_password(result);
466 }
467
ef976395
KF
468 var_override(&http_proxy_authmethod, getenv("GIT_HTTP_PROXY_AUTHMETHOD"));
469
ef976395
KF
470 if (http_proxy_authmethod) {
471 int i;
472 for (i = 0; i < ARRAY_SIZE(proxy_authmethods); i++) {
473 if (!strcmp(http_proxy_authmethod, proxy_authmethods[i].name)) {
474 curl_easy_setopt(result, CURLOPT_PROXYAUTH,
475 proxy_authmethods[i].curlauth_param);
476 break;
477 }
478 }
479 if (i == ARRAY_SIZE(proxy_authmethods)) {
480 warning("unsupported proxy authentication method %s: using anyauth",
481 http_proxy_authmethod);
482 curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
483 }
484 }
485 else
486 curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
ef976395
KF
487}
488
30dd9163
ML
489static int has_cert_password(void)
490{
30dd9163
ML
491 if (ssl_cert == NULL || ssl_cert_password_required != 1)
492 return 0;
148bb6a7
JK
493 if (!cert_auth.password) {
494 cert_auth.protocol = xstrdup("cert");
24036686 495 cert_auth.host = xstrdup("");
75e9a405 496 cert_auth.username = xstrdup("");
148bb6a7
JK
497 cert_auth.path = xstrdup(ssl_cert);
498 credential_fill(&cert_auth);
499 }
500 return 1;
30dd9163
ML
501}
502
88238e02
JLS
503#if LIBCURL_VERSION_NUM >= 0x073400
504static int has_proxy_cert_password(void)
505{
506 if (http_proxy_ssl_cert == NULL || proxy_ssl_cert_password_required != 1)
507 return 0;
508 if (!proxy_cert_auth.password) {
509 proxy_cert_auth.protocol = xstrdup("cert");
048abe17 510 proxy_cert_auth.host = xstrdup("");
88238e02
JLS
511 proxy_cert_auth.username = xstrdup("");
512 proxy_cert_auth.path = xstrdup(http_proxy_ssl_cert);
513 credential_fill(&proxy_cert_auth);
514 }
515 return 1;
516}
517#endif
518
47ce1153
JK
519#if LIBCURL_VERSION_NUM >= 0x071900
520static void set_curl_keepalive(CURL *c)
521{
522 curl_easy_setopt(c, CURLOPT_TCP_KEEPALIVE, 1);
523}
524
013c7e2b 525#else
a15d069a
EW
526static int sockopt_callback(void *client, curl_socket_t fd, curlsocktype type)
527{
528 int ka = 1;
529 int rc;
530 socklen_t len = (socklen_t)sizeof(ka);
531
532 if (type != CURLSOCKTYPE_IPCXN)
533 return 0;
534
535 rc = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void *)&ka, len);
536 if (rc < 0)
d2e255ee 537 warning_errno("unable to set SO_KEEPALIVE on socket");
a15d069a
EW
538
539 return 0; /* CURL_SOCKOPT_OK only exists since curl 7.21.5 */
540}
541
47ce1153
JK
542static void set_curl_keepalive(CURL *c)
543{
544 curl_easy_setopt(c, CURLOPT_SOCKOPTFUNCTION, sockopt_callback);
545}
47ce1153
JK
546#endif
547
74c682d3
EP
548static void redact_sensitive_header(struct strbuf *header)
549{
550 const char *sensitive_header;
551
827e7d4d
JT
552 if (trace_curl_redact &&
553 (skip_prefix(header->buf, "Authorization:", &sensitive_header) ||
554 skip_prefix(header->buf, "Proxy-Authorization:", &sensitive_header))) {
74c682d3
EP
555 /* The first token is the type, which is OK to log */
556 while (isspace(*sensitive_header))
557 sensitive_header++;
558 while (*sensitive_header && !isspace(*sensitive_header))
559 sensitive_header++;
560 /* Everything else is opaque and possibly sensitive */
561 strbuf_setlen(header, sensitive_header - header->buf);
562 strbuf_addstr(header, " <redacted>");
827e7d4d 563 } else if (trace_curl_redact &&
83411783
JT
564 skip_prefix(header->buf, "Cookie:", &sensitive_header)) {
565 struct strbuf redacted_header = STRBUF_INIT;
827e7d4d 566 const char *cookie;
83411783
JT
567
568 while (isspace(*sensitive_header))
569 sensitive_header++;
570
827e7d4d 571 cookie = sensitive_header;
83411783
JT
572
573 while (cookie) {
574 char *equals;
575 char *semicolon = strstr(cookie, "; ");
576 if (semicolon)
577 *semicolon = 0;
578 equals = strchrnul(cookie, '=');
579 if (!equals) {
580 /* invalid cookie, just append and continue */
581 strbuf_addstr(&redacted_header, cookie);
582 continue;
583 }
827e7d4d
JT
584 strbuf_add(&redacted_header, cookie, equals - cookie);
585 strbuf_addstr(&redacted_header, "=<redacted>");
83411783
JT
586 if (semicolon) {
587 /*
588 * There are more cookies. (Or, for some
589 * reason, the input string ends in "; ".)
590 */
591 strbuf_addstr(&redacted_header, "; ");
592 cookie = semicolon + strlen("; ");
593 } else {
594 cookie = NULL;
595 }
596 }
597
598 strbuf_setlen(header, sensitive_header - header->buf);
599 strbuf_addbuf(header, &redacted_header);
74c682d3
EP
600 }
601}
602
603static void curl_dump_header(const char *text, unsigned char *ptr, size_t size, int hide_sensitive_header)
604{
605 struct strbuf out = STRBUF_INIT;
606 struct strbuf **headers, **header;
607
608 strbuf_addf(&out, "%s, %10.10ld bytes (0x%8.8lx)\n",
609 text, (long)size, (long)size);
610 trace_strbuf(&trace_curl, &out);
611 strbuf_reset(&out);
612 strbuf_add(&out, ptr, size);
613 headers = strbuf_split_max(&out, '\n', 0);
614
615 for (header = headers; *header; header++) {
616 if (hide_sensitive_header)
617 redact_sensitive_header(*header);
a91cc7fa
RS
618 strbuf_insertstr((*header), 0, text);
619 strbuf_insertstr((*header), strlen(text), ": ");
74c682d3
EP
620 strbuf_rtrim((*header));
621 strbuf_addch((*header), '\n');
622 trace_strbuf(&trace_curl, (*header));
623 }
624 strbuf_list_free(headers);
625 strbuf_release(&out);
626}
627
628static void curl_dump_data(const char *text, unsigned char *ptr, size_t size)
629{
630 size_t i;
631 struct strbuf out = STRBUF_INIT;
632 unsigned int width = 60;
633
634 strbuf_addf(&out, "%s, %10.10ld bytes (0x%8.8lx)\n",
635 text, (long)size, (long)size);
636 trace_strbuf(&trace_curl, &out);
637
638 for (i = 0; i < size; i += width) {
639 size_t w;
640
641 strbuf_reset(&out);
642 strbuf_addf(&out, "%s: ", text);
643 for (w = 0; (w < width) && (i + w < size); w++) {
644 unsigned char ch = ptr[i + w];
645
646 strbuf_addch(&out,
647 (ch >= 0x20) && (ch < 0x80)
648 ? ch : '.');
649 }
650 strbuf_addch(&out, '\n');
651 trace_strbuf(&trace_curl, &out);
652 }
653 strbuf_release(&out);
654}
655
656static int curl_trace(CURL *handle, curl_infotype type, char *data, size_t size, void *userp)
657{
658 const char *text;
659 enum { NO_FILTER = 0, DO_FILTER = 1 };
660
661 switch (type) {
662 case CURLINFO_TEXT:
663 trace_printf_key(&trace_curl, "== Info: %s", data);
d0e99839 664 break;
74c682d3
EP
665 case CURLINFO_HEADER_OUT:
666 text = "=> Send header";
667 curl_dump_header(text, (unsigned char *)data, size, DO_FILTER);
668 break;
669 case CURLINFO_DATA_OUT:
8ba18e6f
JT
670 if (trace_curl_data) {
671 text = "=> Send data";
672 curl_dump_data(text, (unsigned char *)data, size);
673 }
74c682d3
EP
674 break;
675 case CURLINFO_SSL_DATA_OUT:
8ba18e6f
JT
676 if (trace_curl_data) {
677 text = "=> Send SSL data";
678 curl_dump_data(text, (unsigned char *)data, size);
679 }
74c682d3
EP
680 break;
681 case CURLINFO_HEADER_IN:
682 text = "<= Recv header";
683 curl_dump_header(text, (unsigned char *)data, size, NO_FILTER);
684 break;
685 case CURLINFO_DATA_IN:
8ba18e6f
JT
686 if (trace_curl_data) {
687 text = "<= Recv data";
688 curl_dump_data(text, (unsigned char *)data, size);
689 }
74c682d3
EP
690 break;
691 case CURLINFO_SSL_DATA_IN:
8ba18e6f
JT
692 if (trace_curl_data) {
693 text = "<= Recv SSL data";
694 curl_dump_data(text, (unsigned char *)data, size);
695 }
74c682d3 696 break;
d0e99839
JK
697
698 default: /* we ignore unknown types by default */
699 return 0;
74c682d3
EP
700 }
701 return 0;
702}
703
7167a62b
JT
704void http_trace_curl_no_data(void)
705{
706 trace_override_envvar(&trace_curl, "1");
707 trace_curl_data = 0;
708}
709
74c682d3
EP
710void setup_curl_trace(CURL *handle)
711{
712 if (!trace_want(&trace_curl))
713 return;
714 curl_easy_setopt(handle, CURLOPT_VERBOSE, 1L);
715 curl_easy_setopt(handle, CURLOPT_DEBUGFUNCTION, curl_trace);
716 curl_easy_setopt(handle, CURLOPT_DEBUGDATA, NULL);
717}
718
a768a022 719static long get_curl_allowed_protocols(int from_user)
aeae4db1
BW
720{
721 long allowed_protocols = 0;
722
a768a022 723 if (is_transport_allowed("http", from_user))
aeae4db1 724 allowed_protocols |= CURLPROTO_HTTP;
a768a022 725 if (is_transport_allowed("https", from_user))
aeae4db1 726 allowed_protocols |= CURLPROTO_HTTPS;
a768a022 727 if (is_transport_allowed("ftp", from_user))
aeae4db1 728 allowed_protocols |= CURLPROTO_FTP;
a768a022 729 if (is_transport_allowed("ftps", from_user))
aeae4db1
BW
730 allowed_protocols |= CURLPROTO_FTPS;
731
732 return allowed_protocols;
733}
74c682d3 734
2a7f6461 735#if LIBCURL_VERSION_NUM >=0x072b00
d73019fe
FC
736static int get_curl_http_version_opt(const char *version_string, long *opt)
737{
738 int i;
739 static struct {
740 const char *name;
741 long opt_token;
742 } choice[] = {
743 { "HTTP/1.1", CURL_HTTP_VERSION_1_1 },
744 { "HTTP/2", CURL_HTTP_VERSION_2 }
745 };
746
747 for (i = 0; i < ARRAY_SIZE(choice); i++) {
748 if (!strcmp(version_string, choice[i].name)) {
749 *opt = choice[i].opt_token;
750 return 0;
751 }
752 }
753
754 warning("unknown value given to http.version: '%s'", version_string);
755 return -1; /* not found */
756}
757
758#endif
759
4251ccbd 760static CURL *get_curl_handle(void)
11979b98 761{
4251ccbd 762 CURL *result = curl_easy_init();
11979b98 763
faa3807c
BR
764 if (!result)
765 die("curl_easy_init failed");
766
a5ccc597
JH
767 if (!curl_ssl_verify) {
768 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
769 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
770 } else {
771 /* Verify authenticity of the peer's certificate */
772 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
773 /* The name in the cert must match whom we tried to connect */
774 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
775 }
776
2a7f6461 777#if LIBCURL_VERSION_NUM >= 0x072b00
d73019fe
FC
778 if (curl_http_version) {
779 long opt;
780 if (!get_curl_http_version_opt(curl_http_version, &opt)) {
781 /* Set request use http version */
782 curl_easy_setopt(result, CURLOPT_HTTP_VERSION, opt);
783 }
784 }
785#endif
786
11979b98 787 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
525ecd26 788 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
11979b98 789
dd5df538 790#ifdef CURLGSSAPI_DELEGATION_FLAG
26a7b234
PS
791 if (curl_deleg) {
792 int i;
793 for (i = 0; i < ARRAY_SIZE(curl_deleg_levels); i++) {
794 if (!strcmp(curl_deleg, curl_deleg_levels[i].name)) {
795 curl_easy_setopt(result, CURLOPT_GSSAPI_DELEGATION,
796 curl_deleg_levels[i].curl_deleg_param);
797 break;
798 }
799 }
800 if (i == ARRAY_SIZE(curl_deleg_levels))
801 warning("Unknown delegation method '%s': using default",
802 curl_deleg);
803 }
804#endif
805
93aef7c7
BF
806 if (http_ssl_backend && !strcmp("schannel", http_ssl_backend) &&
807 !http_schannel_check_revoke) {
808#if LIBCURL_VERSION_NUM >= 0x072c00
809 curl_easy_setopt(result, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NO_REVOKE);
810#else
d355e46a 811 warning(_("CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"));
93aef7c7
BF
812#endif
813 }
814
a4ddbc33
JK
815 if (http_proactive_auth)
816 init_curl_http_auth(result);
817
01861cb7
EP
818 if (getenv("GIT_SSL_VERSION"))
819 ssl_version = getenv("GIT_SSL_VERSION");
820 if (ssl_version && *ssl_version) {
821 int i;
822 for (i = 0; i < ARRAY_SIZE(sslversions); i++) {
823 if (!strcmp(ssl_version, sslversions[i].name)) {
824 curl_easy_setopt(result, CURLOPT_SSLVERSION,
825 sslversions[i].ssl_version);
826 break;
827 }
828 }
829 if (i == ARRAY_SIZE(sslversions))
830 warning("unsupported ssl version %s: using default",
831 ssl_version);
832 }
833
f6f2a9e4
LKS
834 if (getenv("GIT_SSL_CIPHER_LIST"))
835 ssl_cipherlist = getenv("GIT_SSL_CIPHER_LIST");
f6f2a9e4
LKS
836 if (ssl_cipherlist != NULL && *ssl_cipherlist)
837 curl_easy_setopt(result, CURLOPT_SSL_CIPHER_LIST,
838 ssl_cipherlist);
839
11979b98
JH
840 if (ssl_cert != NULL)
841 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
30dd9163 842 if (has_cert_password())
148bb6a7 843 curl_easy_setopt(result, CURLOPT_KEYPASSWD, cert_auth.password);
11979b98
JH
844 if (ssl_key != NULL)
845 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
11979b98
JH
846 if (ssl_capath != NULL)
847 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
905a0288 848#if LIBCURL_VERSION_NUM >= 0x072700
aeff8a61
CE
849 if (ssl_pinnedkey != NULL)
850 curl_easy_setopt(result, CURLOPT_PINNEDPUBLICKEY, ssl_pinnedkey);
11979b98 851#endif
b67d40ad
JS
852 if (http_ssl_backend && !strcmp("schannel", http_ssl_backend) &&
853 !http_schannel_use_ssl_cainfo) {
854 curl_easy_setopt(result, CURLOPT_CAINFO, NULL);
855#if LIBCURL_VERSION_NUM >= 0x073400
856 curl_easy_setopt(result, CURLOPT_PROXY_CAINFO, NULL);
857#endif
88238e02
JLS
858 } else if (ssl_cainfo != NULL || http_proxy_ssl_ca_info != NULL) {
859 if (ssl_cainfo != NULL)
860 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
861#if LIBCURL_VERSION_NUM >= 0x073400
862 if (http_proxy_ssl_ca_info != NULL)
863 curl_easy_setopt(result, CURLOPT_PROXY_CAINFO, http_proxy_ssl_ca_info);
864#endif
865 }
11979b98
JH
866
867 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
868 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
869 curl_low_speed_limit);
870 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
871 curl_low_speed_time);
872 }
873
b2581164 874 curl_easy_setopt(result, CURLOPT_MAXREDIRS, 20);
311e2ea0 875 curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
aeae4db1 876 curl_easy_setopt(result, CURLOPT_REDIR_PROTOCOLS,
a768a022 877 get_curl_allowed_protocols(0));
aeae4db1 878 curl_easy_setopt(result, CURLOPT_PROTOCOLS,
a768a022 879 get_curl_allowed_protocols(-1));
7982d74e 880 if (getenv("GIT_CURL_VERBOSE"))
7167a62b 881 http_trace_curl_no_data();
74c682d3 882 setup_curl_trace(result);
8ba18e6f
JT
883 if (getenv("GIT_TRACE_CURL_NO_DATA"))
884 trace_curl_data = 0;
827e7d4d
JT
885 if (!git_env_bool("GIT_TRACE_REDACT", 1))
886 trace_curl_redact = 0;
7982d74e 887
b1d1058c 888 curl_easy_setopt(result, CURLOPT_USERAGENT,
745c7c8e 889 user_agent ? user_agent : git_user_agent());
20fc9bc5 890
3ea099d4
SK
891 if (curl_ftp_no_epsv)
892 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
893
4bc444eb
MV
894 if (curl_ssl_try)
895 curl_easy_setopt(result, CURLOPT_USE_SSL, CURLUSESSL_TRY);
4bc444eb 896
372370f1
KF
897 /*
898 * CURL also examines these variables as a fallback; but we need to query
899 * them here in order to decide whether to prompt for missing password (cf.
900 * init_curl_proxy_auth()).
901 *
902 * Unlike many other common environment variables, these are historically
903 * lowercase only. It appears that CURL did not know this and implemented
904 * only uppercase variants, which was later corrected to take both - with
905 * the exception of http_proxy, which is lowercase only also in CURL. As
906 * the lowercase versions are the historical quasi-standard, they take
907 * precedence here, as in CURL.
908 */
909 if (!curl_http_proxy) {
d63ed6ef 910 if (http_auth.protocol && !strcmp(http_auth.protocol, "https")) {
372370f1
KF
911 var_override(&curl_http_proxy, getenv("HTTPS_PROXY"));
912 var_override(&curl_http_proxy, getenv("https_proxy"));
913 } else {
914 var_override(&curl_http_proxy, getenv("http_proxy"));
915 }
916 if (!curl_http_proxy) {
917 var_override(&curl_http_proxy, getenv("ALL_PROXY"));
918 var_override(&curl_http_proxy, getenv("all_proxy"));
919 }
920 }
921
57415089
SR
922 if (curl_http_proxy && curl_http_proxy[0] == '\0') {
923 /*
924 * Handle case with the empty http.proxy value here to keep
925 * common code clean.
926 * NB: empty option disables proxying at all.
927 */
928 curl_easy_setopt(result, CURLOPT_PROXY, "");
929 } else if (curl_http_proxy) {
87f8a0b2
JH
930 if (starts_with(curl_http_proxy, "socks5h"))
931 curl_easy_setopt(result,
932 CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5_HOSTNAME);
933 else if (starts_with(curl_http_proxy, "socks5"))
6d7afe07
PT
934 curl_easy_setopt(result,
935 CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
936 else if (starts_with(curl_http_proxy, "socks4a"))
937 curl_easy_setopt(result,
938 CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4A);
939 else if (starts_with(curl_http_proxy, "socks"))
940 curl_easy_setopt(result,
941 CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
82b6803a 942#if LIBCURL_VERSION_NUM >= 0x073400
88238e02
JLS
943 else if (starts_with(curl_http_proxy, "https")) {
944 curl_easy_setopt(result, CURLOPT_PROXYTYPE, CURLPROXY_HTTPS);
945
946 if (http_proxy_ssl_cert)
947 curl_easy_setopt(result, CURLOPT_PROXY_SSLCERT, http_proxy_ssl_cert);
948
949 if (http_proxy_ssl_key)
950 curl_easy_setopt(result, CURLOPT_PROXY_SSLKEY, http_proxy_ssl_key);
951
952 if (has_proxy_cert_password())
953 curl_easy_setopt(result, CURLOPT_PROXY_KEYPASSWD, proxy_cert_auth.password);
954 }
6d7afe07 955#endif
372370f1
KF
956 if (strstr(curl_http_proxy, "://"))
957 credential_from_url(&proxy_auth, curl_http_proxy);
958 else {
959 struct strbuf url = STRBUF_INIT;
960 strbuf_addf(&url, "http://%s", curl_http_proxy);
961 credential_from_url(&proxy_auth, url.buf);
962 strbuf_release(&url);
963 }
964
ae51d911
SR
965 if (!proxy_auth.host)
966 die("Invalid proxy URL '%s'", curl_http_proxy);
967
372370f1 968 curl_easy_setopt(result, CURLOPT_PROXY, proxy_auth.host);
d445fda4
JX
969 var_override(&curl_no_proxy, getenv("NO_PROXY"));
970 var_override(&curl_no_proxy, getenv("no_proxy"));
971 curl_easy_setopt(result, CURLOPT_NOPROXY, curl_no_proxy);
5841520b 972 }
ef976395 973 init_curl_proxy_auth(result);
9c5665aa 974
47ce1153 975 set_curl_keepalive(result);
a15d069a 976
11979b98
JH
977 return result;
978}
979
7059cd99
JH
980static void set_from_env(const char **var, const char *envname)
981{
982 const char *val = getenv(envname);
983 if (val)
984 *var = val;
985}
986
a4ddbc33 987void http_init(struct remote *remote, const char *url, int proactive_auth)
29508e1e
NH
988{
989 char *low_speed_limit;
990 char *low_speed_time;
6a56993b
KM
991 char *normalized_url;
992 struct urlmatch_config config = { STRING_LIST_INIT_DUP };
993
994 config.section = "http";
995 config.key = NULL;
996 config.collect_fn = http_options;
997 config.cascade_fn = git_default_config;
998 config.cb = NULL;
29508e1e 999
e9176745 1000 http_is_verbose = 0;
6a56993b 1001 normalized_url = url_normalize(url, &config.url);
e9176745 1002
6a56993b
KM
1003 git_config(urlmatch_config_entry, &config);
1004 free(normalized_url);
7e927567 1005 string_list_clear(&config.vars, 1);
7059cd99 1006
21084e84
JS
1007#if LIBCURL_VERSION_NUM >= 0x073800
1008 if (http_ssl_backend) {
1009 const curl_ssl_backend **backends;
1010 struct strbuf buf = STRBUF_INIT;
1011 int i;
1012
1013 switch (curl_global_sslset(-1, http_ssl_backend, &backends)) {
1014 case CURLSSLSET_UNKNOWN_BACKEND:
1015 strbuf_addf(&buf, _("Unsupported SSL backend '%s'. "
1016 "Supported SSL backends:"),
1017 http_ssl_backend);
1018 for (i = 0; backends[i]; i++)
1019 strbuf_addf(&buf, "\n\t%s", backends[i]->name);
1020 die("%s", buf.buf);
1021 case CURLSSLSET_NO_BACKENDS:
1022 die(_("Could not set SSL backend to '%s': "
1023 "cURL was built without SSL backends"),
1024 http_ssl_backend);
1025 case CURLSSLSET_TOO_LATE:
1026 die(_("Could not set SSL backend to '%s': already set"),
1027 http_ssl_backend);
1028 case CURLSSLSET_OK:
1029 break; /* Okay! */
1030 }
1031 }
1032#endif
1033
faa3807c
BR
1034 if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK)
1035 die("curl_global_init failed");
29508e1e 1036
a4ddbc33
JK
1037 http_proactive_auth = proactive_auth;
1038
9fc6440d
MH
1039 if (remote && remote->http_proxy)
1040 curl_http_proxy = xstrdup(remote->http_proxy);
1041
ef976395
KF
1042 if (remote)
1043 var_override(&http_proxy_authmethod, remote->http_proxy_authmethod);
1044
8cb01e2f
JS
1045 pragma_header = curl_slist_append(http_copy_default_headers(),
1046 "Pragma: no-cache");
1047 no_pragma_header = curl_slist_append(http_copy_default_headers(),
1048 "Pragma:");
29508e1e 1049
29508e1e
NH
1050 {
1051 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
1052 if (http_max_requests != NULL)
1053 max_requests = atoi(http_max_requests);
1054 }
1055
1056 curlm = curl_multi_init();
8837eb47
JK
1057 if (!curlm)
1058 die("curl_multi_init failed");
29508e1e
NH
1059
1060 if (getenv("GIT_SSL_NO_VERIFY"))
1061 curl_ssl_verify = 0;
1062
7059cd99 1063 set_from_env(&ssl_cert, "GIT_SSL_CERT");
7059cd99 1064 set_from_env(&ssl_key, "GIT_SSL_KEY");
7059cd99 1065 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
7059cd99 1066 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
29508e1e 1067
b1d1058c
SO
1068 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
1069
29508e1e
NH
1070 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
1071 if (low_speed_limit != NULL)
1072 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
1073 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
1074 if (low_speed_time != NULL)
1075 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
1076
29508e1e
NH
1077 if (curl_ssl_verify == -1)
1078 curl_ssl_verify = 1;
1079
ad75ebe5 1080 curl_session_count = 0;
29508e1e
NH
1081 if (max_requests < 1)
1082 max_requests = DEFAULT_MAX_REQUESTS;
29508e1e 1083
af026519
JLS
1084 set_from_env(&http_proxy_ssl_cert, "GIT_PROXY_SSL_CERT");
1085 set_from_env(&http_proxy_ssl_key, "GIT_PROXY_SSL_KEY");
1086 set_from_env(&http_proxy_ssl_ca_info, "GIT_PROXY_SSL_CAINFO");
1087
1088 if (getenv("GIT_PROXY_SSL_CERT_PASSWORD_PROTECTED"))
1089 proxy_ssl_cert_password_required = 1;
1090
3ea099d4
SK
1091 if (getenv("GIT_CURL_FTP_NO_EPSV"))
1092 curl_ftp_no_epsv = 1;
1093
deba4937 1094 if (url) {
148bb6a7 1095 credential_from_url(&http_auth, url);
754ae192
ML
1096 if (!ssl_cert_password_required &&
1097 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
59556548 1098 starts_with(url, "https://"))
30dd9163
ML
1099 ssl_cert_password_required = 1;
1100 }
c33976cb 1101
29508e1e 1102 curl_default = get_curl_handle();
29508e1e
NH
1103}
1104
1105void http_cleanup(void)
1106{
1107 struct active_request_slot *slot = active_queue_head;
29508e1e
NH
1108
1109 while (slot != NULL) {
3278cd0a 1110 struct active_request_slot *next = slot->next;
f23d1f76 1111 if (slot->curl != NULL) {
d8b6b84d 1112 xmulti_remove_handle(slot);
29508e1e 1113 curl_easy_cleanup(slot->curl);
f23d1f76 1114 }
3278cd0a
SP
1115 free(slot);
1116 slot = next;
29508e1e 1117 }
3278cd0a 1118 active_queue_head = NULL;
29508e1e 1119
29508e1e 1120 curl_easy_cleanup(curl_default);
29508e1e 1121
29508e1e 1122 curl_multi_cleanup(curlm);
29508e1e 1123 curl_global_cleanup();
b3ca4e4e 1124
4d17fd25 1125 string_list_clear(&extra_http_headers, 0);
8cb01e2f 1126
b3ca4e4e 1127 curl_slist_free_all(pragma_header);
3278cd0a 1128 pragma_header = NULL;
9fc6440d 1129
e9176745
TRC
1130 curl_slist_free_all(no_pragma_header);
1131 no_pragma_header = NULL;
1132
9fc6440d 1133 if (curl_http_proxy) {
e4a80ecf 1134 free((void *)curl_http_proxy);
9fc6440d
MH
1135 curl_http_proxy = NULL;
1136 }
30dd9163 1137
372370f1
KF
1138 if (proxy_auth.password) {
1139 memset(proxy_auth.password, 0, strlen(proxy_auth.password));
6a83d902 1140 FREE_AND_NULL(proxy_auth.password);
372370f1
KF
1141 }
1142
1143 free((void *)curl_proxyuserpwd);
1144 curl_proxyuserpwd = NULL;
1145
ef976395
KF
1146 free((void *)http_proxy_authmethod);
1147 http_proxy_authmethod = NULL;
1148
148bb6a7
JK
1149 if (cert_auth.password != NULL) {
1150 memset(cert_auth.password, 0, strlen(cert_auth.password));
6a83d902 1151 FREE_AND_NULL(cert_auth.password);
30dd9163
ML
1152 }
1153 ssl_cert_password_required = 0;
f18604bb 1154
88238e02
JLS
1155 if (proxy_cert_auth.password != NULL) {
1156 memset(proxy_cert_auth.password, 0, strlen(proxy_cert_auth.password));
1157 FREE_AND_NULL(proxy_cert_auth.password);
1158 }
1159 proxy_ssl_cert_password_required = 0;
1160
6a83d902 1161 FREE_AND_NULL(cached_accept_language);
29508e1e
NH
1162}
1163
29508e1e
NH
1164struct active_request_slot *get_active_slot(void)
1165{
1166 struct active_request_slot *slot = active_queue_head;
1167 struct active_request_slot *newslot;
1168
29508e1e
NH
1169 int num_transfers;
1170
1171 /* Wait for a slot to open up if the queue is full */
1172 while (active_requests >= max_requests) {
1173 curl_multi_perform(curlm, &num_transfers);
4251ccbd 1174 if (num_transfers < active_requests)
29508e1e 1175 process_curl_messages();
29508e1e 1176 }
29508e1e 1177
4251ccbd 1178 while (slot != NULL && slot->in_use)
29508e1e 1179 slot = slot->next;
4251ccbd 1180
29508e1e
NH
1181 if (slot == NULL) {
1182 newslot = xmalloc(sizeof(*newslot));
1183 newslot->curl = NULL;
1184 newslot->in_use = 0;
1185 newslot->next = NULL;
1186
1187 slot = active_queue_head;
1188 if (slot == NULL) {
1189 active_queue_head = newslot;
1190 } else {
4251ccbd 1191 while (slot->next != NULL)
29508e1e 1192 slot = slot->next;
29508e1e
NH
1193 slot->next = newslot;
1194 }
1195 slot = newslot;
1196 }
1197
1198 if (slot->curl == NULL) {
29508e1e 1199 slot->curl = curl_easy_duphandle(curl_default);
ad75ebe5 1200 curl_session_count++;
29508e1e
NH
1201 }
1202
1203 active_requests++;
1204 slot->in_use = 1;
c8568e13 1205 slot->results = NULL;
baa7b67d 1206 slot->finished = NULL;
29508e1e
NH
1207 slot->callback_data = NULL;
1208 slot->callback_func = NULL;
bcfb95dd 1209 curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file);
912b2acf
DB
1210 if (curl_save_cookies)
1211 curl_easy_setopt(slot->curl, CURLOPT_COOKIEJAR, curl_cookie_file);
29508e1e 1212 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
29508e1e 1213 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
9094950d
NH
1214 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
1215 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
1216 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
1e41827d 1217 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
9094950d
NH
1218 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
1219 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
b793acf1 1220 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 1);
835c4d36 1221 curl_easy_setopt(slot->curl, CURLOPT_RANGE, NULL);
c915f11e 1222
50d34137
JK
1223 /*
1224 * Default following to off unless "ALWAYS" is configured; this gives
1225 * callers a sane starting point, and they can tweak for individual
1226 * HTTP_FOLLOW_* cases themselves.
1227 */
1228 if (http_follow_config == HTTP_FOLLOW_ALWAYS)
1229 curl_easy_setopt(slot->curl, CURLOPT_FOLLOWLOCATION, 1);
1230 else
1231 curl_easy_setopt(slot->curl, CURLOPT_FOLLOWLOCATION, 0);
1232
c915f11e 1233 curl_easy_setopt(slot->curl, CURLOPT_IPRESOLVE, git_curl_ipresolve);
4dbe6646 1234 curl_easy_setopt(slot->curl, CURLOPT_HTTPAUTH, http_auth_methods);
40a18fc7 1235 if (http_auth.password || curl_empty_auth_enabled())
dfa1725a 1236 init_curl_http_auth(slot->curl);
29508e1e
NH
1237
1238 return slot;
1239}
1240
1241int start_active_slot(struct active_request_slot *slot)
1242{
29508e1e 1243 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
45c17412 1244 int num_transfers;
29508e1e
NH
1245
1246 if (curlm_result != CURLM_OK &&
1247 curlm_result != CURLM_CALL_MULTI_PERFORM) {
9f1b5884
EW
1248 warning("curl_multi_add_handle failed: %s",
1249 curl_multi_strerror(curlm_result));
29508e1e
NH
1250 active_requests--;
1251 slot->in_use = 0;
1252 return 0;
1253 }
45c17412
DB
1254
1255 /*
1256 * We know there must be something to do, since we just added
1257 * something.
1258 */
1259 curl_multi_perform(curlm, &num_transfers);
29508e1e
NH
1260 return 1;
1261}
1262
fc57b6aa
DB
1263struct fill_chain {
1264 void *data;
1265 int (*fill)(void *);
1266 struct fill_chain *next;
1267};
1268
4251ccbd 1269static struct fill_chain *fill_cfg;
fc57b6aa
DB
1270
1271void add_fill_function(void *data, int (*fill)(void *))
1272{
ee6e0653 1273 struct fill_chain *new_fill = xmalloc(sizeof(*new_fill));
fc57b6aa 1274 struct fill_chain **linkp = &fill_cfg;
ee6e0653
BW
1275 new_fill->data = data;
1276 new_fill->fill = fill;
1277 new_fill->next = NULL;
fc57b6aa
DB
1278 while (*linkp)
1279 linkp = &(*linkp)->next;
ee6e0653 1280 *linkp = new_fill;
fc57b6aa
DB
1281}
1282
45c17412
DB
1283void fill_active_slots(void)
1284{
1285 struct active_request_slot *slot = active_queue_head;
1286
fc57b6aa
DB
1287 while (active_requests < max_requests) {
1288 struct fill_chain *fill;
1289 for (fill = fill_cfg; fill; fill = fill->next)
1290 if (fill->fill(fill->data))
1291 break;
1292
1293 if (!fill)
45c17412 1294 break;
fc57b6aa 1295 }
45c17412
DB
1296
1297 while (slot != NULL) {
ad75ebe5
TRC
1298 if (!slot->in_use && slot->curl != NULL
1299 && curl_session_count > min_curl_sessions) {
45c17412
DB
1300 curl_easy_cleanup(slot->curl);
1301 slot->curl = NULL;
ad75ebe5 1302 curl_session_count--;
45c17412
DB
1303 }
1304 slot = slot->next;
1305 }
1306}
1307
29508e1e
NH
1308void step_active_slots(void)
1309{
1310 int num_transfers;
1311 CURLMcode curlm_result;
1312
1313 do {
1314 curlm_result = curl_multi_perform(curlm, &num_transfers);
1315 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
1316 if (num_transfers < active_requests) {
1317 process_curl_messages();
1318 fill_active_slots();
1319 }
1320}
29508e1e
NH
1321
1322void run_active_slot(struct active_request_slot *slot)
1323{
29508e1e
NH
1324 fd_set readfds;
1325 fd_set writefds;
1326 fd_set excfds;
1327 int max_fd;
1328 struct timeval select_timeout;
baa7b67d 1329 int finished = 0;
29508e1e 1330
baa7b67d
NH
1331 slot->finished = &finished;
1332 while (!finished) {
29508e1e
NH
1333 step_active_slots();
1334
df26c471 1335 if (slot->in_use) {
eb56c821
MF
1336 long curl_timeout;
1337 curl_multi_timeout(curlm, &curl_timeout);
1338 if (curl_timeout == 0) {
1339 continue;
1340 } else if (curl_timeout == -1) {
1341 select_timeout.tv_sec = 0;
1342 select_timeout.tv_usec = 50000;
1343 } else {
1344 select_timeout.tv_sec = curl_timeout / 1000;
1345 select_timeout.tv_usec = (curl_timeout % 1000) * 1000;
1346 }
29508e1e 1347
6f9dd67f 1348 max_fd = -1;
29508e1e
NH
1349 FD_ZERO(&readfds);
1350 FD_ZERO(&writefds);
1351 FD_ZERO(&excfds);
6f9dd67f 1352 curl_multi_fdset(curlm, &readfds, &writefds, &excfds, &max_fd);
eb56c821 1353
7202b81f
SZ
1354 /*
1355 * It can happen that curl_multi_timeout returns a pathologically
1356 * long timeout when curl_multi_fdset returns no file descriptors
1357 * to read. See commit message for more details.
1358 */
1359 if (max_fd < 0 &&
1360 (select_timeout.tv_sec > 0 ||
1361 select_timeout.tv_usec > 50000)) {
1362 select_timeout.tv_sec = 0;
1363 select_timeout.tv_usec = 50000;
1364 }
1365
6f9dd67f 1366 select(max_fd+1, &readfds, &writefds, &excfds, &select_timeout);
29508e1e
NH
1367 }
1368 }
29508e1e
NH
1369}
1370
83e41e2e 1371static void release_active_slot(struct active_request_slot *slot)
53f31389
MW
1372{
1373 closedown_active_slot(slot);
2abc848d 1374 if (slot->curl) {
d8b6b84d 1375 xmulti_remove_handle(slot);
2abc848d
EW
1376 if (curl_session_count > min_curl_sessions) {
1377 curl_easy_cleanup(slot->curl);
1378 slot->curl = NULL;
1379 curl_session_count--;
1380 }
53f31389
MW
1381 }
1382 fill_active_slots();
1383}
1384
29508e1e
NH
1385void finish_all_active_slots(void)
1386{
1387 struct active_request_slot *slot = active_queue_head;
1388
1389 while (slot != NULL)
1390 if (slot->in_use) {
1391 run_active_slot(slot);
1392 slot = active_queue_head;
1393 } else {
1394 slot = slot->next;
1395 }
1396}
d7e92806 1397
5ace994f 1398/* Helpers for modifying and creating URLs */
d7e92806
MH
1399static inline int needs_quote(int ch)
1400{
1401 if (((ch >= 'A') && (ch <= 'Z'))
1402 || ((ch >= 'a') && (ch <= 'z'))
1403 || ((ch >= '0') && (ch <= '9'))
1404 || (ch == '/')
1405 || (ch == '-')
1406 || (ch == '.'))
1407 return 0;
1408 return 1;
1409}
1410
d7e92806
MH
1411static char *quote_ref_url(const char *base, const char *ref)
1412{
113106e0 1413 struct strbuf buf = STRBUF_INIT;
d7e92806 1414 const char *cp;
113106e0 1415 int ch;
d7e92806 1416
5ace994f 1417 end_url_with_slash(&buf, base);
113106e0
TRC
1418
1419 for (cp = ref; (ch = *cp) != 0; cp++)
d7e92806 1420 if (needs_quote(ch))
113106e0 1421 strbuf_addf(&buf, "%%%02x", ch);
d7e92806 1422 else
113106e0 1423 strbuf_addch(&buf, *cp);
d7e92806 1424
113106e0 1425 return strbuf_detach(&buf, NULL);
d7e92806
MH
1426}
1427
5424bc55
TRC
1428void append_remote_object_url(struct strbuf *buf, const char *url,
1429 const char *hex,
1430 int only_two_digit_prefix)
1431{
800324c3
TRC
1432 end_url_with_slash(buf, url);
1433
1434 strbuf_addf(buf, "objects/%.*s/", 2, hex);
5424bc55 1435 if (!only_two_digit_prefix)
bc57b9c0 1436 strbuf_addstr(buf, hex + 2);
5424bc55
TRC
1437}
1438
1439char *get_remote_object_url(const char *url, const char *hex,
1440 int only_two_digit_prefix)
1441{
1442 struct strbuf buf = STRBUF_INIT;
1443 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
1444 return strbuf_detach(&buf, NULL);
1445}
1446
a3722bcb
JK
1447void normalize_curl_result(CURLcode *result, long http_code,
1448 char *errorstr, size_t errorlen)
88097030 1449{
6d052d78
JK
1450 /*
1451 * If we see a failing http code with CURLE_OK, we have turned off
1452 * FAILONERROR (to keep the server's custom error response), and should
1453 * translate the code into failure here.
50d34137
JK
1454 *
1455 * Likewise, if we see a redirect (30x code), that means we turned off
1456 * redirect-following, and we should treat the result as an error.
6d052d78 1457 */
a3722bcb
JK
1458 if (*result == CURLE_OK && http_code >= 300) {
1459 *result = CURLE_HTTP_RETURNED_ERROR;
6d052d78
JK
1460 /*
1461 * Normally curl will already have put the "reason phrase"
1462 * from the server into curl_errorstr; unfortunately without
1463 * FAILONERROR it is lost, so we can give only the numeric
1464 * status code.
1465 */
a3722bcb 1466 xsnprintf(errorstr, errorlen,
1a168e5c 1467 "The requested URL returned error: %ld",
a3722bcb 1468 http_code);
6d052d78 1469 }
a3722bcb
JK
1470}
1471
1472static int handle_curl_result(struct slot_results *results)
1473{
1474 normalize_curl_result(&results->curl_result, results->http_code,
1475 curl_errorstr, sizeof(curl_errorstr));
6d052d78 1476
88097030
JK
1477 if (results->curl_result == CURLE_OK) {
1478 credential_approve(&http_auth);
a4a4439f 1479 credential_approve(&proxy_auth);
cd27f604 1480 credential_approve(&cert_auth);
88097030 1481 return HTTP_OK;
cd27f604
JS
1482 } else if (results->curl_result == CURLE_SSL_CERTPROBLEM) {
1483 /*
1484 * We can't tell from here whether it's a bad path, bad
1485 * certificate, bad password, or something else wrong
1486 * with the certificate. So we reject the credential to
1487 * avoid caching or saving a bad password.
1488 */
1489 credential_reject(&cert_auth);
1490 return HTTP_NOAUTH;
88097030
JK
1491 } else if (missing_target(results))
1492 return HTTP_MISSING_TARGET;
1493 else if (results->http_code == 401) {
1494 if (http_auth.username && http_auth.password) {
1495 credential_reject(&http_auth);
1496 return HTTP_NOAUTH;
1497 } else {
ecf7b129
JK
1498 http_auth_methods &= ~CURLAUTH_GSSNEGOTIATE;
1499 if (results->auth_avail) {
1500 http_auth_methods &= results->auth_avail;
1501 http_auth_methods_restricted = 1;
1502 }
88097030
JK
1503 return HTTP_REAUTH;
1504 }
1505 } else {
372370f1
KF
1506 if (results->http_connectcode == 407)
1507 credential_reject(&proxy_auth);
88097030
JK
1508 if (!curl_errorstr[0])
1509 strlcpy(curl_errorstr,
1510 curl_easy_strerror(results->curl_result),
1511 sizeof(curl_errorstr));
1512 return HTTP_ERROR;
1513 }
1514}
1515
beed336c
JK
1516int run_one_slot(struct active_request_slot *slot,
1517 struct slot_results *results)
1518{
1519 slot->results = results;
1520 if (!start_active_slot(slot)) {
1a168e5c
JK
1521 xsnprintf(curl_errorstr, sizeof(curl_errorstr),
1522 "failed to start HTTP request");
beed336c
JK
1523 return HTTP_START_FAILED;
1524 }
1525
1526 run_active_slot(slot);
1527 return handle_curl_result(results);
1528}
1529
8cb01e2f
JS
1530struct curl_slist *http_copy_default_headers(void)
1531{
4d17fd25
JS
1532 struct curl_slist *headers = NULL;
1533 const struct string_list_item *item;
8cb01e2f 1534
4d17fd25
JS
1535 for_each_string_list_item(item, &extra_http_headers)
1536 headers = curl_slist_append(headers, item->string);
8cb01e2f
JS
1537
1538 return headers;
1539}
1540
132b70a2
JK
1541static CURLcode curlinfo_strbuf(CURL *curl, CURLINFO info, struct strbuf *buf)
1542{
1543 char *ptr;
1544 CURLcode ret;
1545
1546 strbuf_reset(buf);
1547 ret = curl_easy_getinfo(curl, info, &ptr);
1548 if (!ret && ptr)
1549 strbuf_addstr(buf, ptr);
1550 return ret;
1551}
1552
e3131626
JK
1553/*
1554 * Check for and extract a content-type parameter. "raw"
1555 * should be positioned at the start of the potential
1556 * parameter, with any whitespace already removed.
1557 *
1558 * "name" is the name of the parameter. The value is appended
1559 * to "out".
1560 */
1561static int extract_param(const char *raw, const char *name,
1562 struct strbuf *out)
1563{
1564 size_t len = strlen(name);
1565
1566 if (strncasecmp(raw, name, len))
1567 return -1;
1568 raw += len;
1569
1570 if (*raw != '=')
1571 return -1;
1572 raw++;
1573
f34a655d 1574 while (*raw && !isspace(*raw) && *raw != ';')
e3131626
JK
1575 strbuf_addch(out, *raw++);
1576 return 0;
1577}
1578
bf197fd7
JK
1579/*
1580 * Extract a normalized version of the content type, with any
1581 * spaces suppressed, all letters lowercased, and no trailing ";"
1582 * or parameters.
1583 *
1584 * Note that we will silently remove even invalid whitespace. For
1585 * example, "text / plain" is specifically forbidden by RFC 2616,
1586 * but "text/plain" is the only reasonable output, and this keeps
1587 * our code simple.
1588 *
e3131626
JK
1589 * If the "charset" argument is not NULL, store the value of any
1590 * charset parameter there.
1591 *
bf197fd7 1592 * Example:
e3131626 1593 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
bf197fd7
JK
1594 * "text / plain" -> "text/plain"
1595 */
e3131626
JK
1596static void extract_content_type(struct strbuf *raw, struct strbuf *type,
1597 struct strbuf *charset)
bf197fd7
JK
1598{
1599 const char *p;
1600
1601 strbuf_reset(type);
1602 strbuf_grow(type, raw->len);
1603 for (p = raw->buf; *p; p++) {
1604 if (isspace(*p))
1605 continue;
e3131626
JK
1606 if (*p == ';') {
1607 p++;
bf197fd7 1608 break;
e3131626 1609 }
bf197fd7
JK
1610 strbuf_addch(type, tolower(*p));
1611 }
e3131626
JK
1612
1613 if (!charset)
1614 return;
1615
1616 strbuf_reset(charset);
1617 while (*p) {
f34a655d 1618 while (isspace(*p) || *p == ';')
e3131626
JK
1619 p++;
1620 if (!extract_param(p, "charset", charset))
1621 return;
1622 while (*p && !isspace(*p))
1623 p++;
1624 }
c553fd1c
JK
1625
1626 if (!charset->len && starts_with(type->buf, "text/"))
1627 strbuf_addstr(charset, "ISO-8859-1");
bf197fd7
JK
1628}
1629
f18604bb
YE
1630static void write_accept_language(struct strbuf *buf)
1631{
1632 /*
1633 * MAX_DECIMAL_PLACES must not be larger than 3. If it is larger than
1634 * that, q-value will be smaller than 0.001, the minimum q-value the
1635 * HTTP specification allows. See
1636 * http://tools.ietf.org/html/rfc7231#section-5.3.1 for q-value.
1637 */
1638 const int MAX_DECIMAL_PLACES = 3;
1639 const int MAX_LANGUAGE_TAGS = 1000;
1640 const int MAX_ACCEPT_LANGUAGE_HEADER_SIZE = 4000;
1641 char **language_tags = NULL;
1642 int num_langs = 0;
1643 const char *s = get_preferred_languages();
1644 int i;
1645 struct strbuf tag = STRBUF_INIT;
1646
1647 /* Don't add Accept-Language header if no language is preferred. */
1648 if (!s)
1649 return;
1650
1651 /*
1652 * Split the colon-separated string of preferred languages into
1653 * language_tags array.
1654 */
1655 do {
1656 /* collect language tag */
1657 for (; *s && (isalnum(*s) || *s == '_'); s++)
1658 strbuf_addch(&tag, *s == '_' ? '-' : *s);
1659
1660 /* skip .codeset, @modifier and any other unnecessary parts */
1661 while (*s && *s != ':')
1662 s++;
1663
1664 if (tag.len) {
1665 num_langs++;
1666 REALLOC_ARRAY(language_tags, num_langs);
1667 language_tags[num_langs - 1] = strbuf_detach(&tag, NULL);
1668 if (num_langs >= MAX_LANGUAGE_TAGS - 1) /* -1 for '*' */
1669 break;
1670 }
1671 } while (*s++);
1672
1673 /* write Accept-Language header into buf */
1674 if (num_langs) {
1675 int last_buf_len = 0;
1676 int max_q;
1677 int decimal_places;
1678 char q_format[32];
1679
1680 /* add '*' */
1681 REALLOC_ARRAY(language_tags, num_langs + 1);
1682 language_tags[num_langs++] = "*"; /* it's OK; this won't be freed */
1683
1684 /* compute decimal_places */
1685 for (max_q = 1, decimal_places = 0;
1686 max_q < num_langs && decimal_places <= MAX_DECIMAL_PLACES;
1687 decimal_places++, max_q *= 10)
1688 ;
1689
5096d490 1690 xsnprintf(q_format, sizeof(q_format), ";q=0.%%0%dd", decimal_places);
f18604bb
YE
1691
1692 strbuf_addstr(buf, "Accept-Language: ");
1693
1694 for (i = 0; i < num_langs; i++) {
1695 if (i > 0)
1696 strbuf_addstr(buf, ", ");
1697
1698 strbuf_addstr(buf, language_tags[i]);
1699
1700 if (i > 0)
1701 strbuf_addf(buf, q_format, max_q - i);
1702
1703 if (buf->len > MAX_ACCEPT_LANGUAGE_HEADER_SIZE) {
1704 strbuf_remove(buf, last_buf_len, buf->len - last_buf_len);
1705 break;
1706 }
1707
1708 last_buf_len = buf->len;
1709 }
1710 }
1711
1712 /* free language tags -- last one is a static '*' */
1713 for (i = 0; i < num_langs - 1; i++)
1714 free(language_tags[i]);
1715 free(language_tags);
1716}
1717
1718/*
1719 * Get an Accept-Language header which indicates user's preferred languages.
1720 *
1721 * Examples:
1722 * LANGUAGE= -> ""
1723 * LANGUAGE=ko:en -> "Accept-Language: ko, en; q=0.9, *; q=0.1"
1724 * LANGUAGE=ko_KR.UTF-8:sr@latin -> "Accept-Language: ko-KR, sr; q=0.9, *; q=0.1"
1725 * LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *; q=0.1"
1726 * LANGUAGE= LANG=en_US.UTF-8 -> "Accept-Language: en-US, *; q=0.1"
1727 * LANGUAGE= LANG=C -> ""
1728 */
1729static const char *get_accept_language(void)
1730{
1731 if (!cached_accept_language) {
1732 struct strbuf buf = STRBUF_INIT;
1733 write_accept_language(&buf);
1734 if (buf.len > 0)
1735 cached_accept_language = strbuf_detach(&buf, NULL);
1736 }
1737
1738 return cached_accept_language;
1739}
1740
835c4d36
DT
1741static void http_opt_request_remainder(CURL *curl, off_t pos)
1742{
1743 char buf[128];
1744 xsnprintf(buf, sizeof(buf), "%"PRIuMAX"-", (uintmax_t)pos);
1745 curl_easy_setopt(curl, CURLOPT_RANGE, buf);
1746}
1747
e929cd20
MH
1748/* http_request() targets */
1749#define HTTP_REQUEST_STRBUF 0
1750#define HTTP_REQUEST_FILE 1
1751
1bbcc224
JK
1752static int http_request(const char *url,
1753 void *result, int target,
1754 const struct http_get_options *options)
e929cd20
MH
1755{
1756 struct active_request_slot *slot;
1757 struct slot_results results;
8cb01e2f 1758 struct curl_slist *headers = http_copy_default_headers();
e929cd20 1759 struct strbuf buf = STRBUF_INIT;
f18604bb 1760 const char *accept_language;
e929cd20
MH
1761 int ret;
1762
1763 slot = get_active_slot();
e929cd20
MH
1764 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
1765
1766 if (result == NULL) {
1767 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
1768 } else {
1769 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
8dda4cbd 1770 curl_easy_setopt(slot->curl, CURLOPT_WRITEDATA, result);
e929cd20
MH
1771
1772 if (target == HTTP_REQUEST_FILE) {
f8117f55 1773 off_t posn = ftello(result);
e929cd20
MH
1774 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1775 fwrite);
835c4d36
DT
1776 if (posn > 0)
1777 http_opt_request_remainder(slot->curl, posn);
e929cd20
MH
1778 } else
1779 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1780 fwrite_buffer);
1781 }
1782
f18604bb
YE
1783 accept_language = get_accept_language();
1784
1785 if (accept_language)
1786 headers = curl_slist_append(headers, accept_language);
1787
e929cd20 1788 strbuf_addstr(&buf, "Pragma:");
1bbcc224 1789 if (options && options->no_cache)
e929cd20 1790 strbuf_addstr(&buf, " no-cache");
50d34137
JK
1791 if (options && options->initial_request &&
1792 http_follow_config == HTTP_FOLLOW_INITIAL)
1793 curl_easy_setopt(slot->curl, CURLOPT_FOLLOWLOCATION, 1);
e929cd20
MH
1794
1795 headers = curl_slist_append(headers, buf.buf);
1796
8ff14ed4
BW
1797 /* Add additional headers here */
1798 if (options && options->extra_headers) {
1799 const struct string_list_item *item;
1800 for_each_string_list_item(item, options->extra_headers) {
1801 headers = curl_slist_append(headers, item->string);
1802 }
1803 }
1804
e929cd20
MH
1805 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
1806 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
1a53e692 1807 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "");
e6cf87b1 1808 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 0);
e929cd20 1809
beed336c 1810 ret = run_one_slot(slot, &results);
e929cd20 1811
bf197fd7
JK
1812 if (options && options->content_type) {
1813 struct strbuf raw = STRBUF_INIT;
1814 curlinfo_strbuf(slot->curl, CURLINFO_CONTENT_TYPE, &raw);
e3131626
JK
1815 extract_content_type(&raw, options->content_type,
1816 options->charset);
bf197fd7
JK
1817 strbuf_release(&raw);
1818 }
4656bf47 1819
78868962
JK
1820 if (options && options->effective_url)
1821 curlinfo_strbuf(slot->curl, CURLINFO_EFFECTIVE_URL,
1822 options->effective_url);
4656bf47 1823
e929cd20
MH
1824 curl_slist_free_all(headers);
1825 strbuf_release(&buf);
1826
1827 return ret;
1828}
1829
c93c92f3
JK
1830/*
1831 * Update the "base" url to a more appropriate value, as deduced by
1832 * redirects seen when requesting a URL starting with "url".
1833 *
1834 * The "asked" parameter is a URL that we asked curl to access, and must begin
1835 * with "base".
1836 *
1837 * The "got" parameter is the URL that curl reported to us as where we ended
1838 * up.
1839 *
1840 * Returns 1 if we updated the base url, 0 otherwise.
1841 *
1842 * Our basic strategy is to compare "base" and "asked" to find the bits
1843 * specific to our request. We then strip those bits off of "got" to yield the
1844 * new base. So for example, if our base is "http://example.com/foo.git",
1845 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1846 * with "https://other.example.com/foo.git/info/refs". We would want the
1847 * new URL to become "https://other.example.com/foo.git".
1848 *
1849 * Note that this assumes a sane redirect scheme. It's entirely possible
1850 * in the example above to end up at a URL that does not even end in
6628eb41
JK
1851 * "info/refs". In such a case we die. There's not much we can do, such a
1852 * scheme is unlikely to represent a real git repository, and failing to
1853 * rewrite the base opens options for malicious redirects to do funny things.
c93c92f3
JK
1854 */
1855static int update_url_from_redirect(struct strbuf *base,
1856 const char *asked,
1857 const struct strbuf *got)
1858{
1859 const char *tail;
986d7f4d 1860 size_t new_len;
c93c92f3
JK
1861
1862 if (!strcmp(asked, got->buf))
1863 return 0;
1864
de8118e1 1865 if (!skip_prefix(asked, base->buf, &tail))
033abf97 1866 BUG("update_url_from_redirect: %s is not a superset of %s",
c93c92f3
JK
1867 asked, base->buf);
1868
986d7f4d
JK
1869 new_len = got->len;
1870 if (!strip_suffix_mem(got->buf, &new_len, tail))
6628eb41
JK
1871 die(_("unable to update url base from redirection:\n"
1872 " asked for: %s\n"
1873 " redirect: %s"),
1874 asked, got->buf);
c93c92f3
JK
1875
1876 strbuf_reset(base);
986d7f4d 1877 strbuf_add(base, got->buf, new_len);
6628eb41 1878
c93c92f3
JK
1879 return 1;
1880}
1881
4656bf47 1882static int http_request_reauth(const char *url,
4656bf47 1883 void *result, int target,
1bbcc224 1884 struct http_get_options *options)
8d677edc 1885{
1bbcc224 1886 int ret = http_request(url, result, target, options);
c93c92f3 1887
8e27391a
JT
1888 if (ret != HTTP_OK && ret != HTTP_REAUTH)
1889 return ret;
1890
c93c92f3
JK
1891 if (options && options->effective_url && options->base_url) {
1892 if (update_url_from_redirect(options->base_url,
1893 url, options->effective_url)) {
1894 credential_from_url(&http_auth, options->base_url->buf);
1895 url = options->effective_url->buf;
1896 }
1897 }
1898
8d677edc
JK
1899 if (ret != HTTP_REAUTH)
1900 return ret;
6d052d78
JK
1901
1902 /*
e6cf87b1
MS
1903 * The previous request may have put cruft into our output stream; we
1904 * should clear it out before making our next request.
6d052d78 1905 */
e6cf87b1
MS
1906 switch (target) {
1907 case HTTP_REQUEST_STRBUF:
1908 strbuf_reset(result);
1909 break;
1910 case HTTP_REQUEST_FILE:
1911 if (fflush(result)) {
1912 error_errno("unable to flush a file");
1913 return HTTP_START_FAILED;
1914 }
1915 rewind(result);
1916 if (ftruncate(fileno(result), 0) < 0) {
1917 error_errno("unable to truncate a file");
1918 return HTTP_START_FAILED;
6d052d78 1919 }
e6cf87b1
MS
1920 break;
1921 default:
1922 BUG("Unknown http_request target");
6d052d78 1923 }
2501aff8
JK
1924
1925 credential_fill(&http_auth);
1926
1bbcc224 1927 return http_request(url, result, target, options);
8d677edc
JK
1928}
1929
4656bf47 1930int http_get_strbuf(const char *url,
1bbcc224
JK
1931 struct strbuf *result,
1932 struct http_get_options *options)
e929cd20 1933{
1bbcc224 1934 return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options);
e929cd20
MH
1935}
1936
83e41e2e 1937/*
a7793a74 1938 * Downloads a URL and stores the result in the given file.
83e41e2e
JH
1939 *
1940 * If a previous interrupted download is detected (i.e. a previous temporary
1941 * file is still around) the download is resumed.
1942 */
1bbcc224
JK
1943static int http_get_file(const char *url, const char *filename,
1944 struct http_get_options *options)
e929cd20
MH
1945{
1946 int ret;
1947 struct strbuf tmpfile = STRBUF_INIT;
1948 FILE *result;
1949
1950 strbuf_addf(&tmpfile, "%s.temp", filename);
1951 result = fopen(tmpfile.buf, "a");
3d1fb769 1952 if (!result) {
e929cd20
MH
1953 error("Unable to open local file %s", tmpfile.buf);
1954 ret = HTTP_ERROR;
1955 goto cleanup;
1956 }
1957
1bbcc224 1958 ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options);
e929cd20
MH
1959 fclose(result);
1960
cb5add58 1961 if (ret == HTTP_OK && finalize_object_file(tmpfile.buf, filename))
e929cd20
MH
1962 ret = HTTP_ERROR;
1963cleanup:
1964 strbuf_release(&tmpfile);
1965 return ret;
1966}
1967
c13b2633 1968int http_fetch_ref(const char *base, struct ref *ref)
d7e92806 1969{
1bbcc224 1970 struct http_get_options options = {0};
d7e92806
MH
1971 char *url;
1972 struct strbuf buffer = STRBUF_INIT;
0d5896e1 1973 int ret = -1;
d7e92806 1974
1bbcc224
JK
1975 options.no_cache = 1;
1976
c13b2633 1977 url = quote_ref_url(base, ref->name);
1bbcc224 1978 if (http_get_strbuf(url, &buffer, &options) == HTTP_OK) {
0d5896e1 1979 strbuf_rtrim(&buffer);
ae041a0f 1980 if (buffer.len == the_hash_algo->hexsz)
f4e54d02 1981 ret = get_oid_hex(buffer.buf, &ref->old_oid);
59556548 1982 else if (starts_with(buffer.buf, "ref: ")) {
0d5896e1
MH
1983 ref->symref = xstrdup(buffer.buf + 5);
1984 ret = 0;
d7e92806 1985 }
d7e92806
MH
1986 }
1987
1988 strbuf_release(&buffer);
1989 free(url);
1990 return ret;
1991}
b8caac2b
TRC
1992
1993/* Helpers for fetching packs */
05dfc7ca 1994static char *fetch_pack_index(unsigned char *hash, const char *base_url)
b8caac2b 1995{
750ef425 1996 char *url, *tmp;
b8caac2b 1997 struct strbuf buf = STRBUF_INIT;
b8caac2b 1998
b8caac2b 1999 if (http_is_verbose)
05dfc7ca 2000 fprintf(stderr, "Getting index for pack %s\n", hash_to_hex(hash));
b8caac2b
TRC
2001
2002 end_url_with_slash(&buf, base_url);
05dfc7ca 2003 strbuf_addf(&buf, "objects/pack/pack-%s.idx", hash_to_hex(hash));
b8caac2b
TRC
2004 url = strbuf_detach(&buf, NULL);
2005
05dfc7ca 2006 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(hash));
750ef425
SP
2007 tmp = strbuf_detach(&buf, NULL);
2008
70900eda 2009 if (http_get_file(url, tmp, NULL) != HTTP_OK) {
82247e9b 2010 error("Unable to get pack index %s", url);
6a83d902 2011 FREE_AND_NULL(tmp);
750ef425 2012 }
b8caac2b 2013
b8caac2b 2014 free(url);
750ef425 2015 return tmp;
b8caac2b
TRC
2016}
2017
2018static int fetch_and_setup_pack_index(struct packed_git **packs_head,
2019 unsigned char *sha1, const char *base_url)
2020{
2021 struct packed_git *new_pack;
750ef425
SP
2022 char *tmp_idx = NULL;
2023 int ret;
b8caac2b 2024
750ef425 2025 if (has_pack_index(sha1)) {
8b9c2dd4 2026 new_pack = parse_pack_index(sha1, sha1_pack_index_name(sha1));
750ef425
SP
2027 if (!new_pack)
2028 return -1; /* parse_pack_index() already issued error message */
2029 goto add_pack;
2030 }
2031
2032 tmp_idx = fetch_pack_index(sha1, base_url);
2033 if (!tmp_idx)
b8caac2b
TRC
2034 return -1;
2035
750ef425
SP
2036 new_pack = parse_pack_index(sha1, tmp_idx);
2037 if (!new_pack) {
2038 unlink(tmp_idx);
2039 free(tmp_idx);
2040
b8caac2b 2041 return -1; /* parse_pack_index() already issued error message */
750ef425
SP
2042 }
2043
2044 ret = verify_pack_index(new_pack);
2045 if (!ret) {
2046 close_pack_index(new_pack);
cb5add58 2047 ret = finalize_object_file(tmp_idx, sha1_pack_index_name(sha1));
750ef425
SP
2048 }
2049 free(tmp_idx);
2050 if (ret)
2051 return -1;
2052
2053add_pack:
b8caac2b
TRC
2054 new_pack->next = *packs_head;
2055 *packs_head = new_pack;
2056 return 0;
2057}
2058
2059int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
2060{
1bbcc224 2061 struct http_get_options options = {0};
ddc56d47
JK
2062 int ret = 0;
2063 char *url;
2064 const char *data;
b8caac2b 2065 struct strbuf buf = STRBUF_INIT;
ddc56d47 2066 struct object_id oid;
b8caac2b
TRC
2067
2068 end_url_with_slash(&buf, base_url);
2069 strbuf_addstr(&buf, "objects/info/packs");
2070 url = strbuf_detach(&buf, NULL);
2071
1bbcc224
JK
2072 options.no_cache = 1;
2073 ret = http_get_strbuf(url, &buf, &options);
b8caac2b
TRC
2074 if (ret != HTTP_OK)
2075 goto cleanup;
2076
2077 data = buf.buf;
ddc56d47
JK
2078 while (*data) {
2079 if (skip_prefix(data, "P pack-", &data) &&
2080 !parse_oid_hex(data, &oid, &data) &&
2081 skip_prefix(data, ".pack", &data) &&
2082 (*data == '\n' || *data == '\0')) {
2083 fetch_and_setup_pack_index(packs_head, oid.hash, base_url);
2084 } else {
2085 data = strchrnul(data, '\n');
b8caac2b 2086 }
ddc56d47
JK
2087 if (*data)
2088 data++; /* skip past newline */
b8caac2b
TRC
2089 }
2090
2091cleanup:
2092 free(url);
2093 return ret;
2094}
2264dfa5
TRC
2095
2096void release_http_pack_request(struct http_pack_request *preq)
2097{
2098 if (preq->packfile != NULL) {
2099 fclose(preq->packfile);
2100 preq->packfile = NULL;
2264dfa5 2101 }
2264dfa5 2102 preq->slot = NULL;
390c6cbc 2103 strbuf_release(&preq->tmpfile);
2264dfa5 2104 free(preq->url);
826aed50 2105 free(preq);
2264dfa5
TRC
2106}
2107
726b25a9
JT
2108static const char *default_index_pack_args[] =
2109 {"index-pack", "--stdin", NULL};
2110
2264dfa5
TRC
2111int finish_http_pack_request(struct http_pack_request *preq)
2112{
d3180279 2113 struct child_process ip = CHILD_PROCESS_INIT;
9cb3cab5
JT
2114 int tmpfile_fd;
2115 int ret = 0;
2264dfa5 2116
3065274c
SP
2117 fclose(preq->packfile);
2118 preq->packfile = NULL;
2264dfa5 2119
9cb3cab5 2120 tmpfile_fd = xopen(preq->tmpfile.buf, O_RDONLY);
fe72d420 2121
fe72d420 2122 ip.git_cmd = 1;
9cb3cab5 2123 ip.in = tmpfile_fd;
726b25a9
JT
2124 ip.argv = preq->index_pack_args ? preq->index_pack_args
2125 : default_index_pack_args;
2126
2127 if (preq->preserve_index_pack_stdout)
8d5d2a34 2128 ip.out = 0;
726b25a9 2129 else
8d5d2a34 2130 ip.no_stdout = 1;
fe72d420
SP
2131
2132 if (run_command(&ip)) {
9cb3cab5
JT
2133 ret = -1;
2134 goto cleanup;
fe72d420
SP
2135 }
2136
9cb3cab5
JT
2137cleanup:
2138 close(tmpfile_fd);
2139 unlink(preq->tmpfile.buf);
2140 return ret;
2264dfa5 2141}
2264dfa5 2142
eb053492
JT
2143void http_install_packfile(struct packed_git *p,
2144 struct packed_git **list_to_remove_from)
2145{
2146 struct packed_git **lst = list_to_remove_from;
2147
2148 while (*lst != p)
2149 lst = &((*lst)->next);
2150 *lst = (*lst)->next;
2264dfa5 2151
5babff16 2152 install_packed_git(the_repository, p);
2264dfa5
TRC
2153}
2154
2155struct http_pack_request *new_http_pack_request(
8d5d2a34
JT
2156 const unsigned char *packed_git_hash, const char *base_url) {
2157
2158 struct strbuf buf = STRBUF_INIT;
2159
2160 end_url_with_slash(&buf, base_url);
2161 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
2162 hash_to_hex(packed_git_hash));
2163 return new_direct_http_pack_request(packed_git_hash,
2164 strbuf_detach(&buf, NULL));
2165}
2166
2167struct http_pack_request *new_direct_http_pack_request(
2168 const unsigned char *packed_git_hash, char *url)
2264dfa5 2169{
f8117f55 2170 off_t prev_posn = 0;
2264dfa5
TRC
2171 struct http_pack_request *preq;
2172
ca56dadb 2173 CALLOC_ARRAY(preq, 1);
390c6cbc 2174 strbuf_init(&preq->tmpfile, 0);
2264dfa5 2175
8d5d2a34 2176 preq->url = url;
2264dfa5 2177
eb053492 2178 strbuf_addf(&preq->tmpfile, "%s.temp", sha1_pack_name(packed_git_hash));
390c6cbc 2179 preq->packfile = fopen(preq->tmpfile.buf, "a");
2264dfa5
TRC
2180 if (!preq->packfile) {
2181 error("Unable to open local file %s for pack",
390c6cbc 2182 preq->tmpfile.buf);
2264dfa5
TRC
2183 goto abort;
2184 }
2185
2186 preq->slot = get_active_slot();
8dda4cbd 2187 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEDATA, preq->packfile);
2264dfa5 2188 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
bb99190e 2189 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
2264dfa5
TRC
2190 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
2191 no_pragma_header);
2192
2193 /*
2194 * If there is data present from a previous transfer attempt,
2195 * resume where it left off
2196 */
f8117f55 2197 prev_posn = ftello(preq->packfile);
2264dfa5
TRC
2198 if (prev_posn>0) {
2199 if (http_is_verbose)
2200 fprintf(stderr,
838ecf0b 2201 "Resuming fetch of pack %s at byte %"PRIuMAX"\n",
eb053492 2202 hash_to_hex(packed_git_hash),
538b1523 2203 (uintmax_t)prev_posn);
835c4d36 2204 http_opt_request_remainder(preq->slot->curl, prev_posn);
2264dfa5
TRC
2205 }
2206
2207 return preq;
2208
2209abort:
390c6cbc 2210 strbuf_release(&preq->tmpfile);
bb99190e 2211 free(preq->url);
5ae9ebfd 2212 free(preq);
2264dfa5
TRC
2213 return NULL;
2214}
5424bc55
TRC
2215
2216/* Helpers for fetching objects (loose) */
a04ff3ec 2217static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
5424bc55
TRC
2218 void *data)
2219{
2220 unsigned char expn[4096];
2221 size_t size = eltsize * nmemb;
2222 int posn = 0;
17966c0a
EW
2223 struct http_object_request *freq = data;
2224 struct active_request_slot *slot = freq->slot;
2225
2226 if (slot) {
2227 CURLcode c = curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE,
2228 &slot->http_code);
2229 if (c != CURLE_OK)
033abf97 2230 BUG("curl_easy_getinfo for HTTP code failed: %s",
17966c0a 2231 curl_easy_strerror(c));
3680f16f 2232 if (slot->http_code >= 300)
5c3d5a38 2233 return nmemb;
17966c0a
EW
2234 }
2235
5424bc55
TRC
2236 do {
2237 ssize_t retval = xwrite(freq->localfile,
2238 (char *) ptr + posn, size - posn);
2239 if (retval < 0)
5c3d5a38 2240 return posn / eltsize;
5424bc55
TRC
2241 posn += retval;
2242 } while (posn < size);
2243
2244 freq->stream.avail_in = size;
a04ff3ec 2245 freq->stream.next_in = (void *)ptr;
5424bc55
TRC
2246 do {
2247 freq->stream.next_out = expn;
2248 freq->stream.avail_out = sizeof(expn);
2249 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
eed0e60f 2250 the_hash_algo->update_fn(&freq->c, expn,
2251 sizeof(expn) - freq->stream.avail_out);
5424bc55 2252 } while (freq->stream.avail_in && freq->zret == Z_OK);
5c3d5a38 2253 return nmemb;
5424bc55
TRC
2254}
2255
2256struct http_object_request *new_http_object_request(const char *base_url,
f0be0db1 2257 const struct object_id *oid)
5424bc55 2258{
f0be0db1 2259 char *hex = oid_to_hex(oid);
ea657730 2260 struct strbuf filename = STRBUF_INIT;
390c6cbc 2261 struct strbuf prevfile = STRBUF_INIT;
5424bc55 2262 int prevlocal;
a04ff3ec 2263 char prev_buf[PREV_BUF_SIZE];
5424bc55 2264 ssize_t prev_read = 0;
f8117f55 2265 off_t prev_posn = 0;
5424bc55
TRC
2266 struct http_object_request *freq;
2267
ca56dadb 2268 CALLOC_ARRAY(freq, 1);
390c6cbc 2269 strbuf_init(&freq->tmpfile, 0);
f0be0db1 2270 oidcpy(&freq->oid, oid);
5424bc55
TRC
2271 freq->localfile = -1;
2272
514c5fdd 2273 loose_object_path(the_repository, &filename, oid);
390c6cbc 2274 strbuf_addf(&freq->tmpfile, "%s.temp", filename.buf);
5424bc55 2275
390c6cbc
JK
2276 strbuf_addf(&prevfile, "%s.prev", filename.buf);
2277 unlink_or_warn(prevfile.buf);
2278 rename(freq->tmpfile.buf, prevfile.buf);
2279 unlink_or_warn(freq->tmpfile.buf);
ea657730 2280 strbuf_release(&filename);
5424bc55
TRC
2281
2282 if (freq->localfile != -1)
2283 error("fd leakage in start: %d", freq->localfile);
390c6cbc 2284 freq->localfile = open(freq->tmpfile.buf,
5424bc55
TRC
2285 O_WRONLY | O_CREAT | O_EXCL, 0666);
2286 /*
2287 * This could have failed due to the "lazy directory creation";
2288 * try to mkdir the last path component.
2289 */
2290 if (freq->localfile < 0 && errno == ENOENT) {
390c6cbc 2291 char *dir = strrchr(freq->tmpfile.buf, '/');
5424bc55
TRC
2292 if (dir) {
2293 *dir = 0;
390c6cbc 2294 mkdir(freq->tmpfile.buf, 0777);
5424bc55
TRC
2295 *dir = '/';
2296 }
390c6cbc 2297 freq->localfile = open(freq->tmpfile.buf,
5424bc55
TRC
2298 O_WRONLY | O_CREAT | O_EXCL, 0666);
2299 }
2300
2301 if (freq->localfile < 0) {
390c6cbc
JK
2302 error_errno("Couldn't create temporary file %s",
2303 freq->tmpfile.buf);
5424bc55
TRC
2304 goto abort;
2305 }
2306
5424bc55
TRC
2307 git_inflate_init(&freq->stream);
2308
eed0e60f 2309 the_hash_algo->init_fn(&freq->c);
5424bc55 2310
bb99190e 2311 freq->url = get_remote_object_url(base_url, hex, 0);
5424bc55
TRC
2312
2313 /*
2314 * If a previous temp file is present, process what was already
2315 * fetched.
2316 */
390c6cbc 2317 prevlocal = open(prevfile.buf, O_RDONLY);
5424bc55
TRC
2318 if (prevlocal != -1) {
2319 do {
2320 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
2321 if (prev_read>0) {
2322 if (fwrite_sha1_file(prev_buf,
2323 1,
2324 prev_read,
2325 freq) == prev_read) {
2326 prev_posn += prev_read;
2327 } else {
2328 prev_read = -1;
2329 }
2330 }
2331 } while (prev_read > 0);
2332 close(prevlocal);
2333 }
390c6cbc
JK
2334 unlink_or_warn(prevfile.buf);
2335 strbuf_release(&prevfile);
5424bc55
TRC
2336
2337 /*
2338 * Reset inflate/SHA1 if there was an error reading the previous temp
2339 * file; also rewind to the beginning of the local file.
2340 */
2341 if (prev_read == -1) {
2342 memset(&freq->stream, 0, sizeof(freq->stream));
2343 git_inflate_init(&freq->stream);
eed0e60f 2344 the_hash_algo->init_fn(&freq->c);
5424bc55
TRC
2345 if (prev_posn>0) {
2346 prev_posn = 0;
2347 lseek(freq->localfile, 0, SEEK_SET);
0c4f21e4 2348 if (ftruncate(freq->localfile, 0) < 0) {
d2e255ee 2349 error_errno("Couldn't truncate temporary file %s",
390c6cbc 2350 freq->tmpfile.buf);
0c4f21e4
JL
2351 goto abort;
2352 }
5424bc55
TRC
2353 }
2354 }
2355
2356 freq->slot = get_active_slot();
2357
8dda4cbd 2358 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEDATA, freq);
17966c0a 2359 curl_easy_setopt(freq->slot->curl, CURLOPT_FAILONERROR, 0);
5424bc55
TRC
2360 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
2361 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
bb99190e 2362 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
5424bc55
TRC
2363 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
2364
2365 /*
2366 * If we have successfully processed data from a previous fetch
2367 * attempt, only fetch the data we don't already have.
2368 */
2369 if (prev_posn>0) {
2370 if (http_is_verbose)
2371 fprintf(stderr,
838ecf0b
RJ
2372 "Resuming fetch of object %s at byte %"PRIuMAX"\n",
2373 hex, (uintmax_t)prev_posn);
835c4d36 2374 http_opt_request_remainder(freq->slot->curl, prev_posn);
5424bc55
TRC
2375 }
2376
2377 return freq;
2378
5424bc55 2379abort:
390c6cbc 2380 strbuf_release(&prevfile);
bb99190e 2381 free(freq->url);
5424bc55
TRC
2382 free(freq);
2383 return NULL;
2384}
2385
2386void process_http_object_request(struct http_object_request *freq)
2387{
2388 if (freq->slot == NULL)
2389 return;
2390 freq->curl_result = freq->slot->curl_result;
2391 freq->http_code = freq->slot->http_code;
2392 freq->slot = NULL;
2393}
2394
2395int finish_http_object_request(struct http_object_request *freq)
2396{
2397 struct stat st;
ea657730 2398 struct strbuf filename = STRBUF_INIT;
5424bc55
TRC
2399
2400 close(freq->localfile);
2401 freq->localfile = -1;
2402
2403 process_http_object_request(freq);
2404
2405 if (freq->http_code == 416) {
bd757c18 2406 warning("requested range invalid; we may already have all the data.");
5424bc55 2407 } else if (freq->curl_result != CURLE_OK) {
390c6cbc 2408 if (stat(freq->tmpfile.buf, &st) == 0)
5424bc55 2409 if (st.st_size == 0)
390c6cbc 2410 unlink_or_warn(freq->tmpfile.buf);
5424bc55
TRC
2411 return -1;
2412 }
2413
2414 git_inflate_end(&freq->stream);
5951bf46 2415 the_hash_algo->final_oid_fn(&freq->real_oid, &freq->c);
5424bc55 2416 if (freq->zret != Z_STREAM_END) {
390c6cbc 2417 unlink_or_warn(freq->tmpfile.buf);
5424bc55
TRC
2418 return -1;
2419 }
f0be0db1 2420 if (!oideq(&freq->oid, &freq->real_oid)) {
390c6cbc 2421 unlink_or_warn(freq->tmpfile.buf);
5424bc55
TRC
2422 return -1;
2423 }
514c5fdd 2424 loose_object_path(the_repository, &filename, &freq->oid);
390c6cbc 2425 freq->rename = finalize_object_file(freq->tmpfile.buf, filename.buf);
ea657730 2426 strbuf_release(&filename);
5424bc55
TRC
2427
2428 return freq->rename;
2429}
2430
2431void abort_http_object_request(struct http_object_request *freq)
2432{
390c6cbc 2433 unlink_or_warn(freq->tmpfile.buf);
5424bc55
TRC
2434
2435 release_http_object_request(freq);
2436}
2437
2438void release_http_object_request(struct http_object_request *freq)
2439{
2440 if (freq->localfile != -1) {
2441 close(freq->localfile);
2442 freq->localfile = -1;
2443 }
ce528de0 2444 FREE_AND_NULL(freq->url);
4b9fa0e3
TRC
2445 if (freq->slot != NULL) {
2446 freq->slot->callback_func = NULL;
2447 freq->slot->callback_data = NULL;
2448 release_active_slot(freq->slot);
2449 freq->slot = NULL;
2450 }
390c6cbc 2451 strbuf_release(&freq->tmpfile);
5424bc55 2452}