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