2 * QEMU Block driver for CURL images
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-common.h"
25 #include "block_int.h"
26 #include <curl/curl.h>
29 // #define DEBUG_VERBOSE
32 #define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
34 #define DPRINTF(fmt, ...) do { } while (0)
37 #define CURL_NUM_STATES 8
38 #define CURL_NUM_ACB 8
39 #define SECTOR_SIZE 512
40 #define READ_AHEAD_SIZE (256 * 1024)
42 #define FIND_RET_NONE 0
44 #define FIND_RET_WAIT 2
48 typedef struct CURLAIOCB {
49 BlockDriverAIOCB common;
55 typedef struct CURLState
57 struct BDRVCURLState *s;
58 CURLAIOCB *acb[CURL_NUM_ACB];
65 char errmsg[CURL_ERROR_SIZE];
69 typedef struct BDRVCURLState {
72 CURLState states[CURL_NUM_STATES];
74 size_t readahead_size;
77 static void curl_clean_state(CURLState *s);
78 static void curl_multi_do(void *arg);
80 static int curl_sock_cb(CURL *curl, curl_socket_t fd, int action,
83 DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action, fd);
86 qemu_aio_set_fd_handler(fd, curl_multi_do, NULL, NULL, NULL, s);
89 qemu_aio_set_fd_handler(fd, NULL, curl_multi_do, NULL, NULL, s);
92 qemu_aio_set_fd_handler(fd, curl_multi_do,
93 curl_multi_do, NULL, NULL, s);
95 case CURL_POLL_REMOVE:
96 qemu_aio_set_fd_handler(fd, NULL, NULL, NULL, NULL, NULL);
103 static size_t curl_size_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
105 CURLState *s = ((CURLState*)opaque);
106 size_t realsize = size * nmemb;
109 if(sscanf(ptr, "Content-Length: %zd", &fsize) == 1) {
116 static size_t curl_read_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
118 CURLState *s = ((CURLState*)opaque);
119 size_t realsize = size * nmemb;
122 DPRINTF("CURL: Just reading %zd bytes\n", realsize);
124 if (!s || !s->orig_buf)
127 memcpy(s->orig_buf + s->buf_off, ptr, realsize);
128 s->buf_off += realsize;
130 for(i=0; i<CURL_NUM_ACB; i++) {
131 CURLAIOCB *acb = s->acb[i];
136 if ((s->buf_off >= acb->end)) {
137 qemu_iovec_from_buffer(acb->qiov, s->orig_buf + acb->start,
138 acb->end - acb->start);
139 acb->common.cb(acb->common.opaque, 0);
140 qemu_aio_release(acb);
149 static int curl_find_buf(BDRVCURLState *s, size_t start, size_t len,
153 size_t end = start + len;
155 for (i=0; i<CURL_NUM_STATES; i++) {
156 CURLState *state = &s->states[i];
157 size_t buf_end = (state->buf_start + state->buf_off);
158 size_t buf_fend = (state->buf_start + state->buf_len);
160 if (!state->orig_buf)
165 // Does the existing buffer cover our section?
166 if ((start >= state->buf_start) &&
167 (start <= buf_end) &&
168 (end >= state->buf_start) &&
171 char *buf = state->orig_buf + (start - state->buf_start);
173 qemu_iovec_from_buffer(acb->qiov, buf, len);
174 acb->common.cb(acb->common.opaque, 0);
179 // Wait for unfinished chunks
180 if ((start >= state->buf_start) &&
181 (start <= buf_fend) &&
182 (end >= state->buf_start) &&
187 acb->start = start - state->buf_start;
188 acb->end = acb->start + len;
190 for (j=0; j<CURL_NUM_ACB; j++) {
191 if (!state->acb[j]) {
193 return FIND_RET_WAIT;
199 return FIND_RET_NONE;
202 static void curl_multi_do(void *arg)
204 BDRVCURLState *s = (BDRVCURLState *)arg;
213 r = curl_multi_socket_all(s->multi, &running);
214 } while(r == CURLM_CALL_MULTI_PERFORM);
216 /* Try to find done transfers, so we can free the easy
220 msg = curl_multi_info_read(s->multi, &msgs_in_queue);
224 if (msg->msg == CURLMSG_NONE)
230 CURLState *state = NULL;
231 curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char**)&state);
232 curl_clean_state(state);
239 } while(msgs_in_queue);
242 static CURLState *curl_init_state(BDRVCURLState *s)
244 CURLState *state = NULL;
248 for (i=0; i<CURL_NUM_STATES; i++) {
249 for (j=0; j<CURL_NUM_ACB; j++)
250 if (s->states[i].acb[j])
252 if (s->states[i].in_use)
255 state = &s->states[i];
268 state->curl = curl_easy_init();
271 curl_easy_setopt(state->curl, CURLOPT_URL, s->url);
272 curl_easy_setopt(state->curl, CURLOPT_TIMEOUT, 5);
273 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
274 curl_easy_setopt(state->curl, CURLOPT_WRITEDATA, (void *)state);
275 curl_easy_setopt(state->curl, CURLOPT_PRIVATE, (void *)state);
276 curl_easy_setopt(state->curl, CURLOPT_AUTOREFERER, 1);
277 curl_easy_setopt(state->curl, CURLOPT_FOLLOWLOCATION, 1);
278 curl_easy_setopt(state->curl, CURLOPT_NOSIGNAL, 1);
279 curl_easy_setopt(state->curl, CURLOPT_ERRORBUFFER, state->errmsg);
282 curl_easy_setopt(state->curl, CURLOPT_VERBOSE, 1);
292 static void curl_clean_state(CURLState *s)
295 curl_multi_remove_handle(s->s->multi, s->curl);
299 static int curl_open(BlockDriverState *bs, const char *filename, int flags)
301 BDRVCURLState *s = bs->opaque;
302 CURLState *state = NULL;
305 #define RA_OPTSTR ":readahead="
311 static int inited = 0;
313 file = qemu_strdup(filename);
314 s->readahead_size = READ_AHEAD_SIZE;
316 /* Parse a trailing ":readahead=#:" param, if present. */
317 ra = file + strlen(file) - 1;
319 if (parse_state == 0) {
324 } else if (parse_state == 1) {
325 if (*ra > '9' || *ra < '0') {
326 char *opt_start = ra - strlen(RA_OPTSTR) + 1;
327 if (opt_start > file &&
328 strncmp(opt_start, RA_OPTSTR, strlen(RA_OPTSTR)) == 0) {
330 ra -= strlen(RA_OPTSTR) - 1;
332 s->readahead_size = atoi(ra_val);
342 if ((s->readahead_size & 0x1ff) != 0) {
343 fprintf(stderr, "HTTP_READAHEAD_SIZE %zd is not a multiple of 512\n",
349 curl_global_init(CURL_GLOBAL_ALL);
353 DPRINTF("CURL: Opening %s\n", file);
355 state = curl_init_state(s);
361 curl_easy_setopt(state->curl, CURLOPT_NOBODY, 1);
362 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_size_cb);
363 if (curl_easy_perform(state->curl))
365 curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d);
366 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
367 curl_easy_setopt(state->curl, CURLOPT_NOBODY, 0);
372 DPRINTF("CURL: Size = %zd\n", s->len);
374 curl_clean_state(state);
375 curl_easy_cleanup(state->curl);
378 // Now we know the file exists and its size, so let's
379 // initialize the multi interface!
381 s->multi = curl_multi_init();
382 curl_multi_setopt( s->multi, CURLMOPT_SOCKETDATA, s);
383 curl_multi_setopt( s->multi, CURLMOPT_SOCKETFUNCTION, curl_sock_cb );
389 fprintf(stderr, "CURL: Error opening file: %s\n", state->errmsg);
390 curl_easy_cleanup(state->curl);
397 static void curl_aio_cancel(BlockDriverAIOCB *blockacb)
399 // Do we have to implement canceling? Seems to work without...
402 static AIOPool curl_aio_pool = {
403 .aiocb_size = sizeof(CURLAIOCB),
404 .cancel = curl_aio_cancel,
407 static BlockDriverAIOCB *curl_aio_readv(BlockDriverState *bs,
408 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
409 BlockDriverCompletionFunc *cb, void *opaque)
411 BDRVCURLState *s = bs->opaque;
413 size_t start = sector_num * SECTOR_SIZE;
417 acb = qemu_aio_get(&curl_aio_pool, bs, cb, opaque);
423 // In case we have the requested data already (e.g. read-ahead),
424 // we can just call the callback and be done.
426 switch (curl_find_buf(s, start, nb_sectors * SECTOR_SIZE, acb)) {
428 qemu_aio_release(acb);
436 // No cache found, so let's start a new request
438 state = curl_init_state(s);
443 acb->end = (nb_sectors * SECTOR_SIZE);
447 qemu_free(state->orig_buf);
448 state->buf_start = start;
449 state->buf_len = acb->end + s->readahead_size;
450 end = MIN(start + state->buf_len, s->len) - 1;
451 state->orig_buf = qemu_malloc(state->buf_len);
454 snprintf(state->range, 127, "%zd-%zd", start, end);
455 DPRINTF("CURL (AIO): Reading %d at %zd (%s)\n",
456 (nb_sectors * SECTOR_SIZE), start, state->range);
457 curl_easy_setopt(state->curl, CURLOPT_RANGE, state->range);
459 curl_multi_add_handle(s->multi, state->curl);
465 static void curl_close(BlockDriverState *bs)
467 BDRVCURLState *s = bs->opaque;
470 DPRINTF("CURL: Close\n");
471 for (i=0; i<CURL_NUM_STATES; i++) {
472 if (s->states[i].in_use)
473 curl_clean_state(&s->states[i]);
474 if (s->states[i].curl) {
475 curl_easy_cleanup(s->states[i].curl);
476 s->states[i].curl = NULL;
478 if (s->states[i].orig_buf) {
479 qemu_free(s->states[i].orig_buf);
480 s->states[i].orig_buf = NULL;
484 curl_multi_cleanup(s->multi);
489 static int64_t curl_getlength(BlockDriverState *bs)
491 BDRVCURLState *s = bs->opaque;
495 static BlockDriver bdrv_http = {
496 .format_name = "http",
497 .protocol_name = "http",
499 .instance_size = sizeof(BDRVCURLState),
500 .bdrv_file_open = curl_open,
501 .bdrv_close = curl_close,
502 .bdrv_getlength = curl_getlength,
504 .bdrv_aio_readv = curl_aio_readv,
507 static BlockDriver bdrv_https = {
508 .format_name = "https",
509 .protocol_name = "https",
511 .instance_size = sizeof(BDRVCURLState),
512 .bdrv_file_open = curl_open,
513 .bdrv_close = curl_close,
514 .bdrv_getlength = curl_getlength,
516 .bdrv_aio_readv = curl_aio_readv,
519 static BlockDriver bdrv_ftp = {
520 .format_name = "ftp",
521 .protocol_name = "ftp",
523 .instance_size = sizeof(BDRVCURLState),
524 .bdrv_file_open = curl_open,
525 .bdrv_close = curl_close,
526 .bdrv_getlength = curl_getlength,
528 .bdrv_aio_readv = curl_aio_readv,
531 static BlockDriver bdrv_ftps = {
532 .format_name = "ftps",
533 .protocol_name = "ftps",
535 .instance_size = sizeof(BDRVCURLState),
536 .bdrv_file_open = curl_open,
537 .bdrv_close = curl_close,
538 .bdrv_getlength = curl_getlength,
540 .bdrv_aio_readv = curl_aio_readv,
543 static BlockDriver bdrv_tftp = {
544 .format_name = "tftp",
545 .protocol_name = "tftp",
547 .instance_size = sizeof(BDRVCURLState),
548 .bdrv_file_open = curl_open,
549 .bdrv_close = curl_close,
550 .bdrv_getlength = curl_getlength,
552 .bdrv_aio_readv = curl_aio_readv,
555 static void curl_block_init(void)
557 bdrv_register(&bdrv_http);
558 bdrv_register(&bdrv_https);
559 bdrv_register(&bdrv_ftp);
560 bdrv_register(&bdrv_ftps);
561 bdrv_register(&bdrv_tftp);
564 block_init(curl_block_init);