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