2 * QEMU Block driver for RADOS (Ceph)
7 * This work is licensed under the terms of the GNU GPL, version 2. See
8 * the COPYING file in the top-level directory.
10 * Contributions after 2012-01-13 are licensed under the terms of the
11 * GNU GPL, version 2 or (at your option) any later version.
14 #include "qemu/osdep.h"
16 #include <rbd/librbd.h>
17 #include "qapi/error.h"
18 #include "qemu/error-report.h"
19 #include "block/block_int.h"
20 #include "crypto/secret.h"
21 #include "qemu/cutils.h"
22 #include "qapi/qmp/qstring.h"
23 #include "qapi/qmp/qjson.h"
26 * When specifying the image filename use:
28 * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
30 * poolname must be the name of an existing rados pool.
32 * devicename is the name of the rbd image.
34 * Each option given is used to configure rados, and may be any valid
35 * Ceph option, "id", or "conf".
37 * The "id" option indicates what user we should authenticate as to
38 * the Ceph cluster. If it is excluded we will use the Ceph default
41 * The "conf" option specifies a Ceph configuration file to read. If
42 * it is not specified, we will read from the default Ceph locations
43 * (e.g., /etc/ceph/ceph.conf). To avoid reading _any_ configuration
44 * file, specify conf=/dev/null.
46 * Configuration values containing :, @, or = can be escaped with a
50 /* rbd_aio_discard added in 0.1.2 */
51 #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 2)
52 #define LIBRBD_SUPPORTS_DISCARD
54 #undef LIBRBD_SUPPORTS_DISCARD
57 #define OBJ_MAX_SIZE (1UL << OBJ_DEFAULT_OBJ_ORDER)
59 #define RBD_MAX_SNAPS 100
61 /* The LIBRBD_SUPPORTS_IOVEC is defined in librbd.h */
62 #ifdef LIBRBD_SUPPORTS_IOVEC
63 #define LIBRBD_USE_IOVEC 1
65 #define LIBRBD_USE_IOVEC 0
75 typedef struct RBDAIOCB {
82 struct BDRVRBDState *s;
85 typedef struct RADOSCB {
87 struct BDRVRBDState *s;
93 typedef struct BDRVRBDState {
101 static char *qemu_rbd_next_tok(char *src, char delim, char **p)
107 for (end = src; *end; ++end) {
111 if (*end == '\\' && end[1] != '\0') {
122 static void qemu_rbd_unescape(char *src)
126 for (p = src; *src; ++src, ++p) {
127 if (*src == '\\' && src[1] != '\0') {
135 static void qemu_rbd_parse_filename(const char *filename, QDict *options,
140 QList *keypairs = NULL;
143 if (!strstart(filename, "rbd:", &start)) {
144 error_setg(errp, "File name must start with 'rbd:'");
148 buf = g_strdup(start);
151 found_str = qemu_rbd_next_tok(p, '/', &p);
153 error_setg(errp, "Pool name is required");
156 qemu_rbd_unescape(found_str);
157 qdict_put(options, "pool", qstring_from_str(found_str));
159 if (strchr(p, '@')) {
160 found_str = qemu_rbd_next_tok(p, '@', &p);
161 qemu_rbd_unescape(found_str);
162 qdict_put(options, "image", qstring_from_str(found_str));
164 found_str = qemu_rbd_next_tok(p, ':', &p);
165 qemu_rbd_unescape(found_str);
166 qdict_put(options, "snapshot", qstring_from_str(found_str));
168 found_str = qemu_rbd_next_tok(p, ':', &p);
169 qemu_rbd_unescape(found_str);
170 qdict_put(options, "image", qstring_from_str(found_str));
176 /* The following are essentially all key/value pairs, and we treat
177 * 'id' and 'conf' a bit special. Key/value pairs may be in any order. */
180 name = qemu_rbd_next_tok(p, '=', &p);
182 error_setg(errp, "conf option %s has no value", name);
186 qemu_rbd_unescape(name);
188 value = qemu_rbd_next_tok(p, ':', &p);
189 qemu_rbd_unescape(value);
191 if (!strcmp(name, "conf")) {
192 qdict_put(options, "conf", qstring_from_str(value));
193 } else if (!strcmp(name, "id")) {
194 qdict_put(options, "user" , qstring_from_str(value));
197 * We pass these internally to qemu_rbd_set_keypairs(), so
198 * we can get away with the simpler list of [ "key1",
199 * "value1", "key2", "value2" ] rather than a raw dict
200 * { "key1": "value1", "key2": "value2" } where we can't
201 * guarantee order, or even a more correct but complex
202 * [ { "key1": "value1" }, { "key2": "value2" } ]
205 keypairs = qlist_new();
207 qlist_append(keypairs, qstring_from_str(name));
208 qlist_append(keypairs, qstring_from_str(value));
213 qdict_put(options, "=keyvalue-pairs",
214 qobject_to_json(QOBJECT(keypairs)));
224 static int qemu_rbd_set_auth(rados_t cluster, const char *secretid,
231 gchar *secret = qcrypto_secret_lookup_as_base64(secretid,
237 rados_conf_set(cluster, "key", secret);
243 static int qemu_rbd_set_keypairs(rados_t cluster, const char *keypairs_json,
253 if (!keypairs_json) {
256 keypairs = qobject_to_qlist(qobject_from_json(keypairs_json,
258 remaining = qlist_size(keypairs) / 2;
261 while (remaining--) {
262 name = qobject_to_qstring(qlist_pop(keypairs));
263 value = qobject_to_qstring(qlist_pop(keypairs));
264 assert(name && value);
265 key = qstring_get_str(name);
267 ret = rados_conf_set(cluster, key, qstring_get_str(value));
271 error_setg_errno(errp, -ret, "invalid conf option %s", key);
281 static void qemu_rbd_memset(RADOSCB *rcb, int64_t offs)
283 if (LIBRBD_USE_IOVEC) {
284 RBDAIOCB *acb = rcb->acb;
285 iov_memset(acb->qiov->iov, acb->qiov->niov, offs, 0,
286 acb->qiov->size - offs);
288 memset(rcb->buf + offs, 0, rcb->size - offs);
292 static QemuOptsList runtime_opts = {
294 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
298 .type = QEMU_OPT_STRING,
299 .help = "Rados pool name",
303 .type = QEMU_OPT_STRING,
304 .help = "Image name in the pool",
308 .type = QEMU_OPT_STRING,
309 .help = "Rados config file location",
313 .type = QEMU_OPT_STRING,
314 .help = "Ceph snapshot name",
317 /* maps to 'id' in rados_create() */
319 .type = QEMU_OPT_STRING,
320 .help = "Rados id name",
323 * server.* extracted manually, see qemu_rbd_mon_host()
326 .name = "password-secret",
327 .type = QEMU_OPT_STRING,
328 .help = "ID of secret providing the password",
332 * Keys for qemu_rbd_parse_filename(), not in the QAPI schema
336 * HACK: name starts with '=' so that qemu_opts_parse()
339 .name = "=keyvalue-pairs",
340 .type = QEMU_OPT_STRING,
341 .help = "Legacy rados key/value option parameters",
343 { /* end of list */ }
347 static int qemu_rbd_create(const char *filename, QemuOpts *opts, Error **errp)
349 Error *local_err = NULL;
353 const char *pool, *name, *conf, *clientname, *keypairs;
354 const char *secretid;
356 rados_ioctx_t io_ctx;
357 QDict *options = NULL;
360 secretid = qemu_opt_get(opts, "password-secret");
362 /* Read out options */
363 bytes = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
365 objsize = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE, 0);
367 if ((objsize - 1) & objsize) { /* not a power of 2? */
368 error_setg(errp, "obj size needs to be power of 2");
372 if (objsize < 4096) {
373 error_setg(errp, "obj size too small");
377 obj_order = ctz32(objsize);
380 options = qdict_new();
381 qemu_rbd_parse_filename(filename, options, &local_err);
384 error_propagate(errp, local_err);
388 pool = qdict_get_try_str(options, "pool");
389 conf = qdict_get_try_str(options, "conf");
390 clientname = qdict_get_try_str(options, "user");
391 name = qdict_get_try_str(options, "image");
392 keypairs = qdict_get_try_str(options, "=keyvalue-pairs");
394 ret = rados_create(&cluster, clientname);
396 error_setg_errno(errp, -ret, "error initializing");
400 /* try default location when conf=NULL, but ignore failure */
401 ret = rados_conf_read_file(cluster, conf);
402 if (conf && ret < 0) {
403 error_setg_errno(errp, -ret, "error reading conf file %s", conf);
408 ret = qemu_rbd_set_keypairs(cluster, keypairs, errp);
414 if (qemu_rbd_set_auth(cluster, secretid, errp) < 0) {
419 ret = rados_connect(cluster);
421 error_setg_errno(errp, -ret, "error connecting");
425 ret = rados_ioctx_create(cluster, pool, &io_ctx);
427 error_setg_errno(errp, -ret, "error opening pool %s", pool);
431 ret = rbd_create(io_ctx, name, bytes, &obj_order);
433 error_setg_errno(errp, -ret, "error rbd create");
436 rados_ioctx_destroy(io_ctx);
439 rados_shutdown(cluster);
447 * This aio completion is being called from rbd_finish_bh() and runs in qemu
450 static void qemu_rbd_complete_aio(RADOSCB *rcb)
452 RBDAIOCB *acb = rcb->acb;
457 if (acb->cmd != RBD_AIO_READ) {
461 } else if (!acb->error) {
462 acb->ret = rcb->size;
466 qemu_rbd_memset(rcb, 0);
469 } else if (r < rcb->size) {
470 qemu_rbd_memset(rcb, r);
472 acb->ret = rcb->size;
474 } else if (!acb->error) {
481 if (!LIBRBD_USE_IOVEC) {
482 if (acb->cmd == RBD_AIO_READ) {
483 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
485 qemu_vfree(acb->bounce);
488 acb->common.cb(acb->common.opaque, (acb->ret > 0 ? 0 : acb->ret));
493 static char *qemu_rbd_mon_host(QDict *options, Error **errp)
495 const char **vals = g_new(const char *, qdict_size(options) + 1);
497 const char *host, *port;
502 sprintf(keybuf, "server.%d.host", i);
503 host = qdict_get_try_str(options, keybuf);
504 qdict_del(options, keybuf);
505 sprintf(keybuf, "server.%d.port", i);
506 port = qdict_get_try_str(options, keybuf);
507 qdict_del(options, keybuf);
508 if (!host && !port) {
512 error_setg(errp, "Parameter server.%d.host is missing", i);
517 if (strchr(host, ':')) {
518 vals[i] = port ? g_strdup_printf("[%s]:%s", host, port)
519 : g_strdup_printf("[%s]", host);
521 vals[i] = port ? g_strdup_printf("%s:%s", host, port)
527 rados_str = i ? g_strjoinv(";", (char **)vals) : NULL;
529 g_strfreev((char **)vals);
533 static int qemu_rbd_open(BlockDriverState *bs, QDict *options, int flags,
536 BDRVRBDState *s = bs->opaque;
537 const char *pool, *snap, *conf, *clientname, *name, *keypairs;
538 const char *secretid;
540 Error *local_err = NULL;
541 char *mon_host = NULL;
544 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
545 qemu_opts_absorb_qdict(opts, options, &local_err);
547 error_propagate(errp, local_err);
552 mon_host = qemu_rbd_mon_host(options, &local_err);
554 error_propagate(errp, local_err);
559 secretid = qemu_opt_get(opts, "password-secret");
561 pool = qemu_opt_get(opts, "pool");
562 conf = qemu_opt_get(opts, "conf");
563 snap = qemu_opt_get(opts, "snapshot");
564 clientname = qemu_opt_get(opts, "user");
565 name = qemu_opt_get(opts, "image");
566 keypairs = qemu_opt_get(opts, "=keyvalue-pairs");
568 if (!pool || !name) {
569 error_setg(errp, "Parameters 'pool' and 'image' are required");
574 r = rados_create(&s->cluster, clientname);
576 error_setg_errno(errp, -r, "error initializing");
580 s->snap = g_strdup(snap);
581 s->name = g_strdup(name);
583 /* try default location when conf=NULL, but ignore failure */
584 r = rados_conf_read_file(s->cluster, conf);
586 error_setg_errno(errp, -r, "error reading conf file %s", conf);
587 goto failed_shutdown;
590 r = qemu_rbd_set_keypairs(s->cluster, keypairs, errp);
592 goto failed_shutdown;
596 r = rados_conf_set(s->cluster, "mon_host", mon_host);
598 goto failed_shutdown;
602 if (qemu_rbd_set_auth(s->cluster, secretid, errp) < 0) {
604 goto failed_shutdown;
608 * Fallback to more conservative semantics if setting cache
609 * options fails. Ignore errors from setting rbd_cache because the
610 * only possible error is that the option does not exist, and
611 * librbd defaults to no caching. If write through caching cannot
612 * be set up, fall back to no caching.
614 if (flags & BDRV_O_NOCACHE) {
615 rados_conf_set(s->cluster, "rbd_cache", "false");
617 rados_conf_set(s->cluster, "rbd_cache", "true");
620 r = rados_connect(s->cluster);
622 error_setg_errno(errp, -r, "error connecting");
623 goto failed_shutdown;
626 r = rados_ioctx_create(s->cluster, pool, &s->io_ctx);
628 error_setg_errno(errp, -r, "error opening pool %s", pool);
629 goto failed_shutdown;
632 r = rbd_open(s->io_ctx, s->name, &s->image, s->snap);
634 error_setg_errno(errp, -r, "error reading header from %s", s->name);
638 bs->read_only = (s->snap != NULL);
644 rados_ioctx_destroy(s->io_ctx);
646 rados_shutdown(s->cluster);
655 static void qemu_rbd_close(BlockDriverState *bs)
657 BDRVRBDState *s = bs->opaque;
660 rados_ioctx_destroy(s->io_ctx);
663 rados_shutdown(s->cluster);
666 static const AIOCBInfo rbd_aiocb_info = {
667 .aiocb_size = sizeof(RBDAIOCB),
670 static void rbd_finish_bh(void *opaque)
672 RADOSCB *rcb = opaque;
673 qemu_rbd_complete_aio(rcb);
677 * This is the callback function for rbd_aio_read and _write
679 * Note: this function is being called from a non qemu thread so
680 * we need to be careful about what we do here. Generally we only
681 * schedule a BH, and do the rest of the io completion handling
682 * from rbd_finish_bh() which runs in a qemu context.
684 static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb)
686 RBDAIOCB *acb = rcb->acb;
688 rcb->ret = rbd_aio_get_return_value(c);
691 aio_bh_schedule_oneshot(bdrv_get_aio_context(acb->common.bs),
695 static int rbd_aio_discard_wrapper(rbd_image_t image,
698 rbd_completion_t comp)
700 #ifdef LIBRBD_SUPPORTS_DISCARD
701 return rbd_aio_discard(image, off, len, comp);
707 static int rbd_aio_flush_wrapper(rbd_image_t image,
708 rbd_completion_t comp)
710 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
711 return rbd_aio_flush(image, comp);
717 static BlockAIOCB *rbd_start_aio(BlockDriverState *bs,
721 BlockCompletionFunc *cb,
730 BDRVRBDState *s = bs->opaque;
732 acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque);
735 assert(!qiov || qiov->size == size);
737 rcb = g_new(RADOSCB, 1);
739 if (!LIBRBD_USE_IOVEC) {
740 if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) {
743 acb->bounce = qemu_try_blockalign(bs, qiov->size);
744 if (acb->bounce == NULL) {
748 if (cmd == RBD_AIO_WRITE) {
749 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
751 rcb->buf = acb->bounce;
761 r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
768 #ifdef LIBRBD_SUPPORTS_IOVEC
769 r = rbd_aio_writev(s->image, qiov->iov, qiov->niov, off, c);
771 r = rbd_aio_write(s->image, off, size, rcb->buf, c);
775 #ifdef LIBRBD_SUPPORTS_IOVEC
776 r = rbd_aio_readv(s->image, qiov->iov, qiov->niov, off, c);
778 r = rbd_aio_read(s->image, off, size, rcb->buf, c);
781 case RBD_AIO_DISCARD:
782 r = rbd_aio_discard_wrapper(s->image, off, size, c);
785 r = rbd_aio_flush_wrapper(s->image, c);
792 goto failed_completion;
800 if (!LIBRBD_USE_IOVEC) {
801 qemu_vfree(acb->bounce);
808 static BlockAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
812 BlockCompletionFunc *cb,
815 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
816 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
820 static BlockAIOCB *qemu_rbd_aio_writev(BlockDriverState *bs,
824 BlockCompletionFunc *cb,
827 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
828 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
832 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
833 static BlockAIOCB *qemu_rbd_aio_flush(BlockDriverState *bs,
834 BlockCompletionFunc *cb,
837 return rbd_start_aio(bs, 0, NULL, 0, cb, opaque, RBD_AIO_FLUSH);
842 static int qemu_rbd_co_flush(BlockDriverState *bs)
844 #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1)
845 /* rbd_flush added in 0.1.1 */
846 BDRVRBDState *s = bs->opaque;
847 return rbd_flush(s->image);
854 static int qemu_rbd_getinfo(BlockDriverState *bs, BlockDriverInfo *bdi)
856 BDRVRBDState *s = bs->opaque;
857 rbd_image_info_t info;
860 r = rbd_stat(s->image, &info, sizeof(info));
865 bdi->cluster_size = info.obj_size;
869 static int64_t qemu_rbd_getlength(BlockDriverState *bs)
871 BDRVRBDState *s = bs->opaque;
872 rbd_image_info_t info;
875 r = rbd_stat(s->image, &info, sizeof(info));
883 static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset)
885 BDRVRBDState *s = bs->opaque;
888 r = rbd_resize(s->image, offset);
896 static int qemu_rbd_snap_create(BlockDriverState *bs,
897 QEMUSnapshotInfo *sn_info)
899 BDRVRBDState *s = bs->opaque;
902 if (sn_info->name[0] == '\0') {
903 return -EINVAL; /* we need a name for rbd snapshots */
907 * rbd snapshots are using the name as the user controlled unique identifier
908 * we can't use the rbd snapid for that purpose, as it can't be set
910 if (sn_info->id_str[0] != '\0' &&
911 strcmp(sn_info->id_str, sn_info->name) != 0) {
915 if (strlen(sn_info->name) >= sizeof(sn_info->id_str)) {
919 r = rbd_snap_create(s->image, sn_info->name);
921 error_report("failed to create snap: %s", strerror(-r));
928 static int qemu_rbd_snap_remove(BlockDriverState *bs,
929 const char *snapshot_id,
930 const char *snapshot_name,
933 BDRVRBDState *s = bs->opaque;
936 if (!snapshot_name) {
937 error_setg(errp, "rbd need a valid snapshot name");
941 /* If snapshot_id is specified, it must be equal to name, see
942 qemu_rbd_snap_list() */
943 if (snapshot_id && strcmp(snapshot_id, snapshot_name)) {
945 "rbd do not support snapshot id, it should be NULL or "
946 "equal to snapshot name");
950 r = rbd_snap_remove(s->image, snapshot_name);
952 error_setg_errno(errp, -r, "Failed to remove the snapshot");
957 static int qemu_rbd_snap_rollback(BlockDriverState *bs,
958 const char *snapshot_name)
960 BDRVRBDState *s = bs->opaque;
962 return rbd_snap_rollback(s->image, snapshot_name);
965 static int qemu_rbd_snap_list(BlockDriverState *bs,
966 QEMUSnapshotInfo **psn_tab)
968 BDRVRBDState *s = bs->opaque;
969 QEMUSnapshotInfo *sn_info, *sn_tab = NULL;
971 rbd_snap_info_t *snaps;
972 int max_snaps = RBD_MAX_SNAPS;
975 snaps = g_new(rbd_snap_info_t, max_snaps);
976 snap_count = rbd_snap_list(s->image, snaps, &max_snaps);
977 if (snap_count <= 0) {
980 } while (snap_count == -ERANGE);
982 if (snap_count <= 0) {
986 sn_tab = g_new0(QEMUSnapshotInfo, snap_count);
988 for (i = 0; i < snap_count; i++) {
989 const char *snap_name = snaps[i].name;
991 sn_info = sn_tab + i;
992 pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), snap_name);
993 pstrcpy(sn_info->name, sizeof(sn_info->name), snap_name);
995 sn_info->vm_state_size = snaps[i].size;
996 sn_info->date_sec = 0;
997 sn_info->date_nsec = 0;
998 sn_info->vm_clock_nsec = 0;
1000 rbd_snap_list_end(snaps);
1008 #ifdef LIBRBD_SUPPORTS_DISCARD
1009 static BlockAIOCB *qemu_rbd_aio_pdiscard(BlockDriverState *bs,
1012 BlockCompletionFunc *cb,
1015 return rbd_start_aio(bs, offset, NULL, count, cb, opaque,
1020 #ifdef LIBRBD_SUPPORTS_INVALIDATE
1021 static void qemu_rbd_invalidate_cache(BlockDriverState *bs,
1024 BDRVRBDState *s = bs->opaque;
1025 int r = rbd_invalidate_cache(s->image);
1027 error_setg_errno(errp, -r, "Failed to invalidate the cache");
1032 static QemuOptsList qemu_rbd_create_opts = {
1033 .name = "rbd-create-opts",
1034 .head = QTAILQ_HEAD_INITIALIZER(qemu_rbd_create_opts.head),
1037 .name = BLOCK_OPT_SIZE,
1038 .type = QEMU_OPT_SIZE,
1039 .help = "Virtual disk size"
1042 .name = BLOCK_OPT_CLUSTER_SIZE,
1043 .type = QEMU_OPT_SIZE,
1044 .help = "RBD object size"
1047 .name = "password-secret",
1048 .type = QEMU_OPT_STRING,
1049 .help = "ID of secret providing the password",
1051 { /* end of list */ }
1055 static BlockDriver bdrv_rbd = {
1056 .format_name = "rbd",
1057 .instance_size = sizeof(BDRVRBDState),
1058 .bdrv_parse_filename = qemu_rbd_parse_filename,
1059 .bdrv_file_open = qemu_rbd_open,
1060 .bdrv_close = qemu_rbd_close,
1061 .bdrv_create = qemu_rbd_create,
1062 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1063 .bdrv_get_info = qemu_rbd_getinfo,
1064 .create_opts = &qemu_rbd_create_opts,
1065 .bdrv_getlength = qemu_rbd_getlength,
1066 .bdrv_truncate = qemu_rbd_truncate,
1067 .protocol_name = "rbd",
1069 .bdrv_aio_readv = qemu_rbd_aio_readv,
1070 .bdrv_aio_writev = qemu_rbd_aio_writev,
1072 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
1073 .bdrv_aio_flush = qemu_rbd_aio_flush,
1075 .bdrv_co_flush_to_disk = qemu_rbd_co_flush,
1078 #ifdef LIBRBD_SUPPORTS_DISCARD
1079 .bdrv_aio_pdiscard = qemu_rbd_aio_pdiscard,
1082 .bdrv_snapshot_create = qemu_rbd_snap_create,
1083 .bdrv_snapshot_delete = qemu_rbd_snap_remove,
1084 .bdrv_snapshot_list = qemu_rbd_snap_list,
1085 .bdrv_snapshot_goto = qemu_rbd_snap_rollback,
1086 #ifdef LIBRBD_SUPPORTS_INVALIDATE
1087 .bdrv_invalidate_cache = qemu_rbd_invalidate_cache,
1091 static void bdrv_rbd_init(void)
1093 bdrv_register(&bdrv_rbd);
1096 block_init(bdrv_rbd_init);