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