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