rbd.c 26.7 KB
Newer Older
1 2 3
/*
 * QEMU Block driver for RADOS (Ceph)
 *
4 5
 * Copyright (C) 2010-2011 Christian Brunner <chb@muc.de>,
 *                         Josh Durgin <josh.durgin@dreamhost.com>
6 7 8 9
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
10 11
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
12 13
 */

14 15
#include <inttypes.h>

16
#include "qemu-common.h"
17
#include "qemu/error-report.h"
18
#include "block/block_int.h"
19

20
#include <rbd/librbd.h>
21 22 23 24

/*
 * When specifying the image filename use:
 *
25
 * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
26
 *
S
Sage Weil 已提交
27
 * poolname must be the name of an existing rados pool.
28
 *
S
Sage Weil 已提交
29
 * devicename is the name of the rbd image.
30
 *
S
Sage Weil 已提交
31 32
 * Each option given is used to configure rados, and may be any valid
 * Ceph option, "id", or "conf".
33
 *
S
Sage Weil 已提交
34 35 36
 * The "id" option indicates what user we should authenticate as to
 * the Ceph cluster.  If it is excluded we will use the Ceph default
 * (normally 'admin').
37
 *
S
Sage Weil 已提交
38 39 40 41
 * The "conf" option specifies a Ceph configuration file to read.  If
 * it is not specified, we will read from the default Ceph locations
 * (e.g., /etc/ceph/ceph.conf).  To avoid reading _any_ configuration
 * file, specify conf=/dev/null.
42
 *
S
Sage Weil 已提交
43 44
 * Configuration values containing :, @, or = can be escaped with a
 * leading "\".
45 46
 */

J
Josh Durgin 已提交
47 48 49 50 51 52 53
/* rbd_aio_discard added in 0.1.2 */
#if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 2)
#define LIBRBD_SUPPORTS_DISCARD
#else
#undef LIBRBD_SUPPORTS_DISCARD
#endif

54 55
#define OBJ_MAX_SIZE (1UL << OBJ_DEFAULT_OBJ_ORDER)

56 57 58 59 60 61 62
#define RBD_MAX_CONF_NAME_SIZE 128
#define RBD_MAX_CONF_VAL_SIZE 512
#define RBD_MAX_CONF_SIZE 1024
#define RBD_MAX_POOL_NAME_SIZE 128
#define RBD_MAX_SNAP_NAME_SIZE 128
#define RBD_MAX_SNAPS 100

J
Josh Durgin 已提交
63 64 65
typedef enum {
    RBD_AIO_READ,
    RBD_AIO_WRITE,
J
Josh Durgin 已提交
66 67
    RBD_AIO_DISCARD,
    RBD_AIO_FLUSH
J
Josh Durgin 已提交
68 69
} RBDAIOCmd;

70 71 72
typedef struct RBDAIOCB {
    BlockDriverAIOCB common;
    QEMUBH *bh;
73
    int64_t ret;
74 75
    QEMUIOVector *qiov;
    char *bounce;
J
Josh Durgin 已提交
76
    RBDAIOCmd cmd;
77 78 79 80
    int64_t sector_num;
    int error;
    struct BDRVRBDState *s;
    int cancelled;
81
    int status;
82 83 84 85 86 87 88
} RBDAIOCB;

typedef struct RADOSCB {
    int rcbid;
    RBDAIOCB *acb;
    struct BDRVRBDState *s;
    int done;
89
    int64_t size;
90
    char *buf;
91
    int64_t ret;
92 93 94 95 96 97 98
} RADOSCB;

#define RBD_FD_READ 0
#define RBD_FD_WRITE 1

typedef struct BDRVRBDState {
    int fds[2];
99 100 101 102 103
    rados_t cluster;
    rados_ioctx_t io_ctx;
    rbd_image_t image;
    char name[RBD_MAX_IMAGE_NAME_SIZE];
    char *snap;
104 105 106 107 108 109
    int event_reader_pos;
    RADOSCB *event_rcb;
} BDRVRBDState;

static void rbd_aio_bh_cb(void *opaque);

110 111 112 113
static int qemu_rbd_next_tok(char *dst, int dst_len,
                             char *src, char delim,
                             const char *name,
                             char **p)
