]> git.proxmox.com Git - mirror_qemu.git/blame - block.c
pci-ids: drop list of modern virtio devices
[mirror_qemu.git] / block.c
CommitLineData
fc01f7e7
FB
1/*
2 * QEMU System Emulator block driver
5fafdf24 3 *
fc01f7e7 4 * Copyright (c) 2003 Fabrice Bellard
c20555e1 5 * Copyright (c) 2020 Virtuozzo International GmbH.
5fafdf24 6 *
fc01f7e7
FB
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
e688df6b 25
d38ea87a 26#include "qemu/osdep.h"
0ab8ed18 27#include "block/trace.h"
737e150e
PB
28#include "block/block_int.h"
29#include "block/blockjob.h"
0c9b70d5 30#include "block/fuse.h"
cd7fca95 31#include "block/nbd.h"
609f45ea 32#include "block/qdict.h"
d49b6836 33#include "qemu/error-report.h"
5e5733e5 34#include "block/module_block.h"
db725815 35#include "qemu/main-loop.h"
1de7afc9 36#include "qemu/module.h"
e688df6b 37#include "qapi/error.h"
452fcdbc 38#include "qapi/qmp/qdict.h"
7b1b5d19 39#include "qapi/qmp/qjson.h"
e59a0cf1 40#include "qapi/qmp/qnull.h"
fc81fa1e 41#include "qapi/qmp/qstring.h"
e1d74bc6
KW
42#include "qapi/qobject-output-visitor.h"
43#include "qapi/qapi-visit-block-core.h"
bfb197e0 44#include "sysemu/block-backend.h"
1de7afc9 45#include "qemu/notify.h"
922a01a0 46#include "qemu/option.h"
10817bf0 47#include "qemu/coroutine.h"
c13163fb 48#include "block/qapi.h"
1de7afc9 49#include "qemu/timer.h"
f348b6d1
VB
50#include "qemu/cutils.h"
51#include "qemu/id.h"
0bc329fb
HR
52#include "qemu/range.h"
53#include "qemu/rcu.h"
21c2283e 54#include "block/coroutines.h"
fc01f7e7 55
71e72a19 56#ifdef CONFIG_BSD
7674e7bf 57#include <sys/ioctl.h>
72cf2d4f 58#include <sys/queue.h>
feccdcee 59#if defined(HAVE_SYS_DISK_H)
7674e7bf
FB
60#include <sys/disk.h>
61#endif
c5e97233 62#endif
7674e7bf 63
49dc768d
AL
64#ifdef _WIN32
65#include <windows.h>
66#endif
67
1c9805a3
SH
68#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
69
3b491a90 70/* Protected by BQL */
dc364f4c
BC
71static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
73
3b491a90 74/* Protected by BQL */
2c1d04e0
HR
75static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
76 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
77
3b491a90 78/* Protected by BQL */
8a22f02a
SH
79static QLIST_HEAD(, BlockDriver) bdrv_drivers =
80 QLIST_HEAD_INITIALIZER(bdrv_drivers);
ea2384d3 81
5b363937
HR
82static BlockDriverState *bdrv_open_inherit(const char *filename,
83 const char *reference,
84 QDict *options, int flags,
85 BlockDriverState *parent,
bd86fb99 86 const BdrvChildClass *child_class,
272c02ea 87 BdrvChildRole child_role,
5b363937 88 Error **errp);
f3930ed0 89
bfb8aa6d
KW
90static bool bdrv_recurse_has_child(BlockDriverState *bs,
91 BlockDriverState *child);
92
b0a9f6fe 93static void bdrv_child_free(BdrvChild *child);
be64bbb0 94static void bdrv_replace_child_noperm(BdrvChild **child,
b0a9f6fe
HR
95 BlockDriverState *new_bs,
96 bool free_empty_child);
e9238278
VSO
97static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
98 BdrvChild *child,
99 Transaction *tran);
160333e1
VSO
100static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
101 Transaction *tran);
0978623e 102
72373e40
VSO
103static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
104 BlockReopenQueue *queue,
ecd30d2d 105 Transaction *change_child_tran, Error **errp);
53e96d1e
VSO
106static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
107static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
108
fa8fc1d0
EGE
109static bool bdrv_backing_overridden(BlockDriverState *bs);
110
eb852011
MA
111/* If non-zero, use only whitelisted block drivers */
112static int use_bdrv_whitelist;
113
9e0b22f4
SH
114#ifdef _WIN32
115static int is_windows_drive_prefix(const char *filename)
116{
117 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
118 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
119 filename[1] == ':');
120}
121
122int is_windows_drive(const char *filename)
123{
124 if (is_windows_drive_prefix(filename) &&
125 filename[2] == '\0')
126 return 1;
127 if (strstart(filename, "\\\\.\\", NULL) ||
128 strstart(filename, "//./", NULL))
129 return 1;
130 return 0;
131}
132#endif
133
339064d5
KW
134size_t bdrv_opt_mem_align(BlockDriverState *bs)
135{
136 if (!bs || !bs->drv) {
459b4e66 137 /* page size or 4k (hdd sector size) should be on the safe side */
8e3b0cbb 138 return MAX(4096, qemu_real_host_page_size());
339064d5 139 }
384a48fb 140 IO_CODE();
339064d5
KW
141
142 return bs->bl.opt_mem_alignment;
143}
144
4196d2f0
DL
145size_t bdrv_min_mem_align(BlockDriverState *bs)
146{
147 if (!bs || !bs->drv) {
459b4e66 148 /* page size or 4k (hdd sector size) should be on the safe side */
8e3b0cbb 149 return MAX(4096, qemu_real_host_page_size());
4196d2f0 150 }
384a48fb 151 IO_CODE();
4196d2f0
DL
152
153 return bs->bl.min_mem_alignment;
154}
155
9e0b22f4 156/* check if the path starts with "<protocol>:" */
5c98415b 157int path_has_protocol(const char *path)
9e0b22f4 158{
947995c0
PB
159 const char *p;
160
9e0b22f4
SH
161#ifdef _WIN32
162 if (is_windows_drive(path) ||
163 is_windows_drive_prefix(path)) {
164 return 0;
165 }
947995c0
PB
166 p = path + strcspn(path, ":/\\");
167#else
168 p = path + strcspn(path, ":/");
9e0b22f4
SH
169#endif
170
947995c0 171 return *p == ':';
9e0b22f4
SH
172}
173
83f64091 174int path_is_absolute(const char *path)
3b0d4f61 175{
21664424
FB
176#ifdef _WIN32
177 /* specific case for names like: "\\.\d:" */
f53f4da9 178 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
21664424 179 return 1;
f53f4da9
PB
180 }
181 return (*path == '/' || *path == '\\');
3b9f94e1 182#else
f53f4da9 183 return (*path == '/');
3b9f94e1 184#endif
3b0d4f61
FB
185}
186
009b03aa 187/* if filename is absolute, just return its duplicate. Otherwise, build a
83f64091
FB
188 path to it by considering it is relative to base_path. URL are
189 supported. */
009b03aa 190char *path_combine(const char *base_path, const char *filename)
3b0d4f61 191{
009b03aa 192 const char *protocol_stripped = NULL;
83f64091 193 const char *p, *p1;
009b03aa 194 char *result;
83f64091
FB
195 int len;
196
83f64091 197 if (path_is_absolute(filename)) {
009b03aa
HR
198 return g_strdup(filename);
199 }
0d54a6fe 200
009b03aa
HR
201 if (path_has_protocol(base_path)) {
202 protocol_stripped = strchr(base_path, ':');
203 if (protocol_stripped) {
204 protocol_stripped++;
0d54a6fe 205 }
009b03aa
HR
206 }
207 p = protocol_stripped ?: base_path;
0d54a6fe 208
009b03aa 209 p1 = strrchr(base_path, '/');
3b9f94e1 210#ifdef _WIN32
009b03aa
HR
211 {
212 const char *p2;
213 p2 = strrchr(base_path, '\\');
214 if (!p1 || p2 > p1) {
215 p1 = p2;
3b9f94e1 216 }
009b03aa 217 }
3b9f94e1 218#endif
009b03aa
HR
219 if (p1) {
220 p1++;
221 } else {
222 p1 = base_path;
223 }
224 if (p1 > p) {
225 p = p1;
3b0d4f61 226 }
009b03aa
HR
227 len = p - base_path;
228
229 result = g_malloc(len + strlen(filename) + 1);
230 memcpy(result, base_path, len);
231 strcpy(result + len, filename);
232
233 return result;
234}
235
03c320d8
HR
236/*
237 * Helper function for bdrv_parse_filename() implementations to remove optional
238 * protocol prefixes (especially "file:") from a filename and for putting the
239 * stripped filename into the options QDict if there is such a prefix.
240 */
241void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
242 QDict *options)
243{
244 if (strstart(filename, prefix, &filename)) {
245 /* Stripping the explicit protocol prefix may result in a protocol
246 * prefix being (wrongly) detected (if the filename contains a colon) */
247 if (path_has_protocol(filename)) {
18cf67c5 248 GString *fat_filename;
03c320d8
HR
249
250 /* This means there is some colon before the first slash; therefore,
251 * this cannot be an absolute path */
252 assert(!path_is_absolute(filename));
253
254 /* And we can thus fix the protocol detection issue by prefixing it
255 * by "./" */
18cf67c5
MA
256 fat_filename = g_string_new("./");
257 g_string_append(fat_filename, filename);
03c320d8 258
18cf67c5 259 assert(!path_has_protocol(fat_filename->str));
03c320d8 260
18cf67c5
MA
261 qdict_put(options, "filename",
262 qstring_from_gstring(fat_filename));
03c320d8
HR
263 } else {
264 /* If no protocol prefix was detected, we can use the shortened
265 * filename as-is */
266 qdict_put_str(options, "filename", filename);
267 }
268 }
269}
270
271
9c5e6594
KW
272/* Returns whether the image file is opened as read-only. Note that this can
273 * return false and writing to the image file is still not possible because the
274 * image is inactivated. */
93ed524e
JC
275bool bdrv_is_read_only(BlockDriverState *bs)
276{
384a48fb 277 IO_CODE();
975da073 278 return !(bs->open_flags & BDRV_O_RDWR);
93ed524e
JC
279}
280
54a32bfe
KW
281int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
282 bool ignore_allow_rdw, Error **errp)
fe5241bf 283{
384a48fb
EGE
284 IO_CODE();
285
e2b8247a
JC
286 /* Do not set read_only if copy_on_read is enabled */
287 if (bs->copy_on_read && read_only) {
288 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
289 bdrv_get_device_or_node_name(bs));
290 return -EINVAL;
291 }
292
d6fcdf06 293 /* Do not clear read_only if it is prohibited */
54a32bfe
KW
294 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
295 !ignore_allow_rdw)
296 {
d6fcdf06
JC
297 error_setg(errp, "Node '%s' is read only",
298 bdrv_get_device_or_node_name(bs));
299 return -EPERM;
300 }
301
45803a03
JC
302 return 0;
303}
304
eaa2410f
KW
305/*
306 * Called by a driver that can only provide a read-only image.
307 *
308 * Returns 0 if the node is already read-only or it could switch the node to
309 * read-only because BDRV_O_AUTO_RDONLY is set.
310 *
311 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
312 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
313 * is not NULL, it is used as the error message for the Error object.
314 */
315int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
316 Error **errp)
45803a03
JC
317{
318 int ret = 0;
384a48fb 319 IO_CODE();
45803a03 320
eaa2410f
KW
321 if (!(bs->open_flags & BDRV_O_RDWR)) {
322 return 0;
323 }
324 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
325 goto fail;
45803a03
JC
326 }
327
eaa2410f
KW
328 ret = bdrv_can_set_read_only(bs, true, false, NULL);
329 if (ret < 0) {
330 goto fail;
eeae6a59
KW
331 }
332
eaa2410f
KW
333 bs->open_flags &= ~BDRV_O_RDWR;
334
e2b8247a 335 return 0;
eaa2410f
KW
336
337fail:
338 error_setg(errp, "%s", errmsg ?: "Image is read-only");
339 return -EACCES;
fe5241bf
JC
340}
341
645ae7d8
HR
342/*
343 * If @backing is empty, this function returns NULL without setting
344 * @errp. In all other cases, NULL will only be returned with @errp
345 * set.
346 *
347 * Therefore, a return value of NULL without @errp set means that
348 * there is no backing file; if @errp is set, there is one but its
349 * absolute filename cannot be generated.
350 */
351char *bdrv_get_full_backing_filename_from_filename(const char *backed,
352 const char *backing,
353 Error **errp)
dc5a1371 354{
645ae7d8
HR
355 if (backing[0] == '\0') {
356 return NULL;
357 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
358 return g_strdup(backing);
9f07429e
HR
359 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
360 error_setg(errp, "Cannot use relative backing file names for '%s'",
361 backed);
645ae7d8 362 return NULL;
dc5a1371 363 } else {
645ae7d8 364 return path_combine(backed, backing);
dc5a1371
PB
365 }
366}
367
9f4793d8
HR
368/*
369 * If @filename is empty or NULL, this function returns NULL without
370 * setting @errp. In all other cases, NULL will only be returned with
371 * @errp set.
372 */
373static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
374 const char *filename, Error **errp)
0a82855a 375{
8df68616 376 char *dir, *full_name;
9f4793d8 377
8df68616
HR
378 if (!filename || filename[0] == '\0') {
379 return NULL;
380 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
381 return g_strdup(filename);
382 }
9f07429e 383
8df68616
HR
384 dir = bdrv_dirname(relative_to, errp);
385 if (!dir) {
386 return NULL;
387 }
f30c66ba 388
8df68616
HR
389 full_name = g_strconcat(dir, filename, NULL);
390 g_free(dir);
391 return full_name;
9f4793d8
HR
392}
393
394char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
395{
f791bf7f 396 GLOBAL_STATE_CODE();
9f4793d8 397 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
0a82855a
HR
398}
399
0eb7217e
SH
400void bdrv_register(BlockDriver *bdrv)
401{
a15f08dc 402 assert(bdrv->format_name);
f791bf7f 403 GLOBAL_STATE_CODE();
8a22f02a 404 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
ea2384d3 405}
b338082b 406
e4e9986b
MA
407BlockDriverState *bdrv_new(void)
408{
409 BlockDriverState *bs;
410 int i;
411
f791bf7f
EGE
412 GLOBAL_STATE_CODE();
413
5839e53b 414 bs = g_new0(BlockDriverState, 1);
e4654d2d 415 QLIST_INIT(&bs->dirty_bitmaps);
fbe40ff7
FZ
416 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
417 QLIST_INIT(&bs->op_blockers[i]);
418 }
3783fa3d 419 qemu_co_mutex_init(&bs->reqs_lock);
2119882c 420 qemu_mutex_init(&bs->dirty_bitmap_mutex);
9fcb0251 421 bs->refcnt = 1;
dcd04228 422 bs->aio_context = qemu_get_aio_context();
d7d512f6 423
3ff2f67a
EY
424 qemu_co_queue_init(&bs->flush_queue);
425
0bc329fb
HR
426 qemu_co_mutex_init(&bs->bsc_modify_lock);
427 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
428
0f12264e
KW
429 for (i = 0; i < bdrv_drain_all_count; i++) {
430 bdrv_drained_begin(bs);
431 }
432
2c1d04e0
HR
433 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
434
b338082b
FB
435 return bs;
436}
437
88d88798 438static BlockDriver *bdrv_do_find_format(const char *format_name)
ea2384d3
FB
439{
440 BlockDriver *drv1;
bdb73476 441 GLOBAL_STATE_CODE();
88d88798 442
8a22f02a
SH
443 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
444 if (!strcmp(drv1->format_name, format_name)) {
ea2384d3 445 return drv1;
8a22f02a 446 }
ea2384d3 447 }
88d88798 448
ea2384d3
FB
449 return NULL;
450}
451
88d88798
MM
452BlockDriver *bdrv_find_format(const char *format_name)
453{
454 BlockDriver *drv1;
455 int i;
456
f791bf7f
EGE
457 GLOBAL_STATE_CODE();
458
88d88798
MM
459 drv1 = bdrv_do_find_format(format_name);
460 if (drv1) {
461 return drv1;
462 }
463
464 /* The driver isn't registered, maybe we need to load a module */
465 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
466 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
467 block_module_load_one(block_driver_modules[i].library_name);
468 break;
469 }
470 }
471
472 return bdrv_do_find_format(format_name);
473}
474
9ac404c5 475static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
eb852011 476{
b64ec4e4
FZ
477 static const char *whitelist_rw[] = {
478 CONFIG_BDRV_RW_WHITELIST
859aef02 479 NULL
b64ec4e4
FZ
480 };
481 static const char *whitelist_ro[] = {
482 CONFIG_BDRV_RO_WHITELIST
859aef02 483 NULL
eb852011
MA
484 };
485 const char **p;
486
b64ec4e4 487 if (!whitelist_rw[0] && !whitelist_ro[0]) {
eb852011 488 return 1; /* no whitelist, anything goes */
b64ec4e4 489 }
eb852011 490
b64ec4e4 491 for (p = whitelist_rw; *p; p++) {
9ac404c5 492 if (!strcmp(format_name, *p)) {
eb852011
MA
493 return 1;
494 }
495 }
b64ec4e4
FZ
496 if (read_only) {
497 for (p = whitelist_ro; *p; p++) {
9ac404c5 498 if (!strcmp(format_name, *p)) {
b64ec4e4
FZ
499 return 1;
500 }
501 }
502 }
eb852011
MA
503 return 0;
504}
505
9ac404c5
AS
506int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
507{
f791bf7f 508 GLOBAL_STATE_CODE();
9ac404c5
AS
509 return bdrv_format_is_whitelisted(drv->format_name, read_only);
510}
511
e6ff69bf
DB
512bool bdrv_uses_whitelist(void)
513{
514 return use_bdrv_whitelist;
515}
516
5b7e1542
ZYW
517typedef struct CreateCo {
518 BlockDriver *drv;
519 char *filename;
83d0521a 520 QemuOpts *opts;
5b7e1542 521 int ret;
cc84d90f 522 Error *err;
5b7e1542
ZYW
523} CreateCo;
524
525static void coroutine_fn bdrv_create_co_entry(void *opaque)
526{
cc84d90f
HR
527 Error *local_err = NULL;
528 int ret;
529
5b7e1542
ZYW
530 CreateCo *cco = opaque;
531 assert(cco->drv);
da359909 532 GLOBAL_STATE_CODE();
5b7e1542 533
b92902df
ML
534 ret = cco->drv->bdrv_co_create_opts(cco->drv,
535 cco->filename, cco->opts, &local_err);
621ff94d 536 error_propagate(&cco->err, local_err);
cc84d90f 537 cco->ret = ret;
5b7e1542
ZYW
538}
539
0e7e1989 540int bdrv_create(BlockDriver *drv, const char* filename,
83d0521a 541 QemuOpts *opts, Error **errp)
ea2384d3 542{
5b7e1542
ZYW
543 int ret;
544
f791bf7f
EGE
545 GLOBAL_STATE_CODE();
546
5b7e1542
ZYW
547 Coroutine *co;
548 CreateCo cco = {
549 .drv = drv,
550 .filename = g_strdup(filename),
83d0521a 551 .opts = opts,
5b7e1542 552 .ret = NOT_DONE,
cc84d90f 553 .err = NULL,
5b7e1542
ZYW
554 };
555
efc75e2a 556 if (!drv->bdrv_co_create_opts) {
cc84d90f 557 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
80168bff
LC
558 ret = -ENOTSUP;
559 goto out;
5b7e1542
ZYW
560 }
561
562 if (qemu_in_coroutine()) {
563 /* Fast-path if already in coroutine context */
564 bdrv_create_co_entry(&cco);
565 } else {
0b8b8753
PB
566 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
567 qemu_coroutine_enter(co);
5b7e1542 568 while (cco.ret == NOT_DONE) {
b47ec2c4 569 aio_poll(qemu_get_aio_context(), true);
5b7e1542
ZYW
570 }
571 }
572
573 ret = cco.ret;
cc84d90f 574 if (ret < 0) {
84d18f06 575 if (cco.err) {
cc84d90f
HR
576 error_propagate(errp, cco.err);
577 } else {
578 error_setg_errno(errp, -ret, "Could not create image");
579 }
580 }
0e7e1989 581
80168bff
LC
582out:
583 g_free(cco.filename);
5b7e1542 584 return ret;
ea2384d3
FB
585}
586
fd17146c
HR
587/**
588 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
589 * least the given @minimum_size.
590 *
591 * On success, return @blk's actual length.
592 * Otherwise, return -errno.
593 */
594static int64_t create_file_fallback_truncate(BlockBackend *blk,
595 int64_t minimum_size, Error **errp)
84a12e66 596{
cc84d90f 597 Error *local_err = NULL;
fd17146c 598 int64_t size;
cc84d90f 599 int ret;
84a12e66 600
bdb73476
EGE
601 GLOBAL_STATE_CODE();
602
8c6242b6
KW
603 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
604 &local_err);
fd17146c
HR
605 if (ret < 0 && ret != -ENOTSUP) {
606 error_propagate(errp, local_err);
607 return ret;
608 }
609
610 size = blk_getlength(blk);
611 if (size < 0) {
612 error_free(local_err);
613 error_setg_errno(errp, -size,
614 "Failed to inquire the new image file's length");
615 return size;
616 }
617
618 if (size < minimum_size) {
619 /* Need to grow the image, but we failed to do that */
620 error_propagate(errp, local_err);
621 return -ENOTSUP;
622 }
623
624 error_free(local_err);
625 local_err = NULL;
626
627 return size;
628}
629
630/**
631 * Helper function for bdrv_create_file_fallback(): Zero the first
632 * sector to remove any potentially pre-existing image header.
633 */
634static int create_file_fallback_zero_first_sector(BlockBackend *blk,
635 int64_t current_size,
636 Error **errp)
637{
638 int64_t bytes_to_clear;
639 int ret;
640
bdb73476
EGE
641 GLOBAL_STATE_CODE();
642
fd17146c
HR
643 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
644 if (bytes_to_clear) {
645 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
646 if (ret < 0) {
647 error_setg_errno(errp, -ret,
648 "Failed to clear the new image's first sector");
649 return ret;
650 }
651 }
652
653 return 0;
654}
655
5a5e7f8c
ML
656/**
657 * Simple implementation of bdrv_co_create_opts for protocol drivers
658 * which only support creation via opening a file
659 * (usually existing raw storage device)
660 */
661int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
662 const char *filename,
663 QemuOpts *opts,
664 Error **errp)
fd17146c
HR
665{
666 BlockBackend *blk;
eeea1faa 667 QDict *options;
fd17146c
HR
668 int64_t size = 0;
669 char *buf = NULL;
670 PreallocMode prealloc;
671 Error *local_err = NULL;
672 int ret;
673
b4ad82aa
EGE
674 GLOBAL_STATE_CODE();
675
fd17146c
HR
676 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
677 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
678 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
679 PREALLOC_MODE_OFF, &local_err);
680 g_free(buf);
681 if (local_err) {
682 error_propagate(errp, local_err);
683 return -EINVAL;
684 }
685
686 if (prealloc != PREALLOC_MODE_OFF) {
687 error_setg(errp, "Unsupported preallocation mode '%s'",
688 PreallocMode_str(prealloc));
689 return -ENOTSUP;
690 }
691
eeea1faa 692 options = qdict_new();
fd17146c
HR
693 qdict_put_str(options, "driver", drv->format_name);
694
695 blk = blk_new_open(filename, NULL, options,
696 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
697 if (!blk) {
698 error_prepend(errp, "Protocol driver '%s' does not support image "
699 "creation, and opening the image failed: ",
700 drv->format_name);
701 return -EINVAL;
702 }
703
704 size = create_file_fallback_truncate(blk, size, errp);
705 if (size < 0) {
706 ret = size;
707 goto out;
708 }
709
710 ret = create_file_fallback_zero_first_sector(blk, size, errp);
711 if (ret < 0) {
712 goto out;
713 }
714
715 ret = 0;
716out:
717 blk_unref(blk);
718 return ret;
719}
720
721int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
722{
729222af 723 QemuOpts *protocol_opts;
fd17146c 724 BlockDriver *drv;
729222af
SG
725 QDict *qdict;
726 int ret;
fd17146c 727
f791bf7f
EGE
728 GLOBAL_STATE_CODE();
729
b65a5e12 730 drv = bdrv_find_protocol(filename, true, errp);
84a12e66 731 if (drv == NULL) {
16905d71 732 return -ENOENT;
84a12e66
CH
733 }
734
729222af
SG
735 if (!drv->create_opts) {
736 error_setg(errp, "Driver '%s' does not support image creation",
737 drv->format_name);
738 return -ENOTSUP;
739 }
740
741 /*
742 * 'opts' contains a QemuOptsList with a combination of format and protocol
743 * default values.
744 *
745 * The format properly removes its options, but the default values remain
746 * in 'opts->list'. So if the protocol has options with the same name
747 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
748 * of the format, since for overlapping options, the format wins.
749 *
750 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
751 * only the set options, and then convert it back to QemuOpts, using the
752 * create_opts of the protocol. So the new QemuOpts, will contain only the
753 * protocol defaults.
754 */
755 qdict = qemu_opts_to_qdict(opts, NULL);
756 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
757 if (protocol_opts == NULL) {
758 ret = -EINVAL;
759 goto out;
760 }
761
762 ret = bdrv_create(drv, filename, protocol_opts, errp);
763out:
764 qemu_opts_del(protocol_opts);
765 qobject_unref(qdict);
766 return ret;
84a12e66
CH
767}
768
e1d7f8bb
DHB
769int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
770{
771 Error *local_err = NULL;
772 int ret;
773
384a48fb 774 IO_CODE();
e1d7f8bb
DHB
775 assert(bs != NULL);
776
777 if (!bs->drv) {
778 error_setg(errp, "Block node '%s' is not opened", bs->filename);
779 return -ENOMEDIUM;
780 }
781
782 if (!bs->drv->bdrv_co_delete_file) {
783 error_setg(errp, "Driver '%s' does not support image deletion",
784 bs->drv->format_name);
785 return -ENOTSUP;
786 }
787
788 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
789 if (ret < 0) {
790 error_propagate(errp, local_err);
791 }
792
793 return ret;
794}
795
a890f08e
ML
796void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
797{
798 Error *local_err = NULL;
799 int ret;
384a48fb 800 IO_CODE();
a890f08e
ML
801
802 if (!bs) {
803 return;
804 }
805
806 ret = bdrv_co_delete_file(bs, &local_err);
807 /*
808 * ENOTSUP will happen if the block driver doesn't support
809 * the 'bdrv_co_delete_file' interface. This is a predictable
810 * scenario and shouldn't be reported back to the user.
811 */
812 if (ret == -ENOTSUP) {
813 error_free(local_err);
814 } else if (ret < 0) {
815 error_report_err(local_err);
816 }
817}
818
892b7de8
ET
819/**
820 * Try to get @bs's logical and physical block size.
821 * On success, store them in @bsz struct and return 0.
822 * On failure return -errno.
823 * @bs must not be empty.
824 */
825int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
826{
827 BlockDriver *drv = bs->drv;
93393e69 828 BlockDriverState *filtered = bdrv_filter_bs(bs);
f791bf7f 829 GLOBAL_STATE_CODE();
892b7de8
ET
830
831 if (drv && drv->bdrv_probe_blocksizes) {
832 return drv->bdrv_probe_blocksizes(bs, bsz);
93393e69
HR
833 } else if (filtered) {
834 return bdrv_probe_blocksizes(filtered, bsz);
892b7de8
ET
835 }
836
837 return -ENOTSUP;
838}
839
840/**
841 * Try to get @bs's geometry (cyls, heads, sectors).
842 * On success, store them in @geo struct and return 0.
843 * On failure return -errno.
844 * @bs must not be empty.
845 */
846int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
847{
848 BlockDriver *drv = bs->drv;
93393e69 849 BlockDriverState *filtered = bdrv_filter_bs(bs);
f791bf7f 850 GLOBAL_STATE_CODE();
892b7de8
ET
851
852 if (drv && drv->bdrv_probe_geometry) {
853 return drv->bdrv_probe_geometry(bs, geo);
93393e69
HR
854 } else if (filtered) {
855 return bdrv_probe_geometry(filtered, geo);
892b7de8
ET
856 }
857
858 return -ENOTSUP;
859}
860
eba25057
JM
861/*
862 * Create a uniquely-named empty temporary file.
863 * Return 0 upon success, otherwise a negative errno value.
864 */
865int get_tmp_filename(char *filename, int size)
d5249393 866{
eba25057 867#ifdef _WIN32
3b9f94e1 868 char temp_dir[MAX_PATH];
eba25057
JM
869 /* GetTempFileName requires that its output buffer (4th param)
870 have length MAX_PATH or greater. */
871 assert(size >= MAX_PATH);
872 return (GetTempPath(MAX_PATH, temp_dir)
873 && GetTempFileName(temp_dir, "qem", 0, filename)
874 ? 0 : -GetLastError());
d5249393 875#else
67b915a5 876 int fd;
7ccfb2eb 877 const char *tmpdir;
0badc1ee 878 tmpdir = getenv("TMPDIR");
69bef793
AS
879 if (!tmpdir) {
880 tmpdir = "/var/tmp";
881 }
eba25057
JM
882 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
883 return -EOVERFLOW;
884 }
ea2384d3 885 fd = mkstemp(filename);
fe235a06
DH
886 if (fd < 0) {
887 return -errno;
888 }
889 if (close(fd) != 0) {
890 unlink(filename);
eba25057
JM
891 return -errno;
892 }
893 return 0;
d5249393 894#endif
eba25057 895}
fc01f7e7 896
84a12e66
CH
897/*
898 * Detect host devices. By convention, /dev/cdrom[N] is always
899 * recognized as a host CDROM.
900 */
901static BlockDriver *find_hdev_driver(const char *filename)
902{
903 int score_max = 0, score;
904 BlockDriver *drv = NULL, *d;
bdb73476 905 GLOBAL_STATE_CODE();
84a12e66
CH
906
907 QLIST_FOREACH(d, &bdrv_drivers, list) {
908 if (d->bdrv_probe_device) {
909 score = d->bdrv_probe_device(filename);
910 if (score > score_max) {
911 score_max = score;
912 drv = d;
913 }
914 }
915 }
916
917 return drv;
918}
919
88d88798
MM
920static BlockDriver *bdrv_do_find_protocol(const char *protocol)
921{
922 BlockDriver *drv1;
bdb73476 923 GLOBAL_STATE_CODE();
88d88798
MM
924
925 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
926 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
927 return drv1;
928 }
929 }
930
931 return NULL;
932}
933
98289620 934BlockDriver *bdrv_find_protocol(const char *filename,
b65a5e12
HR
935 bool allow_protocol_prefix,
936 Error **errp)
83f64091
FB
937{
938 BlockDriver *drv1;
939 char protocol[128];
1cec71e3 940 int len;
83f64091 941 const char *p;
88d88798 942 int i;
19cb3738 943
f791bf7f 944 GLOBAL_STATE_CODE();
66f82cee
KW
945 /* TODO Drivers without bdrv_file_open must be specified explicitly */
946
39508e7a
CH
947 /*
948 * XXX(hch): we really should not let host device detection
949 * override an explicit protocol specification, but moving this
950 * later breaks access to device names with colons in them.
951 * Thanks to the brain-dead persistent naming schemes on udev-
952 * based Linux systems those actually are quite common.
953 */
954 drv1 = find_hdev_driver(filename);
955 if (drv1) {
956 return drv1;
957 }
958
98289620 959 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
ef810437 960 return &bdrv_file;
84a12e66 961 }
98289620 962
9e0b22f4
SH
963 p = strchr(filename, ':');
964 assert(p != NULL);
1cec71e3
AL
965 len = p - filename;
966 if (len > sizeof(protocol) - 1)
967 len = sizeof(protocol) - 1;
968 memcpy(protocol, filename, len);
969 protocol[len] = '\0';
88d88798
MM
970
971 drv1 = bdrv_do_find_protocol(protocol);
972 if (drv1) {
973 return drv1;
974 }
975
976 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
977 if (block_driver_modules[i].protocol_name &&
978 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
979 block_module_load_one(block_driver_modules[i].library_name);
980 break;
8a22f02a 981 }
83f64091 982 }
b65a5e12 983
88d88798
MM
984 drv1 = bdrv_do_find_protocol(protocol);
985 if (!drv1) {
986 error_setg(errp, "Unknown protocol '%s'", protocol);
987 }
988 return drv1;
83f64091
FB
989}
990
c6684249
MA
991/*
992 * Guess image format by probing its contents.
993 * This is not a good idea when your image is raw (CVE-2008-2004), but
994 * we do it anyway for backward compatibility.
995 *
996 * @buf contains the image's first @buf_size bytes.
7cddd372
KW
997 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
998 * but can be smaller if the image file is smaller)
c6684249
MA
999 * @filename is its filename.
1000 *
1001 * For all block drivers, call the bdrv_probe() method to get its
1002 * probing score.
1003 * Return the first block driver with the highest probing score.
1004 */
38f3ef57
KW
1005BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
1006 const char *filename)
c6684249
MA
1007{
1008 int score_max = 0, score;
1009 BlockDriver *drv = NULL, *d;
967d7905 1010 IO_CODE();
c6684249
MA
1011
1012 QLIST_FOREACH(d, &bdrv_drivers, list) {
1013 if (d->bdrv_probe) {
1014 score = d->bdrv_probe(buf, buf_size, filename);
1015 if (score > score_max) {
1016 score_max = score;
1017 drv = d;
1018 }
1019 }
1020 }
1021
1022 return drv;
1023}
1024
5696c6e3 1025static int find_image_format(BlockBackend *file, const char *filename,
34b5d2c6 1026 BlockDriver **pdrv, Error **errp)
f3a5d3f8 1027{
c6684249 1028 BlockDriver *drv;
7cddd372 1029 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
f500a6d3 1030 int ret = 0;
f8ea0b00 1031
bdb73476
EGE
1032 GLOBAL_STATE_CODE();
1033
08a00559 1034 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
5696c6e3 1035 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
ef810437 1036 *pdrv = &bdrv_raw;
c98ac35d 1037 return ret;
1a396859 1038 }
f8ea0b00 1039
a9262f55 1040 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
83f64091 1041 if (ret < 0) {
34b5d2c6
HR
1042 error_setg_errno(errp, -ret, "Could not read image for determining its "
1043 "format");
c98ac35d
SW
1044 *pdrv = NULL;
1045 return ret;
83f64091
FB
1046 }
1047
bf5b16fa 1048 drv = bdrv_probe_all(buf, sizeof(buf), filename);
c98ac35d 1049 if (!drv) {
34b5d2c6
HR
1050 error_setg(errp, "Could not determine image format: No compatible "
1051 "driver found");
bf5b16fa
AF
1052 *pdrv = NULL;
1053 return -ENOENT;
c98ac35d 1054 }
bf5b16fa 1055
c98ac35d 1056 *pdrv = drv;
bf5b16fa 1057 return 0;
ea2384d3
FB
1058}
1059
51762288
SH
1060/**
1061 * Set the current 'total_sectors' value
65a9bb25 1062 * Return 0 on success, -errno on error.
51762288 1063 */
3d9f2d2a 1064int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
51762288
SH
1065{
1066 BlockDriver *drv = bs->drv;
967d7905 1067 IO_CODE();
51762288 1068
d470ad42
HR
1069 if (!drv) {
1070 return -ENOMEDIUM;
1071 }
1072
396759ad 1073 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
b192af8a 1074 if (bdrv_is_sg(bs))
396759ad
NB
1075 return 0;
1076
51762288
SH
1077 /* query actual device if possible, otherwise just trust the hint */
1078 if (drv->bdrv_getlength) {
1079 int64_t length = drv->bdrv_getlength(bs);
1080 if (length < 0) {
1081 return length;
1082 }
7e382003 1083 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
51762288
SH
1084 }
1085
1086 bs->total_sectors = hint;
8b117001
VSO
1087
1088 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1089 return -EFBIG;
1090 }
1091
51762288
SH
1092 return 0;
1093}
1094
cddff5ba
KW
1095/**
1096 * Combines a QDict of new block driver @options with any missing options taken
1097 * from @old_options, so that leaving out an option defaults to its old value.
1098 */
1099static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1100 QDict *old_options)
1101{
da359909 1102 GLOBAL_STATE_CODE();
cddff5ba
KW
1103 if (bs->drv && bs->drv->bdrv_join_options) {
1104 bs->drv->bdrv_join_options(options, old_options);
1105 } else {
1106 qdict_join(options, old_options, false);
1107 }
1108}
1109
543770bd
AG
1110static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1111 int open_flags,
1112 Error **errp)
1113{
1114 Error *local_err = NULL;
1115 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1116 BlockdevDetectZeroesOptions detect_zeroes =
1117 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1118 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
bdb73476 1119 GLOBAL_STATE_CODE();
543770bd
AG
1120 g_free(value);
1121 if (local_err) {
1122 error_propagate(errp, local_err);
1123 return detect_zeroes;
1124 }
1125
1126 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1127 !(open_flags & BDRV_O_UNMAP))
1128 {
1129 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1130 "without setting discard operation to unmap");
1131 }
1132
1133 return detect_zeroes;
1134}
1135
f80f2673
AM
1136/**
1137 * Set open flags for aio engine
1138 *
1139 * Return 0 on success, -1 if the engine specified is invalid
1140 */
1141int bdrv_parse_aio(const char *mode, int *flags)
1142{
1143 if (!strcmp(mode, "threads")) {
1144 /* do nothing, default */
1145 } else if (!strcmp(mode, "native")) {
1146 *flags |= BDRV_O_NATIVE_AIO;
1147#ifdef CONFIG_LINUX_IO_URING
1148 } else if (!strcmp(mode, "io_uring")) {
1149 *flags |= BDRV_O_IO_URING;
1150#endif
1151 } else {
1152 return -1;
1153 }
1154
1155 return 0;
1156}
1157
9e8f1835
PB
1158/**
1159 * Set open flags for a given discard mode
1160 *
1161 * Return 0 on success, -1 if the discard mode was invalid.
1162 */
1163int bdrv_parse_discard_flags(const char *mode, int *flags)
1164{
1165 *flags &= ~BDRV_O_UNMAP;
1166
1167 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1168 /* do nothing */
1169 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1170 *flags |= BDRV_O_UNMAP;
1171 } else {
1172 return -1;
1173 }
1174
1175 return 0;
1176}
1177
c3993cdc
SH
1178/**
1179 * Set open flags for a given cache mode
1180 *
1181 * Return 0 on success, -1 if the cache mode was invalid.
1182 */
53e8ae01 1183int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
c3993cdc
SH
1184{
1185 *flags &= ~BDRV_O_CACHE_MASK;
1186
1187 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
53e8ae01
KW
1188 *writethrough = false;
1189 *flags |= BDRV_O_NOCACHE;
92196b2f 1190 } else if (!strcmp(mode, "directsync")) {
53e8ae01 1191 *writethrough = true;
92196b2f 1192 *flags |= BDRV_O_NOCACHE;
c3993cdc 1193 } else if (!strcmp(mode, "writeback")) {
53e8ae01 1194 *writethrough = false;
c3993cdc 1195 } else if (!strcmp(mode, "unsafe")) {
53e8ae01 1196 *writethrough = false;
c3993cdc
SH
1197 *flags |= BDRV_O_NO_FLUSH;
1198 } else if (!strcmp(mode, "writethrough")) {
53e8ae01 1199 *writethrough = true;
c3993cdc
SH
1200 } else {
1201 return -1;
1202 }
1203
1204 return 0;
1205}
1206
b5411555
KW
1207static char *bdrv_child_get_parent_desc(BdrvChild *c)
1208{
1209 BlockDriverState *parent = c->opaque;
2c0a3acb 1210 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
b5411555
KW
1211}
1212
20018e12
KW
1213static void bdrv_child_cb_drained_begin(BdrvChild *child)
1214{
1215 BlockDriverState *bs = child->opaque;
6cd5c9d7 1216 bdrv_do_drained_begin_quiesce(bs, NULL, false);
20018e12
KW
1217}
1218
89bd0305
KW
1219static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1220{
1221 BlockDriverState *bs = child->opaque;
6cd5c9d7 1222 return bdrv_drain_poll(bs, false, NULL, false);
89bd0305
KW
1223}
1224
e037c09c
HR
1225static void bdrv_child_cb_drained_end(BdrvChild *child,
1226 int *drained_end_counter)
20018e12
KW
1227{
1228 BlockDriverState *bs = child->opaque;
e037c09c 1229 bdrv_drained_end_no_poll(bs, drained_end_counter);
20018e12
KW
1230}
1231
38701b6a
KW
1232static int bdrv_child_cb_inactivate(BdrvChild *child)
1233{
1234 BlockDriverState *bs = child->opaque;
bdb73476 1235 GLOBAL_STATE_CODE();
38701b6a
KW
1236 assert(bs->open_flags & BDRV_O_INACTIVE);
1237 return 0;
1238}
1239
5d231849
KW
1240static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1241 GSList **ignore, Error **errp)
1242{
1243 BlockDriverState *bs = child->opaque;
1244 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1245}
1246
53a7d041
KW
1247static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1248 GSList **ignore)
1249{
1250 BlockDriverState *bs = child->opaque;
1251 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1252}
1253
b1e6fc08 1254/*
73176bee
KW
1255 * Returns the options and flags that a temporary snapshot should get, based on
1256 * the originally requested flags (the originally requested image will have
1257 * flags like a backing file)
b1e6fc08 1258 */
73176bee
KW
1259static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1260 int parent_flags, QDict *parent_options)
b1e6fc08 1261{
bdb73476 1262 GLOBAL_STATE_CODE();
73176bee
KW
1263 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1264
1265 /* For temporary files, unconditional cache=unsafe is fine */
73176bee
KW
1266 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1267 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
41869044 1268
3f48686f 1269 /* Copy the read-only and discard options from the parent */
f87a0e29 1270 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
3f48686f 1271 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
f87a0e29 1272
41869044
KW
1273 /* aio=native doesn't work for cache.direct=off, so disable it for the
1274 * temporary snapshot */
1275 *child_flags &= ~BDRV_O_NATIVE_AIO;
b1e6fc08
KW
1276}
1277
db95dbba
KW
1278static void bdrv_backing_attach(BdrvChild *c)
1279{
1280 BlockDriverState *parent = c->opaque;
1281 BlockDriverState *backing_hd = c->bs;
1282
bdb73476 1283 GLOBAL_STATE_CODE();
db95dbba
KW
1284 assert(!parent->backing_blocker);
1285 error_setg(&parent->backing_blocker,
1286 "node is used as backing hd of '%s'",
1287 bdrv_get_device_or_node_name(parent));
1288
f30c66ba
HR
1289 bdrv_refresh_filename(backing_hd);
1290
db95dbba 1291 parent->open_flags &= ~BDRV_O_NO_BACKING;
db95dbba
KW
1292
1293 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1294 /* Otherwise we won't be able to commit or stream */
1295 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1296 parent->backing_blocker);
1297 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1298 parent->backing_blocker);
1299 /*
1300 * We do backup in 3 ways:
1301 * 1. drive backup
1302 * The target bs is new opened, and the source is top BDS
1303 * 2. blockdev backup
1304 * Both the source and the target are top BDSes.
1305 * 3. internal backup(used for block replication)
1306 * Both the source and the target are backing file
1307 *
1308 * In case 1 and 2, neither the source nor the target is the backing file.
1309 * In case 3, we will block the top BDS, so there is only one block job
1310 * for the top BDS and its backing chain.
1311 */
1312 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1313 parent->backing_blocker);
1314 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1315 parent->backing_blocker);
ca2f1234 1316}
d736f119 1317
db95dbba
KW
1318static void bdrv_backing_detach(BdrvChild *c)
1319{
1320 BlockDriverState *parent = c->opaque;
1321
bdb73476 1322 GLOBAL_STATE_CODE();
db95dbba
KW
1323 assert(parent->backing_blocker);
1324 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1325 error_free(parent->backing_blocker);
1326 parent->backing_blocker = NULL;
48e08288 1327}
d736f119 1328
6858eba0
KW
1329static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1330 const char *filename, Error **errp)
1331{
1332 BlockDriverState *parent = c->opaque;
e94d3dba 1333 bool read_only = bdrv_is_read_only(parent);
6858eba0 1334 int ret;
bdb73476 1335 GLOBAL_STATE_CODE();
6858eba0 1336
e94d3dba
AG
1337 if (read_only) {
1338 ret = bdrv_reopen_set_read_only(parent, false, errp);
61f09cea
KW
1339 if (ret < 0) {
1340 return ret;
1341 }
1342 }
1343
6858eba0 1344 ret = bdrv_change_backing_file(parent, filename,
e54ee1b3
EB
1345 base->drv ? base->drv->format_name : "",
1346 false);
6858eba0 1347 if (ret < 0) {
64730694 1348 error_setg_errno(errp, -ret, "Could not update backing file link");
6858eba0
KW
1349 }
1350
e94d3dba
AG
1351 if (read_only) {
1352 bdrv_reopen_set_read_only(parent, true, NULL);
61f09cea
KW
1353 }
1354
6858eba0
KW
1355 return ret;
1356}
1357
fae8bd39
HR
1358/*
1359 * Returns the options and flags that a generic child of a BDS should
1360 * get, based on the given options and flags for the parent BDS.
1361 */
00ff7ffd
HR
1362static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1363 int *child_flags, QDict *child_options,
1364 int parent_flags, QDict *parent_options)
fae8bd39
HR
1365{
1366 int flags = parent_flags;
bdb73476 1367 GLOBAL_STATE_CODE();
fae8bd39
HR
1368
1369 /*
1370 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1371 * Generally, the question to answer is: Should this child be
1372 * format-probed by default?
1373 */
1374
1375 /*
1376 * Pure and non-filtered data children of non-format nodes should
1377 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1378 * set). This only affects a very limited set of drivers (namely
1379 * quorum and blkverify when this comment was written).
1380 * Force-clear BDRV_O_PROTOCOL then.
1381 */
1382 if (!parent_is_format &&
1383 (role & BDRV_CHILD_DATA) &&
1384 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1385 {
1386 flags &= ~BDRV_O_PROTOCOL;
1387 }
1388
1389 /*
1390 * All children of format nodes (except for COW children) and all
1391 * metadata children in general should never be format-probed.
1392 * Force-set BDRV_O_PROTOCOL then.
1393 */
1394 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1395 (role & BDRV_CHILD_METADATA))
1396 {
1397 flags |= BDRV_O_PROTOCOL;
1398 }
1399
1400 /*
1401 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1402 * the parent.
1403 */
1404 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1405 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1406 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1407
1408 if (role & BDRV_CHILD_COW) {
1409 /* backing files are opened read-only by default */
1410 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1411 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1412 } else {
1413 /* Inherit the read-only option from the parent if it's not set */
1414 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1415 qdict_copy_default(child_options, parent_options,
1416 BDRV_OPT_AUTO_READ_ONLY);
1417 }
1418
1419 /*
1420 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1421 * can default to enable it on lower layers regardless of the
1422 * parent option.
1423 */
1424 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1425
1426 /* Clear flags that only apply to the top layer */
1427 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1428
1429 if (role & BDRV_CHILD_METADATA) {
1430 flags &= ~BDRV_O_NO_IO;
1431 }
1432 if (role & BDRV_CHILD_COW) {
1433 flags &= ~BDRV_O_TEMPORARY;
1434 }
1435
1436 *child_flags = flags;
1437}
1438
ca2f1234
HR
1439static void bdrv_child_cb_attach(BdrvChild *child)
1440{
1441 BlockDriverState *bs = child->opaque;
1442
696bf4c7 1443 assert_bdrv_graph_writable(bs);
a225369b
HR
1444 QLIST_INSERT_HEAD(&bs->children, child, next);
1445
ca2f1234
HR
1446 if (child->role & BDRV_CHILD_COW) {
1447 bdrv_backing_attach(child);
1448 }
1449
1450 bdrv_apply_subtree_drain(child, bs);
1451}
1452
48e08288
HR
1453static void bdrv_child_cb_detach(BdrvChild *child)
1454{
1455 BlockDriverState *bs = child->opaque;
1456
1457 if (child->role & BDRV_CHILD_COW) {
1458 bdrv_backing_detach(child);
1459 }
1460
1461 bdrv_unapply_subtree_drain(child, bs);
a225369b 1462
696bf4c7 1463 assert_bdrv_graph_writable(bs);
a225369b 1464 QLIST_REMOVE(child, next);
48e08288
HR
1465}
1466
43483550
HR
1467static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1468 const char *filename, Error **errp)
1469{
1470 if (c->role & BDRV_CHILD_COW) {
1471 return bdrv_backing_update_filename(c, base, filename, errp);
1472 }
1473 return 0;
1474}
1475
fb62b588 1476AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
3ca1f322
VSO
1477{
1478 BlockDriverState *bs = c->opaque;
384a48fb 1479 IO_CODE();
3ca1f322
VSO
1480
1481 return bdrv_get_aio_context(bs);
1482}
1483
43483550
HR
1484const BdrvChildClass child_of_bds = {
1485 .parent_is_bds = true,
1486 .get_parent_desc = bdrv_child_get_parent_desc,
1487 .inherit_options = bdrv_inherited_options,
1488 .drained_begin = bdrv_child_cb_drained_begin,
1489 .drained_poll = bdrv_child_cb_drained_poll,
1490 .drained_end = bdrv_child_cb_drained_end,
1491 .attach = bdrv_child_cb_attach,
1492 .detach = bdrv_child_cb_detach,
1493 .inactivate = bdrv_child_cb_inactivate,
1494 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1495 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1496 .update_filename = bdrv_child_cb_update_filename,
fb62b588 1497 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
43483550
HR
1498};
1499
3ca1f322
VSO
1500AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1501{
f0c28327 1502 GLOBAL_STATE_CODE();
3ca1f322
VSO
1503 return c->klass->get_parent_aio_context(c);
1504}
1505
7b272452
KW
1506static int bdrv_open_flags(BlockDriverState *bs, int flags)
1507{
61de4c68 1508 int open_flags = flags;
bdb73476 1509 GLOBAL_STATE_CODE();
7b272452
KW
1510
1511 /*
1512 * Clear flags that are internal to the block layer before opening the
1513 * image.
1514 */
20cca275 1515 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
7b272452 1516
7b272452
KW
1517 return open_flags;
1518}
1519
91a097e7
KW
1520static void update_flags_from_options(int *flags, QemuOpts *opts)
1521{
bdb73476
EGE
1522 GLOBAL_STATE_CODE();
1523
2a3d4331 1524 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
91a097e7 1525
57f9db9a 1526 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
91a097e7
KW
1527 *flags |= BDRV_O_NO_FLUSH;
1528 }
1529
57f9db9a 1530 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
91a097e7
KW
1531 *flags |= BDRV_O_NOCACHE;
1532 }
f87a0e29 1533
57f9db9a 1534 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
f87a0e29
AG
1535 *flags |= BDRV_O_RDWR;
1536 }
1537
e35bdc12
KW
1538 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1539 *flags |= BDRV_O_AUTO_RDONLY;
1540 }
91a097e7
KW
1541}
1542
1543static void update_options_from_flags(QDict *options, int flags)
1544{
bdb73476 1545 GLOBAL_STATE_CODE();
91a097e7 1546 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
46f5ac20 1547 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
91a097e7
KW
1548 }
1549 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
46f5ac20
EB
1550 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1551 flags & BDRV_O_NO_FLUSH);
91a097e7 1552 }
f87a0e29 1553 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
46f5ac20 1554 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
f87a0e29 1555 }
e35bdc12
KW
1556 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1557 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1558 flags & BDRV_O_AUTO_RDONLY);
1559 }
91a097e7
KW
1560}
1561
636ea370
KW
1562static void bdrv_assign_node_name(BlockDriverState *bs,
1563 const char *node_name,
1564 Error **errp)
6913c0c2 1565{
15489c76 1566 char *gen_node_name = NULL;
bdb73476 1567 GLOBAL_STATE_CODE();
6913c0c2 1568
15489c76
JC
1569 if (!node_name) {
1570 node_name = gen_node_name = id_generate(ID_BLOCK);
1571 } else if (!id_wellformed(node_name)) {
1572 /*
1573 * Check for empty string or invalid characters, but not if it is
1574 * generated (generated names use characters not available to the user)
1575 */
785ec4b1 1576 error_setg(errp, "Invalid node-name: '%s'", node_name);
636ea370 1577 return;
6913c0c2
BC
1578 }
1579
0c5e94ee 1580 /* takes care of avoiding namespaces collisions */
7f06d47e 1581 if (blk_by_name(node_name)) {
0c5e94ee
BC
1582 error_setg(errp, "node-name=%s is conflicting with a device id",
1583 node_name);
15489c76 1584 goto out;
0c5e94ee
BC
1585 }
1586
6913c0c2
BC
1587 /* takes care of avoiding duplicates node names */
1588 if (bdrv_find_node(node_name)) {
785ec4b1 1589 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
15489c76 1590 goto out;
6913c0c2
BC
1591 }
1592
824808dd
KW
1593 /* Make sure that the node name isn't truncated */
1594 if (strlen(node_name) >= sizeof(bs->node_name)) {
1595 error_setg(errp, "Node name too long");
1596 goto out;
1597 }
1598
6913c0c2
BC
1599 /* copy node name into the bs and insert it into the graph list */
1600 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1601 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
15489c76
JC
1602out:
1603 g_free(gen_node_name);
6913c0c2
BC
1604}
1605
01a56501
KW
1606static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1607 const char *node_name, QDict *options,
1608 int open_flags, Error **errp)
1609{
1610 Error *local_err = NULL;
0f12264e 1611 int i, ret;
da359909 1612 GLOBAL_STATE_CODE();
01a56501
KW
1613
1614 bdrv_assign_node_name(bs, node_name, &local_err);
1615 if (local_err) {
1616 error_propagate(errp, local_err);
1617 return -EINVAL;
1618 }
1619
1620 bs->drv = drv;
1621 bs->opaque = g_malloc0(drv->instance_size);
1622
1623 if (drv->bdrv_file_open) {
1624 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1625 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
680c7f96 1626 } else if (drv->bdrv_open) {
01a56501 1627 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
680c7f96
KW
1628 } else {
1629 ret = 0;
01a56501
KW
1630 }
1631
1632 if (ret < 0) {
1633 if (local_err) {
1634 error_propagate(errp, local_err);
1635 } else if (bs->filename[0]) {
1636 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1637 } else {
1638 error_setg_errno(errp, -ret, "Could not open image");
1639 }
180ca19a 1640 goto open_failed;
01a56501
KW
1641 }
1642
1643 ret = refresh_total_sectors(bs, bs->total_sectors);
1644 if (ret < 0) {
1645 error_setg_errno(errp, -ret, "Could not refresh total sector count");
180ca19a 1646 return ret;
01a56501
KW
1647 }
1648
1e4c797c 1649 bdrv_refresh_limits(bs, NULL, &local_err);
01a56501
KW
1650 if (local_err) {
1651 error_propagate(errp, local_err);
180ca19a 1652 return -EINVAL;
01a56501
KW
1653 }
1654
1655 assert(bdrv_opt_mem_align(bs) != 0);
1656 assert(bdrv_min_mem_align(bs) != 0);
1657 assert(is_power_of_2(bs->bl.request_alignment));
1658
0f12264e
KW
1659 for (i = 0; i < bs->quiesce_counter; i++) {
1660 if (drv->bdrv_co_drain_begin) {
1661 drv->bdrv_co_drain_begin(bs);
1662 }
1663 }
1664
01a56501 1665 return 0;
180ca19a
MP
1666open_failed:
1667 bs->drv = NULL;
1668 if (bs->file != NULL) {
1669 bdrv_unref_child(bs, bs->file);
1670 bs->file = NULL;
1671 }
01a56501
KW
1672 g_free(bs->opaque);
1673 bs->opaque = NULL;
01a56501
KW
1674 return ret;
1675}
1676
621d1737
VSO
1677/*
1678 * Create and open a block node.
1679 *
1680 * @options is a QDict of options to pass to the block drivers, or NULL for an
1681 * empty set of options. The reference to the QDict belongs to the block layer
1682 * after the call (even on failure), so if the caller intends to reuse the
1683 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1684 */
1685BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1686 const char *node_name,
1687 QDict *options, int flags,
1688 Error **errp)
680c7f96
KW
1689{
1690 BlockDriverState *bs;
1691 int ret;
1692
f791bf7f
EGE
1693 GLOBAL_STATE_CODE();
1694
680c7f96
KW
1695 bs = bdrv_new();
1696 bs->open_flags = flags;
621d1737
VSO
1697 bs->options = options ?: qdict_new();
1698 bs->explicit_options = qdict_clone_shallow(bs->options);
680c7f96
KW
1699 bs->opaque = NULL;
1700
1701 update_options_from_flags(bs->options, flags);
1702
1703 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1704 if (ret < 0) {
cb3e7f08 1705 qobject_unref(bs->explicit_options);
180ca19a 1706 bs->explicit_options = NULL;
cb3e7f08 1707 qobject_unref(bs->options);
180ca19a 1708 bs->options = NULL;
680c7f96
KW
1709 bdrv_unref(bs);
1710 return NULL;
1711 }
1712
1713 return bs;
1714}
1715
621d1737
VSO
1716/* Create and open a block node. */
1717BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1718 int flags, Error **errp)
1719{
f791bf7f 1720 GLOBAL_STATE_CODE();
621d1737
VSO
1721 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1722}
1723
c5f3014b 1724QemuOptsList bdrv_runtime_opts = {
18edf289
KW
1725 .name = "bdrv_common",
1726 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1727 .desc = {
1728 {
1729 .name = "node-name",
1730 .type = QEMU_OPT_STRING,
1731 .help = "Node name of the block device node",
1732 },
62392ebb
KW
1733 {
1734 .name = "driver",
1735 .type = QEMU_OPT_STRING,
1736 .help = "Block driver to use for the node",
1737 },
91a097e7
KW
1738 {
1739 .name = BDRV_OPT_CACHE_DIRECT,
1740 .type = QEMU_OPT_BOOL,
1741 .help = "Bypass software writeback cache on the host",
1742 },
1743 {
1744 .name = BDRV_OPT_CACHE_NO_FLUSH,
1745 .type = QEMU_OPT_BOOL,
1746 .help = "Ignore flush requests",
1747 },
f87a0e29
AG
1748 {
1749 .name = BDRV_OPT_READ_ONLY,
1750 .type = QEMU_OPT_BOOL,
1751 .help = "Node is opened in read-only mode",
1752 },
e35bdc12
KW
1753 {
1754 .name = BDRV_OPT_AUTO_READ_ONLY,
1755 .type = QEMU_OPT_BOOL,
1756 .help = "Node can become read-only if opening read-write fails",
1757 },
692e01a2
KW
1758 {
1759 .name = "detect-zeroes",
1760 .type = QEMU_OPT_STRING,
1761 .help = "try to optimize zero writes (off, on, unmap)",
1762 },
818584a4 1763 {
415bbca8 1764 .name = BDRV_OPT_DISCARD,
818584a4
KW
1765 .type = QEMU_OPT_STRING,
1766 .help = "discard operation (ignore/off, unmap/on)",
1767 },
5a9347c6
FZ
1768 {
1769 .name = BDRV_OPT_FORCE_SHARE,
1770 .type = QEMU_OPT_BOOL,
1771 .help = "always accept other writers (default: off)",
1772 },
18edf289
KW
1773 { /* end of list */ }
1774 },
1775};
1776
5a5e7f8c
ML
1777QemuOptsList bdrv_create_opts_simple = {
1778 .name = "simple-create-opts",
1779 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
fd17146c
HR
1780 .desc = {
1781 {
1782 .name = BLOCK_OPT_SIZE,
1783 .type = QEMU_OPT_SIZE,
1784 .help = "Virtual disk size"
1785 },
1786 {
1787 .name = BLOCK_OPT_PREALLOC,
1788 .type = QEMU_OPT_STRING,
1789 .help = "Preallocation mode (allowed values: off)"
1790 },
1791 { /* end of list */ }
1792 }
1793};
1794
57915332
KW
1795/*
1796 * Common part for opening disk images and files
b6ad491a
KW
1797 *
1798 * Removes all processed options from *options.
57915332 1799 */
5696c6e3 1800static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
82dc8b41 1801 QDict *options, Error **errp)
57915332
KW
1802{
1803 int ret, open_flags;
035fccdf 1804 const char *filename;
62392ebb 1805 const char *driver_name = NULL;
6913c0c2 1806 const char *node_name = NULL;
818584a4 1807 const char *discard;
18edf289 1808 QemuOpts *opts;
62392ebb 1809 BlockDriver *drv;
34b5d2c6 1810 Error *local_err = NULL;
307261b2 1811 bool ro;
57915332 1812
6405875c 1813 assert(bs->file == NULL);
707ff828 1814 assert(options != NULL && bs->options != options);
bdb73476 1815 GLOBAL_STATE_CODE();
57915332 1816
62392ebb 1817 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
af175e85 1818 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
62392ebb
KW
1819 ret = -EINVAL;
1820 goto fail_opts;
1821 }
1822
9b7e8691
AG
1823 update_flags_from_options(&bs->open_flags, opts);
1824
62392ebb
KW
1825 driver_name = qemu_opt_get(opts, "driver");
1826 drv = bdrv_find_format(driver_name);
1827 assert(drv != NULL);
1828
5a9347c6
FZ
1829 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1830
1831 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1832 error_setg(errp,
1833 BDRV_OPT_FORCE_SHARE
1834 "=on can only be used with read-only images");
1835 ret = -EINVAL;
1836 goto fail_opts;
1837 }
1838
45673671 1839 if (file != NULL) {
f30c66ba 1840 bdrv_refresh_filename(blk_bs(file));
5696c6e3 1841 filename = blk_bs(file)->filename;
45673671 1842 } else {
129c7d1c
MA
1843 /*
1844 * Caution: while qdict_get_try_str() is fine, getting
1845 * non-string types would require more care. When @options
1846 * come from -blockdev or blockdev_add, its members are typed
1847 * according to the QAPI schema, but when they come from
1848 * -drive, they're all QString.
1849 */
45673671
KW
1850 filename = qdict_get_try_str(options, "filename");
1851 }
1852
4a008240 1853 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
765003db
KW
1854 error_setg(errp, "The '%s' block driver requires a file name",
1855 drv->format_name);
18edf289
KW
1856 ret = -EINVAL;
1857 goto fail_opts;
6913c0c2 1858 }
6913c0c2 1859
82dc8b41
KW
1860 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1861 drv->format_name);
62392ebb 1862
307261b2
VSO
1863 ro = bdrv_is_read_only(bs);
1864
1865 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1866 if (!ro && bdrv_is_whitelisted(drv, true)) {
8be25de6
KW
1867 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1868 } else {
1869 ret = -ENOTSUP;
1870 }
1871 if (ret < 0) {
1872 error_setg(errp,
307261b2 1873 !ro && bdrv_is_whitelisted(drv, true)
8be25de6
KW
1874 ? "Driver '%s' can only be used for read-only devices"
1875 : "Driver '%s' is not whitelisted",
1876 drv->format_name);
1877 goto fail_opts;
1878 }
b64ec4e4 1879 }
57915332 1880
d3faa13e 1881 /* bdrv_new() and bdrv_close() make it so */
d73415a3 1882 assert(qatomic_read(&bs->copy_on_read) == 0);
d3faa13e 1883
82dc8b41 1884 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
307261b2 1885 if (!ro) {
0ebd24e0
KW
1886 bdrv_enable_copy_on_read(bs);
1887 } else {
1888 error_setg(errp, "Can't use copy-on-read on read-only device");
18edf289
KW
1889 ret = -EINVAL;
1890 goto fail_opts;
0ebd24e0 1891 }
53fec9d3
SH
1892 }
1893
415bbca8 1894 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
818584a4
KW
1895 if (discard != NULL) {
1896 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1897 error_setg(errp, "Invalid discard option");
1898 ret = -EINVAL;
1899 goto fail_opts;
1900 }
1901 }
1902
543770bd
AG
1903 bs->detect_zeroes =
1904 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1905 if (local_err) {
1906 error_propagate(errp, local_err);
1907 ret = -EINVAL;
1908 goto fail_opts;
692e01a2
KW
1909 }
1910
c2ad1b0c
KW
1911 if (filename != NULL) {
1912 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1913 } else {
1914 bs->filename[0] = '\0';
1915 }
91af7014 1916 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
57915332 1917
66f82cee 1918 /* Open the image, either directly or using a protocol */
82dc8b41 1919 open_flags = bdrv_open_flags(bs, bs->open_flags);
01a56501 1920 node_name = qemu_opt_get(opts, "node-name");
57915332 1921
01a56501
KW
1922 assert(!drv->bdrv_file_open || file == NULL);
1923 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
51762288 1924 if (ret < 0) {
01a56501 1925 goto fail_opts;
3baca891
KW
1926 }
1927
18edf289 1928 qemu_opts_del(opts);
57915332
KW
1929 return 0;
1930
18edf289
KW
1931fail_opts:
1932 qemu_opts_del(opts);
57915332
KW
1933 return ret;
1934}
1935
5e5c4f63
KW
1936static QDict *parse_json_filename(const char *filename, Error **errp)
1937{
1938 QObject *options_obj;
1939 QDict *options;
1940 int ret;
bdb73476 1941 GLOBAL_STATE_CODE();
5e5c4f63
KW
1942
1943 ret = strstart(filename, "json:", &filename);
1944 assert(ret);
1945
5577fff7 1946 options_obj = qobject_from_json(filename, errp);
5e5c4f63 1947 if (!options_obj) {
5577fff7 1948 error_prepend(errp, "Could not parse the JSON options: ");
5e5c4f63
KW
1949 return NULL;
1950 }
1951
7dc847eb 1952 options = qobject_to(QDict, options_obj);
ca6b6e1e 1953 if (!options) {
cb3e7f08 1954 qobject_unref(options_obj);
5e5c4f63
KW
1955 error_setg(errp, "Invalid JSON object given");
1956 return NULL;
1957 }
1958
5e5c4f63
KW
1959 qdict_flatten(options);
1960
1961 return options;
1962}
1963
de3b53f0
KW
1964static void parse_json_protocol(QDict *options, const char **pfilename,
1965 Error **errp)
1966{
1967 QDict *json_options;
1968 Error *local_err = NULL;
bdb73476 1969 GLOBAL_STATE_CODE();
de3b53f0
KW
1970
1971 /* Parse json: pseudo-protocol */
1972 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1973 return;
1974 }
1975
1976 json_options = parse_json_filename(*pfilename, &local_err);
1977 if (local_err) {
1978 error_propagate(errp, local_err);
1979 return;
1980 }
1981
1982 /* Options given in the filename have lower priority than options
1983 * specified directly */
1984 qdict_join(options, json_options, false);
cb3e7f08 1985 qobject_unref(json_options);
de3b53f0
KW
1986 *pfilename = NULL;
1987}
1988
b6ce07aa 1989/*
f54120ff
KW
1990 * Fills in default options for opening images and converts the legacy
1991 * filename/flags pair to option QDict entries.
53a29513
HR
1992 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1993 * block driver has been specified explicitly.
b6ce07aa 1994 */
de3b53f0 1995static int bdrv_fill_options(QDict **options, const char *filename,
053e1578 1996 int *flags, Error **errp)
ea2384d3 1997{
c2ad1b0c 1998 const char *drvname;
53a29513 1999 bool protocol = *flags & BDRV_O_PROTOCOL;
e3fa4bfa 2000 bool parse_filename = false;
053e1578 2001 BlockDriver *drv = NULL;
34b5d2c6 2002 Error *local_err = NULL;
83f64091 2003
da359909
EGE
2004 GLOBAL_STATE_CODE();
2005
129c7d1c
MA
2006 /*
2007 * Caution: while qdict_get_try_str() is fine, getting non-string
2008 * types would require more care. When @options come from
2009 * -blockdev or blockdev_add, its members are typed according to
2010 * the QAPI schema, but when they come from -drive, they're all
2011 * QString.
2012 */
53a29513 2013 drvname = qdict_get_try_str(*options, "driver");
053e1578
HR
2014 if (drvname) {
2015 drv = bdrv_find_format(drvname);
2016 if (!drv) {
2017 error_setg(errp, "Unknown driver '%s'", drvname);
2018 return -ENOENT;
2019 }
2020 /* If the user has explicitly specified the driver, this choice should
2021 * override the BDRV_O_PROTOCOL flag */
2022 protocol = drv->bdrv_file_open;
53a29513
HR
2023 }
2024
2025 if (protocol) {
2026 *flags |= BDRV_O_PROTOCOL;
2027 } else {
2028 *flags &= ~BDRV_O_PROTOCOL;
2029 }
2030
91a097e7
KW
2031 /* Translate cache options from flags into options */
2032 update_options_from_flags(*options, *flags);
2033
035fccdf 2034 /* Fetch the file name from the options QDict if necessary */
17b005f1 2035 if (protocol && filename) {
f54120ff 2036 if (!qdict_haskey(*options, "filename")) {
46f5ac20 2037 qdict_put_str(*options, "filename", filename);
f54120ff
KW
2038 parse_filename = true;
2039 } else {
2040 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2041 "the same time");
2042 return -EINVAL;
2043 }
035fccdf
KW
2044 }
2045
c2ad1b0c 2046 /* Find the right block driver */
129c7d1c 2047 /* See cautionary note on accessing @options above */
f54120ff 2048 filename = qdict_get_try_str(*options, "filename");
f54120ff 2049
053e1578
HR
2050 if (!drvname && protocol) {
2051 if (filename) {
2052 drv = bdrv_find_protocol(filename, parse_filename, errp);
17b005f1 2053 if (!drv) {
053e1578 2054 return -EINVAL;
17b005f1 2055 }
053e1578
HR
2056
2057 drvname = drv->format_name;
46f5ac20 2058 qdict_put_str(*options, "driver", drvname);
053e1578
HR
2059 } else {
2060 error_setg(errp, "Must specify either driver or file");
2061 return -EINVAL;
98289620 2062 }
c2ad1b0c
KW
2063 }
2064
17b005f1 2065 assert(drv || !protocol);
c2ad1b0c 2066
f54120ff 2067 /* Driver-specific filename parsing */
17b005f1 2068 if (drv && drv->bdrv_parse_filename && parse_filename) {
5acd9d81 2069 drv->bdrv_parse_filename(filename, *options, &local_err);
84d18f06 2070 if (local_err) {
34b5d2c6 2071 error_propagate(errp, local_err);
f54120ff 2072 return -EINVAL;
6963a30d 2073 }
cd5d031e
HR
2074
2075 if (!drv->bdrv_needs_filename) {
2076 qdict_del(*options, "filename");
cd5d031e 2077 }
6963a30d
KW
2078 }
2079
f54120ff
KW
2080 return 0;
2081}
2082
148eb13c
KW
2083typedef struct BlockReopenQueueEntry {
2084 bool prepared;
69b736e7 2085 bool perms_checked;
148eb13c 2086 BDRVReopenState state;
859443b0 2087 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
148eb13c
KW
2088} BlockReopenQueueEntry;
2089
2090/*
2091 * Return the flags that @bs will have after the reopens in @q have
2092 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2093 * return the current flags.
2094 */
2095static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2096{
2097 BlockReopenQueueEntry *entry;
2098
2099 if (q != NULL) {
859443b0 2100 QTAILQ_FOREACH(entry, q, entry) {
148eb13c
KW
2101 if (entry->state.bs == bs) {
2102 return entry->state.flags;
2103 }
2104 }
2105 }
2106
2107 return bs->open_flags;
2108}
2109
2110/* Returns whether the image file can be written to after the reopen queue @q
2111 * has been successfully applied, or right now if @q is NULL. */
cc022140
HR
2112static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2113 BlockReopenQueue *q)
148eb13c
KW
2114{
2115 int flags = bdrv_reopen_get_flags(q, bs);
2116
2117 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2118}
2119
cc022140
HR
2120/*
2121 * Return whether the BDS can be written to. This is not necessarily
2122 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2123 * be written to but do not count as read-only images.
2124 */
2125bool bdrv_is_writable(BlockDriverState *bs)
2126{
384a48fb 2127 IO_CODE();
cc022140
HR
2128 return bdrv_is_writable_after_reopen(bs, NULL);
2129}
2130
3bf416ba
VSO
2131static char *bdrv_child_user_desc(BdrvChild *c)
2132{
f0c28327 2133 GLOBAL_STATE_CODE();
da261b69 2134 return c->klass->get_parent_desc(c);
3bf416ba
VSO
2135}
2136
30ebb9aa
VSO
2137/*
2138 * Check that @a allows everything that @b needs. @a and @b must reference same
2139 * child node.
2140 */
3bf416ba
VSO
2141static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2142{
30ebb9aa
VSO
2143 const char *child_bs_name;
2144 g_autofree char *a_user = NULL;
2145 g_autofree char *b_user = NULL;
2146 g_autofree char *perms = NULL;
2147
2148 assert(a->bs);
2149 assert(a->bs == b->bs);
862fded9 2150 GLOBAL_STATE_CODE();
3bf416ba
VSO
2151
2152 if ((b->perm & a->shared_perm) == b->perm) {
2153 return true;
2154 }
2155
30ebb9aa
VSO
2156 child_bs_name = bdrv_get_node_name(b->bs);
2157 a_user = bdrv_child_user_desc(a);
2158 b_user = bdrv_child_user_desc(b);
2159 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2160
2161 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2162 "both required by %s (uses node '%s' as '%s' child) and "
2163 "unshared by %s (uses node '%s' as '%s' child).",
2164 child_bs_name, perms,
2165 b_user, child_bs_name, b->name,
2166 a_user, child_bs_name, a->name);
3bf416ba
VSO
2167
2168 return false;
2169}
2170
9397c14f 2171static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
3bf416ba
VSO
2172{
2173 BdrvChild *a, *b;
862fded9 2174 GLOBAL_STATE_CODE();
3bf416ba
VSO
2175
2176 /*
2177 * During the loop we'll look at each pair twice. That's correct because
2178 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2179 * directions.
2180 */
2181 QLIST_FOREACH(a, &bs->parents, next_parent) {
2182 QLIST_FOREACH(b, &bs->parents, next_parent) {
9397c14f 2183 if (a == b) {
3bf416ba
VSO
2184 continue;
2185 }
2186
2187 if (!bdrv_a_allow_b(a, b, errp)) {
2188 return true;
2189 }
2190 }
2191 }
2192
2193 return false;
2194}
2195
ffd1a5a2 2196static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
e5d8a406
HR
2197 BdrvChild *c, BdrvChildRole role,
2198 BlockReopenQueue *reopen_queue,
ffd1a5a2
FZ
2199 uint64_t parent_perm, uint64_t parent_shared,
2200 uint64_t *nperm, uint64_t *nshared)
2201{
0b3ca76e 2202 assert(bs->drv && bs->drv->bdrv_child_perm);
da359909 2203 GLOBAL_STATE_CODE();
e5d8a406 2204 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
0b3ca76e
AG
2205 parent_perm, parent_shared,
2206 nperm, nshared);
e0995dc3 2207 /* TODO Take force_share from reopen_queue */
ffd1a5a2
FZ
2208 if (child_bs && child_bs->force_share) {
2209 *nshared = BLK_PERM_ALL;
2210 }
2211}
2212
bd57f8f7
VSO
2213/*
2214 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2215 * nodes that are already in the @list, of course) so that final list is
2216 * topologically sorted. Return the result (GSList @list object is updated, so
2217 * don't use old reference after function call).
2218 *
2219 * On function start @list must be already topologically sorted and for any node
2220 * in the @list the whole subtree of the node must be in the @list as well. The
2221 * simplest way to satisfy this criteria: use only result of
2222 * bdrv_topological_dfs() or NULL as @list parameter.
2223 */
2224static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2225 BlockDriverState *bs)
2226{
2227 BdrvChild *child;
2228 g_autoptr(GHashTable) local_found = NULL;
2229
bdb73476
EGE
2230 GLOBAL_STATE_CODE();
2231
bd57f8f7
VSO
2232 if (!found) {
2233 assert(!list);
2234 found = local_found = g_hash_table_new(NULL, NULL);
2235 }
2236
2237 if (g_hash_table_contains(found, bs)) {
2238 return list;
2239 }
2240 g_hash_table_add(found, bs);
2241
2242 QLIST_FOREACH(child, &bs->children, next) {
2243 list = bdrv_topological_dfs(list, found, child->bs);
2244 }
2245
2246 return g_slist_prepend(list, bs);
2247}
2248
ecb776bd
VSO
2249typedef struct BdrvChildSetPermState {
2250 BdrvChild *child;
2251 uint64_t old_perm;
2252 uint64_t old_shared_perm;
2253} BdrvChildSetPermState;
b0defa83
VSO
2254
2255static void bdrv_child_set_perm_abort(void *opaque)
2256{
ecb776bd
VSO
2257 BdrvChildSetPermState *s = opaque;
2258
862fded9
EGE
2259 GLOBAL_STATE_CODE();
2260
ecb776bd
VSO
2261 s->child->perm = s->old_perm;
2262 s->child->shared_perm = s->old_shared_perm;
b0defa83
VSO
2263}
2264
2265static TransactionActionDrv bdrv_child_set_pem_drv = {
2266 .abort = bdrv_child_set_perm_abort,
ecb776bd 2267 .clean = g_free,
b0defa83
VSO
2268};
2269
ecb776bd
VSO
2270static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2271 uint64_t shared, Transaction *tran)
b0defa83 2272{
ecb776bd 2273 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
862fded9 2274 GLOBAL_STATE_CODE();
ecb776bd
VSO
2275
2276 *s = (BdrvChildSetPermState) {
2277 .child = c,
2278 .old_perm = c->perm,
2279 .old_shared_perm = c->shared_perm,
2280 };
b0defa83
VSO
2281
2282 c->perm = perm;
2283 c->shared_perm = shared;
2284
ecb776bd 2285 tran_add(tran, &bdrv_child_set_pem_drv, s);
b0defa83
VSO
2286}
2287
2513ef59
VSO
2288static void bdrv_drv_set_perm_commit(void *opaque)
2289{
2290 BlockDriverState *bs = opaque;
2291 uint64_t cumulative_perms, cumulative_shared_perms;
da359909 2292 GLOBAL_STATE_CODE();
2513ef59
VSO
2293
2294 if (bs->drv->bdrv_set_perm) {
2295 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2296 &cumulative_shared_perms);
2297 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2298 }
2299}
2300
2301static void bdrv_drv_set_perm_abort(void *opaque)
2302{
2303 BlockDriverState *bs = opaque;
da359909 2304 GLOBAL_STATE_CODE();
2513ef59
VSO
2305
2306 if (bs->drv->bdrv_abort_perm_update) {
2307 bs->drv->bdrv_abort_perm_update(bs);
2308 }
2309}
2310
2311TransactionActionDrv bdrv_drv_set_perm_drv = {
2312 .abort = bdrv_drv_set_perm_abort,
2313 .commit = bdrv_drv_set_perm_commit,
2314};
2315
2316static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2317 uint64_t shared_perm, Transaction *tran,
2318 Error **errp)
2319{
da359909 2320 GLOBAL_STATE_CODE();
2513ef59
VSO
2321 if (!bs->drv) {
2322 return 0;
2323 }
2324
2325 if (bs->drv->bdrv_check_perm) {
2326 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2327 if (ret < 0) {
2328 return ret;
2329 }
2330 }
2331
2332 if (tran) {
2333 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2334 }
2335
2336 return 0;
2337}
2338
0978623e
VSO
2339typedef struct BdrvReplaceChildState {
2340 BdrvChild *child;
82b54cf5 2341 BdrvChild **childp;
0978623e 2342 BlockDriverState *old_bs;
b0a9f6fe 2343 bool free_empty_child;
0978623e
VSO
2344} BdrvReplaceChildState;
2345
2346static void bdrv_replace_child_commit(void *opaque)
2347{
2348 BdrvReplaceChildState *s = opaque;
bdb73476 2349 GLOBAL_STATE_CODE();
0978623e 2350
b0a9f6fe
HR
2351 if (s->free_empty_child && !s->child->bs) {
2352 bdrv_child_free(s->child);
2353 }
0978623e
VSO
2354 bdrv_unref(s->old_bs);
2355}
2356
2357static void bdrv_replace_child_abort(void *opaque)
2358{
2359 BdrvReplaceChildState *s = opaque;
2360 BlockDriverState *new_bs = s->child->bs;
2361
bdb73476 2362 GLOBAL_STATE_CODE();
82b54cf5
HR
2363 /*
2364 * old_bs reference is transparently moved from @s to s->child.
2365 *
2366 * Pass &s->child here instead of s->childp, because:
2367 * (1) s->old_bs must be non-NULL, so bdrv_replace_child_noperm() will not
2368 * modify the BdrvChild * pointer we indirectly pass to it, i.e. it
2369 * will not modify s->child. From that perspective, it does not matter
2370 * whether we pass s->childp or &s->child.
82b54cf5
HR
2371 * (2) If new_bs is not NULL, s->childp will be NULL. We then cannot use
2372 * it here.
2373 * (3) If new_bs is NULL, *s->childp will have been NULLed by
2374 * bdrv_replace_child_tran()'s bdrv_replace_child_noperm() call, and we
2375 * must not pass a NULL *s->childp here.
82b54cf5
HR
2376 *
2377 * So whether new_bs was NULL or not, we cannot pass s->childp here; and in
2378 * any case, there is no reason to pass it anyway.
2379 */
b0a9f6fe
HR
2380 bdrv_replace_child_noperm(&s->child, s->old_bs, true);
2381 /*
2382 * The child was pre-existing, so s->old_bs must be non-NULL, and
2383 * s->child thus must not have been freed
2384 */
2385 assert(s->child != NULL);
2386 if (!new_bs) {
2387 /* As described above, *s->childp was cleared, so restore it */
2388 assert(s->childp != NULL);
2389 *s->childp = s->child;
2390 }
0978623e
VSO
2391 bdrv_unref(new_bs);
2392}
2393
2394static TransactionActionDrv bdrv_replace_child_drv = {
2395 .commit = bdrv_replace_child_commit,
2396 .abort = bdrv_replace_child_abort,
2397 .clean = g_free,
2398};
2399
2400/*
4bf021db 2401 * bdrv_replace_child_tran
0978623e
VSO
2402 *
2403 * Note: real unref of old_bs is done only on commit.
4bf021db
VSO
2404 *
2405 * The function doesn't update permissions, caller is responsible for this.
82b54cf5 2406 *
b0a9f6fe
HR
2407 * (*childp)->bs must not be NULL.
2408 *
82b54cf5
HR
2409 * Note that if new_bs == NULL, @childp is stored in a state object attached
2410 * to @tran, so that the old child can be reinstated in the abort handler.
2411 * Therefore, if @new_bs can be NULL, @childp must stay valid until the
2412 * transaction is committed or aborted.
2413 *
b0a9f6fe
HR
2414 * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2415 * freed (on commit). @free_empty_child should only be false if the
2416 * caller will free the BDrvChild themselves (which may be important
2417 * if this is in turn called in another transactional context).
0978623e 2418 */
82b54cf5
HR
2419static void bdrv_replace_child_tran(BdrvChild **childp,
2420 BlockDriverState *new_bs,
b0a9f6fe
HR
2421 Transaction *tran,
2422 bool free_empty_child)
0978623e
VSO
2423{
2424 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2425 *s = (BdrvReplaceChildState) {
82b54cf5
HR
2426 .child = *childp,
2427 .childp = new_bs == NULL ? childp : NULL,
2428 .old_bs = (*childp)->bs,
b0a9f6fe 2429 .free_empty_child = free_empty_child,
0978623e
VSO
2430 };
2431 tran_add(tran, &bdrv_replace_child_drv, s);
2432
b0a9f6fe
HR
2433 /* The abort handler relies on this */
2434 assert(s->old_bs != NULL);
2435
0978623e
VSO
2436 if (new_bs) {
2437 bdrv_ref(new_bs);
2438 }
b0a9f6fe
HR
2439 /*
2440 * Pass free_empty_child=false, we will free the child (if
2441 * necessary) in bdrv_replace_child_commit() (if our
2442 * @free_empty_child parameter was true).
2443 */
2444 bdrv_replace_child_noperm(childp, new_bs, false);
82b54cf5 2445 /* old_bs reference is transparently moved from *childp to @s */
0978623e
VSO
2446}
2447
33a610c3 2448/*
c20555e1
VSO
2449 * Refresh permissions in @bs subtree. The function is intended to be called
2450 * after some graph modification that was done without permission update.
33a610c3 2451 */
c20555e1
VSO
2452static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2453 Transaction *tran, Error **errp)
33a610c3
KW
2454{
2455 BlockDriver *drv = bs->drv;
2456 BdrvChild *c;
2457 int ret;
c20555e1 2458 uint64_t cumulative_perms, cumulative_shared_perms;
862fded9 2459 GLOBAL_STATE_CODE();
c20555e1
VSO
2460
2461 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
33a610c3
KW
2462
2463 /* Write permissions never work with read-only images */
2464 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
cc022140 2465 !bdrv_is_writable_after_reopen(bs, q))
33a610c3 2466 {
481e0eee
HR
2467 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2468 error_setg(errp, "Block node is read-only");
2469 } else {
c20555e1
VSO
2470 error_setg(errp, "Read-only block node '%s' cannot support "
2471 "read-write users", bdrv_get_node_name(bs));
481e0eee
HR
2472 }
2473
33a610c3
KW
2474 return -EPERM;
2475 }
2476
9c60a5d1
KW
2477 /*
2478 * Unaligned requests will automatically be aligned to bl.request_alignment
2479 * and without RESIZE we can't extend requests to write to space beyond the
2480 * end of the image, so it's required that the image size is aligned.
2481 */
2482 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2483 !(cumulative_perms & BLK_PERM_RESIZE))
2484 {
2485 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2486 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2487 "Image size is not a multiple of request "
2488 "alignment");
2489 return -EPERM;
2490 }
2491 }
2492
33a610c3
KW
2493 /* Check this node */
2494 if (!drv) {
2495 return 0;
2496 }
2497
b1d2bbeb 2498 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
2513ef59
VSO
2499 errp);
2500 if (ret < 0) {
2501 return ret;
33a610c3
KW
2502 }
2503
78e421c9 2504 /* Drivers that never have children can omit .bdrv_child_perm() */
33a610c3 2505 if (!drv->bdrv_child_perm) {
78e421c9 2506 assert(QLIST_EMPTY(&bs->children));
33a610c3
KW
2507 return 0;
2508 }
2509
2510 /* Check all children */
2511 QLIST_FOREACH(c, &bs->children, next) {
2512 uint64_t cur_perm, cur_shared;
9eab1544 2513
e5d8a406 2514 bdrv_child_perm(bs, c->bs, c, c->role, q,
ffd1a5a2
FZ
2515 cumulative_perms, cumulative_shared_perms,
2516 &cur_perm, &cur_shared);
ecb776bd 2517 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
bd57f8f7
VSO
2518 }
2519
2520 return 0;
2521}
3ef45e02 2522
25409807
VSO
2523static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2524 Transaction *tran, Error **errp)
bd57f8f7
VSO
2525{
2526 int ret;
b1d2bbeb 2527 BlockDriverState *bs;
862fded9 2528 GLOBAL_STATE_CODE();
bd57f8f7 2529
b1d2bbeb
VSO
2530 for ( ; list; list = list->next) {
2531 bs = list->data;
2532
9397c14f 2533 if (bdrv_parent_perms_conflict(bs, errp)) {
b1d2bbeb 2534 return -EINVAL;
bd57f8f7
VSO
2535 }
2536
c20555e1 2537 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
33a610c3
KW
2538 if (ret < 0) {
2539 return ret;
2540 }
2541 }
2542
2543 return 0;
2544}
2545
c7a0f2be
KW
2546void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2547 uint64_t *shared_perm)
33a610c3
KW
2548{
2549 BdrvChild *c;
2550 uint64_t cumulative_perms = 0;
2551 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2552
b4ad82aa
EGE
2553 GLOBAL_STATE_CODE();
2554
33a610c3
KW
2555 QLIST_FOREACH(c, &bs->parents, next_parent) {
2556 cumulative_perms |= c->perm;
2557 cumulative_shared_perms &= c->shared_perm;
2558 }
2559
2560 *perm = cumulative_perms;
2561 *shared_perm = cumulative_shared_perms;
2562}
2563
5176196c 2564char *bdrv_perm_names(uint64_t perm)
d083319f
KW
2565{
2566 struct perm_name {
2567 uint64_t perm;
2568 const char *name;
2569 } permissions[] = {
2570 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2571 { BLK_PERM_WRITE, "write" },
2572 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2573 { BLK_PERM_RESIZE, "resize" },
d083319f
KW
2574 { 0, NULL }
2575 };
2576
e2a7423a 2577 GString *result = g_string_sized_new(30);
d083319f
KW
2578 struct perm_name *p;
2579
2580 for (p = permissions; p->name; p++) {
2581 if (perm & p->perm) {
e2a7423a
AG
2582 if (result->len > 0) {
2583 g_string_append(result, ", ");
2584 }
2585 g_string_append(result, p->name);
d083319f
KW
2586 }
2587 }
2588
e2a7423a 2589 return g_string_free(result, FALSE);
d083319f
KW
2590}
2591
33a610c3 2592
071b474f 2593static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
bb87e4d1
VSO
2594{
2595 int ret;
b1d2bbeb
VSO
2596 Transaction *tran = tran_new();
2597 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
862fded9 2598 GLOBAL_STATE_CODE();
bb87e4d1 2599
b1d2bbeb
VSO
2600 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2601 tran_finalize(tran, ret);
bb87e4d1 2602
b1d2bbeb 2603 return ret;
bb87e4d1
VSO
2604}
2605
33a610c3
KW
2606int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2607 Error **errp)
2608{
1046779e 2609 Error *local_err = NULL;
83928dc4 2610 Transaction *tran = tran_new();
33a610c3
KW
2611 int ret;
2612
b4ad82aa
EGE
2613 GLOBAL_STATE_CODE();
2614
ecb776bd 2615 bdrv_child_set_perm(c, perm, shared, tran);
83928dc4
VSO
2616
2617 ret = bdrv_refresh_perms(c->bs, &local_err);
2618
2619 tran_finalize(tran, ret);
2620
33a610c3 2621 if (ret < 0) {
071b474f
VSO
2622 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2623 /* tighten permissions */
1046779e
HR
2624 error_propagate(errp, local_err);
2625 } else {
2626 /*
2627 * Our caller may intend to only loosen restrictions and
2628 * does not expect this function to fail. Errors are not
2629 * fatal in such a case, so we can just hide them from our
2630 * caller.
2631 */
2632 error_free(local_err);
2633 ret = 0;
2634 }
33a610c3
KW
2635 }
2636
83928dc4 2637 return ret;
d5e6f437
KW
2638}
2639
c1087f12
HR
2640int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2641{
2642 uint64_t parent_perms, parent_shared;
2643 uint64_t perms, shared;
2644
b4ad82aa
EGE
2645 GLOBAL_STATE_CODE();
2646
c1087f12 2647 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
e5d8a406 2648 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
bf8e925e 2649 parent_perms, parent_shared, &perms, &shared);
c1087f12
HR
2650
2651 return bdrv_child_try_set_perm(c, perms, shared, errp);
2652}
2653
87278af1
HR
2654/*
2655 * Default implementation for .bdrv_child_perm() for block filters:
2656 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2657 * filtered child.
2658 */
2659static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
87278af1
HR
2660 BdrvChildRole role,
2661 BlockReopenQueue *reopen_queue,
2662 uint64_t perm, uint64_t shared,
2663 uint64_t *nperm, uint64_t *nshared)
6a1b9ee1 2664{
862fded9 2665 GLOBAL_STATE_CODE();
e444fa83
KW
2666 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2667 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
6a1b9ee1
KW
2668}
2669
70082db4 2670static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
70082db4
HR
2671 BdrvChildRole role,
2672 BlockReopenQueue *reopen_queue,
2673 uint64_t perm, uint64_t shared,
2674 uint64_t *nperm, uint64_t *nshared)
2675{
e5d8a406 2676 assert(role & BDRV_CHILD_COW);
862fded9 2677 GLOBAL_STATE_CODE();
70082db4
HR
2678
2679 /*
2680 * We want consistent read from backing files if the parent needs it.
2681 * No other operations are performed on backing files.
2682 */
2683 perm &= BLK_PERM_CONSISTENT_READ;
2684
2685 /*
2686 * If the parent can deal with changing data, we're okay with a
2687 * writable and resizable backing file.
2688 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2689 */
2690 if (shared & BLK_PERM_WRITE) {
2691 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2692 } else {
2693 shared = 0;
2694 }
2695
64631f36 2696 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
70082db4
HR
2697
2698 if (bs->open_flags & BDRV_O_INACTIVE) {
2699 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2700 }
2701
2702 *nperm = perm;
2703 *nshared = shared;
2704}
2705
6f838a4b 2706static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
6f838a4b
HR
2707 BdrvChildRole role,
2708 BlockReopenQueue *reopen_queue,
2709 uint64_t perm, uint64_t shared,
2710 uint64_t *nperm, uint64_t *nshared)
2711{
2712 int flags;
2713
862fded9 2714 GLOBAL_STATE_CODE();
e5d8a406 2715 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
6f838a4b
HR
2716
2717 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2718
2719 /*
2720 * Apart from the modifications below, the same permissions are
2721 * forwarded and left alone as for filters
2722 */
e5d8a406 2723 bdrv_filter_default_perms(bs, c, role, reopen_queue,
6f838a4b
HR
2724 perm, shared, &perm, &shared);
2725
f889054f
HR
2726 if (role & BDRV_CHILD_METADATA) {
2727 /* Format drivers may touch metadata even if the guest doesn't write */
2728 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2729 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2730 }
2731
2732 /*
2733 * bs->file always needs to be consistent because of the
2734 * metadata. We can never allow other users to resize or write
2735 * to it.
2736 */
2737 if (!(flags & BDRV_O_NO_IO)) {
2738 perm |= BLK_PERM_CONSISTENT_READ;
2739 }
2740 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
6f838a4b
HR
2741 }
2742
f889054f
HR
2743 if (role & BDRV_CHILD_DATA) {
2744 /*
2745 * Technically, everything in this block is a subset of the
2746 * BDRV_CHILD_METADATA path taken above, and so this could
2747 * be an "else if" branch. However, that is not obvious, and
2748 * this function is not performance critical, therefore we let
2749 * this be an independent "if".
2750 */
2751
2752 /*
2753 * We cannot allow other users to resize the file because the
2754 * format driver might have some assumptions about the size
2755 * (e.g. because it is stored in metadata, or because the file
2756 * is split into fixed-size data files).
2757 */
2758 shared &= ~BLK_PERM_RESIZE;
2759
2760 /*
2761 * WRITE_UNCHANGED often cannot be performed as such on the
2762 * data file. For example, the qcow2 driver may still need to
2763 * write copied clusters on copy-on-read.
2764 */
2765 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2766 perm |= BLK_PERM_WRITE;
2767 }
2768
2769 /*
2770 * If the data file is written to, the format driver may
2771 * expect to be able to resize it by writing beyond the EOF.
2772 */
2773 if (perm & BLK_PERM_WRITE) {
2774 perm |= BLK_PERM_RESIZE;
2775 }
6f838a4b 2776 }
6f838a4b
HR
2777
2778 if (bs->open_flags & BDRV_O_INACTIVE) {
2779 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2780 }
2781
2782 *nperm = perm;
2783 *nshared = shared;
2784}
2785
2519f549 2786void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
e5d8a406 2787 BdrvChildRole role, BlockReopenQueue *reopen_queue,
2519f549
HR
2788 uint64_t perm, uint64_t shared,
2789 uint64_t *nperm, uint64_t *nshared)
2790{
b4ad82aa 2791 GLOBAL_STATE_CODE();
2519f549
HR
2792 if (role & BDRV_CHILD_FILTERED) {
2793 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2794 BDRV_CHILD_COW)));
e5d8a406 2795 bdrv_filter_default_perms(bs, c, role, reopen_queue,
2519f549
HR
2796 perm, shared, nperm, nshared);
2797 } else if (role & BDRV_CHILD_COW) {
2798 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
e5d8a406 2799 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
2519f549
HR
2800 perm, shared, nperm, nshared);
2801 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
e5d8a406 2802 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
2519f549
HR
2803 perm, shared, nperm, nshared);
2804 } else {
2805 g_assert_not_reached();
2806 }
2807}
2808
7b1d9c4d
HR
2809uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2810{
2811 static const uint64_t permissions[] = {
2812 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2813 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2814 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2815 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
7b1d9c4d
HR
2816 };
2817
2818 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2819 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2820
2821 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2822
2823 return permissions[qapi_perm];
2824}
2825
b0a9f6fe
HR
2826/**
2827 * Replace (*childp)->bs by @new_bs.
2828 *
2829 * If @new_bs is NULL, *childp will be set to NULL, too: BDS parents
2830 * generally cannot handle a BdrvChild with .bs == NULL, so clearing
2831 * BdrvChild.bs should generally immediately be followed by the
2832 * BdrvChild pointer being cleared as well.
2833 *
2834 * If @free_empty_child is true and @new_bs is NULL, the BdrvChild is
2835 * freed. @free_empty_child should only be false if the caller will
2836 * free the BdrvChild themselves (this may be important in a
2837 * transactional context, where it may only be freed on commit).
2838 */
be64bbb0 2839static void bdrv_replace_child_noperm(BdrvChild **childp,
b0a9f6fe
HR
2840 BlockDriverState *new_bs,
2841 bool free_empty_child)
e9740bc6 2842{
be64bbb0 2843 BdrvChild *child = *childp;
e9740bc6 2844 BlockDriverState *old_bs = child->bs;
debc2927
HR
2845 int new_bs_quiesce_counter;
2846 int drain_saldo;
e9740bc6 2847
2cad1ebe 2848 assert(!child->frozen);
bfb8aa6d 2849 assert(old_bs != new_bs);
f0c28327 2850 GLOBAL_STATE_CODE();
2cad1ebe 2851
bb2614e9
FZ
2852 if (old_bs && new_bs) {
2853 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2854 }
debc2927
HR
2855
2856 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2857 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2858
2859 /*
2860 * If the new child node is drained but the old one was not, flush
2861 * all outstanding requests to the old child node.
2862 */
bd86fb99 2863 while (drain_saldo > 0 && child->klass->drained_begin) {
debc2927
HR
2864 bdrv_parent_drained_begin_single(child, true);
2865 drain_saldo--;
2866 }
2867
e9740bc6 2868 if (old_bs) {
d736f119
KW
2869 /* Detach first so that the recursive drain sections coming from @child
2870 * are already gone and we only end the drain sections that came from
2871 * elsewhere. */
bd86fb99
HR
2872 if (child->klass->detach) {
2873 child->klass->detach(child);
d736f119 2874 }
696bf4c7 2875 assert_bdrv_graph_writable(old_bs);
e9740bc6
KW
2876 QLIST_REMOVE(child, next_parent);
2877 }
36fe1331
KW
2878
2879 child->bs = new_bs;
b0a9f6fe
HR
2880 if (!new_bs) {
2881 *childp = NULL;
2882 }
36fe1331 2883
e9740bc6 2884 if (new_bs) {
696bf4c7 2885 assert_bdrv_graph_writable(new_bs);
e9740bc6 2886 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
debc2927
HR
2887
2888 /*
2889 * Detaching the old node may have led to the new node's
2890 * quiesce_counter having been decreased. Not a problem, we
2891 * just need to recognize this here and then invoke
2892 * drained_end appropriately more often.
2893 */
2894 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2895 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
33a610c3 2896
d736f119
KW
2897 /* Attach only after starting new drained sections, so that recursive
2898 * drain sections coming from @child don't get an extra .drained_begin
2899 * callback. */
bd86fb99
HR
2900 if (child->klass->attach) {
2901 child->klass->attach(child);
8ee03995
KW
2902 }
2903 }
debc2927
HR
2904
2905 /*
2906 * If the old child node was drained but the new one is not, allow
2907 * requests to come in only after the new node has been attached.
2908 */
bd86fb99 2909 while (drain_saldo < 0 && child->klass->drained_end) {
debc2927
HR
2910 bdrv_parent_drained_end_single(child);
2911 drain_saldo++;
2912 }
b0a9f6fe
HR
2913
2914 if (free_empty_child && !child->bs) {
2915 bdrv_child_free(child);
2916 }
8ee03995 2917}
33a610c3 2918
04c9c3a5
HR
2919/**
2920 * Free the given @child.
2921 *
2922 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2923 * unused (i.e. not in a children list).
2924 */
2925static void bdrv_child_free(BdrvChild *child)
df581792 2926{
548a74c0 2927 assert(!child->bs);
bdb73476 2928 GLOBAL_STATE_CODE();
a225369b 2929 assert(!child->next.le_prev); /* not in children list */
04c9c3a5
HR
2930
2931 g_free(child->name);
2932 g_free(child);
548a74c0 2933}
d5e6f437 2934
548a74c0
VSO
2935typedef struct BdrvAttachChildCommonState {
2936 BdrvChild **child;
2937 AioContext *old_parent_ctx;
2938 AioContext *old_child_ctx;
2939} BdrvAttachChildCommonState;
2940
2941static void bdrv_attach_child_common_abort(void *opaque)
2942{
2943 BdrvAttachChildCommonState *s = opaque;
2944 BdrvChild *child = *s->child;
2945 BlockDriverState *bs = child->bs;
2946
f0c28327 2947 GLOBAL_STATE_CODE();
b0a9f6fe
HR
2948 /*
2949 * Pass free_empty_child=false, because we still need the child
2950 * for the AioContext operations on the parent below; those
2951 * BdrvChildClass methods all work on a BdrvChild object, so we
2952 * need to keep it as an empty shell (after this function, it will
2953 * not be attached to any parent, and it will not have a .bs).
2954 */
2955 bdrv_replace_child_noperm(s->child, NULL, false);
548a74c0
VSO
2956
2957 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2958 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2959 }
2960
2961 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
26518061 2962 GSList *ignore;
548a74c0 2963
26518061
HR
2964 /* No need to ignore `child`, because it has been detached already */
2965 ignore = NULL;
548a74c0
VSO
2966 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2967 &error_abort);
2968 g_slist_free(ignore);
548a74c0 2969
26518061
HR
2970 ignore = NULL;
2971 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
548a74c0 2972 g_slist_free(ignore);
d5e6f437
KW
2973 }
2974
548a74c0 2975 bdrv_unref(bs);
04c9c3a5 2976 bdrv_child_free(child);
548a74c0
VSO
2977}
2978
2979static TransactionActionDrv bdrv_attach_child_common_drv = {
2980 .abort = bdrv_attach_child_common_abort,
2981 .clean = g_free,
2982};
2983
2984/*
2985 * Common part of attaching bdrv child to bs or to blk or to job
f8d2ad78
VSO
2986 *
2987 * Resulting new child is returned through @child.
2988 * At start *@child must be NULL.
2989 * @child is saved to a new entry of @tran, so that *@child could be reverted to
2990 * NULL on abort(). So referenced variable must live at least until transaction
2991 * end.
7ec390d5
VSO
2992 *
2993 * Function doesn't update permissions, caller is responsible for this.
548a74c0
VSO
2994 */
2995static int bdrv_attach_child_common(BlockDriverState *child_bs,
2996 const char *child_name,
2997 const BdrvChildClass *child_class,
2998 BdrvChildRole child_role,
2999 uint64_t perm, uint64_t shared_perm,
3000 void *opaque, BdrvChild **child,
3001 Transaction *tran, Error **errp)
3002{
3003 BdrvChild *new_child;
3004 AioContext *parent_ctx;
3005 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3006
3007 assert(child);
3008 assert(*child == NULL);
da261b69 3009 assert(child_class->get_parent_desc);
bdb73476 3010 GLOBAL_STATE_CODE();
548a74c0
VSO
3011
3012 new_child = g_new(BdrvChild, 1);
3013 *new_child = (BdrvChild) {
d5e6f437
KW
3014 .bs = NULL,
3015 .name = g_strdup(child_name),
bd86fb99 3016 .klass = child_class,
258b7765 3017 .role = child_role,
d5e6f437
KW
3018 .perm = perm,
3019 .shared_perm = shared_perm,
3020 .opaque = opaque,
df581792
KW
3021 };
3022
548a74c0
VSO
3023 /*
3024 * If the AioContexts don't match, first try to move the subtree of
132ada80 3025 * child_bs into the AioContext of the new parent. If this doesn't work,
548a74c0
VSO
3026 * try moving the parent into the AioContext of child_bs instead.
3027 */
3028 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3029 if (child_ctx != parent_ctx) {
3030 Error *local_err = NULL;
3031 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
3032
bd86fb99 3033 if (ret < 0 && child_class->can_set_aio_ctx) {
548a74c0
VSO
3034 GSList *ignore = g_slist_prepend(NULL, new_child);
3035 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
3036 NULL))
3037 {
132ada80
KW
3038 error_free(local_err);
3039 ret = 0;
3040 g_slist_free(ignore);
548a74c0
VSO
3041 ignore = g_slist_prepend(NULL, new_child);
3042 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
132ada80
KW
3043 }
3044 g_slist_free(ignore);
3045 }
548a74c0 3046
132ada80
KW
3047 if (ret < 0) {
3048 error_propagate(errp, local_err);
04c9c3a5 3049 bdrv_child_free(new_child);
548a74c0 3050 return ret;
132ada80
KW
3051 }
3052 }
3053
548a74c0 3054 bdrv_ref(child_bs);
b0a9f6fe
HR
3055 bdrv_replace_child_noperm(&new_child, child_bs, true);
3056 /* child_bs was non-NULL, so new_child must not have been freed */
3057 assert(new_child != NULL);
548a74c0
VSO
3058
3059 *child = new_child;
b4b059f6 3060
548a74c0
VSO
3061 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3062 *s = (BdrvAttachChildCommonState) {
3063 .child = child,
3064 .old_parent_ctx = parent_ctx,
3065 .old_child_ctx = child_ctx,
3066 };
3067 tran_add(tran, &bdrv_attach_child_common_drv, s);
3068
3069 return 0;
3070}
3071
f8d2ad78
VSO
3072/*
3073 * Variable referenced by @child must live at least until transaction end.
3074 * (see bdrv_attach_child_common() doc for details)
7ec390d5
VSO
3075 *
3076 * Function doesn't update permissions, caller is responsible for this.
f8d2ad78 3077 */
aa5a04c7
VSO
3078static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3079 BlockDriverState *child_bs,
3080 const char *child_name,
3081 const BdrvChildClass *child_class,
3082 BdrvChildRole child_role,
3083 BdrvChild **child,
3084 Transaction *tran,
3085 Error **errp)
3086{
3087 int ret;
3088 uint64_t perm, shared_perm;
3089
3090 assert(parent_bs->drv);
bdb73476 3091 GLOBAL_STATE_CODE();
aa5a04c7 3092
bfb8aa6d
KW
3093 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3094 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3095 child_bs->node_name, child_name, parent_bs->node_name);
3096 return -EINVAL;
3097 }
3098
aa5a04c7
VSO
3099 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3100 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3101 perm, shared_perm, &perm, &shared_perm);
3102
3103 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3104 child_role, perm, shared_perm, parent_bs,
3105 child, tran, errp);
3106 if (ret < 0) {
3107 return ret;
3108 }
3109
aa5a04c7
VSO
3110 return 0;
3111}
3112
be64bbb0 3113static void bdrv_detach_child(BdrvChild **childp)
548a74c0 3114{
be64bbb0 3115 BlockDriverState *old_bs = (*childp)->bs;
4954aace 3116
bdb73476 3117 GLOBAL_STATE_CODE();
b0a9f6fe 3118 bdrv_replace_child_noperm(childp, NULL, true);
4954aace
VSO
3119
3120 if (old_bs) {
3121 /*
3122 * Update permissions for old node. We're just taking a parent away, so
3123 * we're loosening restrictions. Errors of permission update are not
3124 * fatal in this case, ignore them.
3125 */
3126 bdrv_refresh_perms(old_bs, NULL);
3127
3128 /*
3129 * When the parent requiring a non-default AioContext is removed, the
3130 * node moves back to the main AioContext
3131 */
3132 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
3133 }
548a74c0
VSO
3134}
3135
3136/*
3137 * This function steals the reference to child_bs from the caller.
3138 * That reference is later dropped by bdrv_root_unref_child().
3139 *
3140 * On failure NULL is returned, errp is set and the reference to
3141 * child_bs is also dropped.
3142 *
3143 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3144 * (unless @child_bs is already in @ctx).
3145 */
3146BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3147 const char *child_name,
3148 const BdrvChildClass *child_class,
3149 BdrvChildRole child_role,
3150 uint64_t perm, uint64_t shared_perm,
3151 void *opaque, Error **errp)
3152{
3153 int ret;
3154 BdrvChild *child = NULL;
3155 Transaction *tran = tran_new();
3156
b4ad82aa
EGE
3157 GLOBAL_STATE_CODE();
3158
548a74c0
VSO
3159 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
3160 child_role, perm, shared_perm, opaque,
3161 &child, tran, errp);
3162 if (ret < 0) {
e878bb12 3163 goto out;
548a74c0
VSO
3164 }
3165
3166 ret = bdrv_refresh_perms(child_bs, errp);
548a74c0 3167
e878bb12
KW
3168out:
3169 tran_finalize(tran, ret);
f8d2ad78
VSO
3170 /* child is unset on failure by bdrv_attach_child_common_abort() */
3171 assert((ret < 0) == !child);
3172
548a74c0 3173 bdrv_unref(child_bs);
b4b059f6 3174 return child;
df581792
KW
3175}
3176
b441dc71
AG
3177/*
3178 * This function transfers the reference to child_bs from the caller
3179 * to parent_bs. That reference is later dropped by parent_bs on
3180 * bdrv_close() or if someone calls bdrv_unref_child().
3181 *
3182 * On failure NULL is returned, errp is set and the reference to
3183 * child_bs is also dropped.
132ada80
KW
3184 *
3185 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3186 * hold the AioContext lock for @child_bs, but not for @parent_bs.
b441dc71 3187 */
98292c61
WC
3188BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3189 BlockDriverState *child_bs,
3190 const char *child_name,
bd86fb99 3191 const BdrvChildClass *child_class,
258b7765 3192 BdrvChildRole child_role,
8b2ff529 3193 Error **errp)
f21d96d0 3194{
aa5a04c7
VSO
3195 int ret;
3196 BdrvChild *child = NULL;
3197 Transaction *tran = tran_new();
f68c598b 3198
f791bf7f
EGE
3199 GLOBAL_STATE_CODE();
3200
aa5a04c7
VSO
3201 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
3202 child_role, &child, tran, errp);
3203 if (ret < 0) {
3204 goto out;
3205 }
d5e6f437 3206
aa5a04c7
VSO
3207 ret = bdrv_refresh_perms(parent_bs, errp);
3208 if (ret < 0) {
3209 goto out;
d5e6f437
KW
3210 }
3211
aa5a04c7
VSO
3212out:
3213 tran_finalize(tran, ret);
f8d2ad78
VSO
3214 /* child is unset on failure by bdrv_attach_child_common_abort() */
3215 assert((ret < 0) == !child);
aa5a04c7
VSO
3216
3217 bdrv_unref(child_bs);
3218
f21d96d0
KW
3219 return child;
3220}
3221
7b99a266 3222/* Callers must ensure that child->frozen is false. */
f21d96d0 3223void bdrv_root_unref_child(BdrvChild *child)
33a60407 3224{
779020cb
KW
3225 BlockDriverState *child_bs;
3226
f791bf7f
EGE
3227 GLOBAL_STATE_CODE();
3228
f21d96d0 3229 child_bs = child->bs;
be64bbb0 3230 bdrv_detach_child(&child);
f21d96d0
KW
3231 bdrv_unref(child_bs);
3232}
3233
332b3a17
VSO
3234typedef struct BdrvSetInheritsFrom {
3235 BlockDriverState *bs;
3236 BlockDriverState *old_inherits_from;
3237} BdrvSetInheritsFrom;
3238
3239static void bdrv_set_inherits_from_abort(void *opaque)
3240{
3241 BdrvSetInheritsFrom *s = opaque;
3242
3243 s->bs->inherits_from = s->old_inherits_from;
3244}
3245
3246static TransactionActionDrv bdrv_set_inherits_from_drv = {
3247 .abort = bdrv_set_inherits_from_abort,
3248 .clean = g_free,
3249};
3250
3251/* @tran is allowed to be NULL. In this case no rollback is possible */
3252static void bdrv_set_inherits_from(BlockDriverState *bs,
3253 BlockDriverState *new_inherits_from,
3254 Transaction *tran)
3255{
3256 if (tran) {
3257 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3258
3259 *s = (BdrvSetInheritsFrom) {
3260 .bs = bs,
3261 .old_inherits_from = bs->inherits_from,
3262 };
3263
3264 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3265 }
3266
3267 bs->inherits_from = new_inherits_from;
3268}
3269
3cf746b3
HR
3270/**
3271 * Clear all inherits_from pointers from children and grandchildren of
3272 * @root that point to @root, where necessary.
332b3a17 3273 * @tran is allowed to be NULL. In this case no rollback is possible
3cf746b3 3274 */
332b3a17
VSO
3275static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3276 Transaction *tran)
f21d96d0 3277{
3cf746b3 3278 BdrvChild *c;
4e4bf5c4 3279
3cf746b3
HR
3280 if (child->bs->inherits_from == root) {
3281 /*
3282 * Remove inherits_from only when the last reference between root and
3283 * child->bs goes away.
3284 */
3285 QLIST_FOREACH(c, &root->children, next) {
4e4bf5c4
KW
3286 if (c != child && c->bs == child->bs) {
3287 break;
3288 }
3289 }
3290 if (c == NULL) {
332b3a17 3291 bdrv_set_inherits_from(child->bs, NULL, tran);
4e4bf5c4 3292 }
33a60407
KW
3293 }
3294
3cf746b3 3295 QLIST_FOREACH(c, &child->bs->children, next) {
332b3a17 3296 bdrv_unset_inherits_from(root, c, tran);
3cf746b3
HR
3297 }
3298}
3299
7b99a266 3300/* Callers must ensure that child->frozen is false. */
3cf746b3
HR
3301void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3302{
f791bf7f 3303 GLOBAL_STATE_CODE();
3cf746b3
HR
3304 if (child == NULL) {
3305 return;
3306 }
3307
332b3a17 3308 bdrv_unset_inherits_from(parent, child, NULL);
f21d96d0 3309 bdrv_root_unref_child(child);
33a60407
KW
3310}
3311
5c8cab48
KW
3312
3313static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3314{
3315 BdrvChild *c;
f0c28327 3316 GLOBAL_STATE_CODE();
5c8cab48 3317 QLIST_FOREACH(c, &bs->parents, next_parent) {
bd86fb99
HR
3318 if (c->klass->change_media) {
3319 c->klass->change_media(c, load);
5c8cab48
KW
3320 }
3321 }
3322}
3323
0065c455
AG
3324/* Return true if you can reach parent going through child->inherits_from
3325 * recursively. If parent or child are NULL, return false */
3326static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3327 BlockDriverState *parent)
3328{
3329 while (child && child != parent) {
3330 child = child->inherits_from;
3331 }
3332
3333 return child != NULL;
3334}
3335
25191e5f
HR
3336/*
3337 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3338 * mostly used for COW backing children (role = COW), but also for
3339 * filtered children (role = FILTERED | PRIMARY).
3340 */
3341static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3342{
3343 if (bs->drv && bs->drv->is_filter) {
3344 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3345 } else {
3346 return BDRV_CHILD_COW;
3347 }
3348}
3349
5db15a57 3350/*
e9238278
VSO
3351 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3352 * callers which don't need their own reference any more must call bdrv_unref().
7ec390d5
VSO
3353 *
3354 * Function doesn't update permissions, caller is responsible for this.
5db15a57 3355 */
e9238278
VSO
3356static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3357 BlockDriverState *child_bs,
3358 bool is_backing,
3359 Transaction *tran, Error **errp)
8d24cce1 3360{
a1e708fc 3361 int ret = 0;
e9238278
VSO
3362 bool update_inherits_from =
3363 bdrv_inherits_from_recursive(child_bs, parent_bs);
3364 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3365 BdrvChildRole role;
0065c455 3366
bdb73476
EGE
3367 GLOBAL_STATE_CODE();
3368
e9238278
VSO
3369 if (!parent_bs->drv) {
3370 /*
3371 * Node without drv is an object without a class :/. TODO: finally fix
3372 * qcow2 driver to never clear bs->drv and implement format corruption
3373 * handling in other way.
3374 */
3375 error_setg(errp, "Node corrupted");
3376 return -EINVAL;
3377 }
3378
3379 if (child && child->frozen) {
3380 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3381 child->name, parent_bs->node_name, child->bs->node_name);
a1e708fc 3382 return -EPERM;
2cad1ebe
AG
3383 }
3384
25f78d9e
VSO
3385 if (is_backing && !parent_bs->drv->is_filter &&
3386 !parent_bs->drv->supports_backing)
3387 {
3388 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3389 "files", parent_bs->drv->format_name, parent_bs->node_name);
3390 return -EINVAL;
3391 }
3392
e9238278
VSO
3393 if (parent_bs->drv->is_filter) {
3394 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3395 } else if (is_backing) {
3396 role = BDRV_CHILD_COW;
3397 } else {
3398 /*
3399 * We only can use same role as it is in existing child. We don't have
3400 * infrastructure to determine role of file child in generic way
3401 */
3402 if (!child) {
3403 error_setg(errp, "Cannot set file child to format node without "
3404 "file child");
3405 return -EINVAL;
3406 }
3407 role = child->role;
826b6ca0
FZ
3408 }
3409
e9238278
VSO
3410 if (child) {
3411 bdrv_unset_inherits_from(parent_bs, child, tran);
3412 bdrv_remove_file_or_backing_child(parent_bs, child, tran);
3413 }
3414
3415 if (!child_bs) {
8d24cce1
FZ
3416 goto out;
3417 }
12fa4af6 3418
e9238278
VSO
3419 ret = bdrv_attach_child_noperm(parent_bs, child_bs,
3420 is_backing ? "backing" : "file",
3421 &child_of_bds, role,
3422 is_backing ? &parent_bs->backing :
3423 &parent_bs->file,
3424 tran, errp);
160333e1
VSO
3425 if (ret < 0) {
3426 return ret;
a1e708fc
VSO
3427 }
3428
160333e1
VSO
3429
3430 /*
e9238278 3431 * If inherits_from pointed recursively to bs then let's update it to
160333e1
VSO
3432 * point directly to bs (else it will become NULL).
3433 */
a1e708fc 3434 if (update_inherits_from) {
e9238278 3435 bdrv_set_inherits_from(child_bs, parent_bs, tran);
0065c455 3436 }
826b6ca0 3437
8d24cce1 3438out:
e9238278 3439 bdrv_refresh_limits(parent_bs, tran, NULL);
160333e1
VSO
3440
3441 return 0;
3442}
3443
e9238278
VSO
3444static int bdrv_set_backing_noperm(BlockDriverState *bs,
3445 BlockDriverState *backing_hd,
3446 Transaction *tran, Error **errp)
3447{
bdb73476 3448 GLOBAL_STATE_CODE();
e9238278
VSO
3449 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3450}
3451
160333e1
VSO
3452int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3453 Error **errp)
3454{
3455 int ret;
3456 Transaction *tran = tran_new();
3457
f791bf7f 3458 GLOBAL_STATE_CODE();
c0829cb1
VSO
3459 bdrv_drained_begin(bs);
3460
160333e1
VSO
3461 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3462 if (ret < 0) {
3463 goto out;
3464 }
3465
3466 ret = bdrv_refresh_perms(bs, errp);
3467out:
3468 tran_finalize(tran, ret);
a1e708fc 3469
c0829cb1
VSO
3470 bdrv_drained_end(bs);
3471
a1e708fc 3472 return ret;
8d24cce1
FZ
3473}
3474
31ca6d07
KW
3475/*
3476 * Opens the backing file for a BlockDriverState if not yet open
3477 *
d9b7b057
KW
3478 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3479 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3480 * itself, all options starting with "${bdref_key}." are considered part of the
3481 * BlockdevRef.
3482 *
3483 * TODO Can this be unified with bdrv_open_image()?
31ca6d07 3484 */
d9b7b057
KW
3485int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3486 const char *bdref_key, Error **errp)
9156df12 3487{
6b6833c1 3488 char *backing_filename = NULL;
d9b7b057
KW
3489 char *bdref_key_dot;
3490 const char *reference = NULL;
317fc44e 3491 int ret = 0;
998c2019 3492 bool implicit_backing = false;
8d24cce1 3493 BlockDriverState *backing_hd;
d9b7b057
KW
3494 QDict *options;
3495 QDict *tmp_parent_options = NULL;
34b5d2c6 3496 Error *local_err = NULL;
9156df12 3497
f791bf7f
EGE
3498 GLOBAL_STATE_CODE();
3499
760e0063 3500 if (bs->backing != NULL) {
1ba4b6a5 3501 goto free_exit;
9156df12
PB
3502 }
3503
31ca6d07 3504 /* NULL means an empty set of options */
d9b7b057
KW
3505 if (parent_options == NULL) {
3506 tmp_parent_options = qdict_new();
3507 parent_options = tmp_parent_options;
31ca6d07
KW
3508 }
3509
9156df12 3510 bs->open_flags &= ~BDRV_O_NO_BACKING;
d9b7b057
KW
3511
3512 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3513 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3514 g_free(bdref_key_dot);
3515
129c7d1c
MA
3516 /*
3517 * Caution: while qdict_get_try_str() is fine, getting non-string
3518 * types would require more care. When @parent_options come from
3519 * -blockdev or blockdev_add, its members are typed according to
3520 * the QAPI schema, but when they come from -drive, they're all
3521 * QString.
3522 */
d9b7b057
KW
3523 reference = qdict_get_try_str(parent_options, bdref_key);
3524 if (reference || qdict_haskey(options, "file.filename")) {
6b6833c1 3525 /* keep backing_filename NULL */
1cb6f506 3526 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
cb3e7f08 3527 qobject_unref(options);
1ba4b6a5 3528 goto free_exit;
dbecebdd 3529 } else {
998c2019
HR
3530 if (qdict_size(options) == 0) {
3531 /* If the user specifies options that do not modify the
3532 * backing file's behavior, we might still consider it the
3533 * implicit backing file. But it's easier this way, and
3534 * just specifying some of the backing BDS's options is
3535 * only possible with -drive anyway (otherwise the QAPI
3536 * schema forces the user to specify everything). */
3537 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3538 }
3539
6b6833c1 3540 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
9f07429e
HR
3541 if (local_err) {
3542 ret = -EINVAL;
3543 error_propagate(errp, local_err);
cb3e7f08 3544 qobject_unref(options);
9f07429e
HR
3545 goto free_exit;
3546 }
9156df12
PB
3547 }
3548
8ee79e70
KW
3549 if (!bs->drv || !bs->drv->supports_backing) {
3550 ret = -EINVAL;
3551 error_setg(errp, "Driver doesn't support backing files");
cb3e7f08 3552 qobject_unref(options);
8ee79e70
KW
3553 goto free_exit;
3554 }
3555
6bff597b
PK
3556 if (!reference &&
3557 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
46f5ac20 3558 qdict_put_str(options, "driver", bs->backing_format);
9156df12
PB
3559 }
3560
6b6833c1 3561 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
25191e5f 3562 &child_of_bds, bdrv_backing_role(bs), errp);
5b363937 3563 if (!backing_hd) {
9156df12 3564 bs->open_flags |= BDRV_O_NO_BACKING;
e43bfd9c 3565 error_prepend(errp, "Could not open backing file: ");
5b363937 3566 ret = -EINVAL;
1ba4b6a5 3567 goto free_exit;
9156df12 3568 }
df581792 3569
998c2019
HR
3570 if (implicit_backing) {
3571 bdrv_refresh_filename(backing_hd);
3572 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3573 backing_hd->filename);
3574 }
3575
5db15a57
KW
3576 /* Hook up the backing file link; drop our reference, bs owns the
3577 * backing_hd reference now */
dc9c10a1 3578 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
5db15a57 3579 bdrv_unref(backing_hd);
dc9c10a1 3580 if (ret < 0) {
12fa4af6
KW
3581 goto free_exit;
3582 }
d80ac658 3583
d9b7b057
KW
3584 qdict_del(parent_options, bdref_key);
3585
1ba4b6a5
BC
3586free_exit:
3587 g_free(backing_filename);
cb3e7f08 3588 qobject_unref(tmp_parent_options);
1ba4b6a5 3589 return ret;
9156df12
PB
3590}
3591
2d6b86af
KW
3592static BlockDriverState *
3593bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
bd86fb99 3594 BlockDriverState *parent, const BdrvChildClass *child_class,
272c02ea 3595 BdrvChildRole child_role, bool allow_none, Error **errp)
da557aac 3596{
2d6b86af 3597 BlockDriverState *bs = NULL;
da557aac 3598 QDict *image_options;
da557aac
HR
3599 char *bdref_key_dot;
3600 const char *reference;
3601
bd86fb99 3602 assert(child_class != NULL);
f67503e5 3603
da557aac
HR
3604 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3605 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3606 g_free(bdref_key_dot);
3607
129c7d1c
MA
3608 /*
3609 * Caution: while qdict_get_try_str() is fine, getting non-string
3610 * types would require more care. When @options come from
3611 * -blockdev or blockdev_add, its members are typed according to
3612 * the QAPI schema, but when they come from -drive, they're all
3613 * QString.
3614 */
da557aac
HR
3615 reference = qdict_get_try_str(options, bdref_key);
3616 if (!filename && !reference && !qdict_size(image_options)) {
b4b059f6 3617 if (!allow_none) {
da557aac
HR
3618 error_setg(errp, "A block device must be specified for \"%s\"",
3619 bdref_key);
da557aac 3620 }
cb3e7f08 3621 qobject_unref(image_options);
da557aac
HR
3622 goto done;
3623 }
3624
5b363937 3625 bs = bdrv_open_inherit(filename, reference, image_options, 0,
272c02ea 3626 parent, child_class, child_role, errp);
5b363937 3627 if (!bs) {
df581792
KW
3628 goto done;
3629 }
3630
da557aac
HR
3631done:
3632 qdict_del(options, bdref_key);
2d6b86af
KW
3633 return bs;
3634}
3635
3636/*
3637 * Opens a disk image whose options are given as BlockdevRef in another block
3638 * device's options.
3639 *
3640 * If allow_none is true, no image will be opened if filename is false and no
3641 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3642 *
3643 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3644 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3645 * itself, all options starting with "${bdref_key}." are considered part of the
3646 * BlockdevRef.
3647 *
3648 * The BlockdevRef will be removed from the options QDict.
3649 */
3650BdrvChild *bdrv_open_child(const char *filename,
3651 QDict *options, const char *bdref_key,
3652 BlockDriverState *parent,
bd86fb99 3653 const BdrvChildClass *child_class,
258b7765 3654 BdrvChildRole child_role,
2d6b86af
KW
3655 bool allow_none, Error **errp)
3656{
3657 BlockDriverState *bs;
3658
f791bf7f
EGE
3659 GLOBAL_STATE_CODE();
3660
bd86fb99 3661 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
272c02ea 3662 child_role, allow_none, errp);
2d6b86af
KW
3663 if (bs == NULL) {
3664 return NULL;
3665 }
3666
258b7765
HR
3667 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3668 errp);
b4b059f6
KW
3669}
3670
bd86fb99
HR
3671/*
3672 * TODO Future callers may need to specify parent/child_class in order for
3673 * option inheritance to work. Existing callers use it for the root node.
3674 */
e1d74bc6
KW
3675BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3676{
3677 BlockDriverState *bs = NULL;
e1d74bc6
KW
3678 QObject *obj = NULL;
3679 QDict *qdict = NULL;
3680 const char *reference = NULL;
3681 Visitor *v = NULL;
3682
f791bf7f
EGE
3683 GLOBAL_STATE_CODE();
3684
e1d74bc6
KW
3685 if (ref->type == QTYPE_QSTRING) {
3686 reference = ref->u.reference;
3687 } else {
3688 BlockdevOptions *options = &ref->u.definition;
3689 assert(ref->type == QTYPE_QDICT);
3690
3691 v = qobject_output_visitor_new(&obj);
1f584248 3692 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
e1d74bc6
KW
3693 visit_complete(v, &obj);
3694
7dc847eb 3695 qdict = qobject_to(QDict, obj);
e1d74bc6
KW
3696 qdict_flatten(qdict);
3697
3698 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3699 * compatibility with other callers) rather than what we want as the
3700 * real defaults. Apply the defaults here instead. */
3701 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3702 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3703 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
e35bdc12
KW
3704 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3705
e1d74bc6
KW
3706 }
3707
272c02ea 3708 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
e1d74bc6 3709 obj = NULL;
cb3e7f08 3710 qobject_unref(obj);
e1d74bc6
KW
3711 visit_free(v);
3712 return bs;
3713}
3714
66836189
HR
3715static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3716 int flags,
3717 QDict *snapshot_options,
3718 Error **errp)
b998875d
KW
3719{
3720 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
1ba4b6a5 3721 char *tmp_filename = g_malloc0(PATH_MAX + 1);
b998875d 3722 int64_t total_size;
83d0521a 3723 QemuOpts *opts = NULL;
ff6ed714 3724 BlockDriverState *bs_snapshot = NULL;
b998875d
KW
3725 int ret;
3726
bdb73476
EGE
3727 GLOBAL_STATE_CODE();
3728
b998875d
KW
3729 /* if snapshot, we create a temporary backing file and open it
3730 instead of opening 'filename' directly */
3731
3732 /* Get the required size from the image */
f187743a
KW
3733 total_size = bdrv_getlength(bs);
3734 if (total_size < 0) {
3735 error_setg_errno(errp, -total_size, "Could not get image size");
1ba4b6a5 3736 goto out;
f187743a 3737 }
b998875d
KW
3738
3739 /* Create the temporary image */
1ba4b6a5 3740 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
b998875d
KW
3741 if (ret < 0) {
3742 error_setg_errno(errp, -ret, "Could not get temporary filename");
1ba4b6a5 3743 goto out;
b998875d
KW
3744 }
3745
ef810437 3746 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
c282e1fd 3747 &error_abort);
39101f25 3748 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
e43bfd9c 3749 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
83d0521a 3750 qemu_opts_del(opts);
b998875d 3751 if (ret < 0) {
e43bfd9c
MA
3752 error_prepend(errp, "Could not create temporary overlay '%s': ",
3753 tmp_filename);
1ba4b6a5 3754 goto out;
b998875d
KW
3755 }
3756
73176bee 3757 /* Prepare options QDict for the temporary file */
46f5ac20
EB
3758 qdict_put_str(snapshot_options, "file.driver", "file");
3759 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3760 qdict_put_str(snapshot_options, "driver", "qcow2");
b998875d 3761
5b363937 3762 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
73176bee 3763 snapshot_options = NULL;
5b363937 3764 if (!bs_snapshot) {
1ba4b6a5 3765 goto out;
b998875d
KW
3766 }
3767
934aee14
VSO
3768 ret = bdrv_append(bs_snapshot, bs, errp);
3769 if (ret < 0) {
ff6ed714 3770 bs_snapshot = NULL;
b2c2832c
KW
3771 goto out;
3772 }
1ba4b6a5
BC
3773
3774out:
cb3e7f08 3775 qobject_unref(snapshot_options);
1ba4b6a5 3776 g_free(tmp_filename);
ff6ed714 3777 return bs_snapshot;
b998875d
KW
3778}
3779
b6ce07aa
KW
3780/*
3781 * Opens a disk image (raw, qcow2, vmdk, ...)
de9c0cec
KW
3782 *
3783 * options is a QDict of options to pass to the block drivers, or NULL for an
3784 * empty set of options. The reference to the QDict belongs to the block layer
3785 * after the call (even on failure), so if the caller intends to reuse the
cb3e7f08 3786 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
f67503e5
HR
3787 *
3788 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3789 * If it is not NULL, the referenced BDS will be reused.
ddf5636d
HR
3790 *
3791 * The reference parameter may be used to specify an existing block device which
3792 * should be opened. If specified, neither options nor a filename may be given,
3793 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
b6ce07aa 3794 */
5b363937
HR
3795static BlockDriverState *bdrv_open_inherit(const char *filename,
3796 const char *reference,
3797 QDict *options, int flags,
3798 BlockDriverState *parent,
bd86fb99 3799 const BdrvChildClass *child_class,
272c02ea 3800 BdrvChildRole child_role,
5b363937 3801 Error **errp)
ea2384d3 3802{
b6ce07aa 3803 int ret;
5696c6e3 3804 BlockBackend *file = NULL;
9a4f4c31 3805 BlockDriverState *bs;
ce343771 3806 BlockDriver *drv = NULL;
2f624b80 3807 BdrvChild *child;
74fe54f2 3808 const char *drvname;
3e8c2e57 3809 const char *backing;
34b5d2c6 3810 Error *local_err = NULL;
73176bee 3811 QDict *snapshot_options = NULL;
b1e6fc08 3812 int snapshot_flags = 0;
712e7874 3813
bd86fb99
HR
3814 assert(!child_class || !flags);
3815 assert(!child_class == !parent);
f0c28327 3816 GLOBAL_STATE_CODE();
f67503e5 3817
ddf5636d
HR
3818 if (reference) {
3819 bool options_non_empty = options ? qdict_size(options) : false;
cb3e7f08 3820 qobject_unref(options);
ddf5636d 3821
ddf5636d
HR
3822 if (filename || options_non_empty) {
3823 error_setg(errp, "Cannot reference an existing block device with "
3824 "additional options or a new filename");
5b363937 3825 return NULL;
ddf5636d
HR
3826 }
3827
3828 bs = bdrv_lookup_bs(reference, reference, errp);
3829 if (!bs) {
5b363937 3830 return NULL;
ddf5636d 3831 }
76b22320 3832
ddf5636d 3833 bdrv_ref(bs);
5b363937 3834 return bs;
ddf5636d
HR
3835 }
3836
5b363937 3837 bs = bdrv_new();
f67503e5 3838
de9c0cec
KW
3839 /* NULL means an empty set of options */
3840 if (options == NULL) {
3841 options = qdict_new();
3842 }
3843
145f598e 3844 /* json: syntax counts as explicit options, as if in the QDict */
de3b53f0
KW
3845 parse_json_protocol(options, &filename, &local_err);
3846 if (local_err) {
de3b53f0
KW
3847 goto fail;
3848 }
3849
145f598e
KW
3850 bs->explicit_options = qdict_clone_shallow(options);
3851
bd86fb99 3852 if (child_class) {
3cdc69d3
HR
3853 bool parent_is_format;
3854
3855 if (parent->drv) {
3856 parent_is_format = parent->drv->is_format;
3857 } else {
3858 /*
3859 * parent->drv is not set yet because this node is opened for
3860 * (potential) format probing. That means that @parent is going
3861 * to be a format node.
3862 */
3863 parent_is_format = true;
3864 }
3865
bddcec37 3866 bs->inherits_from = parent;
3cdc69d3
HR
3867 child_class->inherit_options(child_role, parent_is_format,
3868 &flags, options,
bd86fb99 3869 parent->open_flags, parent->options);
f3930ed0
KW
3870 }
3871
de3b53f0 3872 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
dfde483e 3873 if (ret < 0) {
462f5bcf
KW
3874 goto fail;
3875 }
3876
129c7d1c
MA
3877 /*
3878 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3879 * Caution: getting a boolean member of @options requires care.
3880 * When @options come from -blockdev or blockdev_add, members are
3881 * typed according to the QAPI schema, but when they come from
3882 * -drive, they're all QString.
3883 */
f87a0e29
AG
3884 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3885 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3886 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3887 } else {
3888 flags &= ~BDRV_O_RDWR;
14499ea5
AG
3889 }
3890
3891 if (flags & BDRV_O_SNAPSHOT) {
3892 snapshot_options = qdict_new();
3893 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3894 flags, options);
f87a0e29
AG
3895 /* Let bdrv_backing_options() override "read-only" */
3896 qdict_del(options, BDRV_OPT_READ_ONLY);
00ff7ffd
HR
3897 bdrv_inherited_options(BDRV_CHILD_COW, true,
3898 &flags, options, flags, options);
14499ea5
AG
3899 }
3900
62392ebb
KW
3901 bs->open_flags = flags;
3902 bs->options = options;
3903 options = qdict_clone_shallow(options);
3904
76c591b0 3905 /* Find the right image format driver */
129c7d1c 3906 /* See cautionary note on accessing @options above */
76c591b0
KW
3907 drvname = qdict_get_try_str(options, "driver");
3908 if (drvname) {
3909 drv = bdrv_find_format(drvname);
76c591b0
KW
3910 if (!drv) {
3911 error_setg(errp, "Unknown driver: '%s'", drvname);
76c591b0
KW
3912 goto fail;
3913 }
3914 }
3915
3916 assert(drvname || !(flags & BDRV_O_PROTOCOL));
76c591b0 3917
129c7d1c 3918 /* See cautionary note on accessing @options above */
3e8c2e57 3919 backing = qdict_get_try_str(options, "backing");
e59a0cf1
HR
3920 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3921 (backing && *backing == '\0'))
3922 {
4f7be280
HR
3923 if (backing) {
3924 warn_report("Use of \"backing\": \"\" is deprecated; "
3925 "use \"backing\": null instead");
3926 }
3e8c2e57 3927 flags |= BDRV_O_NO_BACKING;
ae0f57f0
KW
3928 qdict_del(bs->explicit_options, "backing");
3929 qdict_del(bs->options, "backing");
3e8c2e57
AG
3930 qdict_del(options, "backing");
3931 }
3932
5696c6e3 3933 /* Open image file without format layer. This BlockBackend is only used for
4e4bf5c4
KW
3934 * probing, the block drivers will do their own bdrv_open_child() for the
3935 * same BDS, which is why we put the node name back into options. */
f4788adc 3936 if ((flags & BDRV_O_PROTOCOL) == 0) {
5696c6e3
KW
3937 BlockDriverState *file_bs;
3938
3939 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
58944401
HR
3940 &child_of_bds, BDRV_CHILD_IMAGE,
3941 true, &local_err);
1fdd6933 3942 if (local_err) {
f4788adc
KW
3943 goto fail;
3944 }
5696c6e3 3945 if (file_bs != NULL) {
dacaa162
KW
3946 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3947 * looking at the header to guess the image format. This works even
3948 * in cases where a guest would not see a consistent state. */
d861ab3a 3949 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
d7086422 3950 blk_insert_bs(file, file_bs, &local_err);
5696c6e3 3951 bdrv_unref(file_bs);
d7086422
KW
3952 if (local_err) {
3953 goto fail;
3954 }
5696c6e3 3955
46f5ac20 3956 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
4e4bf5c4 3957 }
f500a6d3
KW
3958 }
3959
76c591b0 3960 /* Image format probing */
38f3ef57 3961 bs->probed = !drv;
76c591b0 3962 if (!drv && file) {
cf2ab8fc 3963 ret = find_image_format(file, filename, &drv, &local_err);
17b005f1 3964 if (ret < 0) {
8bfea15d 3965 goto fail;
2a05cbe4 3966 }
62392ebb
KW
3967 /*
3968 * This option update would logically belong in bdrv_fill_options(),
3969 * but we first need to open bs->file for the probing to work, while
3970 * opening bs->file already requires the (mostly) final set of options
3971 * so that cache mode etc. can be inherited.
3972 *
3973 * Adding the driver later is somewhat ugly, but it's not an option
3974 * that would ever be inherited, so it's correct. We just need to make
3975 * sure to update both bs->options (which has the full effective
3976 * options for bs) and options (which has file.* already removed).
3977 */
46f5ac20
EB
3978 qdict_put_str(bs->options, "driver", drv->format_name);
3979 qdict_put_str(options, "driver", drv->format_name);
76c591b0 3980 } else if (!drv) {
17b005f1 3981 error_setg(errp, "Must specify either driver or file");
8bfea15d 3982 goto fail;
ea2384d3 3983 }
b6ce07aa 3984
53a29513
HR
3985 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3986 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3987 /* file must be NULL if a protocol BDS is about to be created
3988 * (the inverse results in an error message from bdrv_open_common()) */
3989 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3990
b6ce07aa 3991 /* Open the image */
82dc8b41 3992 ret = bdrv_open_common(bs, file, options, &local_err);
b6ce07aa 3993 if (ret < 0) {
8bfea15d 3994 goto fail;
6987307c
CH
3995 }
3996
4e4bf5c4 3997 if (file) {
5696c6e3 3998 blk_unref(file);
f500a6d3
KW
3999 file = NULL;
4000 }
4001
b6ce07aa 4002 /* If there is a backing file, use it */
9156df12 4003 if ((flags & BDRV_O_NO_BACKING) == 0) {
d9b7b057 4004 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
b6ce07aa 4005 if (ret < 0) {
b6ad491a 4006 goto close_and_fail;
b6ce07aa 4007 }
b6ce07aa
KW
4008 }
4009
50196d7a
AG
4010 /* Remove all children options and references
4011 * from bs->options and bs->explicit_options */
2f624b80
AG
4012 QLIST_FOREACH(child, &bs->children, next) {
4013 char *child_key_dot;
4014 child_key_dot = g_strdup_printf("%s.", child->name);
4015 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4016 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
50196d7a
AG
4017 qdict_del(bs->explicit_options, child->name);
4018 qdict_del(bs->options, child->name);
2f624b80
AG
4019 g_free(child_key_dot);
4020 }
4021
b6ad491a 4022 /* Check if any unknown options were used */
7ad2757f 4023 if (qdict_size(options) != 0) {
b6ad491a 4024 const QDictEntry *entry = qdict_first(options);
5acd9d81
HR
4025 if (flags & BDRV_O_PROTOCOL) {
4026 error_setg(errp, "Block protocol '%s' doesn't support the option "
4027 "'%s'", drv->format_name, entry->key);
4028 } else {
d0e46a55
HR
4029 error_setg(errp,
4030 "Block format '%s' does not support the option '%s'",
4031 drv->format_name, entry->key);
5acd9d81 4032 }
b6ad491a 4033
b6ad491a
KW
4034 goto close_and_fail;
4035 }
b6ad491a 4036
c01c214b 4037 bdrv_parent_cb_change_media(bs, true);
b6ce07aa 4038
cb3e7f08 4039 qobject_unref(options);
8961be33 4040 options = NULL;
dd62f1ca
KW
4041
4042 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4043 * temporary snapshot afterwards. */
4044 if (snapshot_flags) {
66836189
HR
4045 BlockDriverState *snapshot_bs;
4046 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4047 snapshot_options, &local_err);
73176bee 4048 snapshot_options = NULL;
dd62f1ca
KW
4049 if (local_err) {
4050 goto close_and_fail;
4051 }
5b363937
HR
4052 /* We are not going to return bs but the overlay on top of it
4053 * (snapshot_bs); thus, we have to drop the strong reference to bs
4054 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4055 * though, because the overlay still has a reference to it. */
4056 bdrv_unref(bs);
4057 bs = snapshot_bs;
dd62f1ca
KW
4058 }
4059
5b363937 4060 return bs;
b6ce07aa 4061
8bfea15d 4062fail:
5696c6e3 4063 blk_unref(file);
cb3e7f08
MAL
4064 qobject_unref(snapshot_options);
4065 qobject_unref(bs->explicit_options);
4066 qobject_unref(bs->options);
4067 qobject_unref(options);
de9c0cec 4068 bs->options = NULL;
998cbd6a 4069 bs->explicit_options = NULL;
5b363937 4070 bdrv_unref(bs);
621ff94d 4071 error_propagate(errp, local_err);
5b363937 4072 return NULL;
de9c0cec 4073
b6ad491a 4074close_and_fail:
5b363937 4075 bdrv_unref(bs);
cb3e7f08
MAL
4076 qobject_unref(snapshot_options);
4077 qobject_unref(options);
621ff94d 4078 error_propagate(errp, local_err);
5b363937 4079 return NULL;
b6ce07aa
KW
4080}
4081
5b363937
HR
4082BlockDriverState *bdrv_open(const char *filename, const char *reference,
4083 QDict *options, int flags, Error **errp)
f3930ed0 4084{
f791bf7f
EGE
4085 GLOBAL_STATE_CODE();
4086
5b363937 4087 return bdrv_open_inherit(filename, reference, options, flags, NULL,
272c02ea 4088 NULL, 0, errp);
f3930ed0
KW
4089}
4090
faf116b4
AG
4091/* Return true if the NULL-terminated @list contains @str */
4092static bool is_str_in_list(const char *str, const char *const *list)
4093{
4094 if (str && list) {
4095 int i;
4096 for (i = 0; list[i] != NULL; i++) {
4097 if (!strcmp(str, list[i])) {
4098 return true;
4099 }
4100 }
4101 }
4102 return false;
4103}
4104
4105/*
4106 * Check that every option set in @bs->options is also set in
4107 * @new_opts.
4108 *
4109 * Options listed in the common_options list and in
4110 * @bs->drv->mutable_opts are skipped.
4111 *
4112 * Return 0 on success, otherwise return -EINVAL and set @errp.
4113 */
4114static int bdrv_reset_options_allowed(BlockDriverState *bs,
4115 const QDict *new_opts, Error **errp)
4116{
4117 const QDictEntry *e;
4118 /* These options are common to all block drivers and are handled
4119 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4120 const char *const common_options[] = {
4121 "node-name", "discard", "cache.direct", "cache.no-flush",
4122 "read-only", "auto-read-only", "detect-zeroes", NULL
4123 };
4124
4125 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4126 if (!qdict_haskey(new_opts, e->key) &&
4127 !is_str_in_list(e->key, common_options) &&
4128 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4129 error_setg(errp, "Option '%s' cannot be reset "
4130 "to its default value", e->key);
4131 return -EINVAL;
4132 }
4133 }
4134
4135 return 0;
4136}
4137
cb828c31
AG
4138/*
4139 * Returns true if @child can be reached recursively from @bs
4140 */
4141static bool bdrv_recurse_has_child(BlockDriverState *bs,
4142 BlockDriverState *child)
4143{
4144 BdrvChild *c;
4145
4146 if (bs == child) {
4147 return true;
4148 }
4149
4150 QLIST_FOREACH(c, &bs->children, next) {
4151 if (bdrv_recurse_has_child(c->bs, child)) {
4152 return true;
4153 }
4154 }
4155
4156 return false;
4157}
4158
e971aa12
JC
4159/*
4160 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4161 * reopen of multiple devices.
4162 *
859443b0 4163 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
e971aa12
JC
4164 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4165 * be created and initialized. This newly created BlockReopenQueue should be
4166 * passed back in for subsequent calls that are intended to be of the same
4167 * atomic 'set'.
4168 *
4169 * bs is the BlockDriverState to add to the reopen queue.
4170 *
4d2cb092
KW
4171 * options contains the changed options for the associated bs
4172 * (the BlockReopenQueue takes ownership)
4173 *
e971aa12
JC
4174 * flags contains the open flags for the associated bs
4175 *
4176 * returns a pointer to bs_queue, which is either the newly allocated
4177 * bs_queue, or the existing bs_queue being used.
4178 *
1a63a907 4179 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
e971aa12 4180 */
28518102
KW
4181static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4182 BlockDriverState *bs,
4183 QDict *options,
bd86fb99 4184 const BdrvChildClass *klass,
272c02ea 4185 BdrvChildRole role,
3cdc69d3 4186 bool parent_is_format,
28518102 4187 QDict *parent_options,
077e8e20
AG
4188 int parent_flags,
4189 bool keep_old_opts)
e971aa12
JC
4190{
4191 assert(bs != NULL);
4192
4193 BlockReopenQueueEntry *bs_entry;
67251a31 4194 BdrvChild *child;
9aa09ddd
AG
4195 QDict *old_options, *explicit_options, *options_copy;
4196 int flags;
4197 QemuOpts *opts;
67251a31 4198
1a63a907
KW
4199 /* Make sure that the caller remembered to use a drained section. This is
4200 * important to avoid graph changes between the recursive queuing here and
4201 * bdrv_reopen_multiple(). */
4202 assert(bs->quiesce_counter > 0);
f0c28327 4203 GLOBAL_STATE_CODE();
1a63a907 4204
e971aa12
JC
4205 if (bs_queue == NULL) {
4206 bs_queue = g_new0(BlockReopenQueue, 1);
859443b0 4207 QTAILQ_INIT(bs_queue);
e971aa12
JC
4208 }
4209
4d2cb092
KW
4210 if (!options) {
4211 options = qdict_new();
4212 }
4213
5b7ba05f 4214 /* Check if this BlockDriverState is already in the queue */
859443b0 4215 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
5b7ba05f
AG
4216 if (bs == bs_entry->state.bs) {
4217 break;
4218 }
4219 }
4220
28518102
KW
4221 /*
4222 * Precedence of options:
4223 * 1. Explicitly passed in options (highest)
9aa09ddd
AG
4224 * 2. Retained from explicitly set options of bs
4225 * 3. Inherited from parent node
4226 * 4. Retained from effective options of bs
28518102
KW
4227 */
4228
145f598e 4229 /* Old explicitly set values (don't overwrite by inherited value) */
077e8e20
AG
4230 if (bs_entry || keep_old_opts) {
4231 old_options = qdict_clone_shallow(bs_entry ?
4232 bs_entry->state.explicit_options :
4233 bs->explicit_options);
4234 bdrv_join_options(bs, options, old_options);
4235 qobject_unref(old_options);
5b7ba05f 4236 }
145f598e
KW
4237
4238 explicit_options = qdict_clone_shallow(options);
4239
28518102
KW
4240 /* Inherit from parent node */
4241 if (parent_options) {
9aa09ddd 4242 flags = 0;
3cdc69d3 4243 klass->inherit_options(role, parent_is_format, &flags, options,
272c02ea 4244 parent_flags, parent_options);
9aa09ddd
AG
4245 } else {
4246 flags = bdrv_get_flags(bs);
28518102
KW
4247 }
4248
077e8e20
AG
4249 if (keep_old_opts) {
4250 /* Old values are used for options that aren't set yet */
4251 old_options = qdict_clone_shallow(bs->options);
4252 bdrv_join_options(bs, options, old_options);
4253 qobject_unref(old_options);
4254 }
4d2cb092 4255
9aa09ddd
AG
4256 /* We have the final set of options so let's update the flags */
4257 options_copy = qdict_clone_shallow(options);
4258 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4259 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4260 update_flags_from_options(&flags, opts);
4261 qemu_opts_del(opts);
4262 qobject_unref(options_copy);
4263
fd452021 4264 /* bdrv_open_inherit() sets and clears some additional flags internally */
f1f25a2e 4265 flags &= ~BDRV_O_PROTOCOL;
fd452021
KW
4266 if (flags & BDRV_O_RDWR) {
4267 flags |= BDRV_O_ALLOW_RDWR;
4268 }
f1f25a2e 4269
1857c97b
KW
4270 if (!bs_entry) {
4271 bs_entry = g_new0(BlockReopenQueueEntry, 1);
859443b0 4272 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1857c97b 4273 } else {
cb3e7f08
MAL
4274 qobject_unref(bs_entry->state.options);
4275 qobject_unref(bs_entry->state.explicit_options);
1857c97b
KW
4276 }
4277
4278 bs_entry->state.bs = bs;
4279 bs_entry->state.options = options;
4280 bs_entry->state.explicit_options = explicit_options;
4281 bs_entry->state.flags = flags;
4282
8546632e
AG
4283 /*
4284 * If keep_old_opts is false then it means that unspecified
4285 * options must be reset to their original value. We don't allow
4286 * resetting 'backing' but we need to know if the option is
4287 * missing in order to decide if we have to return an error.
4288 */
4289 if (!keep_old_opts) {
4290 bs_entry->state.backing_missing =
4291 !qdict_haskey(options, "backing") &&
4292 !qdict_haskey(options, "backing.driver");
4293 }
4294
67251a31 4295 QLIST_FOREACH(child, &bs->children, next) {
8546632e
AG
4296 QDict *new_child_options = NULL;
4297 bool child_keep_old = keep_old_opts;
67251a31 4298
4c9dfe5d
KW
4299 /* reopen can only change the options of block devices that were
4300 * implicitly created and inherited options. For other (referenced)
4301 * block devices, a syntax like "backing.foo" results in an error. */
67251a31
KW
4302 if (child->bs->inherits_from != bs) {
4303 continue;
4304 }
4305
8546632e
AG
4306 /* Check if the options contain a child reference */
4307 if (qdict_haskey(options, child->name)) {
4308 const char *childref = qdict_get_try_str(options, child->name);
4309 /*
4310 * The current child must not be reopened if the child
4311 * reference is null or points to a different node.
4312 */
4313 if (g_strcmp0(childref, child->bs->node_name)) {
4314 continue;
4315 }
4316 /*
4317 * If the child reference points to the current child then
4318 * reopen it with its existing set of options (note that
4319 * it can still inherit new options from the parent).
4320 */
4321 child_keep_old = true;
4322 } else {
4323 /* Extract child options ("child-name.*") */
4324 char *child_key_dot = g_strdup_printf("%s.", child->name);
4325 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4326 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4327 g_free(child_key_dot);
4328 }
4c9dfe5d 4329
9aa09ddd 4330 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
3cdc69d3
HR
4331 child->klass, child->role, bs->drv->is_format,
4332 options, flags, child_keep_old);
e971aa12
JC
4333 }
4334
e971aa12
JC
4335 return bs_queue;
4336}
4337
28518102
KW
4338BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4339 BlockDriverState *bs,
077e8e20 4340 QDict *options, bool keep_old_opts)
28518102 4341{
f791bf7f
EGE
4342 GLOBAL_STATE_CODE();
4343
3cdc69d3
HR
4344 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4345 NULL, 0, keep_old_opts);
28518102
KW
4346}
4347
ab5b5228
AG
4348void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4349{
f791bf7f 4350 GLOBAL_STATE_CODE();
ab5b5228
AG
4351 if (bs_queue) {
4352 BlockReopenQueueEntry *bs_entry, *next;
4353 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4354 qobject_unref(bs_entry->state.explicit_options);
4355 qobject_unref(bs_entry->state.options);
4356 g_free(bs_entry);
4357 }
4358 g_free(bs_queue);
4359 }
4360}
4361
e971aa12
JC
4362/*
4363 * Reopen multiple BlockDriverStates atomically & transactionally.
4364 *
4365 * The queue passed in (bs_queue) must have been built up previous
4366 * via bdrv_reopen_queue().
4367 *
4368 * Reopens all BDS specified in the queue, with the appropriate
4369 * flags. All devices are prepared for reopen, and failure of any
50d6a8a3 4370 * device will cause all device changes to be abandoned, and intermediate
e971aa12
JC
4371 * data cleaned up.
4372 *
4373 * If all devices prepare successfully, then the changes are committed
4374 * to all devices.
4375 *
1a63a907
KW
4376 * All affected nodes must be drained between bdrv_reopen_queue() and
4377 * bdrv_reopen_multiple().
6cf42ca2
KW
4378 *
4379 * To be called from the main thread, with all other AioContexts unlocked.
e971aa12 4380 */
5019aece 4381int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
e971aa12
JC
4382{
4383 int ret = -1;
4384 BlockReopenQueueEntry *bs_entry, *next;
6cf42ca2 4385 AioContext *ctx;
72373e40
VSO
4386 Transaction *tran = tran_new();
4387 g_autoptr(GHashTable) found = NULL;
4388 g_autoptr(GSList) refresh_list = NULL;
e971aa12 4389
6cf42ca2 4390 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
e971aa12 4391 assert(bs_queue != NULL);
da359909 4392 GLOBAL_STATE_CODE();
e971aa12 4393
a2aabf88 4394 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
6cf42ca2
KW
4395 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4396 aio_context_acquire(ctx);
a2aabf88 4397 ret = bdrv_flush(bs_entry->state.bs);
6cf42ca2 4398 aio_context_release(ctx);
a2aabf88
VSO
4399 if (ret < 0) {
4400 error_setg_errno(errp, -ret, "Error flushing drive");
e3fc91aa 4401 goto abort;
a2aabf88
VSO
4402 }
4403 }
4404
859443b0 4405 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
1a63a907 4406 assert(bs_entry->state.bs->quiesce_counter > 0);
6cf42ca2
KW
4407 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4408 aio_context_acquire(ctx);
72373e40 4409 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
6cf42ca2 4410 aio_context_release(ctx);
72373e40
VSO
4411 if (ret < 0) {
4412 goto abort;
e971aa12
JC
4413 }
4414 bs_entry->prepared = true;
4415 }
4416
72373e40 4417 found = g_hash_table_new(NULL, NULL);
859443b0 4418 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
69b736e7 4419 BDRVReopenState *state = &bs_entry->state;
72373e40
VSO
4420
4421 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4422 if (state->old_backing_bs) {
4423 refresh_list = bdrv_topological_dfs(refresh_list, found,
4424 state->old_backing_bs);
cb828c31 4425 }
ecd30d2d
AG
4426 if (state->old_file_bs) {
4427 refresh_list = bdrv_topological_dfs(refresh_list, found,
4428 state->old_file_bs);
4429 }
72373e40
VSO
4430 }
4431
4432 /*
4433 * Note that file-posix driver rely on permission update done during reopen
4434 * (even if no permission changed), because it wants "new" permissions for
4435 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4436 * in raw_reopen_prepare() which is called with "old" permissions.
4437 */
4438 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4439 if (ret < 0) {
4440 goto abort;
69b736e7
KW
4441 }
4442
fcd6a4f4
VSO
4443 /*
4444 * If we reach this point, we have success and just need to apply the
4445 * changes.
4446 *
4447 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4448 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4449 * children are usually goes after parents in reopen-queue, so go from last
4450 * to first element.
e971aa12 4451 */
fcd6a4f4 4452 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
6cf42ca2
KW
4453 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4454 aio_context_acquire(ctx);
e971aa12 4455 bdrv_reopen_commit(&bs_entry->state);
6cf42ca2 4456 aio_context_release(ctx);
e971aa12
JC
4457 }
4458
72373e40 4459 tran_commit(tran);
69b736e7 4460
72373e40
VSO
4461 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4462 BlockDriverState *bs = bs_entry->state.bs;
74ad9a3b 4463
72373e40 4464 if (bs->drv->bdrv_reopen_commit_post) {
6cf42ca2
KW
4465 ctx = bdrv_get_aio_context(bs);
4466 aio_context_acquire(ctx);
72373e40 4467 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
6cf42ca2 4468 aio_context_release(ctx);
69b736e7
KW
4469 }
4470 }
17e1e2be 4471
72373e40
VSO
4472 ret = 0;
4473 goto cleanup;
17e1e2be 4474
72373e40
VSO
4475abort:
4476 tran_abort(tran);
4477 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4478 if (bs_entry->prepared) {
6cf42ca2
KW
4479 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4480 aio_context_acquire(ctx);
72373e40 4481 bdrv_reopen_abort(&bs_entry->state);
6cf42ca2 4482 aio_context_release(ctx);
17e1e2be
PK
4483 }
4484 }
72373e40 4485
e971aa12 4486cleanup:
ab5b5228 4487 bdrv_reopen_queue_free(bs_queue);
40840e41 4488
e971aa12
JC
4489 return ret;
4490}
4491
6cf42ca2
KW
4492int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4493 Error **errp)
6e1000a8 4494{
6cf42ca2 4495 AioContext *ctx = bdrv_get_aio_context(bs);
6e1000a8 4496 BlockReopenQueue *queue;
6cf42ca2 4497 int ret;
6e1000a8 4498
f791bf7f
EGE
4499 GLOBAL_STATE_CODE();
4500
6e1000a8 4501 bdrv_subtree_drained_begin(bs);
6cf42ca2
KW
4502 if (ctx != qemu_get_aio_context()) {
4503 aio_context_release(ctx);
4504 }
4505
4506 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
5019aece 4507 ret = bdrv_reopen_multiple(queue, errp);
6cf42ca2
KW
4508
4509 if (ctx != qemu_get_aio_context()) {
4510 aio_context_acquire(ctx);
4511 }
6e1000a8
AG
4512 bdrv_subtree_drained_end(bs);
4513
4514 return ret;
4515}
4516
6cf42ca2
KW
4517int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4518 Error **errp)
4519{
4520 QDict *opts = qdict_new();
4521
f791bf7f
EGE
4522 GLOBAL_STATE_CODE();
4523
6cf42ca2
KW
4524 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4525
4526 return bdrv_reopen(bs, opts, true, errp);
4527}
4528
cb828c31
AG
4529/*
4530 * Take a BDRVReopenState and check if the value of 'backing' in the
4531 * reopen_state->options QDict is valid or not.
4532 *
4533 * If 'backing' is missing from the QDict then return 0.
4534 *
4535 * If 'backing' contains the node name of the backing file of
4536 * reopen_state->bs then return 0.
4537 *
4538 * If 'backing' contains a different node name (or is null) then check
4539 * whether the current backing file can be replaced with the new one.
4540 * If that's the case then reopen_state->replace_backing_bs is set to
4541 * true and reopen_state->new_backing_bs contains a pointer to the new
4542 * backing BlockDriverState (or NULL).
4543 *
4544 * Return 0 on success, otherwise return < 0 and set @errp.
4545 */
ecd30d2d
AG
4546static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4547 bool is_backing, Transaction *tran,
4548 Error **errp)
cb828c31
AG
4549{
4550 BlockDriverState *bs = reopen_state->bs;
ecd30d2d
AG
4551 BlockDriverState *new_child_bs;
4552 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4553 child_bs(bs->file);
4554 const char *child_name = is_backing ? "backing" : "file";
cb828c31
AG
4555 QObject *value;
4556 const char *str;
4557
bdb73476
EGE
4558 GLOBAL_STATE_CODE();
4559
ecd30d2d 4560 value = qdict_get(reopen_state->options, child_name);
cb828c31
AG
4561 if (value == NULL) {
4562 return 0;
4563 }
4564
4565 switch (qobject_type(value)) {
4566 case QTYPE_QNULL:
ecd30d2d
AG
4567 assert(is_backing); /* The 'file' option does not allow a null value */
4568 new_child_bs = NULL;
cb828c31
AG
4569 break;
4570 case QTYPE_QSTRING:
410f44f5 4571 str = qstring_get_str(qobject_to(QString, value));
ecd30d2d
AG
4572 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4573 if (new_child_bs == NULL) {
cb828c31 4574 return -EINVAL;
ecd30d2d
AG
4575 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4576 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4577 "cycle", str, child_name, bs->node_name);
cb828c31
AG
4578 return -EINVAL;
4579 }
4580 break;
4581 default:
ecd30d2d
AG
4582 /*
4583 * The options QDict has been flattened, so 'backing' and 'file'
4584 * do not allow any other data type here.
4585 */
cb828c31
AG
4586 g_assert_not_reached();
4587 }
4588
ecd30d2d
AG
4589 if (old_child_bs == new_child_bs) {
4590 return 0;
4591 }
4592
4593 if (old_child_bs) {
4594 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
cbfdb98c
VSO
4595 return 0;
4596 }
4597
ecd30d2d
AG
4598 if (old_child_bs->implicit) {
4599 error_setg(errp, "Cannot replace implicit %s child of %s",
4600 child_name, bs->node_name);
cbfdb98c
VSO
4601 return -EPERM;
4602 }
4603 }
4604
ecd30d2d 4605 if (bs->drv->is_filter && !old_child_bs) {
25f78d9e
VSO
4606 /*
4607 * Filters always have a file or a backing child, so we are trying to
4608 * change wrong child
4609 */
4610 error_setg(errp, "'%s' is a %s filter node that does not support a "
ecd30d2d 4611 "%s child", bs->node_name, bs->drv->format_name, child_name);
1d42f48c
HR
4612 return -EINVAL;
4613 }
4614
ecd30d2d
AG
4615 if (is_backing) {
4616 reopen_state->old_backing_bs = old_child_bs;
4617 } else {
4618 reopen_state->old_file_bs = old_child_bs;
4619 }
4620
4621 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4622 tran, errp);
cb828c31
AG
4623}
4624
e971aa12
JC
4625/*
4626 * Prepares a BlockDriverState for reopen. All changes are staged in the
4627 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4628 * the block driver layer .bdrv_reopen_prepare()
4629 *
4630 * bs is the BlockDriverState to reopen
4631 * flags are the new open flags
4632 * queue is the reopen queue
4633 *
4634 * Returns 0 on success, non-zero on error. On error errp will be set
4635 * as well.
4636 *
4637 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4638 * It is the responsibility of the caller to then call the abort() or
4639 * commit() for any other BDS that have been left in a prepare() state
4640 *
4641 */
53e96d1e 4642static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
72373e40 4643 BlockReopenQueue *queue,
ecd30d2d 4644 Transaction *change_child_tran, Error **errp)
e971aa12
JC
4645{
4646 int ret = -1;
e6d79c41 4647 int old_flags;
e971aa12
JC
4648 Error *local_err = NULL;
4649 BlockDriver *drv;
ccf9dc07 4650 QemuOpts *opts;
4c8350fe 4651 QDict *orig_reopen_opts;
593b3071 4652 char *discard = NULL;
3d8ce171 4653 bool read_only;
9ad08c44 4654 bool drv_prepared = false;
e971aa12
JC
4655
4656 assert(reopen_state != NULL);
4657 assert(reopen_state->bs->drv != NULL);
da359909 4658 GLOBAL_STATE_CODE();
e971aa12
JC
4659 drv = reopen_state->bs->drv;
4660
4c8350fe
AG
4661 /* This function and each driver's bdrv_reopen_prepare() remove
4662 * entries from reopen_state->options as they are processed, so
4663 * we need to make a copy of the original QDict. */
4664 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4665
ccf9dc07
KW
4666 /* Process generic block layer options */
4667 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
af175e85 4668 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
ccf9dc07
KW
4669 ret = -EINVAL;
4670 goto error;
4671 }
4672
e6d79c41
AG
4673 /* This was already called in bdrv_reopen_queue_child() so the flags
4674 * are up-to-date. This time we simply want to remove the options from
4675 * QemuOpts in order to indicate that they have been processed. */
4676 old_flags = reopen_state->flags;
91a097e7 4677 update_flags_from_options(&reopen_state->flags, opts);
e6d79c41 4678 assert(old_flags == reopen_state->flags);
91a097e7 4679
415bbca8 4680 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
593b3071
AG
4681 if (discard != NULL) {
4682 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4683 error_setg(errp, "Invalid discard option");
4684 ret = -EINVAL;
4685 goto error;
4686 }
4687 }
4688
543770bd
AG
4689 reopen_state->detect_zeroes =
4690 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4691 if (local_err) {
4692 error_propagate(errp, local_err);
4693 ret = -EINVAL;
4694 goto error;
4695 }
4696
57f9db9a
AG
4697 /* All other options (including node-name and driver) must be unchanged.
4698 * Put them back into the QDict, so that they are checked at the end
4699 * of this function. */
4700 qemu_opts_to_qdict(opts, reopen_state->options);
ccf9dc07 4701
3d8ce171
JC
4702 /* If we are to stay read-only, do not allow permission change
4703 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4704 * not set, or if the BDS still has copy_on_read enabled */
4705 read_only = !(reopen_state->flags & BDRV_O_RDWR);
54a32bfe 4706 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3d8ce171
JC
4707 if (local_err) {
4708 error_propagate(errp, local_err);
e971aa12
JC
4709 goto error;
4710 }
4711
e971aa12 4712 if (drv->bdrv_reopen_prepare) {
faf116b4
AG
4713 /*
4714 * If a driver-specific option is missing, it means that we
4715 * should reset it to its default value.
4716 * But not all options allow that, so we need to check it first.
4717 */
4718 ret = bdrv_reset_options_allowed(reopen_state->bs,
4719 reopen_state->options, errp);
4720 if (ret) {
4721 goto error;
4722 }
4723
e971aa12
JC
4724 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4725 if (ret) {
4726 if (local_err != NULL) {
4727 error_propagate(errp, local_err);
4728 } else {
f30c66ba 4729 bdrv_refresh_filename(reopen_state->bs);
d8b6895f
LC
4730 error_setg(errp, "failed while preparing to reopen image '%s'",
4731 reopen_state->bs->filename);
e971aa12
JC
4732 }
4733 goto error;
4734 }
4735 } else {
4736 /* It is currently mandatory to have a bdrv_reopen_prepare()
4737 * handler for each supported drv. */
81e5f78a
AG
4738 error_setg(errp, "Block format '%s' used by node '%s' "
4739 "does not support reopening files", drv->format_name,
4740 bdrv_get_device_or_node_name(reopen_state->bs));
e971aa12
JC
4741 ret = -1;
4742 goto error;
4743 }
4744
9ad08c44
HR
4745 drv_prepared = true;
4746
bacd9b87
AG
4747 /*
4748 * We must provide the 'backing' option if the BDS has a backing
4749 * file or if the image file has a backing file name as part of
4750 * its metadata. Otherwise the 'backing' option can be omitted.
4751 */
4752 if (drv->supports_backing && reopen_state->backing_missing &&
1d42f48c 4753 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
8546632e
AG
4754 error_setg(errp, "backing is missing for '%s'",
4755 reopen_state->bs->node_name);
4756 ret = -EINVAL;
4757 goto error;
4758 }
4759
cb828c31
AG
4760 /*
4761 * Allow changing the 'backing' option. The new value can be
4762 * either a reference to an existing node (using its node name)
4763 * or NULL to simply detach the current backing file.
4764 */
ecd30d2d
AG
4765 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4766 change_child_tran, errp);
cb828c31
AG
4767 if (ret < 0) {
4768 goto error;
4769 }
4770 qdict_del(reopen_state->options, "backing");
4771
ecd30d2d
AG
4772 /* Allow changing the 'file' option. In this case NULL is not allowed */
4773 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4774 change_child_tran, errp);
4775 if (ret < 0) {
4776 goto error;
4777 }
4778 qdict_del(reopen_state->options, "file");
4779
4d2cb092
KW
4780 /* Options that are not handled are only okay if they are unchanged
4781 * compared to the old state. It is expected that some options are only
4782 * used for the initial open, but not reopen (e.g. filename) */
4783 if (qdict_size(reopen_state->options)) {
4784 const QDictEntry *entry = qdict_first(reopen_state->options);
4785
4786 do {
54fd1b0d
HR
4787 QObject *new = entry->value;
4788 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
4789
db905283
AG
4790 /* Allow child references (child_name=node_name) as long as they
4791 * point to the current child (i.e. everything stays the same). */
4792 if (qobject_type(new) == QTYPE_QSTRING) {
4793 BdrvChild *child;
4794 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4795 if (!strcmp(child->name, entry->key)) {
4796 break;
4797 }
4798 }
4799
4800 if (child) {
410f44f5
MA
4801 if (!strcmp(child->bs->node_name,
4802 qstring_get_str(qobject_to(QString, new)))) {
db905283
AG
4803 continue; /* Found child with this name, skip option */
4804 }
4805 }
4806 }
4807
129c7d1c 4808 /*
54fd1b0d
HR
4809 * TODO: When using -drive to specify blockdev options, all values
4810 * will be strings; however, when using -blockdev, blockdev-add or
4811 * filenames using the json:{} pseudo-protocol, they will be
4812 * correctly typed.
4813 * In contrast, reopening options are (currently) always strings
4814 * (because you can only specify them through qemu-io; all other
4815 * callers do not specify any options).
4816 * Therefore, when using anything other than -drive to create a BDS,
4817 * this cannot detect non-string options as unchanged, because
4818 * qobject_is_equal() always returns false for objects of different
4819 * type. In the future, this should be remedied by correctly typing
4820 * all options. For now, this is not too big of an issue because
4821 * the user can simply omit options which cannot be changed anyway,
4822 * so they will stay unchanged.
129c7d1c 4823 */
54fd1b0d 4824 if (!qobject_is_equal(new, old)) {
4d2cb092
KW
4825 error_setg(errp, "Cannot change the option '%s'", entry->key);
4826 ret = -EINVAL;
4827 goto error;
4828 }
4829 } while ((entry = qdict_next(reopen_state->options, entry)));
4830 }
4831
e971aa12
JC
4832 ret = 0;
4833
4c8350fe
AG
4834 /* Restore the original reopen_state->options QDict */
4835 qobject_unref(reopen_state->options);
4836 reopen_state->options = qobject_ref(orig_reopen_opts);
4837
e971aa12 4838error:
9ad08c44
HR
4839 if (ret < 0 && drv_prepared) {
4840 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4841 * call drv->bdrv_reopen_abort() before signaling an error
4842 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4843 * when the respective bdrv_reopen_prepare() has failed) */
4844 if (drv->bdrv_reopen_abort) {
4845 drv->bdrv_reopen_abort(reopen_state);
4846 }
4847 }
ccf9dc07 4848 qemu_opts_del(opts);
4c8350fe 4849 qobject_unref(orig_reopen_opts);
593b3071 4850 g_free(discard);
e971aa12
JC
4851 return ret;
4852}
4853
4854/*
4855 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4856 * makes them final by swapping the staging BlockDriverState contents into
4857 * the active BlockDriverState contents.
4858 */
53e96d1e 4859static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
e971aa12
JC
4860{
4861 BlockDriver *drv;
50bf65ba 4862 BlockDriverState *bs;
50196d7a 4863 BdrvChild *child;
e971aa12
JC
4864
4865 assert(reopen_state != NULL);
50bf65ba
VSO
4866 bs = reopen_state->bs;
4867 drv = bs->drv;
e971aa12 4868 assert(drv != NULL);
da359909 4869 GLOBAL_STATE_CODE();
e971aa12
JC
4870
4871 /* If there are any driver level actions to take */
4872 if (drv->bdrv_reopen_commit) {
4873 drv->bdrv_reopen_commit(reopen_state);
4874 }
4875
4876 /* set BDS specific flags now */
cb3e7f08 4877 qobject_unref(bs->explicit_options);
4c8350fe 4878 qobject_unref(bs->options);
ab5b5228
AG
4879 qobject_ref(reopen_state->explicit_options);
4880 qobject_ref(reopen_state->options);
145f598e 4881
50bf65ba 4882 bs->explicit_options = reopen_state->explicit_options;
4c8350fe 4883 bs->options = reopen_state->options;
50bf65ba 4884 bs->open_flags = reopen_state->flags;
543770bd 4885 bs->detect_zeroes = reopen_state->detect_zeroes;
355ef4ac 4886
50196d7a
AG
4887 /* Remove child references from bs->options and bs->explicit_options.
4888 * Child options were already removed in bdrv_reopen_queue_child() */
4889 QLIST_FOREACH(child, &bs->children, next) {
4890 qdict_del(bs->explicit_options, child->name);
4891 qdict_del(bs->options, child->name);
4892 }
3d0e8743
VSO
4893 /* backing is probably removed, so it's not handled by previous loop */
4894 qdict_del(bs->explicit_options, "backing");
4895 qdict_del(bs->options, "backing");
4896
1e4c797c 4897 bdrv_refresh_limits(bs, NULL, NULL);
e971aa12
JC
4898}
4899
4900/*
4901 * Abort the reopen, and delete and free the staged changes in
4902 * reopen_state
4903 */
53e96d1e 4904static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
e971aa12
JC
4905{
4906 BlockDriver *drv;
4907
4908 assert(reopen_state != NULL);
4909 drv = reopen_state->bs->drv;
4910 assert(drv != NULL);
da359909 4911 GLOBAL_STATE_CODE();
e971aa12
JC
4912
4913 if (drv->bdrv_reopen_abort) {
4914 drv->bdrv_reopen_abort(reopen_state);
4915 }
4916}
4917
4918
64dff520 4919static void bdrv_close(BlockDriverState *bs)
fc01f7e7 4920{
33384421 4921 BdrvAioNotifier *ban, *ban_next;
50a3efb0 4922 BdrvChild *child, *next;
33384421 4923
f791bf7f 4924 GLOBAL_STATE_CODE();
30f55fb8 4925 assert(!bs->refcnt);
99b7e775 4926
fc27291d 4927 bdrv_drained_begin(bs); /* complete I/O */
58fda173 4928 bdrv_flush(bs);
53ec73e2 4929 bdrv_drain(bs); /* in case flush left pending I/O */
fc27291d 4930
3cbc002c 4931 if (bs->drv) {
3c005293 4932 if (bs->drv->bdrv_close) {
7b99a266 4933 /* Must unfreeze all children, so bdrv_unref_child() works */
3c005293
VSO
4934 bs->drv->bdrv_close(bs);
4935 }
9a4f4c31 4936 bs->drv = NULL;
50a3efb0 4937 }
9a7dedbc 4938
50a3efb0 4939 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
dd4118c7 4940 bdrv_unref_child(bs, child);
b338082b 4941 }
98f90dba 4942
dd4118c7
AG
4943 bs->backing = NULL;
4944 bs->file = NULL;
50a3efb0
AG
4945 g_free(bs->opaque);
4946 bs->opaque = NULL;
d73415a3 4947 qatomic_set(&bs->copy_on_read, 0);
50a3efb0
AG
4948 bs->backing_file[0] = '\0';
4949 bs->backing_format[0] = '\0';
4950 bs->total_sectors = 0;
4951 bs->encrypted = false;
4952 bs->sg = false;
cb3e7f08
MAL
4953 qobject_unref(bs->options);
4954 qobject_unref(bs->explicit_options);
50a3efb0
AG
4955 bs->options = NULL;
4956 bs->explicit_options = NULL;
cb3e7f08 4957 qobject_unref(bs->full_open_options);
50a3efb0 4958 bs->full_open_options = NULL;
0bc329fb
HR
4959 g_free(bs->block_status_cache);
4960 bs->block_status_cache = NULL;
50a3efb0 4961
cca43ae1
VSO
4962 bdrv_release_named_dirty_bitmaps(bs);
4963 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4964
33384421
HR
4965 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4966 g_free(ban);
4967 }
4968 QLIST_INIT(&bs->aio_notifiers);
fc27291d 4969 bdrv_drained_end(bs);
1a6d3bd2
GK
4970
4971 /*
4972 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4973 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4974 * gets called.
4975 */
4976 if (bs->quiesce_counter) {
4977 bdrv_drain_all_end_quiesce(bs);
4978 }
b338082b
FB
4979}
4980
2bc93fed
MK
4981void bdrv_close_all(void)
4982{
b3b5299d 4983 assert(job_next(NULL) == NULL);
f791bf7f 4984 GLOBAL_STATE_CODE();
ca9bd24c
HR
4985
4986 /* Drop references from requests still in flight, such as canceled block
4987 * jobs whose AIO context has not been polled yet */
4988 bdrv_drain_all();
2bc93fed 4989
ca9bd24c
HR
4990 blk_remove_all_bs();
4991 blockdev_close_all_bdrv_states();
ed78cda3 4992
a1a2af07 4993 assert(QTAILQ_EMPTY(&all_bdrv_states));
2bc93fed
MK
4994}
4995
d0ac0380
KW
4996static bool should_update_child(BdrvChild *c, BlockDriverState *to)
4997{
2f30b7c3
VSO
4998 GQueue *queue;
4999 GHashTable *found;
5000 bool ret;
d0ac0380 5001
bd86fb99 5002 if (c->klass->stay_at_node) {
d0ac0380
KW
5003 return false;
5004 }
5005
ec9f10fe
HR
5006 /* If the child @c belongs to the BDS @to, replacing the current
5007 * c->bs by @to would mean to create a loop.
5008 *
5009 * Such a case occurs when appending a BDS to a backing chain.
5010 * For instance, imagine the following chain:
5011 *
5012 * guest device -> node A -> further backing chain...
5013 *
5014 * Now we create a new BDS B which we want to put on top of this
5015 * chain, so we first attach A as its backing node:
5016 *
5017 * node B
5018 * |
5019 * v
5020 * guest device -> node A -> further backing chain...
5021 *
5022 * Finally we want to replace A by B. When doing that, we want to
5023 * replace all pointers to A by pointers to B -- except for the
5024 * pointer from B because (1) that would create a loop, and (2)
5025 * that pointer should simply stay intact:
5026 *
5027 * guest device -> node B
5028 * |
5029 * v
5030 * node A -> further backing chain...
5031 *
5032 * In general, when replacing a node A (c->bs) by a node B (@to),
5033 * if A is a child of B, that means we cannot replace A by B there
5034 * because that would create a loop. Silently detaching A from B
5035 * is also not really an option. So overall just leaving A in
2f30b7c3
VSO
5036 * place there is the most sensible choice.
5037 *
5038 * We would also create a loop in any cases where @c is only
5039 * indirectly referenced by @to. Prevent this by returning false
5040 * if @c is found (by breadth-first search) anywhere in the whole
5041 * subtree of @to.
5042 */
5043
5044 ret = true;
5045 found = g_hash_table_new(NULL, NULL);
5046 g_hash_table_add(found, to);
5047 queue = g_queue_new();
5048 g_queue_push_tail(queue, to);
5049
5050 while (!g_queue_is_empty(queue)) {
5051 BlockDriverState *v = g_queue_pop_head(queue);
5052 BdrvChild *c2;
5053
5054 QLIST_FOREACH(c2, &v->children, next) {
5055 if (c2 == c) {
5056 ret = false;
5057 break;
5058 }
5059
5060 if (g_hash_table_contains(found, c2->bs)) {
5061 continue;
5062 }
5063
5064 g_queue_push_tail(queue, c2->bs);
5065 g_hash_table_add(found, c2->bs);
d0ac0380
KW
5066 }
5067 }
5068
2f30b7c3
VSO
5069 g_queue_free(queue);
5070 g_hash_table_destroy(found);
5071
5072 return ret;
d0ac0380
KW
5073}
5074
46541ee5
VSO
5075typedef struct BdrvRemoveFilterOrCowChild {
5076 BdrvChild *child;
82b54cf5 5077 BlockDriverState *bs;
46541ee5
VSO
5078 bool is_backing;
5079} BdrvRemoveFilterOrCowChild;
5080
5081static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
5082{
5083 BdrvRemoveFilterOrCowChild *s = opaque;
5084 BlockDriverState *parent_bs = s->child->opaque;
5085
46541ee5
VSO
5086 if (s->is_backing) {
5087 parent_bs->backing = s->child;
5088 } else {
5089 parent_bs->file = s->child;
5090 }
5091
5092 /*
4bf021db 5093 * We don't have to restore child->bs here to undo bdrv_replace_child_tran()
46541ee5
VSO
5094 * because that function is transactionable and it registered own completion
5095 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
5096 * called automatically.
5097 */
5098}
5099
5100static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
5101{
5102 BdrvRemoveFilterOrCowChild *s = opaque;
bdb73476 5103 GLOBAL_STATE_CODE();
46541ee5
VSO
5104 bdrv_child_free(s->child);
5105}
5106
82b54cf5
HR
5107static void bdrv_remove_filter_or_cow_child_clean(void *opaque)
5108{
5109 BdrvRemoveFilterOrCowChild *s = opaque;
5110
5111 /* Drop the bs reference after the transaction is done */
5112 bdrv_unref(s->bs);
5113 g_free(s);
5114}
5115
46541ee5
VSO
5116static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
5117 .abort = bdrv_remove_filter_or_cow_child_abort,
5118 .commit = bdrv_remove_filter_or_cow_child_commit,
82b54cf5 5119 .clean = bdrv_remove_filter_or_cow_child_clean,
46541ee5
VSO
5120};
5121
5122/*
5b995019 5123 * A function to remove backing or file child of @bs.
7ec390d5 5124 * Function doesn't update permissions, caller is responsible for this.
46541ee5 5125 */
5b995019
VSO
5126static void bdrv_remove_file_or_backing_child(BlockDriverState *bs,
5127 BdrvChild *child,
5128 Transaction *tran)
46541ee5 5129{
562bda8b 5130 BdrvChild **childp;
46541ee5 5131 BdrvRemoveFilterOrCowChild *s;
5b995019 5132
46541ee5
VSO
5133 if (!child) {
5134 return;
5135 }
5136
82b54cf5
HR
5137 /*
5138 * Keep a reference to @bs so @childp will stay valid throughout the
5139 * transaction (required by bdrv_replace_child_tran())
5140 */
5141 bdrv_ref(bs);
562bda8b
HR
5142 if (child == bs->backing) {
5143 childp = &bs->backing;
5144 } else if (child == bs->file) {
5145 childp = &bs->file;
5146 } else {
5147 g_assert_not_reached();
5148 }
5149
46541ee5 5150 if (child->bs) {
b0a9f6fe
HR
5151 /*
5152 * Pass free_empty_child=false, we will free the child in
5153 * bdrv_remove_filter_or_cow_child_commit()
5154 */
5155 bdrv_replace_child_tran(childp, NULL, tran, false);
46541ee5
VSO
5156 }
5157
5158 s = g_new(BdrvRemoveFilterOrCowChild, 1);
5159 *s = (BdrvRemoveFilterOrCowChild) {
5160 .child = child,
82b54cf5 5161 .bs = bs,
562bda8b 5162 .is_backing = (childp == &bs->backing),
46541ee5
VSO
5163 };
5164 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
46541ee5
VSO
5165}
5166
5b995019
VSO
5167/*
5168 * A function to remove backing-chain child of @bs if exists: cow child for
5169 * format nodes (always .backing) and filter child for filters (may be .file or
5170 * .backing)
5171 */
5172static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
5173 Transaction *tran)
5174{
5175 bdrv_remove_file_or_backing_child(bs, bdrv_filter_or_cow_child(bs), tran);
5176}
5177
117caba9
VSO
5178static int bdrv_replace_node_noperm(BlockDriverState *from,
5179 BlockDriverState *to,
5180 bool auto_skip, Transaction *tran,
5181 Error **errp)
5182{
5183 BdrvChild *c, *next;
5184
82b54cf5 5185 assert(to != NULL);
bdb73476 5186 GLOBAL_STATE_CODE();
82b54cf5 5187
117caba9
VSO
5188 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5189 assert(c->bs == from);
5190 if (!should_update_child(c, to)) {
5191 if (auto_skip) {
5192 continue;
5193 }
5194 error_setg(errp, "Should not change '%s' link to '%s'",
5195 c->name, from->node_name);
5196 return -EINVAL;
5197 }
5198 if (c->frozen) {
5199 error_setg(errp, "Cannot change '%s' link to '%s'",
5200 c->name, from->node_name);
5201 return -EPERM;
5202 }
82b54cf5
HR
5203
5204 /*
5205 * Passing a pointer to the local variable @c is fine here, because
5206 * @to is not NULL, and so &c will not be attached to the transaction.
5207 */
b0a9f6fe 5208 bdrv_replace_child_tran(&c, to, tran, true);
117caba9
VSO
5209 }
5210
5211 return 0;
5212}
5213
313274bb
VSO
5214/*
5215 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5216 * if it creates a parent-child relation loop or if parent is block-job.
5217 *
5218 * With auto_skip=false the error is returned if from has a parent which should
5219 * not be updated.
3108a15c
VSO
5220 *
5221 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5222 * case backing link of the cow-parent of @to is removed.
82b54cf5
HR
5223 *
5224 * @to must not be NULL.
313274bb 5225 */
a1e708fc
VSO
5226static int bdrv_replace_node_common(BlockDriverState *from,
5227 BlockDriverState *to,
3108a15c
VSO
5228 bool auto_skip, bool detach_subchain,
5229 Error **errp)
dd62f1ca 5230{
3bb0e298
VSO
5231 Transaction *tran = tran_new();
5232 g_autoptr(GHashTable) found = NULL;
5233 g_autoptr(GSList) refresh_list = NULL;
2d369d6e 5234 BlockDriverState *to_cow_parent = NULL;
234ac1a9
KW
5235 int ret;
5236
bdb73476 5237 GLOBAL_STATE_CODE();
82b54cf5
HR
5238 assert(to != NULL);
5239
3108a15c
VSO
5240 if (detach_subchain) {
5241 assert(bdrv_chain_contains(from, to));
5242 assert(from != to);
5243 for (to_cow_parent = from;
5244 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5245 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5246 {
5247 ;
5248 }
5249 }
5250
234ac1a9
KW
5251 /* Make sure that @from doesn't go away until we have successfully attached
5252 * all of its parents to @to. */
5253 bdrv_ref(from);
dd62f1ca 5254
f871abd6 5255 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
30dd65f3 5256 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
f871abd6
KW
5257 bdrv_drained_begin(from);
5258
3bb0e298
VSO
5259 /*
5260 * Do the replacement without permission update.
5261 * Replacement may influence the permissions, we should calculate new
5262 * permissions based on new graph. If we fail, we'll roll-back the
5263 * replacement.
5264 */
117caba9
VSO
5265 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5266 if (ret < 0) {
5267 goto out;
234ac1a9
KW
5268 }
5269
3108a15c
VSO
5270 if (detach_subchain) {
5271 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
5272 }
5273
3bb0e298 5274 found = g_hash_table_new(NULL, NULL);
234ac1a9 5275
3bb0e298
VSO
5276 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
5277 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
9bd910e2 5278
3bb0e298
VSO
5279 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5280 if (ret < 0) {
5281 goto out;
dd62f1ca 5282 }
234ac1a9 5283
a1e708fc
VSO
5284 ret = 0;
5285
234ac1a9 5286out:
3bb0e298
VSO
5287 tran_finalize(tran, ret);
5288
f871abd6 5289 bdrv_drained_end(from);
234ac1a9 5290 bdrv_unref(from);
a1e708fc
VSO
5291
5292 return ret;
dd62f1ca
KW
5293}
5294
82b54cf5
HR
5295/**
5296 * Replace node @from by @to (where neither may be NULL).
5297 */
a1e708fc
VSO
5298int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5299 Error **errp)
313274bb 5300{
f791bf7f
EGE
5301 GLOBAL_STATE_CODE();
5302
3108a15c
VSO
5303 return bdrv_replace_node_common(from, to, true, false, errp);
5304}
5305
5306int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5307{
f791bf7f
EGE
5308 GLOBAL_STATE_CODE();
5309
3108a15c
VSO
5310 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5311 errp);
313274bb
VSO
5312}
5313
4ddc07ca
PB
5314/*
5315 * Add new bs contents at the top of an image chain while the chain is
5316 * live, while keeping required fields on the top layer.
5317 *
5318 * This will modify the BlockDriverState fields, and swap contents
5319 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5320 *
2272edcf
VSO
5321 * bs_new must not be attached to a BlockBackend and must not have backing
5322 * child.
4ddc07ca
PB
5323 *
5324 * This function does not create any image files.
5325 */
a1e708fc
VSO
5326int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5327 Error **errp)
4ddc07ca 5328{
2272edcf
VSO
5329 int ret;
5330 Transaction *tran = tran_new();
5331
f791bf7f
EGE
5332 GLOBAL_STATE_CODE();
5333
2272edcf
VSO
5334 assert(!bs_new->backing);
5335
5336 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5337 &child_of_bds, bdrv_backing_role(bs_new),
5338 &bs_new->backing, tran, errp);
a1e708fc 5339 if (ret < 0) {
2272edcf 5340 goto out;
b2c2832c 5341 }
dd62f1ca 5342
2272edcf 5343 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
a1e708fc 5344 if (ret < 0) {
2272edcf 5345 goto out;
234ac1a9 5346 }
4ddc07ca 5347
2272edcf
VSO
5348 ret = bdrv_refresh_perms(bs_new, errp);
5349out:
5350 tran_finalize(tran, ret);
5351
1e4c797c 5352 bdrv_refresh_limits(bs_top, NULL, NULL);
2272edcf
VSO
5353
5354 return ret;
8802d1fd
JC
5355}
5356
bd8f4c42
VSO
5357/* Not for empty child */
5358int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5359 Error **errp)
5360{
5361 int ret;
5362 Transaction *tran = tran_new();
5363 g_autoptr(GHashTable) found = NULL;
5364 g_autoptr(GSList) refresh_list = NULL;
5365 BlockDriverState *old_bs = child->bs;
5366
f791bf7f
EGE
5367 GLOBAL_STATE_CODE();
5368
bd8f4c42
VSO
5369 bdrv_ref(old_bs);
5370 bdrv_drained_begin(old_bs);
5371 bdrv_drained_begin(new_bs);
5372
b0a9f6fe
HR
5373 bdrv_replace_child_tran(&child, new_bs, tran, true);
5374 /* @new_bs must have been non-NULL, so @child must not have been freed */
5375 assert(child != NULL);
bd8f4c42
VSO
5376
5377 found = g_hash_table_new(NULL, NULL);
5378 refresh_list = bdrv_topological_dfs(refresh_list, found, old_bs);
5379 refresh_list = bdrv_topological_dfs(refresh_list, found, new_bs);
5380
5381 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5382
5383 tran_finalize(tran, ret);
5384
5385 bdrv_drained_end(old_bs);
5386 bdrv_drained_end(new_bs);
5387 bdrv_unref(old_bs);
5388
5389 return ret;
5390}
5391
4f6fd349 5392static void bdrv_delete(BlockDriverState *bs)
b338082b 5393{
3718d8ab 5394 assert(bdrv_op_blocker_is_empty(bs));
4f6fd349 5395 assert(!bs->refcnt);
f791bf7f 5396 GLOBAL_STATE_CODE();
18846dee 5397
1b7bdbc1 5398 /* remove from list, if necessary */
63eaaae0
KW
5399 if (bs->node_name[0] != '\0') {
5400 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5401 }
2c1d04e0
HR
5402 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5403
30c321f9
AK
5404 bdrv_close(bs);
5405
7267c094 5406 g_free(bs);
fc01f7e7
FB
5407}
5408
96796fae
VSO
5409
5410/*
5411 * Replace @bs by newly created block node.
5412 *
5413 * @options is a QDict of options to pass to the block drivers, or NULL for an
5414 * empty set of options. The reference to the QDict belongs to the block layer
5415 * after the call (even on failure), so if the caller intends to reuse the
5416 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5417 */
5418BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
8872ef78
AS
5419 int flags, Error **errp)
5420{
f053b7e8
VSO
5421 ERRP_GUARD();
5422 int ret;
b11c8739
VSO
5423 BlockDriverState *new_node_bs = NULL;
5424 const char *drvname, *node_name;
5425 BlockDriver *drv;
5426
5427 drvname = qdict_get_try_str(options, "driver");
5428 if (!drvname) {
5429 error_setg(errp, "driver is not specified");
5430 goto fail;
5431 }
5432
5433 drv = bdrv_find_format(drvname);
5434 if (!drv) {
5435 error_setg(errp, "Unknown driver: '%s'", drvname);
5436 goto fail;
5437 }
8872ef78 5438
b11c8739
VSO
5439 node_name = qdict_get_try_str(options, "node-name");
5440
f791bf7f
EGE
5441 GLOBAL_STATE_CODE();
5442
b11c8739
VSO
5443 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5444 errp);
5445 options = NULL; /* bdrv_new_open_driver() eats options */
5446 if (!new_node_bs) {
8872ef78 5447 error_prepend(errp, "Could not create node: ");
b11c8739 5448 goto fail;
8872ef78
AS
5449 }
5450
5451 bdrv_drained_begin(bs);
f053b7e8 5452 ret = bdrv_replace_node(bs, new_node_bs, errp);
8872ef78
AS
5453 bdrv_drained_end(bs);
5454
f053b7e8
VSO
5455 if (ret < 0) {
5456 error_prepend(errp, "Could not replace node: ");
b11c8739 5457 goto fail;
8872ef78
AS
5458 }
5459
5460 return new_node_bs;
b11c8739
VSO
5461
5462fail:
5463 qobject_unref(options);
5464 bdrv_unref(new_node_bs);
5465 return NULL;
8872ef78
AS
5466}
5467
e97fc193
AL
5468/*
5469 * Run consistency checks on an image
5470 *
e076f338 5471 * Returns 0 if the check could be completed (it doesn't mean that the image is
a1c7273b 5472 * free of errors) or -errno when an internal error occurred. The results of the
e076f338 5473 * check are stored in res.
e97fc193 5474 */
21c2283e
VSO
5475int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5476 BdrvCheckResult *res, BdrvCheckMode fix)
e97fc193 5477{
1581a70d 5478 IO_CODE();
908bcd54
HR
5479 if (bs->drv == NULL) {
5480 return -ENOMEDIUM;
5481 }
2fd61638 5482 if (bs->drv->bdrv_co_check == NULL) {
e97fc193
AL
5483 return -ENOTSUP;
5484 }
5485
e076f338 5486 memset(res, 0, sizeof(*res));
2fd61638
PB
5487 return bs->drv->bdrv_co_check(bs, res, fix);
5488}
5489
756e6736
KW
5490/*
5491 * Return values:
5492 * 0 - success
5493 * -EINVAL - backing format specified, but no file
5494 * -ENOSPC - can't update the backing file because no space is left in the
5495 * image file header
5496 * -ENOTSUP - format driver doesn't support changing the backing file
5497 */
e54ee1b3 5498int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
497a30db 5499 const char *backing_fmt, bool require)
756e6736
KW
5500{
5501 BlockDriver *drv = bs->drv;
469ef350 5502 int ret;
756e6736 5503
f791bf7f
EGE
5504 GLOBAL_STATE_CODE();
5505
d470ad42
HR
5506 if (!drv) {
5507 return -ENOMEDIUM;
5508 }
5509
5f377794
PB
5510 /* Backing file format doesn't make sense without a backing file */
5511 if (backing_fmt && !backing_file) {
5512 return -EINVAL;
5513 }
5514
497a30db
EB
5515 if (require && backing_file && !backing_fmt) {
5516 return -EINVAL;
e54ee1b3
EB
5517 }
5518
756e6736 5519 if (drv->bdrv_change_backing_file != NULL) {
469ef350 5520 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
756e6736 5521 } else {
469ef350 5522 ret = -ENOTSUP;
756e6736 5523 }
469ef350
PB
5524
5525 if (ret == 0) {
5526 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5527 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
998c2019
HR
5528 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5529 backing_file ?: "");
469ef350
PB
5530 }
5531 return ret;
756e6736
KW
5532}
5533
6ebdcee2 5534/*
dcf3f9b2
HR
5535 * Finds the first non-filter node above bs in the chain between
5536 * active and bs. The returned node is either an immediate parent of
5537 * bs, or there are only filter nodes between the two.
6ebdcee2
JC
5538 *
5539 * Returns NULL if bs is not found in active's image chain,
5540 * or if active == bs.
4caf0fcd
JC
5541 *
5542 * Returns the bottommost base image if bs == NULL.
6ebdcee2
JC
5543 */
5544BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5545 BlockDriverState *bs)
5546{
f791bf7f
EGE
5547
5548 GLOBAL_STATE_CODE();
5549
dcf3f9b2
HR
5550 bs = bdrv_skip_filters(bs);
5551 active = bdrv_skip_filters(active);
5552
5553 while (active) {
5554 BlockDriverState *next = bdrv_backing_chain_next(active);
5555 if (bs == next) {
5556 return active;
5557 }
5558 active = next;
6ebdcee2
JC
5559 }
5560
dcf3f9b2 5561 return NULL;
4caf0fcd 5562}
6ebdcee2 5563
4caf0fcd
JC
5564/* Given a BDS, searches for the base layer. */
5565BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5566{
f791bf7f
EGE
5567 GLOBAL_STATE_CODE();
5568
4caf0fcd 5569 return bdrv_find_overlay(bs, NULL);
6ebdcee2
JC
5570}
5571
2cad1ebe 5572/*
7b99a266
HR
5573 * Return true if at least one of the COW (backing) and filter links
5574 * between @bs and @base is frozen. @errp is set if that's the case.
0f0998f6 5575 * @base must be reachable from @bs, or NULL.
2cad1ebe
AG
5576 */
5577bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5578 Error **errp)
5579{
5580 BlockDriverState *i;
7b99a266 5581 BdrvChild *child;
2cad1ebe 5582
f791bf7f
EGE
5583 GLOBAL_STATE_CODE();
5584
7b99a266
HR
5585 for (i = bs; i != base; i = child_bs(child)) {
5586 child = bdrv_filter_or_cow_child(i);
5587
5588 if (child && child->frozen) {
2cad1ebe 5589 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
7b99a266 5590 child->name, i->node_name, child->bs->node_name);
2cad1ebe
AG
5591 return true;
5592 }
5593 }
5594
5595 return false;
5596}
5597
5598/*
7b99a266 5599 * Freeze all COW (backing) and filter links between @bs and @base.
2cad1ebe
AG
5600 * If any of the links is already frozen the operation is aborted and
5601 * none of the links are modified.
0f0998f6 5602 * @base must be reachable from @bs, or NULL.
2cad1ebe
AG
5603 * Returns 0 on success. On failure returns < 0 and sets @errp.
5604 */
5605int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5606 Error **errp)
5607{
5608 BlockDriverState *i;
7b99a266 5609 BdrvChild *child;
2cad1ebe 5610
f791bf7f
EGE
5611 GLOBAL_STATE_CODE();
5612
2cad1ebe
AG
5613 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5614 return -EPERM;
5615 }
5616
7b99a266
HR
5617 for (i = bs; i != base; i = child_bs(child)) {
5618 child = bdrv_filter_or_cow_child(i);
5619 if (child && child->bs->never_freeze) {
e5182c1c 5620 error_setg(errp, "Cannot freeze '%s' link to '%s'",
7b99a266 5621 child->name, child->bs->node_name);
e5182c1c
HR
5622 return -EPERM;
5623 }
5624 }
5625
7b99a266
HR
5626 for (i = bs; i != base; i = child_bs(child)) {
5627 child = bdrv_filter_or_cow_child(i);
5628 if (child) {
5629 child->frozen = true;
0f0998f6 5630 }
2cad1ebe
AG
5631 }
5632
5633 return 0;
5634}
5635
5636/*
7b99a266
HR
5637 * Unfreeze all COW (backing) and filter links between @bs and @base.
5638 * The caller must ensure that all links are frozen before using this
5639 * function.
0f0998f6 5640 * @base must be reachable from @bs, or NULL.
2cad1ebe
AG
5641 */
5642void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5643{
5644 BlockDriverState *i;
7b99a266 5645 BdrvChild *child;
2cad1ebe 5646
f791bf7f
EGE
5647 GLOBAL_STATE_CODE();
5648
7b99a266
HR
5649 for (i = bs; i != base; i = child_bs(child)) {
5650 child = bdrv_filter_or_cow_child(i);
5651 if (child) {
5652 assert(child->frozen);
5653 child->frozen = false;
0f0998f6 5654 }
2cad1ebe
AG
5655 }
5656}
5657
6ebdcee2
JC
5658/*
5659 * Drops images above 'base' up to and including 'top', and sets the image
5660 * above 'top' to have base as its backing file.
5661 *
5662 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5663 * information in 'bs' can be properly updated.
5664 *
5665 * E.g., this will convert the following chain:
5666 * bottom <- base <- intermediate <- top <- active
5667 *
5668 * to
5669 *
5670 * bottom <- base <- active
5671 *
5672 * It is allowed for bottom==base, in which case it converts:
5673 *
5674 * base <- intermediate <- top <- active
5675 *
5676 * to
5677 *
5678 * base <- active
5679 *
54e26900
JC
5680 * If backing_file_str is non-NULL, it will be used when modifying top's
5681 * overlay image metadata.
5682 *
6ebdcee2
JC
5683 * Error conditions:
5684 * if active == top, that is considered an error
5685 *
5686 */
bde70715
KW
5687int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5688 const char *backing_file_str)
6ebdcee2 5689{
6bd858b3
AG
5690 BlockDriverState *explicit_top = top;
5691 bool update_inherits_from;
d669ed6a 5692 BdrvChild *c;
12fa4af6 5693 Error *local_err = NULL;
6ebdcee2 5694 int ret = -EIO;
d669ed6a
VSO
5695 g_autoptr(GSList) updated_children = NULL;
5696 GSList *p;
6ebdcee2 5697
f791bf7f
EGE
5698 GLOBAL_STATE_CODE();
5699
6858eba0 5700 bdrv_ref(top);
637d54a5 5701 bdrv_subtree_drained_begin(top);
6858eba0 5702
6ebdcee2
JC
5703 if (!top->drv || !base->drv) {
5704 goto exit;
5705 }
5706
5db15a57
KW
5707 /* Make sure that base is in the backing chain of top */
5708 if (!bdrv_chain_contains(top, base)) {
6ebdcee2
JC
5709 goto exit;
5710 }
5711
6bd858b3
AG
5712 /* If 'base' recursively inherits from 'top' then we should set
5713 * base->inherits_from to top->inherits_from after 'top' and all
5714 * other intermediate nodes have been dropped.
5715 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5716 * it because no one inherits from it. We use explicit_top for that. */
dcf3f9b2 5717 explicit_top = bdrv_skip_implicit_filters(explicit_top);
6bd858b3
AG
5718 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5719
6ebdcee2 5720 /* success - we can delete the intermediate states, and link top->base */
f30c66ba
HR
5721 if (!backing_file_str) {
5722 bdrv_refresh_filename(base);
5723 backing_file_str = base->filename;
5724 }
61f09cea 5725
d669ed6a
VSO
5726 QLIST_FOREACH(c, &top->parents, next_parent) {
5727 updated_children = g_slist_prepend(updated_children, c);
5728 }
5729
3108a15c
VSO
5730 /*
5731 * It seems correct to pass detach_subchain=true here, but it triggers
5732 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5733 * another drained section, which modify the graph (for example, removing
5734 * the child, which we keep in updated_children list). So, it's a TODO.
5735 *
5736 * Note, bug triggered if pass detach_subchain=true here and run
5737 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5738 * That's a FIXME.
5739 */
5740 bdrv_replace_node_common(top, base, false, false, &local_err);
d669ed6a
VSO
5741 if (local_err) {
5742 error_report_err(local_err);
5743 goto exit;
5744 }
5745
5746 for (p = updated_children; p; p = p->next) {
5747 c = p->data;
12fa4af6 5748
bd86fb99
HR
5749 if (c->klass->update_filename) {
5750 ret = c->klass->update_filename(c, base, backing_file_str,
5751 &local_err);
61f09cea 5752 if (ret < 0) {
d669ed6a
VSO
5753 /*
5754 * TODO: Actually, we want to rollback all previous iterations
5755 * of this loop, and (which is almost impossible) previous
5756 * bdrv_replace_node()...
5757 *
5758 * Note, that c->klass->update_filename may lead to permission
5759 * update, so it's a bad idea to call it inside permission
5760 * update transaction of bdrv_replace_node.
5761 */
61f09cea
KW
5762 error_report_err(local_err);
5763 goto exit;
5764 }
5765 }
12fa4af6 5766 }
6ebdcee2 5767
6bd858b3
AG
5768 if (update_inherits_from) {
5769 base->inherits_from = explicit_top->inherits_from;
5770 }
5771
6ebdcee2 5772 ret = 0;
6ebdcee2 5773exit:
637d54a5 5774 bdrv_subtree_drained_end(top);
6858eba0 5775 bdrv_unref(top);
6ebdcee2
JC
5776 return ret;
5777}
5778
081e4650
HR
5779/**
5780 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5781 * sums the size of all data-bearing children. (This excludes backing
5782 * children.)
5783 */
5784static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5785{
5786 BdrvChild *child;
5787 int64_t child_size, sum = 0;
5788
5789 QLIST_FOREACH(child, &bs->children, next) {
5790 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5791 BDRV_CHILD_FILTERED))
5792 {
5793 child_size = bdrv_get_allocated_file_size(child->bs);
5794 if (child_size < 0) {
5795 return child_size;
5796 }
5797 sum += child_size;
5798 }
5799 }
5800
5801 return sum;
5802}
5803
61007b31
SH
5804/**
5805 * Length of a allocated file in bytes. Sparse files are counted by actual
5806 * allocated space. Return < 0 if error or unknown.
5807 */
5808int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
71d0770c 5809{
61007b31 5810 BlockDriver *drv = bs->drv;
384a48fb
EGE
5811 IO_CODE();
5812
61007b31
SH
5813 if (!drv) {
5814 return -ENOMEDIUM;
8f4754ed 5815 }
61007b31
SH
5816 if (drv->bdrv_get_allocated_file_size) {
5817 return drv->bdrv_get_allocated_file_size(bs);
5818 }
081e4650
HR
5819
5820 if (drv->bdrv_file_open) {
5821 /*
5822 * Protocol drivers default to -ENOTSUP (most of their data is
5823 * not stored in any of their children (if they even have any),
5824 * so there is no generic way to figure it out).
5825 */
5826 return -ENOTSUP;
5827 } else if (drv->is_filter) {
5828 /* Filter drivers default to the size of their filtered child */
5829 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5830 } else {
5831 /* Other drivers default to summing their children's sizes */
5832 return bdrv_sum_allocated_file_size(bs);
1c9805a3
SH
5833 }
5834}
e7a8a783 5835
90880ff1
SH
5836/*
5837 * bdrv_measure:
5838 * @drv: Format driver
5839 * @opts: Creation options for new image
5840 * @in_bs: Existing image containing data for new image (may be NULL)
5841 * @errp: Error object
5842 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5843 * or NULL on error
5844 *
5845 * Calculate file size required to create a new image.
5846 *
5847 * If @in_bs is given then space for allocated clusters and zero clusters
5848 * from that image are included in the calculation. If @opts contains a
5849 * backing file that is shared by @in_bs then backing clusters may be omitted
5850 * from the calculation.
5851 *
5852 * If @in_bs is NULL then the calculation includes no allocated clusters
5853 * unless a preallocation option is given in @opts.
5854 *
5855 * Note that @in_bs may use a different BlockDriver from @drv.
5856 *
5857 * If an error occurs the @errp pointer is set.
5858 */
5859BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5860 BlockDriverState *in_bs, Error **errp)
5861{
384a48fb 5862 IO_CODE();
90880ff1
SH
5863 if (!drv->bdrv_measure) {
5864 error_setg(errp, "Block driver '%s' does not support size measurement",
5865 drv->format_name);
5866 return NULL;
5867 }
5868
5869 return drv->bdrv_measure(opts, in_bs, errp);
5870}
5871
61007b31
SH
5872/**
5873 * Return number of sectors on success, -errno on error.
1c9805a3 5874 */
61007b31 5875int64_t bdrv_nb_sectors(BlockDriverState *bs)
1c9805a3 5876{
61007b31 5877 BlockDriver *drv = bs->drv;
384a48fb 5878 IO_CODE();
498e386c 5879
61007b31
SH
5880 if (!drv)
5881 return -ENOMEDIUM;
2572b37a 5882
61007b31
SH
5883 if (drv->has_variable_length) {
5884 int ret = refresh_total_sectors(bs, bs->total_sectors);
5885 if (ret < 0) {
5886 return ret;
1c9805a3
SH
5887 }
5888 }
61007b31 5889 return bs->total_sectors;
1c9805a3 5890}
b338082b 5891
61007b31
SH
5892/**
5893 * Return length in bytes on success, -errno on error.
5894 * The length is always a multiple of BDRV_SECTOR_SIZE.
8d3b1a2d 5895 */
61007b31 5896int64_t bdrv_getlength(BlockDriverState *bs)
8d3b1a2d 5897{
61007b31 5898 int64_t ret = bdrv_nb_sectors(bs);
384a48fb 5899 IO_CODE();
8d3b1a2d 5900
122860ba
EB
5901 if (ret < 0) {
5902 return ret;
5903 }
5904 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5905 return -EFBIG;
5906 }
5907 return ret * BDRV_SECTOR_SIZE;
fc01f7e7
FB
5908}
5909
61007b31
SH
5910/* return 0 as number of sectors if no device present or error */
5911void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
07d27a44 5912{
61007b31 5913 int64_t nb_sectors = bdrv_nb_sectors(bs);
384a48fb 5914 IO_CODE();
07d27a44 5915
61007b31 5916 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
07d27a44
MA
5917}
5918
54115412 5919bool bdrv_is_sg(BlockDriverState *bs)
f08145fe 5920{
384a48fb 5921 IO_CODE();
61007b31 5922 return bs->sg;
f08145fe
KW
5923}
5924
ae23f786
HR
5925/**
5926 * Return whether the given node supports compressed writes.
5927 */
5928bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5929{
5930 BlockDriverState *filtered;
384a48fb 5931 IO_CODE();
ae23f786
HR
5932
5933 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5934 return false;
5935 }
5936
5937 filtered = bdrv_filter_bs(bs);
5938 if (filtered) {
5939 /*
5940 * Filters can only forward compressed writes, so we have to
5941 * check the child.
5942 */
5943 return bdrv_supports_compressed_writes(filtered);
5944 }
5945
5946 return true;
5947}
5948
61007b31 5949const char *bdrv_get_format_name(BlockDriverState *bs)
40b4f539 5950{
384a48fb 5951 IO_CODE();
61007b31 5952 return bs->drv ? bs->drv->format_name : NULL;
40b4f539
KW
5953}
5954
61007b31 5955static int qsort_strcmp(const void *a, const void *b)
40b4f539 5956{
ceff5bd7 5957 return strcmp(*(char *const *)a, *(char *const *)b);
40b4f539
KW
5958}
5959
61007b31 5960void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
9ac404c5 5961 void *opaque, bool read_only)
40b4f539 5962{
61007b31
SH
5963 BlockDriver *drv;
5964 int count = 0;
5965 int i;
5966 const char **formats = NULL;
40b4f539 5967
f791bf7f
EGE
5968 GLOBAL_STATE_CODE();
5969
61007b31
SH
5970 QLIST_FOREACH(drv, &bdrv_drivers, list) {
5971 if (drv->format_name) {
5972 bool found = false;
5973 int i = count;
9ac404c5
AS
5974
5975 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5976 continue;
5977 }
5978
61007b31
SH
5979 while (formats && i && !found) {
5980 found = !strcmp(formats[--i], drv->format_name);
5981 }
e2a305fb 5982
61007b31
SH
5983 if (!found) {
5984 formats = g_renew(const char *, formats, count + 1);
5985 formats[count++] = drv->format_name;
5986 }
6c5a42ac 5987 }
61007b31 5988 }
6c5a42ac 5989
eb0df69f
HR
5990 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5991 const char *format_name = block_driver_modules[i].format_name;
5992
5993 if (format_name) {
5994 bool found = false;
5995 int j = count;
5996
9ac404c5
AS
5997 if (use_bdrv_whitelist &&
5998 !bdrv_format_is_whitelisted(format_name, read_only)) {
5999 continue;
6000 }
6001
eb0df69f
HR
6002 while (formats && j && !found) {
6003 found = !strcmp(formats[--j], format_name);
6004 }
6005
6006 if (!found) {
6007 formats = g_renew(const char *, formats, count + 1);
6008 formats[count++] = format_name;
6009 }
6010 }
6011 }
6012
61007b31 6013 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
40b4f539 6014
61007b31
SH
6015 for (i = 0; i < count; i++) {
6016 it(opaque, formats[i]);
6017 }
40b4f539 6018
61007b31
SH
6019 g_free(formats);
6020}
40b4f539 6021
61007b31
SH
6022/* This function is to find a node in the bs graph */
6023BlockDriverState *bdrv_find_node(const char *node_name)
6024{
6025 BlockDriverState *bs;
391827eb 6026
61007b31 6027 assert(node_name);
f791bf7f 6028 GLOBAL_STATE_CODE();
40b4f539 6029
61007b31
SH
6030 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6031 if (!strcmp(node_name, bs->node_name)) {
6032 return bs;
40b4f539
KW
6033 }
6034 }
61007b31 6035 return NULL;
40b4f539
KW
6036}
6037
61007b31 6038/* Put this QMP function here so it can access the static graph_bdrv_states. */
facda544
PK
6039BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6040 Error **errp)
40b4f539 6041{
9812e712 6042 BlockDeviceInfoList *list;
61007b31 6043 BlockDriverState *bs;
40b4f539 6044
f791bf7f
EGE
6045 GLOBAL_STATE_CODE();
6046
61007b31
SH
6047 list = NULL;
6048 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
facda544 6049 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
61007b31
SH
6050 if (!info) {
6051 qapi_free_BlockDeviceInfoList(list);
6052 return NULL;
301db7c2 6053 }
9812e712 6054 QAPI_LIST_PREPEND(list, info);
301db7c2
RH
6055 }
6056
61007b31
SH
6057 return list;
6058}
40b4f539 6059
5d3b4e99
VSO
6060typedef struct XDbgBlockGraphConstructor {
6061 XDbgBlockGraph *graph;
6062 GHashTable *graph_nodes;
6063} XDbgBlockGraphConstructor;
6064
6065static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6066{
6067 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6068
6069 gr->graph = g_new0(XDbgBlockGraph, 1);
6070 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6071
6072 return gr;
6073}
6074
6075static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6076{
6077 XDbgBlockGraph *graph = gr->graph;
6078
6079 g_hash_table_destroy(gr->graph_nodes);
6080 g_free(gr);
6081
6082 return graph;
6083}
6084
6085static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6086{
6087 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6088
6089 if (ret != 0) {
6090 return ret;
6091 }
6092
6093 /*
6094 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6095 * answer of g_hash_table_lookup.
6096 */
6097 ret = g_hash_table_size(gr->graph_nodes) + 1;
6098 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6099
6100 return ret;
6101}
6102
6103static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6104 XDbgBlockGraphNodeType type, const char *name)
6105{
6106 XDbgBlockGraphNode *n;
6107
6108 n = g_new0(XDbgBlockGraphNode, 1);
6109
6110 n->id = xdbg_graph_node_num(gr, node);
6111 n->type = type;
6112 n->name = g_strdup(name);
6113
9812e712 6114 QAPI_LIST_PREPEND(gr->graph->nodes, n);
5d3b4e99
VSO
6115}
6116
6117static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6118 const BdrvChild *child)
6119{
cdb1cec8 6120 BlockPermission qapi_perm;
5d3b4e99 6121 XDbgBlockGraphEdge *edge;
862fded9 6122 GLOBAL_STATE_CODE();
5d3b4e99 6123
5d3b4e99
VSO
6124 edge = g_new0(XDbgBlockGraphEdge, 1);
6125
6126 edge->parent = xdbg_graph_node_num(gr, parent);
6127 edge->child = xdbg_graph_node_num(gr, child->bs);
6128 edge->name = g_strdup(child->name);
6129
cdb1cec8
HR
6130 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6131 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6132
6133 if (flag & child->perm) {
9812e712 6134 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
5d3b4e99 6135 }
cdb1cec8 6136 if (flag & child->shared_perm) {
9812e712 6137 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
5d3b4e99
VSO
6138 }
6139 }
6140
9812e712 6141 QAPI_LIST_PREPEND(gr->graph->edges, edge);
5d3b4e99
VSO
6142}
6143
6144
6145XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6146{
6147 BlockBackend *blk;
6148 BlockJob *job;
6149 BlockDriverState *bs;
6150 BdrvChild *child;
6151 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6152
f791bf7f
EGE
6153 GLOBAL_STATE_CODE();
6154
5d3b4e99
VSO
6155 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6156 char *allocated_name = NULL;
6157 const char *name = blk_name(blk);
6158
6159 if (!*name) {
6160 name = allocated_name = blk_get_attached_dev_id(blk);
6161 }
6162 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6163 name);
6164 g_free(allocated_name);
6165 if (blk_root(blk)) {
6166 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6167 }
6168 }
6169
6170 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
6171 GSList *el;
6172
6173 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6174 job->job.id);
6175 for (el = job->nodes; el; el = el->next) {
6176 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6177 }
6178 }
6179
6180 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6181 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6182 bs->node_name);
6183 QLIST_FOREACH(child, &bs->children, next) {
6184 xdbg_graph_add_edge(gr, bs, child);
6185 }
6186 }
6187
6188 return xdbg_graph_finalize(gr);
6189}
6190
61007b31
SH
6191BlockDriverState *bdrv_lookup_bs(const char *device,
6192 const char *node_name,
6193 Error **errp)
6194{
6195 BlockBackend *blk;
6196 BlockDriverState *bs;
40b4f539 6197
f791bf7f
EGE
6198 GLOBAL_STATE_CODE();
6199
61007b31
SH
6200 if (device) {
6201 blk = blk_by_name(device);
40b4f539 6202
61007b31 6203 if (blk) {
9f4ed6fb
AG
6204 bs = blk_bs(blk);
6205 if (!bs) {
5433c24f 6206 error_setg(errp, "Device '%s' has no medium", device);
5433c24f
HR
6207 }
6208
9f4ed6fb 6209 return bs;
61007b31
SH
6210 }
6211 }
40b4f539 6212
61007b31
SH
6213 if (node_name) {
6214 bs = bdrv_find_node(node_name);
6d519a5f 6215
61007b31
SH
6216 if (bs) {
6217 return bs;
6218 }
40b4f539
KW
6219 }
6220
785ec4b1 6221 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
61007b31
SH
6222 device ? device : "",
6223 node_name ? node_name : "");
6224 return NULL;
40b4f539
KW
6225}
6226
61007b31
SH
6227/* If 'base' is in the same chain as 'top', return true. Otherwise,
6228 * return false. If either argument is NULL, return false. */
6229bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
83f64091 6230{
f791bf7f
EGE
6231
6232 GLOBAL_STATE_CODE();
6233
61007b31 6234 while (top && top != base) {
dcf3f9b2 6235 top = bdrv_filter_or_cow_bs(top);
02c50efe 6236 }
61007b31
SH
6237
6238 return top != NULL;
02c50efe
FZ
6239}
6240
61007b31 6241BlockDriverState *bdrv_next_node(BlockDriverState *bs)
02c50efe 6242{
f791bf7f 6243 GLOBAL_STATE_CODE();
61007b31
SH
6244 if (!bs) {
6245 return QTAILQ_FIRST(&graph_bdrv_states);
02c50efe 6246 }
61007b31 6247 return QTAILQ_NEXT(bs, node_list);
83f64091
FB
6248}
6249
0f12264e
KW
6250BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6251{
f791bf7f 6252 GLOBAL_STATE_CODE();
0f12264e
KW
6253 if (!bs) {
6254 return QTAILQ_FIRST(&all_bdrv_states);
6255 }
6256 return QTAILQ_NEXT(bs, bs_list);
6257}
6258
61007b31 6259const char *bdrv_get_node_name(const BlockDriverState *bs)
83f64091 6260{
384a48fb 6261 IO_CODE();
61007b31 6262 return bs->node_name;
beac80cd
FB
6263}
6264
1f0c461b 6265const char *bdrv_get_parent_name(const BlockDriverState *bs)
4c265bf9
KW
6266{
6267 BdrvChild *c;
6268 const char *name;
967d7905 6269 IO_CODE();
4c265bf9
KW
6270
6271 /* If multiple parents have a name, just pick the first one. */
6272 QLIST_FOREACH(c, &bs->parents, next_parent) {
bd86fb99
HR
6273 if (c->klass->get_name) {
6274 name = c->klass->get_name(c);
4c265bf9
KW
6275 if (name && *name) {
6276 return name;
6277 }
6278 }
6279 }
6280
6281 return NULL;
6282}
6283
61007b31
SH
6284/* TODO check what callers really want: bs->node_name or blk_name() */
6285const char *bdrv_get_device_name(const BlockDriverState *bs)
beac80cd 6286{
384a48fb 6287 IO_CODE();
4c265bf9 6288 return bdrv_get_parent_name(bs) ?: "";
f141eafe 6289}
83f64091 6290
61007b31
SH
6291/* This can be used to identify nodes that might not have a device
6292 * name associated. Since node and device names live in the same
6293 * namespace, the result is unambiguous. The exception is if both are
6294 * absent, then this returns an empty (non-null) string. */
6295const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
f141eafe 6296{
384a48fb 6297 IO_CODE();
4c265bf9 6298 return bdrv_get_parent_name(bs) ?: bs->node_name;
beac80cd 6299}
beac80cd 6300
61007b31 6301int bdrv_get_flags(BlockDriverState *bs)
0b5a2445 6302{
15aee7ac 6303 IO_CODE();
61007b31 6304 return bs->open_flags;
0b5a2445
PB
6305}
6306
61007b31 6307int bdrv_has_zero_init_1(BlockDriverState *bs)
68485420 6308{
f791bf7f 6309 GLOBAL_STATE_CODE();
61007b31 6310 return 1;
0b5a2445
PB
6311}
6312
61007b31 6313int bdrv_has_zero_init(BlockDriverState *bs)
0b5a2445 6314{
93393e69 6315 BlockDriverState *filtered;
f791bf7f 6316 GLOBAL_STATE_CODE();
93393e69 6317
d470ad42
HR
6318 if (!bs->drv) {
6319 return 0;
6320 }
0b5a2445 6321
61007b31
SH
6322 /* If BS is a copy on write image, it is initialized to
6323 the contents of the base image, which may not be zeroes. */
34778172 6324 if (bdrv_cow_child(bs)) {
61007b31
SH
6325 return 0;
6326 }
6327 if (bs->drv->bdrv_has_zero_init) {
6328 return bs->drv->bdrv_has_zero_init(bs);
0b5a2445 6329 }
93393e69
HR
6330
6331 filtered = bdrv_filter_bs(bs);
6332 if (filtered) {
6333 return bdrv_has_zero_init(filtered);
5a612c00 6334 }
61007b31
SH
6335
6336 /* safe default */
6337 return 0;
68485420
KW
6338}
6339
61007b31 6340bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
68485420 6341{
384a48fb 6342 IO_CODE();
2f0342ef 6343 if (!(bs->open_flags & BDRV_O_UNMAP)) {
61007b31
SH
6344 return false;
6345 }
68485420 6346
e24d813b 6347 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
68485420
KW
6348}
6349
61007b31
SH
6350void bdrv_get_backing_filename(BlockDriverState *bs,
6351 char *filename, int filename_size)
016f5cf6 6352{
384a48fb 6353 IO_CODE();
61007b31
SH
6354 pstrcpy(filename, filename_size, bs->backing_file);
6355}
d318aea9 6356
61007b31
SH
6357int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
6358{
8b117001 6359 int ret;
61007b31 6360 BlockDriver *drv = bs->drv;
384a48fb 6361 IO_CODE();
5a612c00
MP
6362 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6363 if (!drv) {
61007b31 6364 return -ENOMEDIUM;
5a612c00
MP
6365 }
6366 if (!drv->bdrv_get_info) {
93393e69
HR
6367 BlockDriverState *filtered = bdrv_filter_bs(bs);
6368 if (filtered) {
6369 return bdrv_get_info(filtered, bdi);
5a612c00 6370 }
61007b31 6371 return -ENOTSUP;
5a612c00 6372 }
61007b31 6373 memset(bdi, 0, sizeof(*bdi));
8b117001
VSO
6374 ret = drv->bdrv_get_info(bs, bdi);
6375 if (ret < 0) {
6376 return ret;
6377 }
6378
6379 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6380 return -EINVAL;
6381 }
6382
6383 return 0;
61007b31 6384}
016f5cf6 6385
1bf6e9ca
AS
6386ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6387 Error **errp)
61007b31
SH
6388{
6389 BlockDriver *drv = bs->drv;
384a48fb 6390 IO_CODE();
61007b31 6391 if (drv && drv->bdrv_get_specific_info) {
1bf6e9ca 6392 return drv->bdrv_get_specific_info(bs, errp);
61007b31
SH
6393 }
6394 return NULL;
016f5cf6
AG
6395}
6396
d9245599
AN
6397BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6398{
6399 BlockDriver *drv = bs->drv;
384a48fb 6400 IO_CODE();
d9245599
AN
6401 if (!drv || !drv->bdrv_get_specific_stats) {
6402 return NULL;
6403 }
6404 return drv->bdrv_get_specific_stats(bs);
6405}
6406
a31939e6 6407void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4265d620 6408{
384a48fb 6409 IO_CODE();
61007b31
SH
6410 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
6411 return;
6412 }
4265d620 6413
61007b31 6414 bs->drv->bdrv_debug_event(bs, event);
4265d620
PB
6415}
6416
d10529a2 6417static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
4265d620 6418{
bdb73476 6419 GLOBAL_STATE_CODE();
61007b31 6420 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
f706a92f 6421 bs = bdrv_primary_bs(bs);
61007b31 6422 }
4265d620 6423
61007b31 6424 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
d10529a2
VSO
6425 assert(bs->drv->bdrv_debug_remove_breakpoint);
6426 return bs;
6427 }
6428
6429 return NULL;
6430}
6431
6432int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6433 const char *tag)
6434{
f791bf7f 6435 GLOBAL_STATE_CODE();
d10529a2
VSO
6436 bs = bdrv_find_debug_node(bs);
6437 if (bs) {
61007b31
SH
6438 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6439 }
4265d620 6440
61007b31 6441 return -ENOTSUP;
4265d620
PB
6442}
6443
61007b31 6444int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
ea2384d3 6445{
f791bf7f 6446 GLOBAL_STATE_CODE();
d10529a2
VSO
6447 bs = bdrv_find_debug_node(bs);
6448 if (bs) {
61007b31
SH
6449 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6450 }
6451
6452 return -ENOTSUP;
eb852011
MA
6453}
6454
61007b31 6455int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
ce1a14dc 6456{
f791bf7f 6457 GLOBAL_STATE_CODE();
61007b31 6458 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
f706a92f 6459 bs = bdrv_primary_bs(bs);
61007b31 6460 }
ce1a14dc 6461
61007b31
SH
6462 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6463 return bs->drv->bdrv_debug_resume(bs, tag);
6464 }
ce1a14dc 6465
61007b31 6466 return -ENOTSUP;
f197fe2b
FZ
6467}
6468
61007b31 6469bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
ce1a14dc 6470{
f791bf7f 6471 GLOBAL_STATE_CODE();
61007b31 6472 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
f706a92f 6473 bs = bdrv_primary_bs(bs);
f197fe2b 6474 }
19cb3738 6475
61007b31
SH
6476 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6477 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6478 }
f9f05dc5 6479
61007b31
SH
6480 return false;
6481}
f9f05dc5 6482
61007b31
SH
6483/* backing_file can either be relative, or absolute, or a protocol. If it is
6484 * relative, it must be relative to the chain. So, passing in bs->filename
6485 * from a BDS as backing_file should not be done, as that may be relative to
6486 * the CWD rather than the chain. */
6487BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6488 const char *backing_file)
f9f05dc5 6489{
61007b31
SH
6490 char *filename_full = NULL;
6491 char *backing_file_full = NULL;
6492 char *filename_tmp = NULL;
6493 int is_protocol = 0;
0b877d09 6494 bool filenames_refreshed = false;
61007b31
SH
6495 BlockDriverState *curr_bs = NULL;
6496 BlockDriverState *retval = NULL;
dcf3f9b2 6497 BlockDriverState *bs_below;
f9f05dc5 6498
f791bf7f
EGE
6499 GLOBAL_STATE_CODE();
6500
61007b31
SH
6501 if (!bs || !bs->drv || !backing_file) {
6502 return NULL;
f9f05dc5
KW
6503 }
6504
61007b31
SH
6505 filename_full = g_malloc(PATH_MAX);
6506 backing_file_full = g_malloc(PATH_MAX);
f9f05dc5 6507
61007b31 6508 is_protocol = path_has_protocol(backing_file);
f9f05dc5 6509
dcf3f9b2
HR
6510 /*
6511 * Being largely a legacy function, skip any filters here
6512 * (because filters do not have normal filenames, so they cannot
6513 * match anyway; and allowing json:{} filenames is a bit out of
6514 * scope).
6515 */
6516 for (curr_bs = bdrv_skip_filters(bs);
6517 bdrv_cow_child(curr_bs) != NULL;
6518 curr_bs = bs_below)
6519 {
6520 bs_below = bdrv_backing_chain_next(curr_bs);
f9f05dc5 6521
0b877d09
HR
6522 if (bdrv_backing_overridden(curr_bs)) {
6523 /*
6524 * If the backing file was overridden, we can only compare
6525 * directly against the backing node's filename.
6526 */
6527
6528 if (!filenames_refreshed) {
6529 /*
6530 * This will automatically refresh all of the
6531 * filenames in the rest of the backing chain, so we
6532 * only need to do this once.
6533 */
6534 bdrv_refresh_filename(bs_below);
6535 filenames_refreshed = true;
6536 }
6537
6538 if (strcmp(backing_file, bs_below->filename) == 0) {
6539 retval = bs_below;
6540 break;
6541 }
6542 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6543 /*
6544 * If either of the filename paths is actually a protocol, then
6545 * compare unmodified paths; otherwise make paths relative.
6546 */
6b6833c1
HR
6547 char *backing_file_full_ret;
6548
61007b31 6549 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
dcf3f9b2 6550 retval = bs_below;
61007b31
SH
6551 break;
6552 }
418661e0 6553 /* Also check against the full backing filename for the image */
6b6833c1
HR
6554 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6555 NULL);
6556 if (backing_file_full_ret) {
6557 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6558 g_free(backing_file_full_ret);
6559 if (equal) {
dcf3f9b2 6560 retval = bs_below;
418661e0
JC
6561 break;
6562 }
418661e0 6563 }
61007b31
SH
6564 } else {
6565 /* If not an absolute filename path, make it relative to the current
6566 * image's filename path */
2d9158ce
HR
6567 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6568 NULL);
6569 /* We are going to compare canonicalized absolute pathnames */
6570 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6571 g_free(filename_tmp);
61007b31
SH
6572 continue;
6573 }
2d9158ce 6574 g_free(filename_tmp);
07f07615 6575
61007b31
SH
6576 /* We need to make sure the backing filename we are comparing against
6577 * is relative to the current image filename (or absolute) */
2d9158ce
HR
6578 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6579 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6580 g_free(filename_tmp);
61007b31
SH
6581 continue;
6582 }
2d9158ce 6583 g_free(filename_tmp);
eb489bb1 6584
61007b31 6585 if (strcmp(backing_file_full, filename_full) == 0) {
dcf3f9b2 6586 retval = bs_below;
61007b31
SH
6587 break;
6588 }
6589 }
eb489bb1
KW
6590 }
6591
61007b31
SH
6592 g_free(filename_full);
6593 g_free(backing_file_full);
61007b31
SH
6594 return retval;
6595}
6596
61007b31
SH
6597void bdrv_init(void)
6598{
e5f05f8c
KW
6599#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6600 use_bdrv_whitelist = 1;
6601#endif
61007b31
SH
6602 module_call_init(MODULE_INIT_BLOCK);
6603}
29cdb251 6604
61007b31
SH
6605void bdrv_init_with_whitelist(void)
6606{
6607 use_bdrv_whitelist = 1;
6608 bdrv_init();
07f07615
PB
6609}
6610
a94750d9 6611int bdrv_activate(BlockDriverState *bs, Error **errp)
0f15423c 6612{
4417ab7a 6613 BdrvChild *child, *parent;
5a8a30db
KW
6614 Error *local_err = NULL;
6615 int ret;
9c98f145 6616 BdrvDirtyBitmap *bm;
5a8a30db 6617
f791bf7f
EGE
6618 GLOBAL_STATE_CODE();
6619
3456a8d1 6620 if (!bs->drv) {
5416645f 6621 return -ENOMEDIUM;
3456a8d1
KW
6622 }
6623
16e977d5 6624 QLIST_FOREACH(child, &bs->children, next) {
11d0c9b3 6625 bdrv_activate(child->bs, &local_err);
0d1c5c91 6626 if (local_err) {
0d1c5c91 6627 error_propagate(errp, local_err);
5416645f 6628 return -EINVAL;
0d1c5c91 6629 }
5a8a30db 6630 }
0d1c5c91 6631
dafe0960
KW
6632 /*
6633 * Update permissions, they may differ for inactive nodes.
6634 *
6635 * Note that the required permissions of inactive images are always a
6636 * subset of the permissions required after activating the image. This
6637 * allows us to just get the permissions upfront without restricting
11d0c9b3 6638 * bdrv_co_invalidate_cache().
dafe0960
KW
6639 *
6640 * It also means that in error cases, we don't have to try and revert to
6641 * the old permissions (which is an operation that could fail, too). We can
6642 * just keep the extended permissions for the next time that an activation
6643 * of the image is tried.
6644 */
7bb4941a
KW
6645 if (bs->open_flags & BDRV_O_INACTIVE) {
6646 bs->open_flags &= ~BDRV_O_INACTIVE;
071b474f 6647 ret = bdrv_refresh_perms(bs, errp);
7bb4941a 6648 if (ret < 0) {
0d1c5c91 6649 bs->open_flags |= BDRV_O_INACTIVE;
5416645f 6650 return ret;
0d1c5c91 6651 }
3456a8d1 6652
11d0c9b3
EGE
6653 ret = bdrv_invalidate_cache(bs, errp);
6654 if (ret < 0) {
6655 bs->open_flags |= BDRV_O_INACTIVE;
6656 return ret;
7bb4941a 6657 }
9c98f145 6658
7bb4941a
KW
6659 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6660 bdrv_dirty_bitmap_skip_store(bm, false);
6661 }
6662
6663 ret = refresh_total_sectors(bs, bs->total_sectors);
6664 if (ret < 0) {
6665 bs->open_flags |= BDRV_O_INACTIVE;
6666 error_setg_errno(errp, -ret, "Could not refresh total sector count");
5416645f 6667 return ret;
7bb4941a 6668 }
5a8a30db 6669 }
4417ab7a
KW
6670
6671 QLIST_FOREACH(parent, &bs->parents, next_parent) {
bd86fb99
HR
6672 if (parent->klass->activate) {
6673 parent->klass->activate(parent, &local_err);
4417ab7a 6674 if (local_err) {
78fc3b3a 6675 bs->open_flags |= BDRV_O_INACTIVE;
4417ab7a 6676 error_propagate(errp, local_err);
5416645f 6677 return -EINVAL;
4417ab7a
KW
6678 }
6679 }
6680 }
5416645f
VSO
6681
6682 return 0;
0f15423c
AL
6683}
6684
11d0c9b3
EGE
6685int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6686{
6687 Error *local_err = NULL;
1581a70d 6688 IO_CODE();
11d0c9b3
EGE
6689
6690 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6691
6692 if (bs->drv->bdrv_co_invalidate_cache) {
6693 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6694 if (local_err) {
6695 error_propagate(errp, local_err);
6696 return -EINVAL;
6697 }
6698 }
6699
6700 return 0;
6701}
6702
3b717194 6703void bdrv_activate_all(Error **errp)
0f15423c 6704{
7c8eece4 6705 BlockDriverState *bs;
88be7b4b 6706 BdrvNextIterator it;
0f15423c 6707
f791bf7f
EGE
6708 GLOBAL_STATE_CODE();
6709
88be7b4b 6710 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
ed78cda3 6711 AioContext *aio_context = bdrv_get_aio_context(bs);
5416645f 6712 int ret;
ed78cda3
SH
6713
6714 aio_context_acquire(aio_context);
a94750d9 6715 ret = bdrv_activate(bs, errp);
ed78cda3 6716 aio_context_release(aio_context);
5416645f 6717 if (ret < 0) {
5e003f17 6718 bdrv_next_cleanup(&it);
5a8a30db
KW
6719 return;
6720 }
0f15423c
AL
6721 }
6722}
6723
9e37271f
KW
6724static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6725{
6726 BdrvChild *parent;
bdb73476 6727 GLOBAL_STATE_CODE();
9e37271f
KW
6728
6729 QLIST_FOREACH(parent, &bs->parents, next_parent) {
bd86fb99 6730 if (parent->klass->parent_is_bds) {
9e37271f
KW
6731 BlockDriverState *parent_bs = parent->opaque;
6732 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6733 return true;
6734 }
6735 }
6736 }
6737
6738 return false;
6739}
6740
6741static int bdrv_inactivate_recurse(BlockDriverState *bs)
76b1c7fe 6742{
cfa1a572 6743 BdrvChild *child, *parent;
76b1c7fe 6744 int ret;
a13de40a 6745 uint64_t cumulative_perms, cumulative_shared_perms;
76b1c7fe 6746
da359909
EGE
6747 GLOBAL_STATE_CODE();
6748
d470ad42
HR
6749 if (!bs->drv) {
6750 return -ENOMEDIUM;
6751 }
6752
9e37271f
KW
6753 /* Make sure that we don't inactivate a child before its parent.
6754 * It will be covered by recursion from the yet active parent. */
6755 if (bdrv_has_bds_parent(bs, true)) {
6756 return 0;
6757 }
6758
6759 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6760
6761 /* Inactivate this node */
6762 if (bs->drv->bdrv_inactivate) {
76b1c7fe
KW
6763 ret = bs->drv->bdrv_inactivate(bs);
6764 if (ret < 0) {
6765 return ret;
6766 }
6767 }
6768
9e37271f 6769 QLIST_FOREACH(parent, &bs->parents, next_parent) {
bd86fb99
HR
6770 if (parent->klass->inactivate) {
6771 ret = parent->klass->inactivate(parent);
9e37271f
KW
6772 if (ret < 0) {
6773 return ret;
cfa1a572
KW
6774 }
6775 }
9e37271f 6776 }
9c5e6594 6777
a13de40a
VSO
6778 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6779 &cumulative_shared_perms);
6780 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6781 /* Our inactive parents still need write access. Inactivation failed. */
6782 return -EPERM;
6783 }
6784
9e37271f 6785 bs->open_flags |= BDRV_O_INACTIVE;
7d5b5261 6786
bb87e4d1
VSO
6787 /*
6788 * Update permissions, they may differ for inactive nodes.
6789 * We only tried to loosen restrictions, so errors are not fatal, ignore
6790 * them.
6791 */
071b474f 6792 bdrv_refresh_perms(bs, NULL);
9e37271f
KW
6793
6794 /* Recursively inactivate children */
38701b6a 6795 QLIST_FOREACH(child, &bs->children, next) {
9e37271f 6796 ret = bdrv_inactivate_recurse(child->bs);
38701b6a
KW
6797 if (ret < 0) {
6798 return ret;
6799 }
6800 }
6801
76b1c7fe
KW
6802 return 0;
6803}
6804
6805int bdrv_inactivate_all(void)
6806{
79720af6 6807 BlockDriverState *bs = NULL;
88be7b4b 6808 BdrvNextIterator it;
aad0b7a0 6809 int ret = 0;
bd6458e4 6810 GSList *aio_ctxs = NULL, *ctx;
76b1c7fe 6811
f791bf7f
EGE
6812 GLOBAL_STATE_CODE();
6813
88be7b4b 6814 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
bd6458e4
PB
6815 AioContext *aio_context = bdrv_get_aio_context(bs);
6816
6817 if (!g_slist_find(aio_ctxs, aio_context)) {
6818 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6819 aio_context_acquire(aio_context);
6820 }
aad0b7a0 6821 }
76b1c7fe 6822
9e37271f
KW
6823 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6824 /* Nodes with BDS parents are covered by recursion from the last
6825 * parent that gets inactivated. Don't inactivate them a second
6826 * time if that has already happened. */
6827 if (bdrv_has_bds_parent(bs, false)) {
6828 continue;
6829 }
6830 ret = bdrv_inactivate_recurse(bs);
6831 if (ret < 0) {
6832 bdrv_next_cleanup(&it);
6833 goto out;
76b1c7fe
KW
6834 }
6835 }
6836
aad0b7a0 6837out:
bd6458e4
PB
6838 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6839 AioContext *aio_context = ctx->data;
6840 aio_context_release(aio_context);
aad0b7a0 6841 }
bd6458e4 6842 g_slist_free(aio_ctxs);
aad0b7a0
FZ
6843
6844 return ret;
76b1c7fe
KW
6845}
6846
19cb3738
FB
6847/**************************************************************/
6848/* removable device support */
6849
6850/**
6851 * Return TRUE if the media is present
6852 */
e031f750 6853bool bdrv_is_inserted(BlockDriverState *bs)
19cb3738
FB
6854{
6855 BlockDriver *drv = bs->drv;
28d7a789 6856 BdrvChild *child;
384a48fb 6857 IO_CODE();
a1aff5bf 6858
e031f750
HR
6859 if (!drv) {
6860 return false;
6861 }
28d7a789
HR
6862 if (drv->bdrv_is_inserted) {
6863 return drv->bdrv_is_inserted(bs);
6864 }
6865 QLIST_FOREACH(child, &bs->children, next) {
6866 if (!bdrv_is_inserted(child->bs)) {
6867 return false;
6868 }
e031f750 6869 }
28d7a789 6870 return true;
19cb3738
FB
6871}
6872
19cb3738
FB
6873/**
6874 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6875 */
f36f3949 6876void bdrv_eject(BlockDriverState *bs, bool eject_flag)
19cb3738
FB
6877{
6878 BlockDriver *drv = bs->drv;
384a48fb 6879 IO_CODE();
19cb3738 6880
822e1cd1
MA
6881 if (drv && drv->bdrv_eject) {
6882 drv->bdrv_eject(bs, eject_flag);
19cb3738
FB
6883 }
6884}
6885
19cb3738
FB
6886/**
6887 * Lock or unlock the media (if it is locked, the user won't be able
6888 * to eject it manually).
6889 */
025e849a 6890void bdrv_lock_medium(BlockDriverState *bs, bool locked)
19cb3738
FB
6891{
6892 BlockDriver *drv = bs->drv;
384a48fb 6893 IO_CODE();
025e849a 6894 trace_bdrv_lock_medium(bs, locked);
b8c6d095 6895
025e849a
MA
6896 if (drv && drv->bdrv_lock_medium) {
6897 drv->bdrv_lock_medium(bs, locked);
19cb3738
FB
6898 }
6899}
985a03b0 6900
9fcb0251
FZ
6901/* Get a reference to bs */
6902void bdrv_ref(BlockDriverState *bs)
6903{
f791bf7f 6904 GLOBAL_STATE_CODE();
9fcb0251
FZ
6905 bs->refcnt++;
6906}
6907
6908/* Release a previously grabbed reference to bs.
6909 * If after releasing, reference count is zero, the BlockDriverState is
6910 * deleted. */
6911void bdrv_unref(BlockDriverState *bs)
6912{
f791bf7f 6913 GLOBAL_STATE_CODE();
9a4d5ca6
JC
6914 if (!bs) {
6915 return;
6916 }
9fcb0251
FZ
6917 assert(bs->refcnt > 0);
6918 if (--bs->refcnt == 0) {
6919 bdrv_delete(bs);
6920 }
6921}
6922
fbe40ff7
FZ
6923struct BdrvOpBlocker {
6924 Error *reason;
6925 QLIST_ENTRY(BdrvOpBlocker) list;
6926};
6927
6928bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6929{
6930 BdrvOpBlocker *blocker;
f791bf7f 6931 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6932 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6933 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6934 blocker = QLIST_FIRST(&bs->op_blockers[op]);
4b576648
MA
6935 error_propagate_prepend(errp, error_copy(blocker->reason),
6936 "Node '%s' is busy: ",
6937 bdrv_get_device_or_node_name(bs));
fbe40ff7
FZ
6938 return true;
6939 }
6940 return false;
6941}
6942
6943void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6944{
6945 BdrvOpBlocker *blocker;
f791bf7f 6946 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6947 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6948
5839e53b 6949 blocker = g_new0(BdrvOpBlocker, 1);
fbe40ff7
FZ
6950 blocker->reason = reason;
6951 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6952}
6953
6954void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6955{
6956 BdrvOpBlocker *blocker, *next;
f791bf7f 6957 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6958 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6959 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6960 if (blocker->reason == reason) {
6961 QLIST_REMOVE(blocker, list);
6962 g_free(blocker);
6963 }
6964 }
6965}
6966
6967void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6968{
6969 int i;
f791bf7f 6970 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6971 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6972 bdrv_op_block(bs, i, reason);
6973 }
6974}
6975
6976void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6977{
6978 int i;
f791bf7f 6979 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6980 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6981 bdrv_op_unblock(bs, i, reason);
6982 }
6983}
6984
6985bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6986{
6987 int i;
f791bf7f 6988 GLOBAL_STATE_CODE();
fbe40ff7
FZ
6989 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6990 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6991 return false;
6992 }
6993 }
6994 return true;
6995}
6996
d92ada22
LC
6997void bdrv_img_create(const char *filename, const char *fmt,
6998 const char *base_filename, const char *base_fmt,
9217283d
FZ
6999 char *options, uint64_t img_size, int flags, bool quiet,
7000 Error **errp)
f88e1a42 7001{
83d0521a
CL
7002 QemuOptsList *create_opts = NULL;
7003 QemuOpts *opts = NULL;
7004 const char *backing_fmt, *backing_file;
7005 int64_t size;
f88e1a42 7006 BlockDriver *drv, *proto_drv;
cc84d90f 7007 Error *local_err = NULL;
f88e1a42
JS
7008 int ret = 0;
7009
f791bf7f
EGE
7010 GLOBAL_STATE_CODE();
7011
f88e1a42
JS
7012 /* Find driver and parse its options */
7013 drv = bdrv_find_format(fmt);
7014 if (!drv) {
71c79813 7015 error_setg(errp, "Unknown file format '%s'", fmt);
d92ada22 7016 return;
f88e1a42
JS
7017 }
7018
b65a5e12 7019 proto_drv = bdrv_find_protocol(filename, true, errp);
f88e1a42 7020 if (!proto_drv) {
d92ada22 7021 return;
f88e1a42
JS
7022 }
7023
c6149724
HR
7024 if (!drv->create_opts) {
7025 error_setg(errp, "Format driver '%s' does not support image creation",
7026 drv->format_name);
7027 return;
7028 }
7029
5a5e7f8c
ML
7030 if (!proto_drv->create_opts) {
7031 error_setg(errp, "Protocol driver '%s' does not support image creation",
7032 proto_drv->format_name);
7033 return;
7034 }
7035
f6dc1c31 7036 /* Create parameter list */
c282e1fd 7037 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5a5e7f8c 7038 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
f88e1a42 7039
83d0521a 7040 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
f88e1a42
JS
7041
7042 /* Parse -o options */
7043 if (options) {
a5f9b9df 7044 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
f88e1a42
JS
7045 goto out;
7046 }
7047 }
7048
f6dc1c31
KW
7049 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7050 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7051 } else if (img_size != UINT64_C(-1)) {
7052 error_setg(errp, "The image size must be specified only once");
7053 goto out;
7054 }
7055
f88e1a42 7056 if (base_filename) {
235e59cf 7057 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
3882578b 7058 NULL)) {
71c79813
LC
7059 error_setg(errp, "Backing file not supported for file format '%s'",
7060 fmt);
f88e1a42
JS
7061 goto out;
7062 }
7063 }
7064
7065 if (base_fmt) {
3882578b 7066 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
71c79813
LC
7067 error_setg(errp, "Backing file format not supported for file "
7068 "format '%s'", fmt);
f88e1a42
JS
7069 goto out;
7070 }
7071 }
7072
83d0521a
CL
7073 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7074 if (backing_file) {
7075 if (!strcmp(filename, backing_file)) {
71c79813
LC
7076 error_setg(errp, "Error: Trying to create an image with the "
7077 "same filename as the backing file");
792da93a
JS
7078 goto out;
7079 }
975a7bd2
CK
7080 if (backing_file[0] == '\0') {
7081 error_setg(errp, "Expected backing file name, got empty string");
7082 goto out;
7083 }
792da93a
JS
7084 }
7085
83d0521a 7086 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
f88e1a42 7087
6e6e55f5
JS
7088 /* The size for the image must always be specified, unless we have a backing
7089 * file and we have not been forbidden from opening it. */
a8b42a1c 7090 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6e6e55f5
JS
7091 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7092 BlockDriverState *bs;
645ae7d8 7093 char *full_backing;
6e6e55f5
JS
7094 int back_flags;
7095 QDict *backing_options = NULL;
7096
645ae7d8
HR
7097 full_backing =
7098 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7099 &local_err);
6e6e55f5 7100 if (local_err) {
6e6e55f5
JS
7101 goto out;
7102 }
645ae7d8 7103 assert(full_backing);
29168018 7104
d5b23994
HR
7105 /*
7106 * No need to do I/O here, which allows us to open encrypted
7107 * backing images without needing the secret
7108 */
6e6e55f5
JS
7109 back_flags = flags;
7110 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
d5b23994 7111 back_flags |= BDRV_O_NO_IO;
f88e1a42 7112
cc954f01 7113 backing_options = qdict_new();
6e6e55f5 7114 if (backing_fmt) {
6e6e55f5
JS
7115 qdict_put_str(backing_options, "driver", backing_fmt);
7116 }
cc954f01 7117 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
e6641719 7118
6e6e55f5
JS
7119 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7120 &local_err);
7121 g_free(full_backing);
add8200d
EB
7122 if (!bs) {
7123 error_append_hint(&local_err, "Could not open backing image.\n");
6e6e55f5
JS
7124 goto out;
7125 } else {
d9f059aa 7126 if (!backing_fmt) {
497a30db
EB
7127 error_setg(&local_err,
7128 "Backing file specified without backing format");
7129 error_append_hint(&local_err, "Detected format of %s.",
7130 bs->drv->format_name);
7131 goto out;
d9f059aa 7132 }
6e6e55f5
JS
7133 if (size == -1) {
7134 /* Opened BS, have no size */
7135 size = bdrv_getlength(bs);
7136 if (size < 0) {
7137 error_setg_errno(errp, -size, "Could not get size of '%s'",
7138 backing_file);
7139 bdrv_unref(bs);
7140 goto out;
7141 }
7142 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
52bf1e72 7143 }
66f6b814 7144 bdrv_unref(bs);
f88e1a42 7145 }
d9f059aa
EB
7146 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7147 } else if (backing_file && !backing_fmt) {
497a30db
EB
7148 error_setg(&local_err,
7149 "Backing file specified without backing format");
7150 goto out;
d9f059aa 7151 }
6e6e55f5
JS
7152
7153 if (size == -1) {
7154 error_setg(errp, "Image creation needs a size parameter");
7155 goto out;
f88e1a42
JS
7156 }
7157
f382d43a 7158 if (!quiet) {
fe646693 7159 printf("Formatting '%s', fmt=%s ", filename, fmt);
43c5d8f8 7160 qemu_opts_print(opts, " ");
f382d43a 7161 puts("");
4e2f4418 7162 fflush(stdout);
f382d43a 7163 }
83d0521a 7164
c282e1fd 7165 ret = bdrv_create(drv, filename, opts, &local_err);
83d0521a 7166
cc84d90f
HR
7167 if (ret == -EFBIG) {
7168 /* This is generally a better message than whatever the driver would
7169 * deliver (especially because of the cluster_size_hint), since that
7170 * is most probably not much different from "image too large". */
7171 const char *cluster_size_hint = "";
83d0521a 7172 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
cc84d90f 7173 cluster_size_hint = " (try using a larger cluster size)";
f88e1a42 7174 }
cc84d90f
HR
7175 error_setg(errp, "The image size is too large for file format '%s'"
7176 "%s", fmt, cluster_size_hint);
7177 error_free(local_err);
7178 local_err = NULL;
f88e1a42
JS
7179 }
7180
7181out:
83d0521a
CL
7182 qemu_opts_del(opts);
7183 qemu_opts_free(create_opts);
621ff94d 7184 error_propagate(errp, local_err);
f88e1a42 7185}
85d126f3
SH
7186
7187AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7188{
384a48fb 7189 IO_CODE();
33f2a757 7190 return bs ? bs->aio_context : qemu_get_aio_context();
dcd04228
SH
7191}
7192
e336fd4c
KW
7193AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7194{
7195 Coroutine *self = qemu_coroutine_self();
7196 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7197 AioContext *new_ctx;
384a48fb 7198 IO_CODE();
e336fd4c
KW
7199
7200 /*
7201 * Increase bs->in_flight to ensure that this operation is completed before
7202 * moving the node to a different AioContext. Read new_ctx only afterwards.
7203 */
7204 bdrv_inc_in_flight(bs);
7205
7206 new_ctx = bdrv_get_aio_context(bs);
7207 aio_co_reschedule_self(new_ctx);
7208 return old_ctx;
7209}
7210
7211void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7212{
384a48fb 7213 IO_CODE();
e336fd4c
KW
7214 aio_co_reschedule_self(old_ctx);
7215 bdrv_dec_in_flight(bs);
7216}
7217
18c6ac1c
KW
7218void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7219{
7220 AioContext *ctx = bdrv_get_aio_context(bs);
7221
7222 /* In the main thread, bs->aio_context won't change concurrently */
7223 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7224
7225 /*
7226 * We're in coroutine context, so we already hold the lock of the main
7227 * loop AioContext. Don't lock it twice to avoid deadlocks.
7228 */
7229 assert(qemu_in_coroutine());
7230 if (ctx != qemu_get_aio_context()) {
7231 aio_context_acquire(ctx);
7232 }
7233}
7234
7235void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7236{
7237 AioContext *ctx = bdrv_get_aio_context(bs);
7238
7239 assert(qemu_in_coroutine());
7240 if (ctx != qemu_get_aio_context()) {
7241 aio_context_release(ctx);
7242 }
7243}
7244
052a7572
FZ
7245void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
7246{
384a48fb 7247 IO_CODE();
052a7572
FZ
7248 aio_co_enter(bdrv_get_aio_context(bs), co);
7249}
7250
e8a095da
SH
7251static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7252{
bdb73476 7253 GLOBAL_STATE_CODE();
e8a095da
SH
7254 QLIST_REMOVE(ban, list);
7255 g_free(ban);
7256}
7257
a3a683c3 7258static void bdrv_detach_aio_context(BlockDriverState *bs)
dcd04228 7259{
e8a095da 7260 BdrvAioNotifier *baf, *baf_tmp;
33384421 7261
e8a095da 7262 assert(!bs->walking_aio_notifiers);
da359909 7263 GLOBAL_STATE_CODE();
e8a095da
SH
7264 bs->walking_aio_notifiers = true;
7265 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7266 if (baf->deleted) {
7267 bdrv_do_remove_aio_context_notifier(baf);
7268 } else {
7269 baf->detach_aio_context(baf->opaque);
7270 }
33384421 7271 }
e8a095da
SH
7272 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7273 * remove remaining aio notifiers if we aren't called again.
7274 */
7275 bs->walking_aio_notifiers = false;
33384421 7276
1bffe1ae 7277 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
dcd04228
SH
7278 bs->drv->bdrv_detach_aio_context(bs);
7279 }
dcd04228 7280
e64f25f3
KW
7281 if (bs->quiesce_counter) {
7282 aio_enable_external(bs->aio_context);
7283 }
dcd04228
SH
7284 bs->aio_context = NULL;
7285}
7286
a3a683c3
KW
7287static void bdrv_attach_aio_context(BlockDriverState *bs,
7288 AioContext *new_context)
dcd04228 7289{
e8a095da 7290 BdrvAioNotifier *ban, *ban_tmp;
da359909 7291 GLOBAL_STATE_CODE();
33384421 7292
e64f25f3
KW
7293 if (bs->quiesce_counter) {
7294 aio_disable_external(new_context);
7295 }
7296
dcd04228
SH
7297 bs->aio_context = new_context;
7298
1bffe1ae 7299 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
dcd04228
SH
7300 bs->drv->bdrv_attach_aio_context(bs, new_context);
7301 }
33384421 7302
e8a095da
SH
7303 assert(!bs->walking_aio_notifiers);
7304 bs->walking_aio_notifiers = true;
7305 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7306 if (ban->deleted) {
7307 bdrv_do_remove_aio_context_notifier(ban);
7308 } else {
7309 ban->attached_aio_context(new_context, ban->opaque);
7310 }
33384421 7311 }
e8a095da 7312 bs->walking_aio_notifiers = false;
dcd04228
SH
7313}
7314
42a65f02
KW
7315/*
7316 * Changes the AioContext used for fd handlers, timers, and BHs by this
7317 * BlockDriverState and all its children and parents.
7318 *
43eaaaef
HR
7319 * Must be called from the main AioContext.
7320 *
42a65f02
KW
7321 * The caller must own the AioContext lock for the old AioContext of bs, but it
7322 * must not own the AioContext lock for new_context (unless new_context is the
7323 * same as the current context of bs).
7324 *
7325 * @ignore will accumulate all visited BdrvChild object. The caller is
7326 * responsible for freeing the list afterwards.
7327 */
53a7d041
KW
7328void bdrv_set_aio_context_ignore(BlockDriverState *bs,
7329 AioContext *new_context, GSList **ignore)
dcd04228 7330{
e037c09c 7331 AioContext *old_context = bdrv_get_aio_context(bs);
722d8e73
SL
7332 GSList *children_to_process = NULL;
7333 GSList *parents_to_process = NULL;
7334 GSList *entry;
7335 BdrvChild *child, *parent;
0d83708a 7336
43eaaaef 7337 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
f0c28327 7338 GLOBAL_STATE_CODE();
43eaaaef 7339
e037c09c 7340 if (old_context == new_context) {
57830a49
DP
7341 return;
7342 }
7343
d70d5954 7344 bdrv_drained_begin(bs);
0d83708a
KW
7345
7346 QLIST_FOREACH(child, &bs->children, next) {
53a7d041
KW
7347 if (g_slist_find(*ignore, child)) {
7348 continue;
7349 }
7350 *ignore = g_slist_prepend(*ignore, child);
722d8e73 7351 children_to_process = g_slist_prepend(children_to_process, child);
53a7d041 7352 }
722d8e73
SL
7353
7354 QLIST_FOREACH(parent, &bs->parents, next_parent) {
7355 if (g_slist_find(*ignore, parent)) {
53a7d041
KW
7356 continue;
7357 }
722d8e73
SL
7358 *ignore = g_slist_prepend(*ignore, parent);
7359 parents_to_process = g_slist_prepend(parents_to_process, parent);
7360 }
7361
7362 for (entry = children_to_process;
7363 entry != NULL;
7364 entry = g_slist_next(entry)) {
7365 child = entry->data;
7366 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
7367 }
7368 g_slist_free(children_to_process);
7369
7370 for (entry = parents_to_process;
7371 entry != NULL;
7372 entry = g_slist_next(entry)) {
7373 parent = entry->data;
7374 assert(parent->klass->set_aio_ctx);
7375 parent->klass->set_aio_ctx(parent, new_context, ignore);
0d83708a 7376 }
722d8e73 7377 g_slist_free(parents_to_process);
0d83708a 7378
dcd04228
SH
7379 bdrv_detach_aio_context(bs);
7380
e037c09c 7381 /* Acquire the new context, if necessary */
43eaaaef 7382 if (qemu_get_aio_context() != new_context) {
e037c09c
HR
7383 aio_context_acquire(new_context);
7384 }
7385
dcd04228 7386 bdrv_attach_aio_context(bs, new_context);
e037c09c
HR
7387
7388 /*
7389 * If this function was recursively called from
7390 * bdrv_set_aio_context_ignore(), there may be nodes in the
7391 * subtree that have not yet been moved to the new AioContext.
7392 * Release the old one so bdrv_drained_end() can poll them.
7393 */
43eaaaef 7394 if (qemu_get_aio_context() != old_context) {
e037c09c
HR
7395 aio_context_release(old_context);
7396 }
7397
d70d5954 7398 bdrv_drained_end(bs);
e037c09c 7399
43eaaaef 7400 if (qemu_get_aio_context() != old_context) {
e037c09c
HR
7401 aio_context_acquire(old_context);
7402 }
43eaaaef 7403 if (qemu_get_aio_context() != new_context) {
e037c09c
HR
7404 aio_context_release(new_context);
7405 }
85d126f3 7406}
d616b224 7407
5d231849
KW
7408static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7409 GSList **ignore, Error **errp)
7410{
f0c28327 7411 GLOBAL_STATE_CODE();
5d231849
KW
7412 if (g_slist_find(*ignore, c)) {
7413 return true;
7414 }
7415 *ignore = g_slist_prepend(*ignore, c);
7416
bd86fb99
HR
7417 /*
7418 * A BdrvChildClass that doesn't handle AioContext changes cannot
7419 * tolerate any AioContext changes
7420 */
7421 if (!c->klass->can_set_aio_ctx) {
5d231849
KW
7422 char *user = bdrv_child_user_desc(c);
7423 error_setg(errp, "Changing iothreads is not supported by %s", user);
7424 g_free(user);
7425 return false;
7426 }
bd86fb99 7427 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
5d231849
KW
7428 assert(!errp || *errp);
7429 return false;
7430 }
7431 return true;
7432}
7433
7434bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
7435 GSList **ignore, Error **errp)
7436{
f791bf7f 7437 GLOBAL_STATE_CODE();
5d231849
KW
7438 if (g_slist_find(*ignore, c)) {
7439 return true;
7440 }
7441 *ignore = g_slist_prepend(*ignore, c);
7442 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
7443}
7444
7445/* @ignore will accumulate all visited BdrvChild object. The caller is
7446 * responsible for freeing the list afterwards. */
7447bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7448 GSList **ignore, Error **errp)
7449{
7450 BdrvChild *c;
7451
7452 if (bdrv_get_aio_context(bs) == ctx) {
7453 return true;
7454 }
7455
f791bf7f
EGE
7456 GLOBAL_STATE_CODE();
7457
5d231849
KW
7458 QLIST_FOREACH(c, &bs->parents, next_parent) {
7459 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
7460 return false;
7461 }
7462 }
7463 QLIST_FOREACH(c, &bs->children, next) {
7464 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
7465 return false;
7466 }
7467 }
7468
7469 return true;
7470}
7471
7472int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7473 BdrvChild *ignore_child, Error **errp)
7474{
7475 GSList *ignore;
7476 bool ret;
7477
f791bf7f
EGE
7478 GLOBAL_STATE_CODE();
7479
5d231849
KW
7480 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7481 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
7482 g_slist_free(ignore);
7483
7484 if (!ret) {
7485 return -EPERM;
7486 }
7487
53a7d041
KW
7488 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
7489 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
7490 g_slist_free(ignore);
7491
5d231849
KW
7492 return 0;
7493}
7494
7495int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
7496 Error **errp)
7497{
f791bf7f 7498 GLOBAL_STATE_CODE();
5d231849
KW
7499 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
7500}
7501
33384421
HR
7502void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7503 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7504 void (*detach_aio_context)(void *opaque), void *opaque)
7505{
7506 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7507 *ban = (BdrvAioNotifier){
7508 .attached_aio_context = attached_aio_context,
7509 .detach_aio_context = detach_aio_context,
7510 .opaque = opaque
7511 };
f791bf7f 7512 GLOBAL_STATE_CODE();
33384421
HR
7513
7514 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7515}
7516
7517void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7518 void (*attached_aio_context)(AioContext *,
7519 void *),
7520 void (*detach_aio_context)(void *),
7521 void *opaque)
7522{
7523 BdrvAioNotifier *ban, *ban_next;
f791bf7f 7524 GLOBAL_STATE_CODE();
33384421
HR
7525
7526 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7527 if (ban->attached_aio_context == attached_aio_context &&
7528 ban->detach_aio_context == detach_aio_context &&
e8a095da
SH
7529 ban->opaque == opaque &&
7530 ban->deleted == false)
33384421 7531 {
e8a095da
SH
7532 if (bs->walking_aio_notifiers) {
7533 ban->deleted = true;
7534 } else {
7535 bdrv_do_remove_aio_context_notifier(ban);
7536 }
33384421
HR
7537 return;
7538 }
7539 }
7540
7541 abort();
7542}
7543
77485434 7544int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
d1402b50 7545 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
a3579bfa 7546 bool force,
d1402b50 7547 Error **errp)
6f176b48 7548{
f791bf7f 7549 GLOBAL_STATE_CODE();
d470ad42 7550 if (!bs->drv) {
d1402b50 7551 error_setg(errp, "Node is ejected");
d470ad42
HR
7552 return -ENOMEDIUM;
7553 }
c282e1fd 7554 if (!bs->drv->bdrv_amend_options) {
d1402b50
HR
7555 error_setg(errp, "Block driver '%s' does not support option amendment",
7556 bs->drv->format_name);
6f176b48
HR
7557 return -ENOTSUP;
7558 }
a3579bfa
ML
7559 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7560 cb_opaque, force, errp);
6f176b48 7561}
f6186f49 7562
5d69b5ab
HR
7563/*
7564 * This function checks whether the given @to_replace is allowed to be
7565 * replaced by a node that always shows the same data as @bs. This is
7566 * used for example to verify whether the mirror job can replace
7567 * @to_replace by the target mirrored from @bs.
7568 * To be replaceable, @bs and @to_replace may either be guaranteed to
7569 * always show the same data (because they are only connected through
7570 * filters), or some driver may allow replacing one of its children
7571 * because it can guarantee that this child's data is not visible at
7572 * all (for example, for dissenting quorum children that have no other
7573 * parents).
7574 */
7575bool bdrv_recurse_can_replace(BlockDriverState *bs,
7576 BlockDriverState *to_replace)
7577{
93393e69
HR
7578 BlockDriverState *filtered;
7579
b4ad82aa
EGE
7580 GLOBAL_STATE_CODE();
7581
5d69b5ab
HR
7582 if (!bs || !bs->drv) {
7583 return false;
7584 }
7585
7586 if (bs == to_replace) {
7587 return true;
7588 }
7589
7590 /* See what the driver can do */
7591 if (bs->drv->bdrv_recurse_can_replace) {
7592 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7593 }
7594
7595 /* For filters without an own implementation, we can recurse on our own */
93393e69
HR
7596 filtered = bdrv_filter_bs(bs);
7597 if (filtered) {
7598 return bdrv_recurse_can_replace(filtered, to_replace);
5d69b5ab
HR
7599 }
7600
7601 /* Safe default */
7602 return false;
7603}
7604
810803a8
HR
7605/*
7606 * Check whether the given @node_name can be replaced by a node that
7607 * has the same data as @parent_bs. If so, return @node_name's BDS;
7608 * NULL otherwise.
7609 *
7610 * @node_name must be a (recursive) *child of @parent_bs (or this
7611 * function will return NULL).
7612 *
7613 * The result (whether the node can be replaced or not) is only valid
7614 * for as long as no graph or permission changes occur.
7615 */
e12f3784
WC
7616BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7617 const char *node_name, Error **errp)
09158f00
BC
7618{
7619 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5a7e7a0b
SH
7620 AioContext *aio_context;
7621
f791bf7f
EGE
7622 GLOBAL_STATE_CODE();
7623
09158f00 7624 if (!to_replace_bs) {
785ec4b1 7625 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
09158f00
BC
7626 return NULL;
7627 }
7628
5a7e7a0b
SH
7629 aio_context = bdrv_get_aio_context(to_replace_bs);
7630 aio_context_acquire(aio_context);
7631
09158f00 7632 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5a7e7a0b
SH
7633 to_replace_bs = NULL;
7634 goto out;
09158f00
BC
7635 }
7636
7637 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7638 * most non filter in order to prevent data corruption.
7639 * Another benefit is that this tests exclude backing files which are
7640 * blocked by the backing blockers.
7641 */
810803a8
HR
7642 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7643 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7644 "because it cannot be guaranteed that doing so would not "
7645 "lead to an abrupt change of visible data",
7646 node_name, parent_bs->node_name);
5a7e7a0b
SH
7647 to_replace_bs = NULL;
7648 goto out;
09158f00
BC
7649 }
7650
5a7e7a0b
SH
7651out:
7652 aio_context_release(aio_context);
09158f00
BC
7653 return to_replace_bs;
7654}
448ad91d 7655
97e2f021
HR
7656/**
7657 * Iterates through the list of runtime option keys that are said to
7658 * be "strong" for a BDS. An option is called "strong" if it changes
7659 * a BDS's data. For example, the null block driver's "size" and
7660 * "read-zeroes" options are strong, but its "latency-ns" option is
7661 * not.
7662 *
7663 * If a key returned by this function ends with a dot, all options
7664 * starting with that prefix are strong.
7665 */
7666static const char *const *strong_options(BlockDriverState *bs,
7667 const char *const *curopt)
7668{
7669 static const char *const global_options[] = {
7670 "driver", "filename", NULL
7671 };
7672
7673 if (!curopt) {
7674 return &global_options[0];
7675 }
7676
7677 curopt++;
7678 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7679 curopt = bs->drv->strong_runtime_opts;
7680 }
7681
7682 return (curopt && *curopt) ? curopt : NULL;
7683}
7684
7685/**
7686 * Copies all strong runtime options from bs->options to the given
7687 * QDict. The set of strong option keys is determined by invoking
7688 * strong_options().
7689 *
7690 * Returns true iff any strong option was present in bs->options (and
7691 * thus copied to the target QDict) with the exception of "filename"
7692 * and "driver". The caller is expected to use this value to decide
7693 * whether the existence of strong options prevents the generation of
7694 * a plain filename.
7695 */
7696static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7697{
7698 bool found_any = false;
7699 const char *const *option_name = NULL;
7700
7701 if (!bs->drv) {
7702 return false;
7703 }
7704
7705 while ((option_name = strong_options(bs, option_name))) {
7706 bool option_given = false;
7707
7708 assert(strlen(*option_name) > 0);
7709 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7710 QObject *entry = qdict_get(bs->options, *option_name);
7711 if (!entry) {
7712 continue;
7713 }
7714
7715 qdict_put_obj(d, *option_name, qobject_ref(entry));
7716 option_given = true;
7717 } else {
7718 const QDictEntry *entry;
7719 for (entry = qdict_first(bs->options); entry;
7720 entry = qdict_next(bs->options, entry))
7721 {
7722 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7723 qdict_put_obj(d, qdict_entry_key(entry),
7724 qobject_ref(qdict_entry_value(entry)));
7725 option_given = true;
7726 }
7727 }
7728 }
7729
7730 /* While "driver" and "filename" need to be included in a JSON filename,
7731 * their existence does not prohibit generation of a plain filename. */
7732 if (!found_any && option_given &&
7733 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7734 {
7735 found_any = true;
7736 }
7737 }
7738
62a01a27
HR
7739 if (!qdict_haskey(d, "driver")) {
7740 /* Drivers created with bdrv_new_open_driver() may not have a
7741 * @driver option. Add it here. */
7742 qdict_put_str(d, "driver", bs->drv->format_name);
7743 }
7744
97e2f021
HR
7745 return found_any;
7746}
7747
90993623
HR
7748/* Note: This function may return false positives; it may return true
7749 * even if opening the backing file specified by bs's image header
7750 * would result in exactly bs->backing. */
fa8fc1d0 7751static bool bdrv_backing_overridden(BlockDriverState *bs)
90993623 7752{
b4ad82aa 7753 GLOBAL_STATE_CODE();
90993623
HR
7754 if (bs->backing) {
7755 return strcmp(bs->auto_backing_file,
7756 bs->backing->bs->filename);
7757 } else {
7758 /* No backing BDS, so if the image header reports any backing
7759 * file, it must have been suppressed */
7760 return bs->auto_backing_file[0] != '\0';
7761 }
7762}
7763
91af7014
HR
7764/* Updates the following BDS fields:
7765 * - exact_filename: A filename which may be used for opening a block device
7766 * which (mostly) equals the given BDS (even without any
7767 * other options; so reading and writing must return the same
7768 * results, but caching etc. may be different)
7769 * - full_open_options: Options which, when given when opening a block device
7770 * (without a filename), result in a BDS (mostly)
7771 * equalling the given one
7772 * - filename: If exact_filename is set, it is copied here. Otherwise,
7773 * full_open_options is converted to a JSON object, prefixed with
7774 * "json:" (for use through the JSON pseudo protocol) and put here.
7775 */
7776void bdrv_refresh_filename(BlockDriverState *bs)
7777{
7778 BlockDriver *drv = bs->drv;
e24518e3 7779 BdrvChild *child;
52f72d6f 7780 BlockDriverState *primary_child_bs;
91af7014 7781 QDict *opts;
90993623 7782 bool backing_overridden;
998b3a1e
HR
7783 bool generate_json_filename; /* Whether our default implementation should
7784 fill exact_filename (false) or not (true) */
91af7014 7785
f791bf7f
EGE
7786 GLOBAL_STATE_CODE();
7787
91af7014
HR
7788 if (!drv) {
7789 return;
7790 }
7791
e24518e3
HR
7792 /* This BDS's file name may depend on any of its children's file names, so
7793 * refresh those first */
7794 QLIST_FOREACH(child, &bs->children, next) {
7795 bdrv_refresh_filename(child->bs);
91af7014
HR
7796 }
7797
bb808d5f
HR
7798 if (bs->implicit) {
7799 /* For implicit nodes, just copy everything from the single child */
7800 child = QLIST_FIRST(&bs->children);
7801 assert(QLIST_NEXT(child, next) == NULL);
7802
7803 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7804 child->bs->exact_filename);
7805 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7806
cb895614 7807 qobject_unref(bs->full_open_options);
bb808d5f
HR
7808 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7809
7810 return;
7811 }
7812
90993623
HR
7813 backing_overridden = bdrv_backing_overridden(bs);
7814
7815 if (bs->open_flags & BDRV_O_NO_IO) {
7816 /* Without I/O, the backing file does not change anything.
7817 * Therefore, in such a case (primarily qemu-img), we can
7818 * pretend the backing file has not been overridden even if
7819 * it technically has been. */
7820 backing_overridden = false;
7821 }
7822
97e2f021
HR
7823 /* Gather the options QDict */
7824 opts = qdict_new();
998b3a1e
HR
7825 generate_json_filename = append_strong_runtime_options(opts, bs);
7826 generate_json_filename |= backing_overridden;
97e2f021
HR
7827
7828 if (drv->bdrv_gather_child_options) {
7829 /* Some block drivers may not want to present all of their children's
7830 * options, or name them differently from BdrvChild.name */
7831 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7832 } else {
7833 QLIST_FOREACH(child, &bs->children, next) {
25191e5f 7834 if (child == bs->backing && !backing_overridden) {
97e2f021
HR
7835 /* We can skip the backing BDS if it has not been overridden */
7836 continue;
7837 }
7838
7839 qdict_put(opts, child->name,
7840 qobject_ref(child->bs->full_open_options));
7841 }
7842
7843 if (backing_overridden && !bs->backing) {
7844 /* Force no backing file */
7845 qdict_put_null(opts, "backing");
7846 }
7847 }
7848
7849 qobject_unref(bs->full_open_options);
7850 bs->full_open_options = opts;
7851
52f72d6f
HR
7852 primary_child_bs = bdrv_primary_bs(bs);
7853
998b3a1e
HR
7854 if (drv->bdrv_refresh_filename) {
7855 /* Obsolete information is of no use here, so drop the old file name
7856 * information before refreshing it */
7857 bs->exact_filename[0] = '\0';
7858
7859 drv->bdrv_refresh_filename(bs);
52f72d6f
HR
7860 } else if (primary_child_bs) {
7861 /*
7862 * Try to reconstruct valid information from the underlying
7863 * file -- this only works for format nodes (filter nodes
7864 * cannot be probed and as such must be selected by the user
7865 * either through an options dict, or through a special
7866 * filename which the filter driver must construct in its
7867 * .bdrv_refresh_filename() implementation).
7868 */
998b3a1e
HR
7869
7870 bs->exact_filename[0] = '\0';
7871
fb695c74
HR
7872 /*
7873 * We can use the underlying file's filename if:
7874 * - it has a filename,
52f72d6f 7875 * - the current BDS is not a filter,
fb695c74
HR
7876 * - the file is a protocol BDS, and
7877 * - opening that file (as this BDS's format) will automatically create
7878 * the BDS tree we have right now, that is:
7879 * - the user did not significantly change this BDS's behavior with
7880 * some explicit (strong) options
7881 * - no non-file child of this BDS has been overridden by the user
7882 * Both of these conditions are represented by generate_json_filename.
7883 */
52f72d6f
HR
7884 if (primary_child_bs->exact_filename[0] &&
7885 primary_child_bs->drv->bdrv_file_open &&
7886 !drv->is_filter && !generate_json_filename)
fb695c74 7887 {
52f72d6f 7888 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
998b3a1e
HR
7889 }
7890 }
7891
91af7014
HR
7892 if (bs->exact_filename[0]) {
7893 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
97e2f021 7894 } else {
eab3a467 7895 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5c86bdf1 7896 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
eab3a467 7897 json->str) >= sizeof(bs->filename)) {
5c86bdf1
EB
7898 /* Give user a hint if we truncated things. */
7899 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7900 }
eab3a467 7901 g_string_free(json, true);
91af7014
HR
7902 }
7903}
e06018ad 7904
1e89d0f9
HR
7905char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7906{
7907 BlockDriver *drv = bs->drv;
52f72d6f 7908 BlockDriverState *child_bs;
1e89d0f9 7909
f791bf7f
EGE
7910 GLOBAL_STATE_CODE();
7911
1e89d0f9
HR
7912 if (!drv) {
7913 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7914 return NULL;
7915 }
7916
7917 if (drv->bdrv_dirname) {
7918 return drv->bdrv_dirname(bs, errp);
7919 }
7920
52f72d6f
HR
7921 child_bs = bdrv_primary_bs(bs);
7922 if (child_bs) {
7923 return bdrv_dirname(child_bs, errp);
1e89d0f9
HR
7924 }
7925
7926 bdrv_refresh_filename(bs);
7927 if (bs->exact_filename[0] != '\0') {
7928 return path_combine(bs->exact_filename, "");
7929 }
7930
7931 error_setg(errp, "Cannot generate a base directory for %s nodes",
7932 drv->format_name);
7933 return NULL;
7934}
7935
e06018ad
WC
7936/*
7937 * Hot add/remove a BDS's child. So the user can take a child offline when
7938 * it is broken and take a new child online
7939 */
7940void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7941 Error **errp)
7942{
f791bf7f 7943 GLOBAL_STATE_CODE();
e06018ad
WC
7944 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7945 error_setg(errp, "The node %s does not support adding a child",
7946 bdrv_get_device_or_node_name(parent_bs));
7947 return;
7948 }
7949
7950 if (!QLIST_EMPTY(&child_bs->parents)) {
7951 error_setg(errp, "The node %s already has a parent",
7952 child_bs->node_name);
7953 return;
7954 }
7955
7956 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7957}
7958
7959void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7960{
7961 BdrvChild *tmp;
7962
f791bf7f 7963 GLOBAL_STATE_CODE();
e06018ad
WC
7964 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7965 error_setg(errp, "The node %s does not support removing a child",
7966 bdrv_get_device_or_node_name(parent_bs));
7967 return;
7968 }
7969
7970 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7971 if (tmp == child) {
7972 break;
7973 }
7974 }
7975
7976 if (!tmp) {
7977 error_setg(errp, "The node %s does not have a child named %s",
7978 bdrv_get_device_or_node_name(parent_bs),
7979 bdrv_get_device_or_node_name(child->bs));
7980 return;
7981 }
7982
7983 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7984}
6f7a3b53
HR
7985
7986int bdrv_make_empty(BdrvChild *c, Error **errp)
7987{
7988 BlockDriver *drv = c->bs->drv;
7989 int ret;
7990
f791bf7f 7991 GLOBAL_STATE_CODE();
6f7a3b53
HR
7992 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7993
7994 if (!drv->bdrv_make_empty) {
7995 error_setg(errp, "%s does not support emptying nodes",
7996 drv->format_name);
7997 return -ENOTSUP;
7998 }
7999
8000 ret = drv->bdrv_make_empty(c->bs);
8001 if (ret < 0) {
8002 error_setg_errno(errp, -ret, "Failed to empty %s",
8003 c->bs->filename);
8004 return ret;
8005 }
8006
8007 return 0;
8008}
9a6fc887
HR
8009
8010/*
8011 * Return the child that @bs acts as an overlay for, and from which data may be
8012 * copied in COW or COR operations. Usually this is the backing file.
8013 */
8014BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8015{
967d7905
EGE
8016 IO_CODE();
8017
9a6fc887
HR
8018 if (!bs || !bs->drv) {
8019 return NULL;
8020 }
8021
8022 if (bs->drv->is_filter) {
8023 return NULL;
8024 }
8025
8026 if (!bs->backing) {
8027 return NULL;
8028 }
8029
8030 assert(bs->backing->role & BDRV_CHILD_COW);
8031 return bs->backing;
8032}
8033
8034/*
8035 * If @bs acts as a filter for exactly one of its children, return
8036 * that child.
8037 */
8038BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8039{
8040 BdrvChild *c;
967d7905 8041 IO_CODE();
9a6fc887
HR
8042
8043 if (!bs || !bs->drv) {
8044 return NULL;
8045 }
8046
8047 if (!bs->drv->is_filter) {
8048 return NULL;
8049 }
8050
8051 /* Only one of @backing or @file may be used */
8052 assert(!(bs->backing && bs->file));
8053
8054 c = bs->backing ?: bs->file;
8055 if (!c) {
8056 return NULL;
8057 }
8058
8059 assert(c->role & BDRV_CHILD_FILTERED);
8060 return c;
8061}
8062
8063/*
8064 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8065 * whichever is non-NULL.
8066 *
8067 * Return NULL if both are NULL.
8068 */
8069BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8070{
8071 BdrvChild *cow_child = bdrv_cow_child(bs);
8072 BdrvChild *filter_child = bdrv_filter_child(bs);
967d7905 8073 IO_CODE();
9a6fc887
HR
8074
8075 /* Filter nodes cannot have COW backing files */
8076 assert(!(cow_child && filter_child));
8077
8078 return cow_child ?: filter_child;
8079}
8080
8081/*
8082 * Return the primary child of this node: For filters, that is the
8083 * filtered child. For other nodes, that is usually the child storing
8084 * metadata.
8085 * (A generally more helpful description is that this is (usually) the
8086 * child that has the same filename as @bs.)
8087 *
8088 * Drivers do not necessarily have a primary child; for example quorum
8089 * does not.
8090 */
8091BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8092{
8093 BdrvChild *c, *found = NULL;
967d7905 8094 IO_CODE();
9a6fc887
HR
8095
8096 QLIST_FOREACH(c, &bs->children, next) {
8097 if (c->role & BDRV_CHILD_PRIMARY) {
8098 assert(!found);
8099 found = c;
8100 }
8101 }
8102
8103 return found;
8104}
d38d7eb8
HR
8105
8106static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8107 bool stop_on_explicit_filter)
8108{
8109 BdrvChild *c;
8110
8111 if (!bs) {
8112 return NULL;
8113 }
8114
8115 while (!(stop_on_explicit_filter && !bs->implicit)) {
8116 c = bdrv_filter_child(bs);
8117 if (!c) {
8118 /*
8119 * A filter that is embedded in a working block graph must
8120 * have a child. Assert this here so this function does
8121 * not return a filter node that is not expected by the
8122 * caller.
8123 */
8124 assert(!bs->drv || !bs->drv->is_filter);
8125 break;
8126 }
8127 bs = c->bs;
8128 }
8129 /*
8130 * Note that this treats nodes with bs->drv == NULL as not being
8131 * filters (bs->drv == NULL should be replaced by something else
8132 * anyway).
8133 * The advantage of this behavior is that this function will thus
8134 * always return a non-NULL value (given a non-NULL @bs).
8135 */
8136
8137 return bs;
8138}
8139
8140/*
8141 * Return the first BDS that has not been added implicitly or that
8142 * does not have a filtered child down the chain starting from @bs
8143 * (including @bs itself).
8144 */
8145BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8146{
b4ad82aa 8147 GLOBAL_STATE_CODE();
d38d7eb8
HR
8148 return bdrv_do_skip_filters(bs, true);
8149}
8150
8151/*
8152 * Return the first BDS that does not have a filtered child down the
8153 * chain starting from @bs (including @bs itself).
8154 */
8155BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8156{
967d7905 8157 IO_CODE();
d38d7eb8
HR
8158 return bdrv_do_skip_filters(bs, false);
8159}
8160
8161/*
8162 * For a backing chain, return the first non-filter backing image of
8163 * the first non-filter image.
8164 */
8165BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8166{
967d7905 8167 IO_CODE();
d38d7eb8
HR
8168 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8169}
0bc329fb
HR
8170
8171/**
8172 * Check whether [offset, offset + bytes) overlaps with the cached
8173 * block-status data region.
8174 *
8175 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8176 * which is what bdrv_bsc_is_data()'s interface needs.
8177 * Otherwise, *pnum is not touched.
8178 */
8179static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8180 int64_t offset, int64_t bytes,
8181 int64_t *pnum)
8182{
8183 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8184 bool overlaps;
8185
8186 overlaps =
8187 qatomic_read(&bsc->valid) &&
8188 ranges_overlap(offset, bytes, bsc->data_start,
8189 bsc->data_end - bsc->data_start);
8190
8191 if (overlaps && pnum) {
8192 *pnum = bsc->data_end - offset;
8193 }
8194
8195 return overlaps;
8196}
8197
8198/**
8199 * See block_int.h for this function's documentation.
8200 */
8201bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8202{
967d7905 8203 IO_CODE();
0bc329fb 8204 RCU_READ_LOCK_GUARD();
0bc329fb
HR
8205 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8206}
8207
8208/**
8209 * See block_int.h for this function's documentation.
8210 */
8211void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8212 int64_t offset, int64_t bytes)
8213{
967d7905 8214 IO_CODE();
0bc329fb
HR
8215 RCU_READ_LOCK_GUARD();
8216
8217 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8218 qatomic_set(&bs->block_status_cache->valid, false);
8219 }
8220}
8221
8222/**
8223 * See block_int.h for this function's documentation.
8224 */
8225void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8226{
8227 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8228 BdrvBlockStatusCache *old_bsc;
967d7905 8229 IO_CODE();
0bc329fb
HR
8230
8231 *new_bsc = (BdrvBlockStatusCache) {
8232 .valid = true,
8233 .data_start = offset,
8234 .data_end = offset + bytes,
8235 };
8236
8237 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8238
8239 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8240 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8241 if (old_bsc) {
8242 g_free_rcu(old_bsc, rcu);
8243 }
8244}