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