]> git.ipfire.org Git - thirdparty/git.git/blame - http.c
http: restrict auth methods to what the server advertises
[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;
840398fe
JK
1343 if (results->auth_avail)
1344 http_auth_methods &= results->auth_avail;
4dbe6646 1345#endif
88097030
JK
1346 return HTTP_REAUTH;
1347 }
1348 } else {
372370f1
KF
1349 if (results->http_connectcode == 407)
1350 credential_reject(&proxy_auth);
3503e9ab 1351#if LIBCURL_VERSION_NUM >= 0x070c00
88097030
JK
1352 if (!curl_errorstr[0])
1353 strlcpy(curl_errorstr,
1354 curl_easy_strerror(results->curl_result),
1355 sizeof(curl_errorstr));
3503e9ab 1356#endif
88097030
JK
1357 return HTTP_ERROR;
1358 }
1359}
1360
beed336c
JK
1361int run_one_slot(struct active_request_slot *slot,
1362 struct slot_results *results)
1363{
1364 slot->results = results;
1365 if (!start_active_slot(slot)) {
1366 snprintf(curl_errorstr, sizeof(curl_errorstr),
1367 "failed to start HTTP request");
1368 return HTTP_START_FAILED;
1369 }
1370
1371 run_active_slot(slot);
1372 return handle_curl_result(results);
1373}
1374
8cb01e2f
JS
1375struct curl_slist *http_copy_default_headers(void)
1376{
1377 struct curl_slist *headers = NULL, *h;
1378
1379 for (h = extra_http_headers; h; h = h->next)
1380 headers = curl_slist_append(headers, h->data);
1381
1382 return headers;
1383}
1384
132b70a2
JK
1385static CURLcode curlinfo_strbuf(CURL *curl, CURLINFO info, struct strbuf *buf)
1386{
1387 char *ptr;
1388 CURLcode ret;
1389
1390 strbuf_reset(buf);
1391 ret = curl_easy_getinfo(curl, info, &ptr);
1392 if (!ret && ptr)
1393 strbuf_addstr(buf, ptr);
1394 return ret;
1395}
1396
e3131626
JK
1397/*
1398 * Check for and extract a content-type parameter. "raw"
1399 * should be positioned at the start of the potential
1400 * parameter, with any whitespace already removed.
1401 *
1402 * "name" is the name of the parameter. The value is appended
1403 * to "out".
1404 */
1405static int extract_param(const char *raw, const char *name,
1406 struct strbuf *out)
1407{
1408 size_t len = strlen(name);
1409
1410 if (strncasecmp(raw, name, len))
1411 return -1;
1412 raw += len;
1413
1414 if (*raw != '=')
1415 return -1;
1416 raw++;
1417
f34a655d 1418 while (*raw && !isspace(*raw) && *raw != ';')
e3131626
JK
1419 strbuf_addch(out, *raw++);
1420 return 0;
1421}
1422
bf197fd7
JK
1423/*
1424 * Extract a normalized version of the content type, with any
1425 * spaces suppressed, all letters lowercased, and no trailing ";"
1426 * or parameters.
1427 *
1428 * Note that we will silently remove even invalid whitespace. For
1429 * example, "text / plain" is specifically forbidden by RFC 2616,
1430 * but "text/plain" is the only reasonable output, and this keeps
1431 * our code simple.
1432 *
e3131626
JK
1433 * If the "charset" argument is not NULL, store the value of any
1434 * charset parameter there.
1435 *
bf197fd7 1436 * Example:
e3131626 1437 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
bf197fd7
JK
1438 * "text / plain" -> "text/plain"
1439 */
e3131626
JK
1440static void extract_content_type(struct strbuf *raw, struct strbuf *type,
1441 struct strbuf *charset)
bf197fd7
JK
1442{
1443 const char *p;
1444
1445 strbuf_reset(type);
1446 strbuf_grow(type, raw->len);
1447 for (p = raw->buf; *p; p++) {
1448 if (isspace(*p))
1449 continue;
e3131626
JK
1450 if (*p == ';') {
1451 p++;
bf197fd7 1452 break;
e3131626 1453 }
bf197fd7
JK
1454 strbuf_addch(type, tolower(*p));
1455 }
e3131626
JK
1456
1457 if (!charset)
1458 return;
1459
1460 strbuf_reset(charset);
1461 while (*p) {
f34a655d 1462 while (isspace(*p) || *p == ';')
e3131626
JK
1463 p++;
1464 if (!extract_param(p, "charset", charset))
1465 return;
1466 while (*p && !isspace(*p))
1467 p++;
1468 }
c553fd1c
JK
1469
1470 if (!charset->len && starts_with(type->buf, "text/"))
1471 strbuf_addstr(charset, "ISO-8859-1");
bf197fd7
JK
1472}
1473
f18604bb
YE
1474static void write_accept_language(struct strbuf *buf)
1475{
1476 /*
1477 * MAX_DECIMAL_PLACES must not be larger than 3. If it is larger than
1478 * that, q-value will be smaller than 0.001, the minimum q-value the
1479 * HTTP specification allows. See
1480 * http://tools.ietf.org/html/rfc7231#section-5.3.1 for q-value.
1481 */
1482 const int MAX_DECIMAL_PLACES = 3;
1483 const int MAX_LANGUAGE_TAGS = 1000;
1484 const int MAX_ACCEPT_LANGUAGE_HEADER_SIZE = 4000;
1485 char **language_tags = NULL;
1486 int num_langs = 0;
1487 const char *s = get_preferred_languages();
1488 int i;
1489 struct strbuf tag = STRBUF_INIT;
1490
1491 /* Don't add Accept-Language header if no language is preferred. */
1492 if (!s)
1493 return;
1494
1495 /*
1496 * Split the colon-separated string of preferred languages into
1497 * language_tags array.
1498 */
1499 do {
1500 /* collect language tag */
1501 for (; *s && (isalnum(*s) || *s == '_'); s++)
1502 strbuf_addch(&tag, *s == '_' ? '-' : *s);
1503
1504 /* skip .codeset, @modifier and any other unnecessary parts */
1505 while (*s && *s != ':')
1506 s++;
1507
1508 if (tag.len) {
1509 num_langs++;
1510 REALLOC_ARRAY(language_tags, num_langs);
1511 language_tags[num_langs - 1] = strbuf_detach(&tag, NULL);
1512 if (num_langs >= MAX_LANGUAGE_TAGS - 1) /* -1 for '*' */
1513 break;
1514 }
1515 } while (*s++);
1516
1517 /* write Accept-Language header into buf */
1518 if (num_langs) {
1519 int last_buf_len = 0;
1520 int max_q;
1521 int decimal_places;
1522 char q_format[32];
1523
1524 /* add '*' */
1525 REALLOC_ARRAY(language_tags, num_langs + 1);
1526 language_tags[num_langs++] = "*"; /* it's OK; this won't be freed */
1527
1528 /* compute decimal_places */
1529 for (max_q = 1, decimal_places = 0;
1530 max_q < num_langs && decimal_places <= MAX_DECIMAL_PLACES;
1531 decimal_places++, max_q *= 10)
1532 ;
1533
5096d490 1534 xsnprintf(q_format, sizeof(q_format), ";q=0.%%0%dd", decimal_places);
f18604bb
YE
1535
1536 strbuf_addstr(buf, "Accept-Language: ");
1537
1538 for (i = 0; i < num_langs; i++) {
1539 if (i > 0)
1540 strbuf_addstr(buf, ", ");
1541
1542 strbuf_addstr(buf, language_tags[i]);
1543
1544 if (i > 0)
1545 strbuf_addf(buf, q_format, max_q - i);
1546
1547 if (buf->len > MAX_ACCEPT_LANGUAGE_HEADER_SIZE) {
1548 strbuf_remove(buf, last_buf_len, buf->len - last_buf_len);
1549 break;
1550 }
1551
1552 last_buf_len = buf->len;
1553 }
1554 }
1555
1556 /* free language tags -- last one is a static '*' */
1557 for (i = 0; i < num_langs - 1; i++)
1558 free(language_tags[i]);
1559 free(language_tags);
1560}
1561
1562/*
1563 * Get an Accept-Language header which indicates user's preferred languages.
1564 *
1565 * Examples:
1566 * LANGUAGE= -> ""
1567 * LANGUAGE=ko:en -> "Accept-Language: ko, en; q=0.9, *; q=0.1"
1568 * LANGUAGE=ko_KR.UTF-8:sr@latin -> "Accept-Language: ko-KR, sr; q=0.9, *; q=0.1"
1569 * LANGUAGE=ko LANG=en_US.UTF-8 -> "Accept-Language: ko, *; q=0.1"
1570 * LANGUAGE= LANG=en_US.UTF-8 -> "Accept-Language: en-US, *; q=0.1"
1571 * LANGUAGE= LANG=C -> ""
1572 */
1573static const char *get_accept_language(void)
1574{
1575 if (!cached_accept_language) {
1576 struct strbuf buf = STRBUF_INIT;
1577 write_accept_language(&buf);
1578 if (buf.len > 0)
1579 cached_accept_language = strbuf_detach(&buf, NULL);
1580 }
1581
1582 return cached_accept_language;
1583}
1584
835c4d36
DT
1585static void http_opt_request_remainder(CURL *curl, off_t pos)
1586{
1587 char buf[128];
1588 xsnprintf(buf, sizeof(buf), "%"PRIuMAX"-", (uintmax_t)pos);
1589 curl_easy_setopt(curl, CURLOPT_RANGE, buf);
1590}
1591
e929cd20
MH
1592/* http_request() targets */
1593#define HTTP_REQUEST_STRBUF 0
1594#define HTTP_REQUEST_FILE 1
1595
1bbcc224
JK
1596static int http_request(const char *url,
1597 void *result, int target,
1598 const struct http_get_options *options)
e929cd20
MH
1599{
1600 struct active_request_slot *slot;
1601 struct slot_results results;
8cb01e2f 1602 struct curl_slist *headers = http_copy_default_headers();
e929cd20 1603 struct strbuf buf = STRBUF_INIT;
f18604bb 1604 const char *accept_language;
e929cd20
MH
1605 int ret;
1606
1607 slot = get_active_slot();
e929cd20
MH
1608 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
1609
1610 if (result == NULL) {
1611 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
1612 } else {
1613 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
1614 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
1615
1616 if (target == HTTP_REQUEST_FILE) {
f8117f55 1617 off_t posn = ftello(result);
e929cd20
MH
1618 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1619 fwrite);
835c4d36
DT
1620 if (posn > 0)
1621 http_opt_request_remainder(slot->curl, posn);
e929cd20
MH
1622 } else
1623 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1624 fwrite_buffer);
1625 }
1626
f18604bb
YE
1627 accept_language = get_accept_language();
1628
1629 if (accept_language)
1630 headers = curl_slist_append(headers, accept_language);
1631
e929cd20 1632 strbuf_addstr(&buf, "Pragma:");
1bbcc224 1633 if (options && options->no_cache)
e929cd20 1634 strbuf_addstr(&buf, " no-cache");
1bbcc224 1635 if (options && options->keep_error)
6d052d78 1636 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 0);
50d34137
JK
1637 if (options && options->initial_request &&
1638 http_follow_config == HTTP_FOLLOW_INITIAL)
1639 curl_easy_setopt(slot->curl, CURLOPT_FOLLOWLOCATION, 1);
e929cd20
MH
1640
1641 headers = curl_slist_append(headers, buf.buf);
1642
1643 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
1644 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
aa90b969 1645 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip");
e929cd20 1646
beed336c 1647 ret = run_one_slot(slot, &results);
e929cd20 1648
bf197fd7
JK
1649 if (options && options->content_type) {
1650 struct strbuf raw = STRBUF_INIT;
1651 curlinfo_strbuf(slot->curl, CURLINFO_CONTENT_TYPE, &raw);
e3131626
JK
1652 extract_content_type(&raw, options->content_type,
1653 options->charset);
bf197fd7
JK
1654 strbuf_release(&raw);
1655 }
4656bf47 1656
78868962
JK
1657 if (options && options->effective_url)
1658 curlinfo_strbuf(slot->curl, CURLINFO_EFFECTIVE_URL,
1659 options->effective_url);
4656bf47 1660
e929cd20
MH
1661 curl_slist_free_all(headers);
1662 strbuf_release(&buf);
1663
1664 return ret;
1665}
1666
c93c92f3
JK
1667/*
1668 * Update the "base" url to a more appropriate value, as deduced by
1669 * redirects seen when requesting a URL starting with "url".
1670 *
1671 * The "asked" parameter is a URL that we asked curl to access, and must begin
1672 * with "base".
1673 *
1674 * The "got" parameter is the URL that curl reported to us as where we ended
1675 * up.
1676 *
1677 * Returns 1 if we updated the base url, 0 otherwise.
1678 *
1679 * Our basic strategy is to compare "base" and "asked" to find the bits
1680 * specific to our request. We then strip those bits off of "got" to yield the
1681 * new base. So for example, if our base is "http://example.com/foo.git",
1682 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1683 * with "https://other.example.com/foo.git/info/refs". We would want the
1684 * new URL to become "https://other.example.com/foo.git".
1685 *
1686 * Note that this assumes a sane redirect scheme. It's entirely possible
1687 * in the example above to end up at a URL that does not even end in
6628eb41
JK
1688 * "info/refs". In such a case we die. There's not much we can do, such a
1689 * scheme is unlikely to represent a real git repository, and failing to
1690 * rewrite the base opens options for malicious redirects to do funny things.
c93c92f3
JK
1691 */
1692static int update_url_from_redirect(struct strbuf *base,
1693 const char *asked,
1694 const struct strbuf *got)
1695{
1696 const char *tail;
986d7f4d 1697 size_t new_len;
c93c92f3
JK
1698
1699 if (!strcmp(asked, got->buf))
1700 return 0;
1701
de8118e1 1702 if (!skip_prefix(asked, base->buf, &tail))
c93c92f3
JK
1703 die("BUG: update_url_from_redirect: %s is not a superset of %s",
1704 asked, base->buf);
1705
986d7f4d
JK
1706 new_len = got->len;
1707 if (!strip_suffix_mem(got->buf, &new_len, tail))
6628eb41
JK
1708 die(_("unable to update url base from redirection:\n"
1709 " asked for: %s\n"
1710 " redirect: %s"),
1711 asked, got->buf);
c93c92f3
JK
1712
1713 strbuf_reset(base);
986d7f4d 1714 strbuf_add(base, got->buf, new_len);
6628eb41 1715
c93c92f3
JK
1716 return 1;
1717}
1718
4656bf47 1719static int http_request_reauth(const char *url,
4656bf47 1720 void *result, int target,
1bbcc224 1721 struct http_get_options *options)
8d677edc 1722{
1bbcc224 1723 int ret = http_request(url, result, target, options);
c93c92f3
JK
1724
1725 if (options && options->effective_url && options->base_url) {
1726 if (update_url_from_redirect(options->base_url,
1727 url, options->effective_url)) {
1728 credential_from_url(&http_auth, options->base_url->buf);
1729 url = options->effective_url->buf;
1730 }
1731 }
1732
8d677edc
JK
1733 if (ret != HTTP_REAUTH)
1734 return ret;
6d052d78
JK
1735
1736 /*
1737 * If we are using KEEP_ERROR, the previous request may have
1738 * put cruft into our output stream; we should clear it out before
1739 * making our next request. We only know how to do this for
1740 * the strbuf case, but that is enough to satisfy current callers.
1741 */
1bbcc224 1742 if (options && options->keep_error) {
6d052d78
JK
1743 switch (target) {
1744 case HTTP_REQUEST_STRBUF:
1745 strbuf_reset(result);
1746 break;
1747 default:
1748 die("BUG: HTTP_KEEP_ERROR is only supported with strbufs");
1749 }
1750 }
2501aff8
JK
1751
1752 credential_fill(&http_auth);
1753
1bbcc224 1754 return http_request(url, result, target, options);
8d677edc
JK
1755}
1756
4656bf47 1757int http_get_strbuf(const char *url,
1bbcc224
JK
1758 struct strbuf *result,
1759 struct http_get_options *options)
e929cd20 1760{
1bbcc224 1761 return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options);
e929cd20
MH
1762}
1763
83e41e2e 1764/*
a7793a74 1765 * Downloads a URL and stores the result in the given file.
83e41e2e
JH
1766 *
1767 * If a previous interrupted download is detected (i.e. a previous temporary
1768 * file is still around) the download is resumed.
1769 */
1bbcc224
JK
1770static int http_get_file(const char *url, const char *filename,
1771 struct http_get_options *options)
e929cd20
MH
1772{
1773 int ret;
1774 struct strbuf tmpfile = STRBUF_INIT;
1775 FILE *result;
1776
1777 strbuf_addf(&tmpfile, "%s.temp", filename);
1778 result = fopen(tmpfile.buf, "a");
3d1fb769 1779 if (!result) {
e929cd20
MH
1780 error("Unable to open local file %s", tmpfile.buf);
1781 ret = HTTP_ERROR;
1782 goto cleanup;
1783 }
1784
1bbcc224 1785 ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options);
e929cd20
MH
1786 fclose(result);
1787
cb5add58 1788 if (ret == HTTP_OK && finalize_object_file(tmpfile.buf, filename))
e929cd20
MH
1789 ret = HTTP_ERROR;
1790cleanup:
1791 strbuf_release(&tmpfile);
1792 return ret;
1793}
1794
c13b2633 1795int http_fetch_ref(const char *base, struct ref *ref)
d7e92806 1796{
1bbcc224 1797 struct http_get_options options = {0};
d7e92806
MH
1798 char *url;
1799 struct strbuf buffer = STRBUF_INIT;
0d5896e1 1800 int ret = -1;
d7e92806 1801
1bbcc224
JK
1802 options.no_cache = 1;
1803
c13b2633 1804 url = quote_ref_url(base, ref->name);
1bbcc224 1805 if (http_get_strbuf(url, &buffer, &options) == HTTP_OK) {
0d5896e1
MH
1806 strbuf_rtrim(&buffer);
1807 if (buffer.len == 40)
f4e54d02 1808 ret = get_oid_hex(buffer.buf, &ref->old_oid);
59556548 1809 else if (starts_with(buffer.buf, "ref: ")) {
0d5896e1
MH
1810 ref->symref = xstrdup(buffer.buf + 5);
1811 ret = 0;
d7e92806 1812 }
d7e92806
MH
1813 }
1814
1815 strbuf_release(&buffer);
1816 free(url);
1817 return ret;
1818}
b8caac2b
TRC
1819
1820/* Helpers for fetching packs */
750ef425 1821static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
b8caac2b 1822{
750ef425 1823 char *url, *tmp;
b8caac2b 1824 struct strbuf buf = STRBUF_INIT;
b8caac2b 1825
b8caac2b 1826 if (http_is_verbose)
162eb5f8 1827 fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
b8caac2b
TRC
1828
1829 end_url_with_slash(&buf, base_url);
162eb5f8 1830 strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
b8caac2b
TRC
1831 url = strbuf_detach(&buf, NULL);
1832
750ef425
SP
1833 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
1834 tmp = strbuf_detach(&buf, NULL);
1835
70900eda 1836 if (http_get_file(url, tmp, NULL) != HTTP_OK) {
82247e9b 1837 error("Unable to get pack index %s", url);
750ef425
SP
1838 free(tmp);
1839 tmp = NULL;
1840 }
b8caac2b 1841
b8caac2b 1842 free(url);
750ef425 1843 return tmp;
b8caac2b
TRC
1844}
1845
1846static int fetch_and_setup_pack_index(struct packed_git **packs_head,
1847 unsigned char *sha1, const char *base_url)
1848{
1849 struct packed_git *new_pack;
750ef425
SP
1850 char *tmp_idx = NULL;
1851 int ret;
b8caac2b 1852
750ef425 1853 if (has_pack_index(sha1)) {
8b9c2dd4 1854 new_pack = parse_pack_index(sha1, sha1_pack_index_name(sha1));
750ef425
SP
1855 if (!new_pack)
1856 return -1; /* parse_pack_index() already issued error message */
1857 goto add_pack;
1858 }
1859
1860 tmp_idx = fetch_pack_index(sha1, base_url);
1861 if (!tmp_idx)
b8caac2b
TRC
1862 return -1;
1863
750ef425
SP
1864 new_pack = parse_pack_index(sha1, tmp_idx);
1865 if (!new_pack) {
1866 unlink(tmp_idx);
1867 free(tmp_idx);
1868
b8caac2b 1869 return -1; /* parse_pack_index() already issued error message */
750ef425
SP
1870 }
1871
1872 ret = verify_pack_index(new_pack);
1873 if (!ret) {
1874 close_pack_index(new_pack);
cb5add58 1875 ret = finalize_object_file(tmp_idx, sha1_pack_index_name(sha1));
750ef425
SP
1876 }
1877 free(tmp_idx);
1878 if (ret)
1879 return -1;
1880
1881add_pack:
b8caac2b
TRC
1882 new_pack->next = *packs_head;
1883 *packs_head = new_pack;
1884 return 0;
1885}
1886
1887int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
1888{
1bbcc224 1889 struct http_get_options options = {0};
b8caac2b
TRC
1890 int ret = 0, i = 0;
1891 char *url, *data;
1892 struct strbuf buf = STRBUF_INIT;
1893 unsigned char sha1[20];
1894
1895 end_url_with_slash(&buf, base_url);
1896 strbuf_addstr(&buf, "objects/info/packs");
1897 url = strbuf_detach(&buf, NULL);
1898
1bbcc224
JK
1899 options.no_cache = 1;
1900 ret = http_get_strbuf(url, &buf, &options);
b8caac2b
TRC
1901 if (ret != HTTP_OK)
1902 goto cleanup;
1903
1904 data = buf.buf;
1905 while (i < buf.len) {
1906 switch (data[i]) {
1907 case 'P':
1908 i++;
1909 if (i + 52 <= buf.len &&
59556548
CC
1910 starts_with(data + i, " pack-") &&
1911 starts_with(data + i + 46, ".pack\n")) {
b8caac2b
TRC
1912 get_sha1_hex(data + i + 6, sha1);
1913 fetch_and_setup_pack_index(packs_head, sha1,
1914 base_url);
1915 i += 51;
1916 break;
1917 }
1918 default:
1919 while (i < buf.len && data[i] != '\n')
1920 i++;
1921 }
1922 i++;
1923 }
1924
1925cleanup:
1926 free(url);
1927 return ret;
1928}
2264dfa5
TRC
1929
1930void release_http_pack_request(struct http_pack_request *preq)
1931{
1932 if (preq->packfile != NULL) {
1933 fclose(preq->packfile);
1934 preq->packfile = NULL;
2264dfa5 1935 }
2264dfa5
TRC
1936 preq->slot = NULL;
1937 free(preq->url);
826aed50 1938 free(preq);
2264dfa5
TRC
1939}
1940
1941int finish_http_pack_request(struct http_pack_request *preq)
1942{
2264dfa5 1943 struct packed_git **lst;
021ab6f0 1944 struct packed_git *p = preq->target;
fe72d420 1945 char *tmp_idx;
9ae97018 1946 size_t len;
d3180279 1947 struct child_process ip = CHILD_PROCESS_INIT;
fe72d420 1948 const char *ip_argv[8];
2264dfa5 1949
fe72d420 1950 close_pack_index(p);
2264dfa5 1951
3065274c
SP
1952 fclose(preq->packfile);
1953 preq->packfile = NULL;
2264dfa5
TRC
1954
1955 lst = preq->lst;
021ab6f0 1956 while (*lst != p)
2264dfa5
TRC
1957 lst = &((*lst)->next);
1958 *lst = (*lst)->next;
1959
9ae97018
JK
1960 if (!strip_suffix(preq->tmpfile, ".pack.temp", &len))
1961 die("BUG: pack tmpfile does not end in .pack.temp?");
1962 tmp_idx = xstrfmt("%.*s.idx.temp", (int)len, preq->tmpfile);
fe72d420
SP
1963
1964 ip_argv[0] = "index-pack";
1965 ip_argv[1] = "-o";
1966 ip_argv[2] = tmp_idx;
1967 ip_argv[3] = preq->tmpfile;
1968 ip_argv[4] = NULL;
1969
fe72d420
SP
1970 ip.argv = ip_argv;
1971 ip.git_cmd = 1;
1972 ip.no_stdin = 1;
1973 ip.no_stdout = 1;
1974
1975 if (run_command(&ip)) {
1976 unlink(preq->tmpfile);
1977 unlink(tmp_idx);
1978 free(tmp_idx);
2264dfa5 1979 return -1;
fe72d420
SP
1980 }
1981
1982 unlink(sha1_pack_index_name(p->sha1));
2264dfa5 1983
cb5add58
JH
1984 if (finalize_object_file(preq->tmpfile, sha1_pack_name(p->sha1))
1985 || finalize_object_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
fe72d420 1986 free(tmp_idx);
2264dfa5 1987 return -1;
fe72d420 1988 }
2264dfa5 1989
fe72d420
SP
1990 install_packed_git(p);
1991 free(tmp_idx);
2264dfa5
TRC
1992 return 0;
1993}
1994
1995struct http_pack_request *new_http_pack_request(
1996 struct packed_git *target, const char *base_url)
1997{
f8117f55 1998 off_t prev_posn = 0;
2264dfa5
TRC
1999 struct strbuf buf = STRBUF_INIT;
2000 struct http_pack_request *preq;
2001
ec99c9a8 2002 preq = xcalloc(1, sizeof(*preq));
2264dfa5 2003 preq->target = target;
2264dfa5
TRC
2004
2005 end_url_with_slash(&buf, base_url);
2006 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
2007 sha1_to_hex(target->sha1));
bb99190e 2008 preq->url = strbuf_detach(&buf, NULL);
2264dfa5 2009
90d05713
TRC
2010 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
2011 sha1_pack_name(target->sha1));
2264dfa5
TRC
2012 preq->packfile = fopen(preq->tmpfile, "a");
2013 if (!preq->packfile) {
2014 error("Unable to open local file %s for pack",
2015 preq->tmpfile);
2016 goto abort;
2017 }
2018
2019 preq->slot = get_active_slot();
2264dfa5
TRC
2020 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
2021 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
bb99190e 2022 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
2264dfa5
TRC
2023 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
2024 no_pragma_header);
2025
2026 /*
2027 * If there is data present from a previous transfer attempt,
2028 * resume where it left off
2029 */
f8117f55 2030 prev_posn = ftello(preq->packfile);
2264dfa5
TRC
2031 if (prev_posn>0) {
2032 if (http_is_verbose)
2033 fprintf(stderr,
838ecf0b
RJ
2034 "Resuming fetch of pack %s at byte %"PRIuMAX"\n",
2035 sha1_to_hex(target->sha1), (uintmax_t)prev_posn);
835c4d36 2036 http_opt_request_remainder(preq->slot->curl, prev_posn);
2264dfa5
TRC
2037 }
2038
2039 return preq;
2040
2041abort:
bb99190e 2042 free(preq->url);
5ae9ebfd 2043 free(preq);
2264dfa5
TRC
2044 return NULL;
2045}
5424bc55
TRC
2046
2047/* Helpers for fetching objects (loose) */
a04ff3ec 2048static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
5424bc55
TRC
2049 void *data)
2050{
2051 unsigned char expn[4096];
2052 size_t size = eltsize * nmemb;
2053 int posn = 0;
17966c0a
EW
2054 struct http_object_request *freq = data;
2055 struct active_request_slot *slot = freq->slot;
2056
2057 if (slot) {
2058 CURLcode c = curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE,
2059 &slot->http_code);
2060 if (c != CURLE_OK)
2061 die("BUG: curl_easy_getinfo for HTTP code failed: %s",
2062 curl_easy_strerror(c));
3680f16f 2063 if (slot->http_code >= 300)
17966c0a
EW
2064 return size;
2065 }
2066
5424bc55
TRC
2067 do {
2068 ssize_t retval = xwrite(freq->localfile,
2069 (char *) ptr + posn, size - posn);
2070 if (retval < 0)
2071 return posn;
2072 posn += retval;
2073 } while (posn < size);
2074
2075 freq->stream.avail_in = size;
a04ff3ec 2076 freq->stream.next_in = (void *)ptr;
5424bc55
TRC
2077 do {
2078 freq->stream.next_out = expn;
2079 freq->stream.avail_out = sizeof(expn);
2080 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
2081 git_SHA1_Update(&freq->c, expn,
2082 sizeof(expn) - freq->stream.avail_out);
2083 } while (freq->stream.avail_in && freq->zret == Z_OK);
5424bc55
TRC
2084 return size;
2085}
2086
2087struct http_object_request *new_http_object_request(const char *base_url,
2088 unsigned char *sha1)
2089{
2090 char *hex = sha1_to_hex(sha1);
30d6c6ea 2091 const char *filename;
5424bc55 2092 char prevfile[PATH_MAX];
5424bc55 2093 int prevlocal;
a04ff3ec 2094 char prev_buf[PREV_BUF_SIZE];
5424bc55 2095 ssize_t prev_read = 0;
f8117f55 2096 off_t prev_posn = 0;
5424bc55
TRC
2097 struct http_object_request *freq;
2098
ec99c9a8 2099 freq = xcalloc(1, sizeof(*freq));
5424bc55
TRC
2100 hashcpy(freq->sha1, sha1);
2101 freq->localfile = -1;
2102
2103 filename = sha1_file_name(sha1);
5424bc55
TRC
2104 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
2105 "%s.temp", filename);
2106
2107 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
2108 unlink_or_warn(prevfile);
2109 rename(freq->tmpfile, prevfile);
2110 unlink_or_warn(freq->tmpfile);
2111
2112 if (freq->localfile != -1)
2113 error("fd leakage in start: %d", freq->localfile);
2114 freq->localfile = open(freq->tmpfile,
2115 O_WRONLY | O_CREAT | O_EXCL, 0666);
2116 /*
2117 * This could have failed due to the "lazy directory creation";
2118 * try to mkdir the last path component.
2119 */
2120 if (freq->localfile < 0 && errno == ENOENT) {
2121 char *dir = strrchr(freq->tmpfile, '/');
2122 if (dir) {
2123 *dir = 0;
2124 mkdir(freq->tmpfile, 0777);
2125 *dir = '/';
2126 }
2127 freq->localfile = open(freq->tmpfile,
2128 O_WRONLY | O_CREAT | O_EXCL, 0666);
2129 }
2130
2131 if (freq->localfile < 0) {
d2e255ee 2132 error_errno("Couldn't create temporary file %s", freq->tmpfile);
5424bc55
TRC
2133 goto abort;
2134 }
2135
5424bc55
TRC
2136 git_inflate_init(&freq->stream);
2137
2138 git_SHA1_Init(&freq->c);
2139
bb99190e 2140 freq->url = get_remote_object_url(base_url, hex, 0);
5424bc55
TRC
2141
2142 /*
2143 * If a previous temp file is present, process what was already
2144 * fetched.
2145 */
2146 prevlocal = open(prevfile, O_RDONLY);
2147 if (prevlocal != -1) {
2148 do {
2149 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
2150 if (prev_read>0) {
2151 if (fwrite_sha1_file(prev_buf,
2152 1,
2153 prev_read,
2154 freq) == prev_read) {
2155 prev_posn += prev_read;
2156 } else {
2157 prev_read = -1;
2158 }
2159 }
2160 } while (prev_read > 0);
2161 close(prevlocal);
2162 }
2163 unlink_or_warn(prevfile);
2164
2165 /*
2166 * Reset inflate/SHA1 if there was an error reading the previous temp
2167 * file; also rewind to the beginning of the local file.
2168 */
2169 if (prev_read == -1) {
2170 memset(&freq->stream, 0, sizeof(freq->stream));
2171 git_inflate_init(&freq->stream);
2172 git_SHA1_Init(&freq->c);
2173 if (prev_posn>0) {
2174 prev_posn = 0;
2175 lseek(freq->localfile, 0, SEEK_SET);
0c4f21e4 2176 if (ftruncate(freq->localfile, 0) < 0) {
d2e255ee
NTND
2177 error_errno("Couldn't truncate temporary file %s",
2178 freq->tmpfile);
0c4f21e4
JL
2179 goto abort;
2180 }
5424bc55
TRC
2181 }
2182 }
2183
2184 freq->slot = get_active_slot();
2185
2186 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
17966c0a 2187 curl_easy_setopt(freq->slot->curl, CURLOPT_FAILONERROR, 0);
5424bc55
TRC
2188 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
2189 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
bb99190e 2190 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
5424bc55
TRC
2191 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
2192
2193 /*
2194 * If we have successfully processed data from a previous fetch
2195 * attempt, only fetch the data we don't already have.
2196 */
2197 if (prev_posn>0) {
2198 if (http_is_verbose)
2199 fprintf(stderr,
838ecf0b
RJ
2200 "Resuming fetch of object %s at byte %"PRIuMAX"\n",
2201 hex, (uintmax_t)prev_posn);
835c4d36 2202 http_opt_request_remainder(freq->slot->curl, prev_posn);
5424bc55
TRC
2203 }
2204
2205 return freq;
2206
5424bc55 2207abort:
bb99190e 2208 free(freq->url);
5424bc55
TRC
2209 free(freq);
2210 return NULL;
2211}
2212
2213void process_http_object_request(struct http_object_request *freq)
2214{
2215 if (freq->slot == NULL)
2216 return;
2217 freq->curl_result = freq->slot->curl_result;
2218 freq->http_code = freq->slot->http_code;
2219 freq->slot = NULL;
2220}
2221
2222int finish_http_object_request(struct http_object_request *freq)
2223{
2224 struct stat st;
2225
2226 close(freq->localfile);
2227 freq->localfile = -1;
2228
2229 process_http_object_request(freq);
2230
2231 if (freq->http_code == 416) {
bd757c18 2232 warning("requested range invalid; we may already have all the data.");
5424bc55
TRC
2233 } else if (freq->curl_result != CURLE_OK) {
2234 if (stat(freq->tmpfile, &st) == 0)
2235 if (st.st_size == 0)
2236 unlink_or_warn(freq->tmpfile);
2237 return -1;
2238 }
2239
2240 git_inflate_end(&freq->stream);
2241 git_SHA1_Final(freq->real_sha1, &freq->c);
2242 if (freq->zret != Z_STREAM_END) {
2243 unlink_or_warn(freq->tmpfile);
2244 return -1;
2245 }
2246 if (hashcmp(freq->sha1, freq->real_sha1)) {
2247 unlink_or_warn(freq->tmpfile);
2248 return -1;
2249 }
2250 freq->rename =
cb5add58 2251 finalize_object_file(freq->tmpfile, sha1_file_name(freq->sha1));
5424bc55
TRC
2252
2253 return freq->rename;
2254}
2255
2256void abort_http_object_request(struct http_object_request *freq)
2257{
2258 unlink_or_warn(freq->tmpfile);
2259
2260 release_http_object_request(freq);
2261}
2262
2263void release_http_object_request(struct http_object_request *freq)
2264{
2265 if (freq->localfile != -1) {
2266 close(freq->localfile);
2267 freq->localfile = -1;
2268 }
2269 if (freq->url != NULL) {
2270 free(freq->url);
2271 freq->url = NULL;
2272 }
4b9fa0e3
TRC
2273 if (freq->slot != NULL) {
2274 freq->slot->callback_func = NULL;
2275 freq->slot->callback_data = NULL;
2276 release_active_slot(freq->slot);
2277 freq->slot = NULL;
2278 }
5424bc55 2279}