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