Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 1 | #include "http.h" |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 2 | #include "pack.h" |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 3 | #include "sideband.h" |
Shawn O. Pearce | fe72d42 | 2010-04-19 07:23:09 -0700 | [diff] [blame] | 4 | #include "run-command.h" |
Gabriel Corona | f39f72d | 2010-11-14 02:51:15 +0100 | [diff] [blame] | 5 | #include "url.h" |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 6 | #include "credential.h" |
Jeff King | 745c7c8 | 2012-06-02 15:03:08 -0400 | [diff] [blame] | 7 | #include "version.h" |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 8 | |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 9 | int active_requests; |
Tay Ray Chuan | e917674 | 2009-06-06 16:43:41 +0800 | [diff] [blame] | 10 | int http_is_verbose; |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 11 | size_t http_post_buffer = 16 * LARGE_PACKET_MAX; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 12 | |
Martin Storsjö | b8ac923 | 2009-11-27 23:43:08 +0800 | [diff] [blame] | 13 | #if LIBCURL_VERSION_NUM >= 0x070a06 |
| 14 | #define LIBCURL_CAN_HANDLE_AUTH_ANY |
| 15 | #endif |
| 16 | |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 17 | static int min_curl_sessions = 1; |
| 18 | static int curl_session_count; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 19 | #ifdef USE_CURL_MULTI |
Mike Hommey | cc3530e | 2007-12-09 18:04:57 +0100 | [diff] [blame] | 20 | static int max_requests = -1; |
| 21 | static CURLM *curlm; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 22 | #endif |
| 23 | #ifndef NO_CURL_EASY_DUPHANDLE |
Mike Hommey | cc3530e | 2007-12-09 18:04:57 +0100 | [diff] [blame] | 24 | static CURL *curl_default; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 25 | #endif |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 26 | |
| 27 | #define PREV_BUF_SIZE 4096 |
| 28 | #define RANGE_HEADER_SIZE 30 |
| 29 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 30 | char curl_errorstr[CURL_ERROR_SIZE]; |
| 31 | |
Mike Hommey | cc3530e | 2007-12-09 18:04:57 +0100 | [diff] [blame] | 32 | static int curl_ssl_verify = -1; |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 33 | static const char *ssl_cert; |
Mark Lodato | ef52aaf | 2009-06-14 22:39:00 -0400 | [diff] [blame] | 34 | #if LIBCURL_VERSION_NUM >= 0x070903 |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 35 | static const char *ssl_key; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 36 | #endif |
| 37 | #if LIBCURL_VERSION_NUM >= 0x070908 |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 38 | static const char *ssl_capath; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 39 | #endif |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 40 | static const char *ssl_cainfo; |
Mike Hommey | cc3530e | 2007-12-09 18:04:57 +0100 | [diff] [blame] | 41 | static long curl_low_speed_limit = -1; |
| 42 | static long curl_low_speed_time = -1; |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 43 | static int curl_ftp_no_epsv; |
| 44 | static const char *curl_http_proxy; |
Duncan Brown | bcfb95d | 2011-06-02 16:31:25 -0400 | [diff] [blame] | 45 | static const char *curl_cookie_file; |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 46 | static struct credential http_auth = CREDENTIAL_INIT; |
Jeff King | a4ddbc3 | 2011-12-13 19:11:56 -0500 | [diff] [blame] | 47 | static int http_proactive_auth; |
Spencer E. Olson | b1d1058 | 2010-08-11 14:40:38 -0600 | [diff] [blame] | 48 | static const char *user_agent; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 49 | |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 50 | #if LIBCURL_VERSION_NUM >= 0x071700 |
| 51 | /* Use CURLOPT_KEYPASSWD as is */ |
| 52 | #elif LIBCURL_VERSION_NUM >= 0x070903 |
| 53 | #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD |
| 54 | #else |
| 55 | #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD |
| 56 | #endif |
| 57 | |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 58 | static struct credential cert_auth = CREDENTIAL_INIT; |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 59 | static int ssl_cert_password_required; |
| 60 | |
Mike Hommey | cc3530e | 2007-12-09 18:04:57 +0100 | [diff] [blame] | 61 | static struct curl_slist *pragma_header; |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 62 | static struct curl_slist *no_pragma_header; |
Tay Ray Chuan | e917674 | 2009-06-06 16:43:41 +0800 | [diff] [blame] | 63 | |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 64 | static struct active_request_slot *active_queue_head; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 65 | |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 66 | size_t fread_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 67 | { |
| 68 | size_t size = eltsize * nmemb; |
Junio C Hamano | f444e52 | 2008-07-04 00:37:40 -0700 | [diff] [blame] | 69 | struct buffer *buffer = buffer_; |
| 70 | |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 71 | if (size > buffer->buf.len - buffer->posn) |
| 72 | size = buffer->buf.len - buffer->posn; |
| 73 | memcpy(ptr, buffer->buf.buf + buffer->posn, size); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 74 | buffer->posn += size; |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 75 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 76 | return size; |
| 77 | } |
| 78 | |
Martin Storsjö | 3944ba0 | 2009-04-01 19:48:24 +0300 | [diff] [blame] | 79 | #ifndef NO_CURL_IOCTL |
| 80 | curlioerr ioctl_buffer(CURL *handle, int cmd, void *clientp) |
| 81 | { |
| 82 | struct buffer *buffer = clientp; |
| 83 | |
| 84 | switch (cmd) { |
| 85 | case CURLIOCMD_NOP: |
| 86 | return CURLIOE_OK; |
| 87 | |
| 88 | case CURLIOCMD_RESTARTREAD: |
| 89 | buffer->posn = 0; |
| 90 | return CURLIOE_OK; |
| 91 | |
| 92 | default: |
| 93 | return CURLIOE_UNKNOWNCMD; |
| 94 | } |
| 95 | } |
| 96 | #endif |
| 97 | |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 98 | size_t fwrite_buffer(char *ptr, size_t eltsize, size_t nmemb, void *buffer_) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 99 | { |
| 100 | size_t size = eltsize * nmemb; |
Junio C Hamano | f444e52 | 2008-07-04 00:37:40 -0700 | [diff] [blame] | 101 | struct strbuf *buffer = buffer_; |
| 102 | |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 103 | strbuf_add(buffer, ptr, size); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 104 | return size; |
| 105 | } |
| 106 | |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 107 | size_t fwrite_null(char *ptr, size_t eltsize, size_t nmemb, void *strbuf) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 108 | { |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 109 | return eltsize * nmemb; |
| 110 | } |
| 111 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 112 | #ifdef USE_CURL_MULTI |
| 113 | static void process_curl_messages(void) |
| 114 | { |
| 115 | int num_messages; |
| 116 | struct active_request_slot *slot; |
| 117 | CURLMsg *curl_message = curl_multi_info_read(curlm, &num_messages); |
| 118 | |
| 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) |
| 125 | slot = slot->next; |
| 126 | if (slot != NULL) { |
| 127 | curl_multi_remove_handle(curlm, slot->curl); |
| 128 | slot->curl_result = curl_result; |
| 129 | finish_active_slot(slot); |
| 130 | } else { |
| 131 | fprintf(stderr, "Received DONE message for unknown request!\n"); |
| 132 | } |
| 133 | } else { |
| 134 | fprintf(stderr, "Unknown CURL message received: %d\n", |
| 135 | (int)curl_message->msg); |
| 136 | } |
| 137 | curl_message = curl_multi_info_read(curlm, &num_messages); |
| 138 | } |
| 139 | } |
| 140 | #endif |
| 141 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 142 | static int http_options(const char *var, const char *value, void *cb) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 143 | { |
| 144 | if (!strcmp("http.sslverify", var)) { |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 145 | curl_ssl_verify = git_config_bool(var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 146 | return 0; |
| 147 | } |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 148 | if (!strcmp("http.sslcert", var)) |
| 149 | return git_config_string(&ssl_cert, var, value); |
Mark Lodato | ef52aaf | 2009-06-14 22:39:00 -0400 | [diff] [blame] | 150 | #if LIBCURL_VERSION_NUM >= 0x070903 |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 151 | if (!strcmp("http.sslkey", var)) |
| 152 | return git_config_string(&ssl_key, var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 153 | #endif |
| 154 | #if LIBCURL_VERSION_NUM >= 0x070908 |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 155 | if (!strcmp("http.sslcapath", var)) |
| 156 | return git_config_string(&ssl_capath, var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 157 | #endif |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 158 | if (!strcmp("http.sslcainfo", var)) |
| 159 | return git_config_string(&ssl_cainfo, var, value); |
Mark Lodato | 754ae19 | 2009-05-27 23:16:03 -0400 | [diff] [blame] | 160 | if (!strcmp("http.sslcertpasswordprotected", var)) { |
| 161 | if (git_config_bool(var, value)) |
| 162 | ssl_cert_password_required = 1; |
| 163 | return 0; |
| 164 | } |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 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; |
| 170 | #endif |
| 171 | return 0; |
| 172 | } |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 173 | #ifdef USE_CURL_MULTI |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 174 | if (!strcmp("http.maxrequests", var)) { |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 175 | max_requests = git_config_int(var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 176 | return 0; |
| 177 | } |
| 178 | #endif |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 179 | if (!strcmp("http.lowspeedlimit", var)) { |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 180 | curl_low_speed_limit = (long)git_config_int(var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 181 | return 0; |
| 182 | } |
| 183 | if (!strcmp("http.lowspeedtime", var)) { |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 184 | curl_low_speed_time = (long)git_config_int(var, value); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
Sasha Khapyorsky | 3ea099d | 2006-09-29 03:10:44 +0300 | [diff] [blame] | 188 | if (!strcmp("http.noepsv", var)) { |
| 189 | curl_ftp_no_epsv = git_config_bool(var, value); |
| 190 | return 0; |
| 191 | } |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 192 | if (!strcmp("http.proxy", var)) |
| 193 | return git_config_string(&curl_http_proxy, var, value); |
Sasha Khapyorsky | 3ea099d | 2006-09-29 03:10:44 +0300 | [diff] [blame] | 194 | |
Duncan Brown | bcfb95d | 2011-06-02 16:31:25 -0400 | [diff] [blame] | 195 | if (!strcmp("http.cookiefile", var)) |
| 196 | return git_config_string(&curl_cookie_file, var, value); |
| 197 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 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; |
| 202 | return 0; |
| 203 | } |
| 204 | |
Spencer E. Olson | b1d1058 | 2010-08-11 14:40:38 -0600 | [diff] [blame] | 205 | if (!strcmp("http.useragent", var)) |
| 206 | return git_config_string(&user_agent, var, value); |
| 207 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 208 | /* Fall back on the default ones */ |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 209 | return git_default_config(var, value, cb); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 210 | } |
| 211 | |
Junio C Hamano | c33976c | 2009-03-09 23:34:25 -0700 | [diff] [blame] | 212 | static void init_curl_http_auth(CURL *result) |
| 213 | { |
Jeff King | 6f4c347 | 2012-04-13 02:19:25 -0400 | [diff] [blame] | 214 | if (!http_auth.username) |
| 215 | return; |
| 216 | |
| 217 | credential_fill(&http_auth); |
| 218 | |
| 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); |
| 222 | #else |
| 223 | { |
Jeff King | aa0834a | 2012-04-13 02:18:35 -0400 | [diff] [blame] | 224 | static struct strbuf up = STRBUF_INIT; |
Jeff King | aa0834a | 2012-04-13 02:18:35 -0400 | [diff] [blame] | 225 | strbuf_reset(&up); |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 226 | strbuf_addf(&up, "%s:%s", |
| 227 | http_auth.username, http_auth.password); |
Jeff King | aa0834a | 2012-04-13 02:18:35 -0400 | [diff] [blame] | 228 | curl_easy_setopt(result, CURLOPT_USERPWD, up.buf); |
Junio C Hamano | c33976c | 2009-03-09 23:34:25 -0700 | [diff] [blame] | 229 | } |
Jeff King | 6f4c347 | 2012-04-13 02:19:25 -0400 | [diff] [blame] | 230 | #endif |
Junio C Hamano | c33976c | 2009-03-09 23:34:25 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 233 | static int has_cert_password(void) |
| 234 | { |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 235 | if (ssl_cert == NULL || ssl_cert_password_required != 1) |
| 236 | return 0; |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 237 | if (!cert_auth.password) { |
| 238 | cert_auth.protocol = xstrdup("cert"); |
| 239 | cert_auth.path = xstrdup(ssl_cert); |
| 240 | credential_fill(&cert_auth); |
| 241 | } |
| 242 | return 1; |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 243 | } |
| 244 | |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 245 | static CURL *get_curl_handle(void) |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 246 | { |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 247 | CURL *result = curl_easy_init(); |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 248 | |
Junio C Hamano | a5ccc59 | 2008-02-21 15:10:37 -0800 | [diff] [blame] | 249 | if (!curl_ssl_verify) { |
| 250 | curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, 0); |
| 251 | curl_easy_setopt(result, CURLOPT_SSL_VERIFYHOST, 0); |
| 252 | } else { |
| 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); |
| 257 | } |
| 258 | |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 259 | #if LIBCURL_VERSION_NUM >= 0x070907 |
| 260 | curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL); |
| 261 | #endif |
Martin Storsjö | b8ac923 | 2009-11-27 23:43:08 +0800 | [diff] [blame] | 262 | #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY |
Junio C Hamano | 525ecd2 | 2009-12-28 10:04:24 -0800 | [diff] [blame] | 263 | curl_easy_setopt(result, CURLOPT_HTTPAUTH, CURLAUTH_ANY); |
Martin Storsjö | b8ac923 | 2009-11-27 23:43:08 +0800 | [diff] [blame] | 264 | #endif |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 265 | |
Jeff King | a4ddbc3 | 2011-12-13 19:11:56 -0500 | [diff] [blame] | 266 | if (http_proactive_auth) |
| 267 | init_curl_http_auth(result); |
| 268 | |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 269 | if (ssl_cert != NULL) |
| 270 | curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert); |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 271 | if (has_cert_password()) |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 272 | curl_easy_setopt(result, CURLOPT_KEYPASSWD, cert_auth.password); |
Mark Lodato | ef52aaf | 2009-06-14 22:39:00 -0400 | [diff] [blame] | 273 | #if LIBCURL_VERSION_NUM >= 0x070903 |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 274 | if (ssl_key != NULL) |
| 275 | curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key); |
| 276 | #endif |
| 277 | #if LIBCURL_VERSION_NUM >= 0x070908 |
| 278 | if (ssl_capath != NULL) |
| 279 | curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath); |
| 280 | #endif |
| 281 | if (ssl_cainfo != NULL) |
| 282 | curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo); |
| 283 | curl_easy_setopt(result, CURLOPT_FAILONERROR, 1); |
| 284 | |
| 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); |
| 290 | } |
| 291 | |
| 292 | curl_easy_setopt(result, CURLOPT_FOLLOWLOCATION, 1); |
Tay Ray Chuan | 311e2ea | 2010-09-25 12:20:35 +0800 | [diff] [blame] | 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); |
| 297 | #endif |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 298 | |
Mark Wooding | 7982d74 | 2006-02-01 11:44:37 +0000 | [diff] [blame] | 299 | if (getenv("GIT_CURL_VERBOSE")) |
| 300 | curl_easy_setopt(result, CURLOPT_VERBOSE, 1); |
| 301 | |
Spencer E. Olson | b1d1058 | 2010-08-11 14:40:38 -0600 | [diff] [blame] | 302 | curl_easy_setopt(result, CURLOPT_USERAGENT, |
Jeff King | 745c7c8 | 2012-06-02 15:03:08 -0400 | [diff] [blame] | 303 | user_agent ? user_agent : git_user_agent()); |
Nick Hengeveld | 20fc9bc | 2006-04-04 10:11:29 -0700 | [diff] [blame] | 304 | |
Sasha Khapyorsky | 3ea099d | 2006-09-29 03:10:44 +0300 | [diff] [blame] | 305 | if (curl_ftp_no_epsv) |
| 306 | curl_easy_setopt(result, CURLOPT_FTP_USE_EPSV, 0); |
| 307 | |
Nelson Benitez Leon | dd61399 | 2012-03-02 14:55:57 +0100 | [diff] [blame] | 308 | if (curl_http_proxy) { |
Sam Vilain | 9c5665a | 2007-11-23 13:07:00 +1300 | [diff] [blame] | 309 | curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy); |
Nelson Benitez Leon | dd61399 | 2012-03-02 14:55:57 +0100 | [diff] [blame] | 310 | curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY); |
| 311 | } |
Sam Vilain | 9c5665a | 2007-11-23 13:07:00 +1300 | [diff] [blame] | 312 | |
Junio C Hamano | 11979b9 | 2005-11-18 17:06:46 -0800 | [diff] [blame] | 313 | return result; |
| 314 | } |
| 315 | |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 316 | static void set_from_env(const char **var, const char *envname) |
| 317 | { |
| 318 | const char *val = getenv(envname); |
| 319 | if (val) |
| 320 | *var = val; |
| 321 | } |
| 322 | |
Jeff King | a4ddbc3 | 2011-12-13 19:11:56 -0500 | [diff] [blame] | 323 | void http_init(struct remote *remote, const char *url, int proactive_auth) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 324 | { |
| 325 | char *low_speed_limit; |
| 326 | char *low_speed_time; |
| 327 | |
Tay Ray Chuan | e917674 | 2009-06-06 16:43:41 +0800 | [diff] [blame] | 328 | http_is_verbose = 0; |
| 329 | |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 330 | git_config(http_options, NULL); |
| 331 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 332 | curl_global_init(CURL_GLOBAL_ALL); |
| 333 | |
Jeff King | a4ddbc3 | 2011-12-13 19:11:56 -0500 | [diff] [blame] | 334 | http_proactive_auth = proactive_auth; |
| 335 | |
Mike Hommey | 9fc6440 | 2008-02-27 21:35:50 +0100 | [diff] [blame] | 336 | if (remote && remote->http_proxy) |
| 337 | curl_http_proxy = xstrdup(remote->http_proxy); |
| 338 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 339 | pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache"); |
Tay Ray Chuan | e917674 | 2009-06-06 16:43:41 +0800 | [diff] [blame] | 340 | no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:"); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 341 | |
| 342 | #ifdef USE_CURL_MULTI |
| 343 | { |
| 344 | char *http_max_requests = getenv("GIT_HTTP_MAX_REQUESTS"); |
| 345 | if (http_max_requests != NULL) |
| 346 | max_requests = atoi(http_max_requests); |
| 347 | } |
| 348 | |
| 349 | curlm = curl_multi_init(); |
| 350 | if (curlm == NULL) { |
| 351 | fprintf(stderr, "Error creating curl multi handle.\n"); |
| 352 | exit(1); |
| 353 | } |
| 354 | #endif |
| 355 | |
| 356 | if (getenv("GIT_SSL_NO_VERIFY")) |
| 357 | curl_ssl_verify = 0; |
| 358 | |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 359 | set_from_env(&ssl_cert, "GIT_SSL_CERT"); |
Mark Lodato | ef52aaf | 2009-06-14 22:39:00 -0400 | [diff] [blame] | 360 | #if LIBCURL_VERSION_NUM >= 0x070903 |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 361 | set_from_env(&ssl_key, "GIT_SSL_KEY"); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 362 | #endif |
| 363 | #if LIBCURL_VERSION_NUM >= 0x070908 |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 364 | set_from_env(&ssl_capath, "GIT_SSL_CAPATH"); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 365 | #endif |
Junio C Hamano | 7059cd9 | 2009-03-09 19:00:30 -0700 | [diff] [blame] | 366 | set_from_env(&ssl_cainfo, "GIT_SSL_CAINFO"); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 367 | |
Spencer E. Olson | b1d1058 | 2010-08-11 14:40:38 -0600 | [diff] [blame] | 368 | set_from_env(&user_agent, "GIT_HTTP_USER_AGENT"); |
| 369 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 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); |
| 376 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 377 | if (curl_ssl_verify == -1) |
| 378 | curl_ssl_verify = 1; |
| 379 | |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 380 | curl_session_count = 0; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 381 | #ifdef USE_CURL_MULTI |
| 382 | if (max_requests < 1) |
| 383 | max_requests = DEFAULT_MAX_REQUESTS; |
| 384 | #endif |
| 385 | |
Sasha Khapyorsky | 3ea099d | 2006-09-29 03:10:44 +0300 | [diff] [blame] | 386 | if (getenv("GIT_CURL_FTP_NO_EPSV")) |
| 387 | curl_ftp_no_epsv = 1; |
| 388 | |
Jeff King | deba493 | 2011-10-14 09:40:40 +0200 | [diff] [blame] | 389 | if (url) { |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 390 | credential_from_url(&http_auth, url); |
Mark Lodato | 754ae19 | 2009-05-27 23:16:03 -0400 | [diff] [blame] | 391 | if (!ssl_cert_password_required && |
| 392 | getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") && |
Jeff King | deba493 | 2011-10-14 09:40:40 +0200 | [diff] [blame] | 393 | !prefixcmp(url, "https://")) |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 394 | ssl_cert_password_required = 1; |
| 395 | } |
Junio C Hamano | c33976c | 2009-03-09 23:34:25 -0700 | [diff] [blame] | 396 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 397 | #ifndef NO_CURL_EASY_DUPHANDLE |
| 398 | curl_default = get_curl_handle(); |
| 399 | #endif |
| 400 | } |
| 401 | |
| 402 | void http_cleanup(void) |
| 403 | { |
| 404 | struct active_request_slot *slot = active_queue_head; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 405 | |
| 406 | while (slot != NULL) { |
Shawn O. Pearce | 3278cd0 | 2007-09-15 03:23:00 -0400 | [diff] [blame] | 407 | struct active_request_slot *next = slot->next; |
Mike Hommey | f23d1f7 | 2008-03-03 20:30:16 +0100 | [diff] [blame] | 408 | if (slot->curl != NULL) { |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 409 | #ifdef USE_CURL_MULTI |
Mike Hommey | f23d1f7 | 2008-03-03 20:30:16 +0100 | [diff] [blame] | 410 | curl_multi_remove_handle(curlm, slot->curl); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 411 | #endif |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 412 | curl_easy_cleanup(slot->curl); |
Mike Hommey | f23d1f7 | 2008-03-03 20:30:16 +0100 | [diff] [blame] | 413 | } |
Shawn O. Pearce | 3278cd0 | 2007-09-15 03:23:00 -0400 | [diff] [blame] | 414 | free(slot); |
| 415 | slot = next; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 416 | } |
Shawn O. Pearce | 3278cd0 | 2007-09-15 03:23:00 -0400 | [diff] [blame] | 417 | active_queue_head = NULL; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 418 | |
| 419 | #ifndef NO_CURL_EASY_DUPHANDLE |
| 420 | curl_easy_cleanup(curl_default); |
| 421 | #endif |
| 422 | |
| 423 | #ifdef USE_CURL_MULTI |
| 424 | curl_multi_cleanup(curlm); |
| 425 | #endif |
| 426 | curl_global_cleanup(); |
Nick Hengeveld | b3ca4e4e | 2006-06-06 09:41:32 -0700 | [diff] [blame] | 427 | |
| 428 | curl_slist_free_all(pragma_header); |
Shawn O. Pearce | 3278cd0 | 2007-09-15 03:23:00 -0400 | [diff] [blame] | 429 | pragma_header = NULL; |
Mike Hommey | 9fc6440 | 2008-02-27 21:35:50 +0100 | [diff] [blame] | 430 | |
Tay Ray Chuan | e917674 | 2009-06-06 16:43:41 +0800 | [diff] [blame] | 431 | curl_slist_free_all(no_pragma_header); |
| 432 | no_pragma_header = NULL; |
| 433 | |
Mike Hommey | 9fc6440 | 2008-02-27 21:35:50 +0100 | [diff] [blame] | 434 | if (curl_http_proxy) { |
Miklos Vajna | e4a80ec | 2008-12-07 01:45:37 +0100 | [diff] [blame] | 435 | free((void *)curl_http_proxy); |
Mike Hommey | 9fc6440 | 2008-02-27 21:35:50 +0100 | [diff] [blame] | 436 | curl_http_proxy = NULL; |
| 437 | } |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 438 | |
Jeff King | 148bb6a | 2011-12-10 05:31:21 -0500 | [diff] [blame] | 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; |
Mark Lodato | 30dd916 | 2009-05-27 23:16:02 -0400 | [diff] [blame] | 443 | } |
| 444 | ssl_cert_password_required = 0; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 445 | } |
| 446 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 447 | struct active_request_slot *get_active_slot(void) |
| 448 | { |
| 449 | struct active_request_slot *slot = active_queue_head; |
| 450 | struct active_request_slot *newslot; |
| 451 | |
| 452 | #ifdef USE_CURL_MULTI |
| 453 | int num_transfers; |
| 454 | |
| 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); |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 458 | if (num_transfers < active_requests) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 459 | process_curl_messages(); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 460 | } |
| 461 | #endif |
| 462 | |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 463 | while (slot != NULL && slot->in_use) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 464 | slot = slot->next; |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 465 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 466 | if (slot == NULL) { |
| 467 | newslot = xmalloc(sizeof(*newslot)); |
| 468 | newslot->curl = NULL; |
| 469 | newslot->in_use = 0; |
| 470 | newslot->next = NULL; |
| 471 | |
| 472 | slot = active_queue_head; |
| 473 | if (slot == NULL) { |
| 474 | active_queue_head = newslot; |
| 475 | } else { |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 476 | while (slot->next != NULL) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 477 | slot = slot->next; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 478 | slot->next = newslot; |
| 479 | } |
| 480 | slot = newslot; |
| 481 | } |
| 482 | |
| 483 | if (slot->curl == NULL) { |
| 484 | #ifdef NO_CURL_EASY_DUPHANDLE |
| 485 | slot->curl = get_curl_handle(); |
| 486 | #else |
| 487 | slot->curl = curl_easy_duphandle(curl_default); |
| 488 | #endif |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 489 | curl_session_count++; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | active_requests++; |
| 493 | slot->in_use = 1; |
Nick Hengeveld | c8568e1 | 2006-01-31 11:06:55 -0800 | [diff] [blame] | 494 | slot->results = NULL; |
Nick Hengeveld | baa7b67 | 2006-03-10 20:18:01 -0800 | [diff] [blame] | 495 | slot->finished = NULL; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 496 | slot->callback_data = NULL; |
| 497 | slot->callback_func = NULL; |
Duncan Brown | bcfb95d | 2011-06-02 16:31:25 -0400 | [diff] [blame] | 498 | curl_easy_setopt(slot->curl, CURLOPT_COOKIEFILE, curl_cookie_file); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 499 | curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, pragma_header); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 500 | curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, curl_errorstr); |
Nick Hengeveld | 9094950 | 2006-05-31 16:25:03 -0700 | [diff] [blame] | 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); |
Junio C Hamano | 1e41827 | 2011-04-26 08:04:49 -0700 | [diff] [blame] | 504 | curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL); |
Nick Hengeveld | 9094950 | 2006-05-31 16:25:03 -0700 | [diff] [blame] | 505 | curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0); |
| 506 | curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1); |
Jeff King | dfa1725 | 2012-04-10 11:53:40 +0200 | [diff] [blame] | 507 | if (http_auth.password) |
| 508 | init_curl_http_auth(slot->curl); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 509 | |
| 510 | return slot; |
| 511 | } |
| 512 | |
| 513 | int start_active_slot(struct active_request_slot *slot) |
| 514 | { |
| 515 | #ifdef USE_CURL_MULTI |
| 516 | CURLMcode curlm_result = curl_multi_add_handle(curlm, slot->curl); |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 517 | int num_transfers; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 518 | |
| 519 | if (curlm_result != CURLM_OK && |
| 520 | curlm_result != CURLM_CALL_MULTI_PERFORM) { |
| 521 | active_requests--; |
| 522 | slot->in_use = 0; |
| 523 | return 0; |
| 524 | } |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 525 | |
| 526 | /* |
| 527 | * We know there must be something to do, since we just added |
| 528 | * something. |
| 529 | */ |
| 530 | curl_multi_perform(curlm, &num_transfers); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 531 | #endif |
| 532 | return 1; |
| 533 | } |
| 534 | |
| 535 | #ifdef USE_CURL_MULTI |
Daniel Barkalow | fc57b6a | 2007-09-10 23:02:34 -0400 | [diff] [blame] | 536 | struct fill_chain { |
| 537 | void *data; |
| 538 | int (*fill)(void *); |
| 539 | struct fill_chain *next; |
| 540 | }; |
| 541 | |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 542 | static struct fill_chain *fill_cfg; |
Daniel Barkalow | fc57b6a | 2007-09-10 23:02:34 -0400 | [diff] [blame] | 543 | |
| 544 | void add_fill_function(void *data, int (*fill)(void *)) |
| 545 | { |
Dotan Barak | e8eec71 | 2008-09-09 21:57:10 +0300 | [diff] [blame] | 546 | struct fill_chain *new = xmalloc(sizeof(*new)); |
Daniel Barkalow | fc57b6a | 2007-09-10 23:02:34 -0400 | [diff] [blame] | 547 | struct fill_chain **linkp = &fill_cfg; |
| 548 | new->data = data; |
| 549 | new->fill = fill; |
| 550 | new->next = NULL; |
| 551 | while (*linkp) |
| 552 | linkp = &(*linkp)->next; |
| 553 | *linkp = new; |
| 554 | } |
| 555 | |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 556 | void fill_active_slots(void) |
| 557 | { |
| 558 | struct active_request_slot *slot = active_queue_head; |
| 559 | |
Daniel Barkalow | fc57b6a | 2007-09-10 23:02:34 -0400 | [diff] [blame] | 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)) |
| 564 | break; |
| 565 | |
| 566 | if (!fill) |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 567 | break; |
Daniel Barkalow | fc57b6a | 2007-09-10 23:02:34 -0400 | [diff] [blame] | 568 | } |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 569 | |
| 570 | while (slot != NULL) { |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 571 | if (!slot->in_use && slot->curl != NULL |
| 572 | && curl_session_count > min_curl_sessions) { |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 573 | curl_easy_cleanup(slot->curl); |
| 574 | slot->curl = NULL; |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 575 | curl_session_count--; |
Daniel Barkalow | 45c1741 | 2007-09-10 23:02:28 -0400 | [diff] [blame] | 576 | } |
| 577 | slot = slot->next; |
| 578 | } |
| 579 | } |
| 580 | |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 581 | void step_active_slots(void) |
| 582 | { |
| 583 | int num_transfers; |
| 584 | CURLMcode curlm_result; |
| 585 | |
| 586 | do { |
| 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(); |
| 591 | fill_active_slots(); |
| 592 | } |
| 593 | } |
| 594 | #endif |
| 595 | |
| 596 | void run_active_slot(struct active_request_slot *slot) |
| 597 | { |
| 598 | #ifdef USE_CURL_MULTI |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 599 | fd_set readfds; |
| 600 | fd_set writefds; |
| 601 | fd_set excfds; |
| 602 | int max_fd; |
| 603 | struct timeval select_timeout; |
Nick Hengeveld | baa7b67 | 2006-03-10 20:18:01 -0800 | [diff] [blame] | 604 | int finished = 0; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 605 | |
Nick Hengeveld | baa7b67 | 2006-03-10 20:18:01 -0800 | [diff] [blame] | 606 | slot->finished = &finished; |
| 607 | while (!finished) { |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 608 | step_active_slots(); |
| 609 | |
Mika Fischer | df26c47 | 2011-11-04 15:19:27 +0100 | [diff] [blame] | 610 | if (slot->in_use) { |
Mika Fischer | eb56c82 | 2011-11-04 15:19:26 +0100 | [diff] [blame] | 611 | #if LIBCURL_VERSION_NUM >= 0x070f04 |
| 612 | long curl_timeout; |
| 613 | curl_multi_timeout(curlm, &curl_timeout); |
| 614 | if (curl_timeout == 0) { |
| 615 | continue; |
| 616 | } else if (curl_timeout == -1) { |
| 617 | select_timeout.tv_sec = 0; |
| 618 | select_timeout.tv_usec = 50000; |
| 619 | } else { |
| 620 | select_timeout.tv_sec = curl_timeout / 1000; |
| 621 | select_timeout.tv_usec = (curl_timeout % 1000) * 1000; |
| 622 | } |
| 623 | #else |
| 624 | select_timeout.tv_sec = 0; |
| 625 | select_timeout.tv_usec = 50000; |
| 626 | #endif |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 627 | |
Mika Fischer | 6f9dd67 | 2011-11-04 15:19:25 +0100 | [diff] [blame] | 628 | max_fd = -1; |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 629 | FD_ZERO(&readfds); |
| 630 | FD_ZERO(&writefds); |
| 631 | FD_ZERO(&excfds); |
Mika Fischer | 6f9dd67 | 2011-11-04 15:19:25 +0100 | [diff] [blame] | 632 | curl_multi_fdset(curlm, &readfds, &writefds, &excfds, &max_fd); |
Mika Fischer | eb56c82 | 2011-11-04 15:19:26 +0100 | [diff] [blame] | 633 | |
Stefan Zager | 7202b81 | 2012-10-19 14:04:20 -0700 | [diff] [blame] | 634 | /* |
| 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. |
| 638 | */ |
| 639 | if (max_fd < 0 && |
| 640 | (select_timeout.tv_sec > 0 || |
| 641 | select_timeout.tv_usec > 50000)) { |
| 642 | select_timeout.tv_sec = 0; |
| 643 | select_timeout.tv_usec = 50000; |
| 644 | } |
| 645 | |
Mika Fischer | 6f9dd67 | 2011-11-04 15:19:25 +0100 | [diff] [blame] | 646 | select(max_fd+1, &readfds, &writefds, &excfds, &select_timeout); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 647 | } |
| 648 | } |
| 649 | #else |
| 650 | while (slot->in_use) { |
| 651 | slot->curl_result = curl_easy_perform(slot->curl); |
| 652 | finish_active_slot(slot); |
| 653 | } |
| 654 | #endif |
| 655 | } |
| 656 | |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 657 | static void closedown_active_slot(struct active_request_slot *slot) |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 658 | { |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 659 | active_requests--; |
| 660 | slot->in_use = 0; |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Junio C Hamano | 83e41e2 | 2010-01-11 22:26:08 -0800 | [diff] [blame] | 663 | static void release_active_slot(struct active_request_slot *slot) |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 664 | { |
| 665 | closedown_active_slot(slot); |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 666 | if (slot->curl && curl_session_count > min_curl_sessions) { |
Nick Hengeveld | b3ca4e4e | 2006-06-06 09:41:32 -0700 | [diff] [blame] | 667 | #ifdef USE_CURL_MULTI |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 668 | curl_multi_remove_handle(curlm, slot->curl); |
Nick Hengeveld | b3ca4e4e | 2006-06-06 09:41:32 -0700 | [diff] [blame] | 669 | #endif |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 670 | curl_easy_cleanup(slot->curl); |
| 671 | slot->curl = NULL; |
Tay Ray Chuan | ad75ebe | 2009-11-27 23:42:26 +0800 | [diff] [blame] | 672 | curl_session_count--; |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 673 | } |
Nick Hengeveld | b3ca4e4e | 2006-06-06 09:41:32 -0700 | [diff] [blame] | 674 | #ifdef USE_CURL_MULTI |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 675 | fill_active_slots(); |
Nick Hengeveld | b3ca4e4e | 2006-06-06 09:41:32 -0700 | [diff] [blame] | 676 | #endif |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Shawn O. Pearce | de1a2fd | 2009-10-30 17:47:41 -0700 | [diff] [blame] | 679 | void finish_active_slot(struct active_request_slot *slot) |
Mark Wooding | 53f3138 | 2006-02-07 10:07:39 +0000 | [diff] [blame] | 680 | { |
| 681 | closedown_active_slot(slot); |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 682 | curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code); |
Nick Hengeveld | c8568e1 | 2006-01-31 11:06:55 -0800 | [diff] [blame] | 683 | |
Nick Hengeveld | baa7b67 | 2006-03-10 20:18:01 -0800 | [diff] [blame] | 684 | if (slot->finished != NULL) |
| 685 | (*slot->finished) = 1; |
| 686 | |
Nick Hengeveld | c8568e1 | 2006-01-31 11:06:55 -0800 | [diff] [blame] | 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; |
| 691 | } |
| 692 | |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 693 | /* Run callback if appropriate */ |
Junio C Hamano | 4251ccb | 2009-03-09 18:47:29 -0700 | [diff] [blame] | 694 | if (slot->callback_func != NULL) |
Mike Hommey | 028c297 | 2007-12-09 20:30:59 +0100 | [diff] [blame] | 695 | slot->callback_func(slot->callback_data); |
Nick Hengeveld | 29508e1 | 2005-11-18 11:02:58 -0800 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | void finish_all_active_slots(void) |
| 699 | { |
| 700 | struct active_request_slot *slot = active_queue_head; |
| 701 | |
| 702 | while (slot != NULL) |
| 703 | if (slot->in_use) { |
| 704 | run_active_slot(slot); |
| 705 | slot = active_queue_head; |
| 706 | } else { |
| 707 | slot = slot->next; |
| 708 | } |
| 709 | } |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 710 | |
Tay Ray Chuan | 5ace994 | 2009-06-06 16:43:43 +0800 | [diff] [blame] | 711 | /* Helpers for modifying and creating URLs */ |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 712 | static inline int needs_quote(int ch) |
| 713 | { |
| 714 | if (((ch >= 'A') && (ch <= 'Z')) |
| 715 | || ((ch >= 'a') && (ch <= 'z')) |
| 716 | || ((ch >= '0') && (ch <= '9')) |
| 717 | || (ch == '/') |
| 718 | || (ch == '-') |
| 719 | || (ch == '.')) |
| 720 | return 0; |
| 721 | return 1; |
| 722 | } |
| 723 | |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 724 | static char *quote_ref_url(const char *base, const char *ref) |
| 725 | { |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 726 | struct strbuf buf = STRBUF_INIT; |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 727 | const char *cp; |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 728 | int ch; |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 729 | |
Tay Ray Chuan | 5ace994 | 2009-06-06 16:43:43 +0800 | [diff] [blame] | 730 | end_url_with_slash(&buf, base); |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 731 | |
| 732 | for (cp = ref; (ch = *cp) != 0; cp++) |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 733 | if (needs_quote(ch)) |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 734 | strbuf_addf(&buf, "%%%02x", ch); |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 735 | else |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 736 | strbuf_addch(&buf, *cp); |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 737 | |
Tay Ray Chuan | 113106e | 2009-03-08 00:47:21 +0800 | [diff] [blame] | 738 | return strbuf_detach(&buf, NULL); |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 739 | } |
| 740 | |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 741 | void append_remote_object_url(struct strbuf *buf, const char *url, |
| 742 | const char *hex, |
| 743 | int only_two_digit_prefix) |
| 744 | { |
Tay Ray Chuan | 800324c | 2009-08-17 17:09:43 +0800 | [diff] [blame] | 745 | end_url_with_slash(buf, url); |
| 746 | |
| 747 | strbuf_addf(buf, "objects/%.*s/", 2, hex); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 748 | if (!only_two_digit_prefix) |
| 749 | strbuf_addf(buf, "%s", hex+2); |
| 750 | } |
| 751 | |
| 752 | char *get_remote_object_url(const char *url, const char *hex, |
| 753 | int only_two_digit_prefix) |
| 754 | { |
| 755 | struct strbuf buf = STRBUF_INIT; |
| 756 | append_remote_object_url(&buf, url, hex, only_two_digit_prefix); |
| 757 | return strbuf_detach(&buf, NULL); |
| 758 | } |
| 759 | |
Jeff King | 1960897 | 2012-10-12 03:35:59 -0400 | [diff] [blame] | 760 | int handle_curl_result(struct slot_results *results) |
Jeff King | 8809703 | 2012-08-27 09:26:04 -0400 | [diff] [blame] | 761 | { |
Jeff King | 8809703 | 2012-08-27 09:26:04 -0400 | [diff] [blame] | 762 | if (results->curl_result == CURLE_OK) { |
| 763 | credential_approve(&http_auth); |
| 764 | return HTTP_OK; |
| 765 | } else if (missing_target(results)) |
| 766 | return HTTP_MISSING_TARGET; |
| 767 | else if (results->http_code == 401) { |
| 768 | if (http_auth.username && http_auth.password) { |
| 769 | credential_reject(&http_auth); |
| 770 | return HTTP_NOAUTH; |
| 771 | } else { |
| 772 | credential_fill(&http_auth); |
Jeff King | 8809703 | 2012-08-27 09:26:04 -0400 | [diff] [blame] | 773 | return HTTP_REAUTH; |
| 774 | } |
| 775 | } else { |
Junio C Hamano | 3503e9a | 2012-09-12 14:08:05 -0700 | [diff] [blame] | 776 | #if LIBCURL_VERSION_NUM >= 0x070c00 |
Jeff King | 8809703 | 2012-08-27 09:26:04 -0400 | [diff] [blame] | 777 | if (!curl_errorstr[0]) |
| 778 | strlcpy(curl_errorstr, |
| 779 | curl_easy_strerror(results->curl_result), |
| 780 | sizeof(curl_errorstr)); |
Junio C Hamano | 3503e9a | 2012-09-12 14:08:05 -0700 | [diff] [blame] | 781 | #endif |
Jeff King | 8809703 | 2012-08-27 09:26:04 -0400 | [diff] [blame] | 782 | return HTTP_ERROR; |
| 783 | } |
| 784 | } |
| 785 | |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 786 | /* http_request() targets */ |
| 787 | #define HTTP_REQUEST_STRBUF 0 |
| 788 | #define HTTP_REQUEST_FILE 1 |
| 789 | |
| 790 | static int http_request(const char *url, void *result, int target, int options) |
| 791 | { |
| 792 | struct active_request_slot *slot; |
| 793 | struct slot_results results; |
| 794 | struct curl_slist *headers = NULL; |
| 795 | struct strbuf buf = STRBUF_INIT; |
| 796 | int ret; |
| 797 | |
| 798 | slot = get_active_slot(); |
| 799 | slot->results = &results; |
| 800 | curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1); |
| 801 | |
| 802 | if (result == NULL) { |
| 803 | curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 1); |
| 804 | } else { |
| 805 | curl_easy_setopt(slot->curl, CURLOPT_NOBODY, 0); |
| 806 | curl_easy_setopt(slot->curl, CURLOPT_FILE, result); |
| 807 | |
| 808 | if (target == HTTP_REQUEST_FILE) { |
| 809 | long posn = ftell(result); |
| 810 | curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, |
| 811 | fwrite); |
| 812 | if (posn > 0) { |
| 813 | strbuf_addf(&buf, "Range: bytes=%ld-", posn); |
| 814 | headers = curl_slist_append(headers, buf.buf); |
| 815 | strbuf_reset(&buf); |
| 816 | } |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 817 | } else |
| 818 | curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, |
| 819 | fwrite_buffer); |
| 820 | } |
| 821 | |
| 822 | strbuf_addstr(&buf, "Pragma:"); |
| 823 | if (options & HTTP_NO_CACHE) |
| 824 | strbuf_addstr(&buf, " no-cache"); |
| 825 | |
| 826 | headers = curl_slist_append(headers, buf.buf); |
| 827 | |
| 828 | curl_easy_setopt(slot->curl, CURLOPT_URL, url); |
| 829 | curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers); |
Shawn O. Pearce | aa90b96 | 2012-09-19 16:12:02 -0700 | [diff] [blame] | 830 | curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip"); |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 831 | |
| 832 | if (start_active_slot(slot)) { |
| 833 | run_active_slot(slot); |
Jeff King | 1960897 | 2012-10-12 03:35:59 -0400 | [diff] [blame] | 834 | ret = handle_curl_result(&results); |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 835 | } else { |
| 836 | error("Unable to start HTTP request for %s", url); |
| 837 | ret = HTTP_START_FAILED; |
| 838 | } |
| 839 | |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 840 | curl_slist_free_all(headers); |
| 841 | strbuf_release(&buf); |
| 842 | |
| 843 | return ret; |
| 844 | } |
| 845 | |
Jeff King | 8d677ed | 2011-07-18 03:50:14 -0400 | [diff] [blame] | 846 | static int http_request_reauth(const char *url, void *result, int target, |
| 847 | int options) |
| 848 | { |
| 849 | int ret = http_request(url, result, target, options); |
| 850 | if (ret != HTTP_REAUTH) |
| 851 | return ret; |
| 852 | return http_request(url, result, target, options); |
| 853 | } |
| 854 | |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 855 | int http_get_strbuf(const char *url, struct strbuf *result, int options) |
| 856 | { |
Jeff King | 8d677ed | 2011-07-18 03:50:14 -0400 | [diff] [blame] | 857 | return http_request_reauth(url, result, HTTP_REQUEST_STRBUF, options); |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 858 | } |
| 859 | |
Junio C Hamano | 83e41e2 | 2010-01-11 22:26:08 -0800 | [diff] [blame] | 860 | /* |
Jim Meyering | a7793a7 | 2012-03-28 10:41:54 +0200 | [diff] [blame] | 861 | * Downloads a URL and stores the result in the given file. |
Junio C Hamano | 83e41e2 | 2010-01-11 22:26:08 -0800 | [diff] [blame] | 862 | * |
| 863 | * If a previous interrupted download is detected (i.e. a previous temporary |
| 864 | * file is still around) the download is resumed. |
| 865 | */ |
| 866 | static int http_get_file(const char *url, const char *filename, int options) |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 867 | { |
| 868 | int ret; |
| 869 | struct strbuf tmpfile = STRBUF_INIT; |
| 870 | FILE *result; |
| 871 | |
| 872 | strbuf_addf(&tmpfile, "%s.temp", filename); |
| 873 | result = fopen(tmpfile.buf, "a"); |
| 874 | if (! result) { |
| 875 | error("Unable to open local file %s", tmpfile.buf); |
| 876 | ret = HTTP_ERROR; |
| 877 | goto cleanup; |
| 878 | } |
| 879 | |
Jeff King | 8d677ed | 2011-07-18 03:50:14 -0400 | [diff] [blame] | 880 | ret = http_request_reauth(url, result, HTTP_REQUEST_FILE, options); |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 881 | fclose(result); |
| 882 | |
| 883 | if ((ret == HTTP_OK) && move_temp_to_file(tmpfile.buf, filename)) |
| 884 | ret = HTTP_ERROR; |
| 885 | cleanup: |
| 886 | strbuf_release(&tmpfile); |
| 887 | return ret; |
| 888 | } |
| 889 | |
| 890 | int http_error(const char *url, int ret) |
| 891 | { |
| 892 | /* http_request has already handled HTTP_START_FAILED. */ |
| 893 | if (ret != HTTP_START_FAILED) |
Jonathan Nieder | 8abc508 | 2011-09-05 17:29:34 -0500 | [diff] [blame] | 894 | error("%s while accessing %s", curl_errorstr, url); |
Mike Hommey | e929cd2 | 2009-06-06 16:43:53 +0800 | [diff] [blame] | 895 | |
| 896 | return ret; |
| 897 | } |
| 898 | |
Daniel Barkalow | c13b263 | 2008-04-26 15:53:09 -0400 | [diff] [blame] | 899 | int http_fetch_ref(const char *base, struct ref *ref) |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 900 | { |
| 901 | char *url; |
| 902 | struct strbuf buffer = STRBUF_INIT; |
Mike Hommey | 0d5896e | 2009-06-06 16:43:55 +0800 | [diff] [blame] | 903 | int ret = -1; |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 904 | |
Daniel Barkalow | c13b263 | 2008-04-26 15:53:09 -0400 | [diff] [blame] | 905 | url = quote_ref_url(base, ref->name); |
Mike Hommey | 0d5896e | 2009-06-06 16:43:55 +0800 | [diff] [blame] | 906 | if (http_get_strbuf(url, &buffer, HTTP_NO_CACHE) == HTTP_OK) { |
| 907 | strbuf_rtrim(&buffer); |
| 908 | if (buffer.len == 40) |
| 909 | ret = get_sha1_hex(buffer.buf, ref->old_sha1); |
| 910 | else if (!prefixcmp(buffer.buf, "ref: ")) { |
| 911 | ref->symref = xstrdup(buffer.buf + 5); |
| 912 | ret = 0; |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 913 | } |
Mike Hommey | d7e9280 | 2007-12-11 00:08:25 +0100 | [diff] [blame] | 914 | } |
| 915 | |
| 916 | strbuf_release(&buffer); |
| 917 | free(url); |
| 918 | return ret; |
| 919 | } |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 920 | |
| 921 | /* Helpers for fetching packs */ |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 922 | static char *fetch_pack_index(unsigned char *sha1, const char *base_url) |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 923 | { |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 924 | char *url, *tmp; |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 925 | struct strbuf buf = STRBUF_INIT; |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 926 | |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 927 | if (http_is_verbose) |
Shawn O. Pearce | 162eb5f | 2010-04-19 07:23:05 -0700 | [diff] [blame] | 928 | fprintf(stderr, "Getting index for pack %s\n", sha1_to_hex(sha1)); |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 929 | |
| 930 | end_url_with_slash(&buf, base_url); |
Shawn O. Pearce | 162eb5f | 2010-04-19 07:23:05 -0700 | [diff] [blame] | 931 | strbuf_addf(&buf, "objects/pack/pack-%s.idx", sha1_to_hex(sha1)); |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 932 | url = strbuf_detach(&buf, NULL); |
| 933 | |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 934 | strbuf_addf(&buf, "%s.temp", sha1_pack_index_name(sha1)); |
| 935 | tmp = strbuf_detach(&buf, NULL); |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 936 | |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 937 | if (http_get_file(url, tmp, 0) != HTTP_OK) { |
Pete Wyckoff | 82247e9 | 2012-04-29 20:28:45 -0400 | [diff] [blame] | 938 | error("Unable to get pack index %s", url); |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 939 | free(tmp); |
| 940 | tmp = NULL; |
| 941 | } |
| 942 | |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 943 | free(url); |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 944 | return tmp; |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 945 | } |
| 946 | |
| 947 | static int fetch_and_setup_pack_index(struct packed_git **packs_head, |
| 948 | unsigned char *sha1, const char *base_url) |
| 949 | { |
| 950 | struct packed_git *new_pack; |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 951 | char *tmp_idx = NULL; |
| 952 | int ret; |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 953 | |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 954 | if (has_pack_index(sha1)) { |
| 955 | new_pack = parse_pack_index(sha1, NULL); |
| 956 | if (!new_pack) |
| 957 | return -1; /* parse_pack_index() already issued error message */ |
| 958 | goto add_pack; |
| 959 | } |
| 960 | |
| 961 | tmp_idx = fetch_pack_index(sha1, base_url); |
| 962 | if (!tmp_idx) |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 963 | return -1; |
| 964 | |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 965 | new_pack = parse_pack_index(sha1, tmp_idx); |
| 966 | if (!new_pack) { |
| 967 | unlink(tmp_idx); |
| 968 | free(tmp_idx); |
| 969 | |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 970 | return -1; /* parse_pack_index() already issued error message */ |
Shawn O. Pearce | 750ef42 | 2010-04-19 07:23:10 -0700 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | ret = verify_pack_index(new_pack); |
| 974 | if (!ret) { |
| 975 | close_pack_index(new_pack); |
| 976 | ret = move_temp_to_file(tmp_idx, sha1_pack_index_name(sha1)); |
| 977 | } |
| 978 | free(tmp_idx); |
| 979 | if (ret) |
| 980 | return -1; |
| 981 | |
| 982 | add_pack: |
Tay Ray Chuan | b8caac2 | 2009-06-06 16:43:59 +0800 | [diff] [blame] | 983 | new_pack->next = *packs_head; |
| 984 | *packs_head = new_pack; |
| 985 | return 0; |
| 986 | } |
| 987 | |
| 988 | int http_get_info_packs(const char *base_url, struct packed_git **packs_head) |
| 989 | { |
| 990 | int ret = 0, i = 0; |
| 991 | char *url, *data; |
| 992 | struct strbuf buf = STRBUF_INIT; |
| 993 | unsigned char sha1[20]; |
| 994 | |
| 995 | end_url_with_slash(&buf, base_url); |
| 996 | strbuf_addstr(&buf, "objects/info/packs"); |
| 997 | url = strbuf_detach(&buf, NULL); |
| 998 | |
| 999 | ret = http_get_strbuf(url, &buf, HTTP_NO_CACHE); |
| 1000 | if (ret != HTTP_OK) |
| 1001 | goto cleanup; |
| 1002 | |
| 1003 | data = buf.buf; |
| 1004 | while (i < buf.len) { |
| 1005 | switch (data[i]) { |
| 1006 | case 'P': |
| 1007 | i++; |
| 1008 | if (i + 52 <= buf.len && |
| 1009 | !prefixcmp(data + i, " pack-") && |
| 1010 | !prefixcmp(data + i + 46, ".pack\n")) { |
| 1011 | get_sha1_hex(data + i + 6, sha1); |
| 1012 | fetch_and_setup_pack_index(packs_head, sha1, |
| 1013 | base_url); |
| 1014 | i += 51; |
| 1015 | break; |
| 1016 | } |
| 1017 | default: |
| 1018 | while (i < buf.len && data[i] != '\n') |
| 1019 | i++; |
| 1020 | } |
| 1021 | i++; |
| 1022 | } |
| 1023 | |
| 1024 | cleanup: |
| 1025 | free(url); |
| 1026 | return ret; |
| 1027 | } |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1028 | |
| 1029 | void release_http_pack_request(struct http_pack_request *preq) |
| 1030 | { |
| 1031 | if (preq->packfile != NULL) { |
| 1032 | fclose(preq->packfile); |
| 1033 | preq->packfile = NULL; |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1034 | } |
| 1035 | if (preq->range_header != NULL) { |
| 1036 | curl_slist_free_all(preq->range_header); |
| 1037 | preq->range_header = NULL; |
| 1038 | } |
| 1039 | preq->slot = NULL; |
| 1040 | free(preq->url); |
| 1041 | } |
| 1042 | |
| 1043 | int finish_http_pack_request(struct http_pack_request *preq) |
| 1044 | { |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1045 | struct packed_git **lst; |
Shawn O. Pearce | 021ab6f | 2010-04-17 13:07:36 -0700 | [diff] [blame] | 1046 | struct packed_git *p = preq->target; |
Shawn O. Pearce | fe72d42 | 2010-04-19 07:23:09 -0700 | [diff] [blame] | 1047 | char *tmp_idx; |
| 1048 | struct child_process ip; |
| 1049 | const char *ip_argv[8]; |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1050 | |
Shawn O. Pearce | fe72d42 | 2010-04-19 07:23:09 -0700 | [diff] [blame] | 1051 | close_pack_index(p); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1052 | |
Shawn O. Pearce | 3065274 | 2010-04-17 13:07:37 -0700 | [diff] [blame] | 1053 | fclose(preq->packfile); |
| 1054 | preq->packfile = NULL; |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1055 | |
| 1056 | lst = preq->lst; |
Shawn O. Pearce | 021ab6f | 2010-04-17 13:07:36 -0700 | [diff] [blame] | 1057 | while (*lst != p) |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1058 | lst = &((*lst)->next); |
| 1059 | *lst = (*lst)->next; |
| 1060 | |
Shawn O. Pearce | fe72d42 | 2010-04-19 07:23:09 -0700 | [diff] [blame] | 1061 | tmp_idx = xstrdup(preq->tmpfile); |
| 1062 | strcpy(tmp_idx + strlen(tmp_idx) - strlen(".pack.temp"), |
| 1063 | ".idx.temp"); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1064 | |
Shawn O. Pearce | fe72d42 | 2010-04-19 07:23:09 -0700 | [diff] [blame] | 1065 | ip_argv[0] = "index-pack"; |
| 1066 | ip_argv[1] = "-o"; |
| 1067 | ip_argv[2] = tmp_idx; |
| 1068 | ip_argv[3] = preq->tmpfile; |
| 1069 | ip_argv[4] = NULL; |
| 1070 | |
| 1071 | memset(&ip, 0, sizeof(ip)); |
| 1072 | ip.argv = ip_argv; |
| 1073 | ip.git_cmd = 1; |
| 1074 | ip.no_stdin = 1; |
| 1075 | ip.no_stdout = 1; |
| 1076 | |
| 1077 | if (run_command(&ip)) { |
| 1078 | unlink(preq->tmpfile); |
| 1079 | unlink(tmp_idx); |
| 1080 | free(tmp_idx); |
| 1081 | return -1; |
| 1082 | } |
| 1083 | |
| 1084 | unlink(sha1_pack_index_name(p->sha1)); |
| 1085 | |
| 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))) { |
| 1088 | free(tmp_idx); |
| 1089 | return -1; |
| 1090 | } |
| 1091 | |
| 1092 | install_packed_git(p); |
| 1093 | free(tmp_idx); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1094 | return 0; |
| 1095 | } |
| 1096 | |
| 1097 | struct http_pack_request *new_http_pack_request( |
| 1098 | struct packed_git *target, const char *base_url) |
| 1099 | { |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1100 | long prev_posn = 0; |
| 1101 | char range[RANGE_HEADER_SIZE]; |
| 1102 | struct strbuf buf = STRBUF_INIT; |
| 1103 | struct http_pack_request *preq; |
| 1104 | |
Tay Ray Chuan | ec99c9a | 2011-08-03 19:54:03 +0800 | [diff] [blame] | 1105 | preq = xcalloc(1, sizeof(*preq)); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1106 | preq->target = target; |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1107 | |
| 1108 | end_url_with_slash(&buf, base_url); |
| 1109 | strbuf_addf(&buf, "objects/pack/pack-%s.pack", |
| 1110 | sha1_to_hex(target->sha1)); |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1111 | preq->url = strbuf_detach(&buf, NULL); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1112 | |
Tay Ray Chuan | 90d0571 | 2010-04-19 22:46:43 +0800 | [diff] [blame] | 1113 | snprintf(preq->tmpfile, sizeof(preq->tmpfile), "%s.temp", |
| 1114 | sha1_pack_name(target->sha1)); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1115 | preq->packfile = fopen(preq->tmpfile, "a"); |
| 1116 | if (!preq->packfile) { |
| 1117 | error("Unable to open local file %s for pack", |
| 1118 | preq->tmpfile); |
| 1119 | goto abort; |
| 1120 | } |
| 1121 | |
| 1122 | preq->slot = get_active_slot(); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1123 | curl_easy_setopt(preq->slot->curl, CURLOPT_FILE, preq->packfile); |
| 1124 | curl_easy_setopt(preq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite); |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1125 | curl_easy_setopt(preq->slot->curl, CURLOPT_URL, preq->url); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1126 | curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER, |
| 1127 | no_pragma_header); |
| 1128 | |
| 1129 | /* |
| 1130 | * If there is data present from a previous transfer attempt, |
| 1131 | * resume where it left off |
| 1132 | */ |
| 1133 | prev_posn = ftell(preq->packfile); |
| 1134 | if (prev_posn>0) { |
| 1135 | if (http_is_verbose) |
| 1136 | fprintf(stderr, |
| 1137 | "Resuming fetch of pack %s at byte %ld\n", |
| 1138 | sha1_to_hex(target->sha1), prev_posn); |
| 1139 | sprintf(range, "Range: bytes=%ld-", prev_posn); |
| 1140 | preq->range_header = curl_slist_append(NULL, range); |
| 1141 | curl_easy_setopt(preq->slot->curl, CURLOPT_HTTPHEADER, |
| 1142 | preq->range_header); |
| 1143 | } |
| 1144 | |
| 1145 | return preq; |
| 1146 | |
| 1147 | abort: |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1148 | free(preq->url); |
Tay Ray Chuan | 5ae9ebf | 2009-08-10 23:55:48 +0800 | [diff] [blame] | 1149 | free(preq); |
Tay Ray Chuan | 2264dfa | 2009-06-06 16:44:01 +0800 | [diff] [blame] | 1150 | return NULL; |
| 1151 | } |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1152 | |
| 1153 | /* Helpers for fetching objects (loose) */ |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 1154 | static size_t fwrite_sha1_file(char *ptr, size_t eltsize, size_t nmemb, |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1155 | void *data) |
| 1156 | { |
| 1157 | unsigned char expn[4096]; |
| 1158 | size_t size = eltsize * nmemb; |
| 1159 | int posn = 0; |
| 1160 | struct http_object_request *freq = |
| 1161 | (struct http_object_request *)data; |
| 1162 | do { |
| 1163 | ssize_t retval = xwrite(freq->localfile, |
| 1164 | (char *) ptr + posn, size - posn); |
| 1165 | if (retval < 0) |
| 1166 | return posn; |
| 1167 | posn += retval; |
| 1168 | } while (posn < size); |
| 1169 | |
| 1170 | freq->stream.avail_in = size; |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 1171 | freq->stream.next_in = (void *)ptr; |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1172 | do { |
| 1173 | freq->stream.next_out = expn; |
| 1174 | freq->stream.avail_out = sizeof(expn); |
| 1175 | freq->zret = git_inflate(&freq->stream, Z_SYNC_FLUSH); |
| 1176 | git_SHA1_Update(&freq->c, expn, |
| 1177 | sizeof(expn) - freq->stream.avail_out); |
| 1178 | } while (freq->stream.avail_in && freq->zret == Z_OK); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1179 | return size; |
| 1180 | } |
| 1181 | |
| 1182 | struct http_object_request *new_http_object_request(const char *base_url, |
| 1183 | unsigned char *sha1) |
| 1184 | { |
| 1185 | char *hex = sha1_to_hex(sha1); |
| 1186 | char *filename; |
| 1187 | char prevfile[PATH_MAX]; |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1188 | int prevlocal; |
Dan McGee | a04ff3e | 2011-05-03 23:47:27 +0800 | [diff] [blame] | 1189 | char prev_buf[PREV_BUF_SIZE]; |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1190 | ssize_t prev_read = 0; |
| 1191 | long prev_posn = 0; |
| 1192 | char range[RANGE_HEADER_SIZE]; |
| 1193 | struct curl_slist *range_header = NULL; |
| 1194 | struct http_object_request *freq; |
| 1195 | |
Tay Ray Chuan | ec99c9a | 2011-08-03 19:54:03 +0800 | [diff] [blame] | 1196 | freq = xcalloc(1, sizeof(*freq)); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1197 | hashcpy(freq->sha1, sha1); |
| 1198 | freq->localfile = -1; |
| 1199 | |
| 1200 | filename = sha1_file_name(sha1); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1201 | snprintf(freq->tmpfile, sizeof(freq->tmpfile), |
| 1202 | "%s.temp", filename); |
| 1203 | |
| 1204 | snprintf(prevfile, sizeof(prevfile), "%s.prev", filename); |
| 1205 | unlink_or_warn(prevfile); |
| 1206 | rename(freq->tmpfile, prevfile); |
| 1207 | unlink_or_warn(freq->tmpfile); |
| 1208 | |
| 1209 | if (freq->localfile != -1) |
| 1210 | error("fd leakage in start: %d", freq->localfile); |
| 1211 | freq->localfile = open(freq->tmpfile, |
| 1212 | O_WRONLY | O_CREAT | O_EXCL, 0666); |
| 1213 | /* |
| 1214 | * This could have failed due to the "lazy directory creation"; |
| 1215 | * try to mkdir the last path component. |
| 1216 | */ |
| 1217 | if (freq->localfile < 0 && errno == ENOENT) { |
| 1218 | char *dir = strrchr(freq->tmpfile, '/'); |
| 1219 | if (dir) { |
| 1220 | *dir = 0; |
| 1221 | mkdir(freq->tmpfile, 0777); |
| 1222 | *dir = '/'; |
| 1223 | } |
| 1224 | freq->localfile = open(freq->tmpfile, |
| 1225 | O_WRONLY | O_CREAT | O_EXCL, 0666); |
| 1226 | } |
| 1227 | |
| 1228 | if (freq->localfile < 0) { |
Shawn O. Pearce | 0da8b2e | 2010-04-17 13:07:38 -0700 | [diff] [blame] | 1229 | error("Couldn't create temporary file %s: %s", |
| 1230 | freq->tmpfile, strerror(errno)); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1231 | goto abort; |
| 1232 | } |
| 1233 | |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1234 | git_inflate_init(&freq->stream); |
| 1235 | |
| 1236 | git_SHA1_Init(&freq->c); |
| 1237 | |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1238 | freq->url = get_remote_object_url(base_url, hex, 0); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1239 | |
| 1240 | /* |
| 1241 | * If a previous temp file is present, process what was already |
| 1242 | * fetched. |
| 1243 | */ |
| 1244 | prevlocal = open(prevfile, O_RDONLY); |
| 1245 | if (prevlocal != -1) { |
| 1246 | do { |
| 1247 | prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE); |
| 1248 | if (prev_read>0) { |
| 1249 | if (fwrite_sha1_file(prev_buf, |
| 1250 | 1, |
| 1251 | prev_read, |
| 1252 | freq) == prev_read) { |
| 1253 | prev_posn += prev_read; |
| 1254 | } else { |
| 1255 | prev_read = -1; |
| 1256 | } |
| 1257 | } |
| 1258 | } while (prev_read > 0); |
| 1259 | close(prevlocal); |
| 1260 | } |
| 1261 | unlink_or_warn(prevfile); |
| 1262 | |
| 1263 | /* |
| 1264 | * Reset inflate/SHA1 if there was an error reading the previous temp |
| 1265 | * file; also rewind to the beginning of the local file. |
| 1266 | */ |
| 1267 | if (prev_read == -1) { |
| 1268 | memset(&freq->stream, 0, sizeof(freq->stream)); |
| 1269 | git_inflate_init(&freq->stream); |
| 1270 | git_SHA1_Init(&freq->c); |
| 1271 | if (prev_posn>0) { |
| 1272 | prev_posn = 0; |
| 1273 | lseek(freq->localfile, 0, SEEK_SET); |
Jeff Lasslett | 0c4f21e | 2009-08-11 00:05:06 +0800 | [diff] [blame] | 1274 | if (ftruncate(freq->localfile, 0) < 0) { |
Shawn O. Pearce | 0da8b2e | 2010-04-17 13:07:38 -0700 | [diff] [blame] | 1275 | error("Couldn't truncate temporary file %s: %s", |
| 1276 | freq->tmpfile, strerror(errno)); |
Jeff Lasslett | 0c4f21e | 2009-08-11 00:05:06 +0800 | [diff] [blame] | 1277 | goto abort; |
| 1278 | } |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1279 | } |
| 1280 | } |
| 1281 | |
| 1282 | freq->slot = get_active_slot(); |
| 1283 | |
| 1284 | curl_easy_setopt(freq->slot->curl, CURLOPT_FILE, freq); |
| 1285 | curl_easy_setopt(freq->slot->curl, CURLOPT_WRITEFUNCTION, fwrite_sha1_file); |
| 1286 | curl_easy_setopt(freq->slot->curl, CURLOPT_ERRORBUFFER, freq->errorstr); |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1287 | curl_easy_setopt(freq->slot->curl, CURLOPT_URL, freq->url); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1288 | curl_easy_setopt(freq->slot->curl, CURLOPT_HTTPHEADER, no_pragma_header); |
| 1289 | |
| 1290 | /* |
| 1291 | * If we have successfully processed data from a previous fetch |
| 1292 | * attempt, only fetch the data we don't already have. |
| 1293 | */ |
| 1294 | if (prev_posn>0) { |
| 1295 | if (http_is_verbose) |
| 1296 | fprintf(stderr, |
| 1297 | "Resuming fetch of object %s at byte %ld\n", |
| 1298 | hex, prev_posn); |
| 1299 | sprintf(range, "Range: bytes=%ld-", prev_posn); |
| 1300 | range_header = curl_slist_append(range_header, range); |
| 1301 | curl_easy_setopt(freq->slot->curl, |
| 1302 | CURLOPT_HTTPHEADER, range_header); |
| 1303 | } |
| 1304 | |
| 1305 | return freq; |
| 1306 | |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1307 | abort: |
Tay Ray Chuan | bb99190 | 2009-08-10 23:59:55 +0800 | [diff] [blame] | 1308 | free(freq->url); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1309 | free(freq); |
| 1310 | return NULL; |
| 1311 | } |
| 1312 | |
| 1313 | void process_http_object_request(struct http_object_request *freq) |
| 1314 | { |
| 1315 | if (freq->slot == NULL) |
| 1316 | return; |
| 1317 | freq->curl_result = freq->slot->curl_result; |
| 1318 | freq->http_code = freq->slot->http_code; |
| 1319 | freq->slot = NULL; |
| 1320 | } |
| 1321 | |
| 1322 | int finish_http_object_request(struct http_object_request *freq) |
| 1323 | { |
| 1324 | struct stat st; |
| 1325 | |
| 1326 | close(freq->localfile); |
| 1327 | freq->localfile = -1; |
| 1328 | |
| 1329 | process_http_object_request(freq); |
| 1330 | |
| 1331 | if (freq->http_code == 416) { |
Thiago Farina | bd757c1 | 2010-01-03 11:20:30 -0500 | [diff] [blame] | 1332 | warning("requested range invalid; we may already have all the data."); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1333 | } else if (freq->curl_result != CURLE_OK) { |
| 1334 | if (stat(freq->tmpfile, &st) == 0) |
| 1335 | if (st.st_size == 0) |
| 1336 | unlink_or_warn(freq->tmpfile); |
| 1337 | return -1; |
| 1338 | } |
| 1339 | |
| 1340 | git_inflate_end(&freq->stream); |
| 1341 | git_SHA1_Final(freq->real_sha1, &freq->c); |
| 1342 | if (freq->zret != Z_STREAM_END) { |
| 1343 | unlink_or_warn(freq->tmpfile); |
| 1344 | return -1; |
| 1345 | } |
| 1346 | if (hashcmp(freq->sha1, freq->real_sha1)) { |
| 1347 | unlink_or_warn(freq->tmpfile); |
| 1348 | return -1; |
| 1349 | } |
| 1350 | freq->rename = |
Shawn O. Pearce | 0da8b2e | 2010-04-17 13:07:38 -0700 | [diff] [blame] | 1351 | move_temp_to_file(freq->tmpfile, sha1_file_name(freq->sha1)); |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1352 | |
| 1353 | return freq->rename; |
| 1354 | } |
| 1355 | |
| 1356 | void abort_http_object_request(struct http_object_request *freq) |
| 1357 | { |
| 1358 | unlink_or_warn(freq->tmpfile); |
| 1359 | |
| 1360 | release_http_object_request(freq); |
| 1361 | } |
| 1362 | |
| 1363 | void release_http_object_request(struct http_object_request *freq) |
| 1364 | { |
| 1365 | if (freq->localfile != -1) { |
| 1366 | close(freq->localfile); |
| 1367 | freq->localfile = -1; |
| 1368 | } |
| 1369 | if (freq->url != NULL) { |
| 1370 | free(freq->url); |
| 1371 | freq->url = NULL; |
| 1372 | } |
Tay Ray Chuan | 4b9fa0e | 2009-08-26 20:20:53 +0800 | [diff] [blame] | 1373 | if (freq->slot != NULL) { |
| 1374 | freq->slot->callback_func = NULL; |
| 1375 | freq->slot->callback_data = NULL; |
| 1376 | release_active_slot(freq->slot); |
| 1377 | freq->slot = NULL; |
| 1378 | } |
Tay Ray Chuan | 5424bc5 | 2009-06-06 16:44:02 +0800 | [diff] [blame] | 1379 | } |