114 115 116 117 118 119 120
{
    int l;
    char *end;

    *p = NULL;

    if (delim != '\0') {
S
Sage Weil 已提交
121 122 123 124 125 126 127 128 129
        for (end = src; *end; ++end) {
            if (*end == delim) {
                break;
            }
            if (*end == '\\' && end[1] != '\0') {
                end++;
            }
        }
        if (*end == delim) {
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
            *p = end + 1;
            *end = '\0';
        }
    }
    l = strlen(src);
    if (l >= dst_len) {
        error_report("%s too long", name);
        return -EINVAL;
    } else if (l == 0) {
        error_report("%s too short", name);
        return -EINVAL;
    }

    pstrcpy(dst, dst_len, src);

    return 0;
}

S
Sage Weil 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160
static void qemu_rbd_unescape(char *src)
{
    char *p;

    for (p = src; *src; ++src, ++p) {
        if (*src == '\\' && src[1] != '\0') {
            src++;
        }
        *p = *src;
    }
    *p = '\0';
}

161 162 163
static int qemu_rbd_parsename(const char *filename,
                              char *pool, int pool_len,
                              char *snap, int snap_len,
164 165
                              char *name, int name_len,
                              char *conf, int conf_len)
166 167 168 169 170 171 172 173 174
{
    const char *start;
    char *p, *buf;
    int ret;

    if (!strstart(filename, "rbd:", &start)) {
        return -EINVAL;
    }

175
    buf = g_strdup(start);
176
    p = buf;
177 178
    *snap = '\0';
    *conf = '\0';
179

180
    ret = qemu_rbd_next_tok(pool, pool_len, p, '/', "pool name", &p);
181 182 183 184
    if (ret < 0 || !p) {
        ret = -EINVAL;
        goto done;
    }
S
Sage Weil 已提交
185
    qemu_rbd_unescape(pool);
186 187 188 189 190 191 192

    if (strchr(p, '@')) {
        ret = qemu_rbd_next_tok(name, name_len, p, '@', "object name", &p);
        if (ret < 0) {
            goto done;
        }
        ret = qemu_rbd_next_tok(snap, snap_len, p, ':', "snap name", &p);
S
Sage Weil 已提交
193
        qemu_rbd_unescape(snap);
194 195
    } else {
        ret = qemu_rbd_next_tok(name, name_len, p, ':', "object name", &p);
196
    }
S
Sage Weil 已提交
197
    qemu_rbd_unescape(name);
198
    if (ret < 0 || !p) {
199 200 201
        goto done;
    }

202
    ret = qemu_rbd_next_tok(conf, conf_len, p, '\0', "configuration", &p);
203 204

done:
205
    g_free(buf);
206 207 208
    return ret;
}

209 210 211 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
static char *qemu_rbd_parse_clientname(const char *conf, char *clientname)
{
    const char *p = conf;

    while (*p) {
        int len;
        const char *end = strchr(p, ':');

        if (end) {
            len = end - p;
        } else {
            len = strlen(p);
        }

        if (strncmp(p, "id=", 3) == 0) {
            len -= 3;
            strncpy(clientname, p + 3, len);
            clientname[len] = '\0';
            return clientname;
        }
        if (end == NULL) {
            break;
        }
        p = end + 1;
    }
    return NULL;
}

237 238 239 240 241 242 243
static int qemu_rbd_set_conf(rados_t cluster, const char *conf)
{
    char *p, *buf;
    char name[RBD_MAX_CONF_NAME_SIZE];
    char value[RBD_MAX_CONF_VAL_SIZE];
    int ret = 0;

244
    buf = g_strdup(conf);
245 246 247 248 249 250 251 252
    p = buf;

    while (p) {
        ret = qemu_rbd_next_tok(name, sizeof(name), p,
                                '=', "conf option name", &p);
        if (ret < 0) {
            break;
        }
S
Sage Weil 已提交
253
        qemu_rbd_unescape(name);
254 255 256 257 258 259 260 261 262 263 264 265

        if (!p) {
            error_report("conf option %s has no value", name);
            ret = -EINVAL;
            break;
        }

        ret = qemu_rbd_next_tok(value, sizeof(value), p,
                                ':', "conf option value", &p);
        if (ret < 0) {
            break;
        }
S
Sage Weil 已提交
266
        qemu_rbd_unescape(value);
267

268 269
        if (strcmp(name, "conf") == 0) {
            ret = rados_conf_read_file(cluster, value);
270
            if (ret < 0) {
271
                error_report("error reading conf file %s", value);
272 273
                break;
            }
274 275
        } else if (strcmp(name, "id") == 0) {
            /* ignore, this is parsed by qemu_rbd_parse_clientname() */
276
        } else {
277
            ret = rados_conf_set(cluster, name, value);
278
            if (ret < 0) {
279 280
                error_report("invalid conf option %s", name);
                ret = -EINVAL;
281 282 283 284 285
                break;
            }
        }
    }

286
    g_free(buf);
287 288 289
    return ret;
}

