8 size_t http_post_buffer = 16 * LARGE_PACKET_MAX;
10 #if LIBCURL_VERSION_NUM >= 0x070a06
11 #define LIBCURL_CAN_HANDLE_AUTH_ANY
14 static int min_curl_sessions = 1;
15 static int curl_session_count;
17 static int max_requests = -1;
20 #ifndef NO_CURL_EASY_DUPHANDLE
21 static CURL *curl_default;
24 #define PREV_BUF_SIZE 4096
25 #define RANGE_HEADER_SIZE 30
27 char curl_errorstr[CURL_ERROR_SIZE];
29 static int curl_ssl_verify = -1;
30 static const char *ssl_cert;
31 #if LIBCURL_VERSION_NUM >= 0x070903
32 static const char *ssl_key;
34 #if LIBCURL_VERSION_NUM >= 0x070908
35 static const char *ssl_capath;
37 static const char *ssl_cainfo;
38 static long curl_low_speed_limit = -1;
39 static long curl_low_speed_time = -1;
40 static int curl_ftp_no_epsv;
41 static const char *curl_http_proxy;
42 static char *user_name, *user_pass;
44 #if LIBCURL_VERSION_NUM >= 0x071700
45 /* Use CURLOPT_KEYPASSWD as is */
46 #elif LIBCURL_VERSION_NUM >= 0x070903
47 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
49 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
52 static char *ssl_cert_password;
53 static int ssl_cert_password_required;
55 static struct curl_slist *pragma_header;
56 static struct curl_slist *no_pragma_header;
58 static struct active_request_slot *active_queue_head;
60 size_t fread_buffer(void *ptr, size_t eltsize, size_t nmemb, void *buffer_)
62 size_t size = eltsize * nmemb;
63 struct buffer *buffer = buffer_;
65 if (size > buffer->buf.len - buffer->posn)
66 size = buffer->buf.len - buffer->posn;
67 memcpy(ptr, buffer->buf.buf + buffer->posn, size);
74 curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp)
76 struct buffer *buffer = clientp;
82 case CURLIOCMD_RESTARTREAD:
87 return CURLIOE_UNKNOWNCMD;
92 size_t fwrite_buffer(const void *ptr, size_t eltsize, size_t nmemb, void *buffer_)
94 size_t size = eltsize * nmemb;
95 struct strbuf *buffer = buffer_;
97 strbuf_add(buffer, ptr, size);
102 size_t fwrite_null(const void *ptr, size_t eltsize, size_t nmemb, void *strbuf)
105 return eltsize * nmemb;
108 #ifdef USE_CURL_MULTI
109 static void process_curl_messages(void)
112 struct active_request_slot *slot;
113 CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages);
115 while (curl_message != NULL) {
116 if (curl_message->msg == CURLMSG_DONE) {
117 int curl_result = curl_message->data.result;
118 slot = active_queue_head;
119 while (slot != NULL &&
120 slot->curl != curl_message->easy_handle)
123 curl_multi_remove_handle(curlm, slot->curl);
124 slot->curl_result = curl_result;
125 finish_active_slot(slot);
127 fprintf(stderr, "Received DONE message for unknown request!\n");
130 fprintf(stderr, "Unknown CURL message received: %d\n",
131 (int)curl_message->msg);
133 curl_message = curl_multi_info_read(curlm, &num_messages);
138 static int http_options(const char *var, const char *value, void *cb)
140 if (!strcmp("http.sslverify", var)) {
141 curl_ssl_verify = git_config_bool(var, value);
144 if (!strcmp("http.sslcert", var))
145 return git_config_string(&ssl_cert, var, value);
146 #if LIBCURL_VERSION_NUM >= 0x070903
147 if (!strcmp("http.sslkey", var))
148 return git_config_string(&ssl_key, var, value);
150 #if LIBCURL_VERSION_NUM >= 0x070908
151 if (!strcmp("http.sslcapath", var))
152 return git_config_string(&ssl_capath, var, value);
154 if (!strcmp("http.sslcainfo", var))
155 return git_config_string(&ssl_cainfo, var, value);
156 if (!strcmp("http.sslcertpasswordprotected", var)) {
157 if (git_config_bool(var, value))
158 ssl_cert_password_required = 1;
161 if (!strcmp("http.minsessions", var)) {
162 min_curl_sessions = git_config_int(var, value);
163 #ifndef USE_CURL_MULTI
164 if (min_curl_sessions > 1)
165 min_curl_sessions = 1;
169 #ifdef USE_CURL_MULTI
170 if (!strcmp("http.maxrequests", var)) {
171 max_requests = git_config_int(var, value);
175 if (!strcmp("http.lowspeedlimit", var)) {
176 curl_low_speed_limit = (long)git_config_int(var, value);
179 if (!strcmp("http.lowspeedtime", var)) {
180 curl_low_speed_time = (long)git_config_int(var, value);
184 if (!strcmp("http.noepsv", var)) {
185 curl_ftp_no_epsv = git_config_bool(var, value);
188 if (!strcmp("http.proxy", var))
189 return git_config_string(&curl_http_proxy, var, value);
191 if (!strcmp("http.postbuffer", var)) {
192 http_post_buffer = git_config_int(var, value);
193 if (http_post_buffer < LARGE_PACKET_MAX)
194 http_post_buffer = LARGE_PACKET_MAX;
198 /* Fall back on the default ones */
199 return git_default_config(var, value, cb);
202 static void init_curl_http_auth(CURL *result)
205 struct strbuf up = STRBUF_INIT;
207 user_pass = xstrdup(git_getpass("Password: "));
208 strbuf_addf(&up, "%s:%s", user_name, user_pass);
209 curl_easy_setopt(result, CURLOPT_USERPWD,
210 strbuf_detach(&up, NULL));
214 static int has_cert_password(void)
216 if (ssl_cert_password != NULL)
218 if (ssl_cert == NULL || ssl_cert_password_required != 1)
220 /* Only prompt the user once. */
221 ssl_cert_password_required = -1;
222 ssl_cert_password = git_getpass("Certificate Password: ");
223 if (ssl_cert_password != NULL) {
224 ssl_cert_password = xstrdup(ssl_cert_password);
230 static CURL *get_curl_handle(void)
232 CURL *result = curl_easy_init();
234 if (!curl_ssl_verify) {
235 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0);
236 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0);
238 /* Verify authenticity of the peer's certificate */
239 curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 1);
240 /* The name in the cert must match whom we tried to connect */
241 curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 2);
244 #if LIBCURL_VERSION_NUM >= 0x070907
245 curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
247 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
248 curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
251 init_curl_http_auth(result);
253 if (ssl_cert != NULL)
254 curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
255 if (has_cert_password())
256 curl_easy_setopt(result, CURLOPT_KEYPASSWD, ssl_cert_password);
257 #if LIBCURL_VERSION_NUM >= 0x070903
259 curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
261 #if LIBCURL_VERSION_NUM >= 0x070908
262 if (ssl_capath != NULL)
263 curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
265 if (ssl_cainfo != NULL)
266 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
267 curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
269 if (curl_low_speed_limit > 0 && curl_low_speed_time > 0) {
270 curl_easy_setopt(result, CURLOPT_LOW_SPEED_LIMIT,
271 curl_low_speed_limit);
272 curl_easy_setopt(result, CURLOPT_LOW_SPEED_TIME,
273 curl_low_speed_time);
276 curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1);
278 if (getenv("GIT_CURL_VERBOSE"))
279 curl_easy_setopt(result, CURLOPT_VERBOSE, 1);
281 curl_easy_setopt(result, CURLOPT_USERAGENT, GIT_USER_AGENT);
283 if (curl_ftp_no_epsv)
284 curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0);
287 curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
292 static void http_auth_init(const char *url)
294 char *at, *colon, *cp, *slash;
297 cp = strstr(url, "://");
302 * Ok, the URL looks like "proto://something". Which one?
303 * "proto://<user>:<pass>@<host>/...",
304 * "proto://<user>@<host>/...", or just
305 * "proto://<host>/..."?
308 at = strchr(cp, '@');
309 colon = strchr(cp, ':');
310 slash = strchrnul(cp, '/');
311 if (!at || slash <= at)
312 return; /* No credentials */
313 if (!colon || at <= colon) {
316 user_name = xmalloc(len + 1);
317 memcpy(user_name, cp, len);
318 user_name[len] = '\0';
322 user_name = xmalloc(len + 1);
323 memcpy(user_name, cp, len);
324 user_name[len] = '\0';
325 len = at - (colon + 1);
326 user_pass = xmalloc(len + 1);
327 memcpy(user_pass, colon + 1, len);
328 user_pass[len] = '\0';
332 static void set_from_env(const char **var, const char *envname)
334 const char *val = getenv(envname);
339 void http_init(struct remote *remote)
341 char *low_speed_limit;
342 char *low_speed_time;
346 git_config(http_options, NULL);
348 curl_global_init(CURL_GLOBAL_ALL);
350 if (remote && remote->http_proxy)
351 curl_http_proxy = xstrdup(remote->http_proxy);
353 pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
354 no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
356 #ifdef USE_CURL_MULTI
358 char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS");
359 if (http_max_requests != NULL)
360 max_requests = atoi(http_max_requests);
363 curlm = curl_multi_init();
365 fprintf(stderr, "Error creating curl multi handle.\n");
370 if (getenv("GIT_SSL_NO_VERIFY"))
373 set_from_env(&ssl_cert, "GIT_SSL_CERT");
374 #if LIBCURL_VERSION_NUM >= 0x070903
375 set_from_env(&ssl_key, "GIT_SSL_KEY");
377 #if LIBCURL_VERSION_NUM >= 0x070908
378 set_from_env(&ssl_capath, "GIT_SSL_CAPATH");
380 set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO");
382 low_speed_limit = getenv("GIT_HTTP_LOW_SPEED_LIMIT");
383 if (low_speed_limit != NULL)
384 curl_low_speed_limit = strtol(low_speed_limit, NULL, 10);
385 low_speed_time = getenv("GIT_HTTP_LOW_SPEED_TIME");
386 if (low_speed_time != NULL)
387 curl_low_speed_time = strtol(low_speed_time, NULL, 10);
389 if (curl_ssl_verify == -1)
392 curl_session_count = 0;
393 #ifdef USE_CURL_MULTI
394 if (max_requests < 1)
395 max_requests = DEFAULT_MAX_REQUESTS;
398 if (getenv("GIT_CURL_FTP_NO_EPSV"))
399 curl_ftp_no_epsv = 1;
401 if (remote && remote->url && remote->url[0]) {
402 http_auth_init(remote->url[0]);
403 if (!ssl_cert_password_required &&
404 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
405 !prefixcmp(remote->url[0], "https://"))
406 ssl_cert_password_required = 1;
409 #ifndef NO_CURL_EASY_DUPHANDLE
410 curl_default = get_curl_handle();
414 void http_cleanup(void)
416 struct active_request_slot *slot = active_queue_head;
418 while (slot != NULL) {
419 struct active_request_slot *next = slot->next;
420 if (slot->curl != NULL) {
421 #ifdef USE_CURL_MULTI
422 curl_multi_remove_handle(curlm, slot->curl);
424 curl_easy_cleanup(slot->curl);
429 active_queue_head = NULL;
431 #ifndef NO_CURL_EASY_DUPHANDLE
432 curl_easy_cleanup(curl_default);
435 #ifdef USE_CURL_MULTI
436 curl_multi_cleanup(curlm);
438 curl_global_cleanup();
440 curl_slist_free_all(pragma_header);
441 pragma_header = NULL;
443 curl_slist_free_all(no_pragma_header);
444 no_pragma_header = NULL;
446 if (curl_http_proxy) {
447 free((void *)curl_http_proxy);
448 curl_http_proxy = NULL;
451 if (ssl_cert_password != NULL) {
452 memset(ssl_cert_password, 0, strlen(ssl_cert_password));
453 free(ssl_cert_password);
454 ssl_cert_password = NULL;
456 ssl_cert_password_required = 0;
459 struct active_request_slot *get_active_slot(void)
461 struct active_request_slot *slot = active_queue_head;
462 struct active_request_slot *newslot;
464 #ifdef USE_CURL_MULTI
467 /* Wait for a slot to open up if the queue is full */
468 while (active_requests >= max_requests) {
469 curl_multi_perform(curlm, &num_transfers);
470 if (num_transfers < active_requests)
471 process_curl_messages();
475 while (slot != NULL && slot->in_use)
479 newslot = xmalloc(sizeof(*newslot));
480 newslot->curl = NULL;
482 newslot->next = NULL;
484 slot = active_queue_head;
486 active_queue_head = newslot;
488 while (slot->next != NULL)
490 slot->next = newslot;
495 if (slot->curl == NULL) {
496 #ifdef NO_CURL_EASY_DUPHANDLE
497 slot->curl = get_curl_handle();
499 slot->curl = curl_easy_duphandle(curl_default);
501 curl_session_count++;
507 slot->results = NULL;
508 slot->finished = NULL;
509 slot->callback_data = NULL;
510 slot->callback_func = NULL;
511 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header);
512 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr);
513 curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
514 curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
515 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
516 curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
517 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
522 int start_active_slot(struct active_request_slot *slot)
524 #ifdef USE_CURL_MULTI
525 CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl);
528 if (curlm_result != CURLM_OK &&
529 curlm_result != CURLM_CALL_MULTI_PERFORM) {
536 * We know there must be something to do, since we just added
539 curl_multi_perform(curlm, &num_transfers);
544 #ifdef USE_CURL_MULTI
548 struct fill_chain *next;
551 static struct fill_chain *fill_cfg;
553 void add_fill_function(void *data, int (*fill)(void *))
555 struct fill_chain *new = xmalloc(sizeof(*new));
556 struct fill_chain **linkp = &fill_cfg;
561 linkp = &(*linkp)->next;
565 void fill_active_slots(void)
567 struct active_request_slot *slot = active_queue_head;
569 while (active_requests < max_requests) {
570 struct fill_chain *fill;
571 for (fill = fill_cfg; fill; fill = fill->next)
572 if (fill->fill(fill->data))
579 while (slot != NULL) {
580 if (!slot->in_use && slot->curl != NULL
581 && curl_session_count > min_curl_sessions) {
582 curl_easy_cleanup(slot->curl);
584 curl_session_count--;
590 void step_active_slots(void)
593 CURLMcode curlm_result;
596 curlm_result = curl_multi_perform(curlm, &num_transfers);
597 } while (curlm_result == CURLM_CALL_MULTI_PERFORM);
598 if (num_transfers < active_requests) {
599 process_curl_messages();
605 void run_active_slot(struct active_request_slot *slot)
607 #ifdef USE_CURL_MULTI
614 struct timeval select_timeout;
617 slot->finished = &finished;
622 if (!data_received && slot->local != NULL) {
623 current_pos = ftell(slot->local);
624 if (current_pos > last_pos)
626 last_pos = current_pos;
629 if (slot->in_use && !data_received) {
634 select_timeout.tv_sec = 0;
635 select_timeout.tv_usec = 50000;
636 select(max_fd, &readfds, &writefds,
637 &excfds, &select_timeout);
641 while (slot->in_use) {
642 slot->curl_result = curl_easy_perform(slot->curl);
643 finish_active_slot(slot);
648 static void closedown_active_slot(struct active_request_slot *slot)
654 static void release_active_slot(struct active_request_slot *slot)
656 closedown_active_slot(slot);
657 if (slot->curl && curl_session_count > min_curl_sessions) {
658 #ifdef USE_CURL_MULTI
659 curl_multi_remove_handle(curlm, slot->curl);
661 curl_easy_cleanup(slot->curl);
663 curl_session_count--;
665 #ifdef USE_CURL_MULTI
670 void finish_active_slot(struct active_request_slot *slot)
672 closedown_active_slot(slot);
673 curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code);
675 if (slot->finished != NULL)
676 (*slot->finished) = 1;
678 /* Store slot results so they can be read after the slot is reused */
679 if (slot->results != NULL) {
680 slot->results->curl_result = slot->curl_result;
681 slot->results->http_code = slot->http_code;
684 /* Run callback if appropriate */
685 if (slot->callback_func != NULL)
686 slot->callback_func(slot->callback_data);
689 void finish_all_active_slots(void)
691 struct active_request_slot *slot = active_queue_head;
695 run_active_slot(slot);
696 slot = active_queue_head;
702 /* Helpers for modifying and creating URLs */
703 static inline int needs_quote(int ch)
705 if (((ch >= 'A') && (ch <= 'Z'))
706 || ((ch >= 'a') && (ch <= 'z'))
707 || ((ch >= '0') && (ch <= '9'))
715 static inline int hex(int v)
723 static void end_url_with_slash(struct strbuf *buf, const char *url)
725 strbuf_addstr(buf, url);
726 if (buf->len && buf->buf[buf->len - 1] != '/')
727 strbuf_addstr(buf, "/");
730 static char *quote_ref_url(const char *base, const char *ref)
732 struct strbuf buf = STRBUF_INIT;
736 end_url_with_slash(&buf, base);
738 for (cp = ref; (ch = *cp) != 0; cp++)
740 strbuf_addf(&buf, "%%%02x", ch);
742 strbuf_addch(&buf, *cp);
744 return strbuf_detach(&buf, NULL);
747 void append_remote_object_url(struct strbuf *buf, const char *url,
749 int only_two_digit_prefix)
751 end_url_with_slash(buf, url);
753 strbuf_addf(buf, "objects/%.*s/", 2, hex);
754 if (!only_two_digit_prefix)
755 strbuf_addf(buf, "%s", hex+2);
758 char *get_remote_object_url(const char *url, const char *hex,
759 int only_two_digit_prefix)
761 struct strbuf buf = STRBUF_INIT;
762 append_remote_object_url(&buf, url, hex, only_two_digit_prefix);
763 return strbuf_detach(&buf, NULL);
766 /* http_request() targets */
767 #define HTTP_REQUEST_STRBUF 0
768 #define HTTP_REQUEST_FILE 1
770 static int http_request(const char *url, void *result, int target, int options)
772 struct active_request_slot *slot;
773 struct slot_results results;
774 struct curl_slist *headers = NULL;
775 struct strbuf buf = STRBUF_INIT;
778 slot = get_active_slot();
779 slot->results = &results;
780 curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);
782 if (result == NULL) {
783 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1);
785 curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0);
786 curl_easy_setopt(slot->curl, CURLOPT_FILE, result);
788 if (target == HTTP_REQUEST_FILE) {
789 long posn = ftell(result);
790 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
793 strbuf_addf(&buf, "Range: bytes=%ld-", posn);
794 headers = curl_slist_append(headers, buf.buf);
797 slot->local = result;
799 curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION,
803 strbuf_addstr(&buf, "Pragma:");
804 if (options & HTTP_NO_CACHE)
805 strbuf_addstr(&buf, " no-cache");
807 headers = curl_slist_append(headers, buf.buf);
809 curl_easy_setopt(slot->curl, CURLOPT_URL, url);
810 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
812 if (start_active_slot(slot)) {
813 run_active_slot(slot);
814 if (results.curl_result == CURLE_OK)
816 else if (missing_target(&results))
817 ret = HTTP_MISSING_TARGET;
821 error("Unable to start HTTP request for %s", url);
822 ret = HTTP_START_FAILED;
826 curl_slist_free_all(headers);
827 strbuf_release(&buf);
832 int http_get_strbuf(const char *url, struct strbuf *result, int options)
834 return http_request(url, result, HTTP_REQUEST_STRBUF, options);
838 * Downloads an url and stores the result in the given file.
840 * If a previous interrupted download is detected (i.e. a previous temporary
841 * file is still around) the download is resumed.
843 static int http_get_file(const char *url, const char *filename, int options)
846 struct strbuf tmpfile = STRBUF_INIT;
849 strbuf_addf(&tmpfile, "%s.temp", filename);
850 result = fopen(tmpfile.buf, "a");
852 error("Unable to open local file %s", tmpfile.buf);
857 ret = http_request(url, result, HTTP_REQUEST_FILE, options);
860 if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename))
863 strbuf_release(&tmpfile);
867 int http_error(const char *url, int ret)
869 /* http_request has already handled HTTP_START_FAILED. */
870 if (ret != HTTP_START_FAILED)
871 error("%s while accessing %s\n", curl_errorstr, url);
876 int http_fetch_ref(const char *base, struct ref *ref)
879 struct strbuf buffer = STRBUF_INIT;
882 url = quote_ref_url(base, ref->name);
883 if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) {
884 strbuf_rtrim(&buffer);
885 if (buffer.len == 40)
886 ret = get_sha1_hex(buffer.buf, ref->old_sha1);
887 else if (!prefixcmp(buffer.buf, "ref: ")) {
888 ref->symref = xstrdup(buffer.buf + 5);
893 strbuf_release(&buffer);
898 /* Helpers for fetching packs */
899 static int fetch_pack_index(unsigned char *sha1, const char *base_url)
902 char *hex = xstrdup(sha1_to_hex(sha1));
905 struct strbuf buf = STRBUF_INIT;
907 if (has_pack_index(sha1)) {
913 fprintf(stderr, "Getting index for pack %s\n", hex);
915 end_url_with_slash(&buf, base_url);
916 strbuf_addf(&buf, "objects/pack/pack-%s.idx", hex);
917 url = strbuf_detach(&buf, NULL);
919 filename = sha1_pack_index_name(sha1);
920 if (http_get_file(url, filename, 0) != HTTP_OK)
921 ret = error("Unable to get pack index %s\n", url);
929 static int fetch_and_setup_pack_index(struct packed_git **packs_head,
930 unsigned char *sha1, const char *base_url)
932 struct packed_git *new_pack;
934 if (fetch_pack_index(sha1, base_url))
937 new_pack = parse_pack_index(sha1);
939 return -1; /* parse_pack_index() already issued error message */
940 new_pack->next = *packs_head;
941 *packs_head = new_pack;
945 int http_get_info_packs(const char *base_url, struct packed_git **packs_head)
949 struct strbuf buf = STRBUF_INIT;
950 unsigned char sha1[20];
952 end_url_with_slash(&buf, base_url);
953 strbuf_addstr(&buf, "objects/info/packs");
954 url = strbuf_detach(&buf, NULL);
956 ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE);
961 while (i < buf.len) {
965 if (i + 52 <= buf.len &&
966 !prefixcmp(data + i, " pack-") &&
967 !prefixcmp(data + i + 46, ".pack\n")) {
968 get_sha1_hex(data + i + 6, sha1);
969 fetch_and_setup_pack_index(packs_head, sha1,
975 while (i < buf.len && data[i] != '\n')
986 void release_http_pack_request(struct http_pack_request *preq)
988 if (preq->packfile != NULL) {
989 fclose(preq->packfile);
990 preq->packfile = NULL;
991 preq->slot->local = NULL;
993 if (preq->range_header != NULL) {
994 curl_slist_free_all(preq->range_header);
995 preq->range_header = NULL;
1001 int finish_http_pack_request(struct http_pack_request *preq)
1004 struct packed_git **lst;
1006 preq->target->pack_size = ftell(preq->packfile);
1008 if (preq->packfile != NULL) {
1009 fclose(preq->packfile);
1010 preq->packfile = NULL;
1011 preq->slot->local = NULL;
1014 ret = move_temp_to_file(preq->tmpfile, preq->filename);
1019 while (*lst != preq->target)
1020 lst = &((*lst)->next);
1021 *lst = (*lst)->next;
1023 if (verify_pack(preq->target))
1025 install_packed_git(preq->target);
1030 struct http_pack_request *new_http_pack_request(
1031 struct packed_git *target, const char *base_url)
1035 char range[RANGE_HEADER_SIZE];
1036 struct strbuf buf = STRBUF_INIT;
1037 struct http_pack_request *preq;
1039 preq = xmalloc(sizeof(*preq));
1040 preq->target = target;
1041 preq->range_header = NULL;
1043 end_url_with_slash(&buf, base_url);
1044 strbuf_addf(&buf, "objects/pack/pack-%s.pack",
1045 sha1_to_hex(target->sha1));
1046 preq->url = strbuf_detach(&buf, NULL);
1048 filename = sha1_pack_name(target->sha1);
1049 snprintf(preq->filename, sizeof(preq->filename), "%s", filename);
1050 snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp", filename);
1051 preq->packfile = fopen(preq->tmpfile, "a");
1052 if (!preq->packfile) {
1053 error("Unable to open local file %s for pack",
1058 preq->slot = get_active_slot();
1059 preq->slot->local = preq->packfile;
1060 curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile);
1061 curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite);
1062 curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url);
1063 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1067 * If there is data present from a previous transfer attempt,
1068 * resume where it left off
1070 prev_posn = ftell(preq->packfile);
1072 if (http_is_verbose)
1074 "Resuming fetch of pack %s at byte %ld\n",
1075 sha1_to_hex(target->sha1), prev_posn);
1076 sprintf(range, "Range: bytes=%ld-", prev_posn);
1077 preq->range_header = curl_slist_append(NULL, range);
1078 curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER,
1079 preq->range_header);
1091 /* Helpers for fetching objects (loose) */
1092 static size_t fwrite_sha1_file(void *ptr, size_t eltsize, size_t nmemb,
1095 unsigned char expn[4096];
1096 size_t size = eltsize * nmemb;
1098 struct http_object_request *freq =
1099 (struct http_object_request *)data;
1101 ssize_t retval = xwrite(freq->localfile,
1102 (char *) ptr + posn, size - posn);
1106 } while (posn < size);
1108 freq->stream.avail_in = size;
1109 freq->stream.next_in = ptr;
1111 freq->stream.next_out = expn;
1112 freq->stream.avail_out = sizeof(expn);
1113 freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH);
1114 git_SHA1_Update(&freq->c, expn,
1115 sizeof(expn) - freq->stream.avail_out);
1116 } while (freq->stream.avail_in && freq->zret == Z_OK);
1121 struct http_object_request *new_http_object_request(const char *base_url,
1122 unsigned char *sha1)
1124 char *hex = sha1_to_hex(sha1);
1126 char prevfile[PATH_MAX];
1128 unsigned char prev_buf[PREV_BUF_SIZE];
1129 ssize_t prev_read = 0;
1131 char range[RANGE_HEADER_SIZE];
1132 struct curl_slist *range_header = NULL;
1133 struct http_object_request *freq;
1135 freq = xmalloc(sizeof(*freq));
1136 hashcpy(freq->sha1, sha1);
1137 freq->localfile = -1;
1139 filename = sha1_file_name(sha1);
1140 snprintf(freq->filename, sizeof(freq->filename), "%s", filename);
1141 snprintf(freq->tmpfile, sizeof(freq->tmpfile),
1142 "%s.temp", filename);
1144 snprintf(prevfile, sizeof(prevfile), "%s.prev", filename);
1145 unlink_or_warn(prevfile);
1146 rename(freq->tmpfile, prevfile);
1147 unlink_or_warn(freq->tmpfile);
1149 if (freq->localfile != -1)
1150 error("fd leakage in start: %d", freq->localfile);
1151 freq->localfile = open(freq->tmpfile,
1152 O_WRONLY | O_CREAT | O_EXCL, 0666);
1154 * This could have failed due to the "lazy directory creation";
1155 * try to mkdir the last path component.
1157 if (freq->localfile < 0 && errno == ENOENT) {
1158 char *dir = strrchr(freq->tmpfile, '/');
1161 mkdir(freq->tmpfile, 0777);
1164 freq->localfile = open(freq->tmpfile,
1165 O_WRONLY | O_CREAT | O_EXCL, 0666);
1168 if (freq->localfile < 0) {
1169 error("Couldn't create temporary file %s for %s: %s",
1170 freq->tmpfile, freq->filename, strerror(errno));
1174 memset(&freq->stream, 0, sizeof(freq->stream));
1176 git_inflate_init(&freq->stream);
1178 git_SHA1_Init(&freq->c);
1180 freq->url = get_remote_object_url(base_url, hex, 0);
1183 * If a previous temp file is present, process what was already
1186 prevlocal = open(prevfile, O_RDONLY);
1187 if (prevlocal != -1) {
1189 prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE);
1191 if (fwrite_sha1_file(prev_buf,
1194 freq) == prev_read) {
1195 prev_posn += prev_read;
1200 } while (prev_read > 0);
1203 unlink_or_warn(prevfile);
1206 * Reset inflate/SHA1 if there was an error reading the previous temp
1207 * file; also rewind to the beginning of the local file.
1209 if (prev_read == -1) {
1210 memset(&freq->stream, 0, sizeof(freq->stream));
1211 git_inflate_init(&freq->stream);
1212 git_SHA1_Init(&freq->c);
1215 lseek(freq->localfile, 0, SEEK_SET);
1216 if (ftruncate(freq->localfile, 0) < 0) {
1217 error("Couldn't truncate temporary file %s for %s: %s",
1218 freq->tmpfile, freq->filename, strerror(errno));
1224 freq->slot = get_active_slot();
1226 curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq);
1227 curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file);
1228 curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr);
1229 curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url);
1230 curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header);
1233 * If we have successfully processed data from a previous fetch
1234 * attempt, only fetch the data we don't already have.
1237 if (http_is_verbose)
1239 "Resuming fetch of object %s at byte %ld\n",
1241 sprintf(range, "Range: bytes=%ld-", prev_posn);
1242 range_header = curl_slist_append(range_header, range);
1243 curl_easy_setopt(freq->slot->curl,
1244 CURLOPT_HTTPHEADER, range_header);
1256 void process_http_object_request(struct http_object_request *freq)
1258 if (freq->slot == NULL)
1260 freq->curl_result = freq->slot->curl_result;
1261 freq->http_code = freq->slot->http_code;
1265 int finish_http_object_request(struct http_object_request *freq)
1269 close(freq->localfile);
1270 freq->localfile = -1;
1272 process_http_object_request(freq);
1274 if (freq->http_code == 416) {
1275 warning("requested range invalid; we may already have all the data.");
1276 } else if (freq->curl_result != CURLE_OK) {
1277 if (stat(freq->tmpfile, &st) == 0)
1278 if (st.st_size == 0)
1279 unlink_or_warn(freq->tmpfile);
1283 git_inflate_end(&freq->stream);
1284 git_SHA1_Final(freq->real_sha1, &freq->c);
1285 if (freq->zret != Z_STREAM_END) {
1286 unlink_or_warn(freq->tmpfile);
1289 if (hashcmp(freq->sha1, freq->real_sha1)) {
1290 unlink_or_warn(freq->tmpfile);
1294 move_temp_to_file(freq->tmpfile, freq->filename);
1296 return freq->rename;
1299 void abort_http_object_request(struct http_object_request *freq)
1301 unlink_or_warn(freq->tmpfile);
1303 release_http_object_request(freq);
1306 void release_http_object_request(struct http_object_request *freq)
1308 if (freq->localfile != -1) {
1309 close(freq->localfile);
1310 freq->localfile = -1;
1312 if (freq->url != NULL) {
1316 if (freq->slot != NULL) {
1317 freq->slot->callback_func = NULL;
1318 freq->slot->callback_data = NULL;
1319 release_active_slot(freq->slot);