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