290 291
static int qemu_rbd_create(const char *filename, QEMUOptionParameter *options,
                           Error **errp)
292 293 294
{
    int64_t bytes = 0;
    int64_t objsize;
295 296 297 298
    int obj_order = 0;
    char pool[RBD_MAX_POOL_NAME_SIZE];
    char name[RBD_MAX_IMAGE_NAME_SIZE];
    char snap_buf[RBD_MAX_SNAP_NAME_SIZE];
299
    char conf[RBD_MAX_CONF_SIZE];
300 301
    char clientname_buf[RBD_MAX_CONF_SIZE];
    char *clientname;
302 303
    rados_t cluster;
    rados_ioctx_t io_ctx;
304 305
    int ret;

306 307
    if (qemu_rbd_parsename(filename, pool, sizeof(pool),
                           snap_buf, sizeof(snap_buf),
308 309
                           name, sizeof(name),
                           conf, sizeof(conf)) < 0) {
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
        return -EINVAL;
    }

    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
            bytes = options->value.n;
        } else if (!strcmp(options->name, BLOCK_OPT_CLUSTER_SIZE)) {
            if (options->value.n) {
                objsize = options->value.n;
                if ((objsize - 1) & objsize) {    /* not a power of 2? */
                    error_report("obj size needs to be power of 2");
                    return -EINVAL;
                }
                if (objsize < 4096) {
                    error_report("obj size too small");
                    return -EINVAL;
                }
328
                obj_order = ffs(objsize) - 1;
329 330 331 332 333
            }
        }
        options++;
    }

334 335
    clientname = qemu_rbd_parse_clientname(conf, clientname_buf);
    if (rados_create(&cluster, clientname) < 0) {
336 337 338 339
        error_report("error initializing");
        return -EIO;
    }

340
    if (strstr(conf, "conf=") == NULL) {
341 342
        /* try default location, but ignore failure */
        rados_conf_read_file(cluster, NULL);
343 344 345 346 347
    }

    if (conf[0] != '\0' &&
        qemu_rbd_set_conf(cluster, conf) < 0) {
        error_report("error setting config options");
348
        rados_shutdown(cluster);
349 350 351
        return -EIO;
    }

352 353 354
    if (rados_connect(cluster) < 0) {
        error_report("error connecting");
        rados_shutdown(cluster);
355 356 357
        return -EIO;
    }

358 359 360 361
    if (rados_ioctx_create(cluster, pool, &io_ctx) < 0) {
        error_report("error opening pool %s", pool);
        rados_shutdown(cluster);
        return -EIO;
362 363
    }

364 365 366
    ret = rbd_create(io_ctx, name, bytes, &obj_order);
    rados_ioctx_destroy(io_ctx);
    rados_shutdown(cluster);
367 368 369 370 371

    return ret;
}

/*
372 373
 * This aio completion is being called from qemu_rbd_aio_event_reader()
 * and runs in qemu context. It schedules a bh, but just in case the aio
374 375
 * was not cancelled before.
 */
376
static void qemu_rbd_complete_aio(RADOSCB *rcb)
377 378 379 380 381 382
{
    RBDAIOCB *acb = rcb->acb;
    int64_t r;

    r = rcb->ret;

J
Josh Durgin 已提交
383
    if (acb->cmd != RBD_AIO_READ) {
384 385 386 387
        if (r < 0) {
            acb->ret = r;
            acb->error = 1;
        } else if (!acb->error) {
388
            acb->ret = rcb->size;
389 390
        }
    } else {
391 392
        if (r < 0) {
            memset(rcb->buf, 0, rcb->size);
393 394
            acb->ret = r;
            acb->error = 1;
395 396
        } else if (r < rcb->size) {
            memset(rcb->buf + r, 0, rcb->size - r);
397
            if (!acb->error) {
398
                acb->ret = rcb->size;
399 400
            }
        } else if (!acb->error) {
401
            acb->ret = r;
402 403 404
        }
    }
    /* Note that acb->bh can be NULL in case where the aio was cancelled */
405 406
    acb->bh = qemu_bh_new(rbd_aio_bh_cb, acb);
    qemu_bh_schedule(acb->bh);
407
    g_free(rcb);
408 409 410 411 412 413
}

/*
 * aio fd read handler. It runs in the qemu context and calls the
 * completion handling of completed rados aio operations.
 */
