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