4 #include "run-command.h"
6 #include "credential.h"
10 size_t http_post_buffer = 16 * LARGE_PACKET_MAX;
12 #if LIBCURL_VERSION_NUM >= 0x070a06
13 #define LIBCURL_CAN_HANDLE_AUTH_ANY
16 static int min_curl_sessions = 1;
17 static int curl_session_count;
19 static int max_requests = -1;
22 #ifndef NO_CURL_EASY_DUPHANDLE
23 static CURL *curl_default;
26 #define PREV_BUF_SIZE 4096
27 #define RANGE_HEADER_SIZE 30
29 char curl_errorstr[CURL_ERROR_SIZE];
31 static int curl_ssl_verify = -1;
32 static const char *ssl_cert;
33 #if LIBCURL_VERSION_NUM >= 0x070903
34 static const char *ssl_key;
36 #if LIBCURL_VERSION_NUM >= 0x070908
37 static const char *ssl_capath;
39 static const char *ssl_cainfo;
40 static long curl_low_speed_limit = -1;
41 static long curl_low_speed_time = -1;
42 static int curl_ftp_no_epsv;
43 static const char *curl_http_proxy;
44 static const char *curl_cookie_file;
45 static struct credential http_auth = CREDENTIAL_INIT;
46 static int http_proactive_auth;
47 static const char *user_agent;
49 #if LIBCURL_VERSION_NUM >= 0x071700
50 /* Use CURLOPT_KEYPASSWD as is */
51 #elif LIBCURL_VERSION_NUM >= 0x070903
52 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
54 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
57 static struct credential cert_auth = CREDENTIAL_INIT;
58 static int ssl_cert_password_required;
60 static struct curl_slist *pragma_header;
61 static struct curl_slist *no_pragma_header;
63 static struct active_request_slot *active_queue_head;
65 size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
67 size_t size = eltsize * nmemb;
68 struct buffer *buffer = buffer_;
70 if (size > buffer->buf.len - buffer->posn)
71 size = buffer->buf.len - buffer->posn;
72 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
79 curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
81 struct buffer *buffer = clientp;
87 case CURLIOCMD_RESTARTREAD:
92 return CURLIOE_UNKNOWNCMD;
97 size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
99 size_t size = eltsize * nmemb;
100 struct strbuf *buffer = buffer_;
102 strbuf_add(buffer, ptr, size);
106 size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf)
108 return eltsize * nmemb;
111 #ifdef USE_CURL_MULTI
112 static void process_curl_messages(void)
115 struct active_request_slot *slot;
116 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
118 while (curl_message != NULL) {
119 if (curl_message->msg == CURLMSG_DONE) {
120 int curl_result = curl_message->data.result;
121 slot = active_queue_head;
122 while (slot != NULL &&
123 slot->curl != curl_message->easy_handle)
126 curl_multi_remove_handle(curlm, slot->curl);
127 slot->curl_result = curl_result;
128 finish_active_slot(slot);
130 fprintf(stderr, "Received DONE message for unknown request!\n");
133 fprintf(stderr, "Unknown CURL message received: %d\n",
134 (int)curl_message->msg);
136 curl_message = curl_multi_info_read(curlm, &num_messages);
141 static int http_options(const char *var, const char *value, void *cb)
143 if (!strcmp("http.sslverify", var)) {
144 curl_ssl_verify = git_config_bool(var, value);
147 if (!strcmp("http.sslcert", var))
148 return git_config_string(&ssl_cert, var, value);
149 #if LIBCURL_VERSION_NUM >= 0x070903
150 if (!strcmp("http.sslkey", var))
151 return git_config_string(&ssl_key, var, value);
153 #if LIBCURL_VERSION_NUM >= 0x070908
154 if (!strcmp("http.sslcapath", var))
155 return git_config_string(&ssl_capath, var, value);
157 if (!strcmp("http.sslcainfo", var))
158 return git_config_string(&ssl_cainfo, var, value);
159 if (!strcmp("http.sslcertpasswordprotected", var)) {
160 if (git_config_bool(var, value))
161 ssl_cert_password_required = 1;
164 if (!strcmp("http.minsessions", var)) {
165 min_curl_sessions = git_config_int(var, value);
166 #ifndef USE_CURL_MULTI
167 if (min_curl_sessions > 1)
168 min_curl_sessions = 1;
172 #ifdef USE_CURL_MULTI
173 if (!strcmp("http.maxrequests", var)) {
174 max_requests = git_config_int(var, value);
178 if (!strcmp("http.lowspeedlimit", var)) {
179 curl_low_speed_limit = (long)git_config_int(var, value);
182 if (!strcmp("http.lowspeedtime", var)) {
183 curl_low_speed_time = (long)git_config_int(var, value);
187 if (!strcmp("http.noepsv", var)) {
188 curl_ftp_no_epsv = git_config_bool(var, value);
191 if (!strcmp("http.proxy", var))
192 return git_config_string(&curl_http_proxy, var, value);
194 if (!strcmp("http.cookiefile", var))
195 return git_config_string(&curl_cookie_file, var, value);
197 if (!strcmp("http.postbuffer", var)) {
198 http_post_buffer = git_config_int(var, value);
199 if (http_post_buffer < LARGE_PACKET_MAX)
200 http_post_buffer = LARGE_PACKET_MAX;
204 if (!strcmp("http.useragent", var))
205 return git_config_string(&user_agent, var, value);
207 /* Fall back on the default ones */
208 return git_default_config(var, value, cb);
211 static void init_curl_http_auth(CURL *result)
213 if (!http_auth.username)
216 credential_fill(&http_auth);
218 #if LIBCURL_VERSION_NUM >= 0x071301
219 curl_easy_setopt(result, CURLOPT_USERNAME, http_auth.username);
220 curl_easy_setopt(result, CURLOPT_PASSWORD, http_auth.password);
223 static struct strbuf up = STRBUF_INIT;
225 strbuf_addf(&up, "%s:%s",
226 http_auth.username, http_auth.password);
227 curl_easy_setopt(result, CURLOPT_USERPWD, up.buf);
232 static int has_cert_password(void)
234 if (ssl_cert == NULL || ssl_cert_password_required != 1)
236 if (!cert_auth.password) {
237 cert_auth.protocol = xstrdup("cert");
238 cert_auth.path = xstrdup(ssl_cert);
239 credential_fill(&cert_auth);
244 static CURL *get_curl_handle(void)
246 CURL *result = curl_easy_init();
248 if (!curl_ssl_verify) {
249 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
250 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
252 /* Verify authenticity of the peer's certificate */
253 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
254 /* The name in the cert must match whom we tried to connect */
255 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
258 #if LIBCURL_VERSION_NUM >= 0x070907
259 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
261 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
262 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
265 if (http_proactive_auth)
266 init_curl_http_auth(result);
268 if (ssl_cert != NULL)
269 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
270 if (has_cert_password())
271 curl_easy_setopt(result, CURLOPT_KEYPASSWD, cert_auth.password);
272 #if LIBCURL_VERSION_NUM >= 0x070903
274 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
276 #if LIBCURL_VERSION_NUM >= 0x070908
277 if (ssl_capath != NULL)
278 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
280 if (ssl_cainfo != NULL)
281 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
282 curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
284 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
285 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
286 curl_low_speed_limit);
287 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
288 curl_low_speed_time);
291 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
292 #if LIBCURL_VERSION_NUM >= 0x071301
293 curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
294 #elif LIBCURL_VERSION_NUM >= 0x071101
295 curl_easy_setopt(result, CURLOPT_POST301, 1);
298 if (getenv("GIT_CURL_VERBOSE"))
299 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
301 curl_easy_setopt(result, CURLOPT_USERAGENT,
302 user_agent ? user_agent : GIT_HTTP_USER_AGENT);
304 if (curl_ftp_no_epsv)
305 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
307 if (curl_http_proxy) {
308 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
309 curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
315 static void set_from_env(const char **var, const char *envname)
317 const char *val = getenv(envname);
322 void http_init(struct remote *remote, const char *url, int proactive_auth)
324 char *low_speed_limit;
325 char *low_speed_time;
329 git_config(http_options, NULL);
331 curl_global_init(CURL_GLOBAL_ALL);
333 http_proactive_auth = proactive_auth;
335 if (remote && remote->http_proxy)
336 curl_http_proxy = xstrdup(remote->http_proxy);
338 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
339 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
341 #ifdef USE_CURL_MULTI
343 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
344 if (http_max_requests != NULL)
345 max_requests = atoi(http_max_requests);
348 curlm = curl_multi_init();
350 fprintf(stderr, "Error creating curl multi handle.\n");
355 if (getenv("GIT_SSL_NO_VERIFY"))
358 set_from_env(&ssl_cert, "GIT_SSL_CERT");
359 #if LIBCURL_VERSION_NUM >= 0x070903
360 set_from_env(&ssl_key, "GIT_SSL_KEY");
362 #if LIBCURL_VERSION_NUM >= 0x070908
363 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
365 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
367 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
369 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
370 if (low_speed_limit != NULL)
371 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
372 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
373 if (low_speed_time != NULL)
374 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
376 if (curl_ssl_verify == -1)
379 curl_session_count = 0;
380 #ifdef USE_CURL_MULTI
381 if (max_requests < 1)
382 max_requests = DEFAULT_MAX_REQUESTS;
385 if (getenv("GIT_CURL_FTP_NO_EPSV"))
386 curl_ftp_no_epsv = 1;
389 credential_from_url(&http_auth, url);
390 if (!ssl_cert_password_required &&
391 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
392 !prefixcmp(url, "https://"))
393 ssl_cert_password_required = 1;
396 #ifndef NO_CURL_EASY_DUPHANDLE
397 curl_default = get_curl_handle();
401 void http_cleanup(void)
403 struct active_request_slot *slot = active_queue_head;
405 while (slot != NULL) {
406 struct active_request_slot *next = slot->next;
407 if (slot->curl != NULL) {
408 #ifdef USE_CURL_MULTI
409 curl_multi_remove_handle(curlm, slot->curl);
411 curl_easy_cleanup(slot->curl);
416 active_queue_head = NULL;
418 #ifndef NO_CURL_EASY_DUPHANDLE
419 curl_easy_cleanup(curl_default);
422 #ifdef USE_CURL_MULTI
423 curl_multi_cleanup(curlm);
425 curl_global_cleanup();
427 curl_slist_free_all(pragma_header);
428 pragma_header = NULL;
430 curl_slist_free_all(no_pragma_header);
431 no_pragma_header = NULL;
433 if (curl_http_proxy) {
434 free((void *)curl_http_proxy);
435 curl_http_proxy = NULL;
438 if (cert_auth.password != NULL) {
439 memset(cert_auth.password, 0, strlen(cert_auth.password));
440 free(cert_auth.password);
441 cert_auth.password = NULL;
443 ssl_cert_password_required = 0;
446 struct active_request_slot *get_active_slot(void)
448 struct active_request_slot *slot = active_queue_head;
449 struct active_request_slot *newslot;
451 #ifdef USE_CURL_MULTI
454 /* Wait for a slot to open up if the queue is full */
455 while (active_requests >= max_requests) {
456 curl_multi_perform(curlm, &num_transfers);
457 if (num_transfers < active_requests)
458 process_curl_messages();
462 while (slot != NULL && slot->in_use)
466 newslot = xmalloc(sizeof(*newslot));
467 newslot->curl = NULL;
469 newslot->next = NULL;
471 slot = active_queue_head;
473 active_queue_head = newslot;
475 while (slot->next != NULL)
477 slot->next = newslot;
482 if (slot->curl == NULL) {
483 #ifdef NO_CURL_EASY_DUPHANDLE
484 slot->curl = get_curl_handle();
486 slot->curl = curl_easy_duphandle(curl_default);
488 curl_session_count++;
493 slot->results = NULL;
494 slot->finished = NULL;
495 slot->callback_data = NULL;
496 slot->callback_func = NULL;
497 curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file);
498 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
499 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
500 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
501 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
502 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
503 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
504 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
505 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
506 if (http_auth.password)
507 init_curl_http_auth(slot->curl);
512 int start_active_slot(struct active_request_slot *slot)
514 #ifdef USE_CURL_MULTI
515 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
518 if (curlm_result != CURLM_OK &&
519 curlm_result != CURLM_CALL_MULTI_PERFORM) {
526 * We know there must be something to do, since we just added
529 curl_multi_perform(curlm, &num_transfers);
534 #ifdef USE_CURL_MULTI
538 struct fill_chain *next;
541 static struct fill_chain *fill_cfg;
543 void add_fill_function(void *data, int (*fill)(void *))
545 struct fill_chain *new = xmalloc(sizeof(*new));
546 struct fill_chain **linkp = &fill_cfg;
551 linkp = &(*linkp)->next;
555 void fill_active_slots(void)
557 struct active_request_slot *slot = active_queue_head;
559 while (active_requests < max_requests) {
560 struct fill_chain *fill;
561 for (fill = fill_cfg; fill; fill = fill->next)
562 if (fill->fill(fill->data))
569 while (slot != NULL) {
570 if (!slot->in_use && slot->curl != NULL
571 && curl_session_count > min_curl_sessions) {
572 curl_easy_cleanup(slot->curl);
574 curl_session_count--;
580 void step_active_slots(void)
583 CURLMcode curlm_result;
586 curlm_result = curl_multi_perform(curlm, &num_transfers);
587 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
588 if (num_transfers < active_requests) {
589 process_curl_messages();
595 void run_active_slot(struct active_request_slot *slot)
597 #ifdef USE_CURL_MULTI
602 struct timeval select_timeout;
605 slot->finished = &finished;
610 #if LIBCURL_VERSION_NUM >= 0x070f04
612 curl_multi_timeout(curlm, &curl_timeout);
613 if (curl_timeout == 0) {
615 } else if (curl_timeout == -1) {
616 select_timeout.tv_sec = 0;
617 select_timeout.tv_usec = 50000;
619 select_timeout.tv_sec = curl_timeout / 1000;
620 select_timeout.tv_usec = (curl_timeout % 1000) * 1000;
623 select_timeout.tv_sec = 0;
624 select_timeout.tv_usec = 50000;
631 curl_multi_fdset(curlm, &readfds, &writefds, &excfds, &max_fd);
633 select(max_fd+1, &readfds, &writefds, &excfds, &select_timeout);
637 while (slot->in_use) {
638 slot->curl_result = curl_easy_perform(slot->curl);
639 finish_active_slot(slot);
644 static void closedown_active_slot(struct active_request_slot *slot)
650 static void release_active_slot(struct active_request_slot *slot)
652 closedown_active_slot(slot);
653 if (slot->curl && curl_session_count > min_curl_sessions) {
654 #ifdef USE_CURL_MULTI
655 curl_multi_remove_handle(curlm, slot->curl);
657 curl_easy_cleanup(slot->curl);
659 curl_session_count--;
661 #ifdef USE_CURL_MULTI
666 void finish_active_slot(struct active_request_slot *slot)
668 closedown_active_slot(slot);
669 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
671 if (slot->finished != NULL)
672 (*slot->finished) = 1;
674 /* Store slot results so they can be read after the slot is reused */
675 if (slot->results != NULL) {
676 slot->results->curl_result = slot->curl_result;
677 slot->results->http_code = slot->http_code;
680 /* Run callback if appropriate */
681 if (slot->callback_func != NULL)
682 slot->callback_func(slot->callback_data);
685 void finish_all_active_slots(void)
687 struct active_request_slot *slot = active_queue_head;
691 run_active_slot(slot);
692 slot = active_queue_head;
698 /* Helpers for modifying and creating URLs */
699 static inline int needs_quote(int ch)
701 if (((ch >= 'A') && (ch <= 'Z'))
702 || ((ch >= 'a') && (ch <= 'z'))
703 || ((ch >= '0') && (ch <= '9'))
711 static char *quote_ref_url(const char *base, const char *ref)
713 struct strbuf buf = STRBUF_INIT;
717 end_url_with_slash(&buf, base);
719 for (cp = ref; (ch = *cp) != 0; cp++)
721 strbuf_addf(&buf, "%%%02x", ch);
723 strbuf_addch(&buf, *cp);
725 return strbuf_detach(&buf, NULL);
728 void append_remote_object_url(struct strbuf *buf, const char *url,
730 int only_two_digit_prefix)
732 end_url_with_slash(buf, url);
734 strbuf_addf(buf, "objects/%.*s/", 2, hex);
735 if (!only_two_digit_prefix)
736 strbuf_addf(buf, "%s", hex+2);
739 char *get_remote_object_url(const char *url, const char *hex,
740 int only_two_digit_prefix)
742 struct strbuf buf = STRBUF_INIT;
743 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
744 return strbuf_detach(&buf, NULL);
747 int handle_curl_result(struct slot_results *results)
749 if (results->curl_result == CURLE_OK) {
750 credential_approve(&http_auth);
752 } else if (missing_target(results))
753 return HTTP_MISSING_TARGET;
754 else if (results->http_code == 401) {
755 if (http_auth.username && http_auth.password) {
756 credential_reject(&http_auth);
759 credential_fill(&http_auth);
763 if (!curl_errorstr[0])
764 strlcpy(curl_errorstr,
765 curl_easy_strerror(results->curl_result),
766 sizeof(curl_errorstr));
771 /* http_request() targets */
772 #define HTTP_REQUEST_STRBUF 0
773 #define HTTP_REQUEST_FILE 1
775 static int http_request(const char *url, void *result, int target, int options)
777 struct active_request_slot *slot;
778 struct slot_results results;
779 struct curl_slist *headers = NULL;
780 struct strbuf buf = STRBUF_INIT;
783 slot = get_active_slot();
784 slot->results = &results;
785 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
787 if (result == NULL) {
788 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
790 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
791 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
793 if (target == HTTP_REQUEST_FILE) {
794 long posn = ftell(result);
795 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
798 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
799 headers = curl_slist_append(headers, buf.buf);
803 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
807 strbuf_addstr(&buf, "Pragma:");
808 if (options & HTTP_NO_CACHE)
809 strbuf_addstr(&buf, " no-cache");
811 headers = curl_slist_append(headers, buf.buf);
813 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
814 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
816 if (start_active_slot(slot)) {
817 run_active_slot(slot);
818 ret = handle_curl_result(&results);
820 error("Unable to start HTTP request for %s", url);
821 ret = HTTP_START_FAILED;
824 curl_slist_free_all(headers);
825 strbuf_release(&buf);
830 static int http_request_reauth(const char *url, void *result, int target,
833 int ret = http_request(url, result, target, options);
834 if (ret != HTTP_REAUTH)
836 return http_request(url, result, target, options);
839 int http_get_strbuf(const char *url, struct strbuf *result, int options)
841 return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options);
845 * Downloads a URL and stores the result in the given file.
847 * If a previous interrupted download is detected (i.e. a previous temporary
848 * file is still around) the download is resumed.
850 static int http_get_file(const char *url, const char *filename, int options)
853 struct strbuf tmpfile = STRBUF_INIT;
856 strbuf_addf(&tmpfile, "%s.temp", filename);
857 result = fopen(tmpfile.buf, "a");
859 error("Unable to open local file %s", tmpfile.buf);
864 ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options);
867 if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
870 strbuf_release(&tmpfile);
874 int http_error(const char *url, int ret)
876 /* http_request has already handled HTTP_START_FAILED. */
877 if (ret != HTTP_START_FAILED)
878 error("%s while accessing %s", curl_errorstr, url);
883 int http_fetch_ref(const char *base, struct ref *ref)
886 struct strbuf buffer = STRBUF_INIT;
889 url = quote_ref_url(base, ref->name);
890 if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
891 strbuf_rtrim(&buffer);
892 if (buffer.len == 40)
893 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
894 else if (!prefixcmp(buffer.buf, "ref: ")) {
895 ref->symref = xstrdup(buffer.buf + 5);
900 strbuf_release(&buffer);
905 /* Helpers for fetching packs */
906 static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
909 struct strbuf buf = STRBUF_INIT;
912 fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
914 end_url_with_slash(&buf, base_url);
915 strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
916 url = strbuf_detach(&buf, NULL);
918 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
919 tmp = strbuf_detach(&buf, NULL);
921 if (http_get_file(url, tmp, 0) != HTTP_OK) {
922 error("Unable to get pack index %s\n", url);
931 static int fetch_and_setup_pack_index(struct packed_git **packs_head,
932 unsigned char *sha1, const char *base_url)
934 struct packed_git *new_pack;
935 char *tmp_idx = NULL;
938 if (has_pack_index(sha1)) {
939 new_pack = parse_pack_index(sha1, NULL);
941 return -1; /* parse_pack_index() already issued error message */
945 tmp_idx = fetch_pack_index(sha1, base_url);
949 new_pack = parse_pack_index(sha1, tmp_idx);
954 return -1; /* parse_pack_index() already issued error message */
957 ret = verify_pack_index(new_pack);
959 close_pack_index(new_pack);
960 ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1));
967 new_pack->next = *packs_head;
968 *packs_head = new_pack;
972 int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
976 struct strbuf buf = STRBUF_INIT;
977 unsigned char sha1[20];
979 end_url_with_slash(&buf, base_url);
980 strbuf_addstr(&buf, "objects/info/packs");
981 url = strbuf_detach(&buf, NULL);
983 ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
988 while (i < buf.len) {
992 if (i + 52 <= buf.len &&
993 !prefixcmp(data + i, " pack-") &&
994 !prefixcmp(data + i + 46, ".pack\n")) {
995 get_sha1_hex(data + i + 6, sha1);
996 fetch_and_setup_pack_index(packs_head, sha1,
1002 while (i < buf.len && data[i] != '\n')
1013 void release_http_pack_request(struct http_pack_request *preq)
1015 if (preq->packfile != NULL) {
1016 fclose(preq->packfile);
1017 preq->packfile = NULL;
1019 if (preq->range_header != NULL) {
1020 curl_slist_free_all(preq->range_header);
1021 preq->range_header = NULL;
1027 int finish_http_pack_request(struct http_pack_request *preq)
1029 struct packed_git **lst;
1030 struct packed_git *p = preq->target;
1032 struct child_process ip;
1033 const char *ip_argv[8];
1035 close_pack_index(p);
1037 fclose(preq->packfile);
1038 preq->packfile = NULL;
1042 lst = &((*lst)->next);
1043 *lst = (*lst)->next;
1045 tmp_idx = xstrdup(preq->tmpfile);
1046 strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"),
1049 ip_argv[0] = "index-pack";
1051 ip_argv[2] = tmp_idx;
1052 ip_argv[3] = preq->tmpfile;
1055 memset(&ip, 0, sizeof(ip));
1061 if (run_command(&ip)) {
1062 unlink(preq->tmpfile);
1068 unlink(sha1_pack_index_name(p->sha1));
1070 if (move_temp_to_file(preq->tmpfile, sha1_pack_name(p->sha1))
1071 || move_temp_to_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
1076 install_packed_git(p);
1081 struct http_pack_request *new_http_pack_request(
1082 struct packed_git *target, const char *base_url)
1085 char range[RANGE_HEADER_SIZE];
1086 struct strbuf buf = STRBUF_INIT;
1087 struct http_pack_request *preq;
1089 preq = xcalloc(1, sizeof(*preq));
1090 preq->target = target;
1092 end_url_with_slash(&buf, base_url);
1093 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1094 sha1_to_hex(target->sha1));
1095 preq->url = strbuf_detach(&buf, NULL);
1097 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
1098 sha1_pack_name(target->sha1));
1099 preq->packfile = fopen(preq->tmpfile, "a");
1100 if (!preq->packfile) {
1101 error("Unable to open local file %s for pack",
1106 preq->slot = get_active_slot();
1107 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1108 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
1109 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
1110 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1114 * If there is data present from a previous transfer attempt,
1115 * resume where it left off
1117 prev_posn = ftell(preq->packfile);
1119 if (http_is_verbose)
1121 "Resuming fetch of pack %s at byte %ld\n",
1122 sha1_to_hex(target->sha1), prev_posn);
1123 sprintf(range, "Range: bytes=%ld-", prev_posn);
1124 preq->range_header = curl_slist_append(NULL, range);
1125 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1126 preq->range_header);
1137 /* Helpers for fetching objects (loose) */
1138 static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb,
1141 unsigned char expn[4096];
1142 size_t size = eltsize * nmemb;
1144 struct http_object_request *freq =
1145 (struct http_object_request *)data;
1147 ssize_t retval = xwrite(freq->localfile,
1148 (char *) ptr + posn, size - posn);
1152 } while (posn < size);
1154 freq->stream.avail_in = size;
1155 freq->stream.next_in = (void *)ptr;
1157 freq->stream.next_out = expn;
1158 freq->stream.avail_out = sizeof(expn);
1159 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1160 git_SHA1_Update(&freq->c, expn,
1161 sizeof(expn) - freq->stream.avail_out);
1162 } while (freq->stream.avail_in && freq->zret == Z_OK);
1166 struct http_object_request *new_http_object_request(const char *base_url,
1167 unsigned char *sha1)
1169 char *hex = sha1_to_hex(sha1);
1171 char prevfile[PATH_MAX];
1173 char prev_buf[PREV_BUF_SIZE];
1174 ssize_t prev_read = 0;
1176 char range[RANGE_HEADER_SIZE];
1177 struct curl_slist *range_header = NULL;
1178 struct http_object_request *freq;
1180 freq = xcalloc(1, sizeof(*freq));
1181 hashcpy(freq->sha1, sha1);
1182 freq->localfile = -1;
1184 filename = sha1_file_name(sha1);
1185 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1186 "%s.temp", filename);
1188 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1189 unlink_or_warn(prevfile);
1190 rename(freq->tmpfile, prevfile);
1191 unlink_or_warn(freq->tmpfile);
1193 if (freq->localfile != -1)
1194 error("fd leakage in start: %d", freq->localfile);
1195 freq->localfile = open(freq->tmpfile,
1196 O_WRONLY | O_CREAT | O_EXCL, 0666);
1198 * This could have failed due to the "lazy directory creation";
1199 * try to mkdir the last path component.
1201 if (freq->localfile < 0 && errno == ENOENT) {
1202 char *dir = strrchr(freq->tmpfile, '/');
1205 mkdir(freq->tmpfile, 0777);
1208 freq->localfile = open(freq->tmpfile,
1209 O_WRONLY | O_CREAT | O_EXCL, 0666);
1212 if (freq->localfile < 0) {
1213 error("Couldn't create temporary file %s: %s",
1214 freq->tmpfile, strerror(errno));
1218 git_inflate_init(&freq->stream);
1220 git_SHA1_Init(&freq->c);
1222 freq->url = get_remote_object_url(base_url, hex, 0);
1225 * If a previous temp file is present, process what was already
1228 prevlocal = open(prevfile, O_RDONLY);
1229 if (prevlocal != -1) {
1231 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1233 if (fwrite_sha1_file(prev_buf,
1236 freq) == prev_read) {
1237 prev_posn += prev_read;
1242 } while (prev_read > 0);
1245 unlink_or_warn(prevfile);
1248 * Reset inflate/SHA1 if there was an error reading the previous temp
1249 * file; also rewind to the beginning of the local file.
1251 if (prev_read == -1) {
1252 memset(&freq->stream, 0, sizeof(freq->stream));
1253 git_inflate_init(&freq->stream);
1254 git_SHA1_Init(&freq->c);
1257 lseek(freq->localfile, 0, SEEK_SET);
1258 if (ftruncate(freq->localfile, 0) < 0) {
1259 error("Couldn't truncate temporary file %s: %s",
1260 freq->tmpfile, strerror(errno));
1266 freq->slot = get_active_slot();
1268 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1269 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1270 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
1271 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
1272 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1275 * If we have successfully processed data from a previous fetch
1276 * attempt, only fetch the data we don't already have.
1279 if (http_is_verbose)
1281 "Resuming fetch of object %s at byte %ld\n",
1283 sprintf(range, "Range: bytes=%ld-", prev_posn);
1284 range_header = curl_slist_append(range_header, range);
1285 curl_easy_setopt(freq->slot->curl,
1286 CURLOPT_HTTPHEADER, range_header);
1297 void process_http_object_request(struct http_object_request *freq)
1299 if (freq->slot == NULL)
1301 freq->curl_result = freq->slot->curl_result;
1302 freq->http_code = freq->slot->http_code;
1306 int finish_http_object_request(struct http_object_request *freq)
1310 close(freq->localfile);
1311 freq->localfile = -1;
1313 process_http_object_request(freq);
1315 if (freq->http_code == 416) {
1316 warning("requested range invalid; we may already have all the data.");
1317 } else if (freq->curl_result != CURLE_OK) {
1318 if (stat(freq->tmpfile, &st) == 0)
1319 if (st.st_size == 0)
1320 unlink_or_warn(freq->tmpfile);
1324 git_inflate_end(&freq->stream);
1325 git_SHA1_Final(freq->real_sha1, &freq->c);
1326 if (freq->zret != Z_STREAM_END) {
1327 unlink_or_warn(freq->tmpfile);
1330 if (hashcmp(freq->sha1, freq->real_sha1)) {
1331 unlink_or_warn(freq->tmpfile);
1335 move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1));
1337 return freq->rename;
1340 void abort_http_object_request(struct http_object_request *freq)
1342 unlink_or_warn(freq->tmpfile);
1344 release_http_object_request(freq);
1347 void release_http_object_request(struct http_object_request *freq)
1349 if (freq->localfile != -1) {
1350 close(freq->localfile);
1351 freq->localfile = -1;
1353 if (freq->url != NULL) {
1357 if (freq->slot != NULL) {
1358 freq->slot->callback_func = NULL;
1359 freq->slot->callback_data = NULL;
1360 release_active_slot(freq->slot);