414
static void qemu_rbd_aio_event_reader(void *opaque)
415 416 417 418 419 420 421 422 423
{
    BDRVRBDState *s = opaque;

    ssize_t ret;

    do {
        char *p = (char *)&s->event_rcb;

        /* now read the rcb pointer that was sent from a non qemu thread */
S
Sage Weil 已提交
424 425 426 427 428 429 430
        ret = read(s->fds[RBD_FD_READ], p + s->event_reader_pos,
                   sizeof(s->event_rcb) - s->event_reader_pos);
        if (ret > 0) {
            s->event_reader_pos += ret;
            if (s->event_reader_pos == sizeof(s->event_rcb)) {
                s->event_reader_pos = 0;
                qemu_rbd_complete_aio(s->event_rcb);
431 432 433 434 435
            }
        }
    } while (ret < 0 && errno == EINTR);
}

436 437 438 439 440 441 442 443 444 445 446 447 448 449
/* TODO Convert to fine grained options */
static QemuOptsList runtime_opts = {
    .name = "rbd",
    .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
    .desc = {
        {
            .name = "filename",
            .type = QEMU_OPT_STRING,
            .help = "Specification of the rbd image",
        },
        { /* end of list */ }
    },
};

M
Max Reitz 已提交
450 451
static int qemu_rbd_open(BlockDriverState *bs, QDict *options, int flags,
                         Error **errp)
452 453
{
    BDRVRBDState *s = bs->opaque;
454 455
    char pool[RBD_MAX_POOL_NAME_SIZE];
    char snap_buf[RBD_MAX_SNAP_NAME_SIZE];
456
    char conf[RBD_MAX_CONF_SIZE];
457 458
    char clientname_buf[RBD_MAX_CONF_SIZE];
    char *clientname;
459 460 461
    QemuOpts *opts;
    Error *local_err = NULL;
    const char *filename;
462 463
    int r;

464
    opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
465 466 467 468 469 470 471 472 473 474
    qemu_opts_absorb_qdict(opts, options, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
        qemu_opts_del(opts);
        return -EINVAL;
    }

    filename = qemu_opt_get(opts, "filename");

475 476
    if (qemu_rbd_parsename(filename, pool, sizeof(pool),
                           snap_buf, sizeof(snap_buf),
477 478
                           s->name, sizeof(s->name),
                           conf, sizeof(conf)) < 0) {
479 480
        r = -EINVAL;
        goto failed_opts;
481 482
    }

483 484
    clientname = qemu_rbd_parse_clientname(conf, clientname_buf);
    r = rados_create(&s->cluster, clientname);
485
    if (r < 0) {
486
        error_report("error initializing");
487
        goto failed_opts;
488 489
    }

490 491 492 493 494
    s->snap = NULL;
    if (snap_buf[0] != '\0') {
        s->snap = g_strdup(snap_buf);
    }

J
Josh Durgin 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507
    /*
     * Fallback to more conservative semantics if setting cache
     * options fails. Ignore errors from setting rbd_cache because the
     * only possible error is that the option does not exist, and
     * librbd defaults to no caching. If write through caching cannot
     * be set up, fall back to no caching.
     */
    if (flags & BDRV_O_NOCACHE) {
        rados_conf_set(s->cluster, "rbd_cache", "false");
    } else {
        rados_conf_set(s->cluster, "rbd_cache", "true");
    }

508
    if (strstr(conf, "conf=") == NULL) {
509 510
        /* try default location, but ignore failure */
        rados_conf_read_file(s->cluster, NULL);
511 512 513 514 515 516
    }

    if (conf[0] != '\0') {
        r = qemu_rbd_set_conf(s->cluster, conf);
        if (r < 0) {
            error_report("error setting config options");
517
            goto failed_shutdown;
518
        }
519 520
    }

521 522 523
    r = rados_connect(s->cluster);
    if (r < 0) {
        error_report("error connecting");
524
        goto failed_shutdown;
525 526
    }

527 528 529
    r = rados_ioctx_create(s->cluster, pool, &s->io_ctx);
    if (r < 0) {
        error_report("error opening pool %s", pool);
530
        goto failed_shutdown;
531 532
    }

533
    r = rbd_open(s->io_ctx, s->name, &s->image, s->snap);
534
    if (r < 0) {
535
        error_report("error reading header from %s", s->name);
536
        goto failed_open;
537 538
    }

539
    bs->read_only = (s->snap != NULL);
540 541 542 543 544 545 546 547 548

    s->event_reader_pos = 0;
    r = qemu_pipe(s->fds);
    if (r < 0) {
        error_report("error opening eventfd");
        goto failed;
    }
    fcntl(s->fds[0], F_SETFL, O_NONBLOCK);
    fcntl(s->fds[1], F_SETFL, O_NONBLOCK);
549
    qemu_aio_set_fd_handler(s->fds[RBD_FD_READ], qemu_rbd_aio_event_reader,
S
Stefan Hajnoczi 已提交
550
                            NULL, s);
551 552


553
    qemu_opts_del(opts);
554 555 556
    return 0;

failed:
557
    rbd_close(s->image);
558
failed_open:
559
    rados_ioctx_destroy(s->io_ctx);
560
failed_shutdown:
561
    rados_shutdown(s->cluster);
562
    g_free(s->snap);
563 564
failed_opts:
    qemu_opts_del(opts);
565 566 567
    return r;
}

