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