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