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