]> git.ipfire.org Git - thirdparty/git.git/blame - http.c
Git 2.3.7
[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"
29508e1e 11
4251ccbd 12int active_requests;
e9176745 13int http_is_verbose;
de1a2fdd 14size_t http_post_buffer = 16 * LARGE_PACKET_MAX;
29508e1e 15
b8ac9230
MS
16#if LIBCURL_VERSION_NUM >= 0x070a06
17#define LIBCURL_CAN_HANDLE_AUTH_ANY
18#endif
19
ad75ebe5
TRC
20static int min_curl_sessions = 1;
21static int curl_session_count;
29508e1e 22#ifdef USE_CURL_MULTI
cc3530e8
MH
23static int max_requests = -1;
24static CURLM *curlm;
29508e1e
NH
25#endif
26#ifndef NO_CURL_EASY_DUPHANDLE
cc3530e8 27static CURL *curl_default;
29508e1e 28#endif
5424bc55
TRC
29
30#define PREV_BUF_SIZE 4096
31#define RANGE_HEADER_SIZE 30
32
29508e1e
NH
33char curl_errorstr[CURL_ERROR_SIZE];
34
cc3530e8 35static int curl_ssl_verify = -1;
4bc444eb 36static int curl_ssl_try;
4251ccbd 37static const char *ssl_cert;
ef52aafa 38#if LIBCURL_VERSION_NUM >= 0x070903
4251ccbd 39static const char *ssl_key;
29508e1e
NH
40#endif
41#if LIBCURL_VERSION_NUM >= 0x070908
4251ccbd 42static const char *ssl_capath;
29508e1e 43#endif
4251ccbd 44static const char *ssl_cainfo;
cc3530e8
MH
45static long curl_low_speed_limit = -1;
46static long curl_low_speed_time = -1;
4251ccbd
JH
47static int curl_ftp_no_epsv;
48static const char *curl_http_proxy;
bcfb95dd 49static const char *curl_cookie_file;
912b2acf 50static int curl_save_cookies;
2501aff8 51struct credential http_auth = CREDENTIAL_INIT;
a4ddbc33 52static int http_proactive_auth;
b1d1058c 53static const char *user_agent;
29508e1e 54
30dd9163
ML
55#if LIBCURL_VERSION_NUM >= 0x071700
56/* Use CURLOPT_KEYPASSWD as is */
57#elif LIBCURL_VERSION_NUM >= 0x070903
58#define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
59#else
60#define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
61#endif
62
148bb6a7 63static struct credential cert_auth = CREDENTIAL_INIT;
30dd9163 64static int ssl_cert_password_required;
4dbe6646 65#ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
66static unsigned long http_auth_methods = CURLAUTH_ANY;
67#endif
30dd9163 68
cc3530e8 69static struct curl_slist *pragma_header;
5424bc55 70static struct curl_slist *no_pragma_header;
e9176745 71
4251ccbd 72static struct active_request_slot *active_queue_head;
29508e1e 73
a04ff3ec 74size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
29508e1e
NH
75{
76 size_t size = eltsize * nmemb;
f444e528
JH
77 struct buffer *buffer = buffer_;
78
028c2976
MH
79 if (size > buffer->buf.len - buffer->posn)
80 size = buffer->buf.len - buffer->posn;
81 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
29508e1e 82 buffer->posn += size;
028c2976 83
29508e1e
NH
84 return size;
85}
86
3944ba0c
MS
87#ifndef NO_CURL_IOCTL
88curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
89{
90 struct buffer *buffer = clientp;
91
92 switch (cmd) {
93 case CURLIOCMD_NOP:
94 return CURLIOE_OK;
95
96 case CURLIOCMD_RESTARTREAD:
97 buffer->posn = 0;
98 return CURLIOE_OK;
99
100 default:
101 return CURLIOE_UNKNOWNCMD;
102 }
103}
104#endif
105
a04ff3ec 106size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
29508e1e
NH
107{
108 size_t size = eltsize * nmemb;
f444e528
JH
109 struct strbuf *buffer = buffer_;
110
028c2976 111 strbuf_add(buffer, ptr, size);
29508e1e
NH
112 return size;
113}
114
a04ff3ec 115size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf)
29508e1e 116{
29508e1e
NH
117 return eltsize * nmemb;
118}
119
29508e1e
NH
120#ifdef USE_CURL_MULTI
121static void process_curl_messages(void)
122{
123 int num_messages;
124 struct active_request_slot *slot;
125 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
126
127 while (curl_message != NULL) {
128 if (curl_message->msg == CURLMSG_DONE) {
129 int curl_result = curl_message->data.result;
130 slot = active_queue_head;
131 while (slot != NULL &&
132 slot->curl != curl_message->easy_handle)
133 slot = slot->next;
134 if (slot != NULL) {
135 curl_multi_remove_handle(curlm, slot->curl);
136 slot->curl_result = curl_result;
137 finish_active_slot(slot);
138 } else {
139 fprintf(stderr, "Received DONE message for unknown request!\n");
140 }
141 } else {
142 fprintf(stderr, "Unknown CURL message received: %d\n",
143 (int)curl_message->msg);
144 }
145 curl_message = curl_multi_info_read(curlm, &num_messages);
146 }
147}
148#endif
149
ef90d6d4 150static int http_options(const char *var, const char *value, void *cb)
29508e1e
NH
151{
152 if (!strcmp("http.sslverify", var)) {
7059cd99 153 curl_ssl_verify = git_config_bool(var, value);
29508e1e
NH
154 return 0;
155 }
7059cd99
JH
156 if (!strcmp("http.sslcert", var))
157 return git_config_string(&ssl_cert, var, value);
ef52aafa 158#if LIBCURL_VERSION_NUM >= 0x070903
7059cd99
JH
159 if (!strcmp("http.sslkey", var))
160 return git_config_string(&ssl_key, var, value);
29508e1e
NH
161#endif
162#if LIBCURL_VERSION_NUM >= 0x070908
7059cd99
JH
163 if (!strcmp("http.sslcapath", var))
164 return git_config_string(&ssl_capath, var, value);
29508e1e 165#endif
7059cd99
JH
166 if (!strcmp("http.sslcainfo", var))
167 return git_config_string(&ssl_cainfo, var, value);
754ae192 168 if (!strcmp("http.sslcertpasswordprotected", var)) {
3f4ccd2b 169 ssl_cert_password_required = git_config_bool(var, value);
754ae192
ML
170 return 0;
171 }
4bc444eb
MV
172 if (!strcmp("http.ssltry", var)) {
173 curl_ssl_try = git_config_bool(var, value);
174 return 0;
175 }
ad75ebe5
TRC
176 if (!strcmp("http.minsessions", var)) {
177 min_curl_sessions = git_config_int(var, value);
178#ifndef USE_CURL_MULTI
179 if (min_curl_sessions > 1)
180 min_curl_sessions = 1;
181#endif
182 return 0;
183 }
a6080a0a 184#ifdef USE_CURL_MULTI
29508e1e 185 if (!strcmp("http.maxrequests", var)) {
7059cd99 186 max_requests = git_config_int(var, value);
29508e1e
NH
187 return 0;
188 }
189#endif
29508e1e 190 if (!strcmp("http.lowspeedlimit", var)) {
7059cd99 191 curl_low_speed_limit = (long)git_config_int(var, value);
29508e1e
NH
192 return 0;
193 }
194 if (!strcmp("http.lowspeedtime", var)) {
7059cd99 195 curl_low_speed_time = (long)git_config_int(var, value);
29508e1e
NH
196 return 0;
197 }
198
3ea099d4
SK
199 if (!strcmp("http.noepsv", var)) {
200 curl_ftp_no_epsv = git_config_bool(var, value);
201 return 0;
202 }
7059cd99
JH
203 if (!strcmp("http.proxy", var))
204 return git_config_string(&curl_http_proxy, var, value);
3ea099d4 205
bcfb95dd
DB
206 if (!strcmp("http.cookiefile", var))
207 return git_config_string(&curl_cookie_file, var, value);
912b2acf
DB
208 if (!strcmp("http.savecookies", var)) {
209 curl_save_cookies = git_config_bool(var, value);
210 return 0;
211 }
bcfb95dd 212
de1a2fdd
SP
213 if (!strcmp("http.postbuffer", var)) {
214 http_post_buffer = git_config_int(var, value);
215 if (http_post_buffer < LARGE_PACKET_MAX)
216 http_post_buffer = LARGE_PACKET_MAX;
217 return 0;
218 }
219
b1d1058c
SO
220 if (!strcmp("http.useragent", var))
221 return git_config_string(&user_agent, var, value);
222
29508e1e 223 /* Fall back on the default ones */
ef90d6d4 224 return git_default_config(var, value, cb);
29508e1e
NH
225}
226
c33976cb
JH
227static void init_curl_http_auth(CURL *result)
228{
6f4c347c
JK
229 if (!http_auth.username)
230 return;
231
232 credential_fill(&http_auth);
233
234#if LIBCURL_VERSION_NUM >= 0x071301
235 curl_easy_setopt(result, CURLOPT_USERNAME, http_auth.username);
236 curl_easy_setopt(result, CURLOPT_PASSWORD, http_auth.password);
237#else
238 {
aa0834a0 239 static struct strbuf up = STRBUF_INIT;
a94cf2cb
BC
240 /*
241 * Note that we assume we only ever have a single set of
242 * credentials in a given program run, so we do not have
243 * to worry about updating this buffer, only setting its
244 * initial value.
245 */
246 if (!up.len)
247 strbuf_addf(&up, "%s:%s",
248 http_auth.username, http_auth.password);
aa0834a0 249 curl_easy_setopt(result, CURLOPT_USERPWD, up.buf);
c33976cb 250 }
6f4c347c 251#endif
c33976cb
JH
252}
253
30dd9163
ML
254static int has_cert_password(void)
255{
30dd9163
ML
256 if (ssl_cert == NULL || ssl_cert_password_required != 1)
257 return 0;
148bb6a7
JK
258 if (!cert_auth.password) {
259 cert_auth.protocol = xstrdup("cert");
75e9a405 260 cert_auth.username = xstrdup("");
148bb6a7
JK
261 cert_auth.path = xstrdup(ssl_cert);
262 credential_fill(&cert_auth);
263 }
264 return 1;
30dd9163
ML
265}
266
47ce1153
JK
267#if LIBCURL_VERSION_NUM >= 0x071900
268static void set_curl_keepalive(CURL *c)
269{
270 curl_easy_setopt(c, CURLOPT_TCP_KEEPALIVE, 1);
271}
272
273#elif LIBCURL_VERSION_NUM >= 0x071000
a15d069a
EW
274static int sockopt_callback(void *client, curl_socket_t fd, curlsocktype type)
275{
276 int ka = 1;
277 int rc;
278 socklen_t len = (socklen_t)sizeof(ka);
279
280 if (type != CURLSOCKTYPE_IPCXN)
281 return 0;
282
283 rc = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, (void *)&ka, len);
284 if (rc < 0)
285 warning("unable to set SO_KEEPALIVE on socket %s",
286 strerror(errno));
287
288 return 0; /* CURL_SOCKOPT_OK only exists since curl 7.21.5 */
289}
290
47ce1153
JK
291static void set_curl_keepalive(CURL *c)
292{
293 curl_easy_setopt(c, CURLOPT_SOCKOPTFUNCTION, sockopt_callback);
294}
295
296#else
297static void set_curl_keepalive(CURL *c)
298{
299 /* not supported on older curl versions */
300}
301#endif
302
4251ccbd 303static CURL *get_curl_handle(void)
11979b98 304{
4251ccbd 305 CURL *result = curl_easy_init();
11979b98 306
faa3807c
BR
307 if (!result)
308 die("curl_easy_init failed");
309
a5ccc597
JH
310 if (!curl_ssl_verify) {
311 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
312 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
313 } else {
314 /* Verify authenticity of the peer's certificate */
315 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
316 /* The name in the cert must match whom we tried to connect */
317 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
318 }
319
11979b98
JH
320#if LIBCURL_VERSION_NUM >= 0x070907
321 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
322#endif
b8ac9230 323#ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
525ecd26 324 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
b8ac9230 325#endif
11979b98 326
a4ddbc33
JK
327 if (http_proactive_auth)
328 init_curl_http_auth(result);
329
11979b98
JH
330 if (ssl_cert != NULL)
331 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
30dd9163 332 if (has_cert_password())
148bb6a7 333 curl_easy_setopt(result, CURLOPT_KEYPASSWD, cert_auth.password);
ef52aafa 334#if LIBCURL_VERSION_NUM >= 0x070903
11979b98
JH
335 if (ssl_key != NULL)
336 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
337#endif
338#if LIBCURL_VERSION_NUM >= 0x070908
339 if (ssl_capath != NULL)
340 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
341#endif
342 if (ssl_cainfo != NULL)
343 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
11979b98
JH
344
345 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
346 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
347 curl_low_speed_limit);
348 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
349 curl_low_speed_time);
350 }
351
352 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
311e2ea0
TRC
353#if LIBCURL_VERSION_NUM >= 0x071301
354 curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
355#elif LIBCURL_VERSION_NUM >= 0x071101
356 curl_easy_setopt(result, CURLOPT_POST301, 1);
357#endif
11979b98 358
7982d74e
MW
359 if (getenv("GIT_CURL_VERBOSE"))
360 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
361
b1d1058c 362 curl_easy_setopt(result, CURLOPT_USERAGENT,
745c7c8e 363 user_agent ? user_agent : git_user_agent());
20fc9bc5 364
3ea099d4
SK
365 if (curl_ftp_no_epsv)
366 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
367
4bc444eb
MV
368#ifdef CURLOPT_USE_SSL
369 if (curl_ssl_try)
370 curl_easy_setopt(result, CURLOPT_USE_SSL, CURLUSESSL_TRY);
371#endif
372
dd613997 373 if (curl_http_proxy) {
9c5665aa 374 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
dd613997
NBL
375 curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
376 }
9c5665aa 377
47ce1153 378 set_curl_keepalive(result);
a15d069a 379
11979b98
JH
380 return result;
381}
382
7059cd99
JH
383static void set_from_env(const char **var, const char *envname)
384{
385 const char *val = getenv(envname);
386 if (val)
387 *var = val;
388}
389
a4ddbc33 390void http_init(struct remote *remote, const char *url, int proactive_auth)
29508e1e
NH
391{
392 char *low_speed_limit;
393 char *low_speed_time;
6a56993b
KM
394 char *normalized_url;
395 struct urlmatch_config config = { STRING_LIST_INIT_DUP };
396
397 config.section = "http";
398 config.key = NULL;
399 config.collect_fn = http_options;
400 config.cascade_fn = git_default_config;
401 config.cb = NULL;
29508e1e 402
e9176745 403 http_is_verbose = 0;
6a56993b 404 normalized_url = url_normalize(url, &config.url);
e9176745 405
6a56993b
KM
406 git_config(urlmatch_config_entry, &config);
407 free(normalized_url);
7059cd99 408
faa3807c
BR
409 if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK)
410 die("curl_global_init failed");
29508e1e 411
a4ddbc33
JK
412 http_proactive_auth = proactive_auth;
413
9fc6440d
MH
414 if (remote && remote->http_proxy)
415 curl_http_proxy = xstrdup(remote->http_proxy);
416
29508e1e 417 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
e9176745 418 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
29508e1e
NH
419
420#ifdef USE_CURL_MULTI
421 {
422 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
423 if (http_max_requests != NULL)
424 max_requests = atoi(http_max_requests);
425 }
426
427 curlm = curl_multi_init();
8837eb47
JK
428 if (!curlm)
429 die("curl_multi_init failed");
29508e1e
NH
430#endif
431
432 if (getenv("GIT_SSL_NO_VERIFY"))
433 curl_ssl_verify = 0;
434
7059cd99 435 set_from_env(&ssl_cert, "GIT_SSL_CERT");
ef52aafa 436#if LIBCURL_VERSION_NUM >= 0x070903
7059cd99 437 set_from_env(&ssl_key, "GIT_SSL_KEY");
29508e1e
NH
438#endif
439#if LIBCURL_VERSION_NUM >= 0x070908
7059cd99 440 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
29508e1e 441#endif
7059cd99 442 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
29508e1e 443
b1d1058c
SO
444 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
445
29508e1e
NH
446 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
447 if (low_speed_limit != NULL)
448 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
449 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
450 if (low_speed_time != NULL)
451 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
452
29508e1e
NH
453 if (curl_ssl_verify == -1)
454 curl_ssl_verify = 1;
455
ad75ebe5 456 curl_session_count = 0;
29508e1e
NH
457#ifdef USE_CURL_MULTI
458 if (max_requests < 1)
459 max_requests = DEFAULT_MAX_REQUESTS;
460#endif
461
3ea099d4
SK
462 if (getenv("GIT_CURL_FTP_NO_EPSV"))
463 curl_ftp_no_epsv = 1;
464
deba4937 465 if (url) {
148bb6a7 466 credential_from_url(&http_auth, url);
754ae192
ML
467 if (!ssl_cert_password_required &&
468 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
59556548 469 starts_with(url, "https://"))
30dd9163
ML
470 ssl_cert_password_required = 1;
471 }
c33976cb 472
29508e1e
NH
473#ifndef NO_CURL_EASY_DUPHANDLE
474 curl_default = get_curl_handle();
475#endif
476}
477
478void http_cleanup(void)
479{
480 struct active_request_slot *slot = active_queue_head;
29508e1e
NH
481
482 while (slot != NULL) {
3278cd0a 483 struct active_request_slot *next = slot->next;
f23d1f76 484 if (slot->curl != NULL) {
29508e1e 485#ifdef USE_CURL_MULTI
f23d1f76 486 curl_multi_remove_handle(curlm, slot->curl);
29508e1e 487#endif
29508e1e 488 curl_easy_cleanup(slot->curl);
f23d1f76 489 }
3278cd0a
SP
490 free(slot);
491 slot = next;
29508e1e 492 }
3278cd0a 493 active_queue_head = NULL;
29508e1e
NH
494
495#ifndef NO_CURL_EASY_DUPHANDLE
496 curl_easy_cleanup(curl_default);
497#endif
498
499#ifdef USE_CURL_MULTI
500 curl_multi_cleanup(curlm);
501#endif
502 curl_global_cleanup();
b3ca4e4e
NH
503
504 curl_slist_free_all(pragma_header);
3278cd0a 505 pragma_header = NULL;
9fc6440d 506
e9176745
TRC
507 curl_slist_free_all(no_pragma_header);
508 no_pragma_header = NULL;
509
9fc6440d 510 if (curl_http_proxy) {
e4a80ecf 511 free((void *)curl_http_proxy);
9fc6440d
MH
512 curl_http_proxy = NULL;
513 }
30dd9163 514
148bb6a7
JK
515 if (cert_auth.password != NULL) {
516 memset(cert_auth.password, 0, strlen(cert_auth.password));
517 free(cert_auth.password);
518 cert_auth.password = NULL;
30dd9163
ML
519 }
520 ssl_cert_password_required = 0;
29508e1e
NH
521}
522
29508e1e
NH
523struct active_request_slot *get_active_slot(void)
524{
525 struct active_request_slot *slot = active_queue_head;
526 struct active_request_slot *newslot;
527
528#ifdef USE_CURL_MULTI
529 int num_transfers;
530
531 /* Wait for a slot to open up if the queue is full */
532 while (active_requests >= max_requests) {
533 curl_multi_perform(curlm, &num_transfers);
4251ccbd 534 if (num_transfers < active_requests)
29508e1e 535 process_curl_messages();
29508e1e
NH
536 }
537#endif
538
4251ccbd 539 while (slot != NULL && slot->in_use)
29508e1e 540 slot = slot->next;
4251ccbd 541
29508e1e
NH
542 if (slot == NULL) {
543 newslot = xmalloc(sizeof(*newslot));
544 newslot->curl = NULL;
545 newslot->in_use = 0;
546 newslot->next = NULL;
547
548 slot = active_queue_head;
549 if (slot == NULL) {
550 active_queue_head = newslot;
551 } else {
4251ccbd 552 while (slot->next != NULL)
29508e1e 553 slot = slot->next;
29508e1e
NH
554 slot->next = newslot;
555 }
556 slot = newslot;
557 }
558
559 if (slot->curl == NULL) {
560#ifdef NO_CURL_EASY_DUPHANDLE
561 slot->curl = get_curl_handle();
562#else
563 slot->curl = curl_easy_duphandle(curl_default);
564#endif
ad75ebe5 565 curl_session_count++;
29508e1e
NH
566 }
567
568 active_requests++;
569 slot->in_use = 1;
c8568e13 570 slot->results = NULL;
baa7b67d 571 slot->finished = NULL;
29508e1e
NH
572 slot->callback_data = NULL;
573 slot->callback_func = NULL;
bcfb95dd 574 curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file);
912b2acf
DB
575 if (curl_save_cookies)
576 curl_easy_setopt(slot->curl, CURLOPT_COOKIEJAR, curl_cookie_file);
29508e1e 577 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
29508e1e 578 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
9094950d
NH
579 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
580 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
581 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
1e41827d 582 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
9094950d
NH
583 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
584 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
b793acf1 585 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 1);
4dbe6646 586#ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
587 curl_easy_setopt(slot->curl, CURLOPT_HTTPAUTH, http_auth_methods);
588#endif
dfa1725a
JK
589 if (http_auth.password)
590 init_curl_http_auth(slot->curl);
29508e1e
NH
591
592 return slot;
593}
594
595int start_active_slot(struct active_request_slot *slot)
596{
597#ifdef USE_CURL_MULTI
598 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
45c17412 599 int num_transfers;
29508e1e
NH
600
601 if (curlm_result != CURLM_OK &&
602 curlm_result != CURLM_CALL_MULTI_PERFORM) {
603 active_requests--;
604 slot->in_use = 0;
605 return 0;
606 }
45c17412
DB
607
608 /*
609 * We know there must be something to do, since we just added
610 * something.
611 */
612 curl_multi_perform(curlm, &num_transfers);
29508e1e
NH
613#endif
614 return 1;
615}
616
617#ifdef USE_CURL_MULTI
fc57b6aa
DB
618struct fill_chain {
619 void *data;
620 int (*fill)(void *);
621 struct fill_chain *next;
622};
623
4251ccbd 624static struct fill_chain *fill_cfg;
fc57b6aa
DB
625
626void add_fill_function(void *data, int (*fill)(void *))
627{
e8eec71d 628 struct fill_chain *new = xmalloc(sizeof(*new));
fc57b6aa
DB
629 struct fill_chain **linkp = &fill_cfg;
630 new->data = data;
631 new->fill = fill;
632 new->next = NULL;
633 while (*linkp)
634 linkp = &(*linkp)->next;
635 *linkp = new;
636}
637
45c17412
DB
638void fill_active_slots(void)
639{
640 struct active_request_slot *slot = active_queue_head;
641
fc57b6aa
DB
642 while (active_requests < max_requests) {
643 struct fill_chain *fill;
644 for (fill = fill_cfg; fill; fill = fill->next)
645 if (fill->fill(fill->data))
646 break;
647
648 if (!fill)
45c17412 649 break;
fc57b6aa 650 }
45c17412
DB
651
652 while (slot != NULL) {
ad75ebe5
TRC
653 if (!slot->in_use && slot->curl != NULL
654 && curl_session_count > min_curl_sessions) {
45c17412
DB
655 curl_easy_cleanup(slot->curl);
656 slot->curl = NULL;
ad75ebe5 657 curl_session_count--;
45c17412
DB
658 }
659 slot = slot->next;
660 }
661}
662
29508e1e
NH
663void step_active_slots(void)
664{
665 int num_transfers;
666 CURLMcode curlm_result;
667
668 do {
669 curlm_result = curl_multi_perform(curlm, &num_transfers);
670 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
671 if (num_transfers < active_requests) {
672 process_curl_messages();
673 fill_active_slots();
674 }
675}
676#endif
677
678void run_active_slot(struct active_request_slot *slot)
679{
680#ifdef USE_CURL_MULTI
29508e1e
NH
681 fd_set readfds;
682 fd_set writefds;
683 fd_set excfds;
684 int max_fd;
685 struct timeval select_timeout;
baa7b67d 686 int finished = 0;
29508e1e 687
baa7b67d
NH
688 slot->finished = &finished;
689 while (!finished) {
29508e1e
NH
690 step_active_slots();
691
df26c471 692 if (slot->in_use) {
eb56c821
MF
693#if LIBCURL_VERSION_NUM >= 0x070f04
694 long curl_timeout;
695 curl_multi_timeout(curlm, &curl_timeout);
696 if (curl_timeout == 0) {
697 continue;
698 } else if (curl_timeout == -1) {
699 select_timeout.tv_sec = 0;
700 select_timeout.tv_usec = 50000;
701 } else {
702 select_timeout.tv_sec = curl_timeout / 1000;
703 select_timeout.tv_usec = (curl_timeout % 1000) * 1000;
704 }
705#else
706 select_timeout.tv_sec = 0;
707 select_timeout.tv_usec = 50000;
708#endif
29508e1e 709
6f9dd67f 710 max_fd = -1;
29508e1e
NH
711 FD_ZERO(&readfds);
712 FD_ZERO(&writefds);
713 FD_ZERO(&excfds);
6f9dd67f 714 curl_multi_fdset(curlm, &readfds, &writefds, &excfds, &max_fd);
eb56c821 715
7202b81f
SZ
716 /*
717 * It can happen that curl_multi_timeout returns a pathologically
718 * long timeout when curl_multi_fdset returns no file descriptors
719 * to read. See commit message for more details.
720 */
721 if (max_fd < 0 &&
722 (select_timeout.tv_sec > 0 ||
723 select_timeout.tv_usec > 50000)) {
724 select_timeout.tv_sec = 0;
725 select_timeout.tv_usec = 50000;
726 }
727
6f9dd67f 728 select(max_fd+1, &readfds, &writefds, &excfds, &select_timeout);
29508e1e
NH
729 }
730 }
731#else
732 while (slot->in_use) {
733 slot->curl_result = curl_easy_perform(slot->curl);
734 finish_active_slot(slot);
735 }
736#endif
737}
738
53f31389 739static void closedown_active_slot(struct active_request_slot *slot)
29508e1e 740{
028c2976
MH
741 active_requests--;
742 slot->in_use = 0;
53f31389
MW
743}
744
83e41e2e 745static void release_active_slot(struct active_request_slot *slot)
53f31389
MW
746{
747 closedown_active_slot(slot);
ad75ebe5 748 if (slot->curl && curl_session_count > min_curl_sessions) {
b3ca4e4e 749#ifdef USE_CURL_MULTI
53f31389 750 curl_multi_remove_handle(curlm, slot->curl);
b3ca4e4e 751#endif
53f31389
MW
752 curl_easy_cleanup(slot->curl);
753 slot->curl = NULL;
ad75ebe5 754 curl_session_count--;
53f31389 755 }
b3ca4e4e 756#ifdef USE_CURL_MULTI
53f31389 757 fill_active_slots();
b3ca4e4e 758#endif
53f31389
MW
759}
760
de1a2fdd 761void finish_active_slot(struct active_request_slot *slot)
53f31389
MW
762{
763 closedown_active_slot(slot);
028c2976 764 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
c8568e13 765
baa7b67d
NH
766 if (slot->finished != NULL)
767 (*slot->finished) = 1;
768
c8568e13
NH
769 /* Store slot results so they can be read after the slot is reused */
770 if (slot->results != NULL) {
771 slot->results->curl_result = slot->curl_result;
772 slot->results->http_code = slot->http_code;
0972ccd9
JK
773#if LIBCURL_VERSION_NUM >= 0x070a08
774 curl_easy_getinfo(slot->curl, CURLINFO_HTTPAUTH_AVAIL,
775 &slot->results->auth_avail);
776#else
777 slot->results->auth_avail = 0;
778#endif
c8568e13
NH
779 }
780
028c2976 781 /* Run callback if appropriate */
4251ccbd 782 if (slot->callback_func != NULL)
028c2976 783 slot->callback_func(slot->callback_data);
29508e1e
NH
784}
785
786void finish_all_active_slots(void)
787{
788 struct active_request_slot *slot = active_queue_head;
789
790 while (slot != NULL)
791 if (slot->in_use) {
792 run_active_slot(slot);
793 slot = active_queue_head;
794 } else {
795 slot = slot->next;
796 }
797}
d7e92806 798
5ace994f 799/* Helpers for modifying and creating URLs */
d7e92806
MH
800static inline int needs_quote(int ch)
801{
802 if (((ch >= 'A') && (ch <= 'Z'))
803 || ((ch >= 'a') && (ch <= 'z'))
804 || ((ch >= '0') && (ch <= '9'))
805 || (ch == '/')
806 || (ch == '-')
807 || (ch == '.'))
808 return 0;
809 return 1;
810}
811
d7e92806
MH
812static char *quote_ref_url(const char *base, const char *ref)
813{
113106e0 814 struct strbuf buf = STRBUF_INIT;
d7e92806 815 const char *cp;
113106e0 816 int ch;
d7e92806 817
5ace994f 818 end_url_with_slash(&buf, base);
113106e0
TRC
819
820 for (cp = ref; (ch = *cp) != 0; cp++)
d7e92806 821 if (needs_quote(ch))
113106e0 822 strbuf_addf(&buf, "%%%02x", ch);
d7e92806 823 else
113106e0 824 strbuf_addch(&buf, *cp);
d7e92806 825
113106e0 826 return strbuf_detach(&buf, NULL);
d7e92806
MH
827}
828
5424bc55
TRC
829void append_remote_object_url(struct strbuf *buf, const char *url,
830 const char *hex,
831 int only_two_digit_prefix)
832{
800324c3
TRC
833 end_url_with_slash(buf, url);
834
835 strbuf_addf(buf, "objects/%.*s/", 2, hex);
5424bc55
TRC
836 if (!only_two_digit_prefix)
837 strbuf_addf(buf, "%s", hex+2);
838}
839
840char *get_remote_object_url(const char *url, const char *hex,
841 int only_two_digit_prefix)
842{
843 struct strbuf buf = STRBUF_INIT;
844 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
845 return strbuf_detach(&buf, NULL);
846}
847
1960897e 848int handle_curl_result(struct slot_results *results)
88097030 849{
6d052d78
JK
850 /*
851 * If we see a failing http code with CURLE_OK, we have turned off
852 * FAILONERROR (to keep the server's custom error response), and should
853 * translate the code into failure here.
854 */
855 if (results->curl_result == CURLE_OK &&
856 results->http_code >= 400) {
857 results->curl_result = CURLE_HTTP_RETURNED_ERROR;
858 /*
859 * Normally curl will already have put the "reason phrase"
860 * from the server into curl_errorstr; unfortunately without
861 * FAILONERROR it is lost, so we can give only the numeric
862 * status code.
863 */
864 snprintf(curl_errorstr, sizeof(curl_errorstr),
865 "The requested URL returned error: %ld",
866 results->http_code);
867 }
868
88097030
JK
869 if (results->curl_result == CURLE_OK) {
870 credential_approve(&http_auth);
871 return HTTP_OK;
872 } else if (missing_target(results))
873 return HTTP_MISSING_TARGET;
874 else if (results->http_code == 401) {
875 if (http_auth.username && http_auth.password) {
876 credential_reject(&http_auth);
877 return HTTP_NOAUTH;
878 } else {
4dbe6646 879#ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
880 http_auth_methods &= ~CURLAUTH_GSSNEGOTIATE;
881#endif
88097030
JK
882 return HTTP_REAUTH;
883 }
884 } else {
3503e9ab 885#if LIBCURL_VERSION_NUM >= 0x070c00
88097030
JK
886 if (!curl_errorstr[0])
887 strlcpy(curl_errorstr,
888 curl_easy_strerror(results->curl_result),
889 sizeof(curl_errorstr));
3503e9ab 890#endif
88097030
JK
891 return HTTP_ERROR;
892 }
893}
894
beed336c
JK
895int run_one_slot(struct active_request_slot *slot,
896 struct slot_results *results)
897{
898 slot->results = results;
899 if (!start_active_slot(slot)) {
900 snprintf(curl_errorstr, sizeof(curl_errorstr),
901 "failed to start HTTP request");
902 return HTTP_START_FAILED;
903 }
904
905 run_active_slot(slot);
906 return handle_curl_result(results);
907}
908
132b70a2
JK
909static CURLcode curlinfo_strbuf(CURL *curl, CURLINFO info, struct strbuf *buf)
910{
911 char *ptr;
912 CURLcode ret;
913
914 strbuf_reset(buf);
915 ret = curl_easy_getinfo(curl, info, &ptr);
916 if (!ret && ptr)
917 strbuf_addstr(buf, ptr);
918 return ret;
919}
920
e3131626
JK
921/*
922 * Check for and extract a content-type parameter. "raw"
923 * should be positioned at the start of the potential
924 * parameter, with any whitespace already removed.
925 *
926 * "name" is the name of the parameter. The value is appended
927 * to "out".
928 */
929static int extract_param(const char *raw, const char *name,
930 struct strbuf *out)
931{
932 size_t len = strlen(name);
933
934 if (strncasecmp(raw, name, len))
935 return -1;
936 raw += len;
937
938 if (*raw != '=')
939 return -1;
940 raw++;
941
f34a655d 942 while (*raw && !isspace(*raw) && *raw != ';')
e3131626
JK
943 strbuf_addch(out, *raw++);
944 return 0;
945}
946
bf197fd7
JK
947/*
948 * Extract a normalized version of the content type, with any
949 * spaces suppressed, all letters lowercased, and no trailing ";"
950 * or parameters.
951 *
952 * Note that we will silently remove even invalid whitespace. For
953 * example, "text / plain" is specifically forbidden by RFC 2616,
954 * but "text/plain" is the only reasonable output, and this keeps
955 * our code simple.
956 *
e3131626
JK
957 * If the "charset" argument is not NULL, store the value of any
958 * charset parameter there.
959 *
bf197fd7 960 * Example:
e3131626 961 * "TEXT/PLAIN; charset=utf-8" -> "text/plain", "utf-8"
bf197fd7
JK
962 * "text / plain" -> "text/plain"
963 */
e3131626
JK
964static void extract_content_type(struct strbuf *raw, struct strbuf *type,
965 struct strbuf *charset)
bf197fd7
JK
966{
967 const char *p;
968
969 strbuf_reset(type);
970 strbuf_grow(type, raw->len);
971 for (p = raw->buf; *p; p++) {
972 if (isspace(*p))
973 continue;
e3131626
JK
974 if (*p == ';') {
975 p++;
bf197fd7 976 break;
e3131626 977 }
bf197fd7
JK
978 strbuf_addch(type, tolower(*p));
979 }
e3131626
JK
980
981 if (!charset)
982 return;
983
984 strbuf_reset(charset);
985 while (*p) {
f34a655d 986 while (isspace(*p) || *p == ';')
e3131626
JK
987 p++;
988 if (!extract_param(p, "charset", charset))
989 return;
990 while (*p && !isspace(*p))
991 p++;
992 }
c553fd1c
JK
993
994 if (!charset->len && starts_with(type->buf, "text/"))
995 strbuf_addstr(charset, "ISO-8859-1");
bf197fd7
JK
996}
997
4dbe6646 998
e929cd20
MH
999/* http_request() targets */
1000#define HTTP_REQUEST_STRBUF 0
1001#define HTTP_REQUEST_FILE 1
1002
1bbcc224
JK
1003static int http_request(const char *url,
1004 void *result, int target,
1005 const struct http_get_options *options)
e929cd20
MH
1006{
1007 struct active_request_slot *slot;
1008 struct slot_results results;
1009 struct curl_slist *headers = NULL;
1010 struct strbuf buf = STRBUF_INIT;
1011 int ret;
1012
1013 slot = get_active_slot();
e929cd20
MH
1014 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
1015
1016 if (result == NULL) {
1017 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
1018 } else {
1019 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
1020 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
1021
1022 if (target == HTTP_REQUEST_FILE) {
1023 long posn = ftell(result);
1024 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1025 fwrite);
1026 if (posn > 0) {
1027 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
1028 headers = curl_slist_append(headers, buf.buf);
1029 strbuf_reset(&buf);
1030 }
e929cd20
MH
1031 } else
1032 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
1033 fwrite_buffer);
1034 }
1035
1036 strbuf_addstr(&buf, "Pragma:");
1bbcc224 1037 if (options && options->no_cache)
e929cd20 1038 strbuf_addstr(&buf, " no-cache");
1bbcc224 1039 if (options && options->keep_error)
6d052d78 1040 curl_easy_setopt(slot->curl, CURLOPT_FAILONERROR, 0);
e929cd20
MH
1041
1042 headers = curl_slist_append(headers, buf.buf);
1043
1044 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
1045 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
aa90b969 1046 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip");
e929cd20 1047
beed336c 1048 ret = run_one_slot(slot, &results);
e929cd20 1049
bf197fd7
JK
1050 if (options && options->content_type) {
1051 struct strbuf raw = STRBUF_INIT;
1052 curlinfo_strbuf(slot->curl, CURLINFO_CONTENT_TYPE, &raw);
e3131626
JK
1053 extract_content_type(&raw, options->content_type,
1054 options->charset);
bf197fd7
JK
1055 strbuf_release(&raw);
1056 }
4656bf47 1057
78868962
JK
1058 if (options && options->effective_url)
1059 curlinfo_strbuf(slot->curl, CURLINFO_EFFECTIVE_URL,
1060 options->effective_url);
4656bf47 1061
e929cd20
MH
1062 curl_slist_free_all(headers);
1063 strbuf_release(&buf);
1064
1065 return ret;
1066}
1067
c93c92f3
JK
1068/*
1069 * Update the "base" url to a more appropriate value, as deduced by
1070 * redirects seen when requesting a URL starting with "url".
1071 *
1072 * The "asked" parameter is a URL that we asked curl to access, and must begin
1073 * with "base".
1074 *
1075 * The "got" parameter is the URL that curl reported to us as where we ended
1076 * up.
1077 *
1078 * Returns 1 if we updated the base url, 0 otherwise.
1079 *
1080 * Our basic strategy is to compare "base" and "asked" to find the bits
1081 * specific to our request. We then strip those bits off of "got" to yield the
1082 * new base. So for example, if our base is "http://example.com/foo.git",
1083 * and we ask for "http://example.com/foo.git/info/refs", we might end up
1084 * with "https://other.example.com/foo.git/info/refs". We would want the
1085 * new URL to become "https://other.example.com/foo.git".
1086 *
1087 * Note that this assumes a sane redirect scheme. It's entirely possible
1088 * in the example above to end up at a URL that does not even end in
1089 * "info/refs". In such a case we simply punt, as there is not much we can
1090 * do (and such a scheme is unlikely to represent a real git repository,
1091 * which means we are likely about to abort anyway).
1092 */
1093static int update_url_from_redirect(struct strbuf *base,
1094 const char *asked,
1095 const struct strbuf *got)
1096{
1097 const char *tail;
1098 size_t tail_len;
1099
1100 if (!strcmp(asked, got->buf))
1101 return 0;
1102
de8118e1 1103 if (!skip_prefix(asked, base->buf, &tail))
c93c92f3
JK
1104 die("BUG: update_url_from_redirect: %s is not a superset of %s",
1105 asked, base->buf);
1106
c93c92f3
JK
1107 tail_len = strlen(tail);
1108
1109 if (got->len < tail_len ||
1110 strcmp(tail, got->buf + got->len - tail_len))
1111 return 0; /* insane redirect scheme */
1112
1113 strbuf_reset(base);
1114 strbuf_add(base, got->buf, got->len - tail_len);
1115 return 1;
1116}
1117
4656bf47 1118static int http_request_reauth(const char *url,
4656bf47 1119 void *result, int target,
1bbcc224 1120 struct http_get_options *options)
8d677edc 1121{
1bbcc224 1122 int ret = http_request(url, result, target, options);
c93c92f3
JK
1123
1124 if (options && options->effective_url && options->base_url) {
1125 if (update_url_from_redirect(options->base_url,
1126 url, options->effective_url)) {
1127 credential_from_url(&http_auth, options->base_url->buf);
1128 url = options->effective_url->buf;
1129 }
1130 }
1131
8d677edc
JK
1132 if (ret != HTTP_REAUTH)
1133 return ret;
6d052d78
JK
1134
1135 /*
1136 * If we are using KEEP_ERROR, the previous request may have
1137 * put cruft into our output stream; we should clear it out before
1138 * making our next request. We only know how to do this for
1139 * the strbuf case, but that is enough to satisfy current callers.
1140 */
1bbcc224 1141 if (options && options->keep_error) {
6d052d78
JK
1142 switch (target) {
1143 case HTTP_REQUEST_STRBUF:
1144 strbuf_reset(result);
1145 break;
1146 default:
1147 die("BUG: HTTP_KEEP_ERROR is only supported with strbufs");
1148 }
1149 }
2501aff8
JK
1150
1151 credential_fill(&http_auth);
1152
1bbcc224 1153 return http_request(url, result, target, options);
8d677edc
JK
1154}
1155
4656bf47 1156int http_get_strbuf(const char *url,
1bbcc224
JK
1157 struct strbuf *result,
1158 struct http_get_options *options)
e929cd20 1159{
1bbcc224 1160 return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options);
e929cd20
MH
1161}
1162
83e41e2e 1163/*
a7793a74 1164 * Downloads a URL and stores the result in the given file.
83e41e2e
JH
1165 *
1166 * If a previous interrupted download is detected (i.e. a previous temporary
1167 * file is still around) the download is resumed.
1168 */
1bbcc224
JK
1169static int http_get_file(const char *url, const char *filename,
1170 struct http_get_options *options)
e929cd20
MH
1171{
1172 int ret;
1173 struct strbuf tmpfile = STRBUF_INIT;
1174 FILE *result;
1175
1176 strbuf_addf(&tmpfile, "%s.temp", filename);
1177 result = fopen(tmpfile.buf, "a");
3d1fb769 1178 if (!result) {
e929cd20
MH
1179 error("Unable to open local file %s", tmpfile.buf);
1180 ret = HTTP_ERROR;
1181 goto cleanup;
1182 }
1183
1bbcc224 1184 ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options);
e929cd20
MH
1185 fclose(result);
1186
3d1fb769 1187 if (ret == HTTP_OK && move_temp_to_file(tmpfile.buf, filename))
e929cd20
MH
1188 ret = HTTP_ERROR;
1189cleanup:
1190 strbuf_release(&tmpfile);
1191 return ret;
1192}
1193
c13b2633 1194int http_fetch_ref(const char *base, struct ref *ref)
d7e92806 1195{
1bbcc224 1196 struct http_get_options options = {0};
d7e92806
MH
1197 char *url;
1198 struct strbuf buffer = STRBUF_INIT;
0d5896e1 1199 int ret = -1;
d7e92806 1200
1bbcc224
JK
1201 options.no_cache = 1;
1202
c13b2633 1203 url = quote_ref_url(base, ref->name);
1bbcc224 1204 if (http_get_strbuf(url, &buffer, &options) == HTTP_OK) {
0d5896e1
MH
1205 strbuf_rtrim(&buffer);
1206 if (buffer.len == 40)
1207 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
59556548 1208 else if (starts_with(buffer.buf, "ref: ")) {
0d5896e1
MH
1209 ref->symref = xstrdup(buffer.buf + 5);
1210 ret = 0;
d7e92806 1211 }
d7e92806
MH
1212 }
1213
1214 strbuf_release(&buffer);
1215 free(url);
1216 return ret;
1217}
b8caac2b
TRC
1218
1219/* Helpers for fetching packs */
750ef425 1220static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
b8caac2b 1221{
750ef425 1222 char *url, *tmp;
b8caac2b 1223 struct strbuf buf = STRBUF_INIT;
b8caac2b 1224
b8caac2b 1225 if (http_is_verbose)
162eb5f8 1226 fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
b8caac2b
TRC
1227
1228 end_url_with_slash(&buf, base_url);
162eb5f8 1229 strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
b8caac2b
TRC
1230 url = strbuf_detach(&buf, NULL);
1231
750ef425
SP
1232 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
1233 tmp = strbuf_detach(&buf, NULL);
1234
70900eda 1235 if (http_get_file(url, tmp, NULL) != HTTP_OK) {
82247e9b 1236 error("Unable to get pack index %s", url);
750ef425
SP
1237 free(tmp);
1238 tmp = NULL;
1239 }
b8caac2b 1240
b8caac2b 1241 free(url);
750ef425 1242 return tmp;
b8caac2b
TRC
1243}
1244
1245static int fetch_and_setup_pack_index(struct packed_git **packs_head,
1246 unsigned char *sha1, const char *base_url)
1247{
1248 struct packed_git *new_pack;
750ef425
SP
1249 char *tmp_idx = NULL;
1250 int ret;
b8caac2b 1251
750ef425 1252 if (has_pack_index(sha1)) {
8b9c2dd4 1253 new_pack = parse_pack_index(sha1, sha1_pack_index_name(sha1));
750ef425
SP
1254 if (!new_pack)
1255 return -1; /* parse_pack_index() already issued error message */
1256 goto add_pack;
1257 }
1258
1259 tmp_idx = fetch_pack_index(sha1, base_url);
1260 if (!tmp_idx)
b8caac2b
TRC
1261 return -1;
1262
750ef425
SP
1263 new_pack = parse_pack_index(sha1, tmp_idx);
1264 if (!new_pack) {
1265 unlink(tmp_idx);
1266 free(tmp_idx);
1267
b8caac2b 1268 return -1; /* parse_pack_index() already issued error message */
750ef425
SP
1269 }
1270
1271 ret = verify_pack_index(new_pack);
1272 if (!ret) {
1273 close_pack_index(new_pack);
1274 ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1));
1275 }
1276 free(tmp_idx);
1277 if (ret)
1278 return -1;
1279
1280add_pack:
b8caac2b
TRC
1281 new_pack->next = *packs_head;
1282 *packs_head = new_pack;
1283 return 0;
1284}
1285
1286int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
1287{
1bbcc224 1288 struct http_get_options options = {0};
b8caac2b
TRC
1289 int ret = 0, i = 0;
1290 char *url, *data;
1291 struct strbuf buf = STRBUF_INIT;
1292 unsigned char sha1[20];
1293
1294 end_url_with_slash(&buf, base_url);
1295 strbuf_addstr(&buf, "objects/info/packs");
1296 url = strbuf_detach(&buf, NULL);
1297
1bbcc224
JK
1298 options.no_cache = 1;
1299 ret = http_get_strbuf(url, &buf, &options);
b8caac2b
TRC
1300 if (ret != HTTP_OK)
1301 goto cleanup;
1302
1303 data = buf.buf;
1304 while (i < buf.len) {
1305 switch (data[i]) {
1306 case 'P':
1307 i++;
1308 if (i + 52 <= buf.len &&
59556548
CC
1309 starts_with(data + i, " pack-") &&
1310 starts_with(data + i + 46, ".pack\n")) {
b8caac2b
TRC
1311 get_sha1_hex(data + i + 6, sha1);
1312 fetch_and_setup_pack_index(packs_head, sha1,
1313 base_url);
1314 i += 51;
1315 break;
1316 }
1317 default:
1318 while (i < buf.len && data[i] != '\n')
1319 i++;
1320 }
1321 i++;
1322 }
1323
1324cleanup:
1325 free(url);
1326 return ret;
1327}
2264dfa5
TRC
1328
1329void release_http_pack_request(struct http_pack_request *preq)
1330{
1331 if (preq->packfile != NULL) {
1332 fclose(preq->packfile);
1333 preq->packfile = NULL;
2264dfa5
TRC
1334 }
1335 if (preq->range_header != NULL) {
1336 curl_slist_free_all(preq->range_header);
1337 preq->range_header = NULL;
1338 }
1339 preq->slot = NULL;
1340 free(preq->url);
1341}
1342
1343int finish_http_pack_request(struct http_pack_request *preq)
1344{
2264dfa5 1345 struct packed_git **lst;
021ab6f0 1346 struct packed_git *p = preq->target;
fe72d420 1347 char *tmp_idx;
d3180279 1348 struct child_process ip = CHILD_PROCESS_INIT;
fe72d420 1349 const char *ip_argv[8];
2264dfa5 1350
fe72d420 1351 close_pack_index(p);
2264dfa5 1352
3065274c
SP
1353 fclose(preq->packfile);
1354 preq->packfile = NULL;
2264dfa5
TRC
1355
1356 lst = preq->lst;
021ab6f0 1357 while (*lst != p)
2264dfa5
TRC
1358 lst = &((*lst)->next);
1359 *lst = (*lst)->next;
1360
fe72d420
SP
1361 tmp_idx = xstrdup(preq->tmpfile);
1362 strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"),
1363 ".idx.temp");
1364
1365 ip_argv[0] = "index-pack";
1366 ip_argv[1] = "-o";
1367 ip_argv[2] = tmp_idx;
1368 ip_argv[3] = preq->tmpfile;
1369 ip_argv[4] = NULL;
1370
fe72d420
SP
1371 ip.argv = ip_argv;
1372 ip.git_cmd = 1;
1373 ip.no_stdin = 1;
1374 ip.no_stdout = 1;
1375
1376 if (run_command(&ip)) {
1377 unlink(preq->tmpfile);
1378 unlink(tmp_idx);
1379 free(tmp_idx);
2264dfa5 1380 return -1;
fe72d420
SP
1381 }
1382
1383 unlink(sha1_pack_index_name(p->sha1));
2264dfa5 1384
fe72d420
SP
1385 if (move_temp_to_file(preq->tmpfile, sha1_pack_name(p->sha1))
1386 || move_temp_to_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
1387 free(tmp_idx);
2264dfa5 1388 return -1;
fe72d420 1389 }
2264dfa5 1390
fe72d420
SP
1391 install_packed_git(p);
1392 free(tmp_idx);
2264dfa5
TRC
1393 return 0;
1394}
1395
1396struct http_pack_request *new_http_pack_request(
1397 struct packed_git *target, const char *base_url)
1398{
2264dfa5
TRC
1399 long prev_posn = 0;
1400 char range[RANGE_HEADER_SIZE];
1401 struct strbuf buf = STRBUF_INIT;
1402 struct http_pack_request *preq;
1403
ec99c9a8 1404 preq = xcalloc(1, sizeof(*preq));
2264dfa5 1405 preq->target = target;
2264dfa5
TRC
1406
1407 end_url_with_slash(&buf, base_url);
1408 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1409 sha1_to_hex(target->sha1));
bb99190e 1410 preq->url = strbuf_detach(&buf, NULL);
2264dfa5 1411
90d05713
TRC
1412 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
1413 sha1_pack_name(target->sha1));
2264dfa5
TRC
1414 preq->packfile = fopen(preq->tmpfile, "a");
1415 if (!preq->packfile) {
1416 error("Unable to open local file %s for pack",
1417 preq->tmpfile);
1418 goto abort;
1419 }
1420
1421 preq->slot = get_active_slot();
2264dfa5
TRC
1422 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1423 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
bb99190e 1424 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
2264dfa5
TRC
1425 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1426 no_pragma_header);
1427
1428 /*
1429 * If there is data present from a previous transfer attempt,
1430 * resume where it left off
1431 */
1432 prev_posn = ftell(preq->packfile);
1433 if (prev_posn>0) {
1434 if (http_is_verbose)
1435 fprintf(stderr,
1436 "Resuming fetch of pack %s at byte %ld\n",
1437 sha1_to_hex(target->sha1), prev_posn);
1438 sprintf(range, "Range: bytes=%ld-", prev_posn);
1439 preq->range_header = curl_slist_append(NULL, range);
1440 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1441 preq->range_header);
1442 }
1443
1444 return preq;
1445
1446abort:
bb99190e 1447 free(preq->url);
5ae9ebfd 1448 free(preq);
2264dfa5
TRC
1449 return NULL;
1450}
5424bc55
TRC
1451
1452/* Helpers for fetching objects (loose) */
a04ff3ec 1453static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
5424bc55
TRC
1454 void *data)
1455{
1456 unsigned char expn[4096];
1457 size_t size = eltsize * nmemb;
1458 int posn = 0;
1459 struct http_object_request *freq =
1460 (struct http_object_request *)data;
1461 do {
1462 ssize_t retval = xwrite(freq->localfile,
1463 (char *) ptr + posn, size - posn);
1464 if (retval < 0)
1465 return posn;
1466 posn += retval;
1467 } while (posn < size);
1468
1469 freq->stream.avail_in = size;
a04ff3ec 1470 freq->stream.next_in = (void *)ptr;
5424bc55
TRC
1471 do {
1472 freq->stream.next_out = expn;
1473 freq->stream.avail_out = sizeof(expn);
1474 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1475 git_SHA1_Update(&freq->c, expn,
1476 sizeof(expn) - freq->stream.avail_out);
1477 } while (freq->stream.avail_in && freq->zret == Z_OK);
5424bc55
TRC
1478 return size;
1479}
1480
1481struct http_object_request *new_http_object_request(const char *base_url,
1482 unsigned char *sha1)
1483{
1484 char *hex = sha1_to_hex(sha1);
30d6c6ea 1485 const char *filename;
5424bc55 1486 char prevfile[PATH_MAX];
5424bc55 1487 int prevlocal;
a04ff3ec 1488 char prev_buf[PREV_BUF_SIZE];
5424bc55
TRC
1489 ssize_t prev_read = 0;
1490 long prev_posn = 0;
1491 char range[RANGE_HEADER_SIZE];
1492 struct curl_slist *range_header = NULL;
1493 struct http_object_request *freq;
1494
ec99c9a8 1495 freq = xcalloc(1, sizeof(*freq));
5424bc55
TRC
1496 hashcpy(freq->sha1, sha1);
1497 freq->localfile = -1;
1498
1499 filename = sha1_file_name(sha1);
5424bc55
TRC
1500 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1501 "%s.temp", filename);
1502
1503 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1504 unlink_or_warn(prevfile);
1505 rename(freq->tmpfile, prevfile);
1506 unlink_or_warn(freq->tmpfile);
1507
1508 if (freq->localfile != -1)
1509 error("fd leakage in start: %d", freq->localfile);
1510 freq->localfile = open(freq->tmpfile,
1511 O_WRONLY | O_CREAT | O_EXCL, 0666);
1512 /*
1513 * This could have failed due to the "lazy directory creation";
1514 * try to mkdir the last path component.
1515 */
1516 if (freq->localfile < 0 && errno == ENOENT) {
1517 char *dir = strrchr(freq->tmpfile, '/');
1518 if (dir) {
1519 *dir = 0;
1520 mkdir(freq->tmpfile, 0777);
1521 *dir = '/';
1522 }
1523 freq->localfile = open(freq->tmpfile,
1524 O_WRONLY | O_CREAT | O_EXCL, 0666);
1525 }
1526
1527 if (freq->localfile < 0) {
0da8b2e7
SP
1528 error("Couldn't create temporary file %s: %s",
1529 freq->tmpfile, strerror(errno));
5424bc55
TRC
1530 goto abort;
1531 }
1532
5424bc55
TRC
1533 git_inflate_init(&freq->stream);
1534
1535 git_SHA1_Init(&freq->c);
1536
bb99190e 1537 freq->url = get_remote_object_url(base_url, hex, 0);
5424bc55
TRC
1538
1539 /*
1540 * If a previous temp file is present, process what was already
1541 * fetched.
1542 */
1543 prevlocal = open(prevfile, O_RDONLY);
1544 if (prevlocal != -1) {
1545 do {
1546 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1547 if (prev_read>0) {
1548 if (fwrite_sha1_file(prev_buf,
1549 1,
1550 prev_read,
1551 freq) == prev_read) {
1552 prev_posn += prev_read;
1553 } else {
1554 prev_read = -1;
1555 }
1556 }
1557 } while (prev_read > 0);
1558 close(prevlocal);
1559 }
1560 unlink_or_warn(prevfile);
1561
1562 /*
1563 * Reset inflate/SHA1 if there was an error reading the previous temp
1564 * file; also rewind to the beginning of the local file.
1565 */
1566 if (prev_read == -1) {
1567 memset(&freq->stream, 0, sizeof(freq->stream));
1568 git_inflate_init(&freq->stream);
1569 git_SHA1_Init(&freq->c);
1570 if (prev_posn>0) {
1571 prev_posn = 0;
1572 lseek(freq->localfile, 0, SEEK_SET);
0c4f21e4 1573 if (ftruncate(freq->localfile, 0) < 0) {
0da8b2e7
SP
1574 error("Couldn't truncate temporary file %s: %s",
1575 freq->tmpfile, strerror(errno));
0c4f21e4
JL
1576 goto abort;
1577 }
5424bc55
TRC
1578 }
1579 }
1580
1581 freq->slot = get_active_slot();
1582
1583 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1584 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1585 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
bb99190e 1586 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
5424bc55
TRC
1587 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1588
1589 /*
1590 * If we have successfully processed data from a previous fetch
1591 * attempt, only fetch the data we don't already have.
1592 */
1593 if (prev_posn>0) {
1594 if (http_is_verbose)
1595 fprintf(stderr,
1596 "Resuming fetch of object %s at byte %ld\n",
1597 hex, prev_posn);
1598 sprintf(range, "Range: bytes=%ld-", prev_posn);
1599 range_header = curl_slist_append(range_header, range);
1600 curl_easy_setopt(freq->slot->curl,
1601 CURLOPT_HTTPHEADER, range_header);
1602 }
1603
1604 return freq;
1605
5424bc55 1606abort:
bb99190e 1607 free(freq->url);
5424bc55
TRC
1608 free(freq);
1609 return NULL;
1610}
1611
1612void process_http_object_request(struct http_object_request *freq)
1613{
1614 if (freq->slot == NULL)
1615 return;
1616 freq->curl_result = freq->slot->curl_result;
1617 freq->http_code = freq->slot->http_code;
1618 freq->slot = NULL;
1619}
1620
1621int finish_http_object_request(struct http_object_request *freq)
1622{
1623 struct stat st;
1624
1625 close(freq->localfile);
1626 freq->localfile = -1;
1627
1628 process_http_object_request(freq);
1629
1630 if (freq->http_code == 416) {
bd757c18 1631 warning("requested range invalid; we may already have all the data.");
5424bc55
TRC
1632 } else if (freq->curl_result != CURLE_OK) {
1633 if (stat(freq->tmpfile, &st) == 0)
1634 if (st.st_size == 0)
1635 unlink_or_warn(freq->tmpfile);
1636 return -1;
1637 }
1638
1639 git_inflate_end(&freq->stream);
1640 git_SHA1_Final(freq->real_sha1, &freq->c);
1641 if (freq->zret != Z_STREAM_END) {
1642 unlink_or_warn(freq->tmpfile);
1643 return -1;
1644 }
1645 if (hashcmp(freq->sha1, freq->real_sha1)) {
1646 unlink_or_warn(freq->tmpfile);
1647 return -1;
1648 }
1649 freq->rename =
0da8b2e7 1650 move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1));
5424bc55
TRC
1651
1652 return freq->rename;
1653}
1654
1655void abort_http_object_request(struct http_object_request *freq)
1656{
1657 unlink_or_warn(freq->tmpfile);
1658
1659 release_http_object_request(freq);
1660}
1661
1662void release_http_object_request(struct http_object_request *freq)
1663{
1664 if (freq->localfile != -1) {
1665 close(freq->localfile);
1666 freq->localfile = -1;
1667 }
1668 if (freq->url != NULL) {
1669 free(freq->url);
1670 freq->url = NULL;
1671 }
4b9fa0e3
TRC
1672 if (freq->slot != NULL) {
1673 freq->slot->callback_func = NULL;
1674 freq->slot->callback_data = NULL;
1675 release_active_slot(freq->slot);
1676 freq->slot = NULL;
1677 }
5424bc55 1678}