]> Git Repo - qemu.git/blame - block/rbd.c
block: Add errp to BD.bdrv_truncate()
[qemu.git] / block / rbd.c
CommitLineData
f27aaf4b
CB
1/*
2 * QEMU Block driver for RADOS (Ceph)
3 *
ad32e9c0
JD
4 * Copyright (C) 2010-2011 Christian Brunner <[email protected]>,
5 * Josh Durgin <[email protected]>
f27aaf4b
CB
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2. See
8 * the COPYING file in the top-level directory.
9 *
6b620ca3
PB
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.
f27aaf4b
CB
12 */
13
80c71a24 14#include "qemu/osdep.h"
ad32e9c0 15
2836284d 16#include <rbd/librbd.h>
da34e65c 17#include "qapi/error.h"
1de7afc9 18#include "qemu/error-report.h"
737e150e 19#include "block/block_int.h"
60390a21 20#include "crypto/secret.h"
f348b6d1 21#include "qemu/cutils.h"
c7cacb3e 22#include "qapi/qmp/qstring.h"
e98c6961 23#include "qapi/qmp/qjson.h"
f27aaf4b 24
f27aaf4b
CB
25/*
26 * When specifying the image filename use:
27 *
fab5cf59 28 * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]]
f27aaf4b 29 *
9e1fbcde 30 * poolname must be the name of an existing rados pool.
f27aaf4b 31 *
9e1fbcde 32 * devicename is the name of the rbd image.
f27aaf4b 33 *
9e1fbcde
SW
34 * Each option given is used to configure rados, and may be any valid
35 * Ceph option, "id", or "conf".
fab5cf59 36 *
9e1fbcde
SW
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
39 * (normally 'admin').
f27aaf4b 40 *
9e1fbcde
SW
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.
f27aaf4b 45 *
9e1fbcde
SW
46 * Configuration values containing :, @, or = can be escaped with a
47 * leading "\".
f27aaf4b
CB
48 */
49
787f3133
JD
50/* rbd_aio_discard added in 0.1.2 */
51#if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 2)
52#define LIBRBD_SUPPORTS_DISCARD
53#else
54#undef LIBRBD_SUPPORTS_DISCARD
55#endif
56
f27aaf4b
CB
57#define OBJ_MAX_SIZE (1UL << OBJ_DEFAULT_OBJ_ORDER)
58
ad32e9c0
JD
59#define RBD_MAX_SNAPS 100
60
1d393bde 61/* The LIBRBD_SUPPORTS_IOVEC is defined in librbd.h */
62#ifdef LIBRBD_SUPPORTS_IOVEC
63#define LIBRBD_USE_IOVEC 1
64#else
65#define LIBRBD_USE_IOVEC 0
66#endif
67
787f3133
JD
68typedef enum {
69 RBD_AIO_READ,
70 RBD_AIO_WRITE,
dc7588c1
JD
71 RBD_AIO_DISCARD,
72 RBD_AIO_FLUSH
787f3133
JD
73} RBDAIOCmd;
74
f27aaf4b 75typedef struct RBDAIOCB {
7c84b1b8 76 BlockAIOCB common;
08448d51 77 int64_t ret;
f27aaf4b
CB
78 QEMUIOVector *qiov;
79 char *bounce;
787f3133 80 RBDAIOCmd cmd;
f27aaf4b
CB
81 int error;
82 struct BDRVRBDState *s;
f27aaf4b
CB
83} RBDAIOCB;
84
85typedef struct RADOSCB {
f27aaf4b
CB
86 RBDAIOCB *acb;
87 struct BDRVRBDState *s;
ad32e9c0 88 int64_t size;
f27aaf4b 89 char *buf;
08448d51 90 int64_t ret;
f27aaf4b
CB
91} RADOSCB;
92
f27aaf4b 93typedef struct BDRVRBDState {
ad32e9c0
JD
94 rados_t cluster;
95 rados_ioctx_t io_ctx;
96 rbd_image_t image;
80b61a27 97 char *image_name;
ad32e9c0 98 char *snap;
f27aaf4b
CB
99} BDRVRBDState;
100
730b00bb 101static char *qemu_rbd_next_tok(char *src, char delim, char **p)
f27aaf4b 102{
f27aaf4b
CB
103 char *end;
104
105 *p = NULL;
106
8efb339d 107 for (end = src; *end; ++end) {
16a06b24 108 if (*end == delim) {
8efb339d
MA
109 break;
110 }
111 if (*end == '\\' && end[1] != '\0') {
112 end++;
f27aaf4b
CB
113 }
114 }
8efb339d
MA
115 if (*end == delim) {
116 *p = end + 1;
117 *end = '\0';
118 }
7830f909 119 return src;
f27aaf4b
CB
120}
121
16a06b24
SW
122static void qemu_rbd_unescape(char *src)
123{
124 char *p;
125
126 for (p = src; *src; ++src, ++p) {
127 if (*src == '\\' && src[1] != '\0') {
128 src++;
129 }
130 *p = *src;
131 }
132 *p = '\0';
133}
134
c7cacb3e
JC
135static void qemu_rbd_parse_filename(const char *filename, QDict *options,
136 Error **errp)
f27aaf4b
CB
137{
138 const char *start;
e98c6961
EB
139 char *p, *buf;
140 QList *keypairs = NULL;
7830f909 141 char *found_str;
f27aaf4b
CB
142
143 if (!strstart(filename, "rbd:", &start)) {
d61563b2 144 error_setg(errp, "File name must start with 'rbd:'");
c7cacb3e 145 return;
f27aaf4b
CB
146 }
147
7267c094 148 buf = g_strdup(start);
f27aaf4b
CB
149 p = buf;
150
730b00bb 151 found_str = qemu_rbd_next_tok(p, '/', &p);
7830f909 152 if (!p) {
7830f909 153 error_setg(errp, "Pool name is required");
f27aaf4b
CB
154 goto done;
155 }
7830f909 156 qemu_rbd_unescape(found_str);
c7cacb3e 157 qdict_put(options, "pool", qstring_from_str(found_str));
fab5cf59
JD
158
159 if (strchr(p, '@')) {
730b00bb 160 found_str = qemu_rbd_next_tok(p, '@', &p);
7830f909 161 qemu_rbd_unescape(found_str);
c7cacb3e 162 qdict_put(options, "image", qstring_from_str(found_str));
7830f909 163
730b00bb 164 found_str = qemu_rbd_next_tok(p, ':', &p);
7830f909 165 qemu_rbd_unescape(found_str);
c7cacb3e 166 qdict_put(options, "snapshot", qstring_from_str(found_str));
fab5cf59 167 } else {
730b00bb 168 found_str = qemu_rbd_next_tok(p, ':', &p);
7830f909 169 qemu_rbd_unescape(found_str);
c7cacb3e 170 qdict_put(options, "image", qstring_from_str(found_str));
f27aaf4b 171 }
7830f909 172 if (!p) {
f27aaf4b
CB
173 goto done;
174 }
175
c7cacb3e
JC
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. */
178 while (p) {
179 char *name, *value;
730b00bb 180 name = qemu_rbd_next_tok(p, '=', &p);
c7cacb3e
JC
181 if (!p) {
182 error_setg(errp, "conf option %s has no value", name);
183 break;
7c7e9df0 184 }
c7cacb3e
JC
185
186 qemu_rbd_unescape(name);
187
730b00bb 188 value = qemu_rbd_next_tok(p, ':', &p);
c7cacb3e
JC
189 qemu_rbd_unescape(value);
190
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));
195 } else {
e98c6961
EB
196 /*
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" } ]
203 */
204 if (!keypairs) {
205 keypairs = qlist_new();
c7cacb3e 206 }
e98c6961
EB
207 qlist_append(keypairs, qstring_from_str(name));
208 qlist_append(keypairs, qstring_from_str(value));
c7cacb3e 209 }
7c7e9df0 210 }
c7cacb3e 211
e98c6961
EB
212 if (keypairs) {
213 qdict_put(options, "=keyvalue-pairs",
214 qobject_to_json(QOBJECT(keypairs)));
c7cacb3e
JC
215 }
216
c7cacb3e 217done:
c7cacb3e 218 g_free(buf);
e98c6961 219 QDECREF(keypairs);
c7cacb3e 220 return;
7c7e9df0
SW
221}
222
60390a21
DB
223
224static int qemu_rbd_set_auth(rados_t cluster, const char *secretid,
225 Error **errp)
226{
227 if (secretid == 0) {
228 return 0;
229 }
230
231 gchar *secret = qcrypto_secret_lookup_as_base64(secretid,
232 errp);
233 if (!secret) {
234 return -1;
235 }
236
237 rados_conf_set(cluster, "key", secret);
238 g_free(secret);
239
240 return 0;
241}
242
e98c6961 243static int qemu_rbd_set_keypairs(rados_t cluster, const char *keypairs_json,
c7cacb3e 244 Error **errp)
fab5cf59 245{
e98c6961
EB
246 QList *keypairs;
247 QString *name;
248 QString *value;
249 const char *key;
250 size_t remaining;
fab5cf59
JD
251 int ret = 0;
252
e98c6961
EB
253 if (!keypairs_json) {
254 return ret;
255 }
256 keypairs = qobject_to_qlist(qobject_from_json(keypairs_json,
257 &error_abort));
258 remaining = qlist_size(keypairs) / 2;
259 assert(remaining);
260
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);
266
267 ret = rados_conf_set(cluster, key, qstring_get_str(value));
268 QDECREF(name);
269 QDECREF(value);
c7cacb3e 270 if (ret < 0) {
e98c6961 271 error_setg_errno(errp, -ret, "invalid conf option %s", key);
c7cacb3e
JC
272 ret = -EINVAL;
273 break;
fab5cf59
JD
274 }
275 }
276
e98c6961 277 QDECREF(keypairs);
fab5cf59
JD
278 return ret;
279}
280
1d393bde 281static void qemu_rbd_memset(RADOSCB *rcb, int64_t offs)
282{
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);
287 } else {
288 memset(rcb->buf + offs, 0, rcb->size - offs);
289 }
290}
291
0f9d252d
JC
292static QemuOptsList runtime_opts = {
293 .name = "rbd",
294 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
295 .desc = {
296 {
cbf036b4 297 .name = "pool",
0f9d252d 298 .type = QEMU_OPT_STRING,
cbf036b4 299 .help = "Rados pool name",
0f9d252d
JC
300 },
301 {
cbf036b4 302 .name = "image",
0f9d252d 303 .type = QEMU_OPT_STRING,
cbf036b4 304 .help = "Image name in the pool",
0f9d252d
JC
305 },
306 {
307 .name = "conf",
308 .type = QEMU_OPT_STRING,
309 .help = "Rados config file location",
310 },
0f9d252d
JC
311 {
312 .name = "snapshot",
313 .type = QEMU_OPT_STRING,
314 .help = "Ceph snapshot name",
315 },
316 {
317 /* maps to 'id' in rados_create() */
318 .name = "user",
319 .type = QEMU_OPT_STRING,
320 .help = "Rados id name",
321 },
cbf036b4 322 /*
2836284d 323 * server.* extracted manually, see qemu_rbd_mon_host()
cbf036b4
MA
324 */
325 {
326 .name = "password-secret",
327 .type = QEMU_OPT_STRING,
328 .help = "ID of secret providing the password",
329 },
330
331 /*
332 * Keys for qemu_rbd_parse_filename(), not in the QAPI schema
333 */
0f9d252d 334 {
82f20e85
MA
335 /*
336 * HACK: name starts with '=' so that qemu_opts_parse()
337 * can't set it
338 */
339 .name = "=keyvalue-pairs",
0f9d252d
JC
340 .type = QEMU_OPT_STRING,
341 .help = "Legacy rados key/value option parameters",
342 },
343 { /* end of list */ }
344 },
345};
346
bd0cf596 347static int qemu_rbd_create(const char *filename, QemuOpts *opts, Error **errp)
f27aaf4b 348{
d61563b2 349 Error *local_err = NULL;
f27aaf4b
CB
350 int64_t bytes = 0;
351 int64_t objsize;
ad32e9c0 352 int obj_order = 0;
80b61a27 353 const char *pool, *image_name, *conf, *user, *keypairs;
60390a21 354 const char *secretid;
ad32e9c0
JD
355 rados_t cluster;
356 rados_ioctx_t io_ctx;
c7cacb3e 357 QDict *options = NULL;
c7cacb3e 358 int ret = 0;
f27aaf4b 359
60390a21
DB
360 secretid = qemu_opt_get(opts, "password-secret");
361
f27aaf4b 362 /* Read out options */
c2eb918e
HT
363 bytes = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
364 BDRV_SECTOR_SIZE);
bd0cf596
CL
365 objsize = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE, 0);
366 if (objsize) {
367 if ((objsize - 1) & objsize) { /* not a power of 2? */
368 error_setg(errp, "obj size needs to be power of 2");
c7cacb3e
JC
369 ret = -EINVAL;
370 goto exit;
bd0cf596
CL
371 }
372 if (objsize < 4096) {
373 error_setg(errp, "obj size too small");
c7cacb3e
JC
374 ret = -EINVAL;
375 goto exit;
f27aaf4b 376 }
786a4ea8 377 obj_order = ctz32(objsize);
f27aaf4b
CB
378 }
379
c7cacb3e
JC
380 options = qdict_new();
381 qemu_rbd_parse_filename(filename, options, &local_err);
382 if (local_err) {
383 ret = -EINVAL;
384 error_propagate(errp, local_err);
385 goto exit;
386 }
387
129c7d1c
MA
388 /*
389 * Caution: while qdict_get_try_str() is fine, getting non-string
390 * types would require more care. When @options come from -blockdev
391 * or blockdev_add, its members are typed according to the QAPI
392 * schema, but when they come from -drive, they're all QString.
393 */
07846397
MA
394 pool = qdict_get_try_str(options, "pool");
395 conf = qdict_get_try_str(options, "conf");
80b61a27
JC
396 user = qdict_get_try_str(options, "user");
397 image_name = qdict_get_try_str(options, "image");
07846397 398 keypairs = qdict_get_try_str(options, "=keyvalue-pairs");
c7cacb3e 399
80b61a27 400 ret = rados_create(&cluster, user);
87cd3d20
VU
401 if (ret < 0) {
402 error_setg_errno(errp, -ret, "error initializing");
c7cacb3e 403 goto exit;
f27aaf4b
CB
404 }
405
c7cacb3e
JC
406 /* try default location when conf=NULL, but ignore failure */
407 ret = rados_conf_read_file(cluster, conf);
408 if (conf && ret < 0) {
409 error_setg_errno(errp, -ret, "error reading conf file %s", conf);
e38f643a
XL
410 ret = -EIO;
411 goto shutdown;
fab5cf59
JD
412 }
413
c7cacb3e
JC
414 ret = qemu_rbd_set_keypairs(cluster, keypairs, errp);
415 if (ret < 0) {
e38f643a
XL
416 ret = -EIO;
417 goto shutdown;
f27aaf4b
CB
418 }
419
60390a21 420 if (qemu_rbd_set_auth(cluster, secretid, errp) < 0) {
e38f643a
XL
421 ret = -EIO;
422 goto shutdown;
60390a21
DB
423 }
424
87cd3d20
VU
425 ret = rados_connect(cluster);
426 if (ret < 0) {
427 error_setg_errno(errp, -ret, "error connecting");
e38f643a 428 goto shutdown;
f27aaf4b 429 }
f27aaf4b 430
87cd3d20
VU
431 ret = rados_ioctx_create(cluster, pool, &io_ctx);
432 if (ret < 0) {
433 error_setg_errno(errp, -ret, "error opening pool %s", pool);
e38f643a 434 goto shutdown;
f27aaf4b
CB
435 }
436
80b61a27 437 ret = rbd_create(io_ctx, image_name, bytes, &obj_order);
87cd3d20
VU
438 if (ret < 0) {
439 error_setg_errno(errp, -ret, "error rbd create");
87cd3d20 440 }
f27aaf4b 441
e38f643a
XL
442 rados_ioctx_destroy(io_ctx);
443
444shutdown:
445 rados_shutdown(cluster);
c7cacb3e
JC
446
447exit:
448 QDECREF(options);
f27aaf4b
CB
449 return ret;
450}
451
452/*
e04fb07f
SH
453 * This aio completion is being called from rbd_finish_bh() and runs in qemu
454 * BH context.
f27aaf4b 455 */
ad32e9c0 456static void qemu_rbd_complete_aio(RADOSCB *rcb)
f27aaf4b
CB
457{
458 RBDAIOCB *acb = rcb->acb;
459 int64_t r;
460
f27aaf4b
CB
461 r = rcb->ret;
462
dc7588c1 463 if (acb->cmd != RBD_AIO_READ) {
f27aaf4b
CB
464 if (r < 0) {
465 acb->ret = r;
466 acb->error = 1;
467 } else if (!acb->error) {
ad32e9c0 468 acb->ret = rcb->size;
f27aaf4b
CB
469 }
470 } else {
ad32e9c0 471 if (r < 0) {
1d393bde 472 qemu_rbd_memset(rcb, 0);
f27aaf4b
CB
473 acb->ret = r;
474 acb->error = 1;
ad32e9c0 475 } else if (r < rcb->size) {
1d393bde 476 qemu_rbd_memset(rcb, r);
f27aaf4b 477 if (!acb->error) {
ad32e9c0 478 acb->ret = rcb->size;
f27aaf4b
CB
479 }
480 } else if (!acb->error) {
ad32e9c0 481 acb->ret = r;
f27aaf4b
CB
482 }
483 }
f27aaf4b 484
e04fb07f 485 g_free(rcb);
f27aaf4b 486
1d393bde 487 if (!LIBRBD_USE_IOVEC) {
488 if (acb->cmd == RBD_AIO_READ) {
489 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
490 }
491 qemu_vfree(acb->bounce);
e04fb07f 492 }
1d393bde 493
e04fb07f 494 acb->common.cb(acb->common.opaque, (acb->ret > 0 ? 0 : acb->ret));
f27aaf4b 495
8007429a 496 qemu_aio_unref(acb);
f27aaf4b
CB
497}
498
2836284d 499static char *qemu_rbd_mon_host(QDict *options, Error **errp)
0a55679b 500{
2836284d
MA
501 const char **vals = g_new(const char *, qdict_size(options) + 1);
502 char keybuf[32];
503 const char *host, *port;
504 char *rados_str;
0a55679b
JC
505 int i;
506
2836284d
MA
507 for (i = 0;; i++) {
508 sprintf(keybuf, "server.%d.host", i);
509 host = qdict_get_try_str(options, keybuf);
510 qdict_del(options, keybuf);
511 sprintf(keybuf, "server.%d.port", i);
512 port = qdict_get_try_str(options, keybuf);
513 qdict_del(options, keybuf);
514 if (!host && !port) {
515 break;
0a55679b 516 }
2836284d
MA
517 if (!host) {
518 error_setg(errp, "Parameter server.%d.host is missing", i);
519 rados_str = NULL;
520 goto out;
0a55679b
JC
521 }
522
2836284d
MA
523 if (strchr(host, ':')) {
524 vals[i] = port ? g_strdup_printf("[%s]:%s", host, port)
525 : g_strdup_printf("[%s]", host);
0a55679b 526 } else {
2836284d
MA
527 vals[i] = port ? g_strdup_printf("%s:%s", host, port)
528 : g_strdup(host);
0a55679b 529 }
0a55679b 530 }
2836284d 531 vals[i] = NULL;
0a55679b 532
2836284d
MA
533 rados_str = i ? g_strjoinv(";", (char **)vals) : NULL;
534out:
535 g_strfreev((char **)vals);
0a55679b
JC
536 return rados_str;
537}
538
015a1036
HR
539static int qemu_rbd_open(BlockDriverState *bs, QDict *options, int flags,
540 Error **errp)
f27aaf4b
CB
541{
542 BDRVRBDState *s = bs->opaque;
80b61a27 543 const char *pool, *snap, *conf, *user, *image_name, *keypairs;
60390a21 544 const char *secretid;
a9ccedc3
KW
545 QemuOpts *opts;
546 Error *local_err = NULL;
0a55679b 547 char *mon_host = NULL;
f27aaf4b
CB
548 int r;
549
87ea75d5 550 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
a9ccedc3 551 qemu_opts_absorb_qdict(opts, options, &local_err);
84d18f06 552 if (local_err) {
d61563b2 553 error_propagate(errp, local_err);
2836284d
MA
554 r = -EINVAL;
555 goto failed_opts;
a9ccedc3
KW
556 }
557
2836284d 558 mon_host = qemu_rbd_mon_host(options, &local_err);
0a55679b
JC
559 if (local_err) {
560 error_propagate(errp, local_err);
561 r = -EINVAL;
562 goto failed_opts;
563 }
564
60390a21 565 secretid = qemu_opt_get(opts, "password-secret");
a9ccedc3 566
c7cacb3e
JC
567 pool = qemu_opt_get(opts, "pool");
568 conf = qemu_opt_get(opts, "conf");
569 snap = qemu_opt_get(opts, "snapshot");
80b61a27
JC
570 user = qemu_opt_get(opts, "user");
571 image_name = qemu_opt_get(opts, "image");
82f20e85 572 keypairs = qemu_opt_get(opts, "=keyvalue-pairs");
f27aaf4b 573
80b61a27 574 if (!pool || !image_name) {
f51c363c
MA
575 error_setg(errp, "Parameters 'pool' and 'image' are required");
576 r = -EINVAL;
577 goto failed_opts;
578 }
579
80b61a27 580 r = rados_create(&s->cluster, user);
ad32e9c0 581 if (r < 0) {
87cd3d20 582 error_setg_errno(errp, -r, "error initializing");
c3ca988d 583 goto failed_opts;
f27aaf4b
CB
584 }
585
c7cacb3e 586 s->snap = g_strdup(snap);
80b61a27 587 s->image_name = g_strdup(image_name);
eb93d5d9 588
c7cacb3e
JC
589 /* try default location when conf=NULL, but ignore failure */
590 r = rados_conf_read_file(s->cluster, conf);
591 if (conf && r < 0) {
592 error_setg_errno(errp, -r, "error reading conf file %s", conf);
593 goto failed_shutdown;
99a3c89d
JD
594 }
595
c7cacb3e
JC
596 r = qemu_rbd_set_keypairs(s->cluster, keypairs, errp);
597 if (r < 0) {
598 goto failed_shutdown;
99a3c89d
JD
599 }
600
0a55679b
JC
601 if (mon_host) {
602 r = rados_conf_set(s->cluster, "mon_host", mon_host);
603 if (r < 0) {
604 goto failed_shutdown;
605 }
606 }
607
60390a21
DB
608 if (qemu_rbd_set_auth(s->cluster, secretid, errp) < 0) {
609 r = -EIO;
610 goto failed_shutdown;
611 }
612
b11f38fc
JD
613 /*
614 * Fallback to more conservative semantics if setting cache
615 * options fails. Ignore errors from setting rbd_cache because the
616 * only possible error is that the option does not exist, and
617 * librbd defaults to no caching. If write through caching cannot
618 * be set up, fall back to no caching.
619 */
620 if (flags & BDRV_O_NOCACHE) {
621 rados_conf_set(s->cluster, "rbd_cache", "false");
622 } else {
623 rados_conf_set(s->cluster, "rbd_cache", "true");
b11f38fc
JD
624 }
625
ad32e9c0
JD
626 r = rados_connect(s->cluster);
627 if (r < 0) {
87cd3d20 628 error_setg_errno(errp, -r, "error connecting");
eb93d5d9 629 goto failed_shutdown;
f27aaf4b
CB
630 }
631
ad32e9c0
JD
632 r = rados_ioctx_create(s->cluster, pool, &s->io_ctx);
633 if (r < 0) {
87cd3d20 634 error_setg_errno(errp, -r, "error opening pool %s", pool);
eb93d5d9 635 goto failed_shutdown;
f27aaf4b
CB
636 }
637
e2b8247a 638 /* rbd_open is always r/w */
80b61a27 639 r = rbd_open(s->io_ctx, s->image_name, &s->image, s->snap);
f27aaf4b 640 if (r < 0) {
80b61a27
JC
641 error_setg_errno(errp, -r, "error reading header from %s",
642 s->image_name);
eb93d5d9 643 goto failed_open;
f27aaf4b
CB
644 }
645
e2b8247a
JC
646 /* If we are using an rbd snapshot, we must be r/o, otherwise
647 * leave as-is */
648 if (s->snap != NULL) {
649 r = bdrv_set_read_only(bs, true, &local_err);
650 if (r < 0) {
651 error_propagate(errp, local_err);
652 goto failed_open;
653 }
654 }
f27aaf4b 655
c3ca988d 656 qemu_opts_del(opts);
f27aaf4b
CB
657 return 0;
658
eb93d5d9 659failed_open:
ad32e9c0 660 rados_ioctx_destroy(s->io_ctx);
eb93d5d9 661failed_shutdown:
ad32e9c0 662 rados_shutdown(s->cluster);
eb93d5d9 663 g_free(s->snap);
80b61a27 664 g_free(s->image_name);
c3ca988d
KW
665failed_opts:
666 qemu_opts_del(opts);
0a55679b 667 g_free(mon_host);
f27aaf4b
CB
668 return r;
669}
670
56e7cf8d
JC
671
672/* Since RBD is currently always opened R/W via the API,
673 * we just need to check if we are using a snapshot or not, in
674 * order to determine if we will allow it to be R/W */
675static int qemu_rbd_reopen_prepare(BDRVReopenState *state,
676 BlockReopenQueue *queue, Error **errp)
677{
678 BDRVRBDState *s = state->bs->opaque;
679 int ret = 0;
680
681 if (s->snap && state->flags & BDRV_O_RDWR) {
682 error_setg(errp,
683 "Cannot change node '%s' to r/w when using RBD snapshot",
684 bdrv_get_device_or_node_name(state->bs));
685 ret = -EINVAL;
686 }
687
688 return ret;
689}
690
ad32e9c0 691static void qemu_rbd_close(BlockDriverState *bs)
f27aaf4b
CB
692{
693 BDRVRBDState *s = bs->opaque;
694
ad32e9c0
JD
695 rbd_close(s->image);
696 rados_ioctx_destroy(s->io_ctx);
7267c094 697 g_free(s->snap);
80b61a27 698 g_free(s->image_name);
ad32e9c0 699 rados_shutdown(s->cluster);
f27aaf4b
CB
700}
701
d7331bed 702static const AIOCBInfo rbd_aiocb_info = {
f27aaf4b 703 .aiocb_size = sizeof(RBDAIOCB),
f27aaf4b
CB
704};
705
e04fb07f 706static void rbd_finish_bh(void *opaque)
f27aaf4b 707{
e04fb07f 708 RADOSCB *rcb = opaque;
e04fb07f 709 qemu_rbd_complete_aio(rcb);
ad32e9c0
JD
710}
711
712/*
713 * This is the callback function for rbd_aio_read and _write
714 *
715 * Note: this function is being called from a non qemu thread so
716 * we need to be careful about what we do here. Generally we only
e04fb07f
SH
717 * schedule a BH, and do the rest of the io completion handling
718 * from rbd_finish_bh() which runs in a qemu context.
ad32e9c0
JD
719 */
720static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb)
721{
e04fb07f
SH
722 RBDAIOCB *acb = rcb->acb;
723
ad32e9c0
JD
724 rcb->ret = rbd_aio_get_return_value(c);
725 rbd_aio_release(c);
f27aaf4b 726
fffb6e12
PB
727 aio_bh_schedule_oneshot(bdrv_get_aio_context(acb->common.bs),
728 rbd_finish_bh, rcb);
f27aaf4b
CB
729}
730
787f3133
JD
731static int rbd_aio_discard_wrapper(rbd_image_t image,
732 uint64_t off,
733 uint64_t len,
734 rbd_completion_t comp)
735{
736#ifdef LIBRBD_SUPPORTS_DISCARD
737 return rbd_aio_discard(image, off, len, comp);
738#else
739 return -ENOTSUP;
740#endif
741}
742
dc7588c1
JD
743static int rbd_aio_flush_wrapper(rbd_image_t image,
744 rbd_completion_t comp)
745{
746#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
747 return rbd_aio_flush(image, comp);
748#else
749 return -ENOTSUP;
750#endif
751}
752
7c84b1b8 753static BlockAIOCB *rbd_start_aio(BlockDriverState *bs,
7bbca9e2 754 int64_t off,
7c84b1b8 755 QEMUIOVector *qiov,
7bbca9e2 756 int64_t size,
097310b5 757 BlockCompletionFunc *cb,
7c84b1b8
MA
758 void *opaque,
759 RBDAIOCmd cmd)
f27aaf4b
CB
760{
761 RBDAIOCB *acb;
0f7a0237 762 RADOSCB *rcb = NULL;
ad32e9c0 763 rbd_completion_t c;
51a13528 764 int r;
f27aaf4b
CB
765
766 BDRVRBDState *s = bs->opaque;
767
d7331bed 768 acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque);
787f3133 769 acb->cmd = cmd;
f27aaf4b 770 acb->qiov = qiov;
7bbca9e2 771 assert(!qiov || qiov->size == size);
1d393bde 772
773 rcb = g_new(RADOSCB, 1);
774
775 if (!LIBRBD_USE_IOVEC) {
776 if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) {
777 acb->bounce = NULL;
778 } else {
779 acb->bounce = qemu_try_blockalign(bs, qiov->size);
780 if (acb->bounce == NULL) {
781 goto failed;
782 }
0f7a0237 783 }
1d393bde 784 if (cmd == RBD_AIO_WRITE) {
785 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
786 }
787 rcb->buf = acb->bounce;
787f3133 788 }
1d393bde 789
f27aaf4b
CB
790 acb->ret = 0;
791 acb->error = 0;
792 acb->s = s;
f27aaf4b 793
ad32e9c0 794 rcb->acb = acb;
ad32e9c0
JD
795 rcb->s = acb->s;
796 rcb->size = size;
51a13528
JD
797 r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c);
798 if (r < 0) {
799 goto failed;
800 }
f27aaf4b 801
787f3133
JD
802 switch (cmd) {
803 case RBD_AIO_WRITE:
1d393bde 804#ifdef LIBRBD_SUPPORTS_IOVEC
805 r = rbd_aio_writev(s->image, qiov->iov, qiov->niov, off, c);
806#else
807 r = rbd_aio_write(s->image, off, size, rcb->buf, c);
808#endif
787f3133
JD
809 break;
810 case RBD_AIO_READ:
1d393bde 811#ifdef LIBRBD_SUPPORTS_IOVEC
812 r = rbd_aio_readv(s->image, qiov->iov, qiov->niov, off, c);
813#else
814 r = rbd_aio_read(s->image, off, size, rcb->buf, c);
815#endif
787f3133
JD
816 break;
817 case RBD_AIO_DISCARD:
818 r = rbd_aio_discard_wrapper(s->image, off, size, c);
819 break;
dc7588c1
JD
820 case RBD_AIO_FLUSH:
821 r = rbd_aio_flush_wrapper(s->image, c);
822 break;
787f3133
JD
823 default:
824 r = -EINVAL;
51a13528
JD
825 }
826
827 if (r < 0) {
405a2764 828 goto failed_completion;
f27aaf4b 829 }
f27aaf4b 830 return &acb->common;
51a13528 831
405a2764
KW
832failed_completion:
833 rbd_aio_release(c);
51a13528 834failed:
7267c094 835 g_free(rcb);
1d393bde 836 if (!LIBRBD_USE_IOVEC) {
837 qemu_vfree(acb->bounce);
838 }
839
8007429a 840 qemu_aio_unref(acb);
51a13528 841 return NULL;
f27aaf4b
CB
842}
843
7c84b1b8
MA
844static BlockAIOCB *qemu_rbd_aio_readv(BlockDriverState *bs,
845 int64_t sector_num,
846 QEMUIOVector *qiov,
847 int nb_sectors,
097310b5 848 BlockCompletionFunc *cb,
7c84b1b8 849 void *opaque)
f27aaf4b 850{
7bbca9e2 851 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
e948f663 852 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
787f3133 853 RBD_AIO_READ);
f27aaf4b
CB
854}
855
7c84b1b8
MA
856static BlockAIOCB *qemu_rbd_aio_writev(BlockDriverState *bs,
857 int64_t sector_num,
858 QEMUIOVector *qiov,
859 int nb_sectors,
097310b5 860 BlockCompletionFunc *cb,
7c84b1b8 861 void *opaque)
f27aaf4b 862{
7bbca9e2 863 return rbd_start_aio(bs, sector_num << BDRV_SECTOR_BITS, qiov,
e948f663 864 (int64_t) nb_sectors << BDRV_SECTOR_BITS, cb, opaque,
787f3133 865 RBD_AIO_WRITE);
f27aaf4b
CB
866}
867
dc7588c1 868#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
7c84b1b8 869static BlockAIOCB *qemu_rbd_aio_flush(BlockDriverState *bs,
097310b5 870 BlockCompletionFunc *cb,
7c84b1b8 871 void *opaque)
dc7588c1
JD
872{
873 return rbd_start_aio(bs, 0, NULL, 0, cb, opaque, RBD_AIO_FLUSH);
874}
875
876#else
877
8b94ff85 878static int qemu_rbd_co_flush(BlockDriverState *bs)
7a3f5fe9
SW
879{
880#if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1)
881 /* rbd_flush added in 0.1.1 */
882 BDRVRBDState *s = bs->opaque;
883 return rbd_flush(s->image);
884#else
885 return 0;
886#endif
887}
dc7588c1 888#endif
7a3f5fe9 889
ad32e9c0 890static int qemu_rbd_getinfo(BlockDriverState *bs, BlockDriverInfo *bdi)
f27aaf4b
CB
891{
892 BDRVRBDState *s = bs->opaque;
ad32e9c0
JD
893 rbd_image_info_t info;
894 int r;
895
896 r = rbd_stat(s->image, &info, sizeof(info));
897 if (r < 0) {
898 return r;
899 }
900
901 bdi->cluster_size = info.obj_size;
f27aaf4b
CB
902 return 0;
903}
904
ad32e9c0 905static int64_t qemu_rbd_getlength(BlockDriverState *bs)
f27aaf4b
CB
906{
907 BDRVRBDState *s = bs->opaque;
ad32e9c0
JD
908 rbd_image_info_t info;
909 int r;
f27aaf4b 910
ad32e9c0
JD
911 r = rbd_stat(s->image, &info, sizeof(info));
912 if (r < 0) {
913 return r;
914 }
915
916 return info.size;
f27aaf4b
CB
917}
918
4bff28b8 919static int qemu_rbd_truncate(BlockDriverState *bs, int64_t offset, Error **errp)
30cdc48c
JD
920{
921 BDRVRBDState *s = bs->opaque;
922 int r;
923
924 r = rbd_resize(s->image, offset);
925 if (r < 0) {
926 return r;
927 }
928
929 return 0;
930}
931
ad32e9c0
JD
932static int qemu_rbd_snap_create(BlockDriverState *bs,
933 QEMUSnapshotInfo *sn_info)
f27aaf4b
CB
934{
935 BDRVRBDState *s = bs->opaque;
f27aaf4b 936 int r;
f27aaf4b
CB
937
938 if (sn_info->name[0] == '\0') {
939 return -EINVAL; /* we need a name for rbd snapshots */
940 }
941
942 /*
943 * rbd snapshots are using the name as the user controlled unique identifier
944 * we can't use the rbd snapid for that purpose, as it can't be set
945 */
946 if (sn_info->id_str[0] != '\0' &&
947 strcmp(sn_info->id_str, sn_info->name) != 0) {
948 return -EINVAL;
949 }
950
951 if (strlen(sn_info->name) >= sizeof(sn_info->id_str)) {
952 return -ERANGE;
953 }
954
ad32e9c0 955 r = rbd_snap_create(s->image, sn_info->name);
f27aaf4b 956 if (r < 0) {
ad32e9c0 957 error_report("failed to create snap: %s", strerror(-r));
f27aaf4b
CB
958 return r;
959 }
960
f27aaf4b
CB
961 return 0;
962}
963
bd603247 964static int qemu_rbd_snap_remove(BlockDriverState *bs,
a89d89d3
WX
965 const char *snapshot_id,
966 const char *snapshot_name,
967 Error **errp)
bd603247
GF
968{
969 BDRVRBDState *s = bs->opaque;
970 int r;
971
a89d89d3
WX
972 if (!snapshot_name) {
973 error_setg(errp, "rbd need a valid snapshot name");
974 return -EINVAL;
975 }
976
977 /* If snapshot_id is specified, it must be equal to name, see
978 qemu_rbd_snap_list() */
979 if (snapshot_id && strcmp(snapshot_id, snapshot_name)) {
980 error_setg(errp,
981 "rbd do not support snapshot id, it should be NULL or "
982 "equal to snapshot name");
983 return -EINVAL;
984 }
985
bd603247 986 r = rbd_snap_remove(s->image, snapshot_name);
a89d89d3
WX
987 if (r < 0) {
988 error_setg_errno(errp, -r, "Failed to remove the snapshot");
989 }
bd603247
GF
990 return r;
991}
992
993static int qemu_rbd_snap_rollback(BlockDriverState *bs,
994 const char *snapshot_name)
995{
996 BDRVRBDState *s = bs->opaque;
bd603247 997
9be38598 998 return rbd_snap_rollback(s->image, snapshot_name);
bd603247
GF
999}
1000
ad32e9c0
JD
1001static int qemu_rbd_snap_list(BlockDriverState *bs,
1002 QEMUSnapshotInfo **psn_tab)
f27aaf4b
CB
1003{
1004 BDRVRBDState *s = bs->opaque;
f27aaf4b 1005 QEMUSnapshotInfo *sn_info, *sn_tab = NULL;
ad32e9c0
JD
1006 int i, snap_count;
1007 rbd_snap_info_t *snaps;
1008 int max_snaps = RBD_MAX_SNAPS;
f27aaf4b 1009
ad32e9c0 1010 do {
02c4f26b 1011 snaps = g_new(rbd_snap_info_t, max_snaps);
ad32e9c0 1012 snap_count = rbd_snap_list(s->image, snaps, &max_snaps);
9e6337d0 1013 if (snap_count <= 0) {
7267c094 1014 g_free(snaps);
f27aaf4b 1015 }
ad32e9c0 1016 } while (snap_count == -ERANGE);
f27aaf4b 1017
ad32e9c0 1018 if (snap_count <= 0) {
b9c53290 1019 goto done;
f27aaf4b
CB
1020 }
1021
5839e53b 1022 sn_tab = g_new0(QEMUSnapshotInfo, snap_count);
f27aaf4b 1023
ad32e9c0
JD
1024 for (i = 0; i < snap_count; i++) {
1025 const char *snap_name = snaps[i].name;
f27aaf4b
CB
1026
1027 sn_info = sn_tab + i;
1028 pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), snap_name);
1029 pstrcpy(sn_info->name, sizeof(sn_info->name), snap_name);
f27aaf4b 1030
ad32e9c0 1031 sn_info->vm_state_size = snaps[i].size;
f27aaf4b
CB
1032 sn_info->date_sec = 0;
1033 sn_info->date_nsec = 0;
1034 sn_info->vm_clock_nsec = 0;
1035 }
ad32e9c0 1036 rbd_snap_list_end(snaps);
9e6337d0 1037 g_free(snaps);
ad32e9c0 1038
b9c53290 1039 done:
f27aaf4b 1040 *psn_tab = sn_tab;
f27aaf4b 1041 return snap_count;
f27aaf4b
CB
1042}
1043
787f3133 1044#ifdef LIBRBD_SUPPORTS_DISCARD
4da444a0
EB
1045static BlockAIOCB *qemu_rbd_aio_pdiscard(BlockDriverState *bs,
1046 int64_t offset,
1047 int count,
1048 BlockCompletionFunc *cb,
1049 void *opaque)
787f3133 1050{
4da444a0 1051 return rbd_start_aio(bs, offset, NULL, count, cb, opaque,
787f3133
JD
1052 RBD_AIO_DISCARD);
1053}
1054#endif
1055
be217884
AC
1056#ifdef LIBRBD_SUPPORTS_INVALIDATE
1057static void qemu_rbd_invalidate_cache(BlockDriverState *bs,
1058 Error **errp)
1059{
1060 BDRVRBDState *s = bs->opaque;
1061 int r = rbd_invalidate_cache(s->image);
1062 if (r < 0) {
1063 error_setg_errno(errp, -r, "Failed to invalidate the cache");
1064 }
1065}
1066#endif
1067
bd0cf596
CL
1068static QemuOptsList qemu_rbd_create_opts = {
1069 .name = "rbd-create-opts",
1070 .head = QTAILQ_HEAD_INITIALIZER(qemu_rbd_create_opts.head),
1071 .desc = {
1072 {
1073 .name = BLOCK_OPT_SIZE,
1074 .type = QEMU_OPT_SIZE,
1075 .help = "Virtual disk size"
1076 },
1077 {
1078 .name = BLOCK_OPT_CLUSTER_SIZE,
1079 .type = QEMU_OPT_SIZE,
1080 .help = "RBD object size"
1081 },
60390a21
DB
1082 {
1083 .name = "password-secret",
1084 .type = QEMU_OPT_STRING,
1085 .help = "ID of secret providing the password",
1086 },
bd0cf596
CL
1087 { /* end of list */ }
1088 }
f27aaf4b
CB
1089};
1090
1091static BlockDriver bdrv_rbd = {
c7cacb3e
JC
1092 .format_name = "rbd",
1093 .instance_size = sizeof(BDRVRBDState),
1094 .bdrv_parse_filename = qemu_rbd_parse_filename,
1095 .bdrv_file_open = qemu_rbd_open,
1096 .bdrv_close = qemu_rbd_close,
56e7cf8d 1097 .bdrv_reopen_prepare = qemu_rbd_reopen_prepare,
c7cacb3e
JC
1098 .bdrv_create = qemu_rbd_create,
1099 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1100 .bdrv_get_info = qemu_rbd_getinfo,
1101 .create_opts = &qemu_rbd_create_opts,
1102 .bdrv_getlength = qemu_rbd_getlength,
1103 .bdrv_truncate = qemu_rbd_truncate,
1104 .protocol_name = "rbd",
f27aaf4b 1105
c68b89ac
KW
1106 .bdrv_aio_readv = qemu_rbd_aio_readv,
1107 .bdrv_aio_writev = qemu_rbd_aio_writev,
dc7588c1
JD
1108
1109#ifdef LIBRBD_SUPPORTS_AIO_FLUSH
1110 .bdrv_aio_flush = qemu_rbd_aio_flush,
1111#else
c68b89ac 1112 .bdrv_co_flush_to_disk = qemu_rbd_co_flush,
dc7588c1 1113#endif
f27aaf4b 1114
787f3133 1115#ifdef LIBRBD_SUPPORTS_DISCARD
4da444a0 1116 .bdrv_aio_pdiscard = qemu_rbd_aio_pdiscard,
787f3133
JD
1117#endif
1118
c68b89ac 1119 .bdrv_snapshot_create = qemu_rbd_snap_create,
bd603247 1120 .bdrv_snapshot_delete = qemu_rbd_snap_remove,
c68b89ac 1121 .bdrv_snapshot_list = qemu_rbd_snap_list,
bd603247 1122 .bdrv_snapshot_goto = qemu_rbd_snap_rollback,
be217884
AC
1123#ifdef LIBRBD_SUPPORTS_INVALIDATE
1124 .bdrv_invalidate_cache = qemu_rbd_invalidate_cache,
1125#endif
f27aaf4b
CB
1126};
1127
1128static void bdrv_rbd_init(void)
1129{
1130 bdrv_register(&bdrv_rbd);
1131}
1132
1133block_init(bdrv_rbd_init);
This page took 0.495927 seconds and 4 git commands to generate.