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