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