Commit | Line | Data |
---|---|---|
f27aaf4b CB |
1 | /* |
2 | * QEMU Block driver for RADOS (Ceph) | |
3 | * | |
ad32e9c0 JD |
4 | * Copyright (C) 2010-2011 Christian Brunner <chb@muc.de>, |
5 | * Josh Durgin <josh.durgin@dreamhost.com> | |
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" |
0b8fa32f | 19 | #include "qemu/module.h" |
922a01a0 | 20 | #include "qemu/option.h" |
737e150e | 21 | #include "block/block_int.h" |
609f45ea | 22 | #include "block/qdict.h" |
60390a21 | 23 | #include "crypto/secret.h" |
f348b6d1 | 24 | #include "qemu/cutils.h" |
e4ec5ad4 | 25 | #include "sysemu/replay.h" |
c7cacb3e | 26 | #include "qapi/qmp/qstring.h" |
452fcdbc | 27 | #include "qapi/qmp/qdict.h" |
e98c6961 | 28 | #include "qapi/qmp/qjson.h" |
47e6b297 | 29 | #include "qapi/qmp/qlist.h" |
4bfb2741 KW |
30 | #include "qapi/qobject-input-visitor.h" |
31 | #include "qapi/qapi-visit-block-core.h" | |
f27aaf4b | 32 | |
f27aaf4b CB |
33 | /* |
34 | * When specifying the image filename use: | |
35 | * | |
fab5cf59 | 36 | * rbd:poolname/devicename[@snapshotname][:option1=value1[:option2=value2...]] |
f27aaf4b | 37 | * |
9e1fbcde | 38 | * poolname must be the name of an existing rados pool. |
f27aaf4b | 39 | * |
9e1fbcde | 40 | * devicename is the name of the rbd image. |
f27aaf4b | 41 | * |
9e1fbcde SW |
42 | * Each option given is used to configure rados, and may be any valid |
43 | * Ceph option, "id", or "conf". | |
fab5cf59 | 44 | * |
9e1fbcde SW |
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 | |
47 | * (normally 'admin'). | |
f27aaf4b | 48 | * |
9e1fbcde SW |
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. | |
f27aaf4b | 53 | * |
9e1fbcde SW |
54 | * Configuration values containing :, @, or = can be escaped with a |
55 | * leading "\". | |
f27aaf4b CB |
56 | */ |
57 | ||
787f3133 JD |
58 | /* rbd_aio_discard added in 0.1.2 */ |
59 | #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 2) | |
60 | #define LIBRBD_SUPPORTS_DISCARD | |
61 | #else | |
62 | #undef LIBRBD_SUPPORTS_DISCARD | |
63 | #endif | |
64 | ||
f27aaf4b CB |
65 | #define OBJ_MAX_SIZE (1UL << OBJ_DEFAULT_OBJ_ORDER) |
66 | ||
ad32e9c0 JD |
67 | #define RBD_MAX_SNAPS 100 |
68 | ||
1d393bde | 69 | /* The LIBRBD_SUPPORTS_IOVEC is defined in librbd.h */ |
70 | #ifdef LIBRBD_SUPPORTS_IOVEC | |
71 | #define LIBRBD_USE_IOVEC 1 | |
72 | #else | |
73 | #define LIBRBD_USE_IOVEC 0 | |
74 | #endif | |
75 | ||
787f3133 JD |
76 | typedef enum { |
77 | RBD_AIO_READ, | |
78 | RBD_AIO_WRITE, | |
dc7588c1 JD |
79 | RBD_AIO_DISCARD, |
80 | RBD_AIO_FLUSH | |
787f3133 JD |
81 | } RBDAIOCmd; |
82 | ||
f27aaf4b | 83 | typedef struct RBDAIOCB { |
7c84b1b8 | 84 | BlockAIOCB common; |
08448d51 | 85 | int64_t ret; |
f27aaf4b CB |
86 | QEMUIOVector *qiov; |
87 | char *bounce; | |
787f3133 | 88 | RBDAIOCmd cmd; |
f27aaf4b CB |
89 | int error; |
90 | struct BDRVRBDState *s; | |
f27aaf4b CB |
91 | } RBDAIOCB; |
92 | ||
93 | typedef struct RADOSCB { | |
f27aaf4b CB |
94 | RBDAIOCB *acb; |
95 | struct BDRVRBDState *s; | |
ad32e9c0 | 96 | int64_t size; |
f27aaf4b | 97 | char *buf; |
08448d51 | 98 | int64_t ret; |
f27aaf4b CB |
99 | } RADOSCB; |
100 | ||
f27aaf4b | 101 | typedef struct BDRVRBDState { |
ad32e9c0 JD |
102 | rados_t cluster; |
103 | rados_ioctx_t io_ctx; | |
104 | rbd_image_t image; | |
80b61a27 | 105 | char *image_name; |
ad32e9c0 | 106 | char *snap; |
19ae9ae0 | 107 | char *namespace; |
d24f8023 | 108 | uint64_t image_size; |
f27aaf4b CB |
109 | } BDRVRBDState; |
110 | ||
aa045c2d KW |
111 | static int qemu_rbd_connect(rados_t *cluster, rados_ioctx_t *io_ctx, |
112 | BlockdevOptionsRbd *opts, bool cache, | |
113 | const char *keypairs, const char *secretid, | |
114 | Error **errp); | |
115 | ||
730b00bb | 116 | static char *qemu_rbd_next_tok(char *src, char delim, char **p) |
f27aaf4b | 117 | { |
f27aaf4b CB |
118 | char *end; |
119 | ||
120 | *p = NULL; | |
121 | ||
8efb339d | 122 | for (end = src; *end; ++end) { |
16a06b24 | 123 | if (*end == delim) { |
8efb339d MA |
124 | break; |
125 | } | |
126 | if (*end == '\\' && end[1] != '\0') { | |
127 | end++; | |
f27aaf4b CB |
128 | } |
129 | } | |
8efb339d MA |
130 | if (*end == delim) { |
131 | *p = end + 1; | |
132 | *end = '\0'; | |
133 | } | |
7830f909 | 134 | return src; |
f27aaf4b CB |
135 | } |
136 | ||
16a06b24 SW |
137 | static void qemu_rbd_unescape(char *src) |
138 | { | |
139 | char *p; | |
140 | ||
141 | for (p = src; *src; ++src, ++p) { | |
142 | if (*src == '\\' && src[1] != '\0') { | |
143 | src++; | |
144 | } | |
145 | *p = *src; | |
146 | } | |
147 | *p = '\0'; | |
148 | } | |
149 | ||
c7cacb3e JC |
150 | static void qemu_rbd_parse_filename(const char *filename, QDict *options, |
151 | Error **errp) | |
f27aaf4b CB |
152 | { |
153 | const char *start; | |
e98c6961 EB |
154 | char *p, *buf; |
155 | QList *keypairs = NULL; | |
19ae9ae0 | 156 | char *found_str, *image_name; |
f27aaf4b CB |
157 | |
158 | if (!strstart(filename, "rbd:", &start)) { | |
d61563b2 | 159 | error_setg(errp, "File name must start with 'rbd:'"); |
c7cacb3e | 160 | return; |
f27aaf4b CB |
161 | } |
162 | ||
7267c094 | 163 | buf = g_strdup(start); |
f27aaf4b CB |
164 | p = buf; |
165 | ||
730b00bb | 166 | found_str = qemu_rbd_next_tok(p, '/', &p); |
7830f909 | 167 | if (!p) { |
7830f909 | 168 | error_setg(errp, "Pool name is required"); |
f27aaf4b CB |
169 | goto done; |
170 | } | |
7830f909 | 171 | qemu_rbd_unescape(found_str); |
46f5ac20 | 172 | qdict_put_str(options, "pool", found_str); |
fab5cf59 JD |
173 | |
174 | if (strchr(p, '@')) { | |
19ae9ae0 | 175 | image_name = qemu_rbd_next_tok(p, '@', &p); |
7830f909 | 176 | |
730b00bb | 177 | found_str = qemu_rbd_next_tok(p, ':', &p); |
7830f909 | 178 | qemu_rbd_unescape(found_str); |
46f5ac20 | 179 | qdict_put_str(options, "snapshot", found_str); |
fab5cf59 | 180 | } else { |
19ae9ae0 FF |
181 | image_name = qemu_rbd_next_tok(p, ':', &p); |
182 | } | |
183 | /* Check for namespace in the image_name */ | |
184 | if (strchr(image_name, '/')) { | |
185 | found_str = qemu_rbd_next_tok(image_name, '/', &image_name); | |
7830f909 | 186 | qemu_rbd_unescape(found_str); |
19ae9ae0 FF |
187 | qdict_put_str(options, "namespace", found_str); |
188 | } else { | |
189 | qdict_put_str(options, "namespace", ""); | |
f27aaf4b | 190 | } |
19ae9ae0 FF |
191 | qemu_rbd_unescape(image_name); |
192 | qdict_put_str(options, "image", image_name); | |
7830f909 | 193 | if (!p) { |
f27aaf4b CB |
194 | goto done; |
195 | } | |
196 | ||
c7cacb3e JC |
197 | /* The following are essentially all key/value pairs, and we treat |
198 | * 'id' and 'conf' a bit special. Key/value pairs may be in any order. */ | |
199 | while (p) { | |
200 | char *name, *value; | |
730b00bb | 201 | name = qemu_rbd_next_tok(p, '=', &p); |
c7cacb3e JC |
202 | if (!p) { |
203 | error_setg(errp, "conf option %s has no value", name); | |
204 | break; | |
7c7e9df0 | 205 | } |
c7cacb3e JC |
206 | |
207 | qemu_rbd_unescape(name); | |
208 | ||
730b00bb | 209 | value = qemu_rbd_next_tok(p, ':', &p); |
c7cacb3e JC |
210 | qemu_rbd_unescape(value); |
211 | ||
212 | if (!strcmp(name, "conf")) { | |
46f5ac20 | 213 | qdict_put_str(options, "conf", value); |
c7cacb3e | 214 | } else if (!strcmp(name, "id")) { |
46f5ac20 | 215 | qdict_put_str(options, "user", value); |
c7cacb3e | 216 | } else { |
e98c6961 EB |
217 | /* |
218 | * We pass these internally to qemu_rbd_set_keypairs(), so | |
219 | * we can get away with the simpler list of [ "key1", | |
220 | * "value1", "key2", "value2" ] rather than a raw dict | |
221 | * { "key1": "value1", "key2": "value2" } where we can't | |
222 | * guarantee order, or even a more correct but complex | |
223 | * [ { "key1": "value1" }, { "key2": "value2" } ] | |
224 | */ | |
225 | if (!keypairs) { | |
226 | keypairs = qlist_new(); | |
c7cacb3e | 227 | } |
46f5ac20 EB |
228 | qlist_append_str(keypairs, name); |
229 | qlist_append_str(keypairs, value); | |
c7cacb3e | 230 | } |
7c7e9df0 | 231 | } |
c7cacb3e | 232 | |
e98c6961 EB |
233 | if (keypairs) { |
234 | qdict_put(options, "=keyvalue-pairs", | |
235 | qobject_to_json(QOBJECT(keypairs))); | |
c7cacb3e JC |
236 | } |
237 | ||
c7cacb3e | 238 | done: |
c7cacb3e | 239 | g_free(buf); |
cb3e7f08 | 240 | qobject_unref(keypairs); |
c7cacb3e | 241 | return; |
7c7e9df0 SW |
242 | } |
243 | ||
60390a21 | 244 | |
e8e16d4b EB |
245 | static void qemu_rbd_refresh_limits(BlockDriverState *bs, Error **errp) |
246 | { | |
247 | /* XXX Does RBD support AIO on less than 512-byte alignment? */ | |
248 | bs->bl.request_alignment = 512; | |
249 | } | |
250 | ||
251 | ||
d083f954 | 252 | static int qemu_rbd_set_auth(rados_t cluster, BlockdevOptionsRbd *opts, |
60390a21 DB |
253 | Error **errp) |
254 | { | |
d083f954 | 255 | char *key, *acr; |
a3699de4 MA |
256 | int r; |
257 | GString *accu; | |
258 | RbdAuthModeList *auth; | |
259 | ||
d083f954 MA |
260 | if (opts->key_secret) { |
261 | key = qcrypto_secret_lookup_as_base64(opts->key_secret, errp); | |
262 | if (!key) { | |
263 | return -EIO; | |
264 | } | |
265 | r = rados_conf_set(cluster, "key", key); | |
266 | g_free(key); | |
267 | if (r < 0) { | |
268 | error_setg_errno(errp, -r, "Could not set 'key'"); | |
269 | return r; | |
a3699de4 | 270 | } |
60390a21 DB |
271 | } |
272 | ||
a3699de4 MA |
273 | if (opts->has_auth_client_required) { |
274 | accu = g_string_new(""); | |
275 | for (auth = opts->auth_client_required; auth; auth = auth->next) { | |
276 | if (accu->str[0]) { | |
277 | g_string_append_c(accu, ';'); | |
278 | } | |
279 | g_string_append(accu, RbdAuthMode_str(auth->value)); | |
280 | } | |
281 | acr = g_string_free(accu, FALSE); | |
282 | r = rados_conf_set(cluster, "auth_client_required", acr); | |
283 | g_free(acr); | |
284 | if (r < 0) { | |
285 | error_setg_errno(errp, -r, | |
286 | "Could not set 'auth_client_required'"); | |
287 | return r; | |
288 | } | |
289 | } | |
60390a21 DB |
290 | |
291 | return 0; | |
292 | } | |
293 | ||
e98c6961 | 294 | static int qemu_rbd_set_keypairs(rados_t cluster, const char *keypairs_json, |
c7cacb3e | 295 | Error **errp) |
fab5cf59 | 296 | { |
e98c6961 EB |
297 | QList *keypairs; |
298 | QString *name; | |
299 | QString *value; | |
300 | const char *key; | |
301 | size_t remaining; | |
fab5cf59 JD |
302 | int ret = 0; |
303 | ||
e98c6961 EB |
304 | if (!keypairs_json) { |
305 | return ret; | |
306 | } | |
7dc847eb HR |
307 | keypairs = qobject_to(QList, |
308 | qobject_from_json(keypairs_json, &error_abort)); | |
e98c6961 EB |
309 | remaining = qlist_size(keypairs) / 2; |
310 | assert(remaining); | |
311 | ||
312 | while (remaining--) { | |
7dc847eb HR |
313 | name = qobject_to(QString, qlist_pop(keypairs)); |
314 | value = qobject_to(QString, qlist_pop(keypairs)); | |
e98c6961 EB |
315 | assert(name && value); |
316 | key = qstring_get_str(name); | |
317 | ||
318 | ret = rados_conf_set(cluster, key, qstring_get_str(value)); | |
cb3e7f08 | 319 | qobject_unref(value); |
c7cacb3e | 320 | if (ret < 0) { |
e98c6961 | 321 | error_setg_errno(errp, -ret, "invalid conf option %s", key); |
cb3e7f08 | 322 | qobject_unref(name); |
c7cacb3e JC |
323 | ret = -EINVAL; |
324 | break; | |
fab5cf59 | 325 | } |
cb3e7f08 | 326 | qobject_unref(name); |
fab5cf59 JD |
327 | } |
328 | ||
cb3e7f08 | 329 | qobject_unref(keypairs); |
fab5cf59 JD |
330 | return ret; |
331 | } | |
332 | ||
1d393bde | 333 | static void qemu_rbd_memset(RADOSCB *rcb, int64_t offs) |
334 | { | |
335 | if (LIBRBD_USE_IOVEC) { | |
336 | RBDAIOCB *acb = rcb->acb; | |
337 | iov_memset(acb->qiov->iov, acb->qiov->niov, offs, 0, | |
338 | acb->qiov->size - offs); | |
339 | } else { | |
340 | memset(rcb->buf + offs, 0, rcb->size - offs); | |
341 | } | |
342 | } | |
343 | ||
0f9d252d JC |
344 | static QemuOptsList runtime_opts = { |
345 | .name = "rbd", | |
346 | .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head), | |
347 | .desc = { | |
348 | { | |
cbf036b4 | 349 | .name = "pool", |
0f9d252d | 350 | .type = QEMU_OPT_STRING, |
cbf036b4 | 351 | .help = "Rados pool name", |
0f9d252d | 352 | }, |
19ae9ae0 FF |
353 | { |
354 | .name = "namespace", | |
355 | .type = QEMU_OPT_STRING, | |
356 | .help = "Rados namespace name in the pool", | |
357 | }, | |
0f9d252d | 358 | { |
cbf036b4 | 359 | .name = "image", |
0f9d252d | 360 | .type = QEMU_OPT_STRING, |
cbf036b4 | 361 | .help = "Image name in the pool", |
0f9d252d JC |
362 | }, |
363 | { | |
364 | .name = "conf", | |
365 | .type = QEMU_OPT_STRING, | |
366 | .help = "Rados config file location", | |
367 | }, | |
0f9d252d JC |
368 | { |
369 | .name = "snapshot", | |
370 | .type = QEMU_OPT_STRING, | |
371 | .help = "Ceph snapshot name", | |
372 | }, | |
373 | { | |
374 | /* maps to 'id' in rados_create() */ | |
375 | .name = "user", | |
376 | .type = QEMU_OPT_STRING, | |
377 | .help = "Rados id name", | |
378 | }, | |
cbf036b4 | 379 | /* |
2836284d | 380 | * server.* extracted manually, see qemu_rbd_mon_host() |
cbf036b4 | 381 | */ |
0f9d252d JC |
382 | { /* end of list */ } |
383 | }, | |
384 | }; | |
385 | ||
d083f954 | 386 | /* FIXME Deprecate and remove keypairs or make it available in QMP. */ |
1bebea37 KW |
387 | static int qemu_rbd_do_create(BlockdevCreateOptions *options, |
388 | const char *keypairs, const char *password_secret, | |
389 | Error **errp) | |
f27aaf4b | 390 | { |
1bebea37 | 391 | BlockdevCreateOptionsRbd *opts = &options->u.rbd; |
ad32e9c0 JD |
392 | rados_t cluster; |
393 | rados_ioctx_t io_ctx; | |
1bebea37 KW |
394 | int obj_order = 0; |
395 | int ret; | |
396 | ||
397 | assert(options->driver == BLOCKDEV_DRIVER_RBD); | |
398 | if (opts->location->has_snapshot) { | |
399 | error_setg(errp, "Can't use snapshot name for image creation"); | |
400 | return -EINVAL; | |
401 | } | |
f27aaf4b | 402 | |
1bebea37 KW |
403 | if (opts->has_cluster_size) { |
404 | int64_t objsize = opts->cluster_size; | |
bd0cf596 CL |
405 | if ((objsize - 1) & objsize) { /* not a power of 2? */ |
406 | error_setg(errp, "obj size needs to be power of 2"); | |
1bebea37 | 407 | return -EINVAL; |
bd0cf596 CL |
408 | } |
409 | if (objsize < 4096) { | |
410 | error_setg(errp, "obj size too small"); | |
1bebea37 | 411 | return -EINVAL; |
f27aaf4b | 412 | } |
786a4ea8 | 413 | obj_order = ctz32(objsize); |
f27aaf4b CB |
414 | } |
415 | ||
aa045c2d KW |
416 | ret = qemu_rbd_connect(&cluster, &io_ctx, opts->location, false, keypairs, |
417 | password_secret, errp); | |
87cd3d20 | 418 | if (ret < 0) { |
1bebea37 | 419 | return ret; |
f27aaf4b CB |
420 | } |
421 | ||
1bebea37 | 422 | ret = rbd_create(io_ctx, opts->location->image, opts->size, &obj_order); |
87cd3d20 VU |
423 | if (ret < 0) { |
424 | error_setg_errno(errp, -ret, "error rbd create"); | |
aa045c2d | 425 | goto out; |
87cd3d20 | 426 | } |
f27aaf4b | 427 | |
1bebea37 | 428 | ret = 0; |
aa045c2d KW |
429 | out: |
430 | rados_ioctx_destroy(io_ctx); | |
e38f643a | 431 | rados_shutdown(cluster); |
1bebea37 KW |
432 | return ret; |
433 | } | |
434 | ||
435 | static int qemu_rbd_co_create(BlockdevCreateOptions *options, Error **errp) | |
436 | { | |
437 | return qemu_rbd_do_create(options, NULL, NULL, errp); | |
438 | } | |
439 | ||
b92902df ML |
440 | static int coroutine_fn qemu_rbd_co_create_opts(BlockDriver *drv, |
441 | const char *filename, | |
1bebea37 KW |
442 | QemuOpts *opts, |
443 | Error **errp) | |
444 | { | |
445 | BlockdevCreateOptions *create_options; | |
446 | BlockdevCreateOptionsRbd *rbd_opts; | |
447 | BlockdevOptionsRbd *loc; | |
448 | Error *local_err = NULL; | |
449 | const char *keypairs, *password_secret; | |
450 | QDict *options = NULL; | |
451 | int ret = 0; | |
452 | ||
453 | create_options = g_new0(BlockdevCreateOptions, 1); | |
454 | create_options->driver = BLOCKDEV_DRIVER_RBD; | |
455 | rbd_opts = &create_options->u.rbd; | |
456 | ||
457 | rbd_opts->location = g_new0(BlockdevOptionsRbd, 1); | |
458 | ||
459 | password_secret = qemu_opt_get(opts, "password-secret"); | |
460 | ||
461 | /* Read out options */ | |
462 | rbd_opts->size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0), | |
463 | BDRV_SECTOR_SIZE); | |
464 | rbd_opts->cluster_size = qemu_opt_get_size_del(opts, | |
465 | BLOCK_OPT_CLUSTER_SIZE, 0); | |
466 | rbd_opts->has_cluster_size = (rbd_opts->cluster_size != 0); | |
467 | ||
468 | options = qdict_new(); | |
469 | qemu_rbd_parse_filename(filename, options, &local_err); | |
470 | if (local_err) { | |
471 | ret = -EINVAL; | |
472 | error_propagate(errp, local_err); | |
473 | goto exit; | |
474 | } | |
475 | ||
476 | /* | |
477 | * Caution: while qdict_get_try_str() is fine, getting non-string | |
478 | * types would require more care. When @options come from -blockdev | |
479 | * or blockdev_add, its members are typed according to the QAPI | |
480 | * schema, but when they come from -drive, they're all QString. | |
481 | */ | |
482 | loc = rbd_opts->location; | |
19ae9ae0 FF |
483 | loc->pool = g_strdup(qdict_get_try_str(options, "pool")); |
484 | loc->conf = g_strdup(qdict_get_try_str(options, "conf")); | |
485 | loc->has_conf = !!loc->conf; | |
486 | loc->user = g_strdup(qdict_get_try_str(options, "user")); | |
487 | loc->has_user = !!loc->user; | |
488 | loc->q_namespace = g_strdup(qdict_get_try_str(options, "namespace")); | |
489 | loc->image = g_strdup(qdict_get_try_str(options, "image")); | |
490 | keypairs = qdict_get_try_str(options, "=keyvalue-pairs"); | |
1bebea37 KW |
491 | |
492 | ret = qemu_rbd_do_create(create_options, keypairs, password_secret, errp); | |
493 | if (ret < 0) { | |
494 | goto exit; | |
495 | } | |
c7cacb3e JC |
496 | |
497 | exit: | |
cb3e7f08 | 498 | qobject_unref(options); |
1bebea37 | 499 | qapi_free_BlockdevCreateOptions(create_options); |
f27aaf4b CB |
500 | return ret; |
501 | } | |
502 | ||
503 | /* | |
e04fb07f SH |
504 | * This aio completion is being called from rbd_finish_bh() and runs in qemu |
505 | * BH context. | |
f27aaf4b | 506 | */ |
ad32e9c0 | 507 | static void qemu_rbd_complete_aio(RADOSCB *rcb) |
f27aaf4b CB |
508 | { |
509 | RBDAIOCB *acb = rcb->acb; | |
510 | int64_t r; | |
511 | ||
f27aaf4b CB |
512 | r = rcb->ret; |
513 | ||
dc7588c1 | 514 | if (acb->cmd != RBD_AIO_READ) { |
f27aaf4b CB |
515 | if (r < 0) { |
516 | acb->ret = r; | |
517 | acb->error = 1; | |
518 | } else if (!acb->error) { | |
ad32e9c0 | 519 | acb->ret = rcb->size; |
f27aaf4b CB |
520 | } |
521 | } else { | |
ad32e9c0 | 522 | if (r < 0) { |
1d393bde | 523 | qemu_rbd_memset(rcb, 0); |
f27aaf4b CB |
524 | acb->ret = r; |
525 | acb->error = 1; | |
ad32e9c0 | 526 | } else if (r < rcb->size) { |
1d393bde | 527 | qemu_rbd_memset(rcb, r); |
f27aaf4b | 528 | if (!acb->error) { |
ad32e9c0 | 529 | acb->ret = rcb->size; |
f27aaf4b CB |
530 | } |
531 | } else if (!acb->error) { | |
ad32e9c0 | 532 | acb->ret = r; |
f27aaf4b CB |
533 | } |
534 | } | |
f27aaf4b | 535 | |
e04fb07f | 536 | g_free(rcb); |
f27aaf4b | 537 | |
1d393bde | 538 | if (!LIBRBD_USE_IOVEC) { |
539 | if (acb->cmd == RBD_AIO_READ) { | |
540 | qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size); | |
541 | } | |
542 | qemu_vfree(acb->bounce); | |
e04fb07f | 543 | } |
1d393bde | 544 | |
e04fb07f | 545 | acb->common.cb(acb->common.opaque, (acb->ret > 0 ? 0 : acb->ret)); |
f27aaf4b | 546 | |
8007429a | 547 | qemu_aio_unref(acb); |
f27aaf4b CB |
548 | } |
549 | ||
4bfb2741 | 550 | static char *qemu_rbd_mon_host(BlockdevOptionsRbd *opts, Error **errp) |
0a55679b | 551 | { |
4bfb2741 | 552 | const char **vals; |
2836284d MA |
553 | const char *host, *port; |
554 | char *rados_str; | |
4bfb2741 KW |
555 | InetSocketAddressBaseList *p; |
556 | int i, cnt; | |
557 | ||
558 | if (!opts->has_server) { | |
559 | return NULL; | |
560 | } | |
561 | ||
562 | for (cnt = 0, p = opts->server; p; p = p->next) { | |
563 | cnt++; | |
564 | } | |
565 | ||
566 | vals = g_new(const char *, cnt + 1); | |
567 | ||
568 | for (i = 0, p = opts->server; p; p = p->next, i++) { | |
569 | host = p->value->host; | |
570 | port = p->value->port; | |
0a55679b | 571 | |
2836284d | 572 | if (strchr(host, ':')) { |
4bfb2741 | 573 | vals[i] = g_strdup_printf("[%s]:%s", host, port); |
0a55679b | 574 | } else { |
4bfb2741 | 575 | vals[i] = g_strdup_printf("%s:%s", host, port); |
0a55679b | 576 | } |
0a55679b | 577 | } |
2836284d | 578 | vals[i] = NULL; |
0a55679b | 579 | |
2836284d | 580 | rados_str = i ? g_strjoinv(";", (char **)vals) : NULL; |
2836284d | 581 | g_strfreev((char **)vals); |
0a55679b JC |
582 | return rados_str; |
583 | } | |
584 | ||
3d9136f9 | 585 | static int qemu_rbd_connect(rados_t *cluster, rados_ioctx_t *io_ctx, |
4bfb2741 | 586 | BlockdevOptionsRbd *opts, bool cache, |
4ff45049 KW |
587 | const char *keypairs, const char *secretid, |
588 | Error **errp) | |
f27aaf4b | 589 | { |
0a55679b | 590 | char *mon_host = NULL; |
3d9136f9 | 591 | Error *local_err = NULL; |
f27aaf4b CB |
592 | int r; |
593 | ||
d083f954 MA |
594 | if (secretid) { |
595 | if (opts->key_secret) { | |
596 | error_setg(errp, | |
597 | "Legacy 'password-secret' clashes with 'key-secret'"); | |
598 | return -EINVAL; | |
599 | } | |
600 | opts->key_secret = g_strdup(secretid); | |
601 | opts->has_key_secret = true; | |
602 | } | |
603 | ||
4bfb2741 | 604 | mon_host = qemu_rbd_mon_host(opts, &local_err); |
0a55679b JC |
605 | if (local_err) { |
606 | error_propagate(errp, local_err); | |
607 | r = -EINVAL; | |
608 | goto failed_opts; | |
609 | } | |
610 | ||
4bfb2741 | 611 | r = rados_create(cluster, opts->user); |
ad32e9c0 | 612 | if (r < 0) { |
87cd3d20 | 613 | error_setg_errno(errp, -r, "error initializing"); |
c3ca988d | 614 | goto failed_opts; |
f27aaf4b CB |
615 | } |
616 | ||
c7cacb3e | 617 | /* try default location when conf=NULL, but ignore failure */ |
4bfb2741 KW |
618 | r = rados_conf_read_file(*cluster, opts->conf); |
619 | if (opts->has_conf && r < 0) { | |
620 | error_setg_errno(errp, -r, "error reading conf file %s", opts->conf); | |
c7cacb3e | 621 | goto failed_shutdown; |
99a3c89d JD |
622 | } |
623 | ||
3d9136f9 | 624 | r = qemu_rbd_set_keypairs(*cluster, keypairs, errp); |
c7cacb3e JC |
625 | if (r < 0) { |
626 | goto failed_shutdown; | |
99a3c89d JD |
627 | } |
628 | ||
0a55679b | 629 | if (mon_host) { |
3d9136f9 | 630 | r = rados_conf_set(*cluster, "mon_host", mon_host); |
0a55679b JC |
631 | if (r < 0) { |
632 | goto failed_shutdown; | |
633 | } | |
634 | } | |
635 | ||
d083f954 MA |
636 | r = qemu_rbd_set_auth(*cluster, opts, errp); |
637 | if (r < 0) { | |
60390a21 DB |
638 | goto failed_shutdown; |
639 | } | |
640 | ||
b11f38fc JD |
641 | /* |
642 | * Fallback to more conservative semantics if setting cache | |
643 | * options fails. Ignore errors from setting rbd_cache because the | |
644 | * only possible error is that the option does not exist, and | |
645 | * librbd defaults to no caching. If write through caching cannot | |
646 | * be set up, fall back to no caching. | |
647 | */ | |
3d9136f9 KW |
648 | if (cache) { |
649 | rados_conf_set(*cluster, "rbd_cache", "true"); | |
b11f38fc | 650 | } else { |
3d9136f9 | 651 | rados_conf_set(*cluster, "rbd_cache", "false"); |
b11f38fc JD |
652 | } |
653 | ||
3d9136f9 | 654 | r = rados_connect(*cluster); |
ad32e9c0 | 655 | if (r < 0) { |
87cd3d20 | 656 | error_setg_errno(errp, -r, "error connecting"); |
eb93d5d9 | 657 | goto failed_shutdown; |
f27aaf4b CB |
658 | } |
659 | ||
4bfb2741 | 660 | r = rados_ioctx_create(*cluster, opts->pool, io_ctx); |
ad32e9c0 | 661 | if (r < 0) { |
4bfb2741 | 662 | error_setg_errno(errp, -r, "error opening pool %s", opts->pool); |
eb93d5d9 | 663 | goto failed_shutdown; |
f27aaf4b | 664 | } |
19ae9ae0 FF |
665 | /* |
666 | * Set the namespace after opening the io context on the pool, | |
667 | * if nspace == NULL or if nspace == "", it is just as we did nothing | |
668 | */ | |
669 | rados_ioctx_set_namespace(*io_ctx, opts->q_namespace); | |
f27aaf4b | 670 | |
3d9136f9 KW |
671 | return 0; |
672 | ||
673 | failed_shutdown: | |
674 | rados_shutdown(*cluster); | |
3d9136f9 | 675 | failed_opts: |
3d9136f9 KW |
676 | g_free(mon_host); |
677 | return r; | |
678 | } | |
679 | ||
f24b03b5 JC |
680 | static int qemu_rbd_convert_options(QDict *options, BlockdevOptionsRbd **opts, |
681 | Error **errp) | |
682 | { | |
683 | Visitor *v; | |
f24b03b5 JC |
684 | |
685 | /* Convert the remaining options into a QAPI object */ | |
686 | v = qobject_input_visitor_new_flat_confused(options, errp); | |
687 | if (!v) { | |
688 | return -EINVAL; | |
689 | } | |
690 | ||
b11a093c | 691 | visit_type_BlockdevOptionsRbd(v, NULL, opts, errp); |
f24b03b5 | 692 | visit_free(v); |
b11a093c | 693 | if (!opts) { |
f24b03b5 JC |
694 | return -EINVAL; |
695 | } | |
696 | ||
697 | return 0; | |
698 | } | |
699 | ||
084d1d13 JC |
700 | static int qemu_rbd_attempt_legacy_options(QDict *options, |
701 | BlockdevOptionsRbd **opts, | |
702 | char **keypairs) | |
703 | { | |
704 | char *filename; | |
705 | int r; | |
706 | ||
707 | filename = g_strdup(qdict_get_try_str(options, "filename")); | |
708 | if (!filename) { | |
709 | return -EINVAL; | |
710 | } | |
711 | qdict_del(options, "filename"); | |
712 | ||
713 | qemu_rbd_parse_filename(filename, options, NULL); | |
714 | ||
715 | /* keypairs freed by caller */ | |
716 | *keypairs = g_strdup(qdict_get_try_str(options, "=keyvalue-pairs")); | |
717 | if (*keypairs) { | |
718 | qdict_del(options, "=keyvalue-pairs"); | |
719 | } | |
720 | ||
721 | r = qemu_rbd_convert_options(options, opts, NULL); | |
722 | ||
723 | g_free(filename); | |
724 | return r; | |
725 | } | |
726 | ||
3d9136f9 KW |
727 | static int qemu_rbd_open(BlockDriverState *bs, QDict *options, int flags, |
728 | Error **errp) | |
729 | { | |
730 | BDRVRBDState *s = bs->opaque; | |
4bfb2741 | 731 | BlockdevOptionsRbd *opts = NULL; |
bfb15b4b | 732 | const QDictEntry *e; |
3d9136f9 | 733 | Error *local_err = NULL; |
4ff45049 | 734 | char *keypairs, *secretid; |
3d9136f9 KW |
735 | int r; |
736 | ||
4ff45049 KW |
737 | keypairs = g_strdup(qdict_get_try_str(options, "=keyvalue-pairs")); |
738 | if (keypairs) { | |
739 | qdict_del(options, "=keyvalue-pairs"); | |
740 | } | |
741 | ||
742 | secretid = g_strdup(qdict_get_try_str(options, "password-secret")); | |
743 | if (secretid) { | |
744 | qdict_del(options, "password-secret"); | |
745 | } | |
746 | ||
f24b03b5 | 747 | r = qemu_rbd_convert_options(options, &opts, &local_err); |
4bfb2741 | 748 | if (local_err) { |
084d1d13 JC |
749 | /* If keypairs are present, that means some options are present in |
750 | * the modern option format. Don't attempt to parse legacy option | |
751 | * formats, as we won't support mixed usage. */ | |
752 | if (keypairs) { | |
753 | error_propagate(errp, local_err); | |
754 | goto out; | |
755 | } | |
756 | ||
757 | /* If the initial attempt to convert and process the options failed, | |
758 | * we may be attempting to open an image file that has the rbd options | |
759 | * specified in the older format consisting of all key/value pairs | |
760 | * encoded in the filename. Go ahead and attempt to parse the | |
761 | * filename, and see if we can pull out the required options. */ | |
762 | r = qemu_rbd_attempt_legacy_options(options, &opts, &keypairs); | |
763 | if (r < 0) { | |
764 | /* Propagate the original error, not the legacy parsing fallback | |
765 | * error, as the latter was just a best-effort attempt. */ | |
766 | error_propagate(errp, local_err); | |
767 | goto out; | |
768 | } | |
769 | /* Take care whenever deciding to actually deprecate; once this ability | |
770 | * is removed, we will not be able to open any images with legacy-styled | |
771 | * backing image strings. */ | |
5197f445 MA |
772 | warn_report("RBD options encoded in the filename as keyvalue pairs " |
773 | "is deprecated"); | |
4bfb2741 KW |
774 | } |
775 | ||
bfb15b4b JC |
776 | /* Remove the processed options from the QDict (the visitor processes |
777 | * _all_ options in the QDict) */ | |
778 | while ((e = qdict_first(options))) { | |
779 | qdict_del(options, e->key); | |
780 | } | |
781 | ||
d41a5588 KW |
782 | r = qemu_rbd_connect(&s->cluster, &s->io_ctx, opts, |
783 | !(flags & BDRV_O_NOCACHE), keypairs, secretid, errp); | |
3d9136f9 | 784 | if (r < 0) { |
4ff45049 | 785 | goto out; |
3d9136f9 KW |
786 | } |
787 | ||
d41a5588 KW |
788 | s->snap = g_strdup(opts->snapshot); |
789 | s->image_name = g_strdup(opts->image); | |
790 | ||
e2b8247a | 791 | /* rbd_open is always r/w */ |
80b61a27 | 792 | r = rbd_open(s->io_ctx, s->image_name, &s->image, s->snap); |
f27aaf4b | 793 | if (r < 0) { |
80b61a27 JC |
794 | error_setg_errno(errp, -r, "error reading header from %s", |
795 | s->image_name); | |
eb93d5d9 | 796 | goto failed_open; |
f27aaf4b CB |
797 | } |
798 | ||
d24f8023 SG |
799 | r = rbd_get_size(s->image, &s->image_size); |
800 | if (r < 0) { | |
801 | error_setg_errno(errp, -r, "error getting image size from %s", | |
802 | s->image_name); | |
803 | rbd_close(s->image); | |
804 | goto failed_open; | |
805 | } | |
806 | ||
e2b8247a JC |
807 | /* If we are using an rbd snapshot, we must be r/o, otherwise |
808 | * leave as-is */ | |
809 | if (s->snap != NULL) { | |
eaa2410f KW |
810 | r = bdrv_apply_auto_read_only(bs, "rbd snapshots are read-only", errp); |
811 | if (r < 0) { | |
812 | rbd_close(s->image); | |
813 | goto failed_open; | |
e2b8247a JC |
814 | } |
815 | } | |
f27aaf4b | 816 | |
2f98910d EB |
817 | /* When extending regular files, we get zeros from the OS */ |
818 | bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE; | |
819 | ||
4ff45049 KW |
820 | r = 0; |
821 | goto out; | |
f27aaf4b | 822 | |
eb93d5d9 | 823 | failed_open: |
ad32e9c0 | 824 | rados_ioctx_destroy(s->io_ctx); |
eb93d5d9 | 825 | g_free(s->snap); |
80b61a27 | 826 | g_free(s->image_name); |
3d9136f9 | 827 | rados_shutdown(s->cluster); |
4ff45049 | 828 | out: |
4bfb2741 | 829 | qapi_free_BlockdevOptionsRbd(opts); |
4ff45049 KW |
830 | g_free(keypairs); |
831 | g_free(secretid); | |
f27aaf4b CB |
832 | return r; |
833 | } | |
834 | ||
56e7cf8d JC |
835 | |
836 | /* Since RBD is currently always opened R/W via the API, | |
837 | * we just need to check if we are using a snapshot or not, in | |
838 | * order to determine if we will allow it to be R/W */ | |
839 | static int qemu_rbd_reopen_prepare(BDRVReopenState *state, | |
840 | BlockReopenQueue *queue, Error **errp) | |
841 | { | |
842 | BDRVRBDState *s = state->bs->opaque; | |
843 | int ret = 0; | |
844 | ||
845 | if (s->snap && state->flags & BDRV_O_RDWR) { | |
846 | error_setg(errp, | |
847 | "Cannot change node '%s' to r/w when using RBD snapshot", | |
848 | bdrv_get_device_or_node_name(state->bs)); | |
849 | ret = -EINVAL; | |
850 | } | |
851 | ||
852 | return ret; | |
853 | } | |
854 | ||
ad32e9c0 | 855 | static void qemu_rbd_close(BlockDriverState *bs) |
f27aaf4b CB |
856 | { |
857 | BDRVRBDState *s = bs->opaque; | |
858 | ||
ad32e9c0 JD |
859 | rbd_close(s->image); |
860 | rados_ioctx_destroy(s->io_ctx); | |
7267c094 | 861 | g_free(s->snap); |
80b61a27 | 862 | g_free(s->image_name); |
ad32e9c0 | 863 | rados_shutdown(s->cluster); |
f27aaf4b CB |
864 | } |
865 | ||
d24f8023 SG |
866 | /* Resize the RBD image and update the 'image_size' with the current size */ |
867 | static int qemu_rbd_resize(BlockDriverState *bs, uint64_t size) | |
868 | { | |
869 | BDRVRBDState *s = bs->opaque; | |
870 | int r; | |
871 | ||
872 | r = rbd_resize(s->image, size); | |
873 | if (r < 0) { | |
874 | return r; | |
875 | } | |
876 | ||
877 | s->image_size = size; | |
878 | ||
879 | return 0; | |
880 | } | |
881 | ||
d7331bed | 882 | static const AIOCBInfo rbd_aiocb_info = { |
f27aaf4b | 883 | .aiocb_size = sizeof(RBDAIOCB), |
f27aaf4b CB |
884 | }; |
885 | ||
e04fb07f | 886 | static void rbd_finish_bh(void *opaque) |
f27aaf4b | 887 | { |
e04fb07f | 888 | RADOSCB *rcb = opaque; |
e04fb07f | 889 | qemu_rbd_complete_aio(rcb); |
ad32e9c0 JD |
890 | } |
891 | ||
892 | /* | |
893 | * This is the callback function for rbd_aio_read and _write | |
894 | * | |
895 | * Note: this function is being called from a non qemu thread so | |
896 | * we need to be careful about what we do here. Generally we only | |
e04fb07f SH |
897 | * schedule a BH, and do the rest of the io completion handling |
898 | * from rbd_finish_bh() which runs in a qemu context. | |
ad32e9c0 JD |
899 | */ |
900 | static void rbd_finish_aiocb(rbd_completion_t c, RADOSCB *rcb) | |
901 | { | |
e04fb07f SH |
902 | RBDAIOCB *acb = rcb->acb; |
903 | ||
ad32e9c0 JD |
904 | rcb->ret = rbd_aio_get_return_value(c); |
905 | rbd_aio_release(c); | |
f27aaf4b | 906 | |
e4ec5ad4 PD |
907 | replay_bh_schedule_oneshot_event(bdrv_get_aio_context(acb->common.bs), |
908 | rbd_finish_bh, rcb); | |
f27aaf4b CB |
909 | } |
910 | ||
787f3133 JD |
911 | static int rbd_aio_discard_wrapper(rbd_image_t image, |
912 | uint64_t off, | |
913 | uint64_t len, | |
914 | rbd_completion_t comp) | |
915 | { | |
916 | #ifdef LIBRBD_SUPPORTS_DISCARD | |
917 | return rbd_aio_discard(image, off, len, comp); | |
918 | #else | |
919 | return -ENOTSUP; | |
920 | #endif | |
921 | } | |
922 | ||
dc7588c1 JD |
923 | static int rbd_aio_flush_wrapper(rbd_image_t image, |
924 | rbd_completion_t comp) | |
925 | { | |
926 | #ifdef LIBRBD_SUPPORTS_AIO_FLUSH | |
927 | return rbd_aio_flush(image, comp); | |
928 | #else | |
929 | return -ENOTSUP; | |
930 | #endif | |
931 | } | |
932 | ||
7c84b1b8 | 933 | static BlockAIOCB *rbd_start_aio(BlockDriverState *bs, |
7bbca9e2 | 934 | int64_t off, |
7c84b1b8 | 935 | QEMUIOVector *qiov, |
7bbca9e2 | 936 | int64_t size, |
097310b5 | 937 | BlockCompletionFunc *cb, |
7c84b1b8 MA |
938 | void *opaque, |
939 | RBDAIOCmd cmd) | |
f27aaf4b CB |
940 | { |
941 | RBDAIOCB *acb; | |
0f7a0237 | 942 | RADOSCB *rcb = NULL; |
ad32e9c0 | 943 | rbd_completion_t c; |
51a13528 | 944 | int r; |
f27aaf4b CB |
945 | |
946 | BDRVRBDState *s = bs->opaque; | |
947 | ||
d7331bed | 948 | acb = qemu_aio_get(&rbd_aiocb_info, bs, cb, opaque); |
787f3133 | 949 | acb->cmd = cmd; |
f27aaf4b | 950 | acb->qiov = qiov; |
7bbca9e2 | 951 | assert(!qiov || qiov->size == size); |
1d393bde | 952 | |
953 | rcb = g_new(RADOSCB, 1); | |
954 | ||
955 | if (!LIBRBD_USE_IOVEC) { | |
956 | if (cmd == RBD_AIO_DISCARD || cmd == RBD_AIO_FLUSH) { | |
957 | acb->bounce = NULL; | |
958 | } else { | |
959 | acb->bounce = qemu_try_blockalign(bs, qiov->size); | |
960 | if (acb->bounce == NULL) { | |
961 | goto failed; | |
962 | } | |
0f7a0237 | 963 | } |
1d393bde | 964 | if (cmd == RBD_AIO_WRITE) { |
965 | qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size); | |
966 | } | |
967 | rcb->buf = acb->bounce; | |
787f3133 | 968 | } |
1d393bde | 969 | |
f27aaf4b CB |
970 | acb->ret = 0; |
971 | acb->error = 0; | |
972 | acb->s = s; | |
f27aaf4b | 973 | |
ad32e9c0 | 974 | rcb->acb = acb; |
ad32e9c0 JD |
975 | rcb->s = acb->s; |
976 | rcb->size = size; | |
51a13528 JD |
977 | r = rbd_aio_create_completion(rcb, (rbd_callback_t) rbd_finish_aiocb, &c); |
978 | if (r < 0) { | |
979 | goto failed; | |
980 | } | |
f27aaf4b | 981 | |
787f3133 | 982 | switch (cmd) { |
d24f8023 SG |
983 | case RBD_AIO_WRITE: { |
984 | /* | |
985 | * RBD APIs don't allow us to write more than actual size, so in order | |
986 | * to support growing images, we resize the image before write | |
987 | * operations that exceed the current size. | |
988 | */ | |
989 | if (off + size > s->image_size) { | |
990 | r = qemu_rbd_resize(bs, off + size); | |
991 | if (r < 0) { | |
992 | goto failed_completion; | |
993 | } | |
994 | } | |
1d393bde | 995 | #ifdef LIBRBD_SUPPORTS_IOVEC |
996 | r = rbd_aio_writev(s->image, qiov->iov, qiov->niov, off, c); | |
997 | #else | |
998 | r = rbd_aio_write(s->image, off, size, rcb->buf, c); | |
999 | #endif | |
787f3133 | 1000 | break; |
d24f8023 | 1001 | } |
787f3133 | 1002 | case RBD_AIO_READ: |
1d393bde | 1003 | #ifdef LIBRBD_SUPPORTS_IOVEC |
1004 | r = rbd_aio_readv(s->image, qiov->iov, qiov->niov, off, c); | |
1005 | #else | |
1006 | r = rbd_aio_read(s->image, off, size, rcb->buf, c); | |
1007 | #endif | |
787f3133 JD |
1008 | break; |
1009 | case RBD_AIO_DISCARD: | |
1010 | r = rbd_aio_discard_wrapper(s->image, off, size, c); | |
1011 | break; | |
dc7588c1 JD |
1012 | case RBD_AIO_FLUSH: |
1013 | r = rbd_aio_flush_wrapper(s->image, c); | |
1014 | break; | |
787f3133 JD |
1015 | default: |
1016 | r = -EINVAL; | |
51a13528 JD |
1017 | } |
1018 | ||
1019 | if (r < 0) { | |
405a2764 | 1020 | goto failed_completion; |
f27aaf4b | 1021 | } |
f27aaf4b | 1022 | return &acb->common; |
51a13528 | 1023 | |
405a2764 KW |
1024 | failed_completion: |
1025 | rbd_aio_release(c); | |
51a13528 | 1026 | failed: |
7267c094 | 1027 | g_free(rcb); |
1d393bde | 1028 | if (!LIBRBD_USE_IOVEC) { |
1029 | qemu_vfree(acb->bounce); | |
1030 | } | |
1031 | ||
8007429a | 1032 | qemu_aio_unref(acb); |
51a13528 | 1033 | return NULL; |
f27aaf4b CB |
1034 | } |
1035 | ||
e8e16d4b EB |
1036 | static BlockAIOCB *qemu_rbd_aio_preadv(BlockDriverState *bs, |
1037 | uint64_t offset, uint64_t bytes, | |
1038 | QEMUIOVector *qiov, int flags, | |
1039 | BlockCompletionFunc *cb, | |
1040 | void *opaque) | |
f27aaf4b | 1041 | { |
e8e16d4b | 1042 | return rbd_start_aio(bs, offset, qiov, bytes, cb, opaque, |
787f3133 | 1043 | RBD_AIO_READ); |
f27aaf4b CB |
1044 | } |
1045 | ||
e8e16d4b EB |
1046 | static BlockAIOCB *qemu_rbd_aio_pwritev(BlockDriverState *bs, |
1047 | uint64_t offset, uint64_t bytes, | |
1048 | QEMUIOVector *qiov, int flags, | |
1049 | BlockCompletionFunc *cb, | |
1050 | void *opaque) | |
f27aaf4b | 1051 | { |
e8e16d4b | 1052 | return rbd_start_aio(bs, offset, qiov, bytes, cb, opaque, |
787f3133 | 1053 | RBD_AIO_WRITE); |
f27aaf4b CB |
1054 | } |
1055 | ||
dc7588c1 | 1056 | #ifdef LIBRBD_SUPPORTS_AIO_FLUSH |
7c84b1b8 | 1057 | static BlockAIOCB *qemu_rbd_aio_flush(BlockDriverState *bs, |
097310b5 | 1058 | BlockCompletionFunc *cb, |
7c84b1b8 | 1059 | void *opaque) |
dc7588c1 JD |
1060 | { |
1061 | return rbd_start_aio(bs, 0, NULL, 0, cb, opaque, RBD_AIO_FLUSH); | |
1062 | } | |
1063 | ||
1064 | #else | |
1065 | ||
8b94ff85 | 1066 | static int qemu_rbd_co_flush(BlockDriverState *bs) |
7a3f5fe9 SW |
1067 | { |
1068 | #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1) | |
1069 | /* rbd_flush added in 0.1.1 */ | |
1070 | BDRVRBDState *s = bs->opaque; | |
1071 | return rbd_flush(s->image); | |
1072 | #else | |
1073 | return 0; | |
1074 | #endif | |
1075 | } | |
dc7588c1 | 1076 | #endif |
7a3f5fe9 | 1077 | |
ad32e9c0 | 1078 | static int qemu_rbd_getinfo(BlockDriverState *bs, BlockDriverInfo *bdi) |
f27aaf4b CB |
1079 | { |
1080 | BDRVRBDState *s = bs->opaque; | |
ad32e9c0 JD |
1081 | rbd_image_info_t info; |
1082 | int r; | |
1083 | ||
1084 | r = rbd_stat(s->image, &info, sizeof(info)); | |
1085 | if (r < 0) { | |
1086 | return r; | |
1087 | } | |
1088 | ||
1089 | bdi->cluster_size = info.obj_size; | |
f27aaf4b CB |
1090 | return 0; |
1091 | } | |
1092 | ||
ad32e9c0 | 1093 | static int64_t qemu_rbd_getlength(BlockDriverState *bs) |
f27aaf4b CB |
1094 | { |
1095 | BDRVRBDState *s = bs->opaque; | |
ad32e9c0 JD |
1096 | rbd_image_info_t info; |
1097 | int r; | |
f27aaf4b | 1098 | |
ad32e9c0 JD |
1099 | r = rbd_stat(s->image, &info, sizeof(info)); |
1100 | if (r < 0) { | |
1101 | return r; | |
1102 | } | |
1103 | ||
1104 | return info.size; | |
f27aaf4b CB |
1105 | } |
1106 | ||
061ca8a3 KW |
1107 | static int coroutine_fn qemu_rbd_co_truncate(BlockDriverState *bs, |
1108 | int64_t offset, | |
c80d8b06 | 1109 | bool exact, |
061ca8a3 | 1110 | PreallocMode prealloc, |
92b92799 | 1111 | BdrvRequestFlags flags, |
061ca8a3 | 1112 | Error **errp) |
30cdc48c | 1113 | { |
30cdc48c JD |
1114 | int r; |
1115 | ||
8243ccb7 HR |
1116 | if (prealloc != PREALLOC_MODE_OFF) { |
1117 | error_setg(errp, "Unsupported preallocation mode '%s'", | |
977c736f | 1118 | PreallocMode_str(prealloc)); |
8243ccb7 HR |
1119 | return -ENOTSUP; |
1120 | } | |
1121 | ||
d24f8023 | 1122 | r = qemu_rbd_resize(bs, offset); |
30cdc48c | 1123 | if (r < 0) { |
f59adb32 | 1124 | error_setg_errno(errp, -r, "Failed to resize file"); |
30cdc48c JD |
1125 | return r; |
1126 | } | |
1127 | ||
1128 | return 0; | |
1129 | } | |
1130 | ||
ad32e9c0 JD |
1131 | static int qemu_rbd_snap_create(BlockDriverState *bs, |
1132 | QEMUSnapshotInfo *sn_info) | |
f27aaf4b CB |
1133 | { |
1134 | BDRVRBDState *s = bs->opaque; | |
f27aaf4b | 1135 | int r; |
f27aaf4b CB |
1136 | |
1137 | if (sn_info->name[0] == '\0') { | |
1138 | return -EINVAL; /* we need a name for rbd snapshots */ | |
1139 | } | |
1140 | ||
1141 | /* | |
1142 | * rbd snapshots are using the name as the user controlled unique identifier | |
1143 | * we can't use the rbd snapid for that purpose, as it can't be set | |
1144 | */ | |
1145 | if (sn_info->id_str[0] != '\0' && | |
1146 | strcmp(sn_info->id_str, sn_info->name) != 0) { | |
1147 | return -EINVAL; | |
1148 | } | |
1149 | ||
1150 | if (strlen(sn_info->name) >= sizeof(sn_info->id_str)) { | |
1151 | return -ERANGE; | |
1152 | } | |
1153 | ||
ad32e9c0 | 1154 | r = rbd_snap_create(s->image, sn_info->name); |
f27aaf4b | 1155 | if (r < 0) { |
ad32e9c0 | 1156 | error_report("failed to create snap: %s", strerror(-r)); |
f27aaf4b CB |
1157 | return r; |
1158 | } | |
1159 | ||
f27aaf4b CB |
1160 | return 0; |
1161 | } | |
1162 | ||
bd603247 | 1163 | static int qemu_rbd_snap_remove(BlockDriverState *bs, |
a89d89d3 WX |
1164 | const char *snapshot_id, |
1165 | const char *snapshot_name, | |
1166 | Error **errp) | |
bd603247 GF |
1167 | { |
1168 | BDRVRBDState *s = bs->opaque; | |
1169 | int r; | |
1170 | ||
a89d89d3 WX |
1171 | if (!snapshot_name) { |
1172 | error_setg(errp, "rbd need a valid snapshot name"); | |
1173 | return -EINVAL; | |
1174 | } | |
1175 | ||
1176 | /* If snapshot_id is specified, it must be equal to name, see | |
1177 | qemu_rbd_snap_list() */ | |
1178 | if (snapshot_id && strcmp(snapshot_id, snapshot_name)) { | |
1179 | error_setg(errp, | |
1180 | "rbd do not support snapshot id, it should be NULL or " | |
1181 | "equal to snapshot name"); | |
1182 | return -EINVAL; | |
1183 | } | |
1184 | ||
bd603247 | 1185 | r = rbd_snap_remove(s->image, snapshot_name); |
a89d89d3 WX |
1186 | if (r < 0) { |
1187 | error_setg_errno(errp, -r, "Failed to remove the snapshot"); | |
1188 | } | |
bd603247 GF |
1189 | return r; |
1190 | } | |
1191 | ||
1192 | static int qemu_rbd_snap_rollback(BlockDriverState *bs, | |
1193 | const char *snapshot_name) | |
1194 | { | |
1195 | BDRVRBDState *s = bs->opaque; | |
bd603247 | 1196 | |
9be38598 | 1197 | return rbd_snap_rollback(s->image, snapshot_name); |
bd603247 GF |
1198 | } |
1199 | ||
ad32e9c0 JD |
1200 | static int qemu_rbd_snap_list(BlockDriverState *bs, |
1201 | QEMUSnapshotInfo **psn_tab) | |
f27aaf4b CB |
1202 | { |
1203 | BDRVRBDState *s = bs->opaque; | |
f27aaf4b | 1204 | QEMUSnapshotInfo *sn_info, *sn_tab = NULL; |
ad32e9c0 JD |
1205 | int i, snap_count; |
1206 | rbd_snap_info_t *snaps; | |
1207 | int max_snaps = RBD_MAX_SNAPS; | |
f27aaf4b | 1208 | |
ad32e9c0 | 1209 | do { |
02c4f26b | 1210 | snaps = g_new(rbd_snap_info_t, max_snaps); |
ad32e9c0 | 1211 | snap_count = rbd_snap_list(s->image, snaps, &max_snaps); |
9e6337d0 | 1212 | if (snap_count <= 0) { |
7267c094 | 1213 | g_free(snaps); |
f27aaf4b | 1214 | } |
ad32e9c0 | 1215 | } while (snap_count == -ERANGE); |
f27aaf4b | 1216 | |
ad32e9c0 | 1217 | if (snap_count <= 0) { |
b9c53290 | 1218 | goto done; |
f27aaf4b CB |
1219 | } |
1220 | ||
5839e53b | 1221 | sn_tab = g_new0(QEMUSnapshotInfo, snap_count); |
f27aaf4b | 1222 | |
ad32e9c0 JD |
1223 | for (i = 0; i < snap_count; i++) { |
1224 | const char *snap_name = snaps[i].name; | |
f27aaf4b CB |
1225 | |
1226 | sn_info = sn_tab + i; | |
1227 | pstrcpy(sn_info->id_str, sizeof(sn_info->id_str), snap_name); | |
1228 | pstrcpy(sn_info->name, sizeof(sn_info->name), snap_name); | |
f27aaf4b | 1229 | |
ad32e9c0 | 1230 | sn_info->vm_state_size = snaps[i].size; |
f27aaf4b CB |
1231 | sn_info->date_sec = 0; |
1232 | sn_info->date_nsec = 0; | |
1233 | sn_info->vm_clock_nsec = 0; | |
1234 | } | |
ad32e9c0 | 1235 | rbd_snap_list_end(snaps); |
9e6337d0 | 1236 | g_free(snaps); |
ad32e9c0 | 1237 | |
b9c53290 | 1238 | done: |
f27aaf4b | 1239 | *psn_tab = sn_tab; |
f27aaf4b | 1240 | return snap_count; |
f27aaf4b CB |
1241 | } |
1242 | ||
787f3133 | 1243 | #ifdef LIBRBD_SUPPORTS_DISCARD |
4da444a0 EB |
1244 | static BlockAIOCB *qemu_rbd_aio_pdiscard(BlockDriverState *bs, |
1245 | int64_t offset, | |
f5a5ca79 | 1246 | int bytes, |
4da444a0 EB |
1247 | BlockCompletionFunc *cb, |
1248 | void *opaque) | |
787f3133 | 1249 | { |
f5a5ca79 | 1250 | return rbd_start_aio(bs, offset, NULL, bytes, cb, opaque, |
787f3133 JD |
1251 | RBD_AIO_DISCARD); |
1252 | } | |
1253 | #endif | |
1254 | ||
be217884 | 1255 | #ifdef LIBRBD_SUPPORTS_INVALIDATE |
2b148f39 PB |
1256 | static void coroutine_fn qemu_rbd_co_invalidate_cache(BlockDriverState *bs, |
1257 | Error **errp) | |
be217884 AC |
1258 | { |
1259 | BDRVRBDState *s = bs->opaque; | |
1260 | int r = rbd_invalidate_cache(s->image); | |
1261 | if (r < 0) { | |
1262 | error_setg_errno(errp, -r, "Failed to invalidate the cache"); | |
1263 | } | |
1264 | } | |
1265 | #endif | |
1266 | ||
bd0cf596 CL |
1267 | static QemuOptsList qemu_rbd_create_opts = { |
1268 | .name = "rbd-create-opts", | |
1269 | .head = QTAILQ_HEAD_INITIALIZER(qemu_rbd_create_opts.head), | |
1270 | .desc = { | |
1271 | { | |
1272 | .name = BLOCK_OPT_SIZE, | |
1273 | .type = QEMU_OPT_SIZE, | |
1274 | .help = "Virtual disk size" | |
1275 | }, | |
1276 | { | |
1277 | .name = BLOCK_OPT_CLUSTER_SIZE, | |
1278 | .type = QEMU_OPT_SIZE, | |
1279 | .help = "RBD object size" | |
1280 | }, | |
60390a21 DB |
1281 | { |
1282 | .name = "password-secret", | |
1283 | .type = QEMU_OPT_STRING, | |
1284 | .help = "ID of secret providing the password", | |
1285 | }, | |
bd0cf596 CL |
1286 | { /* end of list */ } |
1287 | } | |
f27aaf4b CB |
1288 | }; |
1289 | ||
2654267c HR |
1290 | static const char *const qemu_rbd_strong_runtime_opts[] = { |
1291 | "pool", | |
1292 | "image", | |
1293 | "conf", | |
1294 | "snapshot", | |
1295 | "user", | |
1296 | "server.", | |
1297 | "password-secret", | |
1298 | ||
1299 | NULL | |
1300 | }; | |
1301 | ||
f27aaf4b | 1302 | static BlockDriver bdrv_rbd = { |
c7cacb3e JC |
1303 | .format_name = "rbd", |
1304 | .instance_size = sizeof(BDRVRBDState), | |
1305 | .bdrv_parse_filename = qemu_rbd_parse_filename, | |
e8e16d4b | 1306 | .bdrv_refresh_limits = qemu_rbd_refresh_limits, |
c7cacb3e JC |
1307 | .bdrv_file_open = qemu_rbd_open, |
1308 | .bdrv_close = qemu_rbd_close, | |
56e7cf8d | 1309 | .bdrv_reopen_prepare = qemu_rbd_reopen_prepare, |
1bebea37 | 1310 | .bdrv_co_create = qemu_rbd_co_create, |
efc75e2a | 1311 | .bdrv_co_create_opts = qemu_rbd_co_create_opts, |
c7cacb3e JC |
1312 | .bdrv_has_zero_init = bdrv_has_zero_init_1, |
1313 | .bdrv_get_info = qemu_rbd_getinfo, | |
1314 | .create_opts = &qemu_rbd_create_opts, | |
1315 | .bdrv_getlength = qemu_rbd_getlength, | |
061ca8a3 | 1316 | .bdrv_co_truncate = qemu_rbd_co_truncate, |
c7cacb3e | 1317 | .protocol_name = "rbd", |
f27aaf4b | 1318 | |
e8e16d4b EB |
1319 | .bdrv_aio_preadv = qemu_rbd_aio_preadv, |
1320 | .bdrv_aio_pwritev = qemu_rbd_aio_pwritev, | |
dc7588c1 JD |
1321 | |
1322 | #ifdef LIBRBD_SUPPORTS_AIO_FLUSH | |
1323 | .bdrv_aio_flush = qemu_rbd_aio_flush, | |
1324 | #else | |
c68b89ac | 1325 | .bdrv_co_flush_to_disk = qemu_rbd_co_flush, |
dc7588c1 | 1326 | #endif |
f27aaf4b | 1327 | |
787f3133 | 1328 | #ifdef LIBRBD_SUPPORTS_DISCARD |
4da444a0 | 1329 | .bdrv_aio_pdiscard = qemu_rbd_aio_pdiscard, |
787f3133 JD |
1330 | #endif |
1331 | ||
c68b89ac | 1332 | .bdrv_snapshot_create = qemu_rbd_snap_create, |
bd603247 | 1333 | .bdrv_snapshot_delete = qemu_rbd_snap_remove, |
c68b89ac | 1334 | .bdrv_snapshot_list = qemu_rbd_snap_list, |
bd603247 | 1335 | .bdrv_snapshot_goto = qemu_rbd_snap_rollback, |
be217884 | 1336 | #ifdef LIBRBD_SUPPORTS_INVALIDATE |
2b148f39 | 1337 | .bdrv_co_invalidate_cache = qemu_rbd_co_invalidate_cache, |
be217884 | 1338 | #endif |
2654267c HR |
1339 | |
1340 | .strong_runtime_opts = qemu_rbd_strong_runtime_opts, | |
f27aaf4b CB |
1341 | }; |
1342 | ||
1343 | static void bdrv_rbd_init(void) | |
1344 | { | |
1345 | bdrv_register(&bdrv_rbd); | |
1346 | } | |
1347 | ||
1348 | block_init(bdrv_rbd_init); |