2 * QEMU Block driver for CURL images
4 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
28 #include "block/block_int.h"
29 #include "qapi/qmp/qbool.h"
30 #include "qapi/qmp/qstring.h"
31 #include "crypto/secret.h"
32 #include <curl/curl.h>
33 #include "qemu/cutils.h"
36 // #define DEBUG_VERBOSE
39 #define DEBUG_CURL_PRINT 1
41 #define DEBUG_CURL_PRINT 0
43 #define DPRINTF(fmt, ...) \
45 if (DEBUG_CURL_PRINT) { \
46 fprintf(stderr, fmt, ## __VA_ARGS__); \
50 #if LIBCURL_VERSION_NUM >= 0x071000
51 /* The multi interface timer callback was introduced in 7.16.0 */
52 #define NEED_CURL_TIMER_CALLBACK
53 #define HAVE_SOCKET_ACTION
56 #ifndef HAVE_SOCKET_ACTION
57 /* If curl_multi_socket_action isn't available, define it statically here in
58 * terms of curl_multi_socket. Note that ev_bitmask will be ignored, which is
59 * less efficient but still safe. */
60 static CURLMcode
__curl_multi_socket_action(CURLM
*multi_handle
,
65 return curl_multi_socket(multi_handle
, sockfd
, running_handles
);
67 #define curl_multi_socket_action __curl_multi_socket_action
70 #define PROTOCOLS (CURLPROTO_HTTP | CURLPROTO_HTTPS | \
71 CURLPROTO_FTP | CURLPROTO_FTPS)
73 #define CURL_NUM_STATES 8
74 #define CURL_NUM_ACB 8
75 #define READ_AHEAD_DEFAULT (256 * 1024)
76 #define CURL_TIMEOUT_DEFAULT 5
77 #define CURL_TIMEOUT_MAX 10000
79 #define CURL_BLOCK_OPT_URL "url"
80 #define CURL_BLOCK_OPT_READAHEAD "readahead"
81 #define CURL_BLOCK_OPT_SSLVERIFY "sslverify"
82 #define CURL_BLOCK_OPT_TIMEOUT "timeout"
83 #define CURL_BLOCK_OPT_COOKIE "cookie"
84 #define CURL_BLOCK_OPT_COOKIE_SECRET "cookie-secret"
85 #define CURL_BLOCK_OPT_USERNAME "username"
86 #define CURL_BLOCK_OPT_PASSWORD_SECRET "password-secret"
87 #define CURL_BLOCK_OPT_PROXY_USERNAME "proxy-username"
88 #define CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET "proxy-password-secret"
92 static bool libcurl_initialized
;
94 typedef struct CURLAIOCB
{
105 QSIMPLEQ_ENTRY(CURLAIOCB
) next
;
108 typedef struct CURLSocket
{
110 QLIST_ENTRY(CURLSocket
) next
;
113 typedef struct CURLState
115 struct BDRVCURLState
*s
;
116 CURLAIOCB
*acb
[CURL_NUM_ACB
];
118 QLIST_HEAD(, CURLSocket
) sockets
;
124 char errmsg
[CURL_ERROR_SIZE
];
128 typedef struct BDRVCURLState
{
132 CURLState states
[CURL_NUM_STATES
];
134 size_t readahead_size
;
139 AioContext
*aio_context
;
141 QSIMPLEQ_HEAD(, CURLAIOCB
) free_state_waitq
;
148 static void curl_clean_state(CURLState
*s
);
149 static void curl_multi_do(void *arg
);
150 static void curl_multi_read(void *arg
);
152 #ifdef NEED_CURL_TIMER_CALLBACK
153 /* Called from curl_multi_do_locked, with s->mutex held. */
154 static int curl_timer_cb(CURLM
*multi
, long timeout_ms
, void *opaque
)
156 BDRVCURLState
*s
= opaque
;
158 DPRINTF("CURL: timer callback timeout_ms %ld\n", timeout_ms
);
159 if (timeout_ms
== -1) {
160 timer_del(&s
->timer
);
162 int64_t timeout_ns
= (int64_t)timeout_ms
* 1000 * 1000;
164 qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) + timeout_ns
);
170 /* Called from curl_multi_do_locked, with s->mutex held. */
171 static int curl_sock_cb(CURL
*curl
, curl_socket_t fd
, int action
,
172 void *userp
, void *sp
)
175 CURLState
*state
= NULL
;
178 curl_easy_getinfo(curl
, CURLINFO_PRIVATE
, (char **)&state
);
181 QLIST_FOREACH(socket
, &state
->sockets
, next
) {
182 if (socket
->fd
== fd
) {
183 if (action
== CURL_POLL_REMOVE
) {
184 QLIST_REMOVE(socket
, next
);
191 socket
= g_new0(CURLSocket
, 1);
193 QLIST_INSERT_HEAD(&state
->sockets
, socket
, next
);
197 DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action
, (int)fd
);
200 aio_set_fd_handler(s
->aio_context
, fd
, false,
201 curl_multi_read
, NULL
, NULL
, state
);
204 aio_set_fd_handler(s
->aio_context
, fd
, false,
205 NULL
, curl_multi_do
, NULL
, state
);
207 case CURL_POLL_INOUT
:
208 aio_set_fd_handler(s
->aio_context
, fd
, false,
209 curl_multi_read
, curl_multi_do
, NULL
, state
);
211 case CURL_POLL_REMOVE
:
212 aio_set_fd_handler(s
->aio_context
, fd
, false,
213 NULL
, NULL
, NULL
, NULL
);
220 /* Called from curl_multi_do_locked, with s->mutex held. */
221 static size_t curl_header_cb(void *ptr
, size_t size
, size_t nmemb
, void *opaque
)
223 BDRVCURLState
*s
= opaque
;
224 size_t realsize
= size
* nmemb
;
225 const char *accept_line
= "Accept-Ranges: bytes";
227 if (realsize
>= strlen(accept_line
)
228 && strncmp((char *)ptr
, accept_line
, strlen(accept_line
)) == 0) {
229 s
->accept_range
= true;
235 /* Called from curl_multi_do_locked, with s->mutex held. */
236 static size_t curl_read_cb(void *ptr
, size_t size
, size_t nmemb
, void *opaque
)
238 CURLState
*s
= ((CURLState
*)opaque
);
239 size_t realsize
= size
* nmemb
;
242 DPRINTF("CURL: Just reading %zd bytes\n", realsize
);
244 if (!s
|| !s
->orig_buf
) {
248 if (s
->buf_off
>= s
->buf_len
) {
249 /* buffer full, read nothing */
252 realsize
= MIN(realsize
, s
->buf_len
- s
->buf_off
);
253 memcpy(s
->orig_buf
+ s
->buf_off
, ptr
, realsize
);
254 s
->buf_off
+= realsize
;
256 for(i
=0; i
<CURL_NUM_ACB
; i
++) {
257 CURLAIOCB
*acb
= s
->acb
[i
];
262 if ((s
->buf_off
>= acb
->end
)) {
263 size_t request_length
= acb
->bytes
;
265 qemu_iovec_from_buf(acb
->qiov
, 0, s
->orig_buf
+ acb
->start
,
266 acb
->end
- acb
->start
);
268 if (acb
->end
- acb
->start
< request_length
) {
269 size_t offset
= acb
->end
- acb
->start
;
270 qemu_iovec_memset(acb
->qiov
, offset
, 0,
271 request_length
- offset
);
276 qemu_mutex_unlock(&s
->s
->mutex
);
277 aio_co_wake(acb
->co
);
278 qemu_mutex_lock(&s
->s
->mutex
);
283 /* curl will error out if we do not return this value */
287 /* Called with s->mutex held. */
288 static bool curl_find_buf(BDRVCURLState
*s
, uint64_t start
, uint64_t len
,
292 uint64_t end
= start
+ len
;
293 uint64_t clamped_end
= MIN(end
, s
->len
);
294 uint64_t clamped_len
= clamped_end
- start
;
296 for (i
=0; i
<CURL_NUM_STATES
; i
++) {
297 CURLState
*state
= &s
->states
[i
];
298 uint64_t buf_end
= (state
->buf_start
+ state
->buf_off
);
299 uint64_t buf_fend
= (state
->buf_start
+ state
->buf_len
);
301 if (!state
->orig_buf
)
306 // Does the existing buffer cover our section?
307 if ((start
>= state
->buf_start
) &&
308 (start
<= buf_end
) &&
309 (clamped_end
>= state
->buf_start
) &&
310 (clamped_end
<= buf_end
))
312 char *buf
= state
->orig_buf
+ (start
- state
->buf_start
);
314 qemu_iovec_from_buf(acb
->qiov
, 0, buf
, clamped_len
);
315 if (clamped_len
< len
) {
316 qemu_iovec_memset(acb
->qiov
, clamped_len
, 0, len
- clamped_len
);
322 // Wait for unfinished chunks
324 (start
>= state
->buf_start
) &&
325 (start
<= buf_fend
) &&
326 (clamped_end
>= state
->buf_start
) &&
327 (clamped_end
<= buf_fend
))
331 acb
->start
= start
- state
->buf_start
;
332 acb
->end
= acb
->start
+ clamped_len
;
334 for (j
=0; j
<CURL_NUM_ACB
; j
++) {
335 if (!state
->acb
[j
]) {
346 /* Called with s->mutex held. */
347 static void curl_multi_check_completion(BDRVCURLState
*s
)
351 /* Try to find done transfers, so we can free the easy
355 msg
= curl_multi_info_read(s
->multi
, &msgs_in_queue
);
357 /* Quit when there are no more completions */
361 if (msg
->msg
== CURLMSG_DONE
) {
362 CURLState
*state
= NULL
;
363 curl_easy_getinfo(msg
->easy_handle
, CURLINFO_PRIVATE
,
366 /* ACBs for successful messages get completed in curl_read_cb */
367 if (msg
->data
.result
!= CURLE_OK
) {
369 static int errcount
= 100;
371 /* Don't lose the original error message from curl, since
372 * it contains extra data.
375 error_report("curl: %s", state
->errmsg
);
376 if (--errcount
== 0) {
377 error_report("curl: further errors suppressed");
381 for (i
= 0; i
< CURL_NUM_ACB
; i
++) {
382 CURLAIOCB
*acb
= state
->acb
[i
];
389 state
->acb
[i
] = NULL
;
390 qemu_mutex_unlock(&s
->mutex
);
391 aio_co_wake(acb
->co
);
392 qemu_mutex_lock(&s
->mutex
);
396 curl_clean_state(state
);
402 /* Called with s->mutex held. */
403 static void curl_multi_do_locked(CURLState
*s
)
405 CURLSocket
*socket
, *next_socket
;
413 /* Need to use _SAFE because curl_multi_socket_action() may trigger
414 * curl_sock_cb() which might modify this list */
415 QLIST_FOREACH_SAFE(socket
, &s
->sockets
, next
, next_socket
) {
417 r
= curl_multi_socket_action(s
->s
->multi
, socket
->fd
, 0, &running
);
418 } while (r
== CURLM_CALL_MULTI_PERFORM
);
422 static void curl_multi_do(void *arg
)
424 CURLState
*s
= (CURLState
*)arg
;
426 qemu_mutex_lock(&s
->s
->mutex
);
427 curl_multi_do_locked(s
);
428 qemu_mutex_unlock(&s
->s
->mutex
);
431 static void curl_multi_read(void *arg
)
433 CURLState
*s
= (CURLState
*)arg
;
435 qemu_mutex_lock(&s
->s
->mutex
);
436 curl_multi_do_locked(s
);
437 curl_multi_check_completion(s
->s
);
438 qemu_mutex_unlock(&s
->s
->mutex
);
441 static void curl_multi_timeout_do(void *arg
)
443 #ifdef NEED_CURL_TIMER_CALLBACK
444 BDRVCURLState
*s
= (BDRVCURLState
*)arg
;
451 qemu_mutex_lock(&s
->mutex
);
452 curl_multi_socket_action(s
->multi
, CURL_SOCKET_TIMEOUT
, 0, &running
);
454 curl_multi_check_completion(s
);
455 qemu_mutex_unlock(&s
->mutex
);
461 /* Called with s->mutex held. */
462 static CURLState
*curl_find_state(BDRVCURLState
*s
)
464 CURLState
*state
= NULL
;
467 for (i
= 0; i
< CURL_NUM_STATES
; i
++) {
468 if (!s
->states
[i
].in_use
) {
469 state
= &s
->states
[i
];
477 static int curl_init_state(BDRVCURLState
*s
, CURLState
*state
)
480 state
->curl
= curl_easy_init();
484 curl_easy_setopt(state
->curl
, CURLOPT_URL
, s
->url
);
485 curl_easy_setopt(state
->curl
, CURLOPT_SSL_VERIFYPEER
,
486 (long) s
->sslverify
);
488 curl_easy_setopt(state
->curl
, CURLOPT_COOKIE
, s
->cookie
);
490 curl_easy_setopt(state
->curl
, CURLOPT_TIMEOUT
, (long)s
->timeout
);
491 curl_easy_setopt(state
->curl
, CURLOPT_WRITEFUNCTION
,
492 (void *)curl_read_cb
);
493 curl_easy_setopt(state
->curl
, CURLOPT_WRITEDATA
, (void *)state
);
494 curl_easy_setopt(state
->curl
, CURLOPT_PRIVATE
, (void *)state
);
495 curl_easy_setopt(state
->curl
, CURLOPT_AUTOREFERER
, 1);
496 curl_easy_setopt(state
->curl
, CURLOPT_FOLLOWLOCATION
, 1);
497 curl_easy_setopt(state
->curl
, CURLOPT_NOSIGNAL
, 1);
498 curl_easy_setopt(state
->curl
, CURLOPT_ERRORBUFFER
, state
->errmsg
);
499 curl_easy_setopt(state
->curl
, CURLOPT_FAILONERROR
, 1);
502 curl_easy_setopt(state
->curl
, CURLOPT_USERNAME
, s
->username
);
505 curl_easy_setopt(state
->curl
, CURLOPT_PASSWORD
, s
->password
);
507 if (s
->proxyusername
) {
508 curl_easy_setopt(state
->curl
,
509 CURLOPT_PROXYUSERNAME
, s
->proxyusername
);
511 if (s
->proxypassword
) {
512 curl_easy_setopt(state
->curl
,
513 CURLOPT_PROXYPASSWORD
, s
->proxypassword
);
516 /* Restrict supported protocols to avoid security issues in the more
517 * obscure protocols. For example, do not allow POP3/SMTP/IMAP see
520 * Restricting protocols is only supported from 7.19.4 upwards.
522 #if LIBCURL_VERSION_NUM >= 0x071304
523 curl_easy_setopt(state
->curl
, CURLOPT_PROTOCOLS
, PROTOCOLS
);
524 curl_easy_setopt(state
->curl
, CURLOPT_REDIR_PROTOCOLS
, PROTOCOLS
);
528 curl_easy_setopt(state
->curl
, CURLOPT_VERBOSE
, 1);
532 QLIST_INIT(&state
->sockets
);
538 /* Called with s->mutex held. */
539 static void curl_clean_state(CURLState
*s
)
543 for (j
= 0; j
< CURL_NUM_ACB
; j
++) {
548 curl_multi_remove_handle(s
->s
->multi
, s
->curl
);
550 while (!QLIST_EMPTY(&s
->sockets
)) {
551 CURLSocket
*socket
= QLIST_FIRST(&s
->sockets
);
553 QLIST_REMOVE(socket
, next
);
559 next
= QSIMPLEQ_FIRST(&s
->s
->free_state_waitq
);
561 QSIMPLEQ_REMOVE_HEAD(&s
->s
->free_state_waitq
, next
);
562 qemu_mutex_unlock(&s
->s
->mutex
);
563 aio_co_wake(next
->co
);
564 qemu_mutex_lock(&s
->s
->mutex
);
568 static void curl_parse_filename(const char *filename
, QDict
*options
,
571 qdict_put_str(options
, CURL_BLOCK_OPT_URL
, filename
);
574 static void curl_detach_aio_context(BlockDriverState
*bs
)
576 BDRVCURLState
*s
= bs
->opaque
;
579 qemu_mutex_lock(&s
->mutex
);
580 for (i
= 0; i
< CURL_NUM_STATES
; i
++) {
581 if (s
->states
[i
].in_use
) {
582 curl_clean_state(&s
->states
[i
]);
584 if (s
->states
[i
].curl
) {
585 curl_easy_cleanup(s
->states
[i
].curl
);
586 s
->states
[i
].curl
= NULL
;
588 g_free(s
->states
[i
].orig_buf
);
589 s
->states
[i
].orig_buf
= NULL
;
592 curl_multi_cleanup(s
->multi
);
595 qemu_mutex_unlock(&s
->mutex
);
597 timer_del(&s
->timer
);
600 static void curl_attach_aio_context(BlockDriverState
*bs
,
601 AioContext
*new_context
)
603 BDRVCURLState
*s
= bs
->opaque
;
605 aio_timer_init(new_context
, &s
->timer
,
606 QEMU_CLOCK_REALTIME
, SCALE_NS
,
607 curl_multi_timeout_do
, s
);
610 s
->multi
= curl_multi_init();
611 s
->aio_context
= new_context
;
612 curl_multi_setopt(s
->multi
, CURLMOPT_SOCKETFUNCTION
, curl_sock_cb
);
613 #ifdef NEED_CURL_TIMER_CALLBACK
614 curl_multi_setopt(s
->multi
, CURLMOPT_TIMERDATA
, s
);
615 curl_multi_setopt(s
->multi
, CURLMOPT_TIMERFUNCTION
, curl_timer_cb
);
619 static QemuOptsList runtime_opts
= {
621 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
624 .name
= CURL_BLOCK_OPT_URL
,
625 .type
= QEMU_OPT_STRING
,
626 .help
= "URL to open",
629 .name
= CURL_BLOCK_OPT_READAHEAD
,
630 .type
= QEMU_OPT_SIZE
,
631 .help
= "Readahead size",
634 .name
= CURL_BLOCK_OPT_SSLVERIFY
,
635 .type
= QEMU_OPT_BOOL
,
636 .help
= "Verify SSL certificate"
639 .name
= CURL_BLOCK_OPT_TIMEOUT
,
640 .type
= QEMU_OPT_NUMBER
,
641 .help
= "Curl timeout"
644 .name
= CURL_BLOCK_OPT_COOKIE
,
645 .type
= QEMU_OPT_STRING
,
646 .help
= "Pass the cookie or list of cookies with each request"
649 .name
= CURL_BLOCK_OPT_COOKIE_SECRET
,
650 .type
= QEMU_OPT_STRING
,
651 .help
= "ID of secret used as cookie passed with each request"
654 .name
= CURL_BLOCK_OPT_USERNAME
,
655 .type
= QEMU_OPT_STRING
,
656 .help
= "Username for HTTP auth"
659 .name
= CURL_BLOCK_OPT_PASSWORD_SECRET
,
660 .type
= QEMU_OPT_STRING
,
661 .help
= "ID of secret used as password for HTTP auth",
664 .name
= CURL_BLOCK_OPT_PROXY_USERNAME
,
665 .type
= QEMU_OPT_STRING
,
666 .help
= "Username for HTTP proxy auth"
669 .name
= CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET
,
670 .type
= QEMU_OPT_STRING
,
671 .help
= "ID of secret used as password for HTTP proxy auth",
673 { /* end of list */ }
678 static int curl_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
681 BDRVCURLState
*s
= bs
->opaque
;
682 CURLState
*state
= NULL
;
684 Error
*local_err
= NULL
;
687 const char *cookie_secret
;
689 const char *secretid
;
690 const char *protocol_delimiter
;
694 if (flags
& BDRV_O_RDWR
) {
695 error_setg(errp
, "curl block device does not support writes");
699 if (!libcurl_initialized
) {
700 ret
= curl_global_init(CURL_GLOBAL_ALL
);
702 error_setg(errp
, "libcurl initialization failed with %d", ret
);
705 libcurl_initialized
= true;
708 qemu_mutex_init(&s
->mutex
);
709 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
710 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
712 error_propagate(errp
, local_err
);
716 s
->readahead_size
= qemu_opt_get_size(opts
, CURL_BLOCK_OPT_READAHEAD
,
718 if ((s
->readahead_size
& 0x1ff) != 0) {
719 error_setg(errp
, "HTTP_READAHEAD_SIZE %zd is not a multiple of 512",
724 s
->timeout
= qemu_opt_get_number(opts
, CURL_BLOCK_OPT_TIMEOUT
,
725 CURL_TIMEOUT_DEFAULT
);
726 if (s
->timeout
> CURL_TIMEOUT_MAX
) {
727 error_setg(errp
, "timeout parameter is too large or negative");
731 s
->sslverify
= qemu_opt_get_bool(opts
, CURL_BLOCK_OPT_SSLVERIFY
, true);
733 cookie
= qemu_opt_get(opts
, CURL_BLOCK_OPT_COOKIE
);
734 cookie_secret
= qemu_opt_get(opts
, CURL_BLOCK_OPT_COOKIE_SECRET
);
736 if (cookie
&& cookie_secret
) {
738 "curl driver cannot handle both cookie and cookie secret");
743 s
->cookie
= qcrypto_secret_lookup_as_utf8(cookie_secret
, errp
);
748 s
->cookie
= g_strdup(cookie
);
751 file
= qemu_opt_get(opts
, CURL_BLOCK_OPT_URL
);
753 error_setg(errp
, "curl block driver requires an 'url' option");
757 if (!strstart(file
, bs
->drv
->protocol_name
, &protocol_delimiter
) ||
758 !strstart(protocol_delimiter
, "://", NULL
))
760 error_setg(errp
, "%s curl driver cannot handle the URL '%s' (does not "
761 "start with '%s://')", bs
->drv
->protocol_name
, file
,
762 bs
->drv
->protocol_name
);
766 s
->username
= g_strdup(qemu_opt_get(opts
, CURL_BLOCK_OPT_USERNAME
));
767 secretid
= qemu_opt_get(opts
, CURL_BLOCK_OPT_PASSWORD_SECRET
);
770 s
->password
= qcrypto_secret_lookup_as_utf8(secretid
, errp
);
776 s
->proxyusername
= g_strdup(
777 qemu_opt_get(opts
, CURL_BLOCK_OPT_PROXY_USERNAME
));
778 secretid
= qemu_opt_get(opts
, CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET
);
780 s
->proxypassword
= qcrypto_secret_lookup_as_utf8(secretid
, errp
);
781 if (!s
->proxypassword
) {
786 DPRINTF("CURL: Opening %s\n", file
);
787 QSIMPLEQ_INIT(&s
->free_state_waitq
);
788 s
->aio_context
= bdrv_get_aio_context(bs
);
789 s
->url
= g_strdup(file
);
790 qemu_mutex_lock(&s
->mutex
);
791 state
= curl_find_state(s
);
792 qemu_mutex_unlock(&s
->mutex
);
799 if (curl_init_state(s
, state
) < 0) {
803 s
->accept_range
= false;
804 curl_easy_setopt(state
->curl
, CURLOPT_NOBODY
, 1);
805 curl_easy_setopt(state
->curl
, CURLOPT_HEADERFUNCTION
,
807 curl_easy_setopt(state
->curl
, CURLOPT_HEADERDATA
, s
);
808 if (curl_easy_perform(state
->curl
))
810 if (curl_easy_getinfo(state
->curl
, CURLINFO_CONTENT_LENGTH_DOWNLOAD
, &d
)) {
813 /* Prior CURL 7.19.4 return value of 0 could mean that the file size is not
814 * know or the size is zero. From 7.19.4 CURL returns -1 if size is not
815 * known and zero if it is realy zero-length file. */
816 #if LIBCURL_VERSION_NUM >= 0x071304
818 pstrcpy(state
->errmsg
, CURL_ERROR_SIZE
,
819 "Server didn't report file size.");
824 pstrcpy(state
->errmsg
, CURL_ERROR_SIZE
,
825 "Unknown file size or zero-length file.");
832 if ((!strncasecmp(s
->url
, "http://", strlen("http://"))
833 || !strncasecmp(s
->url
, "https://", strlen("https://")))
834 && !s
->accept_range
) {
835 pstrcpy(state
->errmsg
, CURL_ERROR_SIZE
,
836 "Server does not support 'range' (byte ranges).");
839 DPRINTF("CURL: Size = %" PRIu64
"\n", s
->len
);
841 qemu_mutex_lock(&s
->mutex
);
842 curl_clean_state(state
);
843 qemu_mutex_unlock(&s
->mutex
);
844 curl_easy_cleanup(state
->curl
);
847 curl_attach_aio_context(bs
, bdrv_get_aio_context(bs
));
853 error_setg(errp
, "CURL: Error opening file: %s", state
->errmsg
);
854 curl_easy_cleanup(state
->curl
);
857 qemu_mutex_destroy(&s
->mutex
);
861 g_free(s
->proxyusername
);
862 g_free(s
->proxypassword
);
867 static void curl_setup_preadv(BlockDriverState
*bs
, CURLAIOCB
*acb
)
872 BDRVCURLState
*s
= bs
->opaque
;
874 uint64_t start
= acb
->offset
;
877 qemu_mutex_lock(&s
->mutex
);
879 // In case we have the requested data already (e.g. read-ahead),
880 // we can just call the callback and be done.
881 if (curl_find_buf(s
, start
, acb
->bytes
, acb
)) {
885 // No cache found, so let's start a new request
887 state
= curl_find_state(s
);
891 QSIMPLEQ_INSERT_TAIL(&s
->free_state_waitq
, acb
, next
);
892 qemu_mutex_unlock(&s
->mutex
);
893 qemu_coroutine_yield();
894 qemu_mutex_lock(&s
->mutex
);
897 if (curl_init_state(s
, state
) < 0) {
898 curl_clean_state(state
);
904 acb
->end
= MIN(acb
->bytes
, s
->len
- start
);
907 g_free(state
->orig_buf
);
908 state
->buf_start
= start
;
909 state
->buf_len
= MIN(acb
->end
+ s
->readahead_size
, s
->len
- start
);
910 end
= start
+ state
->buf_len
- 1;
911 state
->orig_buf
= g_try_malloc(state
->buf_len
);
912 if (state
->buf_len
&& state
->orig_buf
== NULL
) {
913 curl_clean_state(state
);
919 snprintf(state
->range
, 127, "%" PRIu64
"-%" PRIu64
, start
, end
);
920 DPRINTF("CURL (AIO): Reading %" PRIu64
" at %" PRIu64
" (%s)\n",
921 acb
->bytes
, start
, state
->range
);
922 curl_easy_setopt(state
->curl
, CURLOPT_RANGE
, state
->range
);
924 curl_multi_add_handle(s
->multi
, state
->curl
);
926 /* Tell curl it needs to kick things off */
927 curl_multi_socket_action(s
->multi
, CURL_SOCKET_TIMEOUT
, 0, &running
);
930 qemu_mutex_unlock(&s
->mutex
);
933 static int coroutine_fn
curl_co_preadv(BlockDriverState
*bs
,
934 uint64_t offset
, uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
937 .co
= qemu_coroutine_self(),
944 curl_setup_preadv(bs
, &acb
);
945 while (acb
.ret
== -EINPROGRESS
) {
946 qemu_coroutine_yield();
951 static void curl_close(BlockDriverState
*bs
)
953 BDRVCURLState
*s
= bs
->opaque
;
955 DPRINTF("CURL: Close\n");
956 curl_detach_aio_context(bs
);
957 qemu_mutex_destroy(&s
->mutex
);
962 g_free(s
->proxyusername
);
963 g_free(s
->proxypassword
);
966 static int64_t curl_getlength(BlockDriverState
*bs
)
968 BDRVCURLState
*s
= bs
->opaque
;
972 static BlockDriver bdrv_http
= {
973 .format_name
= "http",
974 .protocol_name
= "http",
976 .instance_size
= sizeof(BDRVCURLState
),
977 .bdrv_parse_filename
= curl_parse_filename
,
978 .bdrv_file_open
= curl_open
,
979 .bdrv_close
= curl_close
,
980 .bdrv_getlength
= curl_getlength
,
982 .bdrv_co_preadv
= curl_co_preadv
,
984 .bdrv_detach_aio_context
= curl_detach_aio_context
,
985 .bdrv_attach_aio_context
= curl_attach_aio_context
,
988 static BlockDriver bdrv_https
= {
989 .format_name
= "https",
990 .protocol_name
= "https",
992 .instance_size
= sizeof(BDRVCURLState
),
993 .bdrv_parse_filename
= curl_parse_filename
,
994 .bdrv_file_open
= curl_open
,
995 .bdrv_close
= curl_close
,
996 .bdrv_getlength
= curl_getlength
,
998 .bdrv_co_preadv
= curl_co_preadv
,
1000 .bdrv_detach_aio_context
= curl_detach_aio_context
,
1001 .bdrv_attach_aio_context
= curl_attach_aio_context
,
1004 static BlockDriver bdrv_ftp
= {
1005 .format_name
= "ftp",
1006 .protocol_name
= "ftp",
1008 .instance_size
= sizeof(BDRVCURLState
),
1009 .bdrv_parse_filename
= curl_parse_filename
,
1010 .bdrv_file_open
= curl_open
,
1011 .bdrv_close
= curl_close
,
1012 .bdrv_getlength
= curl_getlength
,
1014 .bdrv_co_preadv
= curl_co_preadv
,
1016 .bdrv_detach_aio_context
= curl_detach_aio_context
,
1017 .bdrv_attach_aio_context
= curl_attach_aio_context
,
1020 static BlockDriver bdrv_ftps
= {
1021 .format_name
= "ftps",
1022 .protocol_name
= "ftps",
1024 .instance_size
= sizeof(BDRVCURLState
),
1025 .bdrv_parse_filename
= curl_parse_filename
,
1026 .bdrv_file_open
= curl_open
,
1027 .bdrv_close
= curl_close
,
1028 .bdrv_getlength
= curl_getlength
,
1030 .bdrv_co_preadv
= curl_co_preadv
,
1032 .bdrv_detach_aio_context
= curl_detach_aio_context
,
1033 .bdrv_attach_aio_context
= curl_attach_aio_context
,
1036 static void curl_block_init(void)
1038 bdrv_register(&bdrv_http
);
1039 bdrv_register(&bdrv_https
);
1040 bdrv_register(&bdrv_ftp
);
1041 bdrv_register(&bdrv_ftps
);
1044 block_init(curl_block_init
);