You need to sign in or sign up before continuing.
curl.c 19.9 KB
Newer Older
A
Alexander Graf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU Block driver for CURL images
 *
 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include "qemu-common.h"
25
#include "block/block_int.h"
A
Alexander Graf 已提交
26 27 28 29 30 31
#include <curl/curl.h>

// #define DEBUG
// #define DEBUG_VERBOSE

#ifdef DEBUG_CURL
M
malc 已提交
32
#define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
A
Alexander Graf 已提交
33
#else
M
malc 已提交
34
#define DPRINTF(fmt, ...) do { } while (0)
A
Alexander Graf 已提交
35 36
#endif

37 38 39 40 41
#if LIBCURL_VERSION_NUM >= 0x071000
/* The multi interface timer callback was introduced in 7.16.0 */
#define NEED_CURL_TIMER_CALLBACK
#endif

42 43 44 45
#define PROTOCOLS (CURLPROTO_HTTP | CURLPROTO_HTTPS | \
                   CURLPROTO_FTP | CURLPROTO_FTPS | \
                   CURLPROTO_TFTP)

A
Alexander Graf 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58
#define CURL_NUM_STATES 8
#define CURL_NUM_ACB    8
#define SECTOR_SIZE     512
#define READ_AHEAD_SIZE (256 * 1024)

#define FIND_RET_NONE   0
#define FIND_RET_OK     1
#define FIND_RET_WAIT   2

struct BDRVCURLState;

typedef struct CURLAIOCB {
    BlockDriverAIOCB common;
59
    QEMUBH *bh;
A
Alexander Graf 已提交
60
    QEMUIOVector *qiov;
61 62 63 64

    int64_t sector_num;
    int nb_sectors;

A
Alexander Graf 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    size_t start;
    size_t end;
} CURLAIOCB;

typedef struct CURLState
{
    struct BDRVCURLState *s;
    CURLAIOCB *acb[CURL_NUM_ACB];
    CURL *curl;
    char *orig_buf;
    size_t buf_start;
    size_t buf_off;
    size_t buf_len;
    char range[128];
    char errmsg[CURL_ERROR_SIZE];
    char in_use;
} CURLState;

typedef struct BDRVCURLState {
    CURLM *multi;
85
    QEMUTimer timer;
A
Alexander Graf 已提交
86 87 88
    size_t len;
    CURLState states[CURL_NUM_STATES];
    char *url;
89
    size_t readahead_size;
90
    bool accept_range;
A
Alexander Graf 已提交
91 92 93 94 95
} BDRVCURLState;

static void curl_clean_state(CURLState *s);
static void curl_multi_do(void *arg);

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
#ifdef NEED_CURL_TIMER_CALLBACK
static int curl_timer_cb(CURLM *multi, long timeout_ms, void *opaque)
{
    BDRVCURLState *s = opaque;

    DPRINTF("CURL: timer callback timeout_ms %ld\n", timeout_ms);
    if (timeout_ms == -1) {
        timer_del(&s->timer);
    } else {
        int64_t timeout_ns = (int64_t)timeout_ms * 1000 * 1000;
        timer_mod(&s->timer,
                  qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + timeout_ns);
    }
    return 0;
}
#endif

A
Alexander Graf 已提交
113 114 115
static int curl_sock_cb(CURL *curl, curl_socket_t fd, int action,
                        void *s, void *sp)
{
M
malc 已提交
116
    DPRINTF("CURL (AIO): Sock action %d on fd %d\n", action, fd);
A
Alexander Graf 已提交
117 118
    switch (action) {
        case CURL_POLL_IN:
S
Stefan Hajnoczi 已提交
119
            qemu_aio_set_fd_handler(fd, curl_multi_do, NULL, s);
A
Alexander Graf 已提交
120 121
            break;
        case CURL_POLL_OUT:
S
Stefan Hajnoczi 已提交
122
            qemu_aio_set_fd_handler(fd, NULL, curl_multi_do, s);
A
Alexander Graf 已提交
123 124
            break;
        case CURL_POLL_INOUT:
S
Stefan Hajnoczi 已提交
125
            qemu_aio_set_fd_handler(fd, curl_multi_do, curl_multi_do, s);
A
Alexander Graf 已提交
126 127
            break;
        case CURL_POLL_REMOVE:
S
Stefan Hajnoczi 已提交
128
            qemu_aio_set_fd_handler(fd, NULL, NULL, NULL);
A
Alexander Graf 已提交
129 130 131 132 133 134
            break;
    }

    return 0;
}

