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