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