135
static size_t curl_header_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
A
Alexander Graf 已提交
136
{
137
    BDRVCURLState *s = opaque;
A
Alexander Graf 已提交
138
    size_t realsize = size * nmemb;
139
    const char *accept_line = "Accept-Ranges: bytes";
A
Alexander Graf 已提交
140

141 142 143
    if (realsize >= strlen(accept_line)
        && strncmp((char *)ptr, accept_line, strlen(accept_line)) == 0) {
        s->accept_range = true;
B
Blue Swirl 已提交
144
    }
A
Alexander Graf 已提交
145 146 147 148 149 150 151 152 153 154

    return realsize;
}

static size_t curl_read_cb(void *ptr, size_t size, size_t nmemb, void *opaque)
{
    CURLState *s = ((CURLState*)opaque);
    size_t realsize = size * nmemb;
    int i;

B
Blue Swirl 已提交
155
    DPRINTF("CURL: Just reading %zd bytes\n", realsize);
A
Alexander Graf 已提交
156 157 158 159

    if (!s || !s->orig_buf)
        goto read_end;

160 161 162 163 164
    if (s->buf_off >= s->buf_len) {
        /* buffer full, read nothing */
        return 0;
    }
    realsize = MIN(realsize, s->buf_len - s->buf_off);
A
Alexander Graf 已提交
165 166 167 168 169 170 171 172 173 174
    memcpy(s->orig_buf + s->buf_off, ptr, realsize);
    s->buf_off += realsize;

    for(i=0; i<CURL_NUM_ACB; i++) {
        CURLAIOCB *acb = s->acb[i];

        if (!acb)
            continue;

        if ((s->buf_off >= acb->end)) {
175 176
            qemu_iovec_from_buf(acb->qiov, 0, s->orig_buf + acb->start,
                                acb->end - acb->start);
A
Alexander Graf 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
            acb->common.cb(acb->common.opaque, 0);
            qemu_aio_release(acb);
            s->acb[i] = NULL;
        }
    }

read_end:
    return realsize;
}

static int curl_find_buf(BDRVCURLState *s, size_t start, size_t len,
                         CURLAIOCB *acb)
{
    int i;
    size_t end = start + len;

    for (i=0; i<CURL_NUM_STATES; i++) {
        CURLState *state = &s->states[i];
        size_t buf_end = (state->buf_start + state->buf_off);
        size_t buf_fend = (state->buf_start + state->buf_len);

        if (!state->orig_buf)
            continue;
        if (!state->buf_off)
            continue;

        // Does the existing buffer cover our section?
        if ((start >= state->buf_start) &&
            (start <= buf_end) &&
            (end >= state->buf_start) &&
            (end <= buf_end))
        {
            char *buf = state->orig_buf + (start - state->buf_start);

211
            qemu_iovec_from_buf(acb->qiov, 0, buf, len);
A
Alexander Graf 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
            acb->common.cb(acb->common.opaque, 0);

            return FIND_RET_OK;
        }

        // Wait for unfinished chunks
        if ((start >= state->buf_start) &&
            (start <= buf_fend) &&
            (end >= state->buf_start) &&
            (end <= buf_fend))
        {
            int j;

            acb->start = start - state->buf_start;
            acb->end = acb->start + len;

            for (j=0; j<CURL_NUM_ACB; j++) {
                if (!state->acb[j]) {
                    state->acb[j] = acb;
                    return FIND_RET_WAIT;
                }
            }
        }
    }

    return FIND_RET_NONE;
}

