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