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