568
static void qemu_rbd_close(BlockDriverState *bs)
569 570 571 572 573
{
    BDRVRBDState *s = bs->opaque;

    close(s->fds[0]);
    close(s->fds[1]);
S
Stefan Hajnoczi 已提交
574
    qemu_aio_set_fd_handler(s->fds[RBD_FD_READ], NULL, NULL, NULL);
575

576 577
    rbd_close(s->image);
    rados_ioctx_destroy(s->io_ctx);
578
    g_free(s->snap);
579
    rados_shutdown(s->cluster);
580 581 582 583 584 585
}

/*
 * Cancel aio. Since we don't reference acb in a non qemu threads,
 * it is safe to access it here.
 */
586
static void qemu_rbd_aio_cancel(BlockDriverAIOCB *blockacb)
587 588 589
{
    RBDAIOCB *acb = (RBDAIOCB *) blockacb;
    acb->cancelled = 1;
590 591 592 593 594 595

    while (acb->status == -EINPROGRESS) {
        qemu_aio_wait();
    }

    qemu_aio_release(acb);
596 597
}

S
Stefan Hajnoczi 已提交
598
static const AIOCBInfo rbd_aiocb_info = {
599
    .aiocb_size = sizeof(RBDAIOCB),
600
    .cancel = qemu_rbd_aio_cancel,
601 602
};

603
static int qemu_rbd_send_pipe(BDRVRBDState *s, RADOSCB *rcb)
604
{
605
    int ret = 0;
606 607
    while (1) {
        fd_set wfd;
608
        int fd = s->fds[RBD_FD_WRITE];
609

610 611
        /* send the op pointer to the qemu thread that is responsible
           for the aio/op completion. Must do it in a qemu thread context */
612 613 614 615 616 617
        ret = write(fd, (void *)&rcb, sizeof(rcb));
        if (ret >= 0) {
            break;
        }
        if (errno == EINTR) {
            continue;
618
        }
619 620
        if (errno != EAGAIN) {
            break;
621
        }
622 623 624 625 626 627 628 629

        FD_ZERO(&wfd);
        FD_SET(fd, &wfd);
        do {
            ret = select(fd + 1, NULL, &wfd, NULL, NULL);
        } while (ret < 0 && errno == EINTR);
    }

630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
    return ret;
}

/*
 * This is the callback function for rbd_aio_read and _write
 *
 * Note: this function is being called from a non qemu thread so
 * we need to be careful about what we do here. Generally we only
 * write to the block notification pipe, and do the rest of the
 * io completion handling from qemu_rbd_aio_event_reader() which
 * runs in a qemu context.
 */
static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb)
{
    int ret;
    rcb->ret = rbd_aio_get_return_value(c);
    rbd_aio_release(c);
    ret = qemu_rbd_send_pipe(rcb->s, rcb);
648
    if (ret < 0) {
649
        error_report("failed writing to acb->s->fds");
650
        g_free(rcb);
651 652 653
    }
}

654
/* Callback when all queued rbd_aio requests are complete */
655 656 657 658 659

static void rbd_aio_bh_cb(void *opaque)
{
    RBDAIOCB *acb = opaque;

J
Josh Durgin 已提交
660
    if (acb->cmd == RBD_AIO_READ) {
661
        qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
662 663 664 665 666
    }
    qemu_vfree(acb->bounce);
    acb->common.cb(acb->common.opaque, (acb->ret > 0 ? 0 : acb->ret));
    qemu_bh_delete(acb->bh);
    acb->bh = NULL;
667
    acb->status = 0;
668

669 670 671
    if (!acb->cancelled) {
        qemu_aio_release(acb);
    }
672 673
}