240
static void curl_multi_read(BDRVCURLState *s)
A
Alexander Graf 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
{
    int msgs_in_queue;

    /* Try to find done transfers, so we can free the easy
     * handle again. */
    do {
        CURLMsg *msg;
        msg = curl_multi_info_read(s->multi, &msgs_in_queue);

        if (!msg)
            break;
        if (msg->msg == CURLMSG_NONE)
            break;

        switch (msg->msg) {
            case CURLMSG_DONE:
            {
                CURLState *state = NULL;
                curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char**)&state);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276

                /* ACBs for successful messages get completed in curl_read_cb */
                if (msg->data.result != CURLE_OK) {
                    int i;
                    for (i = 0; i < CURL_NUM_ACB; i++) {
                        CURLAIOCB *acb = state->acb[i];

                        if (acb == NULL) {
                            continue;
                        }

                        acb->common.cb(acb->common.opaque, -EIO);
                        qemu_aio_release(acb);
                        state->acb[i] = NULL;
                    }
                }

A
Alexander Graf 已提交
277 278 279 280 281 282 283 284 285 286
                curl_clean_state(state);
                break;
            }
            default:
                msgs_in_queue = 0;
                break;
        }
    } while(msgs_in_queue);
}

287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
static void curl_multi_do(void *arg)
{
    BDRVCURLState *s = (BDRVCURLState *)arg;
    int running;
    int r;

    if (!s->multi) {
        return;
    }

    do {
        r = curl_multi_socket_all(s->multi, &running);
    } while(r == CURLM_CALL_MULTI_PERFORM);

    curl_multi_read(s);
}

static void curl_multi_timeout_do(void *arg)
{
#ifdef NEED_CURL_TIMER_CALLBACK
    BDRVCURLState *s = (BDRVCURLState *)arg;
    int running;

    if (!s->multi) {
        return;
    }

    curl_multi_socket_action(s->multi, CURL_SOCKET_TIMEOUT, 0, &running);

    curl_multi_read(s);
#else
    abort();
#endif
}

A
Alexander Graf 已提交
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
static CURLState *curl_init_state(BDRVCURLState *s)
{
    CURLState *state = NULL;
    int i, j;

    do {
        for (i=0; i<CURL_NUM_STATES; i++) {
            for (j=0; j<CURL_NUM_ACB; j++)
                if (s->states[i].acb[j])
                    continue;
            if (s->states[i].in_use)
                continue;

            state = &s->states[i];
            state->in_use = 1;
            break;
        }
        if (!state) {
340
            g_usleep(100);
A
Alexander Graf 已提交
341 342 343 344 345 346 347 348 349 350 351 352
            curl_multi_do(s);
        }
    } while(!state);

    if (state->curl)
        goto has_curl;

    state->curl = curl_easy_init();
    if (!state->curl)
        return NULL;
    curl_easy_setopt(state->curl, CURLOPT_URL, s->url);
    curl_easy_setopt(state->curl, CURLOPT_TIMEOUT, 5);
353
    curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
A
Alexander Graf 已提交
354 355 356 357 358 359
    curl_easy_setopt(state->curl, CURLOPT_WRITEDATA, (void *)state);
    curl_easy_setopt(state->curl, CURLOPT_PRIVATE, (void *)state);
    curl_easy_setopt(state->curl, CURLOPT_AUTOREFERER, 1);
    curl_easy_setopt(state->curl, CURLOPT_FOLLOWLOCATION, 1);
    curl_easy_setopt(state->curl, CURLOPT_NOSIGNAL, 1);
    curl_easy_setopt(state->curl, CURLOPT_ERRORBUFFER, state->errmsg);
360 361
    curl_easy_setopt(state->curl, CURLOPT_FAILONERROR, 1);

362 363 364
    /* Restrict supported protocols to avoid security issues in the more
     * obscure protocols.  For example, do not allow POP3/SMTP/IMAP see
     * CVE-2013-0249.
365 366
     *
     * Restricting protocols is only supported from 7.19.4 upwards.
367
     */
368
#if LIBCURL_VERSION_NUM >= 0x071304
369 370
    curl_easy_setopt(state->curl, CURLOPT_PROTOCOLS, PROTOCOLS);
    curl_easy_setopt(state->curl, CURLOPT_REDIR_PROTOCOLS, PROTOCOLS);
371
#endif
372

A
Alexander Graf 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
#ifdef DEBUG_VERBOSE
    curl_easy_setopt(state->curl, CURLOPT_VERBOSE, 1);
#endif

has_curl:

    state->s = s;

    return state;
}

