]> git.ipfire.org Git - thirdparty/qemu.git/blame - block.c
file-posix: x-check-cache-dropped should default to false on reopen
[thirdparty/qemu.git] / block.c
CommitLineData
fc01f7e7
FB
1/*
2 * QEMU System Emulator block driver
5fafdf24 3 *
fc01f7e7 4 * Copyright (c) 2003 Fabrice Bellard
5fafdf24 5 *
fc01f7e7
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
e688df6b 24
d38ea87a 25#include "qemu/osdep.h"
0ab8ed18 26#include "block/trace.h"
737e150e
PB
27#include "block/block_int.h"
28#include "block/blockjob.h"
cd7fca95 29#include "block/nbd.h"
609f45ea 30#include "block/qdict.h"
d49b6836 31#include "qemu/error-report.h"
88d88798 32#include "module_block.h"
1de7afc9 33#include "qemu/module.h"
e688df6b 34#include "qapi/error.h"
452fcdbc 35#include "qapi/qmp/qdict.h"
7b1b5d19 36#include "qapi/qmp/qjson.h"
e59a0cf1 37#include "qapi/qmp/qnull.h"
fc81fa1e 38#include "qapi/qmp/qstring.h"
e1d74bc6
KW
39#include "qapi/qobject-output-visitor.h"
40#include "qapi/qapi-visit-block-core.h"
bfb197e0 41#include "sysemu/block-backend.h"
9c17d615 42#include "sysemu/sysemu.h"
1de7afc9 43#include "qemu/notify.h"
922a01a0 44#include "qemu/option.h"
10817bf0 45#include "qemu/coroutine.h"
c13163fb 46#include "block/qapi.h"
1de7afc9 47#include "qemu/timer.h"
f348b6d1
VB
48#include "qemu/cutils.h"
49#include "qemu/id.h"
fc01f7e7 50
71e72a19 51#ifdef CONFIG_BSD
7674e7bf 52#include <sys/ioctl.h>
72cf2d4f 53#include <sys/queue.h>
c5e97233 54#ifndef __DragonFly__
7674e7bf
FB
55#include <sys/disk.h>
56#endif
c5e97233 57#endif
7674e7bf 58
49dc768d
AL
59#ifdef _WIN32
60#include <windows.h>
61#endif
62
1c9805a3
SH
63#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
64
dc364f4c
BC
65static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67
2c1d04e0
HR
68static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
70
8a22f02a
SH
71static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72 QLIST_HEAD_INITIALIZER(bdrv_drivers);
ea2384d3 73
5b363937
HR
74static BlockDriverState *bdrv_open_inherit(const char *filename,
75 const char *reference,
76 QDict *options, int flags,
77 BlockDriverState *parent,
78 const BdrvChildRole *child_role,
79 Error **errp);
f3930ed0 80
eb852011
MA
81/* If non-zero, use only whitelisted block drivers */
82static int use_bdrv_whitelist;
83
9e0b22f4
SH
84#ifdef _WIN32
85static int is_windows_drive_prefix(const char *filename)
86{
87 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
89 filename[1] == ':');
90}
91
92int is_windows_drive(const char *filename)
93{
94 if (is_windows_drive_prefix(filename) &&
95 filename[2] == '\0')
96 return 1;
97 if (strstart(filename, "\\\\.\\", NULL) ||
98 strstart(filename, "//./", NULL))
99 return 1;
100 return 0;
101}
102#endif
103
339064d5
KW
104size_t bdrv_opt_mem_align(BlockDriverState *bs)
105{
106 if (!bs || !bs->drv) {
459b4e66
DL
107 /* page size or 4k (hdd sector size) should be on the safe side */
108 return MAX(4096, getpagesize());
339064d5
KW
109 }
110
111 return bs->bl.opt_mem_alignment;
112}
113
4196d2f0
DL
114size_t bdrv_min_mem_align(BlockDriverState *bs)
115{
116 if (!bs || !bs->drv) {
459b4e66
DL
117 /* page size or 4k (hdd sector size) should be on the safe side */
118 return MAX(4096, getpagesize());
4196d2f0
DL
119 }
120
121 return bs->bl.min_mem_alignment;
122}
123
9e0b22f4 124/* check if the path starts with "<protocol>:" */
5c98415b 125int path_has_protocol(const char *path)
9e0b22f4 126{
947995c0
PB
127 const char *p;
128
9e0b22f4
SH
129#ifdef _WIN32
130 if (is_windows_drive(path) ||
131 is_windows_drive_prefix(path)) {
132 return 0;
133 }
947995c0
PB
134 p = path + strcspn(path, ":/\\");
135#else
136 p = path + strcspn(path, ":/");
9e0b22f4
SH
137#endif
138
947995c0 139 return *p == ':';
9e0b22f4
SH
140}
141
83f64091 142int path_is_absolute(const char *path)
3b0d4f61 143{
21664424
FB
144#ifdef _WIN32
145 /* specific case for names like: "\\.\d:" */
f53f4da9 146 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
21664424 147 return 1;
f53f4da9
PB
148 }
149 return (*path == '/' || *path == '\\');
3b9f94e1 150#else
f53f4da9 151 return (*path == '/');
3b9f94e1 152#endif
3b0d4f61
FB
153}
154
83f64091
FB
155/* if filename is absolute, just copy it to dest. Otherwise, build a
156 path to it by considering it is relative to base_path. URL are
157 supported. */
158void path_combine(char *dest, int dest_size,
159 const char *base_path,
160 const char *filename)
3b0d4f61 161{
83f64091
FB
162 const char *p, *p1;
163 int len;
164
165 if (dest_size <= 0)
166 return;
167 if (path_is_absolute(filename)) {
168 pstrcpy(dest, dest_size, filename);
169 } else {
0d54a6fe
HR
170 const char *protocol_stripped = NULL;
171
172 if (path_has_protocol(base_path)) {
173 protocol_stripped = strchr(base_path, ':');
174 if (protocol_stripped) {
175 protocol_stripped++;
176 }
177 }
178 p = protocol_stripped ?: base_path;
179
3b9f94e1
FB
180 p1 = strrchr(base_path, '/');
181#ifdef _WIN32
182 {
183 const char *p2;
184 p2 = strrchr(base_path, '\\');
185 if (!p1 || p2 > p1)
186 p1 = p2;
187 }
188#endif
83f64091
FB
189 if (p1)
190 p1++;
191 else
192 p1 = base_path;
193 if (p1 > p)
194 p = p1;
195 len = p - base_path;
196 if (len > dest_size - 1)
197 len = dest_size - 1;
198 memcpy(dest, base_path, len);
199 dest[len] = '\0';
200 pstrcat(dest, dest_size, filename);
3b0d4f61 201 }
3b0d4f61
FB
202}
203
03c320d8
HR
204/*
205 * Helper function for bdrv_parse_filename() implementations to remove optional
206 * protocol prefixes (especially "file:") from a filename and for putting the
207 * stripped filename into the options QDict if there is such a prefix.
208 */
209void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
210 QDict *options)
211{
212 if (strstart(filename, prefix, &filename)) {
213 /* Stripping the explicit protocol prefix may result in a protocol
214 * prefix being (wrongly) detected (if the filename contains a colon) */
215 if (path_has_protocol(filename)) {
216 QString *fat_filename;
217
218 /* This means there is some colon before the first slash; therefore,
219 * this cannot be an absolute path */
220 assert(!path_is_absolute(filename));
221
222 /* And we can thus fix the protocol detection issue by prefixing it
223 * by "./" */
224 fat_filename = qstring_from_str("./");
225 qstring_append(fat_filename, filename);
226
227 assert(!path_has_protocol(qstring_get_str(fat_filename)));
228
229 qdict_put(options, "filename", fat_filename);
230 } else {
231 /* If no protocol prefix was detected, we can use the shortened
232 * filename as-is */
233 qdict_put_str(options, "filename", filename);
234 }
235 }
236}
237
238
9c5e6594
KW
239/* Returns whether the image file is opened as read-only. Note that this can
240 * return false and writing to the image file is still not possible because the
241 * image is inactivated. */
93ed524e
JC
242bool bdrv_is_read_only(BlockDriverState *bs)
243{
244 return bs->read_only;
245}
246
54a32bfe
KW
247int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248 bool ignore_allow_rdw, Error **errp)
fe5241bf 249{
e2b8247a
JC
250 /* Do not set read_only if copy_on_read is enabled */
251 if (bs->copy_on_read && read_only) {
252 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253 bdrv_get_device_or_node_name(bs));
254 return -EINVAL;
255 }
256
d6fcdf06 257 /* Do not clear read_only if it is prohibited */
54a32bfe
KW
258 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
259 !ignore_allow_rdw)
260 {
d6fcdf06
JC
261 error_setg(errp, "Node '%s' is read only",
262 bdrv_get_device_or_node_name(bs));
263 return -EPERM;
264 }
265
45803a03
JC
266 return 0;
267}
268
398e6ad0
KW
269/* TODO Remove (deprecated since 2.11)
270 * Block drivers are not supposed to automatically change bs->read_only.
271 * Instead, they should just check whether they can provide what the user
272 * explicitly requested and error out if read-write is requested, but they can
273 * only provide read-only access. */
45803a03
JC
274int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
275{
276 int ret = 0;
277
54a32bfe 278 ret = bdrv_can_set_read_only(bs, read_only, false, errp);
45803a03
JC
279 if (ret < 0) {
280 return ret;
281 }
282
fe5241bf 283 bs->read_only = read_only;
e2b8247a 284 return 0;
fe5241bf
JC
285}
286
0a82855a
HR
287void bdrv_get_full_backing_filename_from_filename(const char *backed,
288 const char *backing,
9f07429e
HR
289 char *dest, size_t sz,
290 Error **errp)
dc5a1371 291{
9f07429e
HR
292 if (backing[0] == '\0' || path_has_protocol(backing) ||
293 path_is_absolute(backing))
294 {
0a82855a 295 pstrcpy(dest, sz, backing);
9f07429e
HR
296 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
297 error_setg(errp, "Cannot use relative backing file names for '%s'",
298 backed);
dc5a1371 299 } else {
0a82855a 300 path_combine(dest, sz, backed, backing);
dc5a1371
PB
301 }
302}
303
9f07429e
HR
304void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
305 Error **errp)
0a82855a 306{
9f07429e
HR
307 char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
308
309 bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
310 dest, sz, errp);
0a82855a
HR
311}
312
0eb7217e
SH
313void bdrv_register(BlockDriver *bdrv)
314{
8a22f02a 315 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
ea2384d3 316}
b338082b 317
e4e9986b
MA
318BlockDriverState *bdrv_new(void)
319{
320 BlockDriverState *bs;
321 int i;
322
5839e53b 323 bs = g_new0(BlockDriverState, 1);
e4654d2d 324 QLIST_INIT(&bs->dirty_bitmaps);
fbe40ff7
FZ
325 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
326 QLIST_INIT(&bs->op_blockers[i]);
327 }
d616b224 328 notifier_with_return_list_init(&bs->before_write_notifiers);
3783fa3d 329 qemu_co_mutex_init(&bs->reqs_lock);
2119882c 330 qemu_mutex_init(&bs->dirty_bitmap_mutex);
9fcb0251 331 bs->refcnt = 1;
dcd04228 332 bs->aio_context = qemu_get_aio_context();
d7d512f6 333
3ff2f67a
EY
334 qemu_co_queue_init(&bs->flush_queue);
335
0f12264e
KW
336 for (i = 0; i < bdrv_drain_all_count; i++) {
337 bdrv_drained_begin(bs);
338 }
339
2c1d04e0
HR
340 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
341
b338082b
FB
342 return bs;
343}
344
88d88798 345static BlockDriver *bdrv_do_find_format(const char *format_name)
ea2384d3
FB
346{
347 BlockDriver *drv1;
88d88798 348
8a22f02a
SH
349 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
350 if (!strcmp(drv1->format_name, format_name)) {
ea2384d3 351 return drv1;
8a22f02a 352 }
ea2384d3 353 }
88d88798 354
ea2384d3
FB
355 return NULL;
356}
357
88d88798
MM
358BlockDriver *bdrv_find_format(const char *format_name)
359{
360 BlockDriver *drv1;
361 int i;
362
363 drv1 = bdrv_do_find_format(format_name);
364 if (drv1) {
365 return drv1;
366 }
367
368 /* The driver isn't registered, maybe we need to load a module */
369 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
370 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
371 block_module_load_one(block_driver_modules[i].library_name);
372 break;
373 }
374 }
375
376 return bdrv_do_find_format(format_name);
377}
378
e8eb8637 379int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
eb852011 380{
b64ec4e4
FZ
381 static const char *whitelist_rw[] = {
382 CONFIG_BDRV_RW_WHITELIST
383 };
384 static const char *whitelist_ro[] = {
385 CONFIG_BDRV_RO_WHITELIST
eb852011
MA
386 };
387 const char **p;
388
b64ec4e4 389 if (!whitelist_rw[0] && !whitelist_ro[0]) {
eb852011 390 return 1; /* no whitelist, anything goes */
b64ec4e4 391 }
eb852011 392
b64ec4e4 393 for (p = whitelist_rw; *p; p++) {
eb852011
MA
394 if (!strcmp(drv->format_name, *p)) {
395 return 1;
396 }
397 }
b64ec4e4
FZ
398 if (read_only) {
399 for (p = whitelist_ro; *p; p++) {
400 if (!strcmp(drv->format_name, *p)) {
401 return 1;
402 }
403 }
404 }
eb852011
MA
405 return 0;
406}
407
e6ff69bf
DB
408bool bdrv_uses_whitelist(void)
409{
410 return use_bdrv_whitelist;
411}
412
5b7e1542
ZYW
413typedef struct CreateCo {
414 BlockDriver *drv;
415 char *filename;
83d0521a 416 QemuOpts *opts;
5b7e1542 417 int ret;
cc84d90f 418 Error *err;
5b7e1542
ZYW
419} CreateCo;
420
421static void coroutine_fn bdrv_create_co_entry(void *opaque)
422{
cc84d90f
HR
423 Error *local_err = NULL;
424 int ret;
425
5b7e1542
ZYW
426 CreateCo *cco = opaque;
427 assert(cco->drv);
428
efc75e2a 429 ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
621ff94d 430 error_propagate(&cco->err, local_err);
cc84d90f 431 cco->ret = ret;
5b7e1542
ZYW
432}
433
0e7e1989 434int bdrv_create(BlockDriver *drv, const char* filename,
83d0521a 435 QemuOpts *opts, Error **errp)
ea2384d3 436{
5b7e1542
ZYW
437 int ret;
438
439 Coroutine *co;
440 CreateCo cco = {
441 .drv = drv,
442 .filename = g_strdup(filename),
83d0521a 443 .opts = opts,
5b7e1542 444 .ret = NOT_DONE,
cc84d90f 445 .err = NULL,
5b7e1542
ZYW
446 };
447
efc75e2a 448 if (!drv->bdrv_co_create_opts) {
cc84d90f 449 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
80168bff
LC
450 ret = -ENOTSUP;
451 goto out;
5b7e1542
ZYW
452 }
453
454 if (qemu_in_coroutine()) {
455 /* Fast-path if already in coroutine context */
456 bdrv_create_co_entry(&cco);
457 } else {
0b8b8753
PB
458 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
459 qemu_coroutine_enter(co);
5b7e1542 460 while (cco.ret == NOT_DONE) {
b47ec2c4 461 aio_poll(qemu_get_aio_context(), true);
5b7e1542
ZYW
462 }
463 }
464
465 ret = cco.ret;
cc84d90f 466 if (ret < 0) {
84d18f06 467 if (cco.err) {
cc84d90f
HR
468 error_propagate(errp, cco.err);
469 } else {
470 error_setg_errno(errp, -ret, "Could not create image");
471 }
472 }
0e7e1989 473
80168bff
LC
474out:
475 g_free(cco.filename);
5b7e1542 476 return ret;
ea2384d3
FB
477}
478
c282e1fd 479int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
84a12e66
CH
480{
481 BlockDriver *drv;
cc84d90f
HR
482 Error *local_err = NULL;
483 int ret;
84a12e66 484
b65a5e12 485 drv = bdrv_find_protocol(filename, true, errp);
84a12e66 486 if (drv == NULL) {
16905d71 487 return -ENOENT;
84a12e66
CH
488 }
489
c282e1fd 490 ret = bdrv_create(drv, filename, opts, &local_err);
621ff94d 491 error_propagate(errp, local_err);
cc84d90f 492 return ret;
84a12e66
CH
493}
494
892b7de8
ET
495/**
496 * Try to get @bs's logical and physical block size.
497 * On success, store them in @bsz struct and return 0.
498 * On failure return -errno.
499 * @bs must not be empty.
500 */
501int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
502{
503 BlockDriver *drv = bs->drv;
504
505 if (drv && drv->bdrv_probe_blocksizes) {
506 return drv->bdrv_probe_blocksizes(bs, bsz);
5a612c00
MP
507 } else if (drv && drv->is_filter && bs->file) {
508 return bdrv_probe_blocksizes(bs->file->bs, bsz);
892b7de8
ET
509 }
510
511 return -ENOTSUP;
512}
513
514/**
515 * Try to get @bs's geometry (cyls, heads, sectors).
516 * On success, store them in @geo struct and return 0.
517 * On failure return -errno.
518 * @bs must not be empty.
519 */
520int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
521{
522 BlockDriver *drv = bs->drv;
523
524 if (drv && drv->bdrv_probe_geometry) {
525 return drv->bdrv_probe_geometry(bs, geo);
5a612c00
MP
526 } else if (drv && drv->is_filter && bs->file) {
527 return bdrv_probe_geometry(bs->file->bs, geo);
892b7de8
ET
528 }
529
530 return -ENOTSUP;
531}
532
eba25057
JM
533/*
534 * Create a uniquely-named empty temporary file.
535 * Return 0 upon success, otherwise a negative errno value.
536 */
537int get_tmp_filename(char *filename, int size)
d5249393 538{
eba25057 539#ifdef _WIN32
3b9f94e1 540 char temp_dir[MAX_PATH];
eba25057
JM
541 /* GetTempFileName requires that its output buffer (4th param)
542 have length MAX_PATH or greater. */
543 assert(size >= MAX_PATH);
544 return (GetTempPath(MAX_PATH, temp_dir)
545 && GetTempFileName(temp_dir, "qem", 0, filename)
546 ? 0 : -GetLastError());
d5249393 547#else
67b915a5 548 int fd;
7ccfb2eb 549 const char *tmpdir;
0badc1ee 550 tmpdir = getenv("TMPDIR");
69bef793
AS
551 if (!tmpdir) {
552 tmpdir = "/var/tmp";
553 }
eba25057
JM
554 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
555 return -EOVERFLOW;
556 }
ea2384d3 557 fd = mkstemp(filename);
fe235a06
DH
558 if (fd < 0) {
559 return -errno;
560 }
561 if (close(fd) != 0) {
562 unlink(filename);
eba25057
JM
563 return -errno;
564 }
565 return 0;
d5249393 566#endif
eba25057 567}
fc01f7e7 568
84a12e66
CH
569/*
570 * Detect host devices. By convention, /dev/cdrom[N] is always
571 * recognized as a host CDROM.
572 */
573static BlockDriver *find_hdev_driver(const char *filename)
574{
575 int score_max = 0, score;
576 BlockDriver *drv = NULL, *d;
577
578 QLIST_FOREACH(d, &bdrv_drivers, list) {
579 if (d->bdrv_probe_device) {
580 score = d->bdrv_probe_device(filename);
581 if (score > score_max) {
582 score_max = score;
583 drv = d;
584 }
585 }
586 }
587
588 return drv;
589}
590
88d88798
MM
591static BlockDriver *bdrv_do_find_protocol(const char *protocol)
592{
593 BlockDriver *drv1;
594
595 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
596 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
597 return drv1;
598 }
599 }
600
601 return NULL;
602}
603
98289620 604BlockDriver *bdrv_find_protocol(const char *filename,
b65a5e12
HR
605 bool allow_protocol_prefix,
606 Error **errp)
83f64091
FB
607{
608 BlockDriver *drv1;
609 char protocol[128];
1cec71e3 610 int len;
83f64091 611 const char *p;
88d88798 612 int i;
19cb3738 613
66f82cee
KW
614 /* TODO Drivers without bdrv_file_open must be specified explicitly */
615
39508e7a
CH
616 /*
617 * XXX(hch): we really should not let host device detection
618 * override an explicit protocol specification, but moving this
619 * later breaks access to device names with colons in them.
620 * Thanks to the brain-dead persistent naming schemes on udev-
621 * based Linux systems those actually are quite common.
622 */
623 drv1 = find_hdev_driver(filename);
624 if (drv1) {
625 return drv1;
626 }
627
98289620 628 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
ef810437 629 return &bdrv_file;
84a12e66 630 }
98289620 631
9e0b22f4
SH
632 p = strchr(filename, ':');
633 assert(p != NULL);
1cec71e3
AL
634 len = p - filename;
635 if (len > sizeof(protocol) - 1)
636 len = sizeof(protocol) - 1;
637 memcpy(protocol, filename, len);
638 protocol[len] = '\0';
88d88798
MM
639
640 drv1 = bdrv_do_find_protocol(protocol);
641 if (drv1) {
642 return drv1;
643 }
644
645 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
646 if (block_driver_modules[i].protocol_name &&
647 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
648 block_module_load_one(block_driver_modules[i].library_name);
649 break;
8a22f02a 650 }
83f64091 651 }
b65a5e12 652
88d88798
MM
653 drv1 = bdrv_do_find_protocol(protocol);
654 if (!drv1) {
655 error_setg(errp, "Unknown protocol '%s'", protocol);
656 }
657 return drv1;
83f64091
FB
658}
659
c6684249
MA
660/*
661 * Guess image format by probing its contents.
662 * This is not a good idea when your image is raw (CVE-2008-2004), but
663 * we do it anyway for backward compatibility.
664 *
665 * @buf contains the image's first @buf_size bytes.
7cddd372
KW
666 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
667 * but can be smaller if the image file is smaller)
c6684249
MA
668 * @filename is its filename.
669 *
670 * For all block drivers, call the bdrv_probe() method to get its
671 * probing score.
672 * Return the first block driver with the highest probing score.
673 */
38f3ef57
KW
674BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
675 const char *filename)
c6684249
MA
676{
677 int score_max = 0, score;
678 BlockDriver *drv = NULL, *d;
679
680 QLIST_FOREACH(d, &bdrv_drivers, list) {
681 if (d->bdrv_probe) {
682 score = d->bdrv_probe(buf, buf_size, filename);
683 if (score > score_max) {
684 score_max = score;
685 drv = d;
686 }
687 }
688 }
689
690 return drv;
691}
692
5696c6e3 693static int find_image_format(BlockBackend *file, const char *filename,
34b5d2c6 694 BlockDriver **pdrv, Error **errp)
f3a5d3f8 695{
c6684249 696 BlockDriver *drv;
7cddd372 697 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
f500a6d3 698 int ret = 0;
f8ea0b00 699
08a00559 700 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
5696c6e3 701 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
ef810437 702 *pdrv = &bdrv_raw;
c98ac35d 703 return ret;
1a396859 704 }
f8ea0b00 705
5696c6e3 706 ret = blk_pread(file, 0, buf, sizeof(buf));
83f64091 707 if (ret < 0) {
34b5d2c6
HR
708 error_setg_errno(errp, -ret, "Could not read image for determining its "
709 "format");
c98ac35d
SW
710 *pdrv = NULL;
711 return ret;
83f64091
FB
712 }
713
c6684249 714 drv = bdrv_probe_all(buf, ret, filename);
c98ac35d 715 if (!drv) {
34b5d2c6
HR
716 error_setg(errp, "Could not determine image format: No compatible "
717 "driver found");
c98ac35d
SW
718 ret = -ENOENT;
719 }
720 *pdrv = drv;
721 return ret;
ea2384d3
FB
722}
723
51762288
SH
724/**
725 * Set the current 'total_sectors' value
65a9bb25 726 * Return 0 on success, -errno on error.
51762288 727 */
3d9f2d2a 728int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
51762288
SH
729{
730 BlockDriver *drv = bs->drv;
731
d470ad42
HR
732 if (!drv) {
733 return -ENOMEDIUM;
734 }
735
396759ad 736 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
b192af8a 737 if (bdrv_is_sg(bs))
396759ad
NB
738 return 0;
739
51762288
SH
740 /* query actual device if possible, otherwise just trust the hint */
741 if (drv->bdrv_getlength) {
742 int64_t length = drv->bdrv_getlength(bs);
743 if (length < 0) {
744 return length;
745 }
7e382003 746 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
51762288
SH
747 }
748
749 bs->total_sectors = hint;
750 return 0;
751}
752
cddff5ba
KW
753/**
754 * Combines a QDict of new block driver @options with any missing options taken
755 * from @old_options, so that leaving out an option defaults to its old value.
756 */
757static void bdrv_join_options(BlockDriverState *bs, QDict *options,
758 QDict *old_options)
759{
760 if (bs->drv && bs->drv->bdrv_join_options) {
761 bs->drv->bdrv_join_options(options, old_options);
762 } else {
763 qdict_join(options, old_options, false);
764 }
765}
766
9e8f1835
PB
767/**
768 * Set open flags for a given discard mode
769 *
770 * Return 0 on success, -1 if the discard mode was invalid.
771 */
772int bdrv_parse_discard_flags(const char *mode, int *flags)
773{
774 *flags &= ~BDRV_O_UNMAP;
775
776 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
777 /* do nothing */
778 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
779 *flags |= BDRV_O_UNMAP;
780 } else {
781 return -1;
782 }
783
784 return 0;
785}
786
c3993cdc
SH
787/**
788 * Set open flags for a given cache mode
789 *
790 * Return 0 on success, -1 if the cache mode was invalid.
791 */
53e8ae01 792int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
c3993cdc
SH
793{
794 *flags &= ~BDRV_O_CACHE_MASK;
795
796 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
53e8ae01
KW
797 *writethrough = false;
798 *flags |= BDRV_O_NOCACHE;
92196b2f 799 } else if (!strcmp(mode, "directsync")) {
53e8ae01 800 *writethrough = true;
92196b2f 801 *flags |= BDRV_O_NOCACHE;
c3993cdc 802 } else if (!strcmp(mode, "writeback")) {
53e8ae01 803 *writethrough = false;
c3993cdc 804 } else if (!strcmp(mode, "unsafe")) {
53e8ae01 805 *writethrough = false;
c3993cdc
SH
806 *flags |= BDRV_O_NO_FLUSH;
807 } else if (!strcmp(mode, "writethrough")) {
53e8ae01 808 *writethrough = true;
c3993cdc
SH
809 } else {
810 return -1;
811 }
812
813 return 0;
814}
815
b5411555
KW
816static char *bdrv_child_get_parent_desc(BdrvChild *c)
817{
818 BlockDriverState *parent = c->opaque;
819 return g_strdup(bdrv_get_device_or_node_name(parent));
820}
821
20018e12
KW
822static void bdrv_child_cb_drained_begin(BdrvChild *child)
823{
824 BlockDriverState *bs = child->opaque;
6cd5c9d7 825 bdrv_do_drained_begin_quiesce(bs, NULL, false);
20018e12
KW
826}
827
89bd0305
KW
828static bool bdrv_child_cb_drained_poll(BdrvChild *child)
829{
830 BlockDriverState *bs = child->opaque;
6cd5c9d7 831 return bdrv_drain_poll(bs, false, NULL, false);
89bd0305
KW
832}
833
20018e12
KW
834static void bdrv_child_cb_drained_end(BdrvChild *child)
835{
836 BlockDriverState *bs = child->opaque;
837 bdrv_drained_end(bs);
838}
839
d736f119
KW
840static void bdrv_child_cb_attach(BdrvChild *child)
841{
842 BlockDriverState *bs = child->opaque;
843 bdrv_apply_subtree_drain(child, bs);
844}
845
846static void bdrv_child_cb_detach(BdrvChild *child)
847{
848 BlockDriverState *bs = child->opaque;
849 bdrv_unapply_subtree_drain(child, bs);
850}
851
38701b6a
KW
852static int bdrv_child_cb_inactivate(BdrvChild *child)
853{
854 BlockDriverState *bs = child->opaque;
855 assert(bs->open_flags & BDRV_O_INACTIVE);
856 return 0;
857}
858
b1e6fc08 859/*
73176bee
KW
860 * Returns the options and flags that a temporary snapshot should get, based on
861 * the originally requested flags (the originally requested image will have
862 * flags like a backing file)
b1e6fc08 863 */
73176bee
KW
864static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
865 int parent_flags, QDict *parent_options)
b1e6fc08 866{
73176bee
KW
867 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
868
869 /* For temporary files, unconditional cache=unsafe is fine */
73176bee
KW
870 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
871 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
41869044 872
f87a0e29
AG
873 /* Copy the read-only option from the parent */
874 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
875
41869044
KW
876 /* aio=native doesn't work for cache.direct=off, so disable it for the
877 * temporary snapshot */
878 *child_flags &= ~BDRV_O_NATIVE_AIO;
b1e6fc08
KW
879}
880
0b50cc88 881/*
8e2160e2
KW
882 * Returns the options and flags that bs->file should get if a protocol driver
883 * is expected, based on the given options and flags for the parent BDS
0b50cc88 884 */
8e2160e2
KW
885static void bdrv_inherited_options(int *child_flags, QDict *child_options,
886 int parent_flags, QDict *parent_options)
0b50cc88 887{
8e2160e2
KW
888 int flags = parent_flags;
889
0b50cc88
KW
890 /* Enable protocol handling, disable format probing for bs->file */
891 flags |= BDRV_O_PROTOCOL;
892
91a097e7
KW
893 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
894 * the parent. */
895 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
896 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
5a9347c6 897 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
91a097e7 898
f87a0e29
AG
899 /* Inherit the read-only option from the parent if it's not set */
900 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
901
0b50cc88 902 /* Our block drivers take care to send flushes and respect unmap policy,
91a097e7
KW
903 * so we can default to enable both on lower layers regardless of the
904 * corresponding parent options. */
818584a4 905 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
0b50cc88 906
0b50cc88 907 /* Clear flags that only apply to the top layer */
abb06c5a
DB
908 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
909 BDRV_O_NO_IO);
0b50cc88 910
8e2160e2 911 *child_flags = flags;
0b50cc88
KW
912}
913
f3930ed0 914const BdrvChildRole child_file = {
6cd5c9d7 915 .parent_is_bds = true,
b5411555 916 .get_parent_desc = bdrv_child_get_parent_desc,
8e2160e2 917 .inherit_options = bdrv_inherited_options,
20018e12 918 .drained_begin = bdrv_child_cb_drained_begin,
89bd0305 919 .drained_poll = bdrv_child_cb_drained_poll,
20018e12 920 .drained_end = bdrv_child_cb_drained_end,
d736f119
KW
921 .attach = bdrv_child_cb_attach,
922 .detach = bdrv_child_cb_detach,
38701b6a 923 .inactivate = bdrv_child_cb_inactivate,
f3930ed0
KW
924};
925
926/*
8e2160e2
KW
927 * Returns the options and flags that bs->file should get if the use of formats
928 * (and not only protocols) is permitted for it, based on the given options and
929 * flags for the parent BDS
f3930ed0 930 */
8e2160e2
KW
931static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
932 int parent_flags, QDict *parent_options)
f3930ed0 933{
8e2160e2
KW
934 child_file.inherit_options(child_flags, child_options,
935 parent_flags, parent_options);
936
abb06c5a 937 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
f3930ed0
KW
938}
939
940const BdrvChildRole child_format = {
6cd5c9d7 941 .parent_is_bds = true,
b5411555 942 .get_parent_desc = bdrv_child_get_parent_desc,
8e2160e2 943 .inherit_options = bdrv_inherited_fmt_options,
20018e12 944 .drained_begin = bdrv_child_cb_drained_begin,
89bd0305 945 .drained_poll = bdrv_child_cb_drained_poll,
20018e12 946 .drained_end = bdrv_child_cb_drained_end,
d736f119
KW
947 .attach = bdrv_child_cb_attach,
948 .detach = bdrv_child_cb_detach,
38701b6a 949 .inactivate = bdrv_child_cb_inactivate,
f3930ed0
KW
950};
951
db95dbba
KW
952static void bdrv_backing_attach(BdrvChild *c)
953{
954 BlockDriverState *parent = c->opaque;
955 BlockDriverState *backing_hd = c->bs;
956
957 assert(!parent->backing_blocker);
958 error_setg(&parent->backing_blocker,
959 "node is used as backing hd of '%s'",
960 bdrv_get_device_or_node_name(parent));
961
962 parent->open_flags &= ~BDRV_O_NO_BACKING;
963 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
964 backing_hd->filename);
965 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
966 backing_hd->drv ? backing_hd->drv->format_name : "");
967
968 bdrv_op_block_all(backing_hd, parent->backing_blocker);
969 /* Otherwise we won't be able to commit or stream */
970 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
971 parent->backing_blocker);
972 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
973 parent->backing_blocker);
974 /*
975 * We do backup in 3 ways:
976 * 1. drive backup
977 * The target bs is new opened, and the source is top BDS
978 * 2. blockdev backup
979 * Both the source and the target are top BDSes.
980 * 3. internal backup(used for block replication)
981 * Both the source and the target are backing file
982 *
983 * In case 1 and 2, neither the source nor the target is the backing file.
984 * In case 3, we will block the top BDS, so there is only one block job
985 * for the top BDS and its backing chain.
986 */
987 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
988 parent->backing_blocker);
989 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
990 parent->backing_blocker);
d736f119
KW
991
992 bdrv_child_cb_attach(c);
db95dbba
KW
993}
994
995static void bdrv_backing_detach(BdrvChild *c)
996{
997 BlockDriverState *parent = c->opaque;
998
999 assert(parent->backing_blocker);
1000 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001 error_free(parent->backing_blocker);
1002 parent->backing_blocker = NULL;
d736f119
KW
1003
1004 bdrv_child_cb_detach(c);
db95dbba
KW
1005}
1006
317fc44e 1007/*
8e2160e2
KW
1008 * Returns the options and flags that bs->backing should get, based on the
1009 * given options and flags for the parent BDS
317fc44e 1010 */
8e2160e2
KW
1011static void bdrv_backing_options(int *child_flags, QDict *child_options,
1012 int parent_flags, QDict *parent_options)
317fc44e 1013{
8e2160e2
KW
1014 int flags = parent_flags;
1015
b8816a43
KW
1016 /* The cache mode is inherited unmodified for backing files; except WCE,
1017 * which is only applied on the top level (BlockBackend) */
91a097e7
KW
1018 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1019 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
5a9347c6 1020 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
91a097e7 1021
317fc44e 1022 /* backing files always opened read-only */
f87a0e29
AG
1023 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024 flags &= ~BDRV_O_COPY_ON_READ;
317fc44e
KW
1025
1026 /* snapshot=on is handled on the top layer */
8bfea15d 1027 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
317fc44e 1028
8e2160e2 1029 *child_flags = flags;
317fc44e
KW
1030}
1031
6858eba0
KW
1032static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1033 const char *filename, Error **errp)
1034{
1035 BlockDriverState *parent = c->opaque;
61f09cea 1036 int orig_flags = bdrv_get_flags(parent);
6858eba0
KW
1037 int ret;
1038
61f09cea
KW
1039 if (!(orig_flags & BDRV_O_RDWR)) {
1040 ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
1041 if (ret < 0) {
1042 return ret;
1043 }
1044 }
1045
6858eba0
KW
1046 ret = bdrv_change_backing_file(parent, filename,
1047 base->drv ? base->drv->format_name : "");
1048 if (ret < 0) {
64730694 1049 error_setg_errno(errp, -ret, "Could not update backing file link");
6858eba0
KW
1050 }
1051
61f09cea
KW
1052 if (!(orig_flags & BDRV_O_RDWR)) {
1053 bdrv_reopen(parent, orig_flags, NULL);
1054 }
1055
6858eba0
KW
1056 return ret;
1057}
1058
91ef3825 1059const BdrvChildRole child_backing = {
6cd5c9d7 1060 .parent_is_bds = true,
b5411555 1061 .get_parent_desc = bdrv_child_get_parent_desc,
db95dbba
KW
1062 .attach = bdrv_backing_attach,
1063 .detach = bdrv_backing_detach,
8e2160e2 1064 .inherit_options = bdrv_backing_options,
20018e12 1065 .drained_begin = bdrv_child_cb_drained_begin,
89bd0305 1066 .drained_poll = bdrv_child_cb_drained_poll,
20018e12 1067 .drained_end = bdrv_child_cb_drained_end,
38701b6a 1068 .inactivate = bdrv_child_cb_inactivate,
6858eba0 1069 .update_filename = bdrv_backing_update_filename,
f3930ed0
KW
1070};
1071
7b272452
KW
1072static int bdrv_open_flags(BlockDriverState *bs, int flags)
1073{
61de4c68 1074 int open_flags = flags;
7b272452
KW
1075
1076 /*
1077 * Clear flags that are internal to the block layer before opening the
1078 * image.
1079 */
20cca275 1080 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
7b272452
KW
1081
1082 /*
1083 * Snapshots should be writable.
1084 */
8bfea15d 1085 if (flags & BDRV_O_TEMPORARY) {
7b272452
KW
1086 open_flags |= BDRV_O_RDWR;
1087 }
1088
1089 return open_flags;
1090}
1091
91a097e7
KW
1092static void update_flags_from_options(int *flags, QemuOpts *opts)
1093{
1094 *flags &= ~BDRV_O_CACHE_MASK;
1095
91a097e7
KW
1096 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
1097 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1098 *flags |= BDRV_O_NO_FLUSH;
1099 }
1100
1101 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
1102 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1103 *flags |= BDRV_O_NOCACHE;
1104 }
f87a0e29
AG
1105
1106 *flags &= ~BDRV_O_RDWR;
1107
1108 assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109 if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110 *flags |= BDRV_O_RDWR;
1111 }
1112
91a097e7
KW
1113}
1114
1115static void update_options_from_flags(QDict *options, int flags)
1116{
91a097e7 1117 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
46f5ac20 1118 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
91a097e7
KW
1119 }
1120 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
46f5ac20
EB
1121 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1122 flags & BDRV_O_NO_FLUSH);
91a097e7 1123 }
f87a0e29 1124 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
46f5ac20 1125 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
f87a0e29 1126 }
91a097e7
KW
1127}
1128
636ea370
KW
1129static void bdrv_assign_node_name(BlockDriverState *bs,
1130 const char *node_name,
1131 Error **errp)
6913c0c2 1132{
15489c76 1133 char *gen_node_name = NULL;
6913c0c2 1134
15489c76
JC
1135 if (!node_name) {
1136 node_name = gen_node_name = id_generate(ID_BLOCK);
1137 } else if (!id_wellformed(node_name)) {
1138 /*
1139 * Check for empty string or invalid characters, but not if it is
1140 * generated (generated names use characters not available to the user)
1141 */
9aebf3b8 1142 error_setg(errp, "Invalid node name");
636ea370 1143 return;
6913c0c2
BC
1144 }
1145
0c5e94ee 1146 /* takes care of avoiding namespaces collisions */
7f06d47e 1147 if (blk_by_name(node_name)) {
0c5e94ee
BC
1148 error_setg(errp, "node-name=%s is conflicting with a device id",
1149 node_name);
15489c76 1150 goto out;
0c5e94ee
BC
1151 }
1152
6913c0c2
BC
1153 /* takes care of avoiding duplicates node names */
1154 if (bdrv_find_node(node_name)) {
1155 error_setg(errp, "Duplicate node name");
15489c76 1156 goto out;
6913c0c2
BC
1157 }
1158
824808dd
KW
1159 /* Make sure that the node name isn't truncated */
1160 if (strlen(node_name) >= sizeof(bs->node_name)) {
1161 error_setg(errp, "Node name too long");
1162 goto out;
1163 }
1164
6913c0c2
BC
1165 /* copy node name into the bs and insert it into the graph list */
1166 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1167 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
15489c76
JC
1168out:
1169 g_free(gen_node_name);
6913c0c2
BC
1170}
1171
01a56501
KW
1172static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1173 const char *node_name, QDict *options,
1174 int open_flags, Error **errp)
1175{
1176 Error *local_err = NULL;
0f12264e 1177 int i, ret;
01a56501
KW
1178
1179 bdrv_assign_node_name(bs, node_name, &local_err);
1180 if (local_err) {
1181 error_propagate(errp, local_err);
1182 return -EINVAL;
1183 }
1184
1185 bs->drv = drv;
680c7f96 1186 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
01a56501
KW
1187 bs->opaque = g_malloc0(drv->instance_size);
1188
1189 if (drv->bdrv_file_open) {
1190 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1191 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
680c7f96 1192 } else if (drv->bdrv_open) {
01a56501 1193 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
680c7f96
KW
1194 } else {
1195 ret = 0;
01a56501
KW
1196 }
1197
1198 if (ret < 0) {
1199 if (local_err) {
1200 error_propagate(errp, local_err);
1201 } else if (bs->filename[0]) {
1202 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1203 } else {
1204 error_setg_errno(errp, -ret, "Could not open image");
1205 }
180ca19a 1206 goto open_failed;
01a56501
KW
1207 }
1208
1209 ret = refresh_total_sectors(bs, bs->total_sectors);
1210 if (ret < 0) {
1211 error_setg_errno(errp, -ret, "Could not refresh total sector count");
180ca19a 1212 return ret;
01a56501
KW
1213 }
1214
1215 bdrv_refresh_limits(bs, &local_err);
1216 if (local_err) {
1217 error_propagate(errp, local_err);
180ca19a 1218 return -EINVAL;
01a56501
KW
1219 }
1220
1221 assert(bdrv_opt_mem_align(bs) != 0);
1222 assert(bdrv_min_mem_align(bs) != 0);
1223 assert(is_power_of_2(bs->bl.request_alignment));
1224
0f12264e
KW
1225 for (i = 0; i < bs->quiesce_counter; i++) {
1226 if (drv->bdrv_co_drain_begin) {
1227 drv->bdrv_co_drain_begin(bs);
1228 }
1229 }
1230
01a56501 1231 return 0;
180ca19a
MP
1232open_failed:
1233 bs->drv = NULL;
1234 if (bs->file != NULL) {
1235 bdrv_unref_child(bs, bs->file);
1236 bs->file = NULL;
1237 }
01a56501
KW
1238 g_free(bs->opaque);
1239 bs->opaque = NULL;
01a56501
KW
1240 return ret;
1241}
1242
680c7f96
KW
1243BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1244 int flags, Error **errp)
1245{
1246 BlockDriverState *bs;
1247 int ret;
1248
1249 bs = bdrv_new();
1250 bs->open_flags = flags;
1251 bs->explicit_options = qdict_new();
1252 bs->options = qdict_new();
1253 bs->opaque = NULL;
1254
1255 update_options_from_flags(bs->options, flags);
1256
1257 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1258 if (ret < 0) {
cb3e7f08 1259 qobject_unref(bs->explicit_options);
180ca19a 1260 bs->explicit_options = NULL;
cb3e7f08 1261 qobject_unref(bs->options);
180ca19a 1262 bs->options = NULL;
680c7f96
KW
1263 bdrv_unref(bs);
1264 return NULL;
1265 }
1266
1267 return bs;
1268}
1269
c5f3014b 1270QemuOptsList bdrv_runtime_opts = {
18edf289
KW
1271 .name = "bdrv_common",
1272 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1273 .desc = {
1274 {
1275 .name = "node-name",
1276 .type = QEMU_OPT_STRING,
1277 .help = "Node name of the block device node",
1278 },
62392ebb
KW
1279 {
1280 .name = "driver",
1281 .type = QEMU_OPT_STRING,
1282 .help = "Block driver to use for the node",
1283 },
91a097e7
KW
1284 {
1285 .name = BDRV_OPT_CACHE_DIRECT,
1286 .type = QEMU_OPT_BOOL,
1287 .help = "Bypass software writeback cache on the host",
1288 },
1289 {
1290 .name = BDRV_OPT_CACHE_NO_FLUSH,
1291 .type = QEMU_OPT_BOOL,
1292 .help = "Ignore flush requests",
1293 },
f87a0e29
AG
1294 {
1295 .name = BDRV_OPT_READ_ONLY,
1296 .type = QEMU_OPT_BOOL,
1297 .help = "Node is opened in read-only mode",
1298 },
692e01a2
KW
1299 {
1300 .name = "detect-zeroes",
1301 .type = QEMU_OPT_STRING,
1302 .help = "try to optimize zero writes (off, on, unmap)",
1303 },
818584a4
KW
1304 {
1305 .name = "discard",
1306 .type = QEMU_OPT_STRING,
1307 .help = "discard operation (ignore/off, unmap/on)",
1308 },
5a9347c6
FZ
1309 {
1310 .name = BDRV_OPT_FORCE_SHARE,
1311 .type = QEMU_OPT_BOOL,
1312 .help = "always accept other writers (default: off)",
1313 },
18edf289
KW
1314 { /* end of list */ }
1315 },
1316};
1317
57915332
KW
1318/*
1319 * Common part for opening disk images and files
b6ad491a
KW
1320 *
1321 * Removes all processed options from *options.
57915332 1322 */
5696c6e3 1323static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
82dc8b41 1324 QDict *options, Error **errp)
57915332
KW
1325{
1326 int ret, open_flags;
035fccdf 1327 const char *filename;
62392ebb 1328 const char *driver_name = NULL;
6913c0c2 1329 const char *node_name = NULL;
818584a4 1330 const char *discard;
692e01a2 1331 const char *detect_zeroes;
18edf289 1332 QemuOpts *opts;
62392ebb 1333 BlockDriver *drv;
34b5d2c6 1334 Error *local_err = NULL;
57915332 1335
6405875c 1336 assert(bs->file == NULL);
707ff828 1337 assert(options != NULL && bs->options != options);
57915332 1338
62392ebb
KW
1339 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1340 qemu_opts_absorb_qdict(opts, options, &local_err);
1341 if (local_err) {
1342 error_propagate(errp, local_err);
1343 ret = -EINVAL;
1344 goto fail_opts;
1345 }
1346
9b7e8691
AG
1347 update_flags_from_options(&bs->open_flags, opts);
1348
62392ebb
KW
1349 driver_name = qemu_opt_get(opts, "driver");
1350 drv = bdrv_find_format(driver_name);
1351 assert(drv != NULL);
1352
5a9347c6
FZ
1353 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1354
1355 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1356 error_setg(errp,
1357 BDRV_OPT_FORCE_SHARE
1358 "=on can only be used with read-only images");
1359 ret = -EINVAL;
1360 goto fail_opts;
1361 }
1362
45673671 1363 if (file != NULL) {
5696c6e3 1364 filename = blk_bs(file)->filename;
45673671 1365 } else {
129c7d1c
MA
1366 /*
1367 * Caution: while qdict_get_try_str() is fine, getting
1368 * non-string types would require more care. When @options
1369 * come from -blockdev or blockdev_add, its members are typed
1370 * according to the QAPI schema, but when they come from
1371 * -drive, they're all QString.
1372 */
45673671
KW
1373 filename = qdict_get_try_str(options, "filename");
1374 }
1375
4a008240 1376 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
765003db
KW
1377 error_setg(errp, "The '%s' block driver requires a file name",
1378 drv->format_name);
18edf289
KW
1379 ret = -EINVAL;
1380 goto fail_opts;
6913c0c2 1381 }
6913c0c2 1382
82dc8b41
KW
1383 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1384 drv->format_name);
62392ebb 1385
82dc8b41 1386 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
b64ec4e4
FZ
1387
1388 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
8f94a6e4
KW
1389 error_setg(errp,
1390 !bs->read_only && bdrv_is_whitelisted(drv, true)
1391 ? "Driver '%s' can only be used for read-only devices"
1392 : "Driver '%s' is not whitelisted",
1393 drv->format_name);
18edf289
KW
1394 ret = -ENOTSUP;
1395 goto fail_opts;
b64ec4e4 1396 }
57915332 1397
d3faa13e
PB
1398 /* bdrv_new() and bdrv_close() make it so */
1399 assert(atomic_read(&bs->copy_on_read) == 0);
1400
82dc8b41 1401 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
0ebd24e0
KW
1402 if (!bs->read_only) {
1403 bdrv_enable_copy_on_read(bs);
1404 } else {
1405 error_setg(errp, "Can't use copy-on-read on read-only device");
18edf289
KW
1406 ret = -EINVAL;
1407 goto fail_opts;
0ebd24e0 1408 }
53fec9d3
SH
1409 }
1410
818584a4
KW
1411 discard = qemu_opt_get(opts, "discard");
1412 if (discard != NULL) {
1413 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1414 error_setg(errp, "Invalid discard option");
1415 ret = -EINVAL;
1416 goto fail_opts;
1417 }
1418 }
1419
692e01a2
KW
1420 detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1421 if (detect_zeroes) {
1422 BlockdevDetectZeroesOptions value =
f7abe0ec 1423 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
692e01a2 1424 detect_zeroes,
692e01a2
KW
1425 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1426 &local_err);
1427 if (local_err) {
1428 error_propagate(errp, local_err);
1429 ret = -EINVAL;
1430 goto fail_opts;
1431 }
1432
1433 if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1434 !(bs->open_flags & BDRV_O_UNMAP))
1435 {
1436 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1437 "without setting discard operation to unmap");
1438 ret = -EINVAL;
1439 goto fail_opts;
1440 }
1441
1442 bs->detect_zeroes = value;
1443 }
1444
c2ad1b0c
KW
1445 if (filename != NULL) {
1446 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1447 } else {
1448 bs->filename[0] = '\0';
1449 }
91af7014 1450 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
57915332 1451
66f82cee 1452 /* Open the image, either directly or using a protocol */
82dc8b41 1453 open_flags = bdrv_open_flags(bs, bs->open_flags);
01a56501 1454 node_name = qemu_opt_get(opts, "node-name");
57915332 1455
01a56501
KW
1456 assert(!drv->bdrv_file_open || file == NULL);
1457 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
51762288 1458 if (ret < 0) {
01a56501 1459 goto fail_opts;
3baca891
KW
1460 }
1461
18edf289 1462 qemu_opts_del(opts);
57915332
KW
1463 return 0;
1464
18edf289
KW
1465fail_opts:
1466 qemu_opts_del(opts);
57915332
KW
1467 return ret;
1468}
1469
5e5c4f63
KW
1470static QDict *parse_json_filename(const char *filename, Error **errp)
1471{
1472 QObject *options_obj;
1473 QDict *options;
1474 int ret;
1475
1476 ret = strstart(filename, "json:", &filename);
1477 assert(ret);
1478
5577fff7 1479 options_obj = qobject_from_json(filename, errp);
5e5c4f63 1480 if (!options_obj) {
5577fff7 1481 error_prepend(errp, "Could not parse the JSON options: ");
5e5c4f63
KW
1482 return NULL;
1483 }
1484
7dc847eb 1485 options = qobject_to(QDict, options_obj);
ca6b6e1e 1486 if (!options) {
cb3e7f08 1487 qobject_unref(options_obj);
5e5c4f63
KW
1488 error_setg(errp, "Invalid JSON object given");
1489 return NULL;
1490 }
1491
5e5c4f63
KW
1492 qdict_flatten(options);
1493
1494 return options;
1495}
1496
de3b53f0
KW
1497static void parse_json_protocol(QDict *options, const char **pfilename,
1498 Error **errp)
1499{
1500 QDict *json_options;
1501 Error *local_err = NULL;
1502
1503 /* Parse json: pseudo-protocol */
1504 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1505 return;
1506 }
1507
1508 json_options = parse_json_filename(*pfilename, &local_err);
1509 if (local_err) {
1510 error_propagate(errp, local_err);
1511 return;
1512 }
1513
1514 /* Options given in the filename have lower priority than options
1515 * specified directly */
1516 qdict_join(options, json_options, false);
cb3e7f08 1517 qobject_unref(json_options);
de3b53f0
KW
1518 *pfilename = NULL;
1519}
1520
b6ce07aa 1521/*
f54120ff
KW
1522 * Fills in default options for opening images and converts the legacy
1523 * filename/flags pair to option QDict entries.
53a29513
HR
1524 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1525 * block driver has been specified explicitly.
b6ce07aa 1526 */
de3b53f0 1527static int bdrv_fill_options(QDict **options, const char *filename,
053e1578 1528 int *flags, Error **errp)
ea2384d3 1529{
c2ad1b0c 1530 const char *drvname;
53a29513 1531 bool protocol = *flags & BDRV_O_PROTOCOL;
e3fa4bfa 1532 bool parse_filename = false;
053e1578 1533 BlockDriver *drv = NULL;
34b5d2c6 1534 Error *local_err = NULL;
83f64091 1535
129c7d1c
MA
1536 /*
1537 * Caution: while qdict_get_try_str() is fine, getting non-string
1538 * types would require more care. When @options come from
1539 * -blockdev or blockdev_add, its members are typed according to
1540 * the QAPI schema, but when they come from -drive, they're all
1541 * QString.
1542 */
53a29513 1543 drvname = qdict_get_try_str(*options, "driver");
053e1578
HR
1544 if (drvname) {
1545 drv = bdrv_find_format(drvname);
1546 if (!drv) {
1547 error_setg(errp, "Unknown driver '%s'", drvname);
1548 return -ENOENT;
1549 }
1550 /* If the user has explicitly specified the driver, this choice should
1551 * override the BDRV_O_PROTOCOL flag */
1552 protocol = drv->bdrv_file_open;
53a29513
HR
1553 }
1554
1555 if (protocol) {
1556 *flags |= BDRV_O_PROTOCOL;
1557 } else {
1558 *flags &= ~BDRV_O_PROTOCOL;
1559 }
1560
91a097e7
KW
1561 /* Translate cache options from flags into options */
1562 update_options_from_flags(*options, *flags);
1563
035fccdf 1564 /* Fetch the file name from the options QDict if necessary */
17b005f1 1565 if (protocol && filename) {
f54120ff 1566 if (!qdict_haskey(*options, "filename")) {
46f5ac20 1567 qdict_put_str(*options, "filename", filename);
f54120ff
KW
1568 parse_filename = true;
1569 } else {
1570 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1571 "the same time");
1572 return -EINVAL;
1573 }
035fccdf
KW
1574 }
1575
c2ad1b0c 1576 /* Find the right block driver */
129c7d1c 1577 /* See cautionary note on accessing @options above */
f54120ff 1578 filename = qdict_get_try_str(*options, "filename");
f54120ff 1579
053e1578
HR
1580 if (!drvname && protocol) {
1581 if (filename) {
1582 drv = bdrv_find_protocol(filename, parse_filename, errp);
17b005f1 1583 if (!drv) {
053e1578 1584 return -EINVAL;
17b005f1 1585 }
053e1578
HR
1586
1587 drvname = drv->format_name;
46f5ac20 1588 qdict_put_str(*options, "driver", drvname);
053e1578
HR
1589 } else {
1590 error_setg(errp, "Must specify either driver or file");
1591 return -EINVAL;
98289620 1592 }
c2ad1b0c
KW
1593 }
1594
17b005f1 1595 assert(drv || !protocol);
c2ad1b0c 1596
f54120ff 1597 /* Driver-specific filename parsing */
17b005f1 1598 if (drv && drv->bdrv_parse_filename && parse_filename) {
5acd9d81 1599 drv->bdrv_parse_filename(filename, *options, &local_err);
84d18f06 1600 if (local_err) {
34b5d2c6 1601 error_propagate(errp, local_err);
f54120ff 1602 return -EINVAL;
6963a30d 1603 }
cd5d031e
HR
1604
1605 if (!drv->bdrv_needs_filename) {
1606 qdict_del(*options, "filename");
cd5d031e 1607 }
6963a30d
KW
1608 }
1609
f54120ff
KW
1610 return 0;
1611}
1612
3121fb45
KW
1613static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1614 uint64_t perm, uint64_t shared,
c1cef672
FZ
1615 GSList *ignore_children, Error **errp);
1616static void bdrv_child_abort_perm_update(BdrvChild *c);
1617static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1618
148eb13c
KW
1619typedef struct BlockReopenQueueEntry {
1620 bool prepared;
1621 BDRVReopenState state;
1622 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1623} BlockReopenQueueEntry;
1624
1625/*
1626 * Return the flags that @bs will have after the reopens in @q have
1627 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1628 * return the current flags.
1629 */
1630static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1631{
1632 BlockReopenQueueEntry *entry;
1633
1634 if (q != NULL) {
1635 QSIMPLEQ_FOREACH(entry, q, entry) {
1636 if (entry->state.bs == bs) {
1637 return entry->state.flags;
1638 }
1639 }
1640 }
1641
1642 return bs->open_flags;
1643}
1644
1645/* Returns whether the image file can be written to after the reopen queue @q
1646 * has been successfully applied, or right now if @q is NULL. */
cc022140
HR
1647static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1648 BlockReopenQueue *q)
148eb13c
KW
1649{
1650 int flags = bdrv_reopen_get_flags(q, bs);
1651
1652 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1653}
1654
cc022140
HR
1655/*
1656 * Return whether the BDS can be written to. This is not necessarily
1657 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1658 * be written to but do not count as read-only images.
1659 */
1660bool bdrv_is_writable(BlockDriverState *bs)
1661{
1662 return bdrv_is_writable_after_reopen(bs, NULL);
1663}
1664
ffd1a5a2 1665static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
e0995dc3
KW
1666 BdrvChild *c, const BdrvChildRole *role,
1667 BlockReopenQueue *reopen_queue,
ffd1a5a2
FZ
1668 uint64_t parent_perm, uint64_t parent_shared,
1669 uint64_t *nperm, uint64_t *nshared)
1670{
1671 if (bs->drv && bs->drv->bdrv_child_perm) {
e0995dc3 1672 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
ffd1a5a2
FZ
1673 parent_perm, parent_shared,
1674 nperm, nshared);
1675 }
e0995dc3 1676 /* TODO Take force_share from reopen_queue */
ffd1a5a2
FZ
1677 if (child_bs && child_bs->force_share) {
1678 *nshared = BLK_PERM_ALL;
1679 }
1680}
1681
33a610c3
KW
1682/*
1683 * Check whether permissions on this node can be changed in a way that
1684 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1685 * permissions of all its parents. This involves checking whether all necessary
1686 * permission changes to child nodes can be performed.
1687 *
1688 * A call to this function must always be followed by a call to bdrv_set_perm()
1689 * or bdrv_abort_perm_update().
1690 */
3121fb45
KW
1691static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1692 uint64_t cumulative_perms,
46181129
KW
1693 uint64_t cumulative_shared_perms,
1694 GSList *ignore_children, Error **errp)
33a610c3
KW
1695{
1696 BlockDriver *drv = bs->drv;
1697 BdrvChild *c;
1698 int ret;
1699
1700 /* Write permissions never work with read-only images */
1701 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
cc022140 1702 !bdrv_is_writable_after_reopen(bs, q))
33a610c3
KW
1703 {
1704 error_setg(errp, "Block node is read-only");
1705 return -EPERM;
1706 }
1707
1708 /* Check this node */
1709 if (!drv) {
1710 return 0;
1711 }
1712
1713 if (drv->bdrv_check_perm) {
1714 return drv->bdrv_check_perm(bs, cumulative_perms,
1715 cumulative_shared_perms, errp);
1716 }
1717
78e421c9 1718 /* Drivers that never have children can omit .bdrv_child_perm() */
33a610c3 1719 if (!drv->bdrv_child_perm) {
78e421c9 1720 assert(QLIST_EMPTY(&bs->children));
33a610c3
KW
1721 return 0;
1722 }
1723
1724 /* Check all children */
1725 QLIST_FOREACH(c, &bs->children, next) {
1726 uint64_t cur_perm, cur_shared;
3121fb45 1727 bdrv_child_perm(bs, c->bs, c, c->role, q,
ffd1a5a2
FZ
1728 cumulative_perms, cumulative_shared_perms,
1729 &cur_perm, &cur_shared);
3121fb45
KW
1730 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1731 ignore_children, errp);
33a610c3
KW
1732 if (ret < 0) {
1733 return ret;
1734 }
1735 }
1736
1737 return 0;
1738}
1739
1740/*
1741 * Notifies drivers that after a previous bdrv_check_perm() call, the
1742 * permission update is not performed and any preparations made for it (e.g.
1743 * taken file locks) need to be undone.
1744 *
1745 * This function recursively notifies all child nodes.
1746 */
1747static void bdrv_abort_perm_update(BlockDriverState *bs)
1748{
1749 BlockDriver *drv = bs->drv;
1750 BdrvChild *c;
1751
1752 if (!drv) {
1753 return;
1754 }
1755
1756 if (drv->bdrv_abort_perm_update) {
1757 drv->bdrv_abort_perm_update(bs);
1758 }
1759
1760 QLIST_FOREACH(c, &bs->children, next) {
1761 bdrv_child_abort_perm_update(c);
1762 }
1763}
1764
1765static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1766 uint64_t cumulative_shared_perms)
1767{
1768 BlockDriver *drv = bs->drv;
1769 BdrvChild *c;
1770
1771 if (!drv) {
1772 return;
1773 }
1774
1775 /* Update this node */
1776 if (drv->bdrv_set_perm) {
1777 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1778 }
1779
78e421c9 1780 /* Drivers that never have children can omit .bdrv_child_perm() */
33a610c3 1781 if (!drv->bdrv_child_perm) {
78e421c9 1782 assert(QLIST_EMPTY(&bs->children));
33a610c3
KW
1783 return;
1784 }
1785
1786 /* Update all children */
1787 QLIST_FOREACH(c, &bs->children, next) {
1788 uint64_t cur_perm, cur_shared;
e0995dc3 1789 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
ffd1a5a2
FZ
1790 cumulative_perms, cumulative_shared_perms,
1791 &cur_perm, &cur_shared);
33a610c3
KW
1792 bdrv_child_set_perm(c, cur_perm, cur_shared);
1793 }
1794}
1795
1796static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1797 uint64_t *shared_perm)
1798{
1799 BdrvChild *c;
1800 uint64_t cumulative_perms = 0;
1801 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1802
1803 QLIST_FOREACH(c, &bs->parents, next_parent) {
1804 cumulative_perms |= c->perm;
1805 cumulative_shared_perms &= c->shared_perm;
1806 }
1807
1808 *perm = cumulative_perms;
1809 *shared_perm = cumulative_shared_perms;
1810}
1811
d083319f
KW
1812static char *bdrv_child_user_desc(BdrvChild *c)
1813{
1814 if (c->role->get_parent_desc) {
1815 return c->role->get_parent_desc(c);
1816 }
1817
1818 return g_strdup("another user");
1819}
1820
5176196c 1821char *bdrv_perm_names(uint64_t perm)
d083319f
KW
1822{
1823 struct perm_name {
1824 uint64_t perm;
1825 const char *name;
1826 } permissions[] = {
1827 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1828 { BLK_PERM_WRITE, "write" },
1829 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1830 { BLK_PERM_RESIZE, "resize" },
1831 { BLK_PERM_GRAPH_MOD, "change children" },
1832 { 0, NULL }
1833 };
1834
1835 char *result = g_strdup("");
1836 struct perm_name *p;
1837
1838 for (p = permissions; p->name; p++) {
1839 if (perm & p->perm) {
1840 char *old = result;
1841 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1842 g_free(old);
1843 }
1844 }
1845
1846 return result;
1847}
1848
33a610c3
KW
1849/*
1850 * Checks whether a new reference to @bs can be added if the new user requires
46181129
KW
1851 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1852 * set, the BdrvChild objects in this list are ignored in the calculations;
1853 * this allows checking permission updates for an existing reference.
33a610c3
KW
1854 *
1855 * Needs to be followed by a call to either bdrv_set_perm() or
1856 * bdrv_abort_perm_update(). */
3121fb45
KW
1857static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1858 uint64_t new_used_perm,
d5e6f437 1859 uint64_t new_shared_perm,
46181129 1860 GSList *ignore_children, Error **errp)
d5e6f437
KW
1861{
1862 BdrvChild *c;
33a610c3
KW
1863 uint64_t cumulative_perms = new_used_perm;
1864 uint64_t cumulative_shared_perms = new_shared_perm;
d5e6f437
KW
1865
1866 /* There is no reason why anyone couldn't tolerate write_unchanged */
1867 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1868
1869 QLIST_FOREACH(c, &bs->parents, next_parent) {
46181129 1870 if (g_slist_find(ignore_children, c)) {
d5e6f437
KW
1871 continue;
1872 }
1873
d083319f
KW
1874 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1875 char *user = bdrv_child_user_desc(c);
1876 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1877 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1878 "allow '%s' on %s",
1879 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1880 g_free(user);
1881 g_free(perm_names);
1882 return -EPERM;
1883 }
1884
1885 if ((c->perm & new_shared_perm) != c->perm) {
1886 char *user = bdrv_child_user_desc(c);
1887 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1888 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1889 "'%s' on %s",
1890 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1891 g_free(user);
1892 g_free(perm_names);
d5e6f437
KW
1893 return -EPERM;
1894 }
33a610c3
KW
1895
1896 cumulative_perms |= c->perm;
1897 cumulative_shared_perms &= c->shared_perm;
d5e6f437
KW
1898 }
1899
3121fb45 1900 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
46181129 1901 ignore_children, errp);
33a610c3
KW
1902}
1903
1904/* Needs to be followed by a call to either bdrv_child_set_perm() or
1905 * bdrv_child_abort_perm_update(). */
3121fb45
KW
1906static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1907 uint64_t perm, uint64_t shared,
c1cef672 1908 GSList *ignore_children, Error **errp)
33a610c3 1909{
46181129
KW
1910 int ret;
1911
1912 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
3121fb45 1913 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
46181129
KW
1914 g_slist_free(ignore_children);
1915
1916 return ret;
33a610c3
KW
1917}
1918
c1cef672 1919static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
33a610c3
KW
1920{
1921 uint64_t cumulative_perms, cumulative_shared_perms;
1922
1923 c->perm = perm;
1924 c->shared_perm = shared;
1925
1926 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1927 &cumulative_shared_perms);
1928 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1929}
1930
c1cef672 1931static void bdrv_child_abort_perm_update(BdrvChild *c)
33a610c3
KW
1932{
1933 bdrv_abort_perm_update(c->bs);
1934}
1935
1936int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1937 Error **errp)
1938{
1939 int ret;
1940
3121fb45 1941 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
33a610c3
KW
1942 if (ret < 0) {
1943 bdrv_child_abort_perm_update(c);
1944 return ret;
1945 }
1946
1947 bdrv_child_set_perm(c, perm, shared);
1948
d5e6f437
KW
1949 return 0;
1950}
1951
6a1b9ee1
KW
1952void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1953 const BdrvChildRole *role,
e0995dc3 1954 BlockReopenQueue *reopen_queue,
6a1b9ee1
KW
1955 uint64_t perm, uint64_t shared,
1956 uint64_t *nperm, uint64_t *nshared)
1957{
1958 if (c == NULL) {
1959 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1960 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1961 return;
1962 }
1963
1964 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1965 (c->perm & DEFAULT_PERM_UNCHANGED);
1966 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1967 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1968}
1969
6b1a044a
KW
1970void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1971 const BdrvChildRole *role,
e0995dc3 1972 BlockReopenQueue *reopen_queue,
6b1a044a
KW
1973 uint64_t perm, uint64_t shared,
1974 uint64_t *nperm, uint64_t *nshared)
1975{
1976 bool backing = (role == &child_backing);
1977 assert(role == &child_backing || role == &child_file);
1978
1979 if (!backing) {
5fbfabd3
KW
1980 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
1981
6b1a044a
KW
1982 /* Apart from the modifications below, the same permissions are
1983 * forwarded and left alone as for filters */
e0995dc3
KW
1984 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1985 &perm, &shared);
6b1a044a
KW
1986
1987 /* Format drivers may touch metadata even if the guest doesn't write */
cc022140 1988 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
6b1a044a
KW
1989 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1990 }
1991
1992 /* bs->file always needs to be consistent because of the metadata. We
1993 * can never allow other users to resize or write to it. */
5fbfabd3
KW
1994 if (!(flags & BDRV_O_NO_IO)) {
1995 perm |= BLK_PERM_CONSISTENT_READ;
1996 }
6b1a044a
KW
1997 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
1998 } else {
1999 /* We want consistent read from backing files if the parent needs it.
2000 * No other operations are performed on backing files. */
2001 perm &= BLK_PERM_CONSISTENT_READ;
2002
2003 /* If the parent can deal with changing data, we're okay with a
2004 * writable and resizable backing file. */
2005 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2006 if (shared & BLK_PERM_WRITE) {
2007 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2008 } else {
2009 shared = 0;
2010 }
2011
2012 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2013 BLK_PERM_WRITE_UNCHANGED;
2014 }
2015
9c5e6594
KW
2016 if (bs->open_flags & BDRV_O_INACTIVE) {
2017 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2018 }
2019
6b1a044a
KW
2020 *nperm = perm;
2021 *nshared = shared;
2022}
2023
8ee03995
KW
2024static void bdrv_replace_child_noperm(BdrvChild *child,
2025 BlockDriverState *new_bs)
e9740bc6
KW
2026{
2027 BlockDriverState *old_bs = child->bs;
0152bf40 2028 int i;
e9740bc6 2029
bb2614e9
FZ
2030 if (old_bs && new_bs) {
2031 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2032 }
e9740bc6 2033 if (old_bs) {
d736f119
KW
2034 /* Detach first so that the recursive drain sections coming from @child
2035 * are already gone and we only end the drain sections that came from
2036 * elsewhere. */
2037 if (child->role->detach) {
2038 child->role->detach(child);
2039 }
36fe1331 2040 if (old_bs->quiesce_counter && child->role->drained_end) {
0f12264e
KW
2041 int num = old_bs->quiesce_counter;
2042 if (child->role->parent_is_bds) {
2043 num -= bdrv_drain_all_count;
2044 }
2045 assert(num >= 0);
2046 for (i = 0; i < num; i++) {
0152bf40
KW
2047 child->role->drained_end(child);
2048 }
36fe1331 2049 }
e9740bc6
KW
2050 QLIST_REMOVE(child, next_parent);
2051 }
36fe1331
KW
2052
2053 child->bs = new_bs;
2054
e9740bc6
KW
2055 if (new_bs) {
2056 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
36fe1331 2057 if (new_bs->quiesce_counter && child->role->drained_begin) {
0f12264e
KW
2058 int num = new_bs->quiesce_counter;
2059 if (child->role->parent_is_bds) {
2060 num -= bdrv_drain_all_count;
2061 }
2062 assert(num >= 0);
2063 for (i = 0; i < num; i++) {
4be6a6d1 2064 bdrv_parent_drained_begin_single(child, true);
0152bf40 2065 }
36fe1331 2066 }
33a610c3 2067
d736f119
KW
2068 /* Attach only after starting new drained sections, so that recursive
2069 * drain sections coming from @child don't get an extra .drained_begin
2070 * callback. */
8ee03995
KW
2071 if (child->role->attach) {
2072 child->role->attach(child);
2073 }
2074 }
2075}
33a610c3 2076
466787fb
KW
2077/*
2078 * Updates @child to change its reference to point to @new_bs, including
2079 * checking and applying the necessary permisson updates both to the old node
2080 * and to @new_bs.
2081 *
2082 * NULL is passed as @new_bs for removing the reference before freeing @child.
2083 *
2084 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2085 * function uses bdrv_set_perm() to update the permissions according to the new
2086 * reference that @new_bs gets.
2087 */
2088static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
8ee03995
KW
2089{
2090 BlockDriverState *old_bs = child->bs;
2091 uint64_t perm, shared_perm;
2092
8aecf1d1
KW
2093 bdrv_replace_child_noperm(child, new_bs);
2094
8ee03995 2095 if (old_bs) {
33a610c3
KW
2096 /* Update permissions for old node. This is guaranteed to succeed
2097 * because we're just taking a parent away, so we're loosening
2098 * restrictions. */
2099 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
3121fb45 2100 bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
33a610c3 2101 bdrv_set_perm(old_bs, perm, shared_perm);
e9740bc6 2102 }
36fe1331 2103
e9740bc6 2104 if (new_bs) {
33a610c3 2105 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
33a610c3 2106 bdrv_set_perm(new_bs, perm, shared_perm);
e9740bc6 2107 }
e9740bc6
KW
2108}
2109
f21d96d0
KW
2110BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2111 const char *child_name,
36fe1331 2112 const BdrvChildRole *child_role,
d5e6f437
KW
2113 uint64_t perm, uint64_t shared_perm,
2114 void *opaque, Error **errp)
df581792 2115{
d5e6f437
KW
2116 BdrvChild *child;
2117 int ret;
2118
3121fb45 2119 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
d5e6f437 2120 if (ret < 0) {
33a610c3 2121 bdrv_abort_perm_update(child_bs);
d5e6f437
KW
2122 return NULL;
2123 }
2124
2125 child = g_new(BdrvChild, 1);
df581792 2126 *child = (BdrvChild) {
d5e6f437
KW
2127 .bs = NULL,
2128 .name = g_strdup(child_name),
2129 .role = child_role,
2130 .perm = perm,
2131 .shared_perm = shared_perm,
2132 .opaque = opaque,
df581792
KW
2133 };
2134
33a610c3 2135 /* This performs the matching bdrv_set_perm() for the above check. */
466787fb 2136 bdrv_replace_child(child, child_bs);
b4b059f6
KW
2137
2138 return child;
df581792
KW
2139}
2140
98292c61
WC
2141BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2142 BlockDriverState *child_bs,
2143 const char *child_name,
8b2ff529
KW
2144 const BdrvChildRole *child_role,
2145 Error **errp)
f21d96d0 2146{
d5e6f437 2147 BdrvChild *child;
f68c598b
KW
2148 uint64_t perm, shared_perm;
2149
2150 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2151
2152 assert(parent_bs->drv);
bb2614e9 2153 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
e0995dc3 2154 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
ffd1a5a2 2155 perm, shared_perm, &perm, &shared_perm);
d5e6f437 2156
d5e6f437 2157 child = bdrv_root_attach_child(child_bs, child_name, child_role,
f68c598b 2158 perm, shared_perm, parent_bs, errp);
d5e6f437
KW
2159 if (child == NULL) {
2160 return NULL;
2161 }
2162
f21d96d0
KW
2163 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2164 return child;
2165}
2166
3f09bfbc 2167static void bdrv_detach_child(BdrvChild *child)
33a60407 2168{
f21d96d0
KW
2169 if (child->next.le_prev) {
2170 QLIST_REMOVE(child, next);
2171 child->next.le_prev = NULL;
2172 }
e9740bc6 2173
466787fb 2174 bdrv_replace_child(child, NULL);
e9740bc6 2175
260fecf1 2176 g_free(child->name);
33a60407
KW
2177 g_free(child);
2178}
2179
f21d96d0 2180void bdrv_root_unref_child(BdrvChild *child)
33a60407 2181{
779020cb
KW
2182 BlockDriverState *child_bs;
2183
f21d96d0
KW
2184 child_bs = child->bs;
2185 bdrv_detach_child(child);
2186 bdrv_unref(child_bs);
2187}
2188
2189void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2190{
779020cb
KW
2191 if (child == NULL) {
2192 return;
2193 }
33a60407
KW
2194
2195 if (child->bs->inherits_from == parent) {
4e4bf5c4
KW
2196 BdrvChild *c;
2197
2198 /* Remove inherits_from only when the last reference between parent and
2199 * child->bs goes away. */
2200 QLIST_FOREACH(c, &parent->children, next) {
2201 if (c != child && c->bs == child->bs) {
2202 break;
2203 }
2204 }
2205 if (c == NULL) {
2206 child->bs->inherits_from = NULL;
2207 }
33a60407
KW
2208 }
2209
f21d96d0 2210 bdrv_root_unref_child(child);
33a60407
KW
2211}
2212
5c8cab48
KW
2213
2214static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2215{
2216 BdrvChild *c;
2217 QLIST_FOREACH(c, &bs->parents, next_parent) {
2218 if (c->role->change_media) {
2219 c->role->change_media(c, load);
2220 }
2221 }
2222}
2223
5db15a57
KW
2224/*
2225 * Sets the backing file link of a BDS. A new reference is created; callers
2226 * which don't need their own reference any more must call bdrv_unref().
2227 */
12fa4af6
KW
2228void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2229 Error **errp)
8d24cce1 2230{
5db15a57
KW
2231 if (backing_hd) {
2232 bdrv_ref(backing_hd);
2233 }
8d24cce1 2234
760e0063 2235 if (bs->backing) {
5db15a57 2236 bdrv_unref_child(bs, bs->backing);
826b6ca0
FZ
2237 }
2238
8d24cce1 2239 if (!backing_hd) {
760e0063 2240 bs->backing = NULL;
8d24cce1
FZ
2241 goto out;
2242 }
12fa4af6 2243
8b2ff529 2244 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
12fa4af6
KW
2245 errp);
2246 if (!bs->backing) {
2247 bdrv_unref(backing_hd);
2248 }
826b6ca0 2249
9e7e940c
KW
2250 bdrv_refresh_filename(bs);
2251
8d24cce1 2252out:
3baca891 2253 bdrv_refresh_limits(bs, NULL);
8d24cce1
FZ
2254}
2255
31ca6d07
KW
2256/*
2257 * Opens the backing file for a BlockDriverState if not yet open
2258 *
d9b7b057
KW
2259 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2260 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2261 * itself, all options starting with "${bdref_key}." are considered part of the
2262 * BlockdevRef.
2263 *
2264 * TODO Can this be unified with bdrv_open_image()?
31ca6d07 2265 */
d9b7b057
KW
2266int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2267 const char *bdref_key, Error **errp)
9156df12 2268{
1ba4b6a5 2269 char *backing_filename = g_malloc0(PATH_MAX);
d9b7b057
KW
2270 char *bdref_key_dot;
2271 const char *reference = NULL;
317fc44e 2272 int ret = 0;
8d24cce1 2273 BlockDriverState *backing_hd;
d9b7b057
KW
2274 QDict *options;
2275 QDict *tmp_parent_options = NULL;
34b5d2c6 2276 Error *local_err = NULL;
9156df12 2277
760e0063 2278 if (bs->backing != NULL) {
1ba4b6a5 2279 goto free_exit;
9156df12
PB
2280 }
2281
31ca6d07 2282 /* NULL means an empty set of options */
d9b7b057
KW
2283 if (parent_options == NULL) {
2284 tmp_parent_options = qdict_new();
2285 parent_options = tmp_parent_options;
31ca6d07
KW
2286 }
2287
9156df12 2288 bs->open_flags &= ~BDRV_O_NO_BACKING;
d9b7b057
KW
2289
2290 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2291 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2292 g_free(bdref_key_dot);
2293
129c7d1c
MA
2294 /*
2295 * Caution: while qdict_get_try_str() is fine, getting non-string
2296 * types would require more care. When @parent_options come from
2297 * -blockdev or blockdev_add, its members are typed according to
2298 * the QAPI schema, but when they come from -drive, they're all
2299 * QString.
2300 */
d9b7b057
KW
2301 reference = qdict_get_try_str(parent_options, bdref_key);
2302 if (reference || qdict_haskey(options, "file.filename")) {
1cb6f506
KW
2303 backing_filename[0] = '\0';
2304 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
cb3e7f08 2305 qobject_unref(options);
1ba4b6a5 2306 goto free_exit;
dbecebdd 2307 } else {
9f07429e
HR
2308 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2309 &local_err);
2310 if (local_err) {
2311 ret = -EINVAL;
2312 error_propagate(errp, local_err);
cb3e7f08 2313 qobject_unref(options);
9f07429e
HR
2314 goto free_exit;
2315 }
9156df12
PB
2316 }
2317
8ee79e70
KW
2318 if (!bs->drv || !bs->drv->supports_backing) {
2319 ret = -EINVAL;
2320 error_setg(errp, "Driver doesn't support backing files");
cb3e7f08 2321 qobject_unref(options);
8ee79e70
KW
2322 goto free_exit;
2323 }
2324
6bff597b
PK
2325 if (!reference &&
2326 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
46f5ac20 2327 qdict_put_str(options, "driver", bs->backing_format);
9156df12
PB
2328 }
2329
5b363937
HR
2330 backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2331 reference, options, 0, bs, &child_backing,
2332 errp);
2333 if (!backing_hd) {
9156df12 2334 bs->open_flags |= BDRV_O_NO_BACKING;
e43bfd9c 2335 error_prepend(errp, "Could not open backing file: ");
5b363937 2336 ret = -EINVAL;
1ba4b6a5 2337 goto free_exit;
9156df12 2338 }
5ce6bfe2 2339 bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
df581792 2340
5db15a57
KW
2341 /* Hook up the backing file link; drop our reference, bs owns the
2342 * backing_hd reference now */
12fa4af6 2343 bdrv_set_backing_hd(bs, backing_hd, &local_err);
5db15a57 2344 bdrv_unref(backing_hd);
12fa4af6 2345 if (local_err) {
8cd1a3e4 2346 error_propagate(errp, local_err);
12fa4af6
KW
2347 ret = -EINVAL;
2348 goto free_exit;
2349 }
d80ac658 2350
d9b7b057
KW
2351 qdict_del(parent_options, bdref_key);
2352
1ba4b6a5
BC
2353free_exit:
2354 g_free(backing_filename);
cb3e7f08 2355 qobject_unref(tmp_parent_options);
1ba4b6a5 2356 return ret;
9156df12
PB
2357}
2358
2d6b86af
KW
2359static BlockDriverState *
2360bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2361 BlockDriverState *parent, const BdrvChildRole *child_role,
2362 bool allow_none, Error **errp)
da557aac 2363{
2d6b86af 2364 BlockDriverState *bs = NULL;
da557aac 2365 QDict *image_options;
da557aac
HR
2366 char *bdref_key_dot;
2367 const char *reference;
2368
df581792 2369 assert(child_role != NULL);
f67503e5 2370
da557aac
HR
2371 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2372 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2373 g_free(bdref_key_dot);
2374
129c7d1c
MA
2375 /*
2376 * Caution: while qdict_get_try_str() is fine, getting non-string
2377 * types would require more care. When @options come from
2378 * -blockdev or blockdev_add, its members are typed according to
2379 * the QAPI schema, but when they come from -drive, they're all
2380 * QString.
2381 */
da557aac
HR
2382 reference = qdict_get_try_str(options, bdref_key);
2383 if (!filename && !reference && !qdict_size(image_options)) {
b4b059f6 2384 if (!allow_none) {
da557aac
HR
2385 error_setg(errp, "A block device must be specified for \"%s\"",
2386 bdref_key);
da557aac 2387 }
cb3e7f08 2388 qobject_unref(image_options);
da557aac
HR
2389 goto done;
2390 }
2391
5b363937
HR
2392 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2393 parent, child_role, errp);
2394 if (!bs) {
df581792
KW
2395 goto done;
2396 }
2397
da557aac
HR
2398done:
2399 qdict_del(options, bdref_key);
2d6b86af
KW
2400 return bs;
2401}
2402
2403/*
2404 * Opens a disk image whose options are given as BlockdevRef in another block
2405 * device's options.
2406 *
2407 * If allow_none is true, no image will be opened if filename is false and no
2408 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2409 *
2410 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2411 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2412 * itself, all options starting with "${bdref_key}." are considered part of the
2413 * BlockdevRef.
2414 *
2415 * The BlockdevRef will be removed from the options QDict.
2416 */
2417BdrvChild *bdrv_open_child(const char *filename,
2418 QDict *options, const char *bdref_key,
2419 BlockDriverState *parent,
2420 const BdrvChildRole *child_role,
2421 bool allow_none, Error **errp)
2422{
8b2ff529 2423 BdrvChild *c;
2d6b86af
KW
2424 BlockDriverState *bs;
2425
2426 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2427 allow_none, errp);
2428 if (bs == NULL) {
2429 return NULL;
2430 }
2431
8b2ff529
KW
2432 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2433 if (!c) {
2434 bdrv_unref(bs);
2435 return NULL;
2436 }
2437
2438 return c;
b4b059f6
KW
2439}
2440
e1d74bc6
KW
2441/* TODO Future callers may need to specify parent/child_role in order for
2442 * option inheritance to work. Existing callers use it for the root node. */
2443BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2444{
2445 BlockDriverState *bs = NULL;
2446 Error *local_err = NULL;
2447 QObject *obj = NULL;
2448 QDict *qdict = NULL;
2449 const char *reference = NULL;
2450 Visitor *v = NULL;
2451
2452 if (ref->type == QTYPE_QSTRING) {
2453 reference = ref->u.reference;
2454 } else {
2455 BlockdevOptions *options = &ref->u.definition;
2456 assert(ref->type == QTYPE_QDICT);
2457
2458 v = qobject_output_visitor_new(&obj);
2459 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2460 if (local_err) {
2461 error_propagate(errp, local_err);
2462 goto fail;
2463 }
2464 visit_complete(v, &obj);
2465
7dc847eb 2466 qdict = qobject_to(QDict, obj);
e1d74bc6
KW
2467 qdict_flatten(qdict);
2468
2469 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2470 * compatibility with other callers) rather than what we want as the
2471 * real defaults. Apply the defaults here instead. */
2472 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2473 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2474 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2475 }
2476
2477 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2478 obj = NULL;
2479
2480fail:
cb3e7f08 2481 qobject_unref(obj);
e1d74bc6
KW
2482 visit_free(v);
2483 return bs;
2484}
2485
66836189
HR
2486static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2487 int flags,
2488 QDict *snapshot_options,
2489 Error **errp)
b998875d
KW
2490{
2491 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
1ba4b6a5 2492 char *tmp_filename = g_malloc0(PATH_MAX + 1);
b998875d 2493 int64_t total_size;
83d0521a 2494 QemuOpts *opts = NULL;
ff6ed714 2495 BlockDriverState *bs_snapshot = NULL;
b2c2832c 2496 Error *local_err = NULL;
b998875d
KW
2497 int ret;
2498
2499 /* if snapshot, we create a temporary backing file and open it
2500 instead of opening 'filename' directly */
2501
2502 /* Get the required size from the image */
f187743a
KW
2503 total_size = bdrv_getlength(bs);
2504 if (total_size < 0) {
2505 error_setg_errno(errp, -total_size, "Could not get image size");
1ba4b6a5 2506 goto out;
f187743a 2507 }
b998875d
KW
2508
2509 /* Create the temporary image */
1ba4b6a5 2510 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
b998875d
KW
2511 if (ret < 0) {
2512 error_setg_errno(errp, -ret, "Could not get temporary filename");
1ba4b6a5 2513 goto out;
b998875d
KW
2514 }
2515
ef810437 2516 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
c282e1fd 2517 &error_abort);
39101f25 2518 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
e43bfd9c 2519 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
83d0521a 2520 qemu_opts_del(opts);
b998875d 2521 if (ret < 0) {
e43bfd9c
MA
2522 error_prepend(errp, "Could not create temporary overlay '%s': ",
2523 tmp_filename);
1ba4b6a5 2524 goto out;
b998875d
KW
2525 }
2526
73176bee 2527 /* Prepare options QDict for the temporary file */
46f5ac20
EB
2528 qdict_put_str(snapshot_options, "file.driver", "file");
2529 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2530 qdict_put_str(snapshot_options, "driver", "qcow2");
b998875d 2531
5b363937 2532 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
73176bee 2533 snapshot_options = NULL;
5b363937 2534 if (!bs_snapshot) {
1ba4b6a5 2535 goto out;
b998875d
KW
2536 }
2537
ff6ed714
EB
2538 /* bdrv_append() consumes a strong reference to bs_snapshot
2539 * (i.e. it will call bdrv_unref() on it) even on error, so in
2540 * order to be able to return one, we have to increase
2541 * bs_snapshot's refcount here */
66836189 2542 bdrv_ref(bs_snapshot);
b2c2832c
KW
2543 bdrv_append(bs_snapshot, bs, &local_err);
2544 if (local_err) {
2545 error_propagate(errp, local_err);
ff6ed714 2546 bs_snapshot = NULL;
b2c2832c
KW
2547 goto out;
2548 }
1ba4b6a5
BC
2549
2550out:
cb3e7f08 2551 qobject_unref(snapshot_options);
1ba4b6a5 2552 g_free(tmp_filename);
ff6ed714 2553 return bs_snapshot;
b998875d
KW
2554}
2555
b6ce07aa
KW
2556/*
2557 * Opens a disk image (raw, qcow2, vmdk, ...)
de9c0cec
KW
2558 *
2559 * options is a QDict of options to pass to the block drivers, or NULL for an
2560 * empty set of options. The reference to the QDict belongs to the block layer
2561 * after the call (even on failure), so if the caller intends to reuse the
cb3e7f08 2562 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
f67503e5
HR
2563 *
2564 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2565 * If it is not NULL, the referenced BDS will be reused.
ddf5636d
HR
2566 *
2567 * The reference parameter may be used to specify an existing block device which
2568 * should be opened. If specified, neither options nor a filename may be given,
2569 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
b6ce07aa 2570 */
5b363937
HR
2571static BlockDriverState *bdrv_open_inherit(const char *filename,
2572 const char *reference,
2573 QDict *options, int flags,
2574 BlockDriverState *parent,
2575 const BdrvChildRole *child_role,
2576 Error **errp)
ea2384d3 2577{
b6ce07aa 2578 int ret;
5696c6e3 2579 BlockBackend *file = NULL;
9a4f4c31 2580 BlockDriverState *bs;
ce343771 2581 BlockDriver *drv = NULL;
2f624b80 2582 BdrvChild *child;
74fe54f2 2583 const char *drvname;
3e8c2e57 2584 const char *backing;
34b5d2c6 2585 Error *local_err = NULL;
73176bee 2586 QDict *snapshot_options = NULL;
b1e6fc08 2587 int snapshot_flags = 0;
712e7874 2588
f3930ed0
KW
2589 assert(!child_role || !flags);
2590 assert(!child_role == !parent);
f67503e5 2591
ddf5636d
HR
2592 if (reference) {
2593 bool options_non_empty = options ? qdict_size(options) : false;
cb3e7f08 2594 qobject_unref(options);
ddf5636d 2595
ddf5636d
HR
2596 if (filename || options_non_empty) {
2597 error_setg(errp, "Cannot reference an existing block device with "
2598 "additional options or a new filename");
5b363937 2599 return NULL;
ddf5636d
HR
2600 }
2601
2602 bs = bdrv_lookup_bs(reference, reference, errp);
2603 if (!bs) {
5b363937 2604 return NULL;
ddf5636d 2605 }
76b22320 2606
ddf5636d 2607 bdrv_ref(bs);
5b363937 2608 return bs;
ddf5636d
HR
2609 }
2610
5b363937 2611 bs = bdrv_new();
f67503e5 2612
de9c0cec
KW
2613 /* NULL means an empty set of options */
2614 if (options == NULL) {
2615 options = qdict_new();
2616 }
2617
145f598e 2618 /* json: syntax counts as explicit options, as if in the QDict */
de3b53f0
KW
2619 parse_json_protocol(options, &filename, &local_err);
2620 if (local_err) {
de3b53f0
KW
2621 goto fail;
2622 }
2623
145f598e
KW
2624 bs->explicit_options = qdict_clone_shallow(options);
2625
f3930ed0 2626 if (child_role) {
bddcec37 2627 bs->inherits_from = parent;
8e2160e2
KW
2628 child_role->inherit_options(&flags, options,
2629 parent->open_flags, parent->options);
f3930ed0
KW
2630 }
2631
de3b53f0 2632 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
462f5bcf
KW
2633 if (local_err) {
2634 goto fail;
2635 }
2636
129c7d1c
MA
2637 /*
2638 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2639 * Caution: getting a boolean member of @options requires care.
2640 * When @options come from -blockdev or blockdev_add, members are
2641 * typed according to the QAPI schema, but when they come from
2642 * -drive, they're all QString.
2643 */
f87a0e29
AG
2644 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2645 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2646 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2647 } else {
2648 flags &= ~BDRV_O_RDWR;
14499ea5
AG
2649 }
2650
2651 if (flags & BDRV_O_SNAPSHOT) {
2652 snapshot_options = qdict_new();
2653 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2654 flags, options);
f87a0e29
AG
2655 /* Let bdrv_backing_options() override "read-only" */
2656 qdict_del(options, BDRV_OPT_READ_ONLY);
14499ea5
AG
2657 bdrv_backing_options(&flags, options, flags, options);
2658 }
2659
62392ebb
KW
2660 bs->open_flags = flags;
2661 bs->options = options;
2662 options = qdict_clone_shallow(options);
2663
76c591b0 2664 /* Find the right image format driver */
129c7d1c 2665 /* See cautionary note on accessing @options above */
76c591b0
KW
2666 drvname = qdict_get_try_str(options, "driver");
2667 if (drvname) {
2668 drv = bdrv_find_format(drvname);
76c591b0
KW
2669 if (!drv) {
2670 error_setg(errp, "Unknown driver: '%s'", drvname);
76c591b0
KW
2671 goto fail;
2672 }
2673 }
2674
2675 assert(drvname || !(flags & BDRV_O_PROTOCOL));
76c591b0 2676
129c7d1c 2677 /* See cautionary note on accessing @options above */
3e8c2e57 2678 backing = qdict_get_try_str(options, "backing");
e59a0cf1
HR
2679 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2680 (backing && *backing == '\0'))
2681 {
4f7be280
HR
2682 if (backing) {
2683 warn_report("Use of \"backing\": \"\" is deprecated; "
2684 "use \"backing\": null instead");
2685 }
3e8c2e57
AG
2686 flags |= BDRV_O_NO_BACKING;
2687 qdict_del(options, "backing");
2688 }
2689
5696c6e3 2690 /* Open image file without format layer. This BlockBackend is only used for
4e4bf5c4
KW
2691 * probing, the block drivers will do their own bdrv_open_child() for the
2692 * same BDS, which is why we put the node name back into options. */
f4788adc 2693 if ((flags & BDRV_O_PROTOCOL) == 0) {
5696c6e3
KW
2694 BlockDriverState *file_bs;
2695
2696 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2697 &child_file, true, &local_err);
1fdd6933 2698 if (local_err) {
f4788adc
KW
2699 goto fail;
2700 }
5696c6e3 2701 if (file_bs != NULL) {
dacaa162
KW
2702 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2703 * looking at the header to guess the image format. This works even
2704 * in cases where a guest would not see a consistent state. */
2705 file = blk_new(0, BLK_PERM_ALL);
d7086422 2706 blk_insert_bs(file, file_bs, &local_err);
5696c6e3 2707 bdrv_unref(file_bs);
d7086422
KW
2708 if (local_err) {
2709 goto fail;
2710 }
5696c6e3 2711
46f5ac20 2712 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
4e4bf5c4 2713 }
f500a6d3
KW
2714 }
2715
76c591b0 2716 /* Image format probing */
38f3ef57 2717 bs->probed = !drv;
76c591b0 2718 if (!drv && file) {
cf2ab8fc 2719 ret = find_image_format(file, filename, &drv, &local_err);
17b005f1 2720 if (ret < 0) {
8bfea15d 2721 goto fail;
2a05cbe4 2722 }
62392ebb
KW
2723 /*
2724 * This option update would logically belong in bdrv_fill_options(),
2725 * but we first need to open bs->file for the probing to work, while
2726 * opening bs->file already requires the (mostly) final set of options
2727 * so that cache mode etc. can be inherited.
2728 *
2729 * Adding the driver later is somewhat ugly, but it's not an option
2730 * that would ever be inherited, so it's correct. We just need to make
2731 * sure to update both bs->options (which has the full effective
2732 * options for bs) and options (which has file.* already removed).
2733 */
46f5ac20
EB
2734 qdict_put_str(bs->options, "driver", drv->format_name);
2735 qdict_put_str(options, "driver", drv->format_name);
76c591b0 2736 } else if (!drv) {
17b005f1 2737 error_setg(errp, "Must specify either driver or file");
8bfea15d 2738 goto fail;
ea2384d3 2739 }
b6ce07aa 2740
53a29513
HR
2741 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2742 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2743 /* file must be NULL if a protocol BDS is about to be created
2744 * (the inverse results in an error message from bdrv_open_common()) */
2745 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2746
b6ce07aa 2747 /* Open the image */
82dc8b41 2748 ret = bdrv_open_common(bs, file, options, &local_err);
b6ce07aa 2749 if (ret < 0) {
8bfea15d 2750 goto fail;
6987307c
CH
2751 }
2752
4e4bf5c4 2753 if (file) {
5696c6e3 2754 blk_unref(file);
f500a6d3
KW
2755 file = NULL;
2756 }
2757
b6ce07aa 2758 /* If there is a backing file, use it */
9156df12 2759 if ((flags & BDRV_O_NO_BACKING) == 0) {
d9b7b057 2760 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
b6ce07aa 2761 if (ret < 0) {
b6ad491a 2762 goto close_and_fail;
b6ce07aa 2763 }
b6ce07aa
KW
2764 }
2765
2f624b80
AG
2766 /* Remove all children options from bs->options and bs->explicit_options */
2767 QLIST_FOREACH(child, &bs->children, next) {
2768 char *child_key_dot;
2769 child_key_dot = g_strdup_printf("%s.", child->name);
2770 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
2771 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
2772 g_free(child_key_dot);
2773 }
2774
91af7014
HR
2775 bdrv_refresh_filename(bs);
2776
b6ad491a 2777 /* Check if any unknown options were used */
7ad2757f 2778 if (qdict_size(options) != 0) {
b6ad491a 2779 const QDictEntry *entry = qdict_first(options);
5acd9d81
HR
2780 if (flags & BDRV_O_PROTOCOL) {
2781 error_setg(errp, "Block protocol '%s' doesn't support the option "
2782 "'%s'", drv->format_name, entry->key);
2783 } else {
d0e46a55
HR
2784 error_setg(errp,
2785 "Block format '%s' does not support the option '%s'",
2786 drv->format_name, entry->key);
5acd9d81 2787 }
b6ad491a 2788
b6ad491a
KW
2789 goto close_and_fail;
2790 }
b6ad491a 2791
c01c214b 2792 bdrv_parent_cb_change_media(bs, true);
b6ce07aa 2793
cb3e7f08 2794 qobject_unref(options);
8961be33 2795 options = NULL;
dd62f1ca
KW
2796
2797 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2798 * temporary snapshot afterwards. */
2799 if (snapshot_flags) {
66836189
HR
2800 BlockDriverState *snapshot_bs;
2801 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2802 snapshot_options, &local_err);
73176bee 2803 snapshot_options = NULL;
dd62f1ca
KW
2804 if (local_err) {
2805 goto close_and_fail;
2806 }
5b363937
HR
2807 /* We are not going to return bs but the overlay on top of it
2808 * (snapshot_bs); thus, we have to drop the strong reference to bs
2809 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2810 * though, because the overlay still has a reference to it. */
2811 bdrv_unref(bs);
2812 bs = snapshot_bs;
dd62f1ca
KW
2813 }
2814
5b363937 2815 return bs;
b6ce07aa 2816
8bfea15d 2817fail:
5696c6e3 2818 blk_unref(file);
cb3e7f08
MAL
2819 qobject_unref(snapshot_options);
2820 qobject_unref(bs->explicit_options);
2821 qobject_unref(bs->options);
2822 qobject_unref(options);
de9c0cec 2823 bs->options = NULL;
998cbd6a 2824 bs->explicit_options = NULL;
5b363937 2825 bdrv_unref(bs);
621ff94d 2826 error_propagate(errp, local_err);
5b363937 2827 return NULL;
de9c0cec 2828
b6ad491a 2829close_and_fail:
5b363937 2830 bdrv_unref(bs);
cb3e7f08
MAL
2831 qobject_unref(snapshot_options);
2832 qobject_unref(options);
621ff94d 2833 error_propagate(errp, local_err);
5b363937 2834 return NULL;
b6ce07aa
KW
2835}
2836
5b363937
HR
2837BlockDriverState *bdrv_open(const char *filename, const char *reference,
2838 QDict *options, int flags, Error **errp)
f3930ed0 2839{
5b363937 2840 return bdrv_open_inherit(filename, reference, options, flags, NULL,
ce343771 2841 NULL, errp);
f3930ed0
KW
2842}
2843
e971aa12
JC
2844/*
2845 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2846 * reopen of multiple devices.
2847 *
2848 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2849 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2850 * be created and initialized. This newly created BlockReopenQueue should be
2851 * passed back in for subsequent calls that are intended to be of the same
2852 * atomic 'set'.
2853 *
2854 * bs is the BlockDriverState to add to the reopen queue.
2855 *
4d2cb092
KW
2856 * options contains the changed options for the associated bs
2857 * (the BlockReopenQueue takes ownership)
2858 *
e971aa12
JC
2859 * flags contains the open flags for the associated bs
2860 *
2861 * returns a pointer to bs_queue, which is either the newly allocated
2862 * bs_queue, or the existing bs_queue being used.
2863 *
1a63a907 2864 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
e971aa12 2865 */
28518102
KW
2866static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2867 BlockDriverState *bs,
2868 QDict *options,
2869 int flags,
2870 const BdrvChildRole *role,
2871 QDict *parent_options,
2872 int parent_flags)
e971aa12
JC
2873{
2874 assert(bs != NULL);
2875
2876 BlockReopenQueueEntry *bs_entry;
67251a31 2877 BdrvChild *child;
145f598e 2878 QDict *old_options, *explicit_options;
67251a31 2879
1a63a907
KW
2880 /* Make sure that the caller remembered to use a drained section. This is
2881 * important to avoid graph changes between the recursive queuing here and
2882 * bdrv_reopen_multiple(). */
2883 assert(bs->quiesce_counter > 0);
2884
e971aa12
JC
2885 if (bs_queue == NULL) {
2886 bs_queue = g_new0(BlockReopenQueue, 1);
2887 QSIMPLEQ_INIT(bs_queue);
2888 }
2889
4d2cb092
KW
2890 if (!options) {
2891 options = qdict_new();
2892 }
2893
5b7ba05f
AG
2894 /* Check if this BlockDriverState is already in the queue */
2895 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2896 if (bs == bs_entry->state.bs) {
2897 break;
2898 }
2899 }
2900
28518102
KW
2901 /*
2902 * Precedence of options:
2903 * 1. Explicitly passed in options (highest)
91a097e7 2904 * 2. Set in flags (only for top level)
145f598e 2905 * 3. Retained from explicitly set options of bs
8e2160e2 2906 * 4. Inherited from parent node
28518102
KW
2907 * 5. Retained from effective options of bs
2908 */
2909
91a097e7
KW
2910 if (!parent_options) {
2911 /*
2912 * Any setting represented by flags is always updated. If the
2913 * corresponding QDict option is set, it takes precedence. Otherwise
2914 * the flag is translated into a QDict option. The old setting of bs is
2915 * not considered.
2916 */
2917 update_options_from_flags(options, flags);
2918 }
2919
145f598e 2920 /* Old explicitly set values (don't overwrite by inherited value) */
5b7ba05f
AG
2921 if (bs_entry) {
2922 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2923 } else {
2924 old_options = qdict_clone_shallow(bs->explicit_options);
2925 }
145f598e 2926 bdrv_join_options(bs, options, old_options);
cb3e7f08 2927 qobject_unref(old_options);
145f598e
KW
2928
2929 explicit_options = qdict_clone_shallow(options);
2930
28518102
KW
2931 /* Inherit from parent node */
2932 if (parent_options) {
1a529736
FZ
2933 QemuOpts *opts;
2934 QDict *options_copy;
28518102 2935 assert(!flags);
8e2160e2 2936 role->inherit_options(&flags, options, parent_flags, parent_options);
1a529736
FZ
2937 options_copy = qdict_clone_shallow(options);
2938 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2939 qemu_opts_absorb_qdict(opts, options_copy, NULL);
2940 update_flags_from_options(&flags, opts);
2941 qemu_opts_del(opts);
cb3e7f08 2942 qobject_unref(options_copy);
28518102
KW
2943 }
2944
2945 /* Old values are used for options that aren't set yet */
4d2cb092 2946 old_options = qdict_clone_shallow(bs->options);
cddff5ba 2947 bdrv_join_options(bs, options, old_options);
cb3e7f08 2948 qobject_unref(old_options);
4d2cb092 2949
fd452021 2950 /* bdrv_open_inherit() sets and clears some additional flags internally */
f1f25a2e 2951 flags &= ~BDRV_O_PROTOCOL;
fd452021
KW
2952 if (flags & BDRV_O_RDWR) {
2953 flags |= BDRV_O_ALLOW_RDWR;
2954 }
f1f25a2e 2955
1857c97b
KW
2956 if (!bs_entry) {
2957 bs_entry = g_new0(BlockReopenQueueEntry, 1);
2958 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2959 } else {
cb3e7f08
MAL
2960 qobject_unref(bs_entry->state.options);
2961 qobject_unref(bs_entry->state.explicit_options);
1857c97b
KW
2962 }
2963
2964 bs_entry->state.bs = bs;
2965 bs_entry->state.options = options;
2966 bs_entry->state.explicit_options = explicit_options;
2967 bs_entry->state.flags = flags;
2968
30450259
KW
2969 /* This needs to be overwritten in bdrv_reopen_prepare() */
2970 bs_entry->state.perm = UINT64_MAX;
2971 bs_entry->state.shared_perm = 0;
2972
67251a31 2973 QLIST_FOREACH(child, &bs->children, next) {
4c9dfe5d
KW
2974 QDict *new_child_options;
2975 char *child_key_dot;
67251a31 2976
4c9dfe5d
KW
2977 /* reopen can only change the options of block devices that were
2978 * implicitly created and inherited options. For other (referenced)
2979 * block devices, a syntax like "backing.foo" results in an error. */
67251a31
KW
2980 if (child->bs->inherits_from != bs) {
2981 continue;
2982 }
2983
4c9dfe5d 2984 child_key_dot = g_strdup_printf("%s.", child->name);
2f624b80 2985 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4c9dfe5d
KW
2986 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2987 g_free(child_key_dot);
2988
28518102
KW
2989 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2990 child->role, options, flags);
e971aa12
JC
2991 }
2992
e971aa12
JC
2993 return bs_queue;
2994}
2995
28518102
KW
2996BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
2997 BlockDriverState *bs,
2998 QDict *options, int flags)
2999{
3000 return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
3001 NULL, NULL, 0);
3002}
3003
e971aa12
JC
3004/*
3005 * Reopen multiple BlockDriverStates atomically & transactionally.
3006 *
3007 * The queue passed in (bs_queue) must have been built up previous
3008 * via bdrv_reopen_queue().
3009 *
3010 * Reopens all BDS specified in the queue, with the appropriate
3011 * flags. All devices are prepared for reopen, and failure of any
50d6a8a3 3012 * device will cause all device changes to be abandoned, and intermediate
e971aa12
JC
3013 * data cleaned up.
3014 *
3015 * If all devices prepare successfully, then the changes are committed
3016 * to all devices.
3017 *
1a63a907
KW
3018 * All affected nodes must be drained between bdrv_reopen_queue() and
3019 * bdrv_reopen_multiple().
e971aa12 3020 */
720150f3 3021int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
e971aa12
JC
3022{
3023 int ret = -1;
3024 BlockReopenQueueEntry *bs_entry, *next;
3025 Error *local_err = NULL;
3026
3027 assert(bs_queue != NULL);
3028
e971aa12 3029 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1a63a907 3030 assert(bs_entry->state.bs->quiesce_counter > 0);
e971aa12
JC
3031 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3032 error_propagate(errp, local_err);
3033 goto cleanup;
3034 }
3035 bs_entry->prepared = true;
3036 }
3037
3038 /* If we reach this point, we have success and just need to apply the
3039 * changes
3040 */
3041 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3042 bdrv_reopen_commit(&bs_entry->state);
3043 }
3044
3045 ret = 0;
3046
3047cleanup:
3048 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1bab38e7
AG
3049 if (ret) {
3050 if (bs_entry->prepared) {
3051 bdrv_reopen_abort(&bs_entry->state);
3052 }
cb3e7f08 3053 qobject_unref(bs_entry->state.explicit_options);
4c8350fe 3054 qobject_unref(bs_entry->state.options);
e971aa12
JC
3055 }
3056 g_free(bs_entry);
3057 }
3058 g_free(bs_queue);
40840e41 3059
e971aa12
JC
3060 return ret;
3061}
3062
3063
3064/* Reopen a single BlockDriverState with the specified flags. */
3065int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3066{
3067 int ret = -1;
3068 Error *local_err = NULL;
1a63a907 3069 BlockReopenQueue *queue;
e971aa12 3070
1a63a907
KW
3071 bdrv_subtree_drained_begin(bs);
3072
3073 queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
720150f3 3074 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
e971aa12
JC
3075 if (local_err != NULL) {
3076 error_propagate(errp, local_err);
3077 }
1a63a907
KW
3078
3079 bdrv_subtree_drained_end(bs);
3080
e971aa12
JC
3081 return ret;
3082}
3083
30450259
KW
3084static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3085 BdrvChild *c)
3086{
3087 BlockReopenQueueEntry *entry;
3088
3089 QSIMPLEQ_FOREACH(entry, q, entry) {
3090 BlockDriverState *bs = entry->state.bs;
3091 BdrvChild *child;
3092
3093 QLIST_FOREACH(child, &bs->children, next) {
3094 if (child == c) {
3095 return entry;
3096 }
3097 }
3098 }
3099
3100 return NULL;
3101}
3102
3103static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3104 uint64_t *perm, uint64_t *shared)
3105{
3106 BdrvChild *c;
3107 BlockReopenQueueEntry *parent;
3108 uint64_t cumulative_perms = 0;
3109 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3110
3111 QLIST_FOREACH(c, &bs->parents, next_parent) {
3112 parent = find_parent_in_reopen_queue(q, c);
3113 if (!parent) {
3114 cumulative_perms |= c->perm;
3115 cumulative_shared_perms &= c->shared_perm;
3116 } else {
3117 uint64_t nperm, nshared;
3118
3119 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3120 parent->state.perm, parent->state.shared_perm,
3121 &nperm, &nshared);
3122
3123 cumulative_perms |= nperm;
3124 cumulative_shared_perms &= nshared;
3125 }
3126 }
3127 *perm = cumulative_perms;
3128 *shared = cumulative_shared_perms;
3129}
e971aa12
JC
3130
3131/*
3132 * Prepares a BlockDriverState for reopen. All changes are staged in the
3133 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3134 * the block driver layer .bdrv_reopen_prepare()
3135 *
3136 * bs is the BlockDriverState to reopen
3137 * flags are the new open flags
3138 * queue is the reopen queue
3139 *
3140 * Returns 0 on success, non-zero on error. On error errp will be set
3141 * as well.
3142 *
3143 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3144 * It is the responsibility of the caller to then call the abort() or
3145 * commit() for any other BDS that have been left in a prepare() state
3146 *
3147 */
3148int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3149 Error **errp)
3150{
3151 int ret = -1;
3152 Error *local_err = NULL;
3153 BlockDriver *drv;
ccf9dc07 3154 QemuOpts *opts;
4c8350fe 3155 QDict *orig_reopen_opts;
ccf9dc07 3156 const char *value;
3d8ce171 3157 bool read_only;
e971aa12
JC
3158
3159 assert(reopen_state != NULL);
3160 assert(reopen_state->bs->drv != NULL);
3161 drv = reopen_state->bs->drv;
3162
4c8350fe
AG
3163 /* This function and each driver's bdrv_reopen_prepare() remove
3164 * entries from reopen_state->options as they are processed, so
3165 * we need to make a copy of the original QDict. */
3166 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
3167
ccf9dc07
KW
3168 /* Process generic block layer options */
3169 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3170 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3171 if (local_err) {
3172 error_propagate(errp, local_err);
3173 ret = -EINVAL;
3174 goto error;
3175 }
3176
91a097e7
KW
3177 update_flags_from_options(&reopen_state->flags, opts);
3178
ccf9dc07
KW
3179 /* node-name and driver must be unchanged. Put them back into the QDict, so
3180 * that they are checked at the end of this function. */
3181 value = qemu_opt_get(opts, "node-name");
3182 if (value) {
46f5ac20 3183 qdict_put_str(reopen_state->options, "node-name", value);
ccf9dc07
KW
3184 }
3185
3186 value = qemu_opt_get(opts, "driver");
3187 if (value) {
46f5ac20 3188 qdict_put_str(reopen_state->options, "driver", value);
ccf9dc07
KW
3189 }
3190
3d8ce171
JC
3191 /* If we are to stay read-only, do not allow permission change
3192 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3193 * not set, or if the BDS still has copy_on_read enabled */
3194 read_only = !(reopen_state->flags & BDRV_O_RDWR);
54a32bfe 3195 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3d8ce171
JC
3196 if (local_err) {
3197 error_propagate(errp, local_err);
e971aa12
JC
3198 goto error;
3199 }
3200
30450259
KW
3201 /* Calculate required permissions after reopening */
3202 bdrv_reopen_perm(queue, reopen_state->bs,
3203 &reopen_state->perm, &reopen_state->shared_perm);
e971aa12
JC
3204
3205 ret = bdrv_flush(reopen_state->bs);
3206 if (ret) {
455b0fde 3207 error_setg_errno(errp, -ret, "Error flushing drive");
e971aa12
JC
3208 goto error;
3209 }
3210
3211 if (drv->bdrv_reopen_prepare) {
3212 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3213 if (ret) {
3214 if (local_err != NULL) {
3215 error_propagate(errp, local_err);
3216 } else {
d8b6895f
LC
3217 error_setg(errp, "failed while preparing to reopen image '%s'",
3218 reopen_state->bs->filename);
e971aa12
JC
3219 }
3220 goto error;
3221 }
3222 } else {
3223 /* It is currently mandatory to have a bdrv_reopen_prepare()
3224 * handler for each supported drv. */
81e5f78a
AG
3225 error_setg(errp, "Block format '%s' used by node '%s' "
3226 "does not support reopening files", drv->format_name,
3227 bdrv_get_device_or_node_name(reopen_state->bs));
e971aa12
JC
3228 ret = -1;
3229 goto error;
3230 }
3231
4d2cb092
KW
3232 /* Options that are not handled are only okay if they are unchanged
3233 * compared to the old state. It is expected that some options are only
3234 * used for the initial open, but not reopen (e.g. filename) */
3235 if (qdict_size(reopen_state->options)) {
3236 const QDictEntry *entry = qdict_first(reopen_state->options);
3237
3238 do {
54fd1b0d
HR
3239 QObject *new = entry->value;
3240 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3241
129c7d1c 3242 /*
54fd1b0d
HR
3243 * TODO: When using -drive to specify blockdev options, all values
3244 * will be strings; however, when using -blockdev, blockdev-add or
3245 * filenames using the json:{} pseudo-protocol, they will be
3246 * correctly typed.
3247 * In contrast, reopening options are (currently) always strings
3248 * (because you can only specify them through qemu-io; all other
3249 * callers do not specify any options).
3250 * Therefore, when using anything other than -drive to create a BDS,
3251 * this cannot detect non-string options as unchanged, because
3252 * qobject_is_equal() always returns false for objects of different
3253 * type. In the future, this should be remedied by correctly typing
3254 * all options. For now, this is not too big of an issue because
3255 * the user can simply omit options which cannot be changed anyway,
3256 * so they will stay unchanged.
129c7d1c 3257 */
54fd1b0d 3258 if (!qobject_is_equal(new, old)) {
4d2cb092
KW
3259 error_setg(errp, "Cannot change the option '%s'", entry->key);
3260 ret = -EINVAL;
3261 goto error;
3262 }
3263 } while ((entry = qdict_next(reopen_state->options, entry)));
3264 }
3265
30450259
KW
3266 ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3267 reopen_state->shared_perm, NULL, errp);
3268 if (ret < 0) {
3269 goto error;
3270 }
3271
e971aa12
JC
3272 ret = 0;
3273
4c8350fe
AG
3274 /* Restore the original reopen_state->options QDict */
3275 qobject_unref(reopen_state->options);
3276 reopen_state->options = qobject_ref(orig_reopen_opts);
3277
e971aa12 3278error:
ccf9dc07 3279 qemu_opts_del(opts);
4c8350fe 3280 qobject_unref(orig_reopen_opts);
e971aa12
JC
3281 return ret;
3282}
3283
3284/*
3285 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3286 * makes them final by swapping the staging BlockDriverState contents into
3287 * the active BlockDriverState contents.
3288 */
3289void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3290{
3291 BlockDriver *drv;
50bf65ba 3292 BlockDriverState *bs;
cb9ff6c2 3293 bool old_can_write, new_can_write;
e971aa12
JC
3294
3295 assert(reopen_state != NULL);
50bf65ba
VSO
3296 bs = reopen_state->bs;
3297 drv = bs->drv;
e971aa12
JC
3298 assert(drv != NULL);
3299
cb9ff6c2
VSO
3300 old_can_write =
3301 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3302
e971aa12
JC
3303 /* If there are any driver level actions to take */
3304 if (drv->bdrv_reopen_commit) {
3305 drv->bdrv_reopen_commit(reopen_state);
3306 }
3307
3308 /* set BDS specific flags now */
cb3e7f08 3309 qobject_unref(bs->explicit_options);
4c8350fe 3310 qobject_unref(bs->options);
145f598e 3311
50bf65ba 3312 bs->explicit_options = reopen_state->explicit_options;
4c8350fe 3313 bs->options = reopen_state->options;
50bf65ba
VSO
3314 bs->open_flags = reopen_state->flags;
3315 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
355ef4ac 3316
50bf65ba 3317 bdrv_refresh_limits(bs, NULL);
cb9ff6c2 3318
30450259
KW
3319 bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3320 reopen_state->shared_perm);
3321
cb9ff6c2
VSO
3322 new_can_write =
3323 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3324 if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3325 Error *local_err = NULL;
3326 if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3327 /* This is not fatal, bitmaps just left read-only, so all following
3328 * writes will fail. User can remove read-only bitmaps to unblock
3329 * writes.
3330 */
3331 error_reportf_err(local_err,
3332 "%s: Failed to make dirty bitmaps writable: ",
3333 bdrv_get_node_name(bs));
3334 }
3335 }
e971aa12
JC
3336}
3337
3338/*
3339 * Abort the reopen, and delete and free the staged changes in
3340 * reopen_state
3341 */
3342void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3343{
3344 BlockDriver *drv;
3345
3346 assert(reopen_state != NULL);
3347 drv = reopen_state->bs->drv;
3348 assert(drv != NULL);
3349
3350 if (drv->bdrv_reopen_abort) {
3351 drv->bdrv_reopen_abort(reopen_state);
3352 }
145f598e 3353
30450259 3354 bdrv_abort_perm_update(reopen_state->bs);
e971aa12
JC
3355}
3356
3357
64dff520 3358static void bdrv_close(BlockDriverState *bs)
fc01f7e7 3359{
33384421 3360 BdrvAioNotifier *ban, *ban_next;
50a3efb0 3361 BdrvChild *child, *next;
33384421 3362
ca9bd24c 3363 assert(!bs->job);
30f55fb8 3364 assert(!bs->refcnt);
99b7e775 3365
fc27291d 3366 bdrv_drained_begin(bs); /* complete I/O */
58fda173 3367 bdrv_flush(bs);
53ec73e2 3368 bdrv_drain(bs); /* in case flush left pending I/O */
fc27291d 3369
3cbc002c 3370 if (bs->drv) {
3c005293
VSO
3371 if (bs->drv->bdrv_close) {
3372 bs->drv->bdrv_close(bs);
3373 }
9a4f4c31 3374 bs->drv = NULL;
50a3efb0 3375 }
9a7dedbc 3376
50a3efb0 3377 bdrv_set_backing_hd(bs, NULL, &error_abort);
9a7dedbc 3378
50a3efb0
AG
3379 if (bs->file != NULL) {
3380 bdrv_unref_child(bs, bs->file);
3381 bs->file = NULL;
3382 }
9a4f4c31 3383
50a3efb0
AG
3384 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3385 /* TODO Remove bdrv_unref() from drivers' close function and use
3386 * bdrv_unref_child() here */
3387 if (child->bs->inherits_from == bs) {
3388 child->bs->inherits_from = NULL;
6e93e7c4 3389 }
50a3efb0 3390 bdrv_detach_child(child);
b338082b 3391 }
98f90dba 3392
50a3efb0
AG
3393 g_free(bs->opaque);
3394 bs->opaque = NULL;
3395 atomic_set(&bs->copy_on_read, 0);
3396 bs->backing_file[0] = '\0';
3397 bs->backing_format[0] = '\0';
3398 bs->total_sectors = 0;
3399 bs->encrypted = false;
3400 bs->sg = false;
cb3e7f08
MAL
3401 qobject_unref(bs->options);
3402 qobject_unref(bs->explicit_options);
50a3efb0
AG
3403 bs->options = NULL;
3404 bs->explicit_options = NULL;
cb3e7f08 3405 qobject_unref(bs->full_open_options);
50a3efb0
AG
3406 bs->full_open_options = NULL;
3407
cca43ae1
VSO
3408 bdrv_release_named_dirty_bitmaps(bs);
3409 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3410
33384421
HR
3411 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3412 g_free(ban);
3413 }
3414 QLIST_INIT(&bs->aio_notifiers);
fc27291d 3415 bdrv_drained_end(bs);
b338082b
FB
3416}
3417
2bc93fed
MK
3418void bdrv_close_all(void)
3419{
b3b5299d 3420 assert(job_next(NULL) == NULL);
cd7fca95 3421 nbd_export_close_all();
ca9bd24c
HR
3422
3423 /* Drop references from requests still in flight, such as canceled block
3424 * jobs whose AIO context has not been polled yet */
3425 bdrv_drain_all();
2bc93fed 3426
ca9bd24c
HR
3427 blk_remove_all_bs();
3428 blockdev_close_all_bdrv_states();
ed78cda3 3429
a1a2af07 3430 assert(QTAILQ_EMPTY(&all_bdrv_states));
2bc93fed
MK
3431}
3432
d0ac0380
KW
3433static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3434{
3435 BdrvChild *to_c;
3436
3437 if (c->role->stay_at_node) {
3438 return false;
3439 }
3440
ec9f10fe
HR
3441 /* If the child @c belongs to the BDS @to, replacing the current
3442 * c->bs by @to would mean to create a loop.
3443 *
3444 * Such a case occurs when appending a BDS to a backing chain.
3445 * For instance, imagine the following chain:
3446 *
3447 * guest device -> node A -> further backing chain...
3448 *
3449 * Now we create a new BDS B which we want to put on top of this
3450 * chain, so we first attach A as its backing node:
3451 *
3452 * node B
3453 * |
3454 * v
3455 * guest device -> node A -> further backing chain...
3456 *
3457 * Finally we want to replace A by B. When doing that, we want to
3458 * replace all pointers to A by pointers to B -- except for the
3459 * pointer from B because (1) that would create a loop, and (2)
3460 * that pointer should simply stay intact:
3461 *
3462 * guest device -> node B
3463 * |
3464 * v
3465 * node A -> further backing chain...
3466 *
3467 * In general, when replacing a node A (c->bs) by a node B (@to),
3468 * if A is a child of B, that means we cannot replace A by B there
3469 * because that would create a loop. Silently detaching A from B
3470 * is also not really an option. So overall just leaving A in
3471 * place there is the most sensible choice. */
3472 QLIST_FOREACH(to_c, &to->children, next) {
3473 if (to_c == c) {
d0ac0380
KW
3474 return false;
3475 }
3476 }
3477
3478 return true;
3479}
3480
5fe31c25
KW
3481void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3482 Error **errp)
dd62f1ca 3483{
d0ac0380 3484 BdrvChild *c, *next;
234ac1a9
KW
3485 GSList *list = NULL, *p;
3486 uint64_t old_perm, old_shared;
3487 uint64_t perm = 0, shared = BLK_PERM_ALL;
3488 int ret;
3489
5fe31c25
KW
3490 assert(!atomic_read(&from->in_flight));
3491 assert(!atomic_read(&to->in_flight));
dd62f1ca 3492
234ac1a9
KW
3493 /* Make sure that @from doesn't go away until we have successfully attached
3494 * all of its parents to @to. */
3495 bdrv_ref(from);
dd62f1ca 3496
234ac1a9 3497 /* Put all parents into @list and calculate their cumulative permissions */
dd62f1ca 3498 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
ec9f10fe 3499 assert(c->bs == from);
d0ac0380 3500 if (!should_update_child(c, to)) {
26de9438
KW
3501 continue;
3502 }
234ac1a9
KW
3503 list = g_slist_prepend(list, c);
3504 perm |= c->perm;
3505 shared &= c->shared_perm;
3506 }
3507
3508 /* Check whether the required permissions can be granted on @to, ignoring
3509 * all BdrvChild in @list so that they can't block themselves. */
3121fb45 3510 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
234ac1a9
KW
3511 if (ret < 0) {
3512 bdrv_abort_perm_update(to);
3513 goto out;
3514 }
3515
3516 /* Now actually perform the change. We performed the permission check for
3517 * all elements of @list at once, so set the permissions all at once at the
3518 * very end. */
3519 for (p = list; p != NULL; p = p->next) {
3520 c = p->data;
9bd910e2 3521
dd62f1ca 3522 bdrv_ref(to);
234ac1a9 3523 bdrv_replace_child_noperm(c, to);
dd62f1ca
KW
3524 bdrv_unref(from);
3525 }
234ac1a9
KW
3526
3527 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3528 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3529
3530out:
3531 g_slist_free(list);
3532 bdrv_unref(from);
dd62f1ca
KW
3533}
3534
4ddc07ca
PB
3535/*
3536 * Add new bs contents at the top of an image chain while the chain is
3537 * live, while keeping required fields on the top layer.
3538 *
3539 * This will modify the BlockDriverState fields, and swap contents
3540 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3541 *
bfb197e0 3542 * bs_new must not be attached to a BlockBackend.
4ddc07ca
PB
3543 *
3544 * This function does not create any image files.
dd62f1ca
KW
3545 *
3546 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3547 * that's what the callers commonly need. bs_new will be referenced by the old
3548 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3549 * reference of its own, it must call bdrv_ref().
4ddc07ca 3550 */
b2c2832c
KW
3551void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3552 Error **errp)
4ddc07ca 3553{
b2c2832c
KW
3554 Error *local_err = NULL;
3555
b2c2832c
KW
3556 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3557 if (local_err) {
3558 error_propagate(errp, local_err);
3559 goto out;
3560 }
dd62f1ca 3561
5fe31c25 3562 bdrv_replace_node(bs_top, bs_new, &local_err);
234ac1a9
KW
3563 if (local_err) {
3564 error_propagate(errp, local_err);
3565 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3566 goto out;
3567 }
4ddc07ca 3568
dd62f1ca
KW
3569 /* bs_new is now referenced by its new parents, we don't need the
3570 * additional reference any more. */
b2c2832c 3571out:
dd62f1ca 3572 bdrv_unref(bs_new);
8802d1fd
JC
3573}
3574
4f6fd349 3575static void bdrv_delete(BlockDriverState *bs)
b338082b 3576{
3e914655 3577 assert(!bs->job);
3718d8ab 3578 assert(bdrv_op_blocker_is_empty(bs));
4f6fd349 3579 assert(!bs->refcnt);
18846dee 3580
e1b5c52e
SH
3581 bdrv_close(bs);
3582
1b7bdbc1 3583 /* remove from list, if necessary */
63eaaae0
KW
3584 if (bs->node_name[0] != '\0') {
3585 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3586 }
2c1d04e0
HR
3587 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3588
7267c094 3589 g_free(bs);
fc01f7e7
FB
3590}
3591
e97fc193
AL
3592/*
3593 * Run consistency checks on an image
3594 *
e076f338 3595 * Returns 0 if the check could be completed (it doesn't mean that the image is
a1c7273b 3596 * free of errors) or -errno when an internal error occurred. The results of the
e076f338 3597 * check are stored in res.
e97fc193 3598 */
2fd61638
PB
3599static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3600 BdrvCheckResult *res, BdrvCheckMode fix)
e97fc193 3601{
908bcd54
HR
3602 if (bs->drv == NULL) {
3603 return -ENOMEDIUM;
3604 }
2fd61638 3605 if (bs->drv->bdrv_co_check == NULL) {
e97fc193
AL
3606 return -ENOTSUP;
3607 }
3608
e076f338 3609 memset(res, 0, sizeof(*res));
2fd61638
PB
3610 return bs->drv->bdrv_co_check(bs, res, fix);
3611}
3612
3613typedef struct CheckCo {
3614 BlockDriverState *bs;
3615 BdrvCheckResult *res;
3616 BdrvCheckMode fix;
3617 int ret;
3618} CheckCo;
3619
3620static void bdrv_check_co_entry(void *opaque)
3621{
3622 CheckCo *cco = opaque;
3623 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3624}
3625
3626int bdrv_check(BlockDriverState *bs,
3627 BdrvCheckResult *res, BdrvCheckMode fix)
3628{
3629 Coroutine *co;
3630 CheckCo cco = {
3631 .bs = bs,
3632 .res = res,
3633 .ret = -EINPROGRESS,
3634 .fix = fix,
3635 };
3636
3637 if (qemu_in_coroutine()) {
3638 /* Fast-path if already in coroutine context */
3639 bdrv_check_co_entry(&cco);
3640 } else {
3641 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3642 qemu_coroutine_enter(co);
3643 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3644 }
3645
3646 return cco.ret;
e97fc193
AL
3647}
3648
756e6736
KW
3649/*
3650 * Return values:
3651 * 0 - success
3652 * -EINVAL - backing format specified, but no file
3653 * -ENOSPC - can't update the backing file because no space is left in the
3654 * image file header
3655 * -ENOTSUP - format driver doesn't support changing the backing file
3656 */
3657int bdrv_change_backing_file(BlockDriverState *bs,
3658 const char *backing_file, const char *backing_fmt)
3659{
3660 BlockDriver *drv = bs->drv;
469ef350 3661 int ret;
756e6736 3662
d470ad42
HR
3663 if (!drv) {
3664 return -ENOMEDIUM;
3665 }
3666
5f377794
PB
3667 /* Backing file format doesn't make sense without a backing file */
3668 if (backing_fmt && !backing_file) {
3669 return -EINVAL;
3670 }
3671
756e6736 3672 if (drv->bdrv_change_backing_file != NULL) {
469ef350 3673 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
756e6736 3674 } else {
469ef350 3675 ret = -ENOTSUP;
756e6736 3676 }
469ef350
PB
3677
3678 if (ret == 0) {
3679 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3680 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3681 }
3682 return ret;
756e6736
KW
3683}
3684
6ebdcee2
JC
3685/*
3686 * Finds the image layer in the chain that has 'bs' as its backing file.
3687 *
3688 * active is the current topmost image.
3689 *
3690 * Returns NULL if bs is not found in active's image chain,
3691 * or if active == bs.
4caf0fcd
JC
3692 *
3693 * Returns the bottommost base image if bs == NULL.
6ebdcee2
JC
3694 */
3695BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3696 BlockDriverState *bs)
3697{
760e0063
KW
3698 while (active && bs != backing_bs(active)) {
3699 active = backing_bs(active);
6ebdcee2
JC
3700 }
3701
4caf0fcd
JC
3702 return active;
3703}
6ebdcee2 3704
4caf0fcd
JC
3705/* Given a BDS, searches for the base layer. */
3706BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3707{
3708 return bdrv_find_overlay(bs, NULL);
6ebdcee2
JC
3709}
3710
6ebdcee2
JC
3711/*
3712 * Drops images above 'base' up to and including 'top', and sets the image
3713 * above 'top' to have base as its backing file.
3714 *
3715 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3716 * information in 'bs' can be properly updated.
3717 *
3718 * E.g., this will convert the following chain:
3719 * bottom <- base <- intermediate <- top <- active
3720 *
3721 * to
3722 *
3723 * bottom <- base <- active
3724 *
3725 * It is allowed for bottom==base, in which case it converts:
3726 *
3727 * base <- intermediate <- top <- active
3728 *
3729 * to
3730 *
3731 * base <- active
3732 *
54e26900
JC
3733 * If backing_file_str is non-NULL, it will be used when modifying top's
3734 * overlay image metadata.
3735 *
6ebdcee2
JC
3736 * Error conditions:
3737 * if active == top, that is considered an error
3738 *
3739 */
bde70715
KW
3740int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3741 const char *backing_file_str)
6ebdcee2 3742{
61f09cea 3743 BdrvChild *c, *next;
12fa4af6 3744 Error *local_err = NULL;
6ebdcee2
JC
3745 int ret = -EIO;
3746
6858eba0
KW
3747 bdrv_ref(top);
3748
6ebdcee2
JC
3749 if (!top->drv || !base->drv) {
3750 goto exit;
3751 }
3752
5db15a57
KW
3753 /* Make sure that base is in the backing chain of top */
3754 if (!bdrv_chain_contains(top, base)) {
6ebdcee2
JC
3755 goto exit;
3756 }
3757
3758 /* success - we can delete the intermediate states, and link top->base */
bde70715
KW
3759 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3760 * we've figured out how they should work. */
61f09cea
KW
3761 backing_file_str = backing_file_str ? backing_file_str : base->filename;
3762
3763 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3764 /* Check whether we are allowed to switch c from top to base */
3765 GSList *ignore_children = g_slist_prepend(NULL, c);
3766 bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3767 ignore_children, &local_err);
2c860e79 3768 g_slist_free(ignore_children);
61f09cea
KW
3769 if (local_err) {
3770 ret = -EPERM;
3771 error_report_err(local_err);
6858eba0
KW
3772 goto exit;
3773 }
12fa4af6 3774
61f09cea
KW
3775 /* If so, update the backing file path in the image file */
3776 if (c->role->update_filename) {
3777 ret = c->role->update_filename(c, base, backing_file_str,
3778 &local_err);
3779 if (ret < 0) {
3780 bdrv_abort_perm_update(base);
3781 error_report_err(local_err);
3782 goto exit;
3783 }
3784 }
3785
3786 /* Do the actual switch in the in-memory graph.
3787 * Completes bdrv_check_update_perm() transaction internally. */
3788 bdrv_ref(base);
3789 bdrv_replace_child(c, base);
3790 bdrv_unref(top);
12fa4af6 3791 }
6ebdcee2 3792
6ebdcee2 3793 ret = 0;
6ebdcee2 3794exit:
6858eba0 3795 bdrv_unref(top);
6ebdcee2
JC
3796 return ret;
3797}
3798
61007b31
SH
3799/**
3800 * Length of a allocated file in bytes. Sparse files are counted by actual
3801 * allocated space. Return < 0 if error or unknown.
3802 */
3803int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
71d0770c 3804{
61007b31
SH
3805 BlockDriver *drv = bs->drv;
3806 if (!drv) {
3807 return -ENOMEDIUM;
8f4754ed 3808 }
61007b31
SH
3809 if (drv->bdrv_get_allocated_file_size) {
3810 return drv->bdrv_get_allocated_file_size(bs);
3811 }
3812 if (bs->file) {
9a4f4c31 3813 return bdrv_get_allocated_file_size(bs->file->bs);
1c9805a3 3814 }
61007b31 3815 return -ENOTSUP;
1c9805a3 3816}
e7a8a783 3817
90880ff1
SH
3818/*
3819 * bdrv_measure:
3820 * @drv: Format driver
3821 * @opts: Creation options for new image
3822 * @in_bs: Existing image containing data for new image (may be NULL)
3823 * @errp: Error object
3824 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
3825 * or NULL on error
3826 *
3827 * Calculate file size required to create a new image.
3828 *
3829 * If @in_bs is given then space for allocated clusters and zero clusters
3830 * from that image are included in the calculation. If @opts contains a
3831 * backing file that is shared by @in_bs then backing clusters may be omitted
3832 * from the calculation.
3833 *
3834 * If @in_bs is NULL then the calculation includes no allocated clusters
3835 * unless a preallocation option is given in @opts.
3836 *
3837 * Note that @in_bs may use a different BlockDriver from @drv.
3838 *
3839 * If an error occurs the @errp pointer is set.
3840 */
3841BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
3842 BlockDriverState *in_bs, Error **errp)
3843{
3844 if (!drv->bdrv_measure) {
3845 error_setg(errp, "Block driver '%s' does not support size measurement",
3846 drv->format_name);
3847 return NULL;
3848 }
3849
3850 return drv->bdrv_measure(opts, in_bs, errp);
3851}
3852
61007b31
SH
3853/**
3854 * Return number of sectors on success, -errno on error.
1c9805a3 3855 */
61007b31 3856int64_t bdrv_nb_sectors(BlockDriverState *bs)
1c9805a3 3857{
61007b31 3858 BlockDriver *drv = bs->drv;
498e386c 3859
61007b31
SH
3860 if (!drv)
3861 return -ENOMEDIUM;
2572b37a 3862
61007b31
SH
3863 if (drv->has_variable_length) {
3864 int ret = refresh_total_sectors(bs, bs->total_sectors);
3865 if (ret < 0) {
3866 return ret;
1c9805a3
SH
3867 }
3868 }
61007b31 3869 return bs->total_sectors;
1c9805a3 3870}
b338082b 3871
61007b31
SH
3872/**
3873 * Return length in bytes on success, -errno on error.
3874 * The length is always a multiple of BDRV_SECTOR_SIZE.
8d3b1a2d 3875 */
61007b31 3876int64_t bdrv_getlength(BlockDriverState *bs)
8d3b1a2d 3877{
61007b31 3878 int64_t ret = bdrv_nb_sectors(bs);
8d3b1a2d 3879
4a9c9ea0 3880 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
61007b31 3881 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
fc01f7e7
FB
3882}
3883
61007b31
SH
3884/* return 0 as number of sectors if no device present or error */
3885void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
07d27a44 3886{
61007b31 3887 int64_t nb_sectors = bdrv_nb_sectors(bs);
07d27a44 3888
61007b31 3889 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
07d27a44
MA
3890}
3891
54115412 3892bool bdrv_is_sg(BlockDriverState *bs)
f08145fe 3893{
61007b31 3894 return bs->sg;
f08145fe
KW
3895}
3896
54115412 3897bool bdrv_is_encrypted(BlockDriverState *bs)
fc3959e4 3898{
760e0063 3899 if (bs->backing && bs->backing->bs->encrypted) {
54115412 3900 return true;
760e0063 3901 }
61007b31 3902 return bs->encrypted;
fc3959e4
FZ
3903}
3904
61007b31 3905const char *bdrv_get_format_name(BlockDriverState *bs)
40b4f539 3906{
61007b31 3907 return bs->drv ? bs->drv->format_name : NULL;
40b4f539
KW
3908}
3909
61007b31 3910static int qsort_strcmp(const void *a, const void *b)
40b4f539 3911{
ceff5bd7 3912 return strcmp(*(char *const *)a, *(char *const *)b);
40b4f539
KW
3913}
3914
61007b31
SH
3915void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3916 void *opaque)
40b4f539 3917{
61007b31
SH
3918 BlockDriver *drv;
3919 int count = 0;
3920 int i;
3921 const char **formats = NULL;
40b4f539 3922
61007b31
SH
3923 QLIST_FOREACH(drv, &bdrv_drivers, list) {
3924 if (drv->format_name) {
3925 bool found = false;
3926 int i = count;
3927 while (formats && i && !found) {
3928 found = !strcmp(formats[--i], drv->format_name);
3929 }
e2a305fb 3930
61007b31
SH
3931 if (!found) {
3932 formats = g_renew(const char *, formats, count + 1);
3933 formats[count++] = drv->format_name;
3934 }
6c5a42ac 3935 }
61007b31 3936 }
6c5a42ac 3937
eb0df69f
HR
3938 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3939 const char *format_name = block_driver_modules[i].format_name;
3940
3941 if (format_name) {
3942 bool found = false;
3943 int j = count;
3944
3945 while (formats && j && !found) {
3946 found = !strcmp(formats[--j], format_name);
3947 }
3948
3949 if (!found) {
3950 formats = g_renew(const char *, formats, count + 1);
3951 formats[count++] = format_name;
3952 }
3953 }
3954 }
3955
61007b31 3956 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
40b4f539 3957
61007b31
SH
3958 for (i = 0; i < count; i++) {
3959 it(opaque, formats[i]);
3960 }
40b4f539 3961
61007b31
SH
3962 g_free(formats);
3963}
40b4f539 3964
61007b31
SH
3965/* This function is to find a node in the bs graph */
3966BlockDriverState *bdrv_find_node(const char *node_name)
3967{
3968 BlockDriverState *bs;
391827eb 3969
61007b31 3970 assert(node_name);
40b4f539 3971
61007b31
SH
3972 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3973 if (!strcmp(node_name, bs->node_name)) {
3974 return bs;
40b4f539
KW
3975 }
3976 }
61007b31 3977 return NULL;
40b4f539
KW
3978}
3979
61007b31
SH
3980/* Put this QMP function here so it can access the static graph_bdrv_states. */
3981BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
40b4f539 3982{
61007b31
SH
3983 BlockDeviceInfoList *list, *entry;
3984 BlockDriverState *bs;
40b4f539 3985
61007b31
SH
3986 list = NULL;
3987 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
c83f9fba 3988 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
61007b31
SH
3989 if (!info) {
3990 qapi_free_BlockDeviceInfoList(list);
3991 return NULL;
301db7c2 3992 }
61007b31
SH
3993 entry = g_malloc0(sizeof(*entry));
3994 entry->value = info;
3995 entry->next = list;
3996 list = entry;
301db7c2
RH
3997 }
3998
61007b31
SH
3999 return list;
4000}
40b4f539 4001
61007b31
SH
4002BlockDriverState *bdrv_lookup_bs(const char *device,
4003 const char *node_name,
4004 Error **errp)
4005{
4006 BlockBackend *blk;
4007 BlockDriverState *bs;
40b4f539 4008
61007b31
SH
4009 if (device) {
4010 blk = blk_by_name(device);
40b4f539 4011
61007b31 4012 if (blk) {
9f4ed6fb
AG
4013 bs = blk_bs(blk);
4014 if (!bs) {
5433c24f 4015 error_setg(errp, "Device '%s' has no medium", device);
5433c24f
HR
4016 }
4017
9f4ed6fb 4018 return bs;
61007b31
SH
4019 }
4020 }
40b4f539 4021
61007b31
SH
4022 if (node_name) {
4023 bs = bdrv_find_node(node_name);
6d519a5f 4024
61007b31
SH
4025 if (bs) {
4026 return bs;
4027 }
40b4f539
KW
4028 }
4029
61007b31
SH
4030 error_setg(errp, "Cannot find device=%s nor node_name=%s",
4031 device ? device : "",
4032 node_name ? node_name : "");
4033 return NULL;
40b4f539
KW
4034}
4035
61007b31
SH
4036/* If 'base' is in the same chain as 'top', return true. Otherwise,
4037 * return false. If either argument is NULL, return false. */
4038bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
83f64091 4039{
61007b31 4040 while (top && top != base) {
760e0063 4041 top = backing_bs(top);
02c50efe 4042 }
61007b31
SH
4043
4044 return top != NULL;
02c50efe
FZ
4045}
4046
61007b31 4047BlockDriverState *bdrv_next_node(BlockDriverState *bs)
02c50efe 4048{
61007b31
SH
4049 if (!bs) {
4050 return QTAILQ_FIRST(&graph_bdrv_states);
02c50efe 4051 }
61007b31 4052 return QTAILQ_NEXT(bs, node_list);
83f64091
FB
4053}
4054
0f12264e
KW
4055BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4056{
4057 if (!bs) {
4058 return QTAILQ_FIRST(&all_bdrv_states);
4059 }
4060 return QTAILQ_NEXT(bs, bs_list);
4061}
4062
61007b31 4063const char *bdrv_get_node_name(const BlockDriverState *bs)
83f64091 4064{
61007b31 4065 return bs->node_name;
beac80cd
FB
4066}
4067
1f0c461b 4068const char *bdrv_get_parent_name(const BlockDriverState *bs)
4c265bf9
KW
4069{
4070 BdrvChild *c;
4071 const char *name;
4072
4073 /* If multiple parents have a name, just pick the first one. */
4074 QLIST_FOREACH(c, &bs->parents, next_parent) {
4075 if (c->role->get_name) {
4076 name = c->role->get_name(c);
4077 if (name && *name) {
4078 return name;
4079 }
4080 }
4081 }
4082
4083 return NULL;
4084}
4085
61007b31
SH
4086/* TODO check what callers really want: bs->node_name or blk_name() */
4087const char *bdrv_get_device_name(const BlockDriverState *bs)
beac80cd 4088{
4c265bf9 4089 return bdrv_get_parent_name(bs) ?: "";
f141eafe 4090}
83f64091 4091
61007b31
SH
4092/* This can be used to identify nodes that might not have a device
4093 * name associated. Since node and device names live in the same
4094 * namespace, the result is unambiguous. The exception is if both are
4095 * absent, then this returns an empty (non-null) string. */
4096const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
f141eafe 4097{
4c265bf9 4098 return bdrv_get_parent_name(bs) ?: bs->node_name;
beac80cd 4099}
beac80cd 4100
61007b31 4101int bdrv_get_flags(BlockDriverState *bs)
0b5a2445 4102{
61007b31 4103 return bs->open_flags;
0b5a2445
PB
4104}
4105
61007b31 4106int bdrv_has_zero_init_1(BlockDriverState *bs)
68485420 4107{
61007b31 4108 return 1;
0b5a2445
PB
4109}
4110
61007b31 4111int bdrv_has_zero_init(BlockDriverState *bs)
0b5a2445 4112{
d470ad42
HR
4113 if (!bs->drv) {
4114 return 0;
4115 }
0b5a2445 4116
61007b31
SH
4117 /* If BS is a copy on write image, it is initialized to
4118 the contents of the base image, which may not be zeroes. */
760e0063 4119 if (bs->backing) {
61007b31
SH
4120 return 0;
4121 }
4122 if (bs->drv->bdrv_has_zero_init) {
4123 return bs->drv->bdrv_has_zero_init(bs);
0b5a2445 4124 }
5a612c00
MP
4125 if (bs->file && bs->drv->is_filter) {
4126 return bdrv_has_zero_init(bs->file->bs);
4127 }
61007b31
SH
4128
4129 /* safe default */
4130 return 0;
68485420
KW
4131}
4132
61007b31 4133bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
b2a61371 4134{
61007b31 4135 BlockDriverInfo bdi;
b2a61371 4136
760e0063 4137 if (bs->backing) {
61007b31
SH
4138 return false;
4139 }
4140
4141 if (bdrv_get_info(bs, &bdi) == 0) {
4142 return bdi.unallocated_blocks_are_zero;
b2a61371
SH
4143 }
4144
61007b31 4145 return false;
b2a61371
SH
4146}
4147
61007b31 4148bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
68485420 4149{
2f0342ef 4150 if (!(bs->open_flags & BDRV_O_UNMAP)) {
61007b31
SH
4151 return false;
4152 }
68485420 4153
e24d813b 4154 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
68485420
KW
4155}
4156
61007b31 4157const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
b2e12bc6 4158{
760e0063 4159 if (bs->backing && bs->backing->bs->encrypted)
61007b31
SH
4160 return bs->backing_file;
4161 else if (bs->encrypted)
4162 return bs->filename;
4163 else
4164 return NULL;
b2e12bc6
CH
4165}
4166
61007b31
SH
4167void bdrv_get_backing_filename(BlockDriverState *bs,
4168 char *filename, int filename_size)
016f5cf6 4169{
61007b31
SH
4170 pstrcpy(filename, filename_size, bs->backing_file);
4171}
d318aea9 4172
61007b31
SH
4173int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4174{
4175 BlockDriver *drv = bs->drv;
5a612c00
MP
4176 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4177 if (!drv) {
61007b31 4178 return -ENOMEDIUM;
5a612c00
MP
4179 }
4180 if (!drv->bdrv_get_info) {
4181 if (bs->file && drv->is_filter) {
4182 return bdrv_get_info(bs->file->bs, bdi);
4183 }
61007b31 4184 return -ENOTSUP;
5a612c00 4185 }
61007b31
SH
4186 memset(bdi, 0, sizeof(*bdi));
4187 return drv->bdrv_get_info(bs, bdi);
4188}
016f5cf6 4189
61007b31
SH
4190ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4191{
4192 BlockDriver *drv = bs->drv;
4193 if (drv && drv->bdrv_get_specific_info) {
4194 return drv->bdrv_get_specific_info(bs);
4195 }
4196 return NULL;
016f5cf6
AG
4197}
4198
a31939e6 4199void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4265d620 4200{
61007b31
SH
4201 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4202 return;
4203 }
4265d620 4204
61007b31 4205 bs->drv->bdrv_debug_event(bs, event);
4265d620
PB
4206}
4207
61007b31
SH
4208int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4209 const char *tag)
4265d620 4210{
61007b31 4211 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
9a4f4c31 4212 bs = bs->file ? bs->file->bs : NULL;
61007b31 4213 }
4265d620 4214
61007b31
SH
4215 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4216 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4217 }
4265d620 4218
61007b31 4219 return -ENOTSUP;
4265d620
PB
4220}
4221
61007b31 4222int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
ea2384d3 4223{
61007b31 4224 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
9a4f4c31 4225 bs = bs->file ? bs->file->bs : NULL;
61007b31 4226 }
ce1a14dc 4227
61007b31
SH
4228 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4229 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4230 }
4231
4232 return -ENOTSUP;
eb852011
MA
4233}
4234
61007b31 4235int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
ce1a14dc 4236{
61007b31 4237 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
9a4f4c31 4238 bs = bs->file ? bs->file->bs : NULL;
61007b31 4239 }
ce1a14dc 4240
61007b31
SH
4241 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4242 return bs->drv->bdrv_debug_resume(bs, tag);
4243 }
ce1a14dc 4244
61007b31 4245 return -ENOTSUP;
f197fe2b
FZ
4246}
4247
61007b31 4248bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
ce1a14dc 4249{
61007b31 4250 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
9a4f4c31 4251 bs = bs->file ? bs->file->bs : NULL;
f197fe2b 4252 }
19cb3738 4253
61007b31
SH
4254 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4255 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4256 }
f9f05dc5 4257
61007b31
SH
4258 return false;
4259}
f9f05dc5 4260
61007b31
SH
4261/* backing_file can either be relative, or absolute, or a protocol. If it is
4262 * relative, it must be relative to the chain. So, passing in bs->filename
4263 * from a BDS as backing_file should not be done, as that may be relative to
4264 * the CWD rather than the chain. */
4265BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4266 const char *backing_file)
f9f05dc5 4267{
61007b31
SH
4268 char *filename_full = NULL;
4269 char *backing_file_full = NULL;
4270 char *filename_tmp = NULL;
4271 int is_protocol = 0;
4272 BlockDriverState *curr_bs = NULL;
4273 BlockDriverState *retval = NULL;
418661e0 4274 Error *local_error = NULL;
f9f05dc5 4275
61007b31
SH
4276 if (!bs || !bs->drv || !backing_file) {
4277 return NULL;
f9f05dc5
KW
4278 }
4279
61007b31
SH
4280 filename_full = g_malloc(PATH_MAX);
4281 backing_file_full = g_malloc(PATH_MAX);
4282 filename_tmp = g_malloc(PATH_MAX);
f9f05dc5 4283
61007b31 4284 is_protocol = path_has_protocol(backing_file);
f9f05dc5 4285
760e0063 4286 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
f9f05dc5 4287
61007b31
SH
4288 /* If either of the filename paths is actually a protocol, then
4289 * compare unmodified paths; otherwise make paths relative */
4290 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4291 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
760e0063 4292 retval = curr_bs->backing->bs;
61007b31
SH
4293 break;
4294 }
418661e0
JC
4295 /* Also check against the full backing filename for the image */
4296 bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4297 &local_error);
4298 if (local_error == NULL) {
4299 if (strcmp(backing_file, backing_file_full) == 0) {
4300 retval = curr_bs->backing->bs;
4301 break;
4302 }
4303 } else {
4304 error_free(local_error);
4305 local_error = NULL;
4306 }
61007b31
SH
4307 } else {
4308 /* If not an absolute filename path, make it relative to the current
4309 * image's filename path */
4310 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4311 backing_file);
f9f05dc5 4312
61007b31
SH
4313 /* We are going to compare absolute pathnames */
4314 if (!realpath(filename_tmp, filename_full)) {
4315 continue;
4316 }
07f07615 4317
61007b31
SH
4318 /* We need to make sure the backing filename we are comparing against
4319 * is relative to the current image filename (or absolute) */
4320 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4321 curr_bs->backing_file);
07f07615 4322
61007b31
SH
4323 if (!realpath(filename_tmp, backing_file_full)) {
4324 continue;
4325 }
eb489bb1 4326
61007b31 4327 if (strcmp(backing_file_full, filename_full) == 0) {
760e0063 4328 retval = curr_bs->backing->bs;
61007b31
SH
4329 break;
4330 }
4331 }
eb489bb1
KW
4332 }
4333
61007b31
SH
4334 g_free(filename_full);
4335 g_free(backing_file_full);
4336 g_free(filename_tmp);
4337 return retval;
4338}
4339
61007b31
SH
4340void bdrv_init(void)
4341{
4342 module_call_init(MODULE_INIT_BLOCK);
4343}
29cdb251 4344
61007b31
SH
4345void bdrv_init_with_whitelist(void)
4346{
4347 use_bdrv_whitelist = 1;
4348 bdrv_init();
07f07615
PB
4349}
4350
2b148f39
PB
4351static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4352 Error **errp)
0f15423c 4353{
4417ab7a 4354 BdrvChild *child, *parent;
9c5e6594 4355 uint64_t perm, shared_perm;
5a8a30db
KW
4356 Error *local_err = NULL;
4357 int ret;
4358
3456a8d1
KW
4359 if (!bs->drv) {
4360 return;
4361 }
4362
04c01a5c 4363 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
7ea2d269
AK
4364 return;
4365 }
7ea2d269 4366
16e977d5 4367 QLIST_FOREACH(child, &bs->children, next) {
2b148f39 4368 bdrv_co_invalidate_cache(child->bs, &local_err);
0d1c5c91 4369 if (local_err) {
0d1c5c91
FZ
4370 error_propagate(errp, local_err);
4371 return;
4372 }
5a8a30db 4373 }
0d1c5c91 4374
dafe0960
KW
4375 /*
4376 * Update permissions, they may differ for inactive nodes.
4377 *
4378 * Note that the required permissions of inactive images are always a
4379 * subset of the permissions required after activating the image. This
4380 * allows us to just get the permissions upfront without restricting
4381 * drv->bdrv_invalidate_cache().
4382 *
4383 * It also means that in error cases, we don't have to try and revert to
4384 * the old permissions (which is an operation that could fail, too). We can
4385 * just keep the extended permissions for the next time that an activation
4386 * of the image is tried.
4387 */
16e977d5 4388 bs->open_flags &= ~BDRV_O_INACTIVE;
dafe0960
KW
4389 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4390 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4391 if (ret < 0) {
4392 bs->open_flags |= BDRV_O_INACTIVE;
4393 error_propagate(errp, local_err);
4394 return;
4395 }
4396 bdrv_set_perm(bs, perm, shared_perm);
4397
2b148f39
PB
4398 if (bs->drv->bdrv_co_invalidate_cache) {
4399 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
0d1c5c91
FZ
4400 if (local_err) {
4401 bs->open_flags |= BDRV_O_INACTIVE;
4402 error_propagate(errp, local_err);
4403 return;
4404 }
0f15423c 4405 }
3456a8d1 4406
5a8a30db
KW
4407 ret = refresh_total_sectors(bs, bs->total_sectors);
4408 if (ret < 0) {
04c01a5c 4409 bs->open_flags |= BDRV_O_INACTIVE;
5a8a30db
KW
4410 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4411 return;
4412 }
4417ab7a
KW
4413
4414 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4415 if (parent->role->activate) {
4416 parent->role->activate(parent, &local_err);
4417 if (local_err) {
4418 error_propagate(errp, local_err);
4419 return;
4420 }
4421 }
4422 }
0f15423c
AL
4423}
4424
2b148f39
PB
4425typedef struct InvalidateCacheCo {
4426 BlockDriverState *bs;
4427 Error **errp;
4428 bool done;
4429} InvalidateCacheCo;
4430
4431static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4432{
4433 InvalidateCacheCo *ico = opaque;
4434 bdrv_co_invalidate_cache(ico->bs, ico->errp);
4435 ico->done = true;
4436}
4437
4438void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4439{
4440 Coroutine *co;
4441 InvalidateCacheCo ico = {
4442 .bs = bs,
4443 .done = false,
4444 .errp = errp
4445 };
4446
4447 if (qemu_in_coroutine()) {
4448 /* Fast-path if already in coroutine context */
4449 bdrv_invalidate_cache_co_entry(&ico);
4450 } else {
4451 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4452 qemu_coroutine_enter(co);
4453 BDRV_POLL_WHILE(bs, !ico.done);
4454 }
4455}
4456
5a8a30db 4457void bdrv_invalidate_cache_all(Error **errp)
0f15423c 4458{
7c8eece4 4459 BlockDriverState *bs;
5a8a30db 4460 Error *local_err = NULL;
88be7b4b 4461 BdrvNextIterator it;
0f15423c 4462
88be7b4b 4463 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
ed78cda3
SH
4464 AioContext *aio_context = bdrv_get_aio_context(bs);
4465
4466 aio_context_acquire(aio_context);
5a8a30db 4467 bdrv_invalidate_cache(bs, &local_err);
ed78cda3 4468 aio_context_release(aio_context);
5a8a30db
KW
4469 if (local_err) {
4470 error_propagate(errp, local_err);
5e003f17 4471 bdrv_next_cleanup(&it);
5a8a30db
KW
4472 return;
4473 }
0f15423c
AL
4474 }
4475}
4476
aad0b7a0
FZ
4477static int bdrv_inactivate_recurse(BlockDriverState *bs,
4478 bool setting_flag)
76b1c7fe 4479{
cfa1a572 4480 BdrvChild *child, *parent;
76b1c7fe
KW
4481 int ret;
4482
d470ad42
HR
4483 if (!bs->drv) {
4484 return -ENOMEDIUM;
4485 }
4486
aad0b7a0 4487 if (!setting_flag && bs->drv->bdrv_inactivate) {
76b1c7fe
KW
4488 ret = bs->drv->bdrv_inactivate(bs);
4489 if (ret < 0) {
4490 return ret;
4491 }
4492 }
4493
7d5b5261 4494 if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
9c5e6594
KW
4495 uint64_t perm, shared_perm;
4496
cfa1a572
KW
4497 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4498 if (parent->role->inactivate) {
4499 ret = parent->role->inactivate(parent);
4500 if (ret < 0) {
cfa1a572
KW
4501 return ret;
4502 }
4503 }
4504 }
9c5e6594 4505
7d5b5261
SH
4506 bs->open_flags |= BDRV_O_INACTIVE;
4507
9c5e6594
KW
4508 /* Update permissions, they may differ for inactive nodes */
4509 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
3121fb45 4510 bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
9c5e6594 4511 bdrv_set_perm(bs, perm, shared_perm);
aad0b7a0 4512 }
38701b6a
KW
4513
4514 QLIST_FOREACH(child, &bs->children, next) {
4515 ret = bdrv_inactivate_recurse(child->bs, setting_flag);
4516 if (ret < 0) {
4517 return ret;
4518 }
4519 }
4520
615b5dcf
VSO
4521 /* At this point persistent bitmaps should be already stored by the format
4522 * driver */
4523 bdrv_release_persistent_dirty_bitmaps(bs);
4524
76b1c7fe
KW
4525 return 0;
4526}
4527
4528int bdrv_inactivate_all(void)
4529{
79720af6 4530 BlockDriverState *bs = NULL;
88be7b4b 4531 BdrvNextIterator it;
aad0b7a0
FZ
4532 int ret = 0;
4533 int pass;
bd6458e4 4534 GSList *aio_ctxs = NULL, *ctx;
76b1c7fe 4535
88be7b4b 4536 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
bd6458e4
PB
4537 AioContext *aio_context = bdrv_get_aio_context(bs);
4538
4539 if (!g_slist_find(aio_ctxs, aio_context)) {
4540 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4541 aio_context_acquire(aio_context);
4542 }
aad0b7a0 4543 }
76b1c7fe 4544
aad0b7a0
FZ
4545 /* We do two passes of inactivation. The first pass calls to drivers'
4546 * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4547 * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4548 * is allowed. */
4549 for (pass = 0; pass < 2; pass++) {
88be7b4b 4550 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
aad0b7a0
FZ
4551 ret = bdrv_inactivate_recurse(bs, pass);
4552 if (ret < 0) {
5e003f17 4553 bdrv_next_cleanup(&it);
aad0b7a0
FZ
4554 goto out;
4555 }
76b1c7fe
KW
4556 }
4557 }
4558
aad0b7a0 4559out:
bd6458e4
PB
4560 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4561 AioContext *aio_context = ctx->data;
4562 aio_context_release(aio_context);
aad0b7a0 4563 }
bd6458e4 4564 g_slist_free(aio_ctxs);
aad0b7a0
FZ
4565
4566 return ret;
76b1c7fe
KW
4567}
4568
19cb3738
FB
4569/**************************************************************/
4570/* removable device support */
4571
4572/**
4573 * Return TRUE if the media is present
4574 */
e031f750 4575bool bdrv_is_inserted(BlockDriverState *bs)
19cb3738
FB
4576{
4577 BlockDriver *drv = bs->drv;
28d7a789 4578 BdrvChild *child;
a1aff5bf 4579
e031f750
HR
4580 if (!drv) {
4581 return false;
4582 }
28d7a789
HR
4583 if (drv->bdrv_is_inserted) {
4584 return drv->bdrv_is_inserted(bs);
4585 }
4586 QLIST_FOREACH(child, &bs->children, next) {
4587 if (!bdrv_is_inserted(child->bs)) {
4588 return false;
4589 }
e031f750 4590 }
28d7a789 4591 return true;
19cb3738
FB
4592}
4593
19cb3738
FB
4594/**
4595 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4596 */
f36f3949 4597void bdrv_eject(BlockDriverState *bs, bool eject_flag)
19cb3738
FB
4598{
4599 BlockDriver *drv = bs->drv;
19cb3738 4600
822e1cd1
MA
4601 if (drv && drv->bdrv_eject) {
4602 drv->bdrv_eject(bs, eject_flag);
19cb3738
FB
4603 }
4604}
4605
19cb3738
FB
4606/**
4607 * Lock or unlock the media (if it is locked, the user won't be able
4608 * to eject it manually).
4609 */
025e849a 4610void bdrv_lock_medium(BlockDriverState *bs, bool locked)
19cb3738
FB
4611{
4612 BlockDriver *drv = bs->drv;
4613
025e849a 4614 trace_bdrv_lock_medium(bs, locked);
b8c6d095 4615
025e849a
MA
4616 if (drv && drv->bdrv_lock_medium) {
4617 drv->bdrv_lock_medium(bs, locked);
19cb3738
FB
4618 }
4619}
985a03b0 4620
9fcb0251
FZ
4621/* Get a reference to bs */
4622void bdrv_ref(BlockDriverState *bs)
4623{
4624 bs->refcnt++;
4625}
4626
4627/* Release a previously grabbed reference to bs.
4628 * If after releasing, reference count is zero, the BlockDriverState is
4629 * deleted. */
4630void bdrv_unref(BlockDriverState *bs)
4631{
9a4d5ca6
JC
4632 if (!bs) {
4633 return;
4634 }
9fcb0251
FZ
4635 assert(bs->refcnt > 0);
4636 if (--bs->refcnt == 0) {
4637 bdrv_delete(bs);
4638 }
4639}
4640
fbe40ff7
FZ
4641struct BdrvOpBlocker {
4642 Error *reason;
4643 QLIST_ENTRY(BdrvOpBlocker) list;
4644};
4645
4646bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4647{
4648 BdrvOpBlocker *blocker;
4649 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4650 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4651 blocker = QLIST_FIRST(&bs->op_blockers[op]);
57ef3f12
EH
4652 error_propagate(errp, error_copy(blocker->reason));
4653 error_prepend(errp, "Node '%s' is busy: ",
4654 bdrv_get_device_or_node_name(bs));
fbe40ff7
FZ
4655 return true;
4656 }
4657 return false;
4658}
4659
4660void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4661{
4662 BdrvOpBlocker *blocker;
4663 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4664
5839e53b 4665 blocker = g_new0(BdrvOpBlocker, 1);
fbe40ff7
FZ
4666 blocker->reason = reason;
4667 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4668}
4669
4670void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4671{
4672 BdrvOpBlocker *blocker, *next;
4673 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4674 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4675 if (blocker->reason == reason) {
4676 QLIST_REMOVE(blocker, list);
4677 g_free(blocker);
4678 }
4679 }
4680}
4681
4682void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4683{
4684 int i;
4685 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4686 bdrv_op_block(bs, i, reason);
4687 }
4688}
4689
4690void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4691{
4692 int i;
4693 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4694 bdrv_op_unblock(bs, i, reason);
4695 }
4696}
4697
4698bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4699{
4700 int i;
4701
4702 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4703 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4704 return false;
4705 }
4706 }
4707 return true;
4708}
4709
d92ada22
LC
4710void bdrv_img_create(const char *filename, const char *fmt,
4711 const char *base_filename, const char *base_fmt,
9217283d
FZ
4712 char *options, uint64_t img_size, int flags, bool quiet,
4713 Error **errp)
f88e1a42 4714{
83d0521a
CL
4715 QemuOptsList *create_opts = NULL;
4716 QemuOpts *opts = NULL;
4717 const char *backing_fmt, *backing_file;
4718 int64_t size;
f88e1a42 4719 BlockDriver *drv, *proto_drv;
cc84d90f 4720 Error *local_err = NULL;
f88e1a42
JS
4721 int ret = 0;
4722
4723 /* Find driver and parse its options */
4724 drv = bdrv_find_format(fmt);
4725 if (!drv) {
71c79813 4726 error_setg(errp, "Unknown file format '%s'", fmt);
d92ada22 4727 return;
f88e1a42
JS
4728 }
4729
b65a5e12 4730 proto_drv = bdrv_find_protocol(filename, true, errp);
f88e1a42 4731 if (!proto_drv) {
d92ada22 4732 return;
f88e1a42
JS
4733 }
4734
c6149724
HR
4735 if (!drv->create_opts) {
4736 error_setg(errp, "Format driver '%s' does not support image creation",
4737 drv->format_name);
4738 return;
4739 }
4740
4741 if (!proto_drv->create_opts) {
4742 error_setg(errp, "Protocol driver '%s' does not support image creation",
4743 proto_drv->format_name);
4744 return;
4745 }
4746
c282e1fd
CL
4747 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4748 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
f88e1a42
JS
4749
4750 /* Create parameter list with default values */
83d0521a 4751 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
39101f25 4752 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
f88e1a42
JS
4753
4754 /* Parse -o options */
4755 if (options) {
dc523cd3
MA
4756 qemu_opts_do_parse(opts, options, NULL, &local_err);
4757 if (local_err) {
4758 error_report_err(local_err);
4759 local_err = NULL;
83d0521a 4760 error_setg(errp, "Invalid options for file format '%s'", fmt);
f88e1a42
JS
4761 goto out;
4762 }
4763 }
4764
4765 if (base_filename) {
f43e47db 4766 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
6be4194b 4767 if (local_err) {
71c79813
LC
4768 error_setg(errp, "Backing file not supported for file format '%s'",
4769 fmt);
f88e1a42
JS
4770 goto out;
4771 }
4772 }
4773
4774 if (base_fmt) {
f43e47db 4775 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
6be4194b 4776 if (local_err) {
71c79813
LC
4777 error_setg(errp, "Backing file format not supported for file "
4778 "format '%s'", fmt);
f88e1a42
JS
4779 goto out;
4780 }
4781 }
4782
83d0521a
CL
4783 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4784 if (backing_file) {
4785 if (!strcmp(filename, backing_file)) {
71c79813
LC
4786 error_setg(errp, "Error: Trying to create an image with the "
4787 "same filename as the backing file");
792da93a
JS
4788 goto out;
4789 }
4790 }
4791
83d0521a 4792 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
f88e1a42 4793
6e6e55f5
JS
4794 /* The size for the image must always be specified, unless we have a backing
4795 * file and we have not been forbidden from opening it. */
a8b42a1c 4796 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
6e6e55f5
JS
4797 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
4798 BlockDriverState *bs;
4799 char *full_backing = g_new0(char, PATH_MAX);
4800 int back_flags;
4801 QDict *backing_options = NULL;
4802
4803 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4804 full_backing, PATH_MAX,
4805 &local_err);
4806 if (local_err) {
4807 g_free(full_backing);
4808 goto out;
4809 }
29168018 4810
6e6e55f5
JS
4811 /* backing files always opened read-only */
4812 back_flags = flags;
4813 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
f88e1a42 4814
cc954f01 4815 backing_options = qdict_new();
6e6e55f5 4816 if (backing_fmt) {
6e6e55f5
JS
4817 qdict_put_str(backing_options, "driver", backing_fmt);
4818 }
cc954f01 4819 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
e6641719 4820
6e6e55f5
JS
4821 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4822 &local_err);
4823 g_free(full_backing);
4824 if (!bs && size != -1) {
4825 /* Couldn't open BS, but we have a size, so it's nonfatal */
4826 warn_reportf_err(local_err,
4827 "Could not verify backing image. "
4828 "This may become an error in future versions.\n");
4829 local_err = NULL;
4830 } else if (!bs) {
4831 /* Couldn't open bs, do not have size */
4832 error_append_hint(&local_err,
4833 "Could not open backing image to determine size.\n");
4834 goto out;
4835 } else {
4836 if (size == -1) {
4837 /* Opened BS, have no size */
4838 size = bdrv_getlength(bs);
4839 if (size < 0) {
4840 error_setg_errno(errp, -size, "Could not get size of '%s'",
4841 backing_file);
4842 bdrv_unref(bs);
4843 goto out;
4844 }
4845 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
52bf1e72 4846 }
66f6b814 4847 bdrv_unref(bs);
f88e1a42 4848 }
6e6e55f5
JS
4849 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
4850
4851 if (size == -1) {
4852 error_setg(errp, "Image creation needs a size parameter");
4853 goto out;
f88e1a42
JS
4854 }
4855
f382d43a 4856 if (!quiet) {
fe646693 4857 printf("Formatting '%s', fmt=%s ", filename, fmt);
43c5d8f8 4858 qemu_opts_print(opts, " ");
f382d43a
MR
4859 puts("");
4860 }
83d0521a 4861
c282e1fd 4862 ret = bdrv_create(drv, filename, opts, &local_err);
83d0521a 4863
cc84d90f
HR
4864 if (ret == -EFBIG) {
4865 /* This is generally a better message than whatever the driver would
4866 * deliver (especially because of the cluster_size_hint), since that
4867 * is most probably not much different from "image too large". */
4868 const char *cluster_size_hint = "";
83d0521a 4869 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
cc84d90f 4870 cluster_size_hint = " (try using a larger cluster size)";
f88e1a42 4871 }
cc84d90f
HR
4872 error_setg(errp, "The image size is too large for file format '%s'"
4873 "%s", fmt, cluster_size_hint);
4874 error_free(local_err);
4875 local_err = NULL;
f88e1a42
JS
4876 }
4877
4878out:
83d0521a
CL
4879 qemu_opts_del(opts);
4880 qemu_opts_free(create_opts);
621ff94d 4881 error_propagate(errp, local_err);
f88e1a42 4882}
85d126f3
SH
4883
4884AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4885{
33f2a757 4886 return bs ? bs->aio_context : qemu_get_aio_context();
dcd04228
SH
4887}
4888
052a7572
FZ
4889void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4890{
4891 aio_co_enter(bdrv_get_aio_context(bs), co);
4892}
4893
e8a095da
SH
4894static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4895{
4896 QLIST_REMOVE(ban, list);
4897 g_free(ban);
4898}
4899
dcd04228
SH
4900void bdrv_detach_aio_context(BlockDriverState *bs)
4901{
e8a095da 4902 BdrvAioNotifier *baf, *baf_tmp;
b97511c7 4903 BdrvChild *child;
33384421 4904
dcd04228
SH
4905 if (!bs->drv) {
4906 return;
4907 }
4908
e8a095da
SH
4909 assert(!bs->walking_aio_notifiers);
4910 bs->walking_aio_notifiers = true;
4911 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4912 if (baf->deleted) {
4913 bdrv_do_remove_aio_context_notifier(baf);
4914 } else {
4915 baf->detach_aio_context(baf->opaque);
4916 }
33384421 4917 }
e8a095da
SH
4918 /* Never mind iterating again to check for ->deleted. bdrv_close() will
4919 * remove remaining aio notifiers if we aren't called again.
4920 */
4921 bs->walking_aio_notifiers = false;
33384421 4922
dcd04228
SH
4923 if (bs->drv->bdrv_detach_aio_context) {
4924 bs->drv->bdrv_detach_aio_context(bs);
4925 }
b97511c7
HR
4926 QLIST_FOREACH(child, &bs->children, next) {
4927 bdrv_detach_aio_context(child->bs);
dcd04228
SH
4928 }
4929
4930 bs->aio_context = NULL;
4931}
4932
4933void bdrv_attach_aio_context(BlockDriverState *bs,
4934 AioContext *new_context)
4935{
e8a095da 4936 BdrvAioNotifier *ban, *ban_tmp;
b97511c7 4937 BdrvChild *child;
33384421 4938
dcd04228
SH
4939 if (!bs->drv) {
4940 return;
4941 }
4942
4943 bs->aio_context = new_context;
4944
b97511c7
HR
4945 QLIST_FOREACH(child, &bs->children, next) {
4946 bdrv_attach_aio_context(child->bs, new_context);
dcd04228
SH
4947 }
4948 if (bs->drv->bdrv_attach_aio_context) {
4949 bs->drv->bdrv_attach_aio_context(bs, new_context);
4950 }
33384421 4951
e8a095da
SH
4952 assert(!bs->walking_aio_notifiers);
4953 bs->walking_aio_notifiers = true;
4954 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4955 if (ban->deleted) {
4956 bdrv_do_remove_aio_context_notifier(ban);
4957 } else {
4958 ban->attached_aio_context(new_context, ban->opaque);
4959 }
33384421 4960 }
e8a095da 4961 bs->walking_aio_notifiers = false;
dcd04228
SH
4962}
4963
4964void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4965{
aabf5910 4966 AioContext *ctx = bdrv_get_aio_context(bs);
c2b6428d 4967
aabf5910 4968 aio_disable_external(ctx);
6cd5c9d7 4969 bdrv_parent_drained_begin(bs, NULL, false);
53ec73e2 4970 bdrv_drain(bs); /* ensure there are no in-flight requests */
dcd04228 4971
c2b6428d
PB
4972 while (aio_poll(ctx, false)) {
4973 /* wait for all bottom halves to execute */
4974 }
4975
dcd04228
SH
4976 bdrv_detach_aio_context(bs);
4977
4978 /* This function executes in the old AioContext so acquire the new one in
4979 * case it runs in a different thread.
4980 */
4981 aio_context_acquire(new_context);
4982 bdrv_attach_aio_context(bs, new_context);
6cd5c9d7 4983 bdrv_parent_drained_end(bs, NULL, false);
aabf5910 4984 aio_enable_external(ctx);
dcd04228 4985 aio_context_release(new_context);
85d126f3 4986}
d616b224 4987
33384421
HR
4988void bdrv_add_aio_context_notifier(BlockDriverState *bs,
4989 void (*attached_aio_context)(AioContext *new_context, void *opaque),
4990 void (*detach_aio_context)(void *opaque), void *opaque)
4991{
4992 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
4993 *ban = (BdrvAioNotifier){
4994 .attached_aio_context = attached_aio_context,
4995 .detach_aio_context = detach_aio_context,
4996 .opaque = opaque
4997 };
4998
4999 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5000}
5001
5002void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5003 void (*attached_aio_context)(AioContext *,
5004 void *),
5005 void (*detach_aio_context)(void *),
5006 void *opaque)
5007{
5008 BdrvAioNotifier *ban, *ban_next;
5009
5010 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5011 if (ban->attached_aio_context == attached_aio_context &&
5012 ban->detach_aio_context == detach_aio_context &&
e8a095da
SH
5013 ban->opaque == opaque &&
5014 ban->deleted == false)
33384421 5015 {
e8a095da
SH
5016 if (bs->walking_aio_notifiers) {
5017 ban->deleted = true;
5018 } else {
5019 bdrv_do_remove_aio_context_notifier(ban);
5020 }
33384421
HR
5021 return;
5022 }
5023 }
5024
5025 abort();
5026}
5027
77485434 5028int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
d1402b50
HR
5029 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5030 Error **errp)
6f176b48 5031{
d470ad42 5032 if (!bs->drv) {
d1402b50 5033 error_setg(errp, "Node is ejected");
d470ad42
HR
5034 return -ENOMEDIUM;
5035 }
c282e1fd 5036 if (!bs->drv->bdrv_amend_options) {
d1402b50
HR
5037 error_setg(errp, "Block driver '%s' does not support option amendment",
5038 bs->drv->format_name);
6f176b48
HR
5039 return -ENOTSUP;
5040 }
d1402b50 5041 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
6f176b48 5042}
f6186f49 5043
b5042a36
BC
5044/* This function will be called by the bdrv_recurse_is_first_non_filter method
5045 * of block filter and by bdrv_is_first_non_filter.
5046 * It is used to test if the given bs is the candidate or recurse more in the
5047 * node graph.
212a5a8f 5048 */
b5042a36 5049bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
212a5a8f 5050 BlockDriverState *candidate)
f6186f49 5051{
b5042a36
BC
5052 /* return false if basic checks fails */
5053 if (!bs || !bs->drv) {
212a5a8f 5054 return false;
f6186f49
BC
5055 }
5056
b5042a36
BC
5057 /* the code reached a non block filter driver -> check if the bs is
5058 * the same as the candidate. It's the recursion termination condition.
5059 */
5060 if (!bs->drv->is_filter) {
5061 return bs == candidate;
212a5a8f 5062 }
b5042a36 5063 /* Down this path the driver is a block filter driver */
212a5a8f 5064
b5042a36
BC
5065 /* If the block filter recursion method is defined use it to recurse down
5066 * the node graph.
5067 */
5068 if (bs->drv->bdrv_recurse_is_first_non_filter) {
212a5a8f 5069 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
f6186f49
BC
5070 }
5071
b5042a36
BC
5072 /* the driver is a block filter but don't allow to recurse -> return false
5073 */
5074 return false;
f6186f49
BC
5075}
5076
212a5a8f
BC
5077/* This function checks if the candidate is the first non filter bs down it's
5078 * bs chain. Since we don't have pointers to parents it explore all bs chains
5079 * from the top. Some filters can choose not to pass down the recursion.
5080 */
5081bool bdrv_is_first_non_filter(BlockDriverState *candidate)
f6186f49 5082{
7c8eece4 5083 BlockDriverState *bs;
88be7b4b 5084 BdrvNextIterator it;
212a5a8f
BC
5085
5086 /* walk down the bs forest recursively */
88be7b4b 5087 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
212a5a8f
BC
5088 bool perm;
5089
b5042a36 5090 /* try to recurse in this top level bs */
e6dc8a1f 5091 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
212a5a8f
BC
5092
5093 /* candidate is the first non filter */
5094 if (perm) {
5e003f17 5095 bdrv_next_cleanup(&it);
212a5a8f
BC
5096 return true;
5097 }
5098 }
5099
5100 return false;
f6186f49 5101}
09158f00 5102
e12f3784
WC
5103BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5104 const char *node_name, Error **errp)
09158f00
BC
5105{
5106 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5a7e7a0b
SH
5107 AioContext *aio_context;
5108
09158f00
BC
5109 if (!to_replace_bs) {
5110 error_setg(errp, "Node name '%s' not found", node_name);
5111 return NULL;
5112 }
5113
5a7e7a0b
SH
5114 aio_context = bdrv_get_aio_context(to_replace_bs);
5115 aio_context_acquire(aio_context);
5116
09158f00 5117 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5a7e7a0b
SH
5118 to_replace_bs = NULL;
5119 goto out;
09158f00
BC
5120 }
5121
5122 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5123 * most non filter in order to prevent data corruption.
5124 * Another benefit is that this tests exclude backing files which are
5125 * blocked by the backing blockers.
5126 */
e12f3784 5127 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
09158f00 5128 error_setg(errp, "Only top most non filter can be replaced");
5a7e7a0b
SH
5129 to_replace_bs = NULL;
5130 goto out;
09158f00
BC
5131 }
5132
5a7e7a0b
SH
5133out:
5134 aio_context_release(aio_context);
09158f00
BC
5135 return to_replace_bs;
5136}
448ad91d 5137
91af7014
HR
5138static bool append_open_options(QDict *d, BlockDriverState *bs)
5139{
5140 const QDictEntry *entry;
9e700c1a 5141 QemuOptDesc *desc;
260fecf1 5142 BdrvChild *child;
91af7014
HR
5143 bool found_any = false;
5144
5145 for (entry = qdict_first(bs->options); entry;
5146 entry = qdict_next(bs->options, entry))
5147 {
261dbcb1 5148 /* Exclude node-name references to children */
260fecf1 5149 QLIST_FOREACH(child, &bs->children, next) {
261dbcb1 5150 if (!strcmp(entry->key, child->name)) {
260fecf1
KW
5151 break;
5152 }
5153 }
5154 if (child) {
9e700c1a 5155 continue;
91af7014 5156 }
9e700c1a
KW
5157
5158 /* And exclude all non-driver-specific options */
5159 for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5160 if (!strcmp(qdict_entry_key(entry), desc->name)) {
5161 break;
5162 }
5163 }
5164 if (desc->name) {
5165 continue;
5166 }
5167
f5a74a5a
MAL
5168 qdict_put_obj(d, qdict_entry_key(entry),
5169 qobject_ref(qdict_entry_value(entry)));
9e700c1a 5170 found_any = true;
91af7014
HR
5171 }
5172
5173 return found_any;
5174}
5175
5176/* Updates the following BDS fields:
5177 * - exact_filename: A filename which may be used for opening a block device
5178 * which (mostly) equals the given BDS (even without any
5179 * other options; so reading and writing must return the same
5180 * results, but caching etc. may be different)
5181 * - full_open_options: Options which, when given when opening a block device
5182 * (without a filename), result in a BDS (mostly)
5183 * equalling the given one
5184 * - filename: If exact_filename is set, it is copied here. Otherwise,
5185 * full_open_options is converted to a JSON object, prefixed with
5186 * "json:" (for use through the JSON pseudo protocol) and put here.
5187 */
5188void bdrv_refresh_filename(BlockDriverState *bs)
5189{
5190 BlockDriver *drv = bs->drv;
5191 QDict *opts;
5192
5193 if (!drv) {
5194 return;
5195 }
5196
5197 /* This BDS's file name will most probably depend on its file's name, so
5198 * refresh that first */
5199 if (bs->file) {
9a4f4c31 5200 bdrv_refresh_filename(bs->file->bs);
91af7014
HR
5201 }
5202
5203 if (drv->bdrv_refresh_filename) {
5204 /* Obsolete information is of no use here, so drop the old file name
5205 * information before refreshing it */
5206 bs->exact_filename[0] = '\0';
5207 if (bs->full_open_options) {
cb3e7f08 5208 qobject_unref(bs->full_open_options);
91af7014
HR
5209 bs->full_open_options = NULL;
5210 }
5211
4cdd01d3
KW
5212 opts = qdict_new();
5213 append_open_options(opts, bs);
5214 drv->bdrv_refresh_filename(bs, opts);
cb3e7f08 5215 qobject_unref(opts);
91af7014
HR
5216 } else if (bs->file) {
5217 /* Try to reconstruct valid information from the underlying file */
5218 bool has_open_options;
5219
5220 bs->exact_filename[0] = '\0';
5221 if (bs->full_open_options) {
cb3e7f08 5222 qobject_unref(bs->full_open_options);
91af7014
HR
5223 bs->full_open_options = NULL;
5224 }
5225
5226 opts = qdict_new();
5227 has_open_options = append_open_options(opts, bs);
5228
5229 /* If no specific options have been given for this BDS, the filename of
5230 * the underlying file should suffice for this one as well */
9a4f4c31
KW
5231 if (bs->file->bs->exact_filename[0] && !has_open_options) {
5232 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
91af7014
HR
5233 }
5234 /* Reconstructing the full options QDict is simple for most format block
5235 * drivers, as long as the full options are known for the underlying
5236 * file BDS. The full options QDict of that file BDS should somehow
5237 * contain a representation of the filename, therefore the following
5238 * suffices without querying the (exact_)filename of this BDS. */
9a4f4c31 5239 if (bs->file->bs->full_open_options) {
46f5ac20 5240 qdict_put_str(opts, "driver", drv->format_name);
f5a74a5a
MAL
5241 qdict_put(opts, "file",
5242 qobject_ref(bs->file->bs->full_open_options));
91af7014
HR
5243
5244 bs->full_open_options = opts;
5245 } else {
cb3e7f08 5246 qobject_unref(opts);
91af7014
HR
5247 }
5248 } else if (!bs->full_open_options && qdict_size(bs->options)) {
5249 /* There is no underlying file BDS (at least referenced by BDS.file),
5250 * so the full options QDict should be equal to the options given
5251 * specifically for this block device when it was opened (plus the
5252 * driver specification).
5253 * Because those options don't change, there is no need to update
5254 * full_open_options when it's already set. */
5255
5256 opts = qdict_new();
5257 append_open_options(opts, bs);
46f5ac20 5258 qdict_put_str(opts, "driver", drv->format_name);
91af7014
HR
5259
5260 if (bs->exact_filename[0]) {
5261 /* This may not work for all block protocol drivers (some may
5262 * require this filename to be parsed), but we have to find some
5263 * default solution here, so just include it. If some block driver
5264 * does not support pure options without any filename at all or
5265 * needs some special format of the options QDict, it needs to
5266 * implement the driver-specific bdrv_refresh_filename() function.
5267 */
46f5ac20 5268 qdict_put_str(opts, "filename", bs->exact_filename);
91af7014
HR
5269 }
5270
5271 bs->full_open_options = opts;
5272 }
5273
5274 if (bs->exact_filename[0]) {
5275 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5276 } else if (bs->full_open_options) {
5277 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5278 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5279 qstring_get_str(json));
cb3e7f08 5280 qobject_unref(json);
91af7014
HR
5281 }
5282}
e06018ad
WC
5283
5284/*
5285 * Hot add/remove a BDS's child. So the user can take a child offline when
5286 * it is broken and take a new child online
5287 */
5288void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5289 Error **errp)
5290{
5291
5292 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5293 error_setg(errp, "The node %s does not support adding a child",
5294 bdrv_get_device_or_node_name(parent_bs));
5295 return;
5296 }
5297
5298 if (!QLIST_EMPTY(&child_bs->parents)) {
5299 error_setg(errp, "The node %s already has a parent",
5300 child_bs->node_name);
5301 return;
5302 }
5303
5304 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5305}
5306
5307void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5308{
5309 BdrvChild *tmp;
5310
5311 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5312 error_setg(errp, "The node %s does not support removing a child",
5313 bdrv_get_device_or_node_name(parent_bs));
5314 return;
5315 }
5316
5317 QLIST_FOREACH(tmp, &parent_bs->children, next) {
5318 if (tmp == child) {
5319 break;
5320 }
5321 }
5322
5323 if (!tmp) {
5324 error_setg(errp, "The node %s does not have a child named %s",
5325 bdrv_get_device_or_node_name(parent_bs),
5326 bdrv_get_device_or_node_name(child->bs));
5327 return;
5328 }
5329
5330 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5331}
67b792f5
VSO
5332
5333bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5334 uint32_t granularity, Error **errp)
5335{
5336 BlockDriver *drv = bs->drv;
5337
5338 if (!drv) {
5339 error_setg_errno(errp, ENOMEDIUM,
5340 "Can't store persistent bitmaps to %s",
5341 bdrv_get_device_or_node_name(bs));
5342 return false;
5343 }
5344
5345 if (!drv->bdrv_can_store_new_dirty_bitmap) {
5346 error_setg_errno(errp, ENOTSUP,
5347 "Can't store persistent bitmaps to %s",
5348 bdrv_get_device_or_node_name(bs));
5349 return false;
5350 }
5351
5352 return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5353}