J
Josh Durgin 已提交
674 675 676 677 678 679 680 681 682 683 684 685
static int rbd_aio_discard_wrapper(rbd_image_t image,
                                   uint64_t off,
                                   uint64_t len,
                                   rbd_completion_t comp)
{
#ifdef LIBRBD_SUPPORTS_DISCARD
    return rbd_aio_discard(image, off, len, comp);
#else
    return -ENOTSUP;
#endif
}

J
Josh Durgin 已提交
686 687 688 689 690 691 692 693 694 695
static int rbd_aio_flush_wrapper(rbd_image_t image,
                                 rbd_completion_t comp)
{
#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
    return rbd_aio_flush(image, comp);
#else
    return -ENOTSUP;
#endif
}

J
Josh Durgin 已提交
696 697 698 699 700 701 702
static BlockDriverAIOCB *rbd_start_aio(BlockDriverState *bs,
                                       int64_t sector_num,
                                       QEMUIOVector *qiov,
                                       int nb_sectors,
                                       BlockDriverCompletionFunc *cb,
                                       void *opaque,
                                       RBDAIOCmd cmd)
703 704 705
{
    RBDAIOCB *acb;
    RADOSCB *rcb;
706
    rbd_completion_t c;
707 708
    int64_t off, size;
    char *buf;
709
    int r;
710 711 712

    BDRVRBDState *s = bs->opaque;

S
Stefan Hajnoczi 已提交
713
    acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque);
J
Josh Durgin 已提交
714
    acb->cmd = cmd;
715
    acb->qiov = qiov;
J
Josh Durgin 已提交
716
    if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) {
J
Josh Durgin 已提交
717 718 719 720
        acb->bounce = NULL;
    } else {
        acb->bounce = qemu_blockalign(bs, qiov->size);
    }
721 722 723 724 725
    acb->ret = 0;
    acb->error = 0;
    acb->s = s;
    acb->cancelled = 0;
    acb->bh = NULL;
726
    acb->status = -EINPROGRESS;
727

J
Josh Durgin 已提交
728
    if (cmd == RBD_AIO_WRITE) {
729
        qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
730 731 732 733 734 735 736
    }

    buf = acb->bounce;

    off = sector_num * BDRV_SECTOR_SIZE;
    size = nb_sectors * BDRV_SECTOR_SIZE;

737
    rcb = g_malloc(sizeof(RADOSCB));
738 739 740 741 742
    rcb->done = 0;
    rcb->acb = acb;
    rcb->buf = buf;
    rcb->s = acb->s;
    rcb->size = size;
743 744 745 746
    r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
    if (r < 0) {
        goto failed;
    }
747

J
Josh Durgin 已提交
748 749
    switch (cmd) {
    case RBD_AIO_WRITE:
750
        r = rbd_aio_write(s->image, off, size, buf, c);
J
Josh Durgin 已提交
751 752
        break;
    case RBD_AIO_READ:
753
        r = rbd_aio_read(s->image, off, size, buf, c);
J
Josh Durgin 已提交
754 755 756 757
        break;
    case RBD_AIO_DISCARD:
        r = rbd_aio_discard_wrapper(s->image, off, size, c);
        break;
J
Josh Durgin 已提交
758 759 760
    case RBD_AIO_FLUSH:
        r = rbd_aio_flush_wrapper(s->image, c);
        break;
J
Josh Durgin 已提交
761 762
    default:
        r = -EINVAL;
763 764 765 766
    }

    if (r < 0) {
        goto failed;
767 768 769
    }

    return &acb->common;
770 771

failed:
772
    g_free(rcb);
773 774
    qemu_aio_release(acb);
    return NULL;
775 776
}

777 778 779 780 781 782
static BlockDriverAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
                                            int64_t sector_num,
                                            QEMUIOVector *qiov,
                                            int nb_sectors,
                                            BlockDriverCompletionFunc *cb,
                                            void *opaque)
783
{
J
Josh Durgin 已提交
784 785
    return rbd_start_aio(bs, sector_num, qiov, nb_sectors, cb, opaque,
                         RBD_AIO_READ);
786 787
}

788 789 790 791 792 793
static BlockDriverAIOCB *qemu_rbd_aio_writev(BlockDriverState *bs,
                                             int64_t sector_num,
                                             QEMUIOVector *qiov,
                                             int nb_sectors,
                                             BlockDriverCompletionFunc *cb,
                                             void *opaque)