static void curl_clean_state(CURLState *s)
{
    if (s->s->multi)
        curl_multi_remove_handle(s->s->multi, s->curl);
    s->in_use = 0;
}

391 392
static void curl_parse_filename(const char *filename, QDict *options,
                                Error **errp)
A
Alexander Graf 已提交
393
{
394 395 396 397 398 399 400

    #define RA_OPTSTR ":readahead="
    char *file;
    char *ra;
    const char *ra_val;
    int parse_state = 0;

401
    file = g_strdup(filename);
402 403 404 405 406

    /* Parse a trailing ":readahead=#:" param, if present. */
    ra = file + strlen(file) - 1;
    while (ra >= file) {
        if (parse_state == 0) {
407
            if (*ra == ':') {
408
                parse_state++;
409
            } else {
410
                break;
411
            }
412 413 414 415 416 417 418 419
        } else if (parse_state == 1) {
            if (*ra > '9' || *ra < '0') {
                char *opt_start = ra - strlen(RA_OPTSTR) + 1;
                if (opt_start > file &&
                    strncmp(opt_start, RA_OPTSTR, strlen(RA_OPTSTR)) == 0) {
                    ra_val = ra + 1;
                    ra -= strlen(RA_OPTSTR) - 1;
                    *ra = '\0';
420
                    qdict_put(options, "readahead", qstring_from_str(ra_val));
421
                }
422
                break;
423 424 425 426 427
            }
        }
        ra--;
    }

428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
    qdict_put(options, "url", qstring_from_str(file));

    g_free(file);
}

static QemuOptsList runtime_opts = {
    .name = "curl",
    .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
    .desc = {
        {
            .name = "url",
            .type = QEMU_OPT_STRING,
            .help = "URL to open",
        },
        {
            .name = "readahead",
            .type = QEMU_OPT_SIZE,
            .help = "Readahead size",
        },
        { /* end of list */ }
    },
};

M
Max Reitz 已提交
451 452
static int curl_open(BlockDriverState *bs, QDict *options, int flags,
                     Error **errp)
