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