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