453 454 455 456 457 458 459 460 461 462
{
    BDRVCURLState *s = bs->opaque;
    CURLState *state = NULL;
    QemuOpts *opts;
    Error *local_err = NULL;
    const char *file;
    double d;

    static int inited = 0;

463
    if (flags & BDRV_O_RDWR) {
P
Paolo Bonzini 已提交
464
        error_setg(errp, "curl block device does not support writes");
465 466 467
        return -EROFS;
    }

468
    opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
469
    qemu_opts_absorb_qdict(opts, options, &local_err);
470
    if (local_err) {
P
Paolo Bonzini 已提交
471
        error_propagate(errp, local_err);
472 473 474 475
        goto out_noclean;
    }

    s->readahead_size = qemu_opt_get_size(opts, "readahead", READ_AHEAD_SIZE);
476
    if ((s->readahead_size & 0x1ff) != 0) {
P
Paolo Bonzini 已提交
477 478
        error_setg(errp, "HTTP_READAHEAD_SIZE %zd is not a multiple of 512",
                   s->readahead_size);
479 480 481
        goto out_noclean;
    }

482 483
    file = qemu_opt_get(opts, "url");
    if (file == NULL) {
P
Paolo Bonzini 已提交
484
        error_setg(errp, "curl block driver requires an 'url' option");
485 486 487
        goto out_noclean;
    }

A
Alexander Graf 已提交
488 489 490 491 492
    if (!inited) {
        curl_global_init(CURL_GLOBAL_ALL);
        inited = 1;
    }

M
malc 已提交
493
    DPRINTF("CURL: Opening %s\n", file);
494
    s->url = g_strdup(file);
A
Alexander Graf 已提交
495 496 497 498 499 500
    state = curl_init_state(s);
    if (!state)
        goto out_noclean;

    // Get file size

501
    s->accept_range = false;
A
Alexander Graf 已提交
502
    curl_easy_setopt(state->curl, CURLOPT_NOBODY, 1);
503 504 505
    curl_easy_setopt(state->curl, CURLOPT_HEADERFUNCTION,
                     curl_header_cb);
    curl_easy_setopt(state->curl, CURLOPT_HEADERDATA, s);
A
Alexander Graf 已提交
506 507 508 509 510 511 512
    if (curl_easy_perform(state->curl))
        goto out;
    curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d);
    if (d)
        s->len = (size_t)d;
    else if(!s->len)
        goto out;
513 514 515 516 517 518 519
    if ((!strncasecmp(s->url, "http://", strlen("http://"))
        || !strncasecmp(s->url, "https://", strlen("https://")))
        && !s->accept_range) {
        pstrcpy(state->errmsg, CURL_ERROR_SIZE,
                "Server does not support 'range' (byte ranges).");
        goto out;
    }
B
Blue Swirl 已提交
520
    DPRINTF("CURL: Size = %zd\n", s->len);
A
Alexander Graf 已提交
521 522 523 524 525

    curl_clean_state(state);
    curl_easy_cleanup(state->curl);
    state->curl = NULL;

526 527 528 529
    aio_timer_init(bdrv_get_aio_context(bs), &s->timer,
                   QEMU_CLOCK_REALTIME, SCALE_NS,
                   curl_multi_timeout_do, s);

A
Alexander Graf 已提交
530 531 532 533
    // Now we know the file exists and its size, so let's
    // initialize the multi interface!

    s->multi = curl_multi_init();
534 535
    curl_multi_setopt(s->multi, CURLMOPT_SOCKETDATA, s);
    curl_multi_setopt(s->multi, CURLMOPT_SOCKETFUNCTION, curl_sock_cb);
536 537 538 539
#ifdef NEED_CURL_TIMER_CALLBACK
    curl_multi_setopt(s->multi, CURLMOPT_TIMERDATA, s);
    curl_multi_setopt(s->multi, CURLMOPT_TIMERFUNCTION, curl_timer_cb);
#endif
A
Alexander Graf 已提交
540 541
    curl_multi_do(s);

542
    qemu_opts_del(opts);
A
Alexander Graf 已提交
543 544 545 546 547 548 549
    return 0;

out:
    fprintf(stderr, "CURL: Error opening file: %s\n", state->errmsg);
    curl_easy_cleanup(state->curl);
    state->curl = NULL;
out_noclean:
550 551
    g_free(s->url);
    qemu_opts_del(opts);
A
Alexander Graf 已提交
552 553 554
    return -EINVAL;
}

555 556 557 558 559
static void curl_aio_cancel(BlockDriverAIOCB *blockacb)
{
    // Do we have to implement canceling? Seems to work without...
}

S
Stefan Hajnoczi 已提交
560
static const AIOCBInfo curl_aiocb_info = {
561 562 563 564
    .aiocb_size         = sizeof(CURLAIOCB),
    .cancel             = curl_aio_cancel,
};

