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