Remove use of gdk_drawable_get_{screen, display}
[qemu/cris-port.git] / block / curl.c
blob98947dac3274ed34e93e8dabc51d1d080e0d0e11
1 /*
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
22 * THE SOFTWARE.
24 #include "qemu-common.h"
25 #include "block/block_int.h"
26 #include <curl/curl.h>
28 // #define DEBUG
29 // #define DEBUG_VERBOSE
31 #ifdef DEBUG_CURL
32 #define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
33 #else
34 #define DPRINTF(fmt, ...) do { } while (0)
35 #endif
37 #define PROTOCOLS (CURLPROTO_HTTP | CURLPROTO_HTTPS | \
38 CURLPROTO_FTP | CURLPROTO_FTPS | \
39 CURLPROTO_TFTP)
41 #define CURL_NUM_STATES 8
42 #define CURL_NUM_ACB 8
43 #define SECTOR_SIZE 512
44 #define READ_AHEAD_SIZE (256 * 1024)
46 #define FIND_RET_NONE 0
47 #define FIND_RET_OK 1
48 #define FIND_RET_WAIT 2
50 struct BDRVCURLState;
52 typedef struct CURLAIOCB {
53 BlockDriverAIOCB common;
54 QEMUBH *bh;
55 QEMUIOVector *qiov;
57 int64_t sector_num;
58 int nb_sectors;
60 size_t start;
61 size_t end;
62 } CURLAIOCB;
64 typedef struct CURLState
66 struct BDRVCURLState *s;
67 CURLAIOCB *acb[CURL_NUM_ACB];
68 CURL *curl;
69 char *orig_buf;
70 size_t buf_start;
71 size_t buf_off;
72 size_t buf_len;
73 char range[128];
74 char errmsg[CURL_ERROR_SIZE];
75 char in_use;
76 } CURLState;
78 typedef struct BDRVCURLState {
79 CURLM *multi;
80 size_t len;
81 CURLState states[CURL_NUM_STATES];
82 char *url;
83 size_t readahead_size;
84 } BDRVCURLState;
86 static void curl_clean_state(CURLState *s);
87 static void curl_multi_do(void *arg);
88 static int curl_aio_flush(void *opaque);
90 static int curl_sock_cb(CURL *curl, curl_socket_t fd, int action,
91 void *s, void *sp)
93 DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action, fd);
94 switch (action) {
95 case CURL_POLL_IN:
96 qemu_aio_set_fd_handler(fd, curl_multi_do, NULL, curl_aio_flush, s);
97 break;
98 case CURL_POLL_OUT:
99 qemu_aio_set_fd_handler(fd, NULL, curl_multi_do, curl_aio_flush, s);
100 break;
101 case CURL_POLL_INOUT:
102 qemu_aio_set_fd_handler(fd, curl_multi_do, curl_multi_do,
103 curl_aio_flush, s);
104 break;
105 case CURL_POLL_REMOVE:
106 qemu_aio_set_fd_handler(fd, NULL, NULL, NULL, NULL);
107 break;
110 return 0;
113 static size_t curl_size_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
115 CURLState *s = ((CURLState*)opaque);
116 size_t realsize = size * nmemb;
117 size_t fsize;
119 if(sscanf(ptr, "Content-Length: %zd", &fsize) == 1) {
120 s->s->len = fsize;
123 return realsize;
126 static size_t curl_read_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
128 CURLState *s = ((CURLState*)opaque);
129 size_t realsize = size * nmemb;
130 int i;
132 DPRINTF("CURL: Just reading %zd bytes\n", realsize);
134 if (!s || !s->orig_buf)
135 goto read_end;
137 memcpy(s->orig_buf + s->buf_off, ptr, realsize);
138 s->buf_off += realsize;
140 for(i=0; i<CURL_NUM_ACB; i++) {
141 CURLAIOCB *acb = s->acb[i];
143 if (!acb)
144 continue;
146 if ((s->buf_off >= acb->end)) {
147 qemu_iovec_from_buf(acb->qiov, 0, s->orig_buf + acb->start,
148 acb->end - acb->start);
149 acb->common.cb(acb->common.opaque, 0);
150 qemu_aio_release(acb);
151 s->acb[i] = NULL;
155 read_end:
156 return realsize;
159 static int curl_find_buf(BDRVCURLState *s, size_t start, size_t len,
160 CURLAIOCB *acb)
162 int i;
163 size_t end = start + len;
165 for (i=0; i<CURL_NUM_STATES; i++) {
166 CURLState *state = &s->states[i];
167 size_t buf_end = (state->buf_start + state->buf_off);
168 size_t buf_fend = (state->buf_start + state->buf_len);
170 if (!state->orig_buf)
171 continue;
172 if (!state->buf_off)
173 continue;
175 // Does the existing buffer cover our section?
176 if ((start >= state->buf_start) &&
177 (start <= buf_end) &&
178 (end >= state->buf_start) &&
179 (end <= buf_end))
181 char *buf = state->orig_buf + (start - state->buf_start);
183 qemu_iovec_from_buf(acb->qiov, 0, buf, len);
184 acb->common.cb(acb->common.opaque, 0);
186 return FIND_RET_OK;
189 // Wait for unfinished chunks
190 if ((start >= state->buf_start) &&
191 (start <= buf_fend) &&
192 (end >= state->buf_start) &&
193 (end <= buf_fend))
195 int j;
197 acb->start = start - state->buf_start;
198 acb->end = acb->start + len;
200 for (j=0; j<CURL_NUM_ACB; j++) {
201 if (!state->acb[j]) {
202 state->acb[j] = acb;
203 return FIND_RET_WAIT;
209 return FIND_RET_NONE;
212 static void curl_multi_do(void *arg)
214 BDRVCURLState *s = (BDRVCURLState *)arg;
215 int running;
216 int r;
217 int msgs_in_queue;
219 if (!s->multi)
220 return;
222 do {
223 r = curl_multi_socket_all(s->multi, &running);
224 } while(r == CURLM_CALL_MULTI_PERFORM);
226 /* Try to find done transfers, so we can free the easy
227 * handle again. */
228 do {
229 CURLMsg *msg;
230 msg = curl_multi_info_read(s->multi, &msgs_in_queue);
232 if (!msg)
233 break;
234 if (msg->msg == CURLMSG_NONE)
235 break;
237 switch (msg->msg) {
238 case CURLMSG_DONE:
240 CURLState *state = NULL;
241 curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char**)&state);
243 /* ACBs for successful messages get completed in curl_read_cb */
244 if (msg->data.result != CURLE_OK) {
245 int i;
246 for (i = 0; i < CURL_NUM_ACB; i++) {
247 CURLAIOCB *acb = state->acb[i];
249 if (acb == NULL) {
250 continue;
253 acb->common.cb(acb->common.opaque, -EIO);
254 qemu_aio_release(acb);
255 state->acb[i] = NULL;
259 curl_clean_state(state);
260 break;
262 default:
263 msgs_in_queue = 0;
264 break;
266 } while(msgs_in_queue);
269 static CURLState *curl_init_state(BDRVCURLState *s)
271 CURLState *state = NULL;
272 int i, j;
274 do {
275 for (i=0; i<CURL_NUM_STATES; i++) {
276 for (j=0; j<CURL_NUM_ACB; j++)
277 if (s->states[i].acb[j])
278 continue;
279 if (s->states[i].in_use)
280 continue;
282 state = &s->states[i];
283 state->in_use = 1;
284 break;
286 if (!state) {
287 g_usleep(100);
288 curl_multi_do(s);
290 } while(!state);
292 if (state->curl)
293 goto has_curl;
295 state->curl = curl_easy_init();
296 if (!state->curl)
297 return NULL;
298 curl_easy_setopt(state->curl, CURLOPT_URL, s->url);
299 curl_easy_setopt(state->curl, CURLOPT_TIMEOUT, 5);
300 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
301 curl_easy_setopt(state->curl, CURLOPT_WRITEDATA, (void *)state);
302 curl_easy_setopt(state->curl, CURLOPT_PRIVATE, (void *)state);
303 curl_easy_setopt(state->curl, CURLOPT_AUTOREFERER, 1);
304 curl_easy_setopt(state->curl, CURLOPT_FOLLOWLOCATION, 1);
305 curl_easy_setopt(state->curl, CURLOPT_NOSIGNAL, 1);
306 curl_easy_setopt(state->curl, CURLOPT_ERRORBUFFER, state->errmsg);
307 curl_easy_setopt(state->curl, CURLOPT_FAILONERROR, 1);
309 /* Restrict supported protocols to avoid security issues in the more
310 * obscure protocols. For example, do not allow POP3/SMTP/IMAP see
311 * CVE-2013-0249.
313 * Restricting protocols is only supported from 7.19.4 upwards.
315 #if LIBCURL_VERSION_NUM >= 0x071304
316 curl_easy_setopt(state->curl, CURLOPT_PROTOCOLS, PROTOCOLS);
317 curl_easy_setopt(state->curl, CURLOPT_REDIR_PROTOCOLS, PROTOCOLS);
318 #endif
320 #ifdef DEBUG_VERBOSE
321 curl_easy_setopt(state->curl, CURLOPT_VERBOSE, 1);
322 #endif
324 has_curl:
326 state->s = s;
328 return state;
331 static void curl_clean_state(CURLState *s)
333 if (s->s->multi)
334 curl_multi_remove_handle(s->s->multi, s->curl);
335 s->in_use = 0;
338 static int curl_open(BlockDriverState *bs, const char *filename, int flags)
340 BDRVCURLState *s = bs->opaque;
341 CURLState *state = NULL;
342 double d;
344 #define RA_OPTSTR ":readahead="
345 char *file;
346 char *ra;
347 const char *ra_val;
348 int parse_state = 0;
350 static int inited = 0;
352 file = g_strdup(filename);
353 s->readahead_size = READ_AHEAD_SIZE;
355 /* Parse a trailing ":readahead=#:" param, if present. */
356 ra = file + strlen(file) - 1;
357 while (ra >= file) {
358 if (parse_state == 0) {
359 if (*ra == ':')
360 parse_state++;
361 else
362 break;
363 } else if (parse_state == 1) {
364 if (*ra > '9' || *ra < '0') {
365 char *opt_start = ra - strlen(RA_OPTSTR) + 1;
366 if (opt_start > file &&
367 strncmp(opt_start, RA_OPTSTR, strlen(RA_OPTSTR)) == 0) {
368 ra_val = ra + 1;
369 ra -= strlen(RA_OPTSTR) - 1;
370 *ra = '\0';
371 s->readahead_size = atoi(ra_val);
372 break;
373 } else {
374 break;
378 ra--;
381 if ((s->readahead_size & 0x1ff) != 0) {
382 fprintf(stderr, "HTTP_READAHEAD_SIZE %zd is not a multiple of 512\n",
383 s->readahead_size);
384 goto out_noclean;
387 if (!inited) {
388 curl_global_init(CURL_GLOBAL_ALL);
389 inited = 1;
392 DPRINTF("CURL: Opening %s\n", file);
393 s->url = file;
394 state = curl_init_state(s);
395 if (!state)
396 goto out_noclean;
398 // Get file size
400 curl_easy_setopt(state->curl, CURLOPT_NOBODY, 1);
401 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_size_cb);
402 if (curl_easy_perform(state->curl))
403 goto out;
404 curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d);
405 curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
406 curl_easy_setopt(state->curl, CURLOPT_NOBODY, 0);
407 if (d)
408 s->len = (size_t)d;
409 else if(!s->len)
410 goto out;
411 DPRINTF("CURL: Size = %zd\n", s->len);
413 curl_clean_state(state);
414 curl_easy_cleanup(state->curl);
415 state->curl = NULL;
417 // Now we know the file exists and its size, so let's
418 // initialize the multi interface!
420 s->multi = curl_multi_init();
421 curl_multi_setopt( s->multi, CURLMOPT_SOCKETDATA, s);
422 curl_multi_setopt( s->multi, CURLMOPT_SOCKETFUNCTION, curl_sock_cb );
423 curl_multi_do(s);
425 return 0;
427 out:
428 fprintf(stderr, "CURL: Error opening file: %s\n", state->errmsg);
429 curl_easy_cleanup(state->curl);
430 state->curl = NULL;
431 out_noclean:
432 g_free(file);
433 return -EINVAL;
436 static int curl_aio_flush(void *opaque)
438 BDRVCURLState *s = opaque;
439 int i, j;
441 for (i=0; i < CURL_NUM_STATES; i++) {
442 for(j=0; j < CURL_NUM_ACB; j++) {
443 if (s->states[i].acb[j]) {
444 return 1;
448 return 0;
451 static void curl_aio_cancel(BlockDriverAIOCB *blockacb)
453 // Do we have to implement canceling? Seems to work without...
456 static const AIOCBInfo curl_aiocb_info = {
457 .aiocb_size = sizeof(CURLAIOCB),
458 .cancel = curl_aio_cancel,
462 static void curl_readv_bh_cb(void *p)
464 CURLState *state;
466 CURLAIOCB *acb = p;
467 BDRVCURLState *s = acb->common.bs->opaque;
469 qemu_bh_delete(acb->bh);
470 acb->bh = NULL;
472 size_t start = acb->sector_num * SECTOR_SIZE;
473 size_t end;
475 // In case we have the requested data already (e.g. read-ahead),
476 // we can just call the callback and be done.
477 switch (curl_find_buf(s, start, acb->nb_sectors * SECTOR_SIZE, acb)) {
478 case FIND_RET_OK:
479 qemu_aio_release(acb);
480 // fall through
481 case FIND_RET_WAIT:
482 return;
483 default:
484 break;
487 // No cache found, so let's start a new request
488 state = curl_init_state(s);
489 if (!state) {
490 acb->common.cb(acb->common.opaque, -EIO);
491 qemu_aio_release(acb);
492 return;
495 acb->start = 0;
496 acb->end = (acb->nb_sectors * SECTOR_SIZE);
498 state->buf_off = 0;
499 if (state->orig_buf)
500 g_free(state->orig_buf);
501 state->buf_start = start;
502 state->buf_len = acb->end + s->readahead_size;
503 end = MIN(start + state->buf_len, s->len) - 1;
504 state->orig_buf = g_malloc(state->buf_len);
505 state->acb[0] = acb;
507 snprintf(state->range, 127, "%zd-%zd", start, end);
508 DPRINTF("CURL (AIO): Reading %d at %zd (%s)\n",
509 (acb->nb_sectors * SECTOR_SIZE), start, state->range);
510 curl_easy_setopt(state->curl, CURLOPT_RANGE, state->range);
512 curl_multi_add_handle(s->multi, state->curl);
513 curl_multi_do(s);
517 static BlockDriverAIOCB *curl_aio_readv(BlockDriverState *bs,
518 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
519 BlockDriverCompletionFunc *cb, void *opaque)
521 CURLAIOCB *acb;
523 acb = qemu_aio_get(&curl_aiocb_info, bs, cb, opaque);
525 acb->qiov = qiov;
526 acb->sector_num = sector_num;
527 acb->nb_sectors = nb_sectors;
529 acb->bh = qemu_bh_new(curl_readv_bh_cb, acb);
531 if (!acb->bh) {
532 DPRINTF("CURL: qemu_bh_new failed\n");
533 return NULL;
536 qemu_bh_schedule(acb->bh);
537 return &acb->common;
540 static void curl_close(BlockDriverState *bs)
542 BDRVCURLState *s = bs->opaque;
543 int i;
545 DPRINTF("CURL: Close\n");
546 for (i=0; i<CURL_NUM_STATES; i++) {
547 if (s->states[i].in_use)
548 curl_clean_state(&s->states[i]);
549 if (s->states[i].curl) {
550 curl_easy_cleanup(s->states[i].curl);
551 s->states[i].curl = NULL;
553 if (s->states[i].orig_buf) {
554 g_free(s->states[i].orig_buf);
555 s->states[i].orig_buf = NULL;
558 if (s->multi)
559 curl_multi_cleanup(s->multi);
560 g_free(s->url);
563 static int64_t curl_getlength(BlockDriverState *bs)
565 BDRVCURLState *s = bs->opaque;
566 return s->len;
569 static BlockDriver bdrv_http = {
570 .format_name = "http",
571 .protocol_name = "http",
573 .instance_size = sizeof(BDRVCURLState),
574 .bdrv_file_open = curl_open,
575 .bdrv_close = curl_close,
576 .bdrv_getlength = curl_getlength,
578 .bdrv_aio_readv = curl_aio_readv,
581 static BlockDriver bdrv_https = {
582 .format_name = "https",
583 .protocol_name = "https",
585 .instance_size = sizeof(BDRVCURLState),
586 .bdrv_file_open = curl_open,
587 .bdrv_close = curl_close,
588 .bdrv_getlength = curl_getlength,
590 .bdrv_aio_readv = curl_aio_readv,
593 static BlockDriver bdrv_ftp = {
594 .format_name = "ftp",
595 .protocol_name = "ftp",
597 .instance_size = sizeof(BDRVCURLState),
598 .bdrv_file_open = curl_open,
599 .bdrv_close = curl_close,
600 .bdrv_getlength = curl_getlength,
602 .bdrv_aio_readv = curl_aio_readv,
605 static BlockDriver bdrv_ftps = {
606 .format_name = "ftps",
607 .protocol_name = "ftps",
609 .instance_size = sizeof(BDRVCURLState),
610 .bdrv_file_open = curl_open,
611 .bdrv_close = curl_close,
612 .bdrv_getlength = curl_getlength,
614 .bdrv_aio_readv = curl_aio_readv,
617 static BlockDriver bdrv_tftp = {
618 .format_name = "tftp",
619 .protocol_name = "tftp",
621 .instance_size = sizeof(BDRVCURLState),
622 .bdrv_file_open = curl_open,
623 .bdrv_close = curl_close,
624 .bdrv_getlength = curl_getlength,
626 .bdrv_aio_readv = curl_aio_readv,
629 static void curl_block_init(void)
631 bdrv_register(&bdrv_http);
632 bdrv_register(&bdrv_https);
633 bdrv_register(&bdrv_ftp);
634 bdrv_register(&bdrv_ftps);
635 bdrv_register(&bdrv_tftp);
638 block_init(curl_block_init);