2 * QEMU Block driver for RADOS (Ceph)
4 * Copyright (C) 2010-2011 Christian Brunner <chb@muc.de>,
5 * Josh Durgin <josh.durgin@dreamhost.com>
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 "qemu/module.h"
20 #include "qemu/option.h"
21 #include "block/block_int.h"
22 #include "block/qdict.h"
23 #include "crypto/secret.h"
24 #include "qemu/cutils.h"
25 #include "sysemu/replay.h"
26 #include "qapi/qmp/qstring.h"
27 #include "qapi/qmp/qdict.h"
28 #include "qapi/qmp/qjson.h"
29 #include "qapi/qmp/qlist.h"
30 #include "qapi/qobject-input-visitor.h"
31 #include "qapi/qapi-visit-block-core.h"
34 * When specifying the image filename use:
36 * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
38 * poolname must be the name of an existing rados pool.
40 * devicename is the name of the rbd image.
42 * Each option given is used to configure rados, and may be any valid
43 * Ceph option, "id", or "conf".
45 * The "id" option indicates what user we should authenticate as to
46 * the Ceph cluster. If it is excluded we will use the Ceph default
49 * The "conf" option specifies a Ceph configuration file to read. If
50 * it is not specified, we will read from the default Ceph locations
51 * (e.g., /etc/ceph/ceph.conf). To avoid reading _any_ configuration
52 * file, specify conf=/dev/null.
54 * Configuration values containing :, @, or = can be escaped with a
58 #define OBJ_MAX_SIZE (1UL << OBJ_DEFAULT_OBJ_ORDER)
60 #define RBD_MAX_SNAPS 100
62 #define RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN 8
64 static const char rbd_luks_header_verification
[
65 RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
] = {
66 'L', 'U', 'K', 'S', 0xBA, 0xBE, 0, 1
69 static const char rbd_luks2_header_verification
[
70 RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
] = {
71 'L', 'U', 'K', 'S', 0xBA, 0xBE, 0, 2
82 typedef struct BDRVRBDState
{
93 typedef struct RBDTask
{
100 static int qemu_rbd_connect(rados_t
*cluster
, rados_ioctx_t
*io_ctx
,
101 BlockdevOptionsRbd
*opts
, bool cache
,
102 const char *keypairs
, const char *secretid
,
105 static char *qemu_rbd_strchr(char *src
, char delim
)
109 for (p
= src
; *p
; ++p
) {
113 if (*p
== '\\' && p
[1] != '\0') {
122 static char *qemu_rbd_next_tok(char *src
, char delim
, char **p
)
128 end
= qemu_rbd_strchr(src
, delim
);
136 static void qemu_rbd_unescape(char *src
)
140 for (p
= src
; *src
; ++src
, ++p
) {
141 if (*src
== '\\' && src
[1] != '\0') {
149 static void qemu_rbd_parse_filename(const char *filename
, QDict
*options
,
154 QList
*keypairs
= NULL
;
155 char *found_str
, *image_name
;
157 if (!strstart(filename
, "rbd:", &start
)) {
158 error_setg(errp
, "File name must start with 'rbd:'");
162 buf
= g_strdup(start
);
165 found_str
= qemu_rbd_next_tok(p
, '/', &p
);
167 error_setg(errp
, "Pool name is required");
170 qemu_rbd_unescape(found_str
);
171 qdict_put_str(options
, "pool", found_str
);
173 if (qemu_rbd_strchr(p
, '@')) {
174 image_name
= qemu_rbd_next_tok(p
, '@', &p
);
176 found_str
= qemu_rbd_next_tok(p
, ':', &p
);
177 qemu_rbd_unescape(found_str
);
178 qdict_put_str(options
, "snapshot", found_str
);
180 image_name
= qemu_rbd_next_tok(p
, ':', &p
);
182 /* Check for namespace in the image_name */
183 if (qemu_rbd_strchr(image_name
, '/')) {
184 found_str
= qemu_rbd_next_tok(image_name
, '/', &image_name
);
185 qemu_rbd_unescape(found_str
);
186 qdict_put_str(options
, "namespace", found_str
);
188 qdict_put_str(options
, "namespace", "");
190 qemu_rbd_unescape(image_name
);
191 qdict_put_str(options
, "image", image_name
);
196 /* The following are essentially all key/value pairs, and we treat
197 * 'id' and 'conf' a bit special. Key/value pairs may be in any order. */
200 name
= qemu_rbd_next_tok(p
, '=', &p
);
202 error_setg(errp
, "conf option %s has no value", name
);
206 qemu_rbd_unescape(name
);
208 value
= qemu_rbd_next_tok(p
, ':', &p
);
209 qemu_rbd_unescape(value
);
211 if (!strcmp(name
, "conf")) {
212 qdict_put_str(options
, "conf", value
);
213 } else if (!strcmp(name
, "id")) {
214 qdict_put_str(options
, "user", value
);
217 * We pass these internally to qemu_rbd_set_keypairs(), so
218 * we can get away with the simpler list of [ "key1",
219 * "value1", "key2", "value2" ] rather than a raw dict
220 * { "key1": "value1", "key2": "value2" } where we can't
221 * guarantee order, or even a more correct but complex
222 * [ { "key1": "value1" }, { "key2": "value2" } ]
225 keypairs
= qlist_new();
227 qlist_append_str(keypairs
, name
);
228 qlist_append_str(keypairs
, value
);
233 qdict_put(options
, "=keyvalue-pairs",
234 qstring_from_gstring(qobject_to_json(QOBJECT(keypairs
))));
239 qobject_unref(keypairs
);
243 static int qemu_rbd_set_auth(rados_t cluster
, BlockdevOptionsRbd
*opts
,
249 RbdAuthModeList
*auth
;
251 if (opts
->key_secret
) {
252 key
= qcrypto_secret_lookup_as_base64(opts
->key_secret
, errp
);
256 r
= rados_conf_set(cluster
, "key", key
);
259 error_setg_errno(errp
, -r
, "Could not set 'key'");
264 if (opts
->has_auth_client_required
) {
265 accu
= g_string_new("");
266 for (auth
= opts
->auth_client_required
; auth
; auth
= auth
->next
) {
268 g_string_append_c(accu
, ';');
270 g_string_append(accu
, RbdAuthMode_str(auth
->value
));
272 acr
= g_string_free(accu
, FALSE
);
273 r
= rados_conf_set(cluster
, "auth_client_required", acr
);
276 error_setg_errno(errp
, -r
,
277 "Could not set 'auth_client_required'");
285 static int qemu_rbd_set_keypairs(rados_t cluster
, const char *keypairs_json
,
295 if (!keypairs_json
) {
298 keypairs
= qobject_to(QList
,
299 qobject_from_json(keypairs_json
, &error_abort
));
300 remaining
= qlist_size(keypairs
) / 2;
303 while (remaining
--) {
304 name
= qobject_to(QString
, qlist_pop(keypairs
));
305 value
= qobject_to(QString
, qlist_pop(keypairs
));
306 assert(name
&& value
);
307 key
= qstring_get_str(name
);
309 ret
= rados_conf_set(cluster
, key
, qstring_get_str(value
));
310 qobject_unref(value
);
312 error_setg_errno(errp
, -ret
, "invalid conf option %s", key
);
320 qobject_unref(keypairs
);
324 #ifdef LIBRBD_SUPPORTS_ENCRYPTION
325 static int qemu_rbd_convert_luks_options(
326 RbdEncryptionOptionsLUKSBase
*luks_opts
,
328 size_t *passphrase_len
,
331 return qcrypto_secret_lookup(luks_opts
->key_secret
, (uint8_t **)passphrase
,
332 passphrase_len
, errp
);
335 static int qemu_rbd_convert_luks_create_options(
336 RbdEncryptionCreateOptionsLUKSBase
*luks_opts
,
337 rbd_encryption_algorithm_t
*alg
,
339 size_t *passphrase_len
,
344 r
= qemu_rbd_convert_luks_options(
345 qapi_RbdEncryptionCreateOptionsLUKSBase_base(luks_opts
),
346 passphrase
, passphrase_len
, errp
);
351 if (luks_opts
->has_cipher_alg
) {
352 switch (luks_opts
->cipher_alg
) {
353 case QCRYPTO_CIPHER_ALG_AES_128
: {
354 *alg
= RBD_ENCRYPTION_ALGORITHM_AES128
;
357 case QCRYPTO_CIPHER_ALG_AES_256
: {
358 *alg
= RBD_ENCRYPTION_ALGORITHM_AES256
;
363 error_setg_errno(errp
, -r
, "unknown encryption algorithm: %u",
364 luks_opts
->cipher_alg
);
370 *alg
= RBD_ENCRYPTION_ALGORITHM_AES256
;
376 static int qemu_rbd_encryption_format(rbd_image_t image
,
377 RbdEncryptionCreateOptions
*encrypt
,
381 g_autofree
char *passphrase
= NULL
;
382 size_t passphrase_len
;
383 rbd_encryption_format_t format
;
384 rbd_encryption_options_t opts
;
385 rbd_encryption_luks1_format_options_t luks_opts
;
386 rbd_encryption_luks2_format_options_t luks2_opts
;
388 uint64_t raw_size
, effective_size
;
390 r
= rbd_get_size(image
, &raw_size
);
392 error_setg_errno(errp
, -r
, "cannot get raw image size");
396 switch (encrypt
->format
) {
397 case RBD_IMAGE_ENCRYPTION_FORMAT_LUKS
: {
398 memset(&luks_opts
, 0, sizeof(luks_opts
));
399 format
= RBD_ENCRYPTION_FORMAT_LUKS1
;
401 opts_size
= sizeof(luks_opts
);
402 r
= qemu_rbd_convert_luks_create_options(
403 qapi_RbdEncryptionCreateOptionsLUKS_base(&encrypt
->u
.luks
),
404 &luks_opts
.alg
, &passphrase
, &passphrase_len
, errp
);
408 luks_opts
.passphrase
= passphrase
;
409 luks_opts
.passphrase_size
= passphrase_len
;
412 case RBD_IMAGE_ENCRYPTION_FORMAT_LUKS2
: {
413 memset(&luks2_opts
, 0, sizeof(luks2_opts
));
414 format
= RBD_ENCRYPTION_FORMAT_LUKS2
;
416 opts_size
= sizeof(luks2_opts
);
417 r
= qemu_rbd_convert_luks_create_options(
418 qapi_RbdEncryptionCreateOptionsLUKS2_base(
420 &luks2_opts
.alg
, &passphrase
, &passphrase_len
, errp
);
424 luks2_opts
.passphrase
= passphrase
;
425 luks2_opts
.passphrase_size
= passphrase_len
;
431 errp
, -r
, "unknown image encryption format: %u",
437 r
= rbd_encryption_format(image
, format
, opts
, opts_size
);
439 error_setg_errno(errp
, -r
, "encryption format fail");
443 r
= rbd_get_size(image
, &effective_size
);
445 error_setg_errno(errp
, -r
, "cannot get effective image size");
449 r
= rbd_resize(image
, raw_size
+ (raw_size
- effective_size
));
451 error_setg_errno(errp
, -r
, "cannot resize image after format");
458 static int qemu_rbd_encryption_load(rbd_image_t image
,
459 RbdEncryptionOptions
*encrypt
,
463 g_autofree
char *passphrase
= NULL
;
464 size_t passphrase_len
;
465 rbd_encryption_luks1_format_options_t luks_opts
;
466 rbd_encryption_luks2_format_options_t luks2_opts
;
467 rbd_encryption_format_t format
;
468 rbd_encryption_options_t opts
;
471 switch (encrypt
->format
) {
472 case RBD_IMAGE_ENCRYPTION_FORMAT_LUKS
: {
473 memset(&luks_opts
, 0, sizeof(luks_opts
));
474 format
= RBD_ENCRYPTION_FORMAT_LUKS1
;
476 opts_size
= sizeof(luks_opts
);
477 r
= qemu_rbd_convert_luks_options(
478 qapi_RbdEncryptionOptionsLUKS_base(&encrypt
->u
.luks
),
479 &passphrase
, &passphrase_len
, errp
);
483 luks_opts
.passphrase
= passphrase
;
484 luks_opts
.passphrase_size
= passphrase_len
;
487 case RBD_IMAGE_ENCRYPTION_FORMAT_LUKS2
: {
488 memset(&luks2_opts
, 0, sizeof(luks2_opts
));
489 format
= RBD_ENCRYPTION_FORMAT_LUKS2
;
491 opts_size
= sizeof(luks2_opts
);
492 r
= qemu_rbd_convert_luks_options(
493 qapi_RbdEncryptionOptionsLUKS2_base(&encrypt
->u
.luks2
),
494 &passphrase
, &passphrase_len
, errp
);
498 luks2_opts
.passphrase
= passphrase
;
499 luks2_opts
.passphrase_size
= passphrase_len
;
505 errp
, -r
, "unknown image encryption format: %u",
511 r
= rbd_encryption_load(image
, format
, opts
, opts_size
);
513 error_setg_errno(errp
, -r
, "encryption load fail");
521 /* FIXME Deprecate and remove keypairs or make it available in QMP. */
522 static int qemu_rbd_do_create(BlockdevCreateOptions
*options
,
523 const char *keypairs
, const char *password_secret
,
526 BlockdevCreateOptionsRbd
*opts
= &options
->u
.rbd
;
528 rados_ioctx_t io_ctx
;
532 assert(options
->driver
== BLOCKDEV_DRIVER_RBD
);
533 if (opts
->location
->has_snapshot
) {
534 error_setg(errp
, "Can't use snapshot name for image creation");
538 #ifndef LIBRBD_SUPPORTS_ENCRYPTION
539 if (opts
->has_encrypt
) {
540 error_setg(errp
, "RBD library does not support image encryption");
545 if (opts
->has_cluster_size
) {
546 int64_t objsize
= opts
->cluster_size
;
547 if ((objsize
- 1) & objsize
) { /* not a power of 2? */
548 error_setg(errp
, "obj size needs to be power of 2");
551 if (objsize
< 4096) {
552 error_setg(errp
, "obj size too small");
555 obj_order
= ctz32(objsize
);
558 ret
= qemu_rbd_connect(&cluster
, &io_ctx
, opts
->location
, false, keypairs
,
559 password_secret
, errp
);
564 ret
= rbd_create(io_ctx
, opts
->location
->image
, opts
->size
, &obj_order
);
566 error_setg_errno(errp
, -ret
, "error rbd create");
570 #ifdef LIBRBD_SUPPORTS_ENCRYPTION
571 if (opts
->has_encrypt
) {
574 ret
= rbd_open(io_ctx
, opts
->location
->image
, &image
, NULL
);
576 error_setg_errno(errp
, -ret
,
577 "error opening image '%s' for encryption format",
578 opts
->location
->image
);
582 ret
= qemu_rbd_encryption_format(image
, opts
->encrypt
, errp
);
585 /* encryption format fail, try removing the image */
586 rbd_remove(io_ctx
, opts
->location
->image
);
594 rados_ioctx_destroy(io_ctx
);
595 rados_shutdown(cluster
);
599 static int qemu_rbd_co_create(BlockdevCreateOptions
*options
, Error
**errp
)
601 return qemu_rbd_do_create(options
, NULL
, NULL
, errp
);
604 static int qemu_rbd_extract_encryption_create_options(
606 RbdEncryptionCreateOptions
**spec
,
610 QDict
*encrypt_qdict
;
614 opts_qdict
= qemu_opts_to_qdict(opts
, NULL
);
615 qdict_extract_subqdict(opts_qdict
, &encrypt_qdict
, "encrypt.");
616 qobject_unref(opts_qdict
);
617 if (!qdict_size(encrypt_qdict
)) {
622 /* Convert options into a QAPI object */
623 v
= qobject_input_visitor_new_flat_confused(encrypt_qdict
, errp
);
629 visit_type_RbdEncryptionCreateOptions(v
, NULL
, spec
, errp
);
637 qobject_unref(encrypt_qdict
);
641 static int coroutine_fn
qemu_rbd_co_create_opts(BlockDriver
*drv
,
642 const char *filename
,
646 BlockdevCreateOptions
*create_options
;
647 BlockdevCreateOptionsRbd
*rbd_opts
;
648 BlockdevOptionsRbd
*loc
;
649 RbdEncryptionCreateOptions
*encrypt
= NULL
;
650 Error
*local_err
= NULL
;
651 const char *keypairs
, *password_secret
;
652 QDict
*options
= NULL
;
655 create_options
= g_new0(BlockdevCreateOptions
, 1);
656 create_options
->driver
= BLOCKDEV_DRIVER_RBD
;
657 rbd_opts
= &create_options
->u
.rbd
;
659 rbd_opts
->location
= g_new0(BlockdevOptionsRbd
, 1);
661 password_secret
= qemu_opt_get(opts
, "password-secret");
663 /* Read out options */
664 rbd_opts
->size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
666 rbd_opts
->cluster_size
= qemu_opt_get_size_del(opts
,
667 BLOCK_OPT_CLUSTER_SIZE
, 0);
668 rbd_opts
->has_cluster_size
= (rbd_opts
->cluster_size
!= 0);
670 options
= qdict_new();
671 qemu_rbd_parse_filename(filename
, options
, &local_err
);
674 error_propagate(errp
, local_err
);
678 ret
= qemu_rbd_extract_encryption_create_options(opts
, &encrypt
, errp
);
682 rbd_opts
->encrypt
= encrypt
;
683 rbd_opts
->has_encrypt
= !!encrypt
;
686 * Caution: while qdict_get_try_str() is fine, getting non-string
687 * types would require more care. When @options come from -blockdev
688 * or blockdev_add, its members are typed according to the QAPI
689 * schema, but when they come from -drive, they're all QString.
691 loc
= rbd_opts
->location
;
692 loc
->pool
= g_strdup(qdict_get_try_str(options
, "pool"));
693 loc
->conf
= g_strdup(qdict_get_try_str(options
, "conf"));
694 loc
->has_conf
= !!loc
->conf
;
695 loc
->user
= g_strdup(qdict_get_try_str(options
, "user"));
696 loc
->has_user
= !!loc
->user
;
697 loc
->q_namespace
= g_strdup(qdict_get_try_str(options
, "namespace"));
698 loc
->has_q_namespace
= !!loc
->q_namespace
;
699 loc
->image
= g_strdup(qdict_get_try_str(options
, "image"));
700 keypairs
= qdict_get_try_str(options
, "=keyvalue-pairs");
702 ret
= qemu_rbd_do_create(create_options
, keypairs
, password_secret
, errp
);
708 qobject_unref(options
);
709 qapi_free_BlockdevCreateOptions(create_options
);
713 static char *qemu_rbd_mon_host(BlockdevOptionsRbd
*opts
, Error
**errp
)
716 const char *host
, *port
;
718 InetSocketAddressBaseList
*p
;
721 if (!opts
->has_server
) {
725 for (cnt
= 0, p
= opts
->server
; p
; p
= p
->next
) {
729 vals
= g_new(const char *, cnt
+ 1);
731 for (i
= 0, p
= opts
->server
; p
; p
= p
->next
, i
++) {
732 host
= p
->value
->host
;
733 port
= p
->value
->port
;
735 if (strchr(host
, ':')) {
736 vals
[i
] = g_strdup_printf("[%s]:%s", host
, port
);
738 vals
[i
] = g_strdup_printf("%s:%s", host
, port
);
743 rados_str
= i
? g_strjoinv(";", (char **)vals
) : NULL
;
744 g_strfreev((char **)vals
);
748 static int qemu_rbd_connect(rados_t
*cluster
, rados_ioctx_t
*io_ctx
,
749 BlockdevOptionsRbd
*opts
, bool cache
,
750 const char *keypairs
, const char *secretid
,
753 char *mon_host
= NULL
;
754 Error
*local_err
= NULL
;
758 if (opts
->key_secret
) {
760 "Legacy 'password-secret' clashes with 'key-secret'");
763 opts
->key_secret
= g_strdup(secretid
);
764 opts
->has_key_secret
= true;
767 mon_host
= qemu_rbd_mon_host(opts
, &local_err
);
769 error_propagate(errp
, local_err
);
774 r
= rados_create(cluster
, opts
->user
);
776 error_setg_errno(errp
, -r
, "error initializing");
780 /* try default location when conf=NULL, but ignore failure */
781 r
= rados_conf_read_file(*cluster
, opts
->conf
);
782 if (opts
->has_conf
&& r
< 0) {
783 error_setg_errno(errp
, -r
, "error reading conf file %s", opts
->conf
);
784 goto failed_shutdown
;
787 r
= qemu_rbd_set_keypairs(*cluster
, keypairs
, errp
);
789 goto failed_shutdown
;
793 r
= rados_conf_set(*cluster
, "mon_host", mon_host
);
795 goto failed_shutdown
;
799 r
= qemu_rbd_set_auth(*cluster
, opts
, errp
);
801 goto failed_shutdown
;
805 * Fallback to more conservative semantics if setting cache
806 * options fails. Ignore errors from setting rbd_cache because the
807 * only possible error is that the option does not exist, and
808 * librbd defaults to no caching. If write through caching cannot
809 * be set up, fall back to no caching.
812 rados_conf_set(*cluster
, "rbd_cache", "true");
814 rados_conf_set(*cluster
, "rbd_cache", "false");
817 r
= rados_connect(*cluster
);
819 error_setg_errno(errp
, -r
, "error connecting");
820 goto failed_shutdown
;
823 r
= rados_ioctx_create(*cluster
, opts
->pool
, io_ctx
);
825 error_setg_errno(errp
, -r
, "error opening pool %s", opts
->pool
);
826 goto failed_shutdown
;
829 * Set the namespace after opening the io context on the pool,
830 * if nspace == NULL or if nspace == "", it is just as we did nothing
832 rados_ioctx_set_namespace(*io_ctx
, opts
->q_namespace
);
838 rados_shutdown(*cluster
);
844 static int qemu_rbd_convert_options(QDict
*options
, BlockdevOptionsRbd
**opts
,
849 /* Convert the remaining options into a QAPI object */
850 v
= qobject_input_visitor_new_flat_confused(options
, errp
);
855 visit_type_BlockdevOptionsRbd(v
, NULL
, opts
, errp
);
864 static int qemu_rbd_attempt_legacy_options(QDict
*options
,
865 BlockdevOptionsRbd
**opts
,
871 filename
= g_strdup(qdict_get_try_str(options
, "filename"));
875 qdict_del(options
, "filename");
877 qemu_rbd_parse_filename(filename
, options
, NULL
);
879 /* keypairs freed by caller */
880 *keypairs
= g_strdup(qdict_get_try_str(options
, "=keyvalue-pairs"));
882 qdict_del(options
, "=keyvalue-pairs");
885 r
= qemu_rbd_convert_options(options
, opts
, NULL
);
891 static int qemu_rbd_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
894 BDRVRBDState
*s
= bs
->opaque
;
895 BlockdevOptionsRbd
*opts
= NULL
;
897 Error
*local_err
= NULL
;
898 char *keypairs
, *secretid
;
899 rbd_image_info_t info
;
902 keypairs
= g_strdup(qdict_get_try_str(options
, "=keyvalue-pairs"));
904 qdict_del(options
, "=keyvalue-pairs");
907 secretid
= g_strdup(qdict_get_try_str(options
, "password-secret"));
909 qdict_del(options
, "password-secret");
912 r
= qemu_rbd_convert_options(options
, &opts
, &local_err
);
914 /* If keypairs are present, that means some options are present in
915 * the modern option format. Don't attempt to parse legacy option
916 * formats, as we won't support mixed usage. */
918 error_propagate(errp
, local_err
);
922 /* If the initial attempt to convert and process the options failed,
923 * we may be attempting to open an image file that has the rbd options
924 * specified in the older format consisting of all key/value pairs
925 * encoded in the filename. Go ahead and attempt to parse the
926 * filename, and see if we can pull out the required options. */
927 r
= qemu_rbd_attempt_legacy_options(options
, &opts
, &keypairs
);
929 /* Propagate the original error, not the legacy parsing fallback
930 * error, as the latter was just a best-effort attempt. */
931 error_propagate(errp
, local_err
);
934 /* Take care whenever deciding to actually deprecate; once this ability
935 * is removed, we will not be able to open any images with legacy-styled
936 * backing image strings. */
937 warn_report("RBD options encoded in the filename as keyvalue pairs "
941 /* Remove the processed options from the QDict (the visitor processes
942 * _all_ options in the QDict) */
943 while ((e
= qdict_first(options
))) {
944 qdict_del(options
, e
->key
);
947 r
= qemu_rbd_connect(&s
->cluster
, &s
->io_ctx
, opts
,
948 !(flags
& BDRV_O_NOCACHE
), keypairs
, secretid
, errp
);
953 s
->snap
= g_strdup(opts
->snapshot
);
954 s
->image_name
= g_strdup(opts
->image
);
956 /* rbd_open is always r/w */
957 r
= rbd_open(s
->io_ctx
, s
->image_name
, &s
->image
, s
->snap
);
959 error_setg_errno(errp
, -r
, "error reading header from %s",
964 if (opts
->has_encrypt
) {
965 #ifdef LIBRBD_SUPPORTS_ENCRYPTION
966 r
= qemu_rbd_encryption_load(s
->image
, opts
->encrypt
, errp
);
968 goto failed_post_open
;
972 error_setg(errp
, "RBD library does not support image encryption");
973 goto failed_post_open
;
977 r
= rbd_stat(s
->image
, &info
, sizeof(info
));
979 error_setg_errno(errp
, -r
, "error getting image info from %s",
981 goto failed_post_open
;
983 s
->image_size
= info
.size
;
984 s
->object_size
= info
.obj_size
;
986 /* If we are using an rbd snapshot, we must be r/o, otherwise
988 if (s
->snap
!= NULL
) {
989 r
= bdrv_apply_auto_read_only(bs
, "rbd snapshots are read-only", errp
);
991 goto failed_post_open
;
995 #ifdef LIBRBD_SUPPORTS_WRITE_ZEROES
996 bs
->supported_zero_flags
= BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
;
999 /* When extending regular files, we get zeros from the OS */
1000 bs
->supported_truncate_flags
= BDRV_REQ_ZERO_WRITE
;
1006 rbd_close(s
->image
);
1008 rados_ioctx_destroy(s
->io_ctx
);
1010 g_free(s
->image_name
);
1011 rados_shutdown(s
->cluster
);
1013 qapi_free_BlockdevOptionsRbd(opts
);
1020 /* Since RBD is currently always opened R/W via the API,
1021 * we just need to check if we are using a snapshot or not, in
1022 * order to determine if we will allow it to be R/W */
1023 static int qemu_rbd_reopen_prepare(BDRVReopenState
*state
,
1024 BlockReopenQueue
*queue
, Error
**errp
)
1026 BDRVRBDState
*s
= state
->bs
->opaque
;
1029 if (s
->snap
&& state
->flags
& BDRV_O_RDWR
) {
1031 "Cannot change node '%s' to r/w when using RBD snapshot",
1032 bdrv_get_device_or_node_name(state
->bs
));
1039 static void qemu_rbd_close(BlockDriverState
*bs
)
1041 BDRVRBDState
*s
= bs
->opaque
;
1043 rbd_close(s
->image
);
1044 rados_ioctx_destroy(s
->io_ctx
);
1046 g_free(s
->image_name
);
1047 rados_shutdown(s
->cluster
);
1050 /* Resize the RBD image and update the 'image_size' with the current size */
1051 static int qemu_rbd_resize(BlockDriverState
*bs
, uint64_t size
)
1053 BDRVRBDState
*s
= bs
->opaque
;
1056 r
= rbd_resize(s
->image
, size
);
1061 s
->image_size
= size
;
1066 static void qemu_rbd_finish_bh(void *opaque
)
1068 RBDTask
*task
= opaque
;
1069 task
->complete
= true;
1070 aio_co_wake(task
->co
);
1074 * This is the completion callback function for all rbd aio calls
1075 * started from qemu_rbd_start_co().
1077 * Note: this function is being called from a non qemu thread so
1078 * we need to be careful about what we do here. Generally we only
1079 * schedule a BH, and do the rest of the io completion handling
1080 * from qemu_rbd_finish_bh() which runs in a qemu context.
1082 static void qemu_rbd_completion_cb(rbd_completion_t c
, RBDTask
*task
)
1084 task
->ret
= rbd_aio_get_return_value(c
);
1086 aio_bh_schedule_oneshot(bdrv_get_aio_context(task
->bs
),
1087 qemu_rbd_finish_bh
, task
);
1090 static int coroutine_fn
qemu_rbd_start_co(BlockDriverState
*bs
,
1097 BDRVRBDState
*s
= bs
->opaque
;
1098 RBDTask task
= { .bs
= bs
, .co
= qemu_coroutine_self() };
1102 assert(!qiov
|| qiov
->size
== bytes
);
1104 r
= rbd_aio_create_completion(&task
,
1105 (rbd_callback_t
) qemu_rbd_completion_cb
, &c
);
1112 r
= rbd_aio_readv(s
->image
, qiov
->iov
, qiov
->niov
, offset
, c
);
1115 r
= rbd_aio_writev(s
->image
, qiov
->iov
, qiov
->niov
, offset
, c
);
1117 case RBD_AIO_DISCARD
:
1118 r
= rbd_aio_discard(s
->image
, offset
, bytes
, c
);
1121 r
= rbd_aio_flush(s
->image
, c
);
1123 #ifdef LIBRBD_SUPPORTS_WRITE_ZEROES
1124 case RBD_AIO_WRITE_ZEROES
: {
1126 #ifdef RBD_WRITE_ZEROES_FLAG_THICK_PROVISION
1127 if (!(flags
& BDRV_REQ_MAY_UNMAP
)) {
1128 zero_flags
= RBD_WRITE_ZEROES_FLAG_THICK_PROVISION
;
1131 r
= rbd_aio_write_zeroes(s
->image
, offset
, bytes
, c
, zero_flags
, 0);
1140 error_report("rbd request failed early: cmd %d offset %" PRIu64
1141 " bytes %" PRIu64
" flags %d r %d (%s)", cmd
, offset
,
1142 bytes
, flags
, r
, strerror(-r
));
1147 while (!task
.complete
) {
1148 qemu_coroutine_yield();
1152 error_report("rbd request failed: cmd %d offset %" PRIu64
" bytes %"
1153 PRIu64
" flags %d task.ret %" PRIi64
" (%s)", cmd
, offset
,
1154 bytes
, flags
, task
.ret
, strerror(-task
.ret
));
1158 /* zero pad short reads */
1159 if (cmd
== RBD_AIO_READ
&& task
.ret
< qiov
->size
) {
1160 qemu_iovec_memset(qiov
, task
.ret
, 0, qiov
->size
- task
.ret
);
1167 coroutine_fn
qemu_rbd_co_preadv(BlockDriverState
*bs
, uint64_t offset
,
1168 uint64_t bytes
, QEMUIOVector
*qiov
,
1171 return qemu_rbd_start_co(bs
, offset
, bytes
, qiov
, flags
, RBD_AIO_READ
);
1175 coroutine_fn
qemu_rbd_co_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1176 uint64_t bytes
, QEMUIOVector
*qiov
,
1179 BDRVRBDState
*s
= bs
->opaque
;
1181 * RBD APIs don't allow us to write more than actual size, so in order
1182 * to support growing images, we resize the image before write
1183 * operations that exceed the current size.
1185 if (offset
+ bytes
> s
->image_size
) {
1186 int r
= qemu_rbd_resize(bs
, offset
+ bytes
);
1191 return qemu_rbd_start_co(bs
, offset
, bytes
, qiov
, flags
, RBD_AIO_WRITE
);
1194 static int coroutine_fn
qemu_rbd_co_flush(BlockDriverState
*bs
)
1196 return qemu_rbd_start_co(bs
, 0, 0, NULL
, 0, RBD_AIO_FLUSH
);
1199 static int coroutine_fn
qemu_rbd_co_pdiscard(BlockDriverState
*bs
,
1200 int64_t offset
, int count
)
1202 return qemu_rbd_start_co(bs
, offset
, count
, NULL
, 0, RBD_AIO_DISCARD
);
1205 #ifdef LIBRBD_SUPPORTS_WRITE_ZEROES
1207 coroutine_fn
qemu_rbd_co_pwrite_zeroes(BlockDriverState
*bs
, int64_t offset
,
1208 int count
, BdrvRequestFlags flags
)
1210 return qemu_rbd_start_co(bs
, offset
, count
, NULL
, flags
,
1211 RBD_AIO_WRITE_ZEROES
);
1215 static int qemu_rbd_getinfo(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1217 BDRVRBDState
*s
= bs
->opaque
;
1218 bdi
->cluster_size
= s
->object_size
;
1222 static ImageInfoSpecific
*qemu_rbd_get_specific_info(BlockDriverState
*bs
,
1225 BDRVRBDState
*s
= bs
->opaque
;
1226 ImageInfoSpecific
*spec_info
;
1227 char buf
[RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
] = {0};
1230 if (s
->image_size
>= RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
) {
1231 r
= rbd_read(s
->image
, 0,
1232 RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
, buf
);
1234 error_setg_errno(errp
, -r
, "cannot read image start for probe");
1239 spec_info
= g_new(ImageInfoSpecific
, 1);
1240 *spec_info
= (ImageInfoSpecific
){
1241 .type
= IMAGE_INFO_SPECIFIC_KIND_RBD
,
1242 .u
.rbd
.data
= g_new0(ImageInfoSpecificRbd
, 1),
1245 if (memcmp(buf
, rbd_luks_header_verification
,
1246 RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
) == 0) {
1247 spec_info
->u
.rbd
.data
->encryption_format
=
1248 RBD_IMAGE_ENCRYPTION_FORMAT_LUKS
;
1249 spec_info
->u
.rbd
.data
->has_encryption_format
= true;
1250 } else if (memcmp(buf
, rbd_luks2_header_verification
,
1251 RBD_ENCRYPTION_LUKS_HEADER_VERIFICATION_LEN
) == 0) {
1252 spec_info
->u
.rbd
.data
->encryption_format
=
1253 RBD_IMAGE_ENCRYPTION_FORMAT_LUKS2
;
1254 spec_info
->u
.rbd
.data
->has_encryption_format
= true;
1256 spec_info
->u
.rbd
.data
->has_encryption_format
= false;
1262 static int64_t qemu_rbd_getlength(BlockDriverState
*bs
)
1264 BDRVRBDState
*s
= bs
->opaque
;
1267 r
= rbd_get_size(s
->image
, &s
->image_size
);
1272 return s
->image_size
;
1275 static int coroutine_fn
qemu_rbd_co_truncate(BlockDriverState
*bs
,
1278 PreallocMode prealloc
,
1279 BdrvRequestFlags flags
,
1284 if (prealloc
!= PREALLOC_MODE_OFF
) {
1285 error_setg(errp
, "Unsupported preallocation mode '%s'",
1286 PreallocMode_str(prealloc
));
1290 r
= qemu_rbd_resize(bs
, offset
);
1292 error_setg_errno(errp
, -r
, "Failed to resize file");
1299 static int qemu_rbd_snap_create(BlockDriverState
*bs
,
1300 QEMUSnapshotInfo
*sn_info
)
1302 BDRVRBDState
*s
= bs
->opaque
;
1305 if (sn_info
->name
[0] == '\0') {
1306 return -EINVAL
; /* we need a name for rbd snapshots */
1310 * rbd snapshots are using the name as the user controlled unique identifier
1311 * we can't use the rbd snapid for that purpose, as it can't be set
1313 if (sn_info
->id_str
[0] != '\0' &&
1314 strcmp(sn_info
->id_str
, sn_info
->name
) != 0) {
1318 if (strlen(sn_info
->name
) >= sizeof(sn_info
->id_str
)) {
1322 r
= rbd_snap_create(s
->image
, sn_info
->name
);
1324 error_report("failed to create snap: %s", strerror(-r
));
1331 static int qemu_rbd_snap_remove(BlockDriverState
*bs
,
1332 const char *snapshot_id
,
1333 const char *snapshot_name
,
1336 BDRVRBDState
*s
= bs
->opaque
;
1339 if (!snapshot_name
) {
1340 error_setg(errp
, "rbd need a valid snapshot name");
1344 /* If snapshot_id is specified, it must be equal to name, see
1345 qemu_rbd_snap_list() */
1346 if (snapshot_id
&& strcmp(snapshot_id
, snapshot_name
)) {
1348 "rbd do not support snapshot id, it should be NULL or "
1349 "equal to snapshot name");
1353 r
= rbd_snap_remove(s
->image
, snapshot_name
);
1355 error_setg_errno(errp
, -r
, "Failed to remove the snapshot");
1360 static int qemu_rbd_snap_rollback(BlockDriverState
*bs
,
1361 const char *snapshot_name
)
1363 BDRVRBDState
*s
= bs
->opaque
;
1365 return rbd_snap_rollback(s
->image
, snapshot_name
);
1368 static int qemu_rbd_snap_list(BlockDriverState
*bs
,
1369 QEMUSnapshotInfo
**psn_tab
)
1371 BDRVRBDState
*s
= bs
->opaque
;
1372 QEMUSnapshotInfo
*sn_info
, *sn_tab
= NULL
;
1374 rbd_snap_info_t
*snaps
;
1375 int max_snaps
= RBD_MAX_SNAPS
;
1378 snaps
= g_new(rbd_snap_info_t
, max_snaps
);
1379 snap_count
= rbd_snap_list(s
->image
, snaps
, &max_snaps
);
1380 if (snap_count
<= 0) {
1383 } while (snap_count
== -ERANGE
);
1385 if (snap_count
<= 0) {
1389 sn_tab
= g_new0(QEMUSnapshotInfo
, snap_count
);
1391 for (i
= 0; i
< snap_count
; i
++) {
1392 const char *snap_name
= snaps
[i
].name
;
1394 sn_info
= sn_tab
+ i
;
1395 pstrcpy(sn_info
->id_str
, sizeof(sn_info
->id_str
), snap_name
);
1396 pstrcpy(sn_info
->name
, sizeof(sn_info
->name
), snap_name
);
1398 sn_info
->vm_state_size
= snaps
[i
].size
;
1399 sn_info
->date_sec
= 0;
1400 sn_info
->date_nsec
= 0;
1401 sn_info
->vm_clock_nsec
= 0;
1403 rbd_snap_list_end(snaps
);
1411 static void coroutine_fn
qemu_rbd_co_invalidate_cache(BlockDriverState
*bs
,
1414 BDRVRBDState
*s
= bs
->opaque
;
1415 int r
= rbd_invalidate_cache(s
->image
);
1417 error_setg_errno(errp
, -r
, "Failed to invalidate the cache");
1421 static QemuOptsList qemu_rbd_create_opts
= {
1422 .name
= "rbd-create-opts",
1423 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rbd_create_opts
.head
),
1426 .name
= BLOCK_OPT_SIZE
,
1427 .type
= QEMU_OPT_SIZE
,
1428 .help
= "Virtual disk size"
1431 .name
= BLOCK_OPT_CLUSTER_SIZE
,
1432 .type
= QEMU_OPT_SIZE
,
1433 .help
= "RBD object size"
1436 .name
= "password-secret",
1437 .type
= QEMU_OPT_STRING
,
1438 .help
= "ID of secret providing the password",
1441 .name
= "encrypt.format",
1442 .type
= QEMU_OPT_STRING
,
1443 .help
= "Encrypt the image, format choices: 'luks', 'luks2'",
1446 .name
= "encrypt.cipher-alg",
1447 .type
= QEMU_OPT_STRING
,
1448 .help
= "Name of encryption cipher algorithm"
1449 " (allowed values: aes-128, aes-256)",
1452 .name
= "encrypt.key-secret",
1453 .type
= QEMU_OPT_STRING
,
1454 .help
= "ID of secret providing LUKS passphrase",
1456 { /* end of list */ }
1460 static const char *const qemu_rbd_strong_runtime_opts
[] = {
1473 static BlockDriver bdrv_rbd
= {
1474 .format_name
= "rbd",
1475 .instance_size
= sizeof(BDRVRBDState
),
1476 .bdrv_parse_filename
= qemu_rbd_parse_filename
,
1477 .bdrv_file_open
= qemu_rbd_open
,
1478 .bdrv_close
= qemu_rbd_close
,
1479 .bdrv_reopen_prepare
= qemu_rbd_reopen_prepare
,
1480 .bdrv_co_create
= qemu_rbd_co_create
,
1481 .bdrv_co_create_opts
= qemu_rbd_co_create_opts
,
1482 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
1483 .bdrv_get_info
= qemu_rbd_getinfo
,
1484 .bdrv_get_specific_info
= qemu_rbd_get_specific_info
,
1485 .create_opts
= &qemu_rbd_create_opts
,
1486 .bdrv_getlength
= qemu_rbd_getlength
,
1487 .bdrv_co_truncate
= qemu_rbd_co_truncate
,
1488 .protocol_name
= "rbd",
1490 .bdrv_co_preadv
= qemu_rbd_co_preadv
,
1491 .bdrv_co_pwritev
= qemu_rbd_co_pwritev
,
1492 .bdrv_co_flush_to_disk
= qemu_rbd_co_flush
,
1493 .bdrv_co_pdiscard
= qemu_rbd_co_pdiscard
,
1494 #ifdef LIBRBD_SUPPORTS_WRITE_ZEROES
1495 .bdrv_co_pwrite_zeroes
= qemu_rbd_co_pwrite_zeroes
,
1498 .bdrv_snapshot_create
= qemu_rbd_snap_create
,
1499 .bdrv_snapshot_delete
= qemu_rbd_snap_remove
,
1500 .bdrv_snapshot_list
= qemu_rbd_snap_list
,
1501 .bdrv_snapshot_goto
= qemu_rbd_snap_rollback
,
1502 .bdrv_co_invalidate_cache
= qemu_rbd_co_invalidate_cache
,
1504 .strong_runtime_opts
= qemu_rbd_strong_runtime_opts
,
1507 static void bdrv_rbd_init(void)
1509 bdrv_register(&bdrv_rbd
);
1512 block_init(bdrv_rbd_init
);