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