4 #include "run-command.h"
6 #include "credential.h"
11 size_t http_post_buffer = 16 * LARGE_PACKET_MAX;
13 #if LIBCURL_VERSION_NUM >= 0x070a06
14 #define LIBCURL_CAN_HANDLE_AUTH_ANY
17 static int min_curl_sessions = 1;
18 static int curl_session_count;
20 static int max_requests = -1;
23 #ifndef NO_CURL_EASY_DUPHANDLE
24 static CURL *curl_default;
27 #define PREV_BUF_SIZE 4096
28 #define RANGE_HEADER_SIZE 30
30 char curl_errorstr[CURL_ERROR_SIZE];
32 static int curl_ssl_verify = -1;
33 static const char *ssl_cert;
34 #if LIBCURL_VERSION_NUM >= 0x070903
35 static const char *ssl_key;
37 #if LIBCURL_VERSION_NUM >= 0x070908
38 static const char *ssl_capath;
40 static const char *ssl_cainfo;
41 static long curl_low_speed_limit = -1;
42 static long curl_low_speed_time = -1;
43 static int curl_ftp_no_epsv;
44 static const char *curl_http_proxy;
45 static const char *curl_cookie_file;
46 static struct credential http_auth = CREDENTIAL_INIT;
47 static int http_proactive_auth;
48 static const char *user_agent;
50 #if LIBCURL_VERSION_NUM >= 0x071700
51 /* Use CURLOPT_KEYPASSWD as is */
52 #elif LIBCURL_VERSION_NUM >= 0x070903
53 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
55 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
58 static struct credential cert_auth = CREDENTIAL_INIT;
59 static int ssl_cert_password_required;
61 static struct curl_slist *pragma_header;
62 static struct curl_slist *no_pragma_header;
64 static struct active_request_slot *active_queue_head;
66 size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
68 size_t size = eltsize * nmemb;
69 struct buffer *buffer = buffer_;
71 if (size > buffer->buf.len - buffer->posn)
72 size = buffer->buf.len - buffer->posn;
73 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
80 curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
82 struct buffer *buffer = clientp;
88 case CURLIOCMD_RESTARTREAD:
93 return CURLIOE_UNKNOWNCMD;
98 size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
100 size_t size = eltsize * nmemb;
101 struct strbuf *buffer = buffer_;
103 strbuf_add(buffer, ptr, size);
107 size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf)
109 return eltsize * nmemb;
112 #ifdef USE_CURL_MULTI
113 static void process_curl_messages(void)
116 struct active_request_slot *slot;
117 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
119 while (curl_message != NULL) {
120 if (curl_message->msg == CURLMSG_DONE) {
121 int curl_result = curl_message->data.result;
122 slot = active_queue_head;
123 while (slot != NULL &&
124 slot->curl != curl_message->easy_handle)
127 curl_multi_remove_handle(curlm, slot->curl);
128 slot->curl_result = curl_result;
129 finish_active_slot(slot);
131 fprintf(stderr, "Received DONE message for unknown request!\n");
134 fprintf(stderr, "Unknown CURL message received: %d\n",
135 (int)curl_message->msg);
137 curl_message = curl_multi_info_read(curlm, &num_messages);
142 static int http_options(const char *var, const char *value, void *cb)
144 if (!strcmp("http.sslverify", var)) {
145 curl_ssl_verify = git_config_bool(var, value);
148 if (!strcmp("http.sslcert", var))
149 return git_config_string(&ssl_cert, var, value);
150 #if LIBCURL_VERSION_NUM >= 0x070903
151 if (!strcmp("http.sslkey", var))
152 return git_config_string(&ssl_key, var, value);
154 #if LIBCURL_VERSION_NUM >= 0x070908
155 if (!strcmp("http.sslcapath", var))
156 return git_config_string(&ssl_capath, var, value);
158 if (!strcmp("http.sslcainfo", var))
159 return git_config_string(&ssl_cainfo, var, value);
160 if (!strcmp("http.sslcertpasswordprotected", var)) {
161 if (git_config_bool(var, value))
162 ssl_cert_password_required = 1;
165 if (!strcmp("http.minsessions", var)) {
166 min_curl_sessions = git_config_int(var, value);
167 #ifndef USE_CURL_MULTI
168 if (min_curl_sessions > 1)
169 min_curl_sessions = 1;
173 #ifdef USE_CURL_MULTI
174 if (!strcmp("http.maxrequests", var)) {
175 max_requests = git_config_int(var, value);
179 if (!strcmp("http.lowspeedlimit", var)) {
180 curl_low_speed_limit = (long)git_config_int(var, value);
183 if (!strcmp("http.lowspeedtime", var)) {
184 curl_low_speed_time = (long)git_config_int(var, value);
188 if (!strcmp("http.noepsv", var)) {
189 curl_ftp_no_epsv = git_config_bool(var, value);
192 if (!strcmp("http.proxy", var))
193 return git_config_string(&curl_http_proxy, var, value);
195 if (!strcmp("http.cookiefile", var))
196 return git_config_string(&curl_cookie_file, var, value);
198 if (!strcmp("http.postbuffer", var)) {
199 http_post_buffer = git_config_int(var, value);
200 if (http_post_buffer < LARGE_PACKET_MAX)
201 http_post_buffer = LARGE_PACKET_MAX;
205 if (!strcmp("http.useragent", var))
206 return git_config_string(&user_agent, var, value);
208 /* Fall back on the default ones */
209 return git_default_config(var, value, cb);
212 static void init_curl_http_auth(CURL *result)
214 if (!http_auth.username)
217 credential_fill(&http_auth);
219 #if LIBCURL_VERSION_NUM >= 0x071301
220 curl_easy_setopt(result, CURLOPT_USERNAME, http_auth.username);
221 curl_easy_setopt(result, CURLOPT_PASSWORD, http_auth.password);
224 static struct strbuf up = STRBUF_INIT;
226 strbuf_addf(&up, "%s:%s",
227 http_auth.username, http_auth.password);
228 curl_easy_setopt(result, CURLOPT_USERPWD, up.buf);
233 static int has_cert_password(void)
235 if (ssl_cert == NULL || ssl_cert_password_required != 1)
237 if (!cert_auth.password) {
238 cert_auth.protocol = xstrdup("cert");
239 cert_auth.path = xstrdup(ssl_cert);
240 credential_fill(&cert_auth);
245 static CURL *get_curl_handle(void)
247 CURL *result = curl_easy_init();
249 if (!curl_ssl_verify) {
250 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
251 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
253 /* Verify authenticity of the peer's certificate */
254 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
255 /* The name in the cert must match whom we tried to connect */
256 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
259 #if LIBCURL_VERSION_NUM >= 0x070907
260 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
262 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
263 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
266 if (http_proactive_auth)
267 init_curl_http_auth(result);
269 if (ssl_cert != NULL)
270 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
271 if (has_cert_password())
272 curl_easy_setopt(result, CURLOPT_KEYPASSWD, cert_auth.password);
273 #if LIBCURL_VERSION_NUM >= 0x070903
275 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
277 #if LIBCURL_VERSION_NUM >= 0x070908
278 if (ssl_capath != NULL)
279 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
281 if (ssl_cainfo != NULL)
282 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
283 curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
285 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
286 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
287 curl_low_speed_limit);
288 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
289 curl_low_speed_time);
292 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
293 #if LIBCURL_VERSION_NUM >= 0x071301
294 curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
295 #elif LIBCURL_VERSION_NUM >= 0x071101
296 curl_easy_setopt(result, CURLOPT_POST301, 1);
299 if (getenv("GIT_CURL_VERBOSE"))
300 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
302 curl_easy_setopt(result, CURLOPT_USERAGENT,
303 user_agent ? user_agent : git_user_agent());
305 if (curl_ftp_no_epsv)
306 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
308 if (curl_http_proxy) {
309 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
310 curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
316 static void set_from_env(const char **var, const char *envname)
318 const char *val = getenv(envname);
323 void http_init(struct remote *remote, const char *url, int proactive_auth)
325 char *low_speed_limit;
326 char *low_speed_time;
330 git_config(http_options, NULL);
332 curl_global_init(CURL_GLOBAL_ALL);
334 http_proactive_auth = proactive_auth;
336 if (remote && remote->http_proxy)
337 curl_http_proxy = xstrdup(remote->http_proxy);
339 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
340 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
342 #ifdef USE_CURL_MULTI
344 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
345 if (http_max_requests != NULL)
346 max_requests = atoi(http_max_requests);
349 curlm = curl_multi_init();
351 fprintf(stderr, "Error creating curl multi handle.\n");
356 if (getenv("GIT_SSL_NO_VERIFY"))
359 set_from_env(&ssl_cert, "GIT_SSL_CERT");
360 #if LIBCURL_VERSION_NUM >= 0x070903
361 set_from_env(&ssl_key, "GIT_SSL_KEY");
363 #if LIBCURL_VERSION_NUM >= 0x070908
364 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
366 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
368 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
370 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
371 if (low_speed_limit != NULL)
372 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
373 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
374 if (low_speed_time != NULL)
375 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
377 if (curl_ssl_verify == -1)
380 curl_session_count = 0;
381 #ifdef USE_CURL_MULTI
382 if (max_requests < 1)
383 max_requests = DEFAULT_MAX_REQUESTS;
386 if (getenv("GIT_CURL_FTP_NO_EPSV"))
387 curl_ftp_no_epsv = 1;
390 credential_from_url(&http_auth, url);
391 if (!ssl_cert_password_required &&
392 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
393 !prefixcmp(url, "https://"))
394 ssl_cert_password_required = 1;
397 #ifndef NO_CURL_EASY_DUPHANDLE
398 curl_default = get_curl_handle();
402 void http_cleanup(void)
404 struct active_request_slot *slot = active_queue_head;
406 while (slot != NULL) {
407 struct active_request_slot *next = slot->next;
408 if (slot->curl != NULL) {
409 #ifdef USE_CURL_MULTI
410 curl_multi_remove_handle(curlm, slot->curl);
412 curl_easy_cleanup(slot->curl);
417 active_queue_head = NULL;
419 #ifndef NO_CURL_EASY_DUPHANDLE
420 curl_easy_cleanup(curl_default);
423 #ifdef USE_CURL_MULTI
424 curl_multi_cleanup(curlm);
426 curl_global_cleanup();
428 curl_slist_free_all(pragma_header);
429 pragma_header = NULL;
431 curl_slist_free_all(no_pragma_header);
432 no_pragma_header = NULL;
434 if (curl_http_proxy) {
435 free((void *)curl_http_proxy);
436 curl_http_proxy = NULL;
439 if (cert_auth.password != NULL) {
440 memset(cert_auth.password, 0, strlen(cert_auth.password));
441 free(cert_auth.password);
442 cert_auth.password = NULL;
444 ssl_cert_password_required = 0;
447 struct active_request_slot *get_active_slot(void)
449 struct active_request_slot *slot = active_queue_head;
450 struct active_request_slot *newslot;
452 #ifdef USE_CURL_MULTI
455 /* Wait for a slot to open up if the queue is full */
456 while (active_requests >= max_requests) {
457 curl_multi_perform(curlm, &num_transfers);
458 if (num_transfers < active_requests)
459 process_curl_messages();
463 while (slot != NULL && slot->in_use)
467 newslot = xmalloc(sizeof(*newslot));
468 newslot->curl = NULL;
470 newslot->next = NULL;
472 slot = active_queue_head;
474 active_queue_head = newslot;
476 while (slot->next != NULL)
478 slot->next = newslot;
483 if (slot->curl == NULL) {
484 #ifdef NO_CURL_EASY_DUPHANDLE
485 slot->curl = get_curl_handle();
487 slot->curl = curl_easy_duphandle(curl_default);
489 curl_session_count++;
494 slot->results = NULL;
495 slot->finished = NULL;
496 slot->callback_data = NULL;
497 slot->callback_func = NULL;
498 curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file);
499 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
500 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
501 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
502 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
503 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
504 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
505 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
506 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
507 if (http_auth.password)
508 init_curl_http_auth(slot->curl);
513 int start_active_slot(struct active_request_slot *slot)
515 #ifdef USE_CURL_MULTI
516 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
519 if (curlm_result != CURLM_OK &&
520 curlm_result != CURLM_CALL_MULTI_PERFORM) {
527 * We know there must be something to do, since we just added
530 curl_multi_perform(curlm, &num_transfers);
535 #ifdef USE_CURL_MULTI
539 struct fill_chain *next;
542 static struct fill_chain *fill_cfg;
544 void add_fill_function(void *data, int (*fill)(void *))
546 struct fill_chain *new = xmalloc(sizeof(*new));
547 struct fill_chain **linkp = &fill_cfg;
552 linkp = &(*linkp)->next;
556 void fill_active_slots(void)
558 struct active_request_slot *slot = active_queue_head;
560 while (active_requests < max_requests) {
561 struct fill_chain *fill;
562 for (fill = fill_cfg; fill; fill = fill->next)
563 if (fill->fill(fill->data))
570 while (slot != NULL) {
571 if (!slot->in_use && slot->curl != NULL
572 && curl_session_count > min_curl_sessions) {
573 curl_easy_cleanup(slot->curl);
575 curl_session_count--;
581 void step_active_slots(void)
584 CURLMcode curlm_result;
587 curlm_result = curl_multi_perform(curlm, &num_transfers);
588 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
589 if (num_transfers < active_requests) {
590 process_curl_messages();
596 void run_active_slot(struct active_request_slot *slot)
598 #ifdef USE_CURL_MULTI
603 struct timeval select_timeout;
606 slot->finished = &finished;
611 #if LIBCURL_VERSION_NUM >= 0x070f04
613 curl_multi_timeout(curlm, &curl_timeout);
614 if (curl_timeout == 0) {
616 } else if (curl_timeout == -1) {
617 select_timeout.tv_sec = 0;
618 select_timeout.tv_usec = 50000;
620 select_timeout.tv_sec = curl_timeout / 1000;
621 select_timeout.tv_usec = (curl_timeout % 1000) * 1000;
624 select_timeout.tv_sec = 0;
625 select_timeout.tv_usec = 50000;
632 curl_multi_fdset(curlm, &readfds, &writefds, &excfds, &max_fd);
635 * It can happen that curl_multi_timeout returns a pathologically
636 * long timeout when curl_multi_fdset returns no file descriptors
637 * to read. See commit message for more details.
640 (select_timeout.tv_sec > 0 ||
641 select_timeout.tv_usec > 50000)) {
642 select_timeout.tv_sec = 0;
643 select_timeout.tv_usec = 50000;
646 select(max_fd+1, &readfds, &writefds, &excfds, &select_timeout);
650 while (slot->in_use) {
651 slot->curl_result = curl_easy_perform(slot->curl);
652 finish_active_slot(slot);
657 static void closedown_active_slot(struct active_request_slot *slot)
663 static void release_active_slot(struct active_request_slot *slot)
665 closedown_active_slot(slot);
666 if (slot->curl && curl_session_count > min_curl_sessions) {
667 #ifdef USE_CURL_MULTI
668 curl_multi_remove_handle(curlm, slot->curl);
670 curl_easy_cleanup(slot->curl);
672 curl_session_count--;
674 #ifdef USE_CURL_MULTI
679 void finish_active_slot(struct active_request_slot *slot)
681 closedown_active_slot(slot);
682 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
684 if (slot->finished != NULL)
685 (*slot->finished) = 1;
687 /* Store slot results so they can be read after the slot is reused */
688 if (slot->results != NULL) {
689 slot->results->curl_result = slot->curl_result;
690 slot->results->http_code = slot->http_code;
693 /* Run callback if appropriate */
694 if (slot->callback_func != NULL)
695 slot->callback_func(slot->callback_data);
698 void finish_all_active_slots(void)
700 struct active_request_slot *slot = active_queue_head;
704 run_active_slot(slot);
705 slot = active_queue_head;
711 /* Helpers for modifying and creating URLs */
712 static inline int needs_quote(int ch)
714 if (((ch >= 'A') && (ch <= 'Z'))
715 || ((ch >= 'a') && (ch <= 'z'))
716 || ((ch >= '0') && (ch <= '9'))
724 static char *quote_ref_url(const char *base, const char *ref)
726 struct strbuf buf = STRBUF_INIT;
730 end_url_with_slash(&buf, base);
732 for (cp = ref; (ch = *cp) != 0; cp++)
734 strbuf_addf(&buf, "%%%02x", ch);
736 strbuf_addch(&buf, *cp);
738 return strbuf_detach(&buf, NULL);
741 void append_remote_object_url(struct strbuf *buf, const char *url,
743 int only_two_digit_prefix)
745 end_url_with_slash(buf, url);
747 strbuf_addf(buf, "objects/%.*s/", 2, hex);
748 if (!only_two_digit_prefix)
749 strbuf_addf(buf, "%s", hex+2);
752 char *get_remote_object_url(const char *url, const char *hex,
753 int only_two_digit_prefix)
755 struct strbuf buf = STRBUF_INIT;
756 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
757 return strbuf_detach(&buf, NULL);
760 int handle_curl_result(struct active_request_slot *slot,
761 struct slot_results *results)
763 if (results->curl_result == CURLE_OK) {
764 credential_approve(&http_auth);
766 } else if (missing_target(results))
767 return HTTP_MISSING_TARGET;
768 else if (results->http_code == 401) {
769 if (http_auth.username && http_auth.password) {
770 credential_reject(&http_auth);
773 credential_fill(&http_auth);
774 init_curl_http_auth(slot->curl);
778 #if LIBCURL_VERSION_NUM >= 0x070c00
779 if (!curl_errorstr[0])
780 strlcpy(curl_errorstr,
781 curl_easy_strerror(results->curl_result),
782 sizeof(curl_errorstr));
788 /* http_request() targets */
789 #define HTTP_REQUEST_STRBUF 0
790 #define HTTP_REQUEST_FILE 1
792 static int http_request(const char *url, void *result, int target, int options)
794 struct active_request_slot *slot;
795 struct slot_results results;
796 struct curl_slist *headers = NULL;
797 struct strbuf buf = STRBUF_INIT;
800 slot = get_active_slot();
801 slot->results = &results;
802 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
804 if (result == NULL) {
805 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
807 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
808 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
810 if (target == HTTP_REQUEST_FILE) {
811 long posn = ftell(result);
812 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
815 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
816 headers = curl_slist_append(headers, buf.buf);
820 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
824 strbuf_addstr(&buf, "Pragma:");
825 if (options & HTTP_NO_CACHE)
826 strbuf_addstr(&buf, " no-cache");
828 headers = curl_slist_append(headers, buf.buf);
830 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
831 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
832 curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip");
834 if (start_active_slot(slot)) {
835 run_active_slot(slot);
836 ret = handle_curl_result(slot, &results);
838 error("Unable to start HTTP request for %s", url);
839 ret = HTTP_START_FAILED;
842 curl_slist_free_all(headers);
843 strbuf_release(&buf);
848 static int http_request_reauth(const char *url, void *result, int target,
851 int ret = http_request(url, result, target, options);
852 if (ret != HTTP_REAUTH)
854 return http_request(url, result, target, options);
857 int http_get_strbuf(const char *url, struct strbuf *result, int options)
859 return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options);
863 * Downloads a URL and stores the result in the given file.
865 * If a previous interrupted download is detected (i.e. a previous temporary
866 * file is still around) the download is resumed.
868 static int http_get_file(const char *url, const char *filename, int options)
871 struct strbuf tmpfile = STRBUF_INIT;
874 strbuf_addf(&tmpfile, "%s.temp", filename);
875 result = fopen(tmpfile.buf, "a");
877 error("Unable to open local file %s", tmpfile.buf);
882 ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options);
885 if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
888 strbuf_release(&tmpfile);
892 int http_error(const char *url, int ret)
894 /* http_request has already handled HTTP_START_FAILED. */
895 if (ret != HTTP_START_FAILED)
896 error("%s while accessing %s", curl_errorstr, url);
901 int http_fetch_ref(const char *base, struct ref *ref)
904 struct strbuf buffer = STRBUF_INIT;
907 url = quote_ref_url(base, ref->name);
908 if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
909 strbuf_rtrim(&buffer);
910 if (buffer.len == 40)
911 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
912 else if (!prefixcmp(buffer.buf, "ref: ")) {
913 ref->symref = xstrdup(buffer.buf + 5);
918 strbuf_release(&buffer);
923 /* Helpers for fetching packs */
924 static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
927 struct strbuf buf = STRBUF_INIT;
930 fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
932 end_url_with_slash(&buf, base_url);
933 strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
934 url = strbuf_detach(&buf, NULL);
936 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
937 tmp = strbuf_detach(&buf, NULL);
939 if (http_get_file(url, tmp, 0) != HTTP_OK) {
940 error("Unable to get pack index %s", url);
949 static int fetch_and_setup_pack_index(struct packed_git **packs_head,
950 unsigned char *sha1, const char *base_url)
952 struct packed_git *new_pack;
953 char *tmp_idx = NULL;
956 if (has_pack_index(sha1)) {
957 new_pack = parse_pack_index(sha1, NULL);
959 return -1; /* parse_pack_index() already issued error message */
963 tmp_idx = fetch_pack_index(sha1, base_url);
967 new_pack = parse_pack_index(sha1, tmp_idx);
972 return -1; /* parse_pack_index() already issued error message */
975 ret = verify_pack_index(new_pack);
977 close_pack_index(new_pack);
978 ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1));
985 new_pack->next = *packs_head;
986 *packs_head = new_pack;
990 int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
994 struct strbuf buf = STRBUF_INIT;
995 unsigned char sha1[20];
997 end_url_with_slash(&buf, base_url);
998 strbuf_addstr(&buf, "objects/info/packs");
999 url = strbuf_detach(&buf, NULL);
1001 ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
1006 while (i < buf.len) {
1010 if (i + 52 <= buf.len &&
1011 !prefixcmp(data + i, " pack-") &&
1012 !prefixcmp(data + i + 46, ".pack\n")) {
1013 get_sha1_hex(data + i + 6, sha1);
1014 fetch_and_setup_pack_index(packs_head, sha1,
1020 while (i < buf.len && data[i] != '\n')
1031 void release_http_pack_request(struct http_pack_request *preq)
1033 if (preq->packfile != NULL) {
1034 fclose(preq->packfile);
1035 preq->packfile = NULL;
1037 if (preq->range_header != NULL) {
1038 curl_slist_free_all(preq->range_header);
1039 preq->range_header = NULL;
1045 int finish_http_pack_request(struct http_pack_request *preq)
1047 struct packed_git **lst;
1048 struct packed_git *p = preq->target;
1050 struct child_process ip;
1051 const char *ip_argv[8];
1053 close_pack_index(p);
1055 fclose(preq->packfile);
1056 preq->packfile = NULL;
1060 lst = &((*lst)->next);
1061 *lst = (*lst)->next;
1063 tmp_idx = xstrdup(preq->tmpfile);
1064 strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"),
1067 ip_argv[0] = "index-pack";
1069 ip_argv[2] = tmp_idx;
1070 ip_argv[3] = preq->tmpfile;
1073 memset(&ip, 0, sizeof(ip));
1079 if (run_command(&ip)) {
1080 unlink(preq->tmpfile);
1086 unlink(sha1_pack_index_name(p->sha1));
1088 if (move_temp_to_file(preq->tmpfile, sha1_pack_name(p->sha1))
1089 || move_temp_to_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
1094 install_packed_git(p);
1099 struct http_pack_request *new_http_pack_request(
1100 struct packed_git *target, const char *base_url)
1103 char range[RANGE_HEADER_SIZE];
1104 struct strbuf buf = STRBUF_INIT;
1105 struct http_pack_request *preq;
1107 preq = xcalloc(1, sizeof(*preq));
1108 preq->target = target;
1110 end_url_with_slash(&buf, base_url);
1111 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1112 sha1_to_hex(target->sha1));
1113 preq->url = strbuf_detach(&buf, NULL);
1115 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
1116 sha1_pack_name(target->sha1));
1117 preq->packfile = fopen(preq->tmpfile, "a");
1118 if (!preq->packfile) {
1119 error("Unable to open local file %s for pack",
1124 preq->slot = get_active_slot();
1125 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1126 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
1127 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
1128 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1132 * If there is data present from a previous transfer attempt,
1133 * resume where it left off
1135 prev_posn = ftell(preq->packfile);
1137 if (http_is_verbose)
1139 "Resuming fetch of pack %s at byte %ld\n",
1140 sha1_to_hex(target->sha1), prev_posn);
1141 sprintf(range, "Range: bytes=%ld-", prev_posn);
1142 preq->range_header = curl_slist_append(NULL, range);
1143 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1144 preq->range_header);
1155 /* Helpers for fetching objects (loose) */
1156 static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
1159 unsigned char expn[4096];
1160 size_t size = eltsize * nmemb;
1162 struct http_object_request *freq =
1163 (struct http_object_request *)data;
1165 ssize_t retval = xwrite(freq->localfile,
1166 (char *) ptr + posn, size - posn);
1170 } while (posn < size);
1172 freq->stream.avail_in = size;
1173 freq->stream.next_in = (void *)ptr;
1175 freq->stream.next_out = expn;
1176 freq->stream.avail_out = sizeof(expn);
1177 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1178 git_SHA1_Update(&freq->c, expn,
1179 sizeof(expn) - freq->stream.avail_out);
1180 } while (freq->stream.avail_in && freq->zret == Z_OK);
1184 struct http_object_request *new_http_object_request(const char *base_url,
1185 unsigned char *sha1)
1187 char *hex = sha1_to_hex(sha1);
1189 char prevfile[PATH_MAX];
1191 char prev_buf[PREV_BUF_SIZE];
1192 ssize_t prev_read = 0;
1194 char range[RANGE_HEADER_SIZE];
1195 struct curl_slist *range_header = NULL;
1196 struct http_object_request *freq;
1198 freq = xcalloc(1, sizeof(*freq));
1199 hashcpy(freq->sha1, sha1);
1200 freq->localfile = -1;
1202 filename = sha1_file_name(sha1);
1203 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1204 "%s.temp", filename);
1206 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1207 unlink_or_warn(prevfile);
1208 rename(freq->tmpfile, prevfile);
1209 unlink_or_warn(freq->tmpfile);
1211 if (freq->localfile != -1)
1212 error("fd leakage in start: %d", freq->localfile);
1213 freq->localfile = open(freq->tmpfile,
1214 O_WRONLY | O_CREAT | O_EXCL, 0666);
1216 * This could have failed due to the "lazy directory creation";
1217 * try to mkdir the last path component.
1219 if (freq->localfile < 0 && errno == ENOENT) {
1220 char *dir = strrchr(freq->tmpfile, '/');
1223 mkdir(freq->tmpfile, 0777);
1226 freq->localfile = open(freq->tmpfile,
1227 O_WRONLY | O_CREAT | O_EXCL, 0666);
1230 if (freq->localfile < 0) {
1231 error("Couldn't create temporary file %s: %s",
1232 freq->tmpfile, strerror(errno));
1236 git_inflate_init(&freq->stream);
1238 git_SHA1_Init(&freq->c);
1240 freq->url = get_remote_object_url(base_url, hex, 0);
1243 * If a previous temp file is present, process what was already
1246 prevlocal = open(prevfile, O_RDONLY);
1247 if (prevlocal != -1) {
1249 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1251 if (fwrite_sha1_file(prev_buf,
1254 freq) == prev_read) {
1255 prev_posn += prev_read;
1260 } while (prev_read > 0);
1263 unlink_or_warn(prevfile);
1266 * Reset inflate/SHA1 if there was an error reading the previous temp
1267 * file; also rewind to the beginning of the local file.
1269 if (prev_read == -1) {
1270 memset(&freq->stream, 0, sizeof(freq->stream));
1271 git_inflate_init(&freq->stream);
1272 git_SHA1_Init(&freq->c);
1275 lseek(freq->localfile, 0, SEEK_SET);
1276 if (ftruncate(freq->localfile, 0) < 0) {
1277 error("Couldn't truncate temporary file %s: %s",
1278 freq->tmpfile, strerror(errno));
1284 freq->slot = get_active_slot();
1286 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1287 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1288 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
1289 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
1290 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1293 * If we have successfully processed data from a previous fetch
1294 * attempt, only fetch the data we don't already have.
1297 if (http_is_verbose)
1299 "Resuming fetch of object %s at byte %ld\n",
1301 sprintf(range, "Range: bytes=%ld-", prev_posn);
1302 range_header = curl_slist_append(range_header, range);
1303 curl_easy_setopt(freq->slot->curl,
1304 CURLOPT_HTTPHEADER, range_header);
1315 void process_http_object_request(struct http_object_request *freq)
1317 if (freq->slot == NULL)
1319 freq->curl_result = freq->slot->curl_result;
1320 freq->http_code = freq->slot->http_code;
1324 int finish_http_object_request(struct http_object_request *freq)
1328 close(freq->localfile);
1329 freq->localfile = -1;
1331 process_http_object_request(freq);
1333 if (freq->http_code == 416) {
1334 warning("requested range invalid; we may already have all the data.");
1335 } else if (freq->curl_result != CURLE_OK) {
1336 if (stat(freq->tmpfile, &st) == 0)
1337 if (st.st_size == 0)
1338 unlink_or_warn(freq->tmpfile);
1342 git_inflate_end(&freq->stream);
1343 git_SHA1_Final(freq->real_sha1, &freq->c);
1344 if (freq->zret != Z_STREAM_END) {
1345 unlink_or_warn(freq->tmpfile);
1348 if (hashcmp(freq->sha1, freq->real_sha1)) {
1349 unlink_or_warn(freq->tmpfile);
1353 move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1));
1355 return freq->rename;
1358 void abort_http_object_request(struct http_object_request *freq)
1360 unlink_or_warn(freq->tmpfile);
1362 release_http_object_request(freq);
1365 void release_http_object_request(struct http_object_request *freq)
1367 if (freq->localfile != -1) {
1368 close(freq->localfile);
1369 freq->localfile = -1;
1371 if (freq->url != NULL) {
1375 if (freq->slot != NULL) {
1376 freq->slot->callback_func = NULL;
1377 freq->slot->callback_data = NULL;
1378 release_active_slot(freq->slot);