4 #include "run-command.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 char *user_name, *user_pass;
46 static const char *user_agent;
48 #if LIBCURL_VERSION_NUM >= 0x071700
49 /* Use CURLOPT_KEYPASSWD as is */
50 #elif LIBCURL_VERSION_NUM >= 0x070903
51 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
53 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
56 static char *ssl_cert_password;
57 static int ssl_cert_password_required;
59 static struct curl_slist *pragma_header;
60 static struct curl_slist *no_pragma_header;
62 static struct active_request_slot *active_queue_head;
64 size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
66 size_t size = eltsize * nmemb;
67 struct buffer *buffer = buffer_;
69 if (size > buffer->buf.len - buffer->posn)
70 size = buffer->buf.len - buffer->posn;
71 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
78 curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
80 struct buffer *buffer = clientp;
86 case CURLIOCMD_RESTARTREAD:
91 return CURLIOE_UNKNOWNCMD;
96 size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_)
98 size_t size = eltsize * nmemb;
99 struct strbuf *buffer = buffer_;
101 strbuf_add(buffer, ptr, size);
106 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)
215 struct strbuf up = STRBUF_INIT;
217 user_pass = xstrdup(git_getpass("Password: "));
218 strbuf_addf(&up, "%s:%s", user_name, user_pass);
219 curl_easy_setopt(result, CURLOPT_USERPWD,
220 strbuf_detach(&up, NULL));
224 static int has_cert_password(void)
226 if (ssl_cert_password != NULL)
228 if (ssl_cert == NULL || ssl_cert_password_required != 1)
230 /* Only prompt the user once. */
231 ssl_cert_password_required = -1;
232 ssl_cert_password = git_getpass("Certificate Password: ");
233 if (ssl_cert_password != NULL) {
234 ssl_cert_password = xstrdup(ssl_cert_password);
240 static CURL *get_curl_handle(void)
242 CURL *result = curl_easy_init();
244 if (!curl_ssl_verify) {
245 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
246 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
248 /* Verify authenticity of the peer's certificate */
249 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
250 /* The name in the cert must match whom we tried to connect */
251 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
254 #if LIBCURL_VERSION_NUM >= 0x070907
255 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
257 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
258 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
261 init_curl_http_auth(result);
263 if (ssl_cert != NULL)
264 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
265 if (has_cert_password())
266 curl_easy_setopt(result, CURLOPT_KEYPASSWD, ssl_cert_password);
267 #if LIBCURL_VERSION_NUM >= 0x070903
269 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
271 #if LIBCURL_VERSION_NUM >= 0x070908
272 if (ssl_capath != NULL)
273 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
275 if (ssl_cainfo != NULL)
276 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
277 curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
279 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
280 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
281 curl_low_speed_limit);
282 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
283 curl_low_speed_time);
286 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
287 #if LIBCURL_VERSION_NUM >= 0x071301
288 curl_easy_setopt(result, CURLOPT_POSTREDIR, CURL_REDIR_POST_ALL);
289 #elif LIBCURL_VERSION_NUM >= 0x071101
290 curl_easy_setopt(result, CURLOPT_POST301, 1);
293 if (getenv("GIT_CURL_VERBOSE"))
294 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
296 curl_easy_setopt(result, CURLOPT_USERAGENT,
297 user_agent ? user_agent : GIT_HTTP_USER_AGENT);
299 if (curl_ftp_no_epsv)
300 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
303 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
308 static void http_auth_init(const char *url)
310 char *at, *colon, *cp, *slash;
312 cp = strstr(url, "://");
317 * Ok, the URL looks like "proto://something". Which one?
318 * "proto://<user>:<pass>@<host>/...",
319 * "proto://<user>@<host>/...", or just
320 * "proto://<host>/..."?
323 at = strchr(cp, '@');
324 colon = strchr(cp, ':');
325 slash = strchrnul(cp, '/');
326 if (!at || slash <= at)
327 return; /* No credentials */
328 if (!colon || at <= colon) {
330 user_name = url_decode_mem(cp, at - cp);
333 user_name = url_decode_mem(cp, colon - cp);
334 user_pass = url_decode_mem(colon + 1, at - (colon + 1));
338 static void set_from_env(const char **var, const char *envname)
340 const char *val = getenv(envname);
345 void http_init(struct remote *remote)
347 char *low_speed_limit;
348 char *low_speed_time;
352 git_config(http_options, NULL);
354 curl_global_init(CURL_GLOBAL_ALL);
356 if (remote && remote->http_proxy)
357 curl_http_proxy = xstrdup(remote->http_proxy);
359 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
360 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
362 #ifdef USE_CURL_MULTI
364 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
365 if (http_max_requests != NULL)
366 max_requests = atoi(http_max_requests);
369 curlm = curl_multi_init();
371 fprintf(stderr, "Error creating curl multi handle.\n");
376 if (getenv("GIT_SSL_NO_VERIFY"))
379 set_from_env(&ssl_cert, "GIT_SSL_CERT");
380 #if LIBCURL_VERSION_NUM >= 0x070903
381 set_from_env(&ssl_key, "GIT_SSL_KEY");
383 #if LIBCURL_VERSION_NUM >= 0x070908
384 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
386 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
388 set_from_env(&user_agent, "GIT_HTTP_USER_AGENT");
390 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
391 if (low_speed_limit != NULL)
392 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
393 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
394 if (low_speed_time != NULL)
395 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
397 if (curl_ssl_verify == -1)
400 curl_session_count = 0;
401 #ifdef USE_CURL_MULTI
402 if (max_requests < 1)
403 max_requests = DEFAULT_MAX_REQUESTS;
406 if (getenv("GIT_CURL_FTP_NO_EPSV"))
407 curl_ftp_no_epsv = 1;
409 if (remote && remote->url && remote->url[0]) {
410 http_auth_init(remote->url[0]);
411 if (!ssl_cert_password_required &&
412 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
413 !prefixcmp(remote->url[0], "https://"))
414 ssl_cert_password_required = 1;
417 #ifndef NO_CURL_EASY_DUPHANDLE
418 curl_default = get_curl_handle();
422 void http_cleanup(void)
424 struct active_request_slot *slot = active_queue_head;
426 while (slot != NULL) {
427 struct active_request_slot *next = slot->next;
428 if (slot->curl != NULL) {
429 #ifdef USE_CURL_MULTI
430 curl_multi_remove_handle(curlm, slot->curl);
432 curl_easy_cleanup(slot->curl);
437 active_queue_head = NULL;
439 #ifndef NO_CURL_EASY_DUPHANDLE
440 curl_easy_cleanup(curl_default);
443 #ifdef USE_CURL_MULTI
444 curl_multi_cleanup(curlm);
446 curl_global_cleanup();
448 curl_slist_free_all(pragma_header);
449 pragma_header = NULL;
451 curl_slist_free_all(no_pragma_header);
452 no_pragma_header = NULL;
454 if (curl_http_proxy) {
455 free((void *)curl_http_proxy);
456 curl_http_proxy = NULL;
459 if (ssl_cert_password != NULL) {
460 memset(ssl_cert_password, 0, strlen(ssl_cert_password));
461 free(ssl_cert_password);
462 ssl_cert_password = NULL;
464 ssl_cert_password_required = 0;
467 struct active_request_slot *get_active_slot(void)
469 struct active_request_slot *slot = active_queue_head;
470 struct active_request_slot *newslot;
472 #ifdef USE_CURL_MULTI
475 /* Wait for a slot to open up if the queue is full */
476 while (active_requests >= max_requests) {
477 curl_multi_perform(curlm, &num_transfers);
478 if (num_transfers < active_requests)
479 process_curl_messages();
483 while (slot != NULL && slot->in_use)
487 newslot = xmalloc(sizeof(*newslot));
488 newslot->curl = NULL;
490 newslot->next = NULL;
492 slot = active_queue_head;
494 active_queue_head = newslot;
496 while (slot->next != NULL)
498 slot->next = newslot;
503 if (slot->curl == NULL) {
504 #ifdef NO_CURL_EASY_DUPHANDLE
505 slot->curl = get_curl_handle();
507 slot->curl = curl_easy_duphandle(curl_default);
509 curl_session_count++;
515 slot->results = NULL;
516 slot->finished = NULL;
517 slot->callback_data = NULL;
518 slot->callback_func = NULL;
519 curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file);
520 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
521 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
522 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
523 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
524 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
525 curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
526 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
527 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
532 int start_active_slot(struct active_request_slot *slot)
534 #ifdef USE_CURL_MULTI
535 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
538 if (curlm_result != CURLM_OK &&
539 curlm_result != CURLM_CALL_MULTI_PERFORM) {
546 * We know there must be something to do, since we just added
549 curl_multi_perform(curlm, &num_transfers);
554 #ifdef USE_CURL_MULTI
558 struct fill_chain *next;
561 static struct fill_chain *fill_cfg;
563 void add_fill_function(void *data, int (*fill)(void *))
565 struct fill_chain *new = xmalloc(sizeof(*new));
566 struct fill_chain **linkp = &fill_cfg;
571 linkp = &(*linkp)->next;
575 void fill_active_slots(void)
577 struct active_request_slot *slot = active_queue_head;
579 while (active_requests < max_requests) {
580 struct fill_chain *fill;
581 for (fill = fill_cfg; fill; fill = fill->next)
582 if (fill->fill(fill->data))
589 while (slot != NULL) {
590 if (!slot->in_use && slot->curl != NULL
591 && curl_session_count > min_curl_sessions) {
592 curl_easy_cleanup(slot->curl);
594 curl_session_count--;
600 void step_active_slots(void)
603 CURLMcode curlm_result;
606 curlm_result = curl_multi_perform(curlm, &num_transfers);
607 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
608 if (num_transfers < active_requests) {
609 process_curl_messages();
615 void run_active_slot(struct active_request_slot *slot)
617 #ifdef USE_CURL_MULTI
624 struct timeval select_timeout;
627 slot->finished = &finished;
632 if (!data_received && slot->local != NULL) {
633 current_pos = ftell(slot->local);
634 if (current_pos > last_pos)
636 last_pos = current_pos;
639 if (slot->in_use && !data_received) {
644 select_timeout.tv_sec = 0;
645 select_timeout.tv_usec = 50000;
646 select(max_fd, &readfds, &writefds,
647 &excfds, &select_timeout);
651 while (slot->in_use) {
652 slot->curl_result = curl_easy_perform(slot->curl);
653 finish_active_slot(slot);
658 static void closedown_active_slot(struct active_request_slot *slot)
664 static void release_active_slot(struct active_request_slot *slot)
666 closedown_active_slot(slot);
667 if (slot->curl && curl_session_count > min_curl_sessions) {
668 #ifdef USE_CURL_MULTI
669 curl_multi_remove_handle(curlm, slot->curl);
671 curl_easy_cleanup(slot->curl);
673 curl_session_count--;
675 #ifdef USE_CURL_MULTI
680 void finish_active_slot(struct active_request_slot *slot)
682 closedown_active_slot(slot);
683 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
685 if (slot->finished != NULL)
686 (*slot->finished) = 1;
688 /* Store slot results so they can be read after the slot is reused */
689 if (slot->results != NULL) {
690 slot->results->curl_result = slot->curl_result;
691 slot->results->http_code = slot->http_code;
694 /* Run callback if appropriate */
695 if (slot->callback_func != NULL)
696 slot->callback_func(slot->callback_data);
699 void finish_all_active_slots(void)
701 struct active_request_slot *slot = active_queue_head;
705 run_active_slot(slot);
706 slot = active_queue_head;
712 /* Helpers for modifying and creating URLs */
713 static inline int needs_quote(int ch)
715 if (((ch >= 'A') && (ch <= 'Z'))
716 || ((ch >= 'a') && (ch <= 'z'))
717 || ((ch >= '0') && (ch <= '9'))
725 static inline int hex(int v)
733 static char *quote_ref_url(const char *base, const char *ref)
735 struct strbuf buf = STRBUF_INIT;
739 end_url_with_slash(&buf, base);
741 for (cp = ref; (ch = *cp) != 0; cp++)
743 strbuf_addf(&buf, "%%%02x", ch);
745 strbuf_addch(&buf, *cp);
747 return strbuf_detach(&buf, NULL);
750 void append_remote_object_url(struct strbuf *buf, const char *url,
752 int only_two_digit_prefix)
754 end_url_with_slash(buf, url);
756 strbuf_addf(buf, "objects/%.*s/", 2, hex);
757 if (!only_two_digit_prefix)
758 strbuf_addf(buf, "%s", hex+2);
761 char *get_remote_object_url(const char *url, const char *hex,
762 int only_two_digit_prefix)
764 struct strbuf buf = STRBUF_INIT;
765 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
766 return strbuf_detach(&buf, NULL);
769 /* http_request() targets */
770 #define HTTP_REQUEST_STRBUF 0
771 #define HTTP_REQUEST_FILE 1
773 static int http_request(const char *url, void *result, int target, int options)
775 struct active_request_slot *slot;
776 struct slot_results results;
777 struct curl_slist *headers = NULL;
778 struct strbuf buf = STRBUF_INIT;
781 slot = get_active_slot();
782 slot->results = &results;
783 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
785 if (result == NULL) {
786 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
788 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
789 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
791 if (target == HTTP_REQUEST_FILE) {
792 long posn = ftell(result);
793 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
796 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
797 headers = curl_slist_append(headers, buf.buf);
800 slot->local = result;
802 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
806 strbuf_addstr(&buf, "Pragma:");
807 if (options & HTTP_NO_CACHE)
808 strbuf_addstr(&buf, " no-cache");
810 headers = curl_slist_append(headers, buf.buf);
812 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
813 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
815 if (start_active_slot(slot)) {
816 run_active_slot(slot);
817 if (results.curl_result == CURLE_OK)
819 else if (missing_target(&results))
820 ret = HTTP_MISSING_TARGET;
821 else if (results.http_code == 401) {
826 * git_getpass is needed here because its very likely stdin/stdout are
827 * pipes to our parent process. So we instead need to use /dev/tty,
828 * but that is non-portable. Using git_getpass() can at least be stubbed
829 * on other platforms with a different implementation if/when necessary.
831 user_name = xstrdup(git_getpass("Username: "));
832 init_curl_http_auth(slot->curl);
838 error("Unable to start HTTP request for %s", url);
839 ret = HTTP_START_FAILED;
843 curl_slist_free_all(headers);
844 strbuf_release(&buf);
849 int http_get_strbuf(const char *url, struct strbuf *result, int options)
851 int http_ret = http_request(url, result, HTTP_REQUEST_STRBUF, options);
852 if (http_ret == HTTP_REAUTH) {
853 http_ret = http_request(url, result, HTTP_REQUEST_STRBUF, options);
859 * Downloads an url and stores the result in the given file.
861 * If a previous interrupted download is detected (i.e. a previous temporary
862 * file is still around) the download is resumed.
864 static int http_get_file(const char *url, const char *filename, int options)
867 struct strbuf tmpfile = STRBUF_INIT;
870 strbuf_addf(&tmpfile, "%s.temp", filename);
871 result = fopen(tmpfile.buf, "a");
873 error("Unable to open local file %s", tmpfile.buf);
878 ret = http_request(url, result, HTTP_REQUEST_FILE, options);
881 if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
884 strbuf_release(&tmpfile);
888 int http_error(const char *url, int ret)
890 /* http_request has already handled HTTP_START_FAILED. */
891 if (ret != HTTP_START_FAILED)
892 error("%s while accessing %s\n", curl_errorstr, url);
897 int http_fetch_ref(const char *base, struct ref *ref)
900 struct strbuf buffer = STRBUF_INIT;
903 url = quote_ref_url(base, ref->name);
904 if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
905 strbuf_rtrim(&buffer);
906 if (buffer.len == 40)
907 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
908 else if (!prefixcmp(buffer.buf, "ref: ")) {
909 ref->symref = xstrdup(buffer.buf + 5);
914 strbuf_release(&buffer);
919 /* Helpers for fetching packs */
920 static char *fetch_pack_index(unsigned char *sha1, const char *base_url)
923 struct strbuf buf = STRBUF_INIT;
926 fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1));
928 end_url_with_slash(&buf, base_url);
929 strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1));
930 url = strbuf_detach(&buf, NULL);
932 strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1));
933 tmp = strbuf_detach(&buf, NULL);
935 if (http_get_file(url, tmp, 0) != HTTP_OK) {
936 error("Unable to get pack index %s\n", url);
945 static int fetch_and_setup_pack_index(struct packed_git **packs_head,
946 unsigned char *sha1, const char *base_url)
948 struct packed_git *new_pack;
949 char *tmp_idx = NULL;
952 if (has_pack_index(sha1)) {
953 new_pack = parse_pack_index(sha1, NULL);
955 return -1; /* parse_pack_index() already issued error message */
959 tmp_idx = fetch_pack_index(sha1, base_url);
963 new_pack = parse_pack_index(sha1, tmp_idx);
968 return -1; /* parse_pack_index() already issued error message */
971 ret = verify_pack_index(new_pack);
973 close_pack_index(new_pack);
974 ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1));
981 new_pack->next = *packs_head;
982 *packs_head = new_pack;
986 int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
990 struct strbuf buf = STRBUF_INIT;
991 unsigned char sha1[20];
993 end_url_with_slash(&buf, base_url);
994 strbuf_addstr(&buf, "objects/info/packs");
995 url = strbuf_detach(&buf, NULL);
997 ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
1002 while (i < buf.len) {
1006 if (i + 52 <= buf.len &&
1007 !prefixcmp(data + i, " pack-") &&
1008 !prefixcmp(data + i + 46, ".pack\n")) {
1009 get_sha1_hex(data + i + 6, sha1);
1010 fetch_and_setup_pack_index(packs_head, sha1,
1016 while (i < buf.len && data[i] != '\n')
1027 void release_http_pack_request(struct http_pack_request *preq)
1029 if (preq->packfile != NULL) {
1030 fclose(preq->packfile);
1031 preq->packfile = NULL;
1032 preq->slot->local = NULL;
1034 if (preq->range_header != NULL) {
1035 curl_slist_free_all(preq->range_header);
1036 preq->range_header = NULL;
1042 int finish_http_pack_request(struct http_pack_request *preq)
1044 struct packed_git **lst;
1045 struct packed_git *p = preq->target;
1047 struct child_process ip;
1048 const char *ip_argv[8];
1050 close_pack_index(p);
1052 fclose(preq->packfile);
1053 preq->packfile = NULL;
1054 preq->slot->local = NULL;
1058 lst = &((*lst)->next);
1059 *lst = (*lst)->next;
1061 tmp_idx = xstrdup(preq->tmpfile);
1062 strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"),
1065 ip_argv[0] = "index-pack";
1067 ip_argv[2] = tmp_idx;
1068 ip_argv[3] = preq->tmpfile;
1071 memset(&ip, 0, sizeof(ip));
1077 if (run_command(&ip)) {
1078 unlink(preq->tmpfile);
1084 unlink(sha1_pack_index_name(p->sha1));
1086 if (move_temp_to_file(preq->tmpfile, sha1_pack_name(p->sha1))
1087 || move_temp_to_file(tmp_idx, sha1_pack_index_name(p->sha1))) {
1092 install_packed_git(p);
1097 struct http_pack_request *new_http_pack_request(
1098 struct packed_git *target, const char *base_url)
1101 char range[RANGE_HEADER_SIZE];
1102 struct strbuf buf = STRBUF_INIT;
1103 struct http_pack_request *preq;
1105 preq = xmalloc(sizeof(*preq));
1106 preq->target = target;
1107 preq->range_header = NULL;
1109 end_url_with_slash(&buf, base_url);
1110 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1111 sha1_to_hex(target->sha1));
1112 preq->url = strbuf_detach(&buf, NULL);
1114 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp",
1115 sha1_pack_name(target->sha1));
1116 preq->packfile = fopen(preq->tmpfile, "a");
1117 if (!preq->packfile) {
1118 error("Unable to open local file %s for pack",
1123 preq->slot = get_active_slot();
1124 preq->slot->local = preq->packfile;
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);
1185 struct http_object_request *new_http_object_request(const char *base_url,
1186 unsigned char *sha1)
1188 char *hex = sha1_to_hex(sha1);
1190 char prevfile[PATH_MAX];
1192 char prev_buf[PREV_BUF_SIZE];
1193 ssize_t prev_read = 0;
1195 char range[RANGE_HEADER_SIZE];
1196 struct curl_slist *range_header = NULL;
1197 struct http_object_request *freq;
1199 freq = xmalloc(sizeof(*freq));
1200 hashcpy(freq->sha1, sha1);
1201 freq->localfile = -1;
1203 filename = sha1_file_name(sha1);
1204 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1205 "%s.temp", filename);
1207 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1208 unlink_or_warn(prevfile);
1209 rename(freq->tmpfile, prevfile);
1210 unlink_or_warn(freq->tmpfile);
1212 if (freq->localfile != -1)
1213 error("fd leakage in start: %d", freq->localfile);
1214 freq->localfile = open(freq->tmpfile,
1215 O_WRONLY | O_CREAT | O_EXCL, 0666);
1217 * This could have failed due to the "lazy directory creation";
1218 * try to mkdir the last path component.
1220 if (freq->localfile < 0 && errno == ENOENT) {
1221 char *dir = strrchr(freq->tmpfile, '/');
1224 mkdir(freq->tmpfile, 0777);
1227 freq->localfile = open(freq->tmpfile,
1228 O_WRONLY | O_CREAT | O_EXCL, 0666);
1231 if (freq->localfile < 0) {
1232 error("Couldn't create temporary file %s: %s",
1233 freq->tmpfile, strerror(errno));
1237 memset(&freq->stream, 0, sizeof(freq->stream));
1239 git_inflate_init(&freq->stream);
1241 git_SHA1_Init(&freq->c);
1243 freq->url = get_remote_object_url(base_url, hex, 0);
1246 * If a previous temp file is present, process what was already
1249 prevlocal = open(prevfile, O_RDONLY);
1250 if (prevlocal != -1) {
1252 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1254 if (fwrite_sha1_file(prev_buf,
1257 freq) == prev_read) {
1258 prev_posn += prev_read;
1263 } while (prev_read > 0);
1266 unlink_or_warn(prevfile);
1269 * Reset inflate/SHA1 if there was an error reading the previous temp
1270 * file; also rewind to the beginning of the local file.
1272 if (prev_read == -1) {
1273 memset(&freq->stream, 0, sizeof(freq->stream));
1274 git_inflate_init(&freq->stream);
1275 git_SHA1_Init(&freq->c);
1278 lseek(freq->localfile, 0, SEEK_SET);
1279 if (ftruncate(freq->localfile, 0) < 0) {
1280 error("Couldn't truncate temporary file %s: %s",
1281 freq->tmpfile, strerror(errno));
1287 freq->slot = get_active_slot();
1289 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1290 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1291 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
1292 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
1293 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1296 * If we have successfully processed data from a previous fetch
1297 * attempt, only fetch the data we don't already have.
1300 if (http_is_verbose)
1302 "Resuming fetch of object %s at byte %ld\n",
1304 sprintf(range, "Range: bytes=%ld-", prev_posn);
1305 range_header = curl_slist_append(range_header, range);
1306 curl_easy_setopt(freq->slot->curl,
1307 CURLOPT_HTTPHEADER, range_header);
1319 void process_http_object_request(struct http_object_request *freq)
1321 if (freq->slot == NULL)
1323 freq->curl_result = freq->slot->curl_result;
1324 freq->http_code = freq->slot->http_code;
1328 int finish_http_object_request(struct http_object_request *freq)
1332 close(freq->localfile);
1333 freq->localfile = -1;
1335 process_http_object_request(freq);
1337 if (freq->http_code == 416) {
1338 warning("requested range invalid; we may already have all the data.");
1339 } else if (freq->curl_result != CURLE_OK) {
1340 if (stat(freq->tmpfile, &st) == 0)
1341 if (st.st_size == 0)
1342 unlink_or_warn(freq->tmpfile);
1346 git_inflate_end(&freq->stream);
1347 git_SHA1_Final(freq->real_sha1, &freq->c);
1348 if (freq->zret != Z_STREAM_END) {
1349 unlink_or_warn(freq->tmpfile);
1352 if (hashcmp(freq->sha1, freq->real_sha1)) {
1353 unlink_or_warn(freq->tmpfile);
1357 move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1));
1359 return freq->rename;
1362 void abort_http_object_request(struct http_object_request *freq)
1364 unlink_or_warn(freq->tmpfile);
1366 release_http_object_request(freq);
1369 void release_http_object_request(struct http_object_request *freq)
1371 if (freq->localfile != -1) {
1372 close(freq->localfile);
1373 freq->localfile = -1;
1375 if (freq->url != NULL) {
1379 if (freq->slot != NULL) {
1380 freq->slot->callback_func = NULL;
1381 freq->slot->callback_data = NULL;
1382 release_active_slot(freq->slot);