794
{
J
Josh Durgin 已提交
795 796
    return rbd_start_aio(bs, sector_num, qiov, nb_sectors, cb, opaque,
                         RBD_AIO_WRITE);
797 798
}

J
Josh Durgin 已提交
799 800 801 802 803 804 805 806 807 808
#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
static BlockDriverAIOCB *qemu_rbd_aio_flush(BlockDriverState *bs,
                                            BlockDriverCompletionFunc *cb,
                                            void *opaque)
{
    return rbd_start_aio(bs, 0, NULL, 0, cb, opaque, RBD_AIO_FLUSH);
}

#else

P
Paolo Bonzini 已提交
809
static int qemu_rbd_co_flush(BlockDriverState *bs)
S
Sage Weil 已提交
810 811 812 813 814 815 816 817 818
{
#if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1)
    /* rbd_flush added in 0.1.1 */
    BDRVRBDState *s = bs->opaque;
    return rbd_flush(s->image);
#else
    return 0;
#endif
}
J
Josh Durgin 已提交
819
#endif
S
Sage Weil 已提交
820

821
static int qemu_rbd_getinfo(BlockDriverState *bs, BlockDriverInfo *bdi)
822 823
{
    BDRVRBDState *s = bs->opaque;
824 825 826 827 828 829 830 831 832
    rbd_image_info_t info;
    int r;

    r = rbd_stat(s->image, &info, sizeof(info));
    if (r < 0) {
        return r;
    }

    bdi->cluster_size = info.obj_size;
833 834 835
    return 0;
}

836
static int64_t qemu_rbd_getlength(BlockDriverState *bs)
837 838
{
    BDRVRBDState *s = bs->opaque;
839 840
    rbd_image_info_t info;
    int r;
841

842 843 844 845 846 847
    r = rbd_stat(s->image, &info, sizeof(info));
    if (r < 0) {
        return r;
    }

    return info.size;
848 849
}

850 851 852 853 854 855 856 857 858 859 860 861 862
static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset)
{
    BDRVRBDState *s = bs->opaque;
    int r;

    r = rbd_resize(s->image, offset);
    if (r < 0) {
        return r;
    }

    return 0;
}

863 864
static int qemu_rbd_snap_create(BlockDriverState *bs,
                                QEMUSnapshotInfo *sn_info)
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
{
    BDRVRBDState *s = bs->opaque;
    int r;

    if (sn_info->name[0] == '\0') {
        return -EINVAL; /* we need a name for rbd snapshots */
    }

    /*
     * rbd snapshots are using the name as the user controlled unique identifier
     * we can't use the rbd snapid for that purpose, as it can't be set
     */
    if (sn_info->id_str[0] != '\0' &&
        strcmp(sn_info->id_str, sn_info->name) != 0) {
        return -EINVAL;
    }

    if (strlen(sn_info->name) >= sizeof(sn_info->id_str)) {
        return -ERANGE;
    }

886
    r = rbd_snap_create(s->image, sn_info->name);
887
    if (r < 0) {
888
        error_report("failed to create snap: %s", strerror(-r));
889 890 891 892 893 894
        return r;
    }

    return 0;
}

895
static int qemu_rbd_snap_remove(BlockDriverState *bs,
896 897 898
                                const char *snapshot_id,
                                const char *snapshot_name,
                                Error **errp)
899 900 901 902
{
    BDRVRBDState *s = bs->opaque;
    int r;

903 904 905 906 907 908 909 910 911 912 913 914 915 916
    if (!snapshot_name) {
        error_setg(errp, "rbd need a valid snapshot name");
        return -EINVAL;
    }

    /* If snapshot_id is specified, it must be equal to name, see
       qemu_rbd_snap_list() */
    if (snapshot_id && strcmp(snapshot_id, snapshot_name)) {
        error_setg(errp,
                   "rbd do not support snapshot id, it should be NULL or "
                   "equal to snapshot name");
        return -EINVAL;
    }

917
    r = rbd_snap_remove(s->image, snapshot_name);
918 919 920
    if (r < 0) {
        error_setg_errno(errp, -r, "Failed to remove the snapshot");
    }
921 922 923 924 925 926 927 928 929 930 931 932 933
    return r;
}

static int qemu_rbd_snap_rollback(BlockDriverState *bs,
                                  const char *snapshot_name)
{
    BDRVRBDState *s = bs->opaque;
    int r;

    r = rbd_snap_rollback(s->image, snapshot_name);
    return r;
}

