4 #include "run-command.h"
11 size_t http_post_buffer
= 16 * LARGE_PACKET_MAX
;
13 #if LIBCURL_VERSION_NUM >= 0x070a06
14 #define LIBCURL_CAN_HANDLE_AUTH_ANY
17 static int min_curl_sessions
= 1;
18 static int curl_session_count
;
20 static int max_requests
= -1;
23 #ifndef NO_CURL_EASY_DUPHANDLE
24 static CURL
*curl_default
;
27 #define PREV_BUF_SIZE 4096
28 #define RANGE_HEADER_SIZE 30
30 char curl_errorstr
[CURL_ERROR_SIZE
];
32 static int curl_ssl_verify
= -1;
33 static const char *ssl_cert
;
34 #if LIBCURL_VERSION_NUM >= 0x070903
35 static const char *ssl_key
;
37 #if LIBCURL_VERSION_NUM >= 0x070908
38 static const char *ssl_capath
;
40 static const char *ssl_cainfo
;
41 static long curl_low_speed_limit
= -1;
42 static long curl_low_speed_time
= -1;
43 static int curl_ftp_no_epsv
;
44 static const char *curl_http_proxy
;
45 static char *user_name
, *user_pass
;
46 static const char *user_agent
;
48 #if LIBCURL_VERSION_NUM >= 0x071700
49 /* Use CURLOPT_KEYPASSWD as is */
50 #elif LIBCURL_VERSION_NUM >= 0x070903
51 #define CURLOPT_KEYPASSWD CURLOPT_SSLKEYPASSWD
53 #define CURLOPT_KEYPASSWD CURLOPT_SSLCERTPASSWD
56 static char *ssl_cert_password
;
57 static int ssl_cert_password_required
;
59 static struct curl_slist
*pragma_header
;
60 static struct curl_slist
*no_pragma_header
;
62 static struct active_request_slot
*active_queue_head
;
64 size_t fread_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
66 size_t size
= eltsize
* nmemb
;
67 struct buffer
*buffer
= buffer_
;
69 if (size
> buffer
->buf
.len
- buffer
->posn
)
70 size
= buffer
->buf
.len
- buffer
->posn
;
71 memcpy(ptr
, buffer
->buf
.buf
+ buffer
->posn
, size
);
78 curlioerr
ioctl_buffer(CURL
*handle
, int cmd
, void *clientp
)
80 struct buffer
*buffer
= clientp
;
86 case CURLIOCMD_RESTARTREAD
:
91 return CURLIOE_UNKNOWNCMD
;
96 size_t fwrite_buffer(char *ptr
, size_t eltsize
, size_t nmemb
, void *buffer_
)
98 size_t size
= eltsize
* nmemb
;
99 struct strbuf
*buffer
= buffer_
;
101 strbuf_add(buffer
, ptr
, size
);
106 size_t fwrite_null(char *ptr
, size_t eltsize
, size_t nmemb
, void *strbuf
)
109 return eltsize
* nmemb
;
112 #ifdef USE_CURL_MULTI
113 static void process_curl_messages(void)
116 struct active_request_slot
*slot
;
117 CURLMsg
*curl_message
= curl_multi_info_read(curlm
, &num_messages
);
119 while (curl_message
!= NULL
) {
120 if (curl_message
->msg
== CURLMSG_DONE
) {
121 int curl_result
= curl_message
->data
.result
;
122 slot
= active_queue_head
;
123 while (slot
!= NULL
&&
124 slot
->curl
!= curl_message
->easy_handle
)
127 curl_multi_remove_handle(curlm
, slot
->curl
);
128 slot
->curl_result
= curl_result
;
129 finish_active_slot(slot
);
131 fprintf(stderr
, "Received DONE message for unknown request!\n");
134 fprintf(stderr
, "Unknown CURL message received: %d\n",
135 (int)curl_message
->msg
);
137 curl_message
= curl_multi_info_read(curlm
, &num_messages
);
142 static int git_config_path(const char **result
,
143 const char *var
, const char *value
)
145 if (git_config_string(result
, var
, value
))
149 *result
= system_path((*result
) + 1);
154 static int http_options(const char *var
, const char *value
, void *cb
)
156 if (!strcmp("http.sslverify", var
)) {
157 curl_ssl_verify
= git_config_bool(var
, value
);
160 if (!strcmp("http.sslcert", var
))
161 return git_config_path(&ssl_cert
, var
, value
);
162 #if LIBCURL_VERSION_NUM >= 0x070903
163 if (!strcmp("http.sslkey", var
))
164 return git_config_path(&ssl_key
, var
, value
);
166 #if LIBCURL_VERSION_NUM >= 0x070908
167 if (!strcmp("http.sslcapath", var
))
168 return git_config_path(&ssl_capath
, var
, value
);
170 if (!strcmp("http.sslcainfo", var
))
171 return git_config_path(&ssl_cainfo
, var
, value
);
172 if (!strcmp("http.sslcertpasswordprotected", var
)) {
173 if (git_config_bool(var
, value
))
174 ssl_cert_password_required
= 1;
177 if (!strcmp("http.minsessions", var
)) {
178 min_curl_sessions
= git_config_int(var
, value
);
179 #ifndef USE_CURL_MULTI
180 if (min_curl_sessions
> 1)
181 min_curl_sessions
= 1;
185 #ifdef USE_CURL_MULTI
186 if (!strcmp("http.maxrequests", var
)) {
187 max_requests
= git_config_int(var
, value
);
191 if (!strcmp("http.lowspeedlimit", var
)) {
192 curl_low_speed_limit
= (long)git_config_int(var
, value
);
195 if (!strcmp("http.lowspeedtime", var
)) {
196 curl_low_speed_time
= (long)git_config_int(var
, value
);
200 if (!strcmp("http.noepsv", var
)) {
201 curl_ftp_no_epsv
= git_config_bool(var
, value
);
204 if (!strcmp("http.proxy", var
))
205 return git_config_string(&curl_http_proxy
, var
, value
);
207 if (!strcmp("http.postbuffer", var
)) {
208 http_post_buffer
= git_config_int(var
, value
);
209 if (http_post_buffer
< LARGE_PACKET_MAX
)
210 http_post_buffer
= LARGE_PACKET_MAX
;
214 if (!strcmp("http.useragent", var
))
215 return git_config_string(&user_agent
, var
, value
);
217 /* Fall back on the default ones */
218 return git_default_config(var
, value
, cb
);
221 static void init_curl_http_auth(CURL
*result
)
224 struct strbuf up
= STRBUF_INIT
;
226 user_pass
= xstrdup(git_getpass("Password: "));
227 strbuf_addf(&up
, "%s:%s", user_name
, user_pass
);
228 curl_easy_setopt(result
, CURLOPT_USERPWD
,
229 strbuf_detach(&up
, NULL
));
233 static int has_cert_password(void)
235 if (ssl_cert_password
!= NULL
)
237 if (ssl_cert
== NULL
|| ssl_cert_password_required
!= 1)
239 /* Only prompt the user once. */
240 ssl_cert_password_required
= -1;
241 ssl_cert_password
= git_getpass("Certificate Password: ");
242 if (ssl_cert_password
!= NULL
) {
243 ssl_cert_password
= xstrdup(ssl_cert_password
);
249 static CURL
*get_curl_handle(void)
251 CURL
*result
= curl_easy_init();
253 if (!curl_ssl_verify
) {
254 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 0);
255 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 0);
257 /* Verify authenticity of the peer's certificate */
258 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYPEER
, 1);
259 /* The name in the cert must match whom we tried to connect */
260 curl_easy_setopt(result
, CURLOPT_SSL_VERIFYHOST
, 2);
263 #if LIBCURL_VERSION_NUM >= 0x070907
264 curl_easy_setopt(result
, CURLOPT_NETRC
, CURL_NETRC_OPTIONAL
);
266 #ifdef LIBCURL_CAN_HANDLE_AUTH_ANY
267 curl_easy_setopt(result
, CURLOPT_HTTPAUTH
, CURLAUTH_ANY
);
270 init_curl_http_auth(result
);
272 if (ssl_cert
!= NULL
)
273 curl_easy_setopt(result
, CURLOPT_SSLCERT
, ssl_cert
);
274 if (has_cert_password())
275 curl_easy_setopt(result
, CURLOPT_KEYPASSWD
, ssl_cert_password
);
276 #if LIBCURL_VERSION_NUM >= 0x070903
278 curl_easy_setopt(result
, CURLOPT_SSLKEY
, ssl_key
);
280 #if LIBCURL_VERSION_NUM >= 0x070908
281 if (ssl_capath
!= NULL
)
282 curl_easy_setopt(result
, CURLOPT_CAPATH
, ssl_capath
);
284 if (ssl_cainfo
!= NULL
)
285 curl_easy_setopt(result
, CURLOPT_CAINFO
, ssl_cainfo
);
286 curl_easy_setopt(result
, CURLOPT_FAILONERROR
, 1);
288 if (curl_low_speed_limit
> 0 && curl_low_speed_time
> 0) {
289 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_LIMIT
,
290 curl_low_speed_limit
);
291 curl_easy_setopt(result
, CURLOPT_LOW_SPEED_TIME
,
292 curl_low_speed_time
);
295 curl_easy_setopt(result
, CURLOPT_FOLLOWLOCATION
, 1);
296 #if LIBCURL_VERSION_NUM >= 0x071301
297 curl_easy_setopt(result
, CURLOPT_POSTREDIR
, CURL_REDIR_POST_ALL
);
298 #elif LIBCURL_VERSION_NUM >= 0x071101
299 curl_easy_setopt(result
, CURLOPT_POST301
, 1);
302 if (getenv("GIT_CURL_VERBOSE"))
303 curl_easy_setopt(result
, CURLOPT_VERBOSE
, 1);
305 curl_easy_setopt(result
, CURLOPT_USERAGENT
,
306 user_agent
? user_agent
: GIT_HTTP_USER_AGENT
);
308 if (curl_ftp_no_epsv
)
309 curl_easy_setopt(result
, CURLOPT_FTP_USE_EPSV
, 0);
312 curl_easy_setopt(result
, CURLOPT_PROXY
, curl_http_proxy
);
317 static void http_auth_init(const char *url
)
319 char *at
, *colon
, *cp
, *slash
, *decoded
;
322 cp
= strstr(url
, "://");
327 * Ok, the URL looks like "proto://something". Which one?
328 * "proto://<user>:<pass>@<host>/...",
329 * "proto://<user>@<host>/...", or just
330 * "proto://<host>/..."?
333 at
= strchr(cp
, '@');
334 colon
= strchr(cp
, ':');
335 slash
= strchrnul(cp
, '/');
336 if (!at
|| slash
<= at
)
337 return; /* No credentials */
338 if (!colon
|| at
<= colon
) {
341 user_name
= xmalloc(len
+ 1);
342 memcpy(user_name
, cp
, len
);
343 user_name
[len
] = '\0';
344 decoded
= url_decode(user_name
);
350 user_name
= xmalloc(len
+ 1);
351 memcpy(user_name
, cp
, len
);
352 user_name
[len
] = '\0';
353 decoded
= url_decode(user_name
);
356 len
= at
- (colon
+ 1);
357 user_pass
= xmalloc(len
+ 1);
358 memcpy(user_pass
, colon
+ 1, len
);
359 user_pass
[len
] = '\0';
360 decoded
= url_decode(user_pass
);
366 static void set_from_env(const char **var
, const char *envname
)
368 const char *val
= getenv(envname
);
373 void http_init(struct remote
*remote
)
375 char *low_speed_limit
;
376 char *low_speed_time
;
380 git_config(http_options
, NULL
);
382 curl_global_init(CURL_GLOBAL_ALL
);
384 if (remote
&& remote
->http_proxy
)
385 curl_http_proxy
= xstrdup(remote
->http_proxy
);
387 pragma_header
= curl_slist_append(pragma_header
, "Pragma: no-cache");
388 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
390 #ifdef USE_CURL_MULTI
392 char *http_max_requests
= getenv("GIT_HTTP_MAX_REQUESTS");
393 if (http_max_requests
!= NULL
)
394 max_requests
= atoi(http_max_requests
);
397 curlm
= curl_multi_init();
399 fprintf(stderr
, "Error creating curl multi handle.\n");
404 if (getenv("GIT_SSL_NO_VERIFY"))
407 set_from_env(&ssl_cert
, "GIT_SSL_CERT");
408 #if LIBCURL_VERSION_NUM >= 0x070903
409 set_from_env(&ssl_key
, "GIT_SSL_KEY");
411 #if LIBCURL_VERSION_NUM >= 0x070908
412 set_from_env(&ssl_capath
, "GIT_SSL_CAPATH");
414 set_from_env(&ssl_cainfo
, "GIT_SSL_CAINFO");
416 set_from_env(&user_agent
, "GIT_HTTP_USER_AGENT");
418 low_speed_limit
= getenv("GIT_HTTP_LOW_SPEED_LIMIT");
419 if (low_speed_limit
!= NULL
)
420 curl_low_speed_limit
= strtol(low_speed_limit
, NULL
, 10);
421 low_speed_time
= getenv("GIT_HTTP_LOW_SPEED_TIME");
422 if (low_speed_time
!= NULL
)
423 curl_low_speed_time
= strtol(low_speed_time
, NULL
, 10);
425 if (curl_ssl_verify
== -1)
428 curl_session_count
= 0;
429 #ifdef USE_CURL_MULTI
430 if (max_requests
< 1)
431 max_requests
= DEFAULT_MAX_REQUESTS
;
434 if (getenv("GIT_CURL_FTP_NO_EPSV"))
435 curl_ftp_no_epsv
= 1;
437 if (remote
&& remote
->url
&& remote
->url
[0]) {
438 http_auth_init(remote
->url
[0]);
439 if (!ssl_cert_password_required
&&
440 getenv("GIT_SSL_CERT_PASSWORD_PROTECTED") &&
441 !prefixcmp(remote
->url
[0], "https://"))
442 ssl_cert_password_required
= 1;
445 #ifndef NO_CURL_EASY_DUPHANDLE
446 curl_default
= get_curl_handle();
450 void http_cleanup(void)
452 struct active_request_slot
*slot
= active_queue_head
;
454 while (slot
!= NULL
) {
455 struct active_request_slot
*next
= slot
->next
;
456 if (slot
->curl
!= NULL
) {
457 #ifdef USE_CURL_MULTI
458 curl_multi_remove_handle(curlm
, slot
->curl
);
460 curl_easy_cleanup(slot
->curl
);
465 active_queue_head
= NULL
;
467 #ifndef NO_CURL_EASY_DUPHANDLE
468 curl_easy_cleanup(curl_default
);
471 #ifdef USE_CURL_MULTI
472 curl_multi_cleanup(curlm
);
474 curl_global_cleanup();
476 curl_slist_free_all(pragma_header
);
477 pragma_header
= NULL
;
479 curl_slist_free_all(no_pragma_header
);
480 no_pragma_header
= NULL
;
482 if (curl_http_proxy
) {
483 free((void *)curl_http_proxy
);
484 curl_http_proxy
= NULL
;
487 if (ssl_cert_password
!= NULL
) {
488 memset(ssl_cert_password
, 0, strlen(ssl_cert_password
));
489 free(ssl_cert_password
);
490 ssl_cert_password
= NULL
;
492 ssl_cert_password_required
= 0;
495 struct active_request_slot
*get_active_slot(void)
497 struct active_request_slot
*slot
= active_queue_head
;
498 struct active_request_slot
*newslot
;
500 #ifdef USE_CURL_MULTI
503 /* Wait for a slot to open up if the queue is full */
504 while (active_requests
>= max_requests
) {
505 curl_multi_perform(curlm
, &num_transfers
);
506 if (num_transfers
< active_requests
)
507 process_curl_messages();
511 while (slot
!= NULL
&& slot
->in_use
)
515 newslot
= xmalloc(sizeof(*newslot
));
516 newslot
->curl
= NULL
;
518 newslot
->next
= NULL
;
520 slot
= active_queue_head
;
522 active_queue_head
= newslot
;
524 while (slot
->next
!= NULL
)
526 slot
->next
= newslot
;
531 if (slot
->curl
== NULL
) {
532 #ifdef NO_CURL_EASY_DUPHANDLE
533 slot
->curl
= get_curl_handle();
535 slot
->curl
= curl_easy_duphandle(curl_default
);
537 curl_session_count
++;
543 slot
->results
= NULL
;
544 slot
->finished
= NULL
;
545 slot
->callback_data
= NULL
;
546 slot
->callback_func
= NULL
;
547 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, pragma_header
);
548 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
549 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, NULL
);
550 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, NULL
);
551 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, NULL
);
552 curl_easy_setopt(slot
->curl
, CURLOPT_POSTFIELDS
, NULL
);
553 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 0);
554 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
559 int start_active_slot(struct active_request_slot
*slot
)
561 #ifdef USE_CURL_MULTI
562 CURLMcode curlm_result
= curl_multi_add_handle(curlm
, slot
->curl
);
565 if (curlm_result
!= CURLM_OK
&&
566 curlm_result
!= CURLM_CALL_MULTI_PERFORM
) {
573 * We know there must be something to do, since we just added
576 curl_multi_perform(curlm
, &num_transfers
);
581 #ifdef USE_CURL_MULTI
585 struct fill_chain
*next
;
588 static struct fill_chain
*fill_cfg
;
590 void add_fill_function(void *data
, int (*fill
)(void *))
592 struct fill_chain
*new = xmalloc(sizeof(*new));
593 struct fill_chain
**linkp
= &fill_cfg
;
598 linkp
= &(*linkp
)->next
;
602 void fill_active_slots(void)
604 struct active_request_slot
*slot
= active_queue_head
;
606 while (active_requests
< max_requests
) {
607 struct fill_chain
*fill
;
608 for (fill
= fill_cfg
; fill
; fill
= fill
->next
)
609 if (fill
->fill(fill
->data
))
616 while (slot
!= NULL
) {
617 if (!slot
->in_use
&& slot
->curl
!= NULL
618 && curl_session_count
> min_curl_sessions
) {
619 curl_easy_cleanup(slot
->curl
);
621 curl_session_count
--;
627 void step_active_slots(void)
630 CURLMcode curlm_result
;
633 curlm_result
= curl_multi_perform(curlm
, &num_transfers
);
634 } while (curlm_result
== CURLM_CALL_MULTI_PERFORM
);
635 if (num_transfers
< active_requests
) {
636 process_curl_messages();
642 void run_active_slot(struct active_request_slot
*slot
)
644 #ifdef USE_CURL_MULTI
651 struct timeval select_timeout
;
654 slot
->finished
= &finished
;
659 if (!data_received
&& slot
->local
!= NULL
) {
660 current_pos
= ftell(slot
->local
);
661 if (current_pos
> last_pos
)
663 last_pos
= current_pos
;
666 if (slot
->in_use
&& !data_received
) {
671 select_timeout
.tv_sec
= 0;
672 select_timeout
.tv_usec
= 50000;
673 select(max_fd
, &readfds
, &writefds
,
674 &excfds
, &select_timeout
);
678 while (slot
->in_use
) {
679 slot
->curl_result
= curl_easy_perform(slot
->curl
);
680 finish_active_slot(slot
);
685 static void closedown_active_slot(struct active_request_slot
*slot
)
691 static void release_active_slot(struct active_request_slot
*slot
)
693 closedown_active_slot(slot
);
694 if (slot
->curl
&& curl_session_count
> min_curl_sessions
) {
695 #ifdef USE_CURL_MULTI
696 curl_multi_remove_handle(curlm
, slot
->curl
);
698 curl_easy_cleanup(slot
->curl
);
700 curl_session_count
--;
702 #ifdef USE_CURL_MULTI
707 void finish_active_slot(struct active_request_slot
*slot
)
709 closedown_active_slot(slot
);
710 curl_easy_getinfo(slot
->curl
, CURLINFO_HTTP_CODE
, &slot
->http_code
);
712 if (slot
->finished
!= NULL
)
713 (*slot
->finished
) = 1;
715 /* Store slot results so they can be read after the slot is reused */
716 if (slot
->results
!= NULL
) {
717 slot
->results
->curl_result
= slot
->curl_result
;
718 slot
->results
->http_code
= slot
->http_code
;
721 /* Run callback if appropriate */
722 if (slot
->callback_func
!= NULL
)
723 slot
->callback_func(slot
->callback_data
);
726 void finish_all_active_slots(void)
728 struct active_request_slot
*slot
= active_queue_head
;
732 run_active_slot(slot
);
733 slot
= active_queue_head
;
739 /* Helpers for modifying and creating URLs */
740 static inline int needs_quote(int ch
)
742 if (((ch
>= 'A') && (ch
<= 'Z'))
743 || ((ch
>= 'a') && (ch
<= 'z'))
744 || ((ch
>= '0') && (ch
<= '9'))
752 static inline int hex(int v
)
760 static char *quote_ref_url(const char *base
, const char *ref
)
762 struct strbuf buf
= STRBUF_INIT
;
766 end_url_with_slash(&buf
, base
);
768 for (cp
= ref
; (ch
= *cp
) != 0; cp
++)
770 strbuf_addf(&buf
, "%%%02x", ch
);
772 strbuf_addch(&buf
, *cp
);
774 return strbuf_detach(&buf
, NULL
);
777 void append_remote_object_url(struct strbuf
*buf
, const char *url
,
779 int only_two_digit_prefix
)
781 end_url_with_slash(buf
, url
);
783 strbuf_addf(buf
, "objects/%.*s/", 2, hex
);
784 if (!only_two_digit_prefix
)
785 strbuf_addf(buf
, "%s", hex
+2);
788 char *get_remote_object_url(const char *url
, const char *hex
,
789 int only_two_digit_prefix
)
791 struct strbuf buf
= STRBUF_INIT
;
792 append_remote_object_url(&buf
, url
, hex
, only_two_digit_prefix
);
793 return strbuf_detach(&buf
, NULL
);
796 /* http_request() targets */
797 #define HTTP_REQUEST_STRBUF 0
798 #define HTTP_REQUEST_FILE 1
800 static int http_request(const char *url
, void *result
, int target
, int options
)
802 struct active_request_slot
*slot
;
803 struct slot_results results
;
804 struct curl_slist
*headers
= NULL
;
805 struct strbuf buf
= STRBUF_INIT
;
808 slot
= get_active_slot();
809 slot
->results
= &results
;
810 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
812 if (result
== NULL
) {
813 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
815 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
816 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, result
);
818 if (target
== HTTP_REQUEST_FILE
) {
819 long posn
= ftell(result
);
820 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
823 strbuf_addf(&buf
, "Range: bytes=%ld-", posn
);
824 headers
= curl_slist_append(headers
, buf
.buf
);
827 slot
->local
= result
;
829 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
,
833 strbuf_addstr(&buf
, "Pragma:");
834 if (options
& HTTP_NO_CACHE
)
835 strbuf_addstr(&buf
, " no-cache");
837 headers
= curl_slist_append(headers
, buf
.buf
);
839 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
840 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, headers
);
842 if (start_active_slot(slot
)) {
843 run_active_slot(slot
);
844 if (results
.curl_result
== CURLE_OK
)
846 else if (missing_target(&results
))
847 ret
= HTTP_MISSING_TARGET
;
848 else if (results
.http_code
== 401) {
853 * git_getpass is needed here because its very likely stdin/stdout are
854 * pipes to our parent process. So we instead need to use /dev/tty,
855 * but that is non-portable. Using git_getpass() can at least be stubbed
856 * on other platforms with a different implementation if/when necessary.
858 user_name
= xstrdup(git_getpass("Username: "));
859 init_curl_http_auth(slot
->curl
);
865 error("Unable to start HTTP request for %s", url
);
866 ret
= HTTP_START_FAILED
;
870 curl_slist_free_all(headers
);
871 strbuf_release(&buf
);
876 int http_get_strbuf(const char *url
, struct strbuf
*result
, int options
)
878 int http_ret
= http_request(url
, result
, HTTP_REQUEST_STRBUF
, options
);
879 if (http_ret
== HTTP_REAUTH
) {
880 http_ret
= http_request(url
, result
, HTTP_REQUEST_STRBUF
, options
);
886 * Downloads an url and stores the result in the given file.
888 * If a previous interrupted download is detected (i.e. a previous temporary
889 * file is still around) the download is resumed.
891 static int http_get_file(const char *url
, const char *filename
, int options
)
894 struct strbuf tmpfile
= STRBUF_INIT
;
897 strbuf_addf(&tmpfile
, "%s.temp", filename
);
898 result
= fopen(tmpfile
.buf
, "a");
900 error("Unable to open local file %s", tmpfile
.buf
);
905 ret
= http_request(url
, result
, HTTP_REQUEST_FILE
, options
);
908 if ((ret
== HTTP_OK
) && move_temp_to_file(tmpfile
.buf
, filename
))
911 strbuf_release(&tmpfile
);
915 int http_error(const char *url
, int ret
)
917 /* http_request has already handled HTTP_START_FAILED. */
918 if (ret
!= HTTP_START_FAILED
)
919 error("%s while accessing %s\n", curl_errorstr
, url
);
924 int http_fetch_ref(const char *base
, struct ref
*ref
)
927 struct strbuf buffer
= STRBUF_INIT
;
930 url
= quote_ref_url(base
, ref
->name
);
931 if (http_get_strbuf(url
, &buffer
, HTTP_NO_CACHE
) == HTTP_OK
) {
932 strbuf_rtrim(&buffer
);
933 if (buffer
.len
== 40)
934 ret
= get_sha1_hex(buffer
.buf
, ref
->old_sha1
);
935 else if (!prefixcmp(buffer
.buf
, "ref: ")) {
936 ref
->symref
= xstrdup(buffer
.buf
+ 5);
941 strbuf_release(&buffer
);
946 /* Helpers for fetching packs */
947 static char *fetch_pack_index(unsigned char *sha1
, const char *base_url
)
950 struct strbuf buf
= STRBUF_INIT
;
953 fprintf(stderr
, "Getting index for pack %s\n", sha1_to_hex(sha1
));
955 end_url_with_slash(&buf
, base_url
);
956 strbuf_addf(&buf
, "objects/pack/pack-%s.idx", sha1_to_hex(sha1
));
957 url
= strbuf_detach(&buf
, NULL
);
959 strbuf_addf(&buf
, "%s.temp", sha1_pack_index_name(sha1
));
960 tmp
= strbuf_detach(&buf
, NULL
);
962 if (http_get_file(url
, tmp
, 0) != HTTP_OK
) {
963 error("Unable to get pack index %s\n", url
);
972 static int fetch_and_setup_pack_index(struct packed_git
**packs_head
,
973 unsigned char *sha1
, const char *base_url
)
975 struct packed_git
*new_pack
;
976 char *tmp_idx
= NULL
;
979 if (has_pack_index(sha1
)) {
980 new_pack
= parse_pack_index(sha1
, NULL
);
982 return -1; /* parse_pack_index() already issued error message */
986 tmp_idx
= fetch_pack_index(sha1
, base_url
);
990 new_pack
= parse_pack_index(sha1
, tmp_idx
);
995 return -1; /* parse_pack_index() already issued error message */
998 ret
= verify_pack_index(new_pack
);
1000 close_pack_index(new_pack
);
1001 ret
= move_temp_to_file(tmp_idx
, sha1_pack_index_name(sha1
));
1008 new_pack
->next
= *packs_head
;
1009 *packs_head
= new_pack
;
1013 int http_get_info_packs(const char *base_url
, struct packed_git
**packs_head
)
1017 struct strbuf buf
= STRBUF_INIT
;
1018 unsigned char sha1
[20];
1020 end_url_with_slash(&buf
, base_url
);
1021 strbuf_addstr(&buf
, "objects/info/packs");
1022 url
= strbuf_detach(&buf
, NULL
);
1024 ret
= http_get_strbuf(url
, &buf
, HTTP_NO_CACHE
);
1029 while (i
< buf
.len
) {
1033 if (i
+ 52 <= buf
.len
&&
1034 !prefixcmp(data
+ i
, " pack-") &&
1035 !prefixcmp(data
+ i
+ 46, ".pack\n")) {
1036 get_sha1_hex(data
+ i
+ 6, sha1
);
1037 fetch_and_setup_pack_index(packs_head
, sha1
,
1043 while (i
< buf
.len
&& data
[i
] != '\n')
1054 void release_http_pack_request(struct http_pack_request
*preq
)
1056 if (preq
->packfile
!= NULL
) {
1057 fclose(preq
->packfile
);
1058 preq
->packfile
= NULL
;
1059 preq
->slot
->local
= NULL
;
1061 if (preq
->range_header
!= NULL
) {
1062 curl_slist_free_all(preq
->range_header
);
1063 preq
->range_header
= NULL
;
1069 int finish_http_pack_request(struct http_pack_request
*preq
)
1071 struct packed_git
**lst
;
1072 struct packed_git
*p
= preq
->target
;
1074 struct child_process ip
;
1075 const char *ip_argv
[8];
1077 close_pack_index(p
);
1079 fclose(preq
->packfile
);
1080 preq
->packfile
= NULL
;
1081 preq
->slot
->local
= NULL
;
1085 lst
= &((*lst
)->next
);
1086 *lst
= (*lst
)->next
;
1088 tmp_idx
= xstrdup(preq
->tmpfile
);
1089 strcpy(tmp_idx
+ strlen(tmp_idx
) - strlen(".pack.temp"),
1092 ip_argv
[0] = "index-pack";
1094 ip_argv
[2] = tmp_idx
;
1095 ip_argv
[3] = preq
->tmpfile
;
1098 memset(&ip
, 0, sizeof(ip
));
1104 if (run_command(&ip
)) {
1105 unlink(preq
->tmpfile
);
1111 unlink(sha1_pack_index_name(p
->sha1
));
1113 if (move_temp_to_file(preq
->tmpfile
, sha1_pack_name(p
->sha1
))
1114 || move_temp_to_file(tmp_idx
, sha1_pack_index_name(p
->sha1
))) {
1119 install_packed_git(p
);
1124 struct http_pack_request
*new_http_pack_request(
1125 struct packed_git
*target
, const char *base_url
)
1128 char range
[RANGE_HEADER_SIZE
];
1129 struct strbuf buf
= STRBUF_INIT
;
1130 struct http_pack_request
*preq
;
1132 preq
= xmalloc(sizeof(*preq
));
1133 preq
->target
= target
;
1134 preq
->range_header
= NULL
;
1136 end_url_with_slash(&buf
, base_url
);
1137 strbuf_addf(&buf
, "objects/pack/pack-%s.pack",
1138 sha1_to_hex(target
->sha1
));
1139 preq
->url
= strbuf_detach(&buf
, NULL
);
1141 snprintf(preq
->tmpfile
, sizeof(preq
->tmpfile
), "%s.temp",
1142 sha1_pack_name(target
->sha1
));
1143 preq
->packfile
= fopen(preq
->tmpfile
, "a");
1144 if (!preq
->packfile
) {
1145 error("Unable to open local file %s for pack",
1150 preq
->slot
= get_active_slot();
1151 preq
->slot
->local
= preq
->packfile
;
1152 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_FILE
, preq
->packfile
);
1153 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
1154 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_URL
, preq
->url
);
1155 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1159 * If there is data present from a previous transfer attempt,
1160 * resume where it left off
1162 prev_posn
= ftell(preq
->packfile
);
1164 if (http_is_verbose
)
1166 "Resuming fetch of pack %s at byte %ld\n",
1167 sha1_to_hex(target
->sha1
), prev_posn
);
1168 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1169 preq
->range_header
= curl_slist_append(NULL
, range
);
1170 curl_easy_setopt(preq
->slot
->curl
, CURLOPT_HTTPHEADER
,
1171 preq
->range_header
);
1182 /* Helpers for fetching objects (loose) */
1183 static size_t fwrite_sha1_file(char *ptr
, size_t eltsize
, size_t nmemb
,
1186 unsigned char expn
[4096];
1187 size_t size
= eltsize
* nmemb
;
1189 struct http_object_request
*freq
=
1190 (struct http_object_request
*)data
;
1192 ssize_t retval
= xwrite(freq
->localfile
,
1193 (char *) ptr
+ posn
, size
- posn
);
1197 } while (posn
< size
);
1199 freq
->stream
.avail_in
= size
;
1200 freq
->stream
.next_in
= (void *)ptr
;
1202 freq
->stream
.next_out
= expn
;
1203 freq
->stream
.avail_out
= sizeof(expn
);
1204 freq
->zret
= git_inflate(&freq
->stream
, Z_SYNC_FLUSH
);
1205 git_SHA1_Update(&freq
->c
, expn
,
1206 sizeof(expn
) - freq
->stream
.avail_out
);
1207 } while (freq
->stream
.avail_in
&& freq
->zret
== Z_OK
);
1212 struct http_object_request
*new_http_object_request(const char *base_url
,
1213 unsigned char *sha1
)
1215 char *hex
= sha1_to_hex(sha1
);
1217 char prevfile
[PATH_MAX
];
1219 char prev_buf
[PREV_BUF_SIZE
];
1220 ssize_t prev_read
= 0;
1222 char range
[RANGE_HEADER_SIZE
];
1223 struct curl_slist
*range_header
= NULL
;
1224 struct http_object_request
*freq
;
1226 freq
= xmalloc(sizeof(*freq
));
1227 hashcpy(freq
->sha1
, sha1
);
1228 freq
->localfile
= -1;
1230 filename
= sha1_file_name(sha1
);
1231 snprintf(freq
->tmpfile
, sizeof(freq
->tmpfile
),
1232 "%s.temp", filename
);
1234 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", filename
);
1235 unlink_or_warn(prevfile
);
1236 rename(freq
->tmpfile
, prevfile
);
1237 unlink_or_warn(freq
->tmpfile
);
1239 if (freq
->localfile
!= -1)
1240 error("fd leakage in start: %d", freq
->localfile
);
1241 freq
->localfile
= open(freq
->tmpfile
,
1242 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1244 * This could have failed due to the "lazy directory creation";
1245 * try to mkdir the last path component.
1247 if (freq
->localfile
< 0 && errno
== ENOENT
) {
1248 char *dir
= strrchr(freq
->tmpfile
, '/');
1251 mkdir(freq
->tmpfile
, 0777);
1254 freq
->localfile
= open(freq
->tmpfile
,
1255 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
1258 if (freq
->localfile
< 0) {
1259 error("Couldn't create temporary file %s: %s",
1260 freq
->tmpfile
, strerror(errno
));
1264 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
1266 git_inflate_init(&freq
->stream
);
1268 git_SHA1_Init(&freq
->c
);
1270 freq
->url
= get_remote_object_url(base_url
, hex
, 0);
1273 * If a previous temp file is present, process what was already
1276 prevlocal
= open(prevfile
, O_RDONLY
);
1277 if (prevlocal
!= -1) {
1279 prev_read
= xread(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
1281 if (fwrite_sha1_file(prev_buf
,
1284 freq
) == prev_read
) {
1285 prev_posn
+= prev_read
;
1290 } while (prev_read
> 0);
1293 unlink_or_warn(prevfile
);
1296 * Reset inflate/SHA1 if there was an error reading the previous temp
1297 * file; also rewind to the beginning of the local file.
1299 if (prev_read
== -1) {
1300 memset(&freq
->stream
, 0, sizeof(freq
->stream
));
1301 git_inflate_init(&freq
->stream
);
1302 git_SHA1_Init(&freq
->c
);
1305 lseek(freq
->localfile
, 0, SEEK_SET
);
1306 if (ftruncate(freq
->localfile
, 0) < 0) {
1307 error("Couldn't truncate temporary file %s: %s",
1308 freq
->tmpfile
, strerror(errno
));
1314 freq
->slot
= get_active_slot();
1316 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_FILE
, freq
);
1317 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
1318 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_ERRORBUFFER
, freq
->errorstr
);
1319 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_URL
, freq
->url
);
1320 curl_easy_setopt(freq
->slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
1323 * If we have successfully processed data from a previous fetch
1324 * attempt, only fetch the data we don't already have.
1327 if (http_is_verbose
)
1329 "Resuming fetch of object %s at byte %ld\n",
1331 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
1332 range_header
= curl_slist_append(range_header
, range
);
1333 curl_easy_setopt(freq
->slot
->curl
,
1334 CURLOPT_HTTPHEADER
, range_header
);
1346 void process_http_object_request(struct http_object_request
*freq
)
1348 if (freq
->slot
== NULL
)
1350 freq
->curl_result
= freq
->slot
->curl_result
;
1351 freq
->http_code
= freq
->slot
->http_code
;
1355 int finish_http_object_request(struct http_object_request
*freq
)
1359 close(freq
->localfile
);
1360 freq
->localfile
= -1;
1362 process_http_object_request(freq
);
1364 if (freq
->http_code
== 416) {
1365 warning("requested range invalid; we may already have all the data.");
1366 } else if (freq
->curl_result
!= CURLE_OK
) {
1367 if (stat(freq
->tmpfile
, &st
) == 0)
1368 if (st
.st_size
== 0)
1369 unlink_or_warn(freq
->tmpfile
);
1373 git_inflate_end(&freq
->stream
);
1374 git_SHA1_Final(freq
->real_sha1
, &freq
->c
);
1375 if (freq
->zret
!= Z_STREAM_END
) {
1376 unlink_or_warn(freq
->tmpfile
);
1379 if (hashcmp(freq
->sha1
, freq
->real_sha1
)) {
1380 unlink_or_warn(freq
->tmpfile
);
1384 move_temp_to_file(freq
->tmpfile
, sha1_file_name(freq
->sha1
));
1386 return freq
->rename
;
1389 void abort_http_object_request(struct http_object_request
*freq
)
1391 unlink_or_warn(freq
->tmpfile
);
1393 release_http_object_request(freq
);
1396 void release_http_object_request(struct http_object_request
*freq
)
1398 if (freq
->localfile
!= -1) {
1399 close(freq
->localfile
);
1400 freq
->localfile
= -1;
1402 if (freq
->url
!= NULL
) {
1406 if (freq
->slot
!= NULL
) {
1407 freq
->slot
->callback_func
= NULL
;
1408 freq
->slot
->callback_data
= NULL
;
1409 release_active_slot(freq
->slot
);