blob: 14d535747d943c2db3d45d82439f3ee9633ed2d9 [file] [log] [blame]
Nick Hengeveld29508e12005-11-18 11:02:58 -08001#include "http.h"
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +08002#include "pack.h"
Nick Hengeveld29508e12005-11-18 11:02:58 -08003
4int data_received;
Junio C Hamano4251ccb2009-03-09 18:47:29 -07005int active_requests;
Tay Ray Chuane9176742009-06-06 16:43:41 +08006int http_is_verbose;
Nick Hengeveld29508e12005-11-18 11:02:58 -08007
8#ifdef USE_CURL_MULTI
Mike Hommeycc3530e2007-12-09 18:04:57 +01009static int max_requests = -1;
10static CURLM *curlm;
Nick Hengeveld29508e12005-11-18 11:02:58 -080011#endif
12#ifndef NO_CURL_EASY_DUPHANDLE
Mike Hommeycc3530e2007-12-09 18:04:57 +010013static CURL *curl_default;
Nick Hengeveld29508e12005-11-18 11:02:58 -080014#endif
Tay Ray Chuan5424bc52009-06-06 16:44:02 +080015
16#define PREV_BUF_SIZE 4096
17#define RANGE_HEADER_SIZE 30
18
Nick Hengeveld29508e12005-11-18 11:02:58 -080019char curl_errorstr[CURL_ERROR_SIZE];
20
Mike Hommeycc3530e2007-12-09 18:04:57 +010021static int curl_ssl_verify = -1;
Junio C Hamano4251ccb2009-03-09 18:47:29 -070022static const char *ssl_cert;
Mark Lodatoef52aaf2009-06-14 22:39:00 -040023#if LIBCURL_VERSION_NUM >= 0x070903
Junio C Hamano4251ccb2009-03-09 18:47:29 -070024static const char *ssl_key;
Nick Hengeveld29508e12005-11-18 11:02:58 -080025#endif
26#if LIBCURL_VERSION_NUM >= 0x070908
Junio C Hamano4251ccb2009-03-09 18:47:29 -070027static const char *ssl_capath;
Nick Hengeveld29508e12005-11-18 11:02:58 -080028#endif
Junio C Hamano4251ccb2009-03-09 18:47:29 -070029static const char *ssl_cainfo;
Mike Hommeycc3530e2007-12-09 18:04:57 +010030static long curl_low_speed_limit = -1;
31static long curl_low_speed_time = -1;
Junio C Hamano4251ccb2009-03-09 18:47:29 -070032static int curl_ftp_no_epsv;
33static const char *curl_http_proxy;
Junio C Hamanoc33976c2009-03-09 23:34:25 -070034static char *user_name, *user_pass;
Nick Hengeveld29508e12005-11-18 11:02:58 -080035
Mark Lodato30dd9162009-05-27 23:16:02 -040036#if LIBCURL_VERSION_NUM >= 0x071700
37/* Use CURLOPT_KEYPASSWD as is */
38#elif LIBCURL_VERSION_NUM >= 0x070903
39#define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
40#else
41#define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
42#endif
43
44static char *ssl_cert_password;
45static int ssl_cert_password_required;
46
Mike Hommeycc3530e2007-12-09 18:04:57 +010047static struct curl_slist *pragma_header;
Tay Ray Chuan5424bc52009-06-06 16:44:02 +080048static struct curl_slist *no_pragma_header;
Tay Ray Chuane9176742009-06-06 16:43:41 +080049
Junio C Hamano4251ccb2009-03-09 18:47:29 -070050static struct active_request_slot *active_queue_head;
Nick Hengeveld29508e12005-11-18 11:02:58 -080051
Junio C Hamanof444e522008-07-04 00:37:40 -070052size_t fread_buffer(void *ptr, size_t eltsize, size_t nmemb, void *buffer_)
Nick Hengeveld29508e12005-11-18 11:02:58 -080053{
54 size_t size = eltsize * nmemb;
Junio C Hamanof444e522008-07-04 00:37:40 -070055 struct buffer *buffer = buffer_;
56
Mike Hommey028c2972007-12-09 20:30:59 +010057 if (size > buffer->buf.len - buffer->posn)
58 size = buffer->buf.len - buffer->posn;
59 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
Nick Hengeveld29508e12005-11-18 11:02:58 -080060 buffer->posn += size;
Mike Hommey028c2972007-12-09 20:30:59 +010061
Nick Hengeveld29508e12005-11-18 11:02:58 -080062 return size;
63}
64
Martin Storsjö3944ba02009-04-01 19:48:24 +030065#ifndef NO_CURL_IOCTL
66curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
67{
68 struct buffer *buffer = clientp;
69
70 switch (cmd) {
71 case CURLIOCMD_NOP:
72 return CURLIOE_OK;
73
74 case CURLIOCMD_RESTARTREAD:
75 buffer->posn = 0;
76 return CURLIOE_OK;
77
78 default:
79 return CURLIOE_UNKNOWNCMD;
80 }
81}
82#endif
83
Junio C Hamanof444e522008-07-04 00:37:40 -070084size_t fwrite_buffer(const void *ptr, size_t eltsize, size_t nmemb, void *buffer_)
Nick Hengeveld29508e12005-11-18 11:02:58 -080085{
86 size_t size = eltsize * nmemb;
Junio C Hamanof444e522008-07-04 00:37:40 -070087 struct strbuf *buffer = buffer_;
88
Mike Hommey028c2972007-12-09 20:30:59 +010089 strbuf_add(buffer, ptr, size);
Nick Hengeveld29508e12005-11-18 11:02:58 -080090 data_received++;
91 return size;
92}
93
Junio C Hamanof444e522008-07-04 00:37:40 -070094size_t fwrite_null(const void *ptr, size_t eltsize, size_t nmemb, void *strbuf)
Nick Hengeveld29508e12005-11-18 11:02:58 -080095{
96 data_received++;
97 return eltsize * nmemb;
98}
99
100static void finish_active_slot(struct active_request_slot *slot);
101
102#ifdef USE_CURL_MULTI
103static void process_curl_messages(void)
104{
105 int num_messages;
106 struct active_request_slot *slot;
107 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
108
109 while (curl_message != NULL) {
110 if (curl_message->msg == CURLMSG_DONE) {
111 int curl_result = curl_message->data.result;
112 slot = active_queue_head;
113 while (slot != NULL &&
114 slot->curl != curl_message->easy_handle)
115 slot = slot->next;
116 if (slot != NULL) {
117 curl_multi_remove_handle(curlm, slot->curl);
118 slot->curl_result = curl_result;
119 finish_active_slot(slot);
120 } else {
121 fprintf(stderr, "Received DONE message for unknown request!\n");
122 }
123 } else {
124 fprintf(stderr, "Unknown CURL message received: %d\n",
125 (int)curl_message->msg);
126 }
127 curl_message = curl_multi_info_read(curlm, &num_messages);
128 }
129}
130#endif
131
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100132static int http_options(const char *var, const char *value, void *cb)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800133{
134 if (!strcmp("http.sslverify", var)) {
Junio C Hamano7059cd92009-03-09 19:00:30 -0700135 curl_ssl_verify = git_config_bool(var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800136 return 0;
137 }
Junio C Hamano7059cd92009-03-09 19:00:30 -0700138 if (!strcmp("http.sslcert", var))
139 return git_config_string(&ssl_cert, var, value);
Mark Lodatoef52aaf2009-06-14 22:39:00 -0400140#if LIBCURL_VERSION_NUM >= 0x070903
Junio C Hamano7059cd92009-03-09 19:00:30 -0700141 if (!strcmp("http.sslkey", var))
142 return git_config_string(&ssl_key, var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800143#endif
144#if LIBCURL_VERSION_NUM >= 0x070908
Junio C Hamano7059cd92009-03-09 19:00:30 -0700145 if (!strcmp("http.sslcapath", var))
146 return git_config_string(&ssl_capath, var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800147#endif
Junio C Hamano7059cd92009-03-09 19:00:30 -0700148 if (!strcmp("http.sslcainfo", var))
149 return git_config_string(&ssl_cainfo, var, value);
Mark Lodato754ae192009-05-27 23:16:03 -0400150 if (!strcmp("http.sslcertpasswordprotected", var)) {
151 if (git_config_bool(var, value))
152 ssl_cert_password_required = 1;
153 return 0;
154 }
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700155#ifdef USE_CURL_MULTI
Nick Hengeveld29508e12005-11-18 11:02:58 -0800156 if (!strcmp("http.maxrequests", var)) {
Junio C Hamano7059cd92009-03-09 19:00:30 -0700157 max_requests = git_config_int(var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800158 return 0;
159 }
160#endif
Nick Hengeveld29508e12005-11-18 11:02:58 -0800161 if (!strcmp("http.lowspeedlimit", var)) {
Junio C Hamano7059cd92009-03-09 19:00:30 -0700162 curl_low_speed_limit = (long)git_config_int(var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800163 return 0;
164 }
165 if (!strcmp("http.lowspeedtime", var)) {
Junio C Hamano7059cd92009-03-09 19:00:30 -0700166 curl_low_speed_time = (long)git_config_int(var, value);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800167 return 0;
168 }
169
Sasha Khapyorsky3ea099d2006-09-29 03:10:44 +0300170 if (!strcmp("http.noepsv", var)) {
171 curl_ftp_no_epsv = git_config_bool(var, value);
172 return 0;
173 }
Junio C Hamano7059cd92009-03-09 19:00:30 -0700174 if (!strcmp("http.proxy", var))
175 return git_config_string(&curl_http_proxy, var, value);
Sasha Khapyorsky3ea099d2006-09-29 03:10:44 +0300176
Nick Hengeveld29508e12005-11-18 11:02:58 -0800177 /* Fall back on the default ones */
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100178 return git_default_config(var, value, cb);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800179}
180
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700181static void init_curl_http_auth(CURL *result)
182{
Junio C Hamano750d9302009-03-12 22:34:43 -0700183 if (user_name) {
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700184 struct strbuf up = STRBUF_INIT;
185 if (!user_pass)
186 user_pass = xstrdup(getpass("Password: "));
187 strbuf_addf(&up, "%s:%s", user_name, user_pass);
188 curl_easy_setopt(result, CURLOPT_USERPWD,
189 strbuf_detach(&up, NULL));
190 }
191}
192
Mark Lodato30dd9162009-05-27 23:16:02 -0400193static int has_cert_password(void)
194{
195 if (ssl_cert_password != NULL)
196 return 1;
197 if (ssl_cert == NULL || ssl_cert_password_required != 1)
198 return 0;
199 /* Only prompt the user once. */
200 ssl_cert_password_required = -1;
201 ssl_cert_password = getpass("Certificate Password: ");
202 if (ssl_cert_password != NULL) {
203 ssl_cert_password = xstrdup(ssl_cert_password);
204 return 1;
205 } else
206 return 0;
207}
208
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700209static CURL *get_curl_handle(void)
Junio C Hamano11979b92005-11-18 17:06:46 -0800210{
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700211 CURL *result = curl_easy_init();
Junio C Hamano11979b92005-11-18 17:06:46 -0800212
Junio C Hamanoa5ccc592008-02-21 15:10:37 -0800213 if (!curl_ssl_verify) {
214 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
215 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
216 } else {
217 /* Verify authenticity of the peer's certificate */
218 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
219 /* The name in the cert must match whom we tried to connect */
220 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
221 }
222
Junio C Hamano11979b92005-11-18 17:06:46 -0800223#if LIBCURL_VERSION_NUM >= 0x070907
224 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
225#endif
226
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700227 init_curl_http_auth(result);
228
Junio C Hamano11979b92005-11-18 17:06:46 -0800229 if (ssl_cert != NULL)
230 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
Mark Lodato30dd9162009-05-27 23:16:02 -0400231 if (has_cert_password())
232 curl_easy_setopt(result, CURLOPT_KEYPASSWD, ssl_cert_password);
Mark Lodatoef52aaf2009-06-14 22:39:00 -0400233#if LIBCURL_VERSION_NUM >= 0x070903
Junio C Hamano11979b92005-11-18 17:06:46 -0800234 if (ssl_key != NULL)
235 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
236#endif
237#if LIBCURL_VERSION_NUM >= 0x070908
238 if (ssl_capath != NULL)
239 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
240#endif
241 if (ssl_cainfo != NULL)
242 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
243 curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
244
245 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
246 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
247 curl_low_speed_limit);
248 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
249 curl_low_speed_time);
250 }
251
252 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
253
Mark Wooding7982d742006-02-01 11:44:37 +0000254 if (getenv("GIT_CURL_VERBOSE"))
255 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
256
Nick Hengeveld20fc9bc2006-04-04 10:11:29 -0700257 curl_easy_setopt(result, CURLOPT_USERAGENT, GIT_USER_AGENT);
258
Sasha Khapyorsky3ea099d2006-09-29 03:10:44 +0300259 if (curl_ftp_no_epsv)
260 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
261
Sam Vilain9c5665a2007-11-23 13:07:00 +1300262 if (curl_http_proxy)
263 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
264
Junio C Hamano11979b92005-11-18 17:06:46 -0800265 return result;
266}
267
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700268static void http_auth_init(const char *url)
269{
270 char *at, *colon, *cp, *slash;
271 int len;
272
273 cp = strstr(url, "://");
274 if (!cp)
275 return;
276
277 /*
278 * Ok, the URL looks like "proto://something". Which one?
279 * "proto://<user>:<pass>@<host>/...",
280 * "proto://<user>@<host>/...", or just
281 * "proto://<host>/..."?
282 */
283 cp += 3;
284 at = strchr(cp, '@');
285 colon = strchr(cp, ':');
286 slash = strchrnul(cp, '/');
287 if (!at || slash <= at)
288 return; /* No credentials */
289 if (!colon || at <= colon) {
290 /* Only username */
291 len = at - cp;
292 user_name = xmalloc(len + 1);
293 memcpy(user_name, cp, len);
294 user_name[len] = '\0';
295 user_pass = NULL;
296 } else {
297 len = colon - cp;
298 user_name = xmalloc(len + 1);
299 memcpy(user_name, cp, len);
300 user_name[len] = '\0';
301 len = at - (colon + 1);
302 user_pass = xmalloc(len + 1);
303 memcpy(user_pass, colon + 1, len);
304 user_pass[len] = '\0';
305 }
306}
307
Junio C Hamano7059cd92009-03-09 19:00:30 -0700308static void set_from_env(const char **var, const char *envname)
309{
310 const char *val = getenv(envname);
311 if (val)
312 *var = val;
313}
314
Mike Hommey9fc64402008-02-27 21:35:50 +0100315void http_init(struct remote *remote)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800316{
317 char *low_speed_limit;
318 char *low_speed_time;
319
Tay Ray Chuane9176742009-06-06 16:43:41 +0800320 http_is_verbose = 0;
321
Junio C Hamano7059cd92009-03-09 19:00:30 -0700322 git_config(http_options, NULL);
323
Nick Hengeveld29508e12005-11-18 11:02:58 -0800324 curl_global_init(CURL_GLOBAL_ALL);
325
Mike Hommey9fc64402008-02-27 21:35:50 +0100326 if (remote && remote->http_proxy)
327 curl_http_proxy = xstrdup(remote->http_proxy);
328
Nick Hengeveld29508e12005-11-18 11:02:58 -0800329 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
Tay Ray Chuane9176742009-06-06 16:43:41 +0800330 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
Nick Hengeveld29508e12005-11-18 11:02:58 -0800331
332#ifdef USE_CURL_MULTI
333 {
334 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
335 if (http_max_requests != NULL)
336 max_requests = atoi(http_max_requests);
337 }
338
339 curlm = curl_multi_init();
340 if (curlm == NULL) {
341 fprintf(stderr, "Error creating curl multi handle.\n");
342 exit(1);
343 }
344#endif
345
346 if (getenv("GIT_SSL_NO_VERIFY"))
347 curl_ssl_verify = 0;
348
Junio C Hamano7059cd92009-03-09 19:00:30 -0700349 set_from_env(&ssl_cert, "GIT_SSL_CERT");
Mark Lodatoef52aaf2009-06-14 22:39:00 -0400350#if LIBCURL_VERSION_NUM >= 0x070903
Junio C Hamano7059cd92009-03-09 19:00:30 -0700351 set_from_env(&ssl_key, "GIT_SSL_KEY");
Nick Hengeveld29508e12005-11-18 11:02:58 -0800352#endif
353#if LIBCURL_VERSION_NUM >= 0x070908
Junio C Hamano7059cd92009-03-09 19:00:30 -0700354 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
Nick Hengeveld29508e12005-11-18 11:02:58 -0800355#endif
Junio C Hamano7059cd92009-03-09 19:00:30 -0700356 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
Nick Hengeveld29508e12005-11-18 11:02:58 -0800357
358 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
359 if (low_speed_limit != NULL)
360 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
361 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
362 if (low_speed_time != NULL)
363 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
364
Nick Hengeveld29508e12005-11-18 11:02:58 -0800365 if (curl_ssl_verify == -1)
366 curl_ssl_verify = 1;
367
368#ifdef USE_CURL_MULTI
369 if (max_requests < 1)
370 max_requests = DEFAULT_MAX_REQUESTS;
371#endif
372
Sasha Khapyorsky3ea099d2006-09-29 03:10:44 +0300373 if (getenv("GIT_CURL_FTP_NO_EPSV"))
374 curl_ftp_no_epsv = 1;
375
Mark Lodato30dd9162009-05-27 23:16:02 -0400376 if (remote && remote->url && remote->url[0]) {
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700377 http_auth_init(remote->url[0]);
Mark Lodato754ae192009-05-27 23:16:03 -0400378 if (!ssl_cert_password_required &&
379 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
380 !prefixcmp(remote->url[0], "https://"))
Mark Lodato30dd9162009-05-27 23:16:02 -0400381 ssl_cert_password_required = 1;
382 }
Junio C Hamanoc33976c2009-03-09 23:34:25 -0700383
Nick Hengeveld29508e12005-11-18 11:02:58 -0800384#ifndef NO_CURL_EASY_DUPHANDLE
385 curl_default = get_curl_handle();
386#endif
387}
388
389void http_cleanup(void)
390{
391 struct active_request_slot *slot = active_queue_head;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800392
393 while (slot != NULL) {
Shawn O. Pearce3278cd02007-09-15 03:23:00 -0400394 struct active_request_slot *next = slot->next;
Mike Hommeyf23d1f72008-03-03 20:30:16 +0100395 if (slot->curl != NULL) {
Nick Hengeveld29508e12005-11-18 11:02:58 -0800396#ifdef USE_CURL_MULTI
Mike Hommeyf23d1f72008-03-03 20:30:16 +0100397 curl_multi_remove_handle(curlm, slot->curl);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800398#endif
Nick Hengeveld29508e12005-11-18 11:02:58 -0800399 curl_easy_cleanup(slot->curl);
Mike Hommeyf23d1f72008-03-03 20:30:16 +0100400 }
Shawn O. Pearce3278cd02007-09-15 03:23:00 -0400401 free(slot);
402 slot = next;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800403 }
Shawn O. Pearce3278cd02007-09-15 03:23:00 -0400404 active_queue_head = NULL;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800405
406#ifndef NO_CURL_EASY_DUPHANDLE
407 curl_easy_cleanup(curl_default);
408#endif
409
410#ifdef USE_CURL_MULTI
411 curl_multi_cleanup(curlm);
412#endif
413 curl_global_cleanup();
Nick Hengeveldb3ca4e4e2006-06-06 09:41:32 -0700414
415 curl_slist_free_all(pragma_header);
Shawn O. Pearce3278cd02007-09-15 03:23:00 -0400416 pragma_header = NULL;
Mike Hommey9fc64402008-02-27 21:35:50 +0100417
Tay Ray Chuane9176742009-06-06 16:43:41 +0800418 curl_slist_free_all(no_pragma_header);
419 no_pragma_header = NULL;
420
Mike Hommey9fc64402008-02-27 21:35:50 +0100421 if (curl_http_proxy) {
Miklos Vajnae4a80ec2008-12-07 01:45:37 +0100422 free((void *)curl_http_proxy);
Mike Hommey9fc64402008-02-27 21:35:50 +0100423 curl_http_proxy = NULL;
424 }
Mark Lodato30dd9162009-05-27 23:16:02 -0400425
426 if (ssl_cert_password != NULL) {
427 memset(ssl_cert_password, 0, strlen(ssl_cert_password));
428 free(ssl_cert_password);
429 ssl_cert_password = NULL;
430 }
431 ssl_cert_password_required = 0;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800432}
433
Nick Hengeveld29508e12005-11-18 11:02:58 -0800434struct active_request_slot *get_active_slot(void)
435{
436 struct active_request_slot *slot = active_queue_head;
437 struct active_request_slot *newslot;
438
439#ifdef USE_CURL_MULTI
440 int num_transfers;
441
442 /* Wait for a slot to open up if the queue is full */
443 while (active_requests >= max_requests) {
444 curl_multi_perform(curlm, &num_transfers);
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700445 if (num_transfers < active_requests)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800446 process_curl_messages();
Nick Hengeveld29508e12005-11-18 11:02:58 -0800447 }
448#endif
449
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700450 while (slot != NULL && slot->in_use)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800451 slot = slot->next;
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700452
Nick Hengeveld29508e12005-11-18 11:02:58 -0800453 if (slot == NULL) {
454 newslot = xmalloc(sizeof(*newslot));
455 newslot->curl = NULL;
456 newslot->in_use = 0;
457 newslot->next = NULL;
458
459 slot = active_queue_head;
460 if (slot == NULL) {
461 active_queue_head = newslot;
462 } else {
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700463 while (slot->next != NULL)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800464 slot = slot->next;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800465 slot->next = newslot;
466 }
467 slot = newslot;
468 }
469
470 if (slot->curl == NULL) {
471#ifdef NO_CURL_EASY_DUPHANDLE
472 slot->curl = get_curl_handle();
473#else
474 slot->curl = curl_easy_duphandle(curl_default);
475#endif
476 }
477
478 active_requests++;
479 slot->in_use = 1;
480 slot->local = NULL;
Nick Hengeveldc8568e12006-01-31 11:06:55 -0800481 slot->results = NULL;
Nick Hengeveldbaa7b672006-03-10 20:18:01 -0800482 slot->finished = NULL;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800483 slot->callback_data = NULL;
484 slot->callback_func = NULL;
485 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800486 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
Nick Hengeveld90949502006-05-31 16:25:03 -0700487 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
488 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
489 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
490 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
491 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800492
493 return slot;
494}
495
496int start_active_slot(struct active_request_slot *slot)
497{
498#ifdef USE_CURL_MULTI
499 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
Daniel Barkalow45c17412007-09-10 23:02:28 -0400500 int num_transfers;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800501
502 if (curlm_result != CURLM_OK &&
503 curlm_result != CURLM_CALL_MULTI_PERFORM) {
504 active_requests--;
505 slot->in_use = 0;
506 return 0;
507 }
Daniel Barkalow45c17412007-09-10 23:02:28 -0400508
509 /*
510 * We know there must be something to do, since we just added
511 * something.
512 */
513 curl_multi_perform(curlm, &num_transfers);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800514#endif
515 return 1;
516}
517
518#ifdef USE_CURL_MULTI
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -0400519struct fill_chain {
520 void *data;
521 int (*fill)(void *);
522 struct fill_chain *next;
523};
524
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700525static struct fill_chain *fill_cfg;
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -0400526
527void add_fill_function(void *data, int (*fill)(void *))
528{
Dotan Barake8eec712008-09-09 21:57:10 +0300529 struct fill_chain *new = xmalloc(sizeof(*new));
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -0400530 struct fill_chain **linkp = &fill_cfg;
531 new->data = data;
532 new->fill = fill;
533 new->next = NULL;
534 while (*linkp)
535 linkp = &(*linkp)->next;
536 *linkp = new;
537}
538
Daniel Barkalow45c17412007-09-10 23:02:28 -0400539void fill_active_slots(void)
540{
541 struct active_request_slot *slot = active_queue_head;
542
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -0400543 while (active_requests < max_requests) {
544 struct fill_chain *fill;
545 for (fill = fill_cfg; fill; fill = fill->next)
546 if (fill->fill(fill->data))
547 break;
548
549 if (!fill)
Daniel Barkalow45c17412007-09-10 23:02:28 -0400550 break;
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -0400551 }
Daniel Barkalow45c17412007-09-10 23:02:28 -0400552
553 while (slot != NULL) {
554 if (!slot->in_use && slot->curl != NULL) {
555 curl_easy_cleanup(slot->curl);
556 slot->curl = NULL;
557 }
558 slot = slot->next;
559 }
560}
561
Nick Hengeveld29508e12005-11-18 11:02:58 -0800562void step_active_slots(void)
563{
564 int num_transfers;
565 CURLMcode curlm_result;
566
567 do {
568 curlm_result = curl_multi_perform(curlm, &num_transfers);
569 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
570 if (num_transfers < active_requests) {
571 process_curl_messages();
572 fill_active_slots();
573 }
574}
575#endif
576
577void run_active_slot(struct active_request_slot *slot)
578{
579#ifdef USE_CURL_MULTI
580 long last_pos = 0;
581 long current_pos;
582 fd_set readfds;
583 fd_set writefds;
584 fd_set excfds;
585 int max_fd;
586 struct timeval select_timeout;
Nick Hengeveldbaa7b672006-03-10 20:18:01 -0800587 int finished = 0;
Nick Hengeveld29508e12005-11-18 11:02:58 -0800588
Nick Hengeveldbaa7b672006-03-10 20:18:01 -0800589 slot->finished = &finished;
590 while (!finished) {
Nick Hengeveld29508e12005-11-18 11:02:58 -0800591 data_received = 0;
592 step_active_slots();
593
594 if (!data_received && slot->local != NULL) {
595 current_pos = ftell(slot->local);
596 if (current_pos > last_pos)
597 data_received++;
598 last_pos = current_pos;
599 }
600
601 if (slot->in_use && !data_received) {
602 max_fd = 0;
603 FD_ZERO(&readfds);
604 FD_ZERO(&writefds);
605 FD_ZERO(&excfds);
606 select_timeout.tv_sec = 0;
607 select_timeout.tv_usec = 50000;
608 select(max_fd, &readfds, &writefds,
609 &excfds, &select_timeout);
610 }
611 }
612#else
613 while (slot->in_use) {
614 slot->curl_result = curl_easy_perform(slot->curl);
615 finish_active_slot(slot);
616 }
617#endif
618}
619
Mark Wooding53f31382006-02-07 10:07:39 +0000620static void closedown_active_slot(struct active_request_slot *slot)
Nick Hengeveld29508e12005-11-18 11:02:58 -0800621{
Mike Hommey028c2972007-12-09 20:30:59 +0100622 active_requests--;
623 slot->in_use = 0;
Mark Wooding53f31382006-02-07 10:07:39 +0000624}
625
626void release_active_slot(struct active_request_slot *slot)
627{
628 closedown_active_slot(slot);
629 if (slot->curl) {
Nick Hengeveldb3ca4e4e2006-06-06 09:41:32 -0700630#ifdef USE_CURL_MULTI
Mark Wooding53f31382006-02-07 10:07:39 +0000631 curl_multi_remove_handle(curlm, slot->curl);
Nick Hengeveldb3ca4e4e2006-06-06 09:41:32 -0700632#endif
Mark Wooding53f31382006-02-07 10:07:39 +0000633 curl_easy_cleanup(slot->curl);
634 slot->curl = NULL;
635 }
Nick Hengeveldb3ca4e4e2006-06-06 09:41:32 -0700636#ifdef USE_CURL_MULTI
Mark Wooding53f31382006-02-07 10:07:39 +0000637 fill_active_slots();
Nick Hengeveldb3ca4e4e2006-06-06 09:41:32 -0700638#endif
Mark Wooding53f31382006-02-07 10:07:39 +0000639}
640
641static void finish_active_slot(struct active_request_slot *slot)
642{
643 closedown_active_slot(slot);
Mike Hommey028c2972007-12-09 20:30:59 +0100644 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
Nick Hengeveldc8568e12006-01-31 11:06:55 -0800645
Nick Hengeveldbaa7b672006-03-10 20:18:01 -0800646 if (slot->finished != NULL)
647 (*slot->finished) = 1;
648
Nick Hengeveldc8568e12006-01-31 11:06:55 -0800649 /* Store slot results so they can be read after the slot is reused */
650 if (slot->results != NULL) {
651 slot->results->curl_result = slot->curl_result;
652 slot->results->http_code = slot->http_code;
653 }
654
Mike Hommey028c2972007-12-09 20:30:59 +0100655 /* Run callback if appropriate */
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700656 if (slot->callback_func != NULL)
Mike Hommey028c2972007-12-09 20:30:59 +0100657 slot->callback_func(slot->callback_data);
Nick Hengeveld29508e12005-11-18 11:02:58 -0800658}
659
660void finish_all_active_slots(void)
661{
662 struct active_request_slot *slot = active_queue_head;
663
664 while (slot != NULL)
665 if (slot->in_use) {
666 run_active_slot(slot);
667 slot = active_queue_head;
668 } else {
669 slot = slot->next;
670 }
671}
Mike Hommeyd7e92802007-12-11 00:08:25 +0100672
Tay Ray Chuan5ace9942009-06-06 16:43:43 +0800673/* Helpers for modifying and creating URLs */
Mike Hommeyd7e92802007-12-11 00:08:25 +0100674static inline int needs_quote(int ch)
675{
676 if (((ch >= 'A') && (ch <= 'Z'))
677 || ((ch >= 'a') && (ch <= 'z'))
678 || ((ch >= '0') && (ch <= '9'))
679 || (ch == '/')
680 || (ch == '-')
681 || (ch == '.'))
682 return 0;
683 return 1;
684}
685
686static inline int hex(int v)
687{
Junio C Hamano4251ccb2009-03-09 18:47:29 -0700688 if (v < 10)
689 return '0' + v;
690 else
691 return 'A' + v - 10;
Mike Hommeyd7e92802007-12-11 00:08:25 +0100692}
693
Tay Ray Chuan5ace9942009-06-06 16:43:43 +0800694static void end_url_with_slash(struct strbuf *buf, const char *url)
695{
696 strbuf_addstr(buf, url);
697 if (buf->len && buf->buf[buf->len - 1] != '/')
698 strbuf_addstr(buf, "/");
699}
700
Mike Hommeyd7e92802007-12-11 00:08:25 +0100701static char *quote_ref_url(const char *base, const char *ref)
702{
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800703 struct strbuf buf = STRBUF_INIT;
Mike Hommeyd7e92802007-12-11 00:08:25 +0100704 const char *cp;
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800705 int ch;
Mike Hommeyd7e92802007-12-11 00:08:25 +0100706
Tay Ray Chuan5ace9942009-06-06 16:43:43 +0800707 end_url_with_slash(&buf, base);
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800708
709 for (cp = ref; (ch = *cp) != 0; cp++)
Mike Hommeyd7e92802007-12-11 00:08:25 +0100710 if (needs_quote(ch))
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800711 strbuf_addf(&buf, "%%%02x", ch);
Mike Hommeyd7e92802007-12-11 00:08:25 +0100712 else
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800713 strbuf_addch(&buf, *cp);
Mike Hommeyd7e92802007-12-11 00:08:25 +0100714
Tay Ray Chuan113106e2009-03-08 00:47:21 +0800715 return strbuf_detach(&buf, NULL);
Mike Hommeyd7e92802007-12-11 00:08:25 +0100716}
717
Tay Ray Chuan5424bc52009-06-06 16:44:02 +0800718void append_remote_object_url(struct strbuf *buf, const char *url,
719 const char *hex,
720 int only_two_digit_prefix)
721{
722 strbuf_addf(buf, "%s/objects/%.*s/", url, 2, hex);
723 if (!only_two_digit_prefix)
724 strbuf_addf(buf, "%s", hex+2);
725}
726
727char *get_remote_object_url(const char *url, const char *hex,
728 int only_two_digit_prefix)
729{
730 struct strbuf buf = STRBUF_INIT;
731 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
732 return strbuf_detach(&buf, NULL);
733}
734
Mike Hommeye929cd22009-06-06 16:43:53 +0800735/* http_request() targets */
736#define HTTP_REQUEST_STRBUF 0
737#define HTTP_REQUEST_FILE 1
738
739static int http_request(const char *url, void *result, int target, int options)
740{
741 struct active_request_slot *slot;
742 struct slot_results results;
743 struct curl_slist *headers = NULL;
744 struct strbuf buf = STRBUF_INIT;
745 int ret;
746
747 slot = get_active_slot();
748 slot->results = &results;
749 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
750
751 if (result == NULL) {
752 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
753 } else {
754 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
755 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
756
757 if (target == HTTP_REQUEST_FILE) {
758 long posn = ftell(result);
759 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
760 fwrite);
761 if (posn > 0) {
762 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
763 headers = curl_slist_append(headers, buf.buf);
764 strbuf_reset(&buf);
765 }
766 slot->local = result;
767 } else
768 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
769 fwrite_buffer);
770 }
771
772 strbuf_addstr(&buf, "Pragma:");
773 if (options & HTTP_NO_CACHE)
774 strbuf_addstr(&buf, " no-cache");
775
776 headers = curl_slist_append(headers, buf.buf);
777
778 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
779 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
780
781 if (start_active_slot(slot)) {
782 run_active_slot(slot);
783 if (results.curl_result == CURLE_OK)
784 ret = HTTP_OK;
785 else if (missing_target(&results))
786 ret = HTTP_MISSING_TARGET;
787 else
788 ret = HTTP_ERROR;
789 } else {
790 error("Unable to start HTTP request for %s", url);
791 ret = HTTP_START_FAILED;
792 }
793
794 slot->local = NULL;
795 curl_slist_free_all(headers);
796 strbuf_release(&buf);
797
798 return ret;
799}
800
801int http_get_strbuf(const char *url, struct strbuf *result, int options)
802{
803 return http_request(url, result, HTTP_REQUEST_STRBUF, options);
804}
805
806int http_get_file(const char *url, const char *filename, int options)
807{
808 int ret;
809 struct strbuf tmpfile = STRBUF_INIT;
810 FILE *result;
811
812 strbuf_addf(&tmpfile, "%s.temp", filename);
813 result = fopen(tmpfile.buf, "a");
814 if (! result) {
815 error("Unable to open local file %s", tmpfile.buf);
816 ret = HTTP_ERROR;
817 goto cleanup;
818 }
819
820 ret = http_request(url, result, HTTP_REQUEST_FILE, options);
821 fclose(result);
822
823 if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
824 ret = HTTP_ERROR;
825cleanup:
826 strbuf_release(&tmpfile);
827 return ret;
828}
829
830int http_error(const char *url, int ret)
831{
832 /* http_request has already handled HTTP_START_FAILED. */
833 if (ret != HTTP_START_FAILED)
834 error("%s while accessing %s\n", curl_errorstr, url);
835
836 return ret;
837}
838
Daniel Barkalowc13b2632008-04-26 15:53:09 -0400839int http_fetch_ref(const char *base, struct ref *ref)
Mike Hommeyd7e92802007-12-11 00:08:25 +0100840{
841 char *url;
842 struct strbuf buffer = STRBUF_INIT;
Mike Hommey0d5896e2009-06-06 16:43:55 +0800843 int ret = -1;
Mike Hommeyd7e92802007-12-11 00:08:25 +0100844
Daniel Barkalowc13b2632008-04-26 15:53:09 -0400845 url = quote_ref_url(base, ref->name);
Mike Hommey0d5896e2009-06-06 16:43:55 +0800846 if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
847 strbuf_rtrim(&buffer);
848 if (buffer.len == 40)
849 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
850 else if (!prefixcmp(buffer.buf, "ref: ")) {
851 ref->symref = xstrdup(buffer.buf + 5);
852 ret = 0;
Mike Hommeyd7e92802007-12-11 00:08:25 +0100853 }
Mike Hommeyd7e92802007-12-11 00:08:25 +0100854 }
855
856 strbuf_release(&buffer);
857 free(url);
858 return ret;
859}
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800860
861/* Helpers for fetching packs */
862static int fetch_pack_index(unsigned char *sha1, const char *base_url)
863{
864 int ret = 0;
865 char *hex = xstrdup(sha1_to_hex(sha1));
866 char *filename;
867 char *url;
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800868 struct strbuf buf = STRBUF_INIT;
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800869
870 /* Don't use the index if the pack isn't there */
871 end_url_with_slash(&buf, base_url);
872 strbuf_addf(&buf, "objects/pack/pack-%s.pack", hex);
873 url = strbuf_detach(&buf, 0);
874
Tay Ray Chuan39dc52c2009-06-06 16:44:00 +0800875 if (http_get_strbuf(url, NULL, 0)) {
876 ret = error("Unable to verify pack %s is available",
877 hex);
878 goto cleanup;
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800879 }
880
881 if (has_pack_index(sha1)) {
882 ret = 0;
Tay Ray Chuan39dc52c2009-06-06 16:44:00 +0800883 goto cleanup;
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800884 }
885
886 if (http_is_verbose)
887 fprintf(stderr, "Getting index for pack %s\n", hex);
888
889 end_url_with_slash(&buf, base_url);
890 strbuf_addf(&buf, "objects/pack/pack-%s.idx", hex);
891 url = strbuf_detach(&buf, NULL);
892
893 filename = sha1_pack_index_name(sha1);
Tay Ray Chuan39dc52c2009-06-06 16:44:00 +0800894 if (http_get_file(url, filename, 0) != HTTP_OK)
895 ret = error("Unable to get pack index %s\n", url);
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800896
Tay Ray Chuan39dc52c2009-06-06 16:44:00 +0800897cleanup:
Tay Ray Chuanb8caac22009-06-06 16:43:59 +0800898 free(hex);
899 free(url);
900 return ret;
901}
902
903static int fetch_and_setup_pack_index(struct packed_git **packs_head,
904 unsigned char *sha1, const char *base_url)
905{
906 struct packed_git *new_pack;
907
908 if (fetch_pack_index(sha1, base_url))
909 return -1;
910
911 new_pack = parse_pack_index(sha1);
912 if (!new_pack)
913 return -1; /* parse_pack_index() already issued error message */
914 new_pack->next = *packs_head;
915 *packs_head = new_pack;
916 return 0;
917}
918
919int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
920{
921 int ret = 0, i = 0;
922 char *url, *data;
923 struct strbuf buf = STRBUF_INIT;
924 unsigned char sha1[20];
925
926 end_url_with_slash(&buf, base_url);
927 strbuf_addstr(&buf, "objects/info/packs");
928 url = strbuf_detach(&buf, NULL);
929
930 ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
931 if (ret != HTTP_OK)
932 goto cleanup;
933
934 data = buf.buf;
935 while (i < buf.len) {
936 switch (data[i]) {
937 case 'P':
938 i++;
939 if (i + 52 <= buf.len &&
940 !prefixcmp(data + i, " pack-") &&
941 !prefixcmp(data + i + 46, ".pack\n")) {
942 get_sha1_hex(data + i + 6, sha1);
943 fetch_and_setup_pack_index(packs_head, sha1,
944 base_url);
945 i += 51;
946 break;
947 }
948 default:
949 while (i < buf.len && data[i] != '\n')
950 i++;
951 }
952 i++;
953 }
954
955cleanup:
956 free(url);
957 return ret;
958}
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +0800959
960void release_http_pack_request(struct http_pack_request *preq)
961{
962 if (preq->packfile != NULL) {
963 fclose(preq->packfile);
964 preq->packfile = NULL;
965 preq->slot->local = NULL;
966 }
967 if (preq->range_header != NULL) {
968 curl_slist_free_all(preq->range_header);
969 preq->range_header = NULL;
970 }
971 preq->slot = NULL;
972 free(preq->url);
973}
974
975int finish_http_pack_request(struct http_pack_request *preq)
976{
977 int ret;
978 struct packed_git **lst;
979
980 preq->target->pack_size = ftell(preq->packfile);
981
982 if (preq->packfile != NULL) {
983 fclose(preq->packfile);
984 preq->packfile = NULL;
985 preq->slot->local = NULL;
986 }
987
988 ret = move_temp_to_file(preq->tmpfile, preq->filename);
989 if (ret)
990 return ret;
991
992 lst = preq->lst;
993 while (*lst != preq->target)
994 lst = &((*lst)->next);
995 *lst = (*lst)->next;
996
997 if (verify_pack(preq->target))
998 return -1;
999 install_packed_git(preq->target);
1000
1001 return 0;
1002}
1003
1004struct http_pack_request *new_http_pack_request(
1005 struct packed_git *target, const char *base_url)
1006{
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +08001007 char *filename;
1008 long prev_posn = 0;
1009 char range[RANGE_HEADER_SIZE];
1010 struct strbuf buf = STRBUF_INIT;
1011 struct http_pack_request *preq;
1012
1013 preq = xmalloc(sizeof(*preq));
1014 preq->target = target;
1015 preq->range_header = NULL;
1016
1017 end_url_with_slash(&buf, base_url);
1018 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1019 sha1_to_hex(target->sha1));
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001020 preq->url = strbuf_detach(&buf, NULL);
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +08001021
1022 filename = sha1_pack_name(target->sha1);
1023 snprintf(preq->filename, sizeof(preq->filename), "%s", filename);
1024 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp", filename);
1025 preq->packfile = fopen(preq->tmpfile, "a");
1026 if (!preq->packfile) {
1027 error("Unable to open local file %s for pack",
1028 preq->tmpfile);
1029 goto abort;
1030 }
1031
1032 preq->slot = get_active_slot();
1033 preq->slot->local = preq->packfile;
1034 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1035 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001036 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +08001037 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1038 no_pragma_header);
1039
1040 /*
1041 * If there is data present from a previous transfer attempt,
1042 * resume where it left off
1043 */
1044 prev_posn = ftell(preq->packfile);
1045 if (prev_posn>0) {
1046 if (http_is_verbose)
1047 fprintf(stderr,
1048 "Resuming fetch of pack %s at byte %ld\n",
1049 sha1_to_hex(target->sha1), prev_posn);
1050 sprintf(range, "Range: bytes=%ld-", prev_posn);
1051 preq->range_header = curl_slist_append(NULL, range);
1052 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1053 preq->range_header);
1054 }
1055
1056 return preq;
1057
1058abort:
1059 free(filename);
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001060 free(preq->url);
Tay Ray Chuan5ae9ebf2009-08-10 23:55:48 +08001061 free(preq);
Tay Ray Chuan2264dfa2009-06-06 16:44:01 +08001062 return NULL;
1063}
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001064
1065/* Helpers for fetching objects (loose) */
1066static size_t fwrite_sha1_file(void *ptr, size_t eltsize, size_t nmemb,
1067 void *data)
1068{
1069 unsigned char expn[4096];
1070 size_t size = eltsize * nmemb;
1071 int posn = 0;
1072 struct http_object_request *freq =
1073 (struct http_object_request *)data;
1074 do {
1075 ssize_t retval = xwrite(freq->localfile,
1076 (char *) ptr + posn, size - posn);
1077 if (retval < 0)
1078 return posn;
1079 posn += retval;
1080 } while (posn < size);
1081
1082 freq->stream.avail_in = size;
1083 freq->stream.next_in = ptr;
1084 do {
1085 freq->stream.next_out = expn;
1086 freq->stream.avail_out = sizeof(expn);
1087 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1088 git_SHA1_Update(&freq->c, expn,
1089 sizeof(expn) - freq->stream.avail_out);
1090 } while (freq->stream.avail_in && freq->zret == Z_OK);
1091 data_received++;
1092 return size;
1093}
1094
1095struct http_object_request *new_http_object_request(const char *base_url,
1096 unsigned char *sha1)
1097{
1098 char *hex = sha1_to_hex(sha1);
1099 char *filename;
1100 char prevfile[PATH_MAX];
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001101 int prevlocal;
1102 unsigned char prev_buf[PREV_BUF_SIZE];
1103 ssize_t prev_read = 0;
1104 long prev_posn = 0;
1105 char range[RANGE_HEADER_SIZE];
1106 struct curl_slist *range_header = NULL;
1107 struct http_object_request *freq;
1108
1109 freq = xmalloc(sizeof(*freq));
1110 hashcpy(freq->sha1, sha1);
1111 freq->localfile = -1;
1112
1113 filename = sha1_file_name(sha1);
1114 snprintf(freq->filename, sizeof(freq->filename), "%s", filename);
1115 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1116 "%s.temp", filename);
1117
1118 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1119 unlink_or_warn(prevfile);
1120 rename(freq->tmpfile, prevfile);
1121 unlink_or_warn(freq->tmpfile);
1122
1123 if (freq->localfile != -1)
1124 error("fd leakage in start: %d", freq->localfile);
1125 freq->localfile = open(freq->tmpfile,
1126 O_WRONLY | O_CREAT | O_EXCL, 0666);
1127 /*
1128 * This could have failed due to the "lazy directory creation";
1129 * try to mkdir the last path component.
1130 */
1131 if (freq->localfile < 0 && errno == ENOENT) {
1132 char *dir = strrchr(freq->tmpfile, '/');
1133 if (dir) {
1134 *dir = 0;
1135 mkdir(freq->tmpfile, 0777);
1136 *dir = '/';
1137 }
1138 freq->localfile = open(freq->tmpfile,
1139 O_WRONLY | O_CREAT | O_EXCL, 0666);
1140 }
1141
1142 if (freq->localfile < 0) {
1143 error("Couldn't create temporary file %s for %s: %s",
1144 freq->tmpfile, freq->filename, strerror(errno));
1145 goto abort;
1146 }
1147
1148 memset(&freq->stream, 0, sizeof(freq->stream));
1149
1150 git_inflate_init(&freq->stream);
1151
1152 git_SHA1_Init(&freq->c);
1153
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001154 freq->url = get_remote_object_url(base_url, hex, 0);
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001155
1156 /*
1157 * If a previous temp file is present, process what was already
1158 * fetched.
1159 */
1160 prevlocal = open(prevfile, O_RDONLY);
1161 if (prevlocal != -1) {
1162 do {
1163 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1164 if (prev_read>0) {
1165 if (fwrite_sha1_file(prev_buf,
1166 1,
1167 prev_read,
1168 freq) == prev_read) {
1169 prev_posn += prev_read;
1170 } else {
1171 prev_read = -1;
1172 }
1173 }
1174 } while (prev_read > 0);
1175 close(prevlocal);
1176 }
1177 unlink_or_warn(prevfile);
1178
1179 /*
1180 * Reset inflate/SHA1 if there was an error reading the previous temp
1181 * file; also rewind to the beginning of the local file.
1182 */
1183 if (prev_read == -1) {
1184 memset(&freq->stream, 0, sizeof(freq->stream));
1185 git_inflate_init(&freq->stream);
1186 git_SHA1_Init(&freq->c);
1187 if (prev_posn>0) {
1188 prev_posn = 0;
1189 lseek(freq->localfile, 0, SEEK_SET);
Jeff Lasslett0c4f21e2009-08-11 00:05:06 +08001190 if (ftruncate(freq->localfile, 0) < 0) {
1191 error("Couldn't truncate temporary file %s for %s: %s",
1192 freq->tmpfile, freq->filename, strerror(errno));
1193 goto abort;
1194 }
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001195 }
1196 }
1197
1198 freq->slot = get_active_slot();
1199
1200 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1201 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1202 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001203 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001204 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1205
1206 /*
1207 * If we have successfully processed data from a previous fetch
1208 * attempt, only fetch the data we don't already have.
1209 */
1210 if (prev_posn>0) {
1211 if (http_is_verbose)
1212 fprintf(stderr,
1213 "Resuming fetch of object %s at byte %ld\n",
1214 hex, prev_posn);
1215 sprintf(range, "Range: bytes=%ld-", prev_posn);
1216 range_header = curl_slist_append(range_header, range);
1217 curl_easy_setopt(freq->slot->curl,
1218 CURLOPT_HTTPHEADER, range_header);
1219 }
1220
1221 return freq;
1222
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001223abort:
1224 free(filename);
Tay Ray Chuanbb991902009-08-10 23:59:55 +08001225 free(freq->url);
Tay Ray Chuan5424bc52009-06-06 16:44:02 +08001226 free(freq);
1227 return NULL;
1228}
1229
1230void process_http_object_request(struct http_object_request *freq)
1231{
1232 if (freq->slot == NULL)
1233 return;
1234 freq->curl_result = freq->slot->curl_result;
1235 freq->http_code = freq->slot->http_code;
1236 freq->slot = NULL;
1237}
1238
1239int finish_http_object_request(struct http_object_request *freq)
1240{
1241 struct stat st;
1242
1243 close(freq->localfile);
1244 freq->localfile = -1;
1245
1246 process_http_object_request(freq);
1247
1248 if (freq->http_code == 416) {
1249 fprintf(stderr, "Warning: requested range invalid; we may already have all the data.\n");
1250 } else if (freq->curl_result != CURLE_OK) {
1251 if (stat(freq->tmpfile, &st) == 0)
1252 if (st.st_size == 0)
1253 unlink_or_warn(freq->tmpfile);
1254 return -1;
1255 }
1256
1257 git_inflate_end(&freq->stream);
1258 git_SHA1_Final(freq->real_sha1, &freq->c);
1259 if (freq->zret != Z_STREAM_END) {
1260 unlink_or_warn(freq->tmpfile);
1261 return -1;
1262 }
1263 if (hashcmp(freq->sha1, freq->real_sha1)) {
1264 unlink_or_warn(freq->tmpfile);
1265 return -1;
1266 }
1267 freq->rename =
1268 move_temp_to_file(freq->tmpfile, freq->filename);
1269
1270 return freq->rename;
1271}
1272
1273void abort_http_object_request(struct http_object_request *freq)
1274{
1275 unlink_or_warn(freq->tmpfile);
1276
1277 release_http_object_request(freq);
1278}
1279
1280void release_http_object_request(struct http_object_request *freq)
1281{
1282 if (freq->localfile != -1) {
1283 close(freq->localfile);
1284 freq->localfile = -1;
1285 }
1286 if (freq->url != NULL) {
1287 free(freq->url);
1288 freq->url = NULL;
1289 }
1290 freq->slot = NULL;
1291}