934 935
static int qemu_rbd_snap_list(BlockDriverState *bs,
                              QEMUSnapshotInfo **psn_tab)
936 937 938
{
    BDRVRBDState *s = bs->opaque;
    QEMUSnapshotInfo *sn_info, *sn_tab = NULL;
939 940 941
    int i, snap_count;
    rbd_snap_info_t *snaps;
    int max_snaps = RBD_MAX_SNAPS;
942

943
    do {
944
        snaps = g_malloc(sizeof(*snaps) * max_snaps);
945
        snap_count = rbd_snap_list(s->image, snaps, &max_snaps);
946
        if (snap_count <= 0) {
947
            g_free(snaps);
948
        }
949
    } while (snap_count == -ERANGE);
950

951
    if (snap_count <= 0) {
952
        goto done;
953 954
    }

955
    sn_tab = g_malloc0(snap_count * sizeof(QEMUSnapshotInfo));
956

957 958
    for (i = 0; i < snap_count; i++) {
        const char *snap_name = snaps[i].name;
959 960 961 962 963

        sn_info = sn_tab + i;
        pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), snap_name);
        pstrcpy(sn_info->name, sizeof(sn_info->name), snap_name);

964
        sn_info->vm_state_size = snaps[i].size;
965 966 967 968
        sn_info->date_sec = 0;
        sn_info->date_nsec = 0;
        sn_info->vm_clock_nsec = 0;
    }
969
    rbd_snap_list_end(snaps);
970
    g_free(snaps);
971

972
 done:
973 974 975 976
    *psn_tab = sn_tab;
    return snap_count;
}

J
Josh Durgin 已提交
977 978 979 980 981 982 983 984 985 986 987 988
#ifdef LIBRBD_SUPPORTS_DISCARD
static BlockDriverAIOCB* qemu_rbd_aio_discard(BlockDriverState *bs,
                                              int64_t sector_num,
                                              int nb_sectors,
                                              BlockDriverCompletionFunc *cb,
                                              void *opaque)
{
    return rbd_start_aio(bs, sector_num, NULL, nb_sectors, cb, opaque,
                         RBD_AIO_DISCARD);
}
#endif

989
static QEMUOptionParameter qemu_rbd_create_options[] = {
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
    {
     .name = BLOCK_OPT_SIZE,
     .type = OPT_SIZE,
     .help = "Virtual disk size"
    },
    {
     .name = BLOCK_OPT_CLUSTER_SIZE,
     .type = OPT_SIZE,
     .help = "RBD object size"
    },
    {NULL}
};

static BlockDriver bdrv_rbd = {
    .format_name        = "rbd",
    .instance_size      = sizeof(BDRVRBDState),
1006
    .bdrv_needs_filename = true,
1007 1008 1009
    .bdrv_file_open     = qemu_rbd_open,
    .bdrv_close         = qemu_rbd_close,
    .bdrv_create        = qemu_rbd_create,
1010
    .bdrv_has_zero_init = bdrv_has_zero_init_1,
1011 1012 1013
    .bdrv_get_info      = qemu_rbd_getinfo,
    .create_options     = qemu_rbd_create_options,
    .bdrv_getlength     = qemu_rbd_getlength,
1014
    .bdrv_truncate      = qemu_rbd_truncate,
1015 1016
    .protocol_name      = "rbd",

1017 1018
    .bdrv_aio_readv         = qemu_rbd_aio_readv,
    .bdrv_aio_writev        = qemu_rbd_aio_writev,
J
Josh Durgin 已提交
1019 1020 1021 1022

#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
    .bdrv_aio_flush         = qemu_rbd_aio_flush,
#else
1023
    .bdrv_co_flush_to_disk  = qemu_rbd_co_flush,
J
Josh Durgin 已提交
1024
#endif
1025

J
Josh Durgin 已提交
1026 1027 1028 1029
#ifdef LIBRBD_SUPPORTS_DISCARD
    .bdrv_aio_discard       = qemu_rbd_aio_discard,
#endif

1030
    .bdrv_snapshot_create   = qemu_rbd_snap_create,
1031
    .bdrv_snapshot_delete   = qemu_rbd_snap_remove,
1032
    .bdrv_snapshot_list     = qemu_rbd_snap_list,
1033
    .bdrv_snapshot_goto     = qemu_rbd_snap_rollback,
1034 1035 1036 1037 1038 1039 1040 1041
};

static void bdrv_rbd_init(void)
{
    bdrv_register(&bdrv_rbd);
}

block_init(bdrv_rbd_init);