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_str(options, "pool", found_str);
159 if (strchr(p, '@')) {
160 found_str = qemu_rbd_next_tok(p, '@', &p);
161 qemu_rbd_unescape(found_str);
162 qdict_put_str(options, "image", found_str);
164 found_str = qemu_rbd_next_tok(p, ':', &p);
165 qemu_rbd_unescape(found_str);
166 qdict_put_str(options, "snapshot", found_str);
168 found_str = qemu_rbd_next_tok(p, ':', &p);
169 qemu_rbd_unescape(found_str);
170 qdict_put_str(options, "image", 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_str(options, "conf", value);
193 } else if (!strcmp(name, "id")) {
194 qdict_put_str(options, "user", 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_str(keypairs, name);
208 qlist_append_str(keypairs, 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",
345 .type = QEMU_OPT_STRING,
347 { /* end of list */ }
351 static int qemu_rbd_create(const char *filename, QemuOpts *opts, Error **errp)
353 Error *local_err = NULL;
357 const char *pool, *image_name, *conf, *user, *keypairs;
358 const char *secretid;
360 rados_ioctx_t io_ctx;
361 QDict *options = NULL;
364 secretid = qemu_opt_get(opts, "password-secret");
366 /* Read out options */
367 bytes = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
369 objsize = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE, 0);
371 if ((objsize - 1) & objsize) { /* not a power of 2? */
372 error_setg(errp, "obj size needs to be power of 2");
376 if (objsize < 4096) {
377 error_setg(errp, "obj size too small");
381 obj_order = ctz32(objsize);
384 options = qdict_new();
385 qemu_rbd_parse_filename(filename, options, &local_err);
388 error_propagate(errp, local_err);
393 * Caution: while qdict_get_try_str() is fine, getting non-string
394 * types would require more care. When @options come from -blockdev
395 * or blockdev_add, its members are typed according to the QAPI
396 * schema, but when they come from -drive, they're all QString.
398 pool = qdict_get_try_str(options, "pool");
399 conf = qdict_get_try_str(options, "conf");
400 user = qdict_get_try_str(options, "user");
401 image_name = qdict_get_try_str(options, "image");
402 keypairs = qdict_get_try_str(options, "=keyvalue-pairs");
404 ret = rados_create(&cluster, user);
406 error_setg_errno(errp, -ret, "error initializing");
410 /* try default location when conf=NULL, but ignore failure */
411 ret = rados_conf_read_file(cluster, conf);
412 if (conf && ret < 0) {
413 error_setg_errno(errp, -ret, "error reading conf file %s", conf);
418 ret = qemu_rbd_set_keypairs(cluster, keypairs, errp);
424 if (qemu_rbd_set_auth(cluster, secretid, errp) < 0) {
429 ret = rados_connect(cluster);
431 error_setg_errno(errp, -ret, "error connecting");
435 ret = rados_ioctx_create(cluster, pool, &io_ctx);
437 error_setg_errno(errp, -ret, "error opening pool %s", pool);
441 ret = rbd_create(io_ctx, image_name, bytes, &obj_order);
443 error_setg_errno(errp, -ret, "error rbd create");
446 rados_ioctx_destroy(io_ctx);
449 rados_shutdown(cluster);
457 * This aio completion is being called from rbd_finish_bh() and runs in qemu
460 static void qemu_rbd_complete_aio(RADOSCB *rcb)
462 RBDAIOCB *acb = rcb->acb;
467 if (acb->cmd != RBD_AIO_READ) {
471 } else if (!acb->error) {
472 acb->ret = rcb->size;
476 qemu_rbd_memset(rcb, 0);
479 } else if (r < rcb->size) {
480 qemu_rbd_memset(rcb, r);
482 acb->ret = rcb->size;
484 } else if (!acb->error) {
491 if (!LIBRBD_USE_IOVEC) {
492 if (acb->cmd == RBD_AIO_READ) {
493 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
495 qemu_vfree(acb->bounce);
498 acb->common.cb(acb->common.opaque, (acb->ret > 0 ? 0 : acb->ret));
503 static char *qemu_rbd_mon_host(QDict *options, Error **errp)
505 const char **vals = g_new(const char *, qdict_size(options) + 1);
507 const char *host, *port;
512 sprintf(keybuf, "server.%d.host", i);
513 host = qdict_get_try_str(options, keybuf);
514 qdict_del(options, keybuf);
515 sprintf(keybuf, "server.%d.port", i);
516 port = qdict_get_try_str(options, keybuf);
517 qdict_del(options, keybuf);
518 if (!host && !port) {
522 error_setg(errp, "Parameter server.%d.host is missing", i);
527 if (strchr(host, ':')) {
528 vals[i] = port ? g_strdup_printf("[%s]:%s", host, port)
529 : g_strdup_printf("[%s]", host);
531 vals[i] = port ? g_strdup_printf("%s:%s", host, port)
537 rados_str = i ? g_strjoinv(";", (char **)vals) : NULL;
539 g_strfreev((char **)vals);
543 static int qemu_rbd_open(BlockDriverState *bs, QDict *options, int flags,
546 BDRVRBDState *s = bs->opaque;
547 const char *pool, *snap, *conf, *user, *image_name, *keypairs;
548 const char *secretid, *filename;
550 Error *local_err = NULL;
551 char *mon_host = NULL;
554 /* If we are given a filename, parse the filename, with precedence given to
555 * filename encoded options */
556 filename = qdict_get_try_str(options, "filename");
558 error_report("Warning: 'filename' option specified. "
559 "This is an unsupported option, and may be deprecated "
561 qemu_rbd_parse_filename(filename, options, &local_err);
564 error_propagate(errp, local_err);
569 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
570 qemu_opts_absorb_qdict(opts, options, &local_err);
572 error_propagate(errp, local_err);
577 mon_host = qemu_rbd_mon_host(options, &local_err);
579 error_propagate(errp, local_err);
584 secretid = qemu_opt_get(opts, "password-secret");
586 pool = qemu_opt_get(opts, "pool");
587 conf = qemu_opt_get(opts, "conf");
588 snap = qemu_opt_get(opts, "snapshot");
589 user = qemu_opt_get(opts, "user");
590 image_name = qemu_opt_get(opts, "image");
591 keypairs = qemu_opt_get(opts, "=keyvalue-pairs");
593 if (!pool || !image_name) {
594 error_setg(errp, "Parameters 'pool' and 'image' are required");
599 r = rados_create(&s->cluster, user);
601 error_setg_errno(errp, -r, "error initializing");
605 s->snap = g_strdup(snap);
606 s->image_name = g_strdup(image_name);
608 /* try default location when conf=NULL, but ignore failure */
609 r = rados_conf_read_file(s->cluster, conf);
611 error_setg_errno(errp, -r, "error reading conf file %s", conf);
612 goto failed_shutdown;
615 r = qemu_rbd_set_keypairs(s->cluster, keypairs, errp);
617 goto failed_shutdown;
621 r = rados_conf_set(s->cluster, "mon_host", mon_host);
623 goto failed_shutdown;
627 if (qemu_rbd_set_auth(s->cluster, secretid, errp) < 0) {
629 goto failed_shutdown;
633 * Fallback to more conservative semantics if setting cache
634 * options fails. Ignore errors from setting rbd_cache because the
635 * only possible error is that the option does not exist, and
636 * librbd defaults to no caching. If write through caching cannot
637 * be set up, fall back to no caching.
639 if (flags & BDRV_O_NOCACHE) {
640 rados_conf_set(s->cluster, "rbd_cache", "false");
642 rados_conf_set(s->cluster, "rbd_cache", "true");
645 r = rados_connect(s->cluster);
647 error_setg_errno(errp, -r, "error connecting");
648 goto failed_shutdown;
651 r = rados_ioctx_create(s->cluster, pool, &s->io_ctx);
653 error_setg_errno(errp, -r, "error opening pool %s", pool);
654 goto failed_shutdown;
657 /* rbd_open is always r/w */
658 r = rbd_open(s->io_ctx, s->image_name, &s->image, s->snap);
660 error_setg_errno(errp, -r, "error reading header from %s",
665 /* If we are using an rbd snapshot, we must be r/o, otherwise
667 if (s->snap != NULL) {
668 r = bdrv_set_read_only(bs, true, &local_err);
670 error_propagate(errp, local_err);
679 rados_ioctx_destroy(s->io_ctx);
681 rados_shutdown(s->cluster);
683 g_free(s->image_name);
692 /* Since RBD is currently always opened R/W via the API,
693 * we just need to check if we are using a snapshot or not, in
694 * order to determine if we will allow it to be R/W */
695 static int qemu_rbd_reopen_prepare(BDRVReopenState *state,
696 BlockReopenQueue *queue, Error **errp)
698 BDRVRBDState *s = state->bs->opaque;
701 if (s->snap && state->flags & BDRV_O_RDWR) {
703 "Cannot change node '%s' to r/w when using RBD snapshot",
704 bdrv_get_device_or_node_name(state->bs));
711 static void qemu_rbd_close(BlockDriverState *bs)
713 BDRVRBDState *s = bs->opaque;
716 rados_ioctx_destroy(s->io_ctx);
718 g_free(s->image_name);
719 rados_shutdown(s->cluster);
722 static const AIOCBInfo rbd_aiocb_info = {
723 .aiocb_size = sizeof(RBDAIOCB),
726 static void rbd_finish_bh(void *opaque)
728 RADOSCB *rcb = opaque;
729 qemu_rbd_complete_aio(rcb);
733 * This is the callback function for rbd_aio_read and _write
735 * Note: this function is being called from a non qemu thread so
736 * we need to be careful about what we do here. Generally we only
737 * schedule a BH, and do the rest of the io completion handling
738 * from rbd_finish_bh() which runs in a qemu context.
740 static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb)
742 RBDAIOCB *acb = rcb->acb;
744 rcb->ret = rbd_aio_get_return_value(c);
747 aio_bh_schedule_oneshot(bdrv_get_aio_context(acb->common.bs),
751 static int rbd_aio_discard_wrapper(rbd_image_t image,
754 rbd_completion_t comp)
756 #ifdef LIBRBD_SUPPORTS_DISCARD
757 return rbd_aio_discard(image, off, len, comp);
763 static int rbd_aio_flush_wrapper(rbd_image_t image,
764 rbd_completion_t comp)
766 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
767 return rbd_aio_flush(image, comp);
773 static BlockAIOCB *rbd_start_aio(BlockDriverState *bs,
777 BlockCompletionFunc *cb,
786 BDRVRBDState *s = bs->opaque;
788 acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque);
791 assert(!qiov || qiov->size == size);
793 rcb = g_new(RADOSCB, 1);
795 if (!LIBRBD_USE_IOVEC) {
796 if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) {
799 acb->bounce = qemu_try_blockalign(bs, qiov->size);
800 if (acb->bounce == NULL) {
804 if (cmd == RBD_AIO_WRITE) {
805 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
807 rcb->buf = acb->bounce;
817 r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
824 #ifdef LIBRBD_SUPPORTS_IOVEC
825 r = rbd_aio_writev(s->image, qiov->iov, qiov->niov, off, c);
827 r = rbd_aio_write(s->image, off, size, rcb->buf, c);
831 #ifdef LIBRBD_SUPPORTS_IOVEC
832 r = rbd_aio_readv(s->image, qiov->iov, qiov->niov, off, c);
834 r = rbd_aio_read(s->image, off, size, rcb->buf, c);
837 case RBD_AIO_DISCARD:
838 r = rbd_aio_discard_wrapper(s->image, off, size, c);
841 r = rbd_aio_flush_wrapper(s->image, c);
848 goto failed_completion;
856 if (!LIBRBD_USE_IOVEC) {
857 qemu_vfree(acb->bounce);
864 static BlockAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
868 BlockCompletionFunc *cb,
871 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
872 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
876 static BlockAIOCB *qemu_rbd_aio_writev(BlockDriverState *bs,
880 BlockCompletionFunc *cb,
883 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
884 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
888 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
889 static BlockAIOCB *qemu_rbd_aio_flush(BlockDriverState *bs,
890 BlockCompletionFunc *cb,
893 return rbd_start_aio(bs, 0, NULL, 0, cb, opaque, RBD_AIO_FLUSH);
898 static int qemu_rbd_co_flush(BlockDriverState *bs)
900 #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1)
901 /* rbd_flush added in 0.1.1 */
902 BDRVRBDState *s = bs->opaque;
903 return rbd_flush(s->image);
910 static int qemu_rbd_getinfo(BlockDriverState *bs, BlockDriverInfo *bdi)
912 BDRVRBDState *s = bs->opaque;
913 rbd_image_info_t info;
916 r = rbd_stat(s->image, &info, sizeof(info));
921 bdi->cluster_size = info.obj_size;
925 static int64_t qemu_rbd_getlength(BlockDriverState *bs)
927 BDRVRBDState *s = bs->opaque;
928 rbd_image_info_t info;
931 r = rbd_stat(s->image, &info, sizeof(info));
939 static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset, Error **errp)
941 BDRVRBDState *s = bs->opaque;
944 r = rbd_resize(s->image, offset);
946 error_setg_errno(errp, -r, "Failed to resize file");
953 static int qemu_rbd_snap_create(BlockDriverState *bs,
954 QEMUSnapshotInfo *sn_info)
956 BDRVRBDState *s = bs->opaque;
959 if (sn_info->name[0] == '\0') {
960 return -EINVAL; /* we need a name for rbd snapshots */
964 * rbd snapshots are using the name as the user controlled unique identifier
965 * we can't use the rbd snapid for that purpose, as it can't be set
967 if (sn_info->id_str[0] != '\0' &&
968 strcmp(sn_info->id_str, sn_info->name) != 0) {
972 if (strlen(sn_info->name) >= sizeof(sn_info->id_str)) {
976 r = rbd_snap_create(s->image, sn_info->name);
978 error_report("failed to create snap: %s", strerror(-r));
985 static int qemu_rbd_snap_remove(BlockDriverState *bs,
986 const char *snapshot_id,
987 const char *snapshot_name,
990 BDRVRBDState *s = bs->opaque;
993 if (!snapshot_name) {
994 error_setg(errp, "rbd need a valid snapshot name");
998 /* If snapshot_id is specified, it must be equal to name, see
999 qemu_rbd_snap_list() */
1000 if (snapshot_id && strcmp(snapshot_id, snapshot_name)) {
1002 "rbd do not support snapshot id, it should be NULL or "
1003 "equal to snapshot name");
1007 r = rbd_snap_remove(s->image, snapshot_name);
1009 error_setg_errno(errp, -r, "Failed to remove the snapshot");
1014 static int qemu_rbd_snap_rollback(BlockDriverState *bs,
1015 const char *snapshot_name)
1017 BDRVRBDState *s = bs->opaque;
1019 return rbd_snap_rollback(s->image, snapshot_name);
1022 static int qemu_rbd_snap_list(BlockDriverState *bs,
1023 QEMUSnapshotInfo **psn_tab)
1025 BDRVRBDState *s = bs->opaque;
1026 QEMUSnapshotInfo *sn_info, *sn_tab = NULL;
1028 rbd_snap_info_t *snaps;
1029 int max_snaps = RBD_MAX_SNAPS;
1032 snaps = g_new(rbd_snap_info_t, max_snaps);
1033 snap_count = rbd_snap_list(s->image, snaps, &max_snaps);
1034 if (snap_count <= 0) {
1037 } while (snap_count == -ERANGE);
1039 if (snap_count <= 0) {
1043 sn_tab = g_new0(QEMUSnapshotInfo, snap_count);
1045 for (i = 0; i < snap_count; i++) {
1046 const char *snap_name = snaps[i].name;
1048 sn_info = sn_tab + i;
1049 pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), snap_name);
1050 pstrcpy(sn_info->name, sizeof(sn_info->name), snap_name);
1052 sn_info->vm_state_size = snaps[i].size;
1053 sn_info->date_sec = 0;
1054 sn_info->date_nsec = 0;
1055 sn_info->vm_clock_nsec = 0;
1057 rbd_snap_list_end(snaps);
1065 #ifdef LIBRBD_SUPPORTS_DISCARD
1066 static BlockAIOCB *qemu_rbd_aio_pdiscard(BlockDriverState *bs,
1069 BlockCompletionFunc *cb,
1072 return rbd_start_aio(bs, offset, NULL, bytes, cb, opaque,
1077 #ifdef LIBRBD_SUPPORTS_INVALIDATE
1078 static void qemu_rbd_invalidate_cache(BlockDriverState *bs,
1081 BDRVRBDState *s = bs->opaque;
1082 int r = rbd_invalidate_cache(s->image);
1084 error_setg_errno(errp, -r, "Failed to invalidate the cache");
1089 static QemuOptsList qemu_rbd_create_opts = {
1090 .name = "rbd-create-opts",
1091 .head = QTAILQ_HEAD_INITIALIZER(qemu_rbd_create_opts.head),
1094 .name = BLOCK_OPT_SIZE,
1095 .type = QEMU_OPT_SIZE,
1096 .help = "Virtual disk size"
1099 .name = BLOCK_OPT_CLUSTER_SIZE,
1100 .type = QEMU_OPT_SIZE,
1101 .help = "RBD object size"
1104 .name = "password-secret",
1105 .type = QEMU_OPT_STRING,
1106 .help = "ID of secret providing the password",
1108 { /* end of list */ }
1112 static BlockDriver bdrv_rbd = {
1113 .format_name = "rbd",
1114 .instance_size = sizeof(BDRVRBDState),
1115 .bdrv_parse_filename = qemu_rbd_parse_filename,
1116 .bdrv_file_open = qemu_rbd_open,
1117 .bdrv_close = qemu_rbd_close,
1118 .bdrv_reopen_prepare = qemu_rbd_reopen_prepare,
1119 .bdrv_create = qemu_rbd_create,
1120 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1121 .bdrv_get_info = qemu_rbd_getinfo,
1122 .create_opts = &qemu_rbd_create_opts,
1123 .bdrv_getlength = qemu_rbd_getlength,
1124 .bdrv_truncate = qemu_rbd_truncate,
1125 .protocol_name = "rbd",
1127 .bdrv_aio_readv = qemu_rbd_aio_readv,
1128 .bdrv_aio_writev = qemu_rbd_aio_writev,
1130 #ifdef LIBRBD_SUPPORTS_AIO_FLUSH
1131 .bdrv_aio_flush = qemu_rbd_aio_flush,
1133 .bdrv_co_flush_to_disk = qemu_rbd_co_flush,
1136 #ifdef LIBRBD_SUPPORTS_DISCARD
1137 .bdrv_aio_pdiscard = qemu_rbd_aio_pdiscard,
1140 .bdrv_snapshot_create = qemu_rbd_snap_create,
1141 .bdrv_snapshot_delete = qemu_rbd_snap_remove,
1142 .bdrv_snapshot_list = qemu_rbd_snap_list,
1143 .bdrv_snapshot_goto = qemu_rbd_snap_rollback,
1144 #ifdef LIBRBD_SUPPORTS_INVALIDATE
1145 .bdrv_invalidate_cache = qemu_rbd_invalidate_cache,
1149 static void bdrv_rbd_init(void)
1151 bdrv_register(&bdrv_rbd);
1154 block_init(bdrv_rbd_init);