565 566

static void curl_readv_bh_cb(void *p)
A
Alexander Graf 已提交
567 568 569
{
    CURLState *state;

570 571
    CURLAIOCB *acb = p;
    BDRVCURLState *s = acb->common.bs->opaque;
A
Alexander Graf 已提交
572

573 574 575 576 577
    qemu_bh_delete(acb->bh);
    acb->bh = NULL;

    size_t start = acb->sector_num * SECTOR_SIZE;
    size_t end;
A
Alexander Graf 已提交
578 579 580

    // In case we have the requested data already (e.g. read-ahead),
    // we can just call the callback and be done.
581
    switch (curl_find_buf(s, start, acb->nb_sectors * SECTOR_SIZE, acb)) {
A
Alexander Graf 已提交
582 583 584 585
        case FIND_RET_OK:
            qemu_aio_release(acb);
            // fall through
        case FIND_RET_WAIT:
586
            return;
A
Alexander Graf 已提交
587 588 589 590 591 592
        default:
            break;
    }

    // No cache found, so let's start a new request
    state = curl_init_state(s);
593 594 595 596 597
    if (!state) {
        acb->common.cb(acb->common.opaque, -EIO);
        qemu_aio_release(acb);
        return;
    }
A
Alexander Graf 已提交
598 599

    acb->start = 0;
600
    acb->end = (acb->nb_sectors * SECTOR_SIZE);
A
Alexander Graf 已提交
601 602 603

    state->buf_off = 0;
    if (state->orig_buf)
604
        g_free(state->orig_buf);
A
Alexander Graf 已提交
605
    state->buf_start = start;
606
    state->buf_len = acb->end + s->readahead_size;
A
Alexander Graf 已提交
607
    end = MIN(start + state->buf_len, s->len) - 1;
608
    state->orig_buf = g_malloc(state->buf_len);
A
Alexander Graf 已提交
609 610
    state->acb[0] = acb;

B
Blue Swirl 已提交
611 612
    snprintf(state->range, 127, "%zd-%zd", start, end);
    DPRINTF("CURL (AIO): Reading %d at %zd (%s)\n",
613
            (acb->nb_sectors * SECTOR_SIZE), start, state->range);
A
Alexander Graf 已提交
614 615 616 617 618
    curl_easy_setopt(state->curl, CURLOPT_RANGE, state->range);

    curl_multi_add_handle(s->multi, state->curl);
    curl_multi_do(s);

619 620 621 622 623 624 625 626
}

static BlockDriverAIOCB *curl_aio_readv(BlockDriverState *bs,
        int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
        BlockDriverCompletionFunc *cb, void *opaque)
{
    CURLAIOCB *acb;

S
Stefan Hajnoczi 已提交
627
    acb = qemu_aio_get(&curl_aiocb_info, bs, cb, opaque);
628 629 630 631 632 633 634

    acb->qiov = qiov;
    acb->sector_num = sector_num;
    acb->nb_sectors = nb_sectors;

    acb->bh = qemu_bh_new(curl_readv_bh_cb, acb);
    qemu_bh_schedule(acb->bh);
A
Alexander Graf 已提交
635 636 637 638 639 640 641 642
    return &acb->common;
}

static void curl_close(BlockDriverState *bs)
{
    BDRVCURLState *s = bs->opaque;
    int i;

M
malc 已提交
643
    DPRINTF("CURL: Close\n");
A
Alexander Graf 已提交
644 645 646 647 648 649 650 651
    for (i=0; i<CURL_NUM_STATES; i++) {
        if (s->states[i].in_use)
            curl_clean_state(&s->states[i]);
        if (s->states[i].curl) {
            curl_easy_cleanup(s->states[i].curl);
            s->states[i].curl = NULL;
        }
        if (s->states[i].orig_buf) {
652
            g_free(s->states[i].orig_buf);
A
Alexander Graf 已提交
653 654 655 656 657
            s->states[i].orig_buf = NULL;
        }
    }
    if (s->multi)
        curl_multi_cleanup(s->multi);
658 659 660

    timer_del(&s->timer);

661
    g_free(s->url);
A
Alexander Graf 已提交
662 663 664 665 666 667 668 669 670
}

