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