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