static int64_t curl_getlength(BlockDriverState *bs)
{
    BDRVCURLState *s = bs->opaque;
    return s->len;
}

static BlockDriver bdrv_http = {
671 672
    .format_name            = "http",
    .protocol_name          = "http",
A
Alexander Graf 已提交
673

674 675 676 677 678
    .instance_size          = sizeof(BDRVCURLState),
    .bdrv_parse_filename    = curl_parse_filename,
    .bdrv_file_open         = curl_open,
    .bdrv_close             = curl_close,
    .bdrv_getlength         = curl_getlength,
A
Alexander Graf 已提交
679

680
    .bdrv_aio_readv         = curl_aio_readv,
A
Alexander Graf 已提交
681 682 683
};

static BlockDriver bdrv_https = {
684 685
    .format_name            = "https",
    .protocol_name          = "https",
A
Alexander Graf 已提交
686

687 688 689 690 691
    .instance_size          = sizeof(BDRVCURLState),
    .bdrv_parse_filename    = curl_parse_filename,
    .bdrv_file_open         = curl_open,
    .bdrv_close             = curl_close,
    .bdrv_getlength         = curl_getlength,
A
Alexander Graf 已提交
692

693
    .bdrv_aio_readv         = curl_aio_readv,
A
Alexander Graf 已提交
694 695 696
};

static BlockDriver bdrv_ftp = {
697 698
    .format_name            = "ftp",
    .protocol_name          = "ftp",
A
Alexander Graf 已提交
699

700 701 702 703 704
    .instance_size          = sizeof(BDRVCURLState),
    .bdrv_parse_filename    = curl_parse_filename,
    .bdrv_file_open         = curl_open,
    .bdrv_close             = curl_close,
    .bdrv_getlength         = curl_getlength,
A
Alexander Graf 已提交
705

706
    .bdrv_aio_readv         = curl_aio_readv,
A
Alexander Graf 已提交
707 708 709
};

static BlockDriver bdrv_ftps = {
710 711
    .format_name            = "ftps",
    .protocol_name          = "ftps",
A
Alexander Graf 已提交
712

713 714 715 716 717
    .instance_size          = sizeof(BDRVCURLState),
    .bdrv_parse_filename    = curl_parse_filename,
    .bdrv_file_open         = curl_open,
    .bdrv_close             = curl_close,
    .bdrv_getlength         = curl_getlength,
A
Alexander Graf 已提交
718

719
    .bdrv_aio_readv         = curl_aio_readv,
A
Alexander Graf 已提交
720 721 722
};

static BlockDriver bdrv_tftp = {
723 724
    .format_name            = "tftp",
    .protocol_name          = "tftp",
A
Alexander Graf 已提交
725

726 727 728 729 730
    .instance_size          = sizeof(BDRVCURLState),
    .bdrv_parse_filename    = curl_parse_filename,
    .bdrv_file_open         = curl_open,
    .bdrv_close             = curl_close,
    .bdrv_getlength         = curl_getlength,
A
Alexander Graf 已提交
731

732
    .bdrv_aio_readv         = curl_aio_readv,
A
Alexander Graf 已提交
733 734 735 736 737 738 739 740 741 742 743 744
};

static void curl_block_init(void)
{
    bdrv_register(&bdrv_http);
    bdrv_register(&bdrv_https);
    bdrv_register(&bdrv_ftp);
    bdrv_register(&bdrv_ftps);
    bdrv_register(&bdrv_tftp);
}

block_init(curl_block_init);