]> git.ipfire.org Git - thirdparty/qemu.git/blob - block.c
block: add bdrv_set_read_only() helper function
[thirdparty/qemu.git] / block.c
1 /*
2 * QEMU System Emulator block driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include "qemu/osdep.h"
25 #include "block/trace.h"
26 #include "block/block_int.h"
27 #include "block/blockjob.h"
28 #include "block/nbd.h"
29 #include "qemu/error-report.h"
30 #include "module_block.h"
31 #include "qemu/module.h"
32 #include "qapi/qmp/qerror.h"
33 #include "qapi/qmp/qbool.h"
34 #include "qapi/qmp/qjson.h"
35 #include "sysemu/block-backend.h"
36 #include "sysemu/sysemu.h"
37 #include "qemu/notify.h"
38 #include "qemu/coroutine.h"
39 #include "block/qapi.h"
40 #include "qmp-commands.h"
41 #include "qemu/timer.h"
42 #include "qapi-event.h"
43 #include "qemu/cutils.h"
44 #include "qemu/id.h"
45 #include "qapi/util.h"
46
47 #ifdef CONFIG_BSD
48 #include <sys/ioctl.h>
49 #include <sys/queue.h>
50 #ifndef __DragonFly__
51 #include <sys/disk.h>
52 #endif
53 #endif
54
55 #ifdef _WIN32
56 #include <windows.h>
57 #endif
58
59 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
60
61 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
62 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
63
64 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
65 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
66
67 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
68 QLIST_HEAD_INITIALIZER(bdrv_drivers);
69
70 static BlockDriverState *bdrv_open_inherit(const char *filename,
71 const char *reference,
72 QDict *options, int flags,
73 BlockDriverState *parent,
74 const BdrvChildRole *child_role,
75 Error **errp);
76
77 /* If non-zero, use only whitelisted block drivers */
78 static int use_bdrv_whitelist;
79
80 #ifdef _WIN32
81 static int is_windows_drive_prefix(const char *filename)
82 {
83 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
84 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
85 filename[1] == ':');
86 }
87
88 int is_windows_drive(const char *filename)
89 {
90 if (is_windows_drive_prefix(filename) &&
91 filename[2] == '\0')
92 return 1;
93 if (strstart(filename, "\\\\.\\", NULL) ||
94 strstart(filename, "//./", NULL))
95 return 1;
96 return 0;
97 }
98 #endif
99
100 size_t bdrv_opt_mem_align(BlockDriverState *bs)
101 {
102 if (!bs || !bs->drv) {
103 /* page size or 4k (hdd sector size) should be on the safe side */
104 return MAX(4096, getpagesize());
105 }
106
107 return bs->bl.opt_mem_alignment;
108 }
109
110 size_t bdrv_min_mem_align(BlockDriverState *bs)
111 {
112 if (!bs || !bs->drv) {
113 /* page size or 4k (hdd sector size) should be on the safe side */
114 return MAX(4096, getpagesize());
115 }
116
117 return bs->bl.min_mem_alignment;
118 }
119
120 /* check if the path starts with "<protocol>:" */
121 int path_has_protocol(const char *path)
122 {
123 const char *p;
124
125 #ifdef _WIN32
126 if (is_windows_drive(path) ||
127 is_windows_drive_prefix(path)) {
128 return 0;
129 }
130 p = path + strcspn(path, ":/\\");
131 #else
132 p = path + strcspn(path, ":/");
133 #endif
134
135 return *p == ':';
136 }
137
138 int path_is_absolute(const char *path)
139 {
140 #ifdef _WIN32
141 /* specific case for names like: "\\.\d:" */
142 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
143 return 1;
144 }
145 return (*path == '/' || *path == '\\');
146 #else
147 return (*path == '/');
148 #endif
149 }
150
151 /* if filename is absolute, just copy it to dest. Otherwise, build a
152 path to it by considering it is relative to base_path. URL are
153 supported. */
154 void path_combine(char *dest, int dest_size,
155 const char *base_path,
156 const char *filename)
157 {
158 const char *p, *p1;
159 int len;
160
161 if (dest_size <= 0)
162 return;
163 if (path_is_absolute(filename)) {
164 pstrcpy(dest, dest_size, filename);
165 } else {
166 p = strchr(base_path, ':');
167 if (p)
168 p++;
169 else
170 p = base_path;
171 p1 = strrchr(base_path, '/');
172 #ifdef _WIN32
173 {
174 const char *p2;
175 p2 = strrchr(base_path, '\\');
176 if (!p1 || p2 > p1)
177 p1 = p2;
178 }
179 #endif
180 if (p1)
181 p1++;
182 else
183 p1 = base_path;
184 if (p1 > p)
185 p = p1;
186 len = p - base_path;
187 if (len > dest_size - 1)
188 len = dest_size - 1;
189 memcpy(dest, base_path, len);
190 dest[len] = '\0';
191 pstrcat(dest, dest_size, filename);
192 }
193 }
194
195 void bdrv_set_read_only(BlockDriverState *bs, bool read_only)
196 {
197 bs->read_only = read_only;
198 }
199
200 void bdrv_get_full_backing_filename_from_filename(const char *backed,
201 const char *backing,
202 char *dest, size_t sz,
203 Error **errp)
204 {
205 if (backing[0] == '\0' || path_has_protocol(backing) ||
206 path_is_absolute(backing))
207 {
208 pstrcpy(dest, sz, backing);
209 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
210 error_setg(errp, "Cannot use relative backing file names for '%s'",
211 backed);
212 } else {
213 path_combine(dest, sz, backed, backing);
214 }
215 }
216
217 void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
218 Error **errp)
219 {
220 char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
221
222 bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
223 dest, sz, errp);
224 }
225
226 void bdrv_register(BlockDriver *bdrv)
227 {
228 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
229 }
230
231 BlockDriverState *bdrv_new(void)
232 {
233 BlockDriverState *bs;
234 int i;
235
236 bs = g_new0(BlockDriverState, 1);
237 QLIST_INIT(&bs->dirty_bitmaps);
238 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
239 QLIST_INIT(&bs->op_blockers[i]);
240 }
241 notifier_with_return_list_init(&bs->before_write_notifiers);
242 bs->refcnt = 1;
243 bs->aio_context = qemu_get_aio_context();
244
245 qemu_co_queue_init(&bs->flush_queue);
246
247 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
248
249 return bs;
250 }
251
252 static BlockDriver *bdrv_do_find_format(const char *format_name)
253 {
254 BlockDriver *drv1;
255
256 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
257 if (!strcmp(drv1->format_name, format_name)) {
258 return drv1;
259 }
260 }
261
262 return NULL;
263 }
264
265 BlockDriver *bdrv_find_format(const char *format_name)
266 {
267 BlockDriver *drv1;
268 int i;
269
270 drv1 = bdrv_do_find_format(format_name);
271 if (drv1) {
272 return drv1;
273 }
274
275 /* The driver isn't registered, maybe we need to load a module */
276 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
277 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
278 block_module_load_one(block_driver_modules[i].library_name);
279 break;
280 }
281 }
282
283 return bdrv_do_find_format(format_name);
284 }
285
286 static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
287 {
288 static const char *whitelist_rw[] = {
289 CONFIG_BDRV_RW_WHITELIST
290 };
291 static const char *whitelist_ro[] = {
292 CONFIG_BDRV_RO_WHITELIST
293 };
294 const char **p;
295
296 if (!whitelist_rw[0] && !whitelist_ro[0]) {
297 return 1; /* no whitelist, anything goes */
298 }
299
300 for (p = whitelist_rw; *p; p++) {
301 if (!strcmp(drv->format_name, *p)) {
302 return 1;
303 }
304 }
305 if (read_only) {
306 for (p = whitelist_ro; *p; p++) {
307 if (!strcmp(drv->format_name, *p)) {
308 return 1;
309 }
310 }
311 }
312 return 0;
313 }
314
315 bool bdrv_uses_whitelist(void)
316 {
317 return use_bdrv_whitelist;
318 }
319
320 typedef struct CreateCo {
321 BlockDriver *drv;
322 char *filename;
323 QemuOpts *opts;
324 int ret;
325 Error *err;
326 } CreateCo;
327
328 static void coroutine_fn bdrv_create_co_entry(void *opaque)
329 {
330 Error *local_err = NULL;
331 int ret;
332
333 CreateCo *cco = opaque;
334 assert(cco->drv);
335
336 ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
337 error_propagate(&cco->err, local_err);
338 cco->ret = ret;
339 }
340
341 int bdrv_create(BlockDriver *drv, const char* filename,
342 QemuOpts *opts, Error **errp)
343 {
344 int ret;
345
346 Coroutine *co;
347 CreateCo cco = {
348 .drv = drv,
349 .filename = g_strdup(filename),
350 .opts = opts,
351 .ret = NOT_DONE,
352 .err = NULL,
353 };
354
355 if (!drv->bdrv_create) {
356 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
357 ret = -ENOTSUP;
358 goto out;
359 }
360
361 if (qemu_in_coroutine()) {
362 /* Fast-path if already in coroutine context */
363 bdrv_create_co_entry(&cco);
364 } else {
365 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
366 qemu_coroutine_enter(co);
367 while (cco.ret == NOT_DONE) {
368 aio_poll(qemu_get_aio_context(), true);
369 }
370 }
371
372 ret = cco.ret;
373 if (ret < 0) {
374 if (cco.err) {
375 error_propagate(errp, cco.err);
376 } else {
377 error_setg_errno(errp, -ret, "Could not create image");
378 }
379 }
380
381 out:
382 g_free(cco.filename);
383 return ret;
384 }
385
386 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
387 {
388 BlockDriver *drv;
389 Error *local_err = NULL;
390 int ret;
391
392 drv = bdrv_find_protocol(filename, true, errp);
393 if (drv == NULL) {
394 return -ENOENT;
395 }
396
397 ret = bdrv_create(drv, filename, opts, &local_err);
398 error_propagate(errp, local_err);
399 return ret;
400 }
401
402 /**
403 * Try to get @bs's logical and physical block size.
404 * On success, store them in @bsz struct and return 0.
405 * On failure return -errno.
406 * @bs must not be empty.
407 */
408 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
409 {
410 BlockDriver *drv = bs->drv;
411
412 if (drv && drv->bdrv_probe_blocksizes) {
413 return drv->bdrv_probe_blocksizes(bs, bsz);
414 }
415
416 return -ENOTSUP;
417 }
418
419 /**
420 * Try to get @bs's geometry (cyls, heads, sectors).
421 * On success, store them in @geo struct and return 0.
422 * On failure return -errno.
423 * @bs must not be empty.
424 */
425 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
426 {
427 BlockDriver *drv = bs->drv;
428
429 if (drv && drv->bdrv_probe_geometry) {
430 return drv->bdrv_probe_geometry(bs, geo);
431 }
432
433 return -ENOTSUP;
434 }
435
436 /*
437 * Create a uniquely-named empty temporary file.
438 * Return 0 upon success, otherwise a negative errno value.
439 */
440 int get_tmp_filename(char *filename, int size)
441 {
442 #ifdef _WIN32
443 char temp_dir[MAX_PATH];
444 /* GetTempFileName requires that its output buffer (4th param)
445 have length MAX_PATH or greater. */
446 assert(size >= MAX_PATH);
447 return (GetTempPath(MAX_PATH, temp_dir)
448 && GetTempFileName(temp_dir, "qem", 0, filename)
449 ? 0 : -GetLastError());
450 #else
451 int fd;
452 const char *tmpdir;
453 tmpdir = getenv("TMPDIR");
454 if (!tmpdir) {
455 tmpdir = "/var/tmp";
456 }
457 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
458 return -EOVERFLOW;
459 }
460 fd = mkstemp(filename);
461 if (fd < 0) {
462 return -errno;
463 }
464 if (close(fd) != 0) {
465 unlink(filename);
466 return -errno;
467 }
468 return 0;
469 #endif
470 }
471
472 /*
473 * Detect host devices. By convention, /dev/cdrom[N] is always
474 * recognized as a host CDROM.
475 */
476 static BlockDriver *find_hdev_driver(const char *filename)
477 {
478 int score_max = 0, score;
479 BlockDriver *drv = NULL, *d;
480
481 QLIST_FOREACH(d, &bdrv_drivers, list) {
482 if (d->bdrv_probe_device) {
483 score = d->bdrv_probe_device(filename);
484 if (score > score_max) {
485 score_max = score;
486 drv = d;
487 }
488 }
489 }
490
491 return drv;
492 }
493
494 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
495 {
496 BlockDriver *drv1;
497
498 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
499 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
500 return drv1;
501 }
502 }
503
504 return NULL;
505 }
506
507 BlockDriver *bdrv_find_protocol(const char *filename,
508 bool allow_protocol_prefix,
509 Error **errp)
510 {
511 BlockDriver *drv1;
512 char protocol[128];
513 int len;
514 const char *p;
515 int i;
516
517 /* TODO Drivers without bdrv_file_open must be specified explicitly */
518
519 /*
520 * XXX(hch): we really should not let host device detection
521 * override an explicit protocol specification, but moving this
522 * later breaks access to device names with colons in them.
523 * Thanks to the brain-dead persistent naming schemes on udev-
524 * based Linux systems those actually are quite common.
525 */
526 drv1 = find_hdev_driver(filename);
527 if (drv1) {
528 return drv1;
529 }
530
531 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
532 return &bdrv_file;
533 }
534
535 p = strchr(filename, ':');
536 assert(p != NULL);
537 len = p - filename;
538 if (len > sizeof(protocol) - 1)
539 len = sizeof(protocol) - 1;
540 memcpy(protocol, filename, len);
541 protocol[len] = '\0';
542
543 drv1 = bdrv_do_find_protocol(protocol);
544 if (drv1) {
545 return drv1;
546 }
547
548 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
549 if (block_driver_modules[i].protocol_name &&
550 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
551 block_module_load_one(block_driver_modules[i].library_name);
552 break;
553 }
554 }
555
556 drv1 = bdrv_do_find_protocol(protocol);
557 if (!drv1) {
558 error_setg(errp, "Unknown protocol '%s'", protocol);
559 }
560 return drv1;
561 }
562
563 /*
564 * Guess image format by probing its contents.
565 * This is not a good idea when your image is raw (CVE-2008-2004), but
566 * we do it anyway for backward compatibility.
567 *
568 * @buf contains the image's first @buf_size bytes.
569 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
570 * but can be smaller if the image file is smaller)
571 * @filename is its filename.
572 *
573 * For all block drivers, call the bdrv_probe() method to get its
574 * probing score.
575 * Return the first block driver with the highest probing score.
576 */
577 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
578 const char *filename)
579 {
580 int score_max = 0, score;
581 BlockDriver *drv = NULL, *d;
582
583 QLIST_FOREACH(d, &bdrv_drivers, list) {
584 if (d->bdrv_probe) {
585 score = d->bdrv_probe(buf, buf_size, filename);
586 if (score > score_max) {
587 score_max = score;
588 drv = d;
589 }
590 }
591 }
592
593 return drv;
594 }
595
596 static int find_image_format(BlockBackend *file, const char *filename,
597 BlockDriver **pdrv, Error **errp)
598 {
599 BlockDriver *drv;
600 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
601 int ret = 0;
602
603 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
604 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
605 *pdrv = &bdrv_raw;
606 return ret;
607 }
608
609 ret = blk_pread(file, 0, buf, sizeof(buf));
610 if (ret < 0) {
611 error_setg_errno(errp, -ret, "Could not read image for determining its "
612 "format");
613 *pdrv = NULL;
614 return ret;
615 }
616
617 drv = bdrv_probe_all(buf, ret, filename);
618 if (!drv) {
619 error_setg(errp, "Could not determine image format: No compatible "
620 "driver found");
621 ret = -ENOENT;
622 }
623 *pdrv = drv;
624 return ret;
625 }
626
627 /**
628 * Set the current 'total_sectors' value
629 * Return 0 on success, -errno on error.
630 */
631 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
632 {
633 BlockDriver *drv = bs->drv;
634
635 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
636 if (bdrv_is_sg(bs))
637 return 0;
638
639 /* query actual device if possible, otherwise just trust the hint */
640 if (drv->bdrv_getlength) {
641 int64_t length = drv->bdrv_getlength(bs);
642 if (length < 0) {
643 return length;
644 }
645 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
646 }
647
648 bs->total_sectors = hint;
649 return 0;
650 }
651
652 /**
653 * Combines a QDict of new block driver @options with any missing options taken
654 * from @old_options, so that leaving out an option defaults to its old value.
655 */
656 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
657 QDict *old_options)
658 {
659 if (bs->drv && bs->drv->bdrv_join_options) {
660 bs->drv->bdrv_join_options(options, old_options);
661 } else {
662 qdict_join(options, old_options, false);
663 }
664 }
665
666 /**
667 * Set open flags for a given discard mode
668 *
669 * Return 0 on success, -1 if the discard mode was invalid.
670 */
671 int bdrv_parse_discard_flags(const char *mode, int *flags)
672 {
673 *flags &= ~BDRV_O_UNMAP;
674
675 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
676 /* do nothing */
677 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
678 *flags |= BDRV_O_UNMAP;
679 } else {
680 return -1;
681 }
682
683 return 0;
684 }
685
686 /**
687 * Set open flags for a given cache mode
688 *
689 * Return 0 on success, -1 if the cache mode was invalid.
690 */
691 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
692 {
693 *flags &= ~BDRV_O_CACHE_MASK;
694
695 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
696 *writethrough = false;
697 *flags |= BDRV_O_NOCACHE;
698 } else if (!strcmp(mode, "directsync")) {
699 *writethrough = true;
700 *flags |= BDRV_O_NOCACHE;
701 } else if (!strcmp(mode, "writeback")) {
702 *writethrough = false;
703 } else if (!strcmp(mode, "unsafe")) {
704 *writethrough = false;
705 *flags |= BDRV_O_NO_FLUSH;
706 } else if (!strcmp(mode, "writethrough")) {
707 *writethrough = true;
708 } else {
709 return -1;
710 }
711
712 return 0;
713 }
714
715 static char *bdrv_child_get_parent_desc(BdrvChild *c)
716 {
717 BlockDriverState *parent = c->opaque;
718 return g_strdup(bdrv_get_device_or_node_name(parent));
719 }
720
721 static void bdrv_child_cb_drained_begin(BdrvChild *child)
722 {
723 BlockDriverState *bs = child->opaque;
724 bdrv_drained_begin(bs);
725 }
726
727 static void bdrv_child_cb_drained_end(BdrvChild *child)
728 {
729 BlockDriverState *bs = child->opaque;
730 bdrv_drained_end(bs);
731 }
732
733 /*
734 * Returns the options and flags that a temporary snapshot should get, based on
735 * the originally requested flags (the originally requested image will have
736 * flags like a backing file)
737 */
738 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
739 int parent_flags, QDict *parent_options)
740 {
741 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
742
743 /* For temporary files, unconditional cache=unsafe is fine */
744 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
745 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
746
747 /* Copy the read-only option from the parent */
748 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
749
750 /* aio=native doesn't work for cache.direct=off, so disable it for the
751 * temporary snapshot */
752 *child_flags &= ~BDRV_O_NATIVE_AIO;
753 }
754
755 /*
756 * Returns the options and flags that bs->file should get if a protocol driver
757 * is expected, based on the given options and flags for the parent BDS
758 */
759 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
760 int parent_flags, QDict *parent_options)
761 {
762 int flags = parent_flags;
763
764 /* Enable protocol handling, disable format probing for bs->file */
765 flags |= BDRV_O_PROTOCOL;
766
767 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
768 * the parent. */
769 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
770 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
771
772 /* Inherit the read-only option from the parent if it's not set */
773 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
774
775 /* Our block drivers take care to send flushes and respect unmap policy,
776 * so we can default to enable both on lower layers regardless of the
777 * corresponding parent options. */
778 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
779
780 /* Clear flags that only apply to the top layer */
781 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
782 BDRV_O_NO_IO);
783
784 *child_flags = flags;
785 }
786
787 const BdrvChildRole child_file = {
788 .get_parent_desc = bdrv_child_get_parent_desc,
789 .inherit_options = bdrv_inherited_options,
790 .drained_begin = bdrv_child_cb_drained_begin,
791 .drained_end = bdrv_child_cb_drained_end,
792 };
793
794 /*
795 * Returns the options and flags that bs->file should get if the use of formats
796 * (and not only protocols) is permitted for it, based on the given options and
797 * flags for the parent BDS
798 */
799 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
800 int parent_flags, QDict *parent_options)
801 {
802 child_file.inherit_options(child_flags, child_options,
803 parent_flags, parent_options);
804
805 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
806 }
807
808 const BdrvChildRole child_format = {
809 .get_parent_desc = bdrv_child_get_parent_desc,
810 .inherit_options = bdrv_inherited_fmt_options,
811 .drained_begin = bdrv_child_cb_drained_begin,
812 .drained_end = bdrv_child_cb_drained_end,
813 };
814
815 static void bdrv_backing_attach(BdrvChild *c)
816 {
817 BlockDriverState *parent = c->opaque;
818 BlockDriverState *backing_hd = c->bs;
819
820 assert(!parent->backing_blocker);
821 error_setg(&parent->backing_blocker,
822 "node is used as backing hd of '%s'",
823 bdrv_get_device_or_node_name(parent));
824
825 parent->open_flags &= ~BDRV_O_NO_BACKING;
826 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
827 backing_hd->filename);
828 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
829 backing_hd->drv ? backing_hd->drv->format_name : "");
830
831 bdrv_op_block_all(backing_hd, parent->backing_blocker);
832 /* Otherwise we won't be able to commit or stream */
833 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
834 parent->backing_blocker);
835 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
836 parent->backing_blocker);
837 /*
838 * We do backup in 3 ways:
839 * 1. drive backup
840 * The target bs is new opened, and the source is top BDS
841 * 2. blockdev backup
842 * Both the source and the target are top BDSes.
843 * 3. internal backup(used for block replication)
844 * Both the source and the target are backing file
845 *
846 * In case 1 and 2, neither the source nor the target is the backing file.
847 * In case 3, we will block the top BDS, so there is only one block job
848 * for the top BDS and its backing chain.
849 */
850 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
851 parent->backing_blocker);
852 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
853 parent->backing_blocker);
854 }
855
856 static void bdrv_backing_detach(BdrvChild *c)
857 {
858 BlockDriverState *parent = c->opaque;
859
860 assert(parent->backing_blocker);
861 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
862 error_free(parent->backing_blocker);
863 parent->backing_blocker = NULL;
864 }
865
866 /*
867 * Returns the options and flags that bs->backing should get, based on the
868 * given options and flags for the parent BDS
869 */
870 static void bdrv_backing_options(int *child_flags, QDict *child_options,
871 int parent_flags, QDict *parent_options)
872 {
873 int flags = parent_flags;
874
875 /* The cache mode is inherited unmodified for backing files; except WCE,
876 * which is only applied on the top level (BlockBackend) */
877 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
878 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
879
880 /* backing files always opened read-only */
881 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
882 flags &= ~BDRV_O_COPY_ON_READ;
883
884 /* snapshot=on is handled on the top layer */
885 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
886
887 *child_flags = flags;
888 }
889
890 const BdrvChildRole child_backing = {
891 .get_parent_desc = bdrv_child_get_parent_desc,
892 .attach = bdrv_backing_attach,
893 .detach = bdrv_backing_detach,
894 .inherit_options = bdrv_backing_options,
895 .drained_begin = bdrv_child_cb_drained_begin,
896 .drained_end = bdrv_child_cb_drained_end,
897 };
898
899 static int bdrv_open_flags(BlockDriverState *bs, int flags)
900 {
901 int open_flags = flags;
902
903 /*
904 * Clear flags that are internal to the block layer before opening the
905 * image.
906 */
907 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
908
909 /*
910 * Snapshots should be writable.
911 */
912 if (flags & BDRV_O_TEMPORARY) {
913 open_flags |= BDRV_O_RDWR;
914 }
915
916 return open_flags;
917 }
918
919 static void update_flags_from_options(int *flags, QemuOpts *opts)
920 {
921 *flags &= ~BDRV_O_CACHE_MASK;
922
923 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
924 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
925 *flags |= BDRV_O_NO_FLUSH;
926 }
927
928 assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
929 if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
930 *flags |= BDRV_O_NOCACHE;
931 }
932
933 *flags &= ~BDRV_O_RDWR;
934
935 assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
936 if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
937 *flags |= BDRV_O_RDWR;
938 }
939
940 }
941
942 static void update_options_from_flags(QDict *options, int flags)
943 {
944 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
945 qdict_put(options, BDRV_OPT_CACHE_DIRECT,
946 qbool_from_bool(flags & BDRV_O_NOCACHE));
947 }
948 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
949 qdict_put(options, BDRV_OPT_CACHE_NO_FLUSH,
950 qbool_from_bool(flags & BDRV_O_NO_FLUSH));
951 }
952 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
953 qdict_put(options, BDRV_OPT_READ_ONLY,
954 qbool_from_bool(!(flags & BDRV_O_RDWR)));
955 }
956 }
957
958 static void bdrv_assign_node_name(BlockDriverState *bs,
959 const char *node_name,
960 Error **errp)
961 {
962 char *gen_node_name = NULL;
963
964 if (!node_name) {
965 node_name = gen_node_name = id_generate(ID_BLOCK);
966 } else if (!id_wellformed(node_name)) {
967 /*
968 * Check for empty string or invalid characters, but not if it is
969 * generated (generated names use characters not available to the user)
970 */
971 error_setg(errp, "Invalid node name");
972 return;
973 }
974
975 /* takes care of avoiding namespaces collisions */
976 if (blk_by_name(node_name)) {
977 error_setg(errp, "node-name=%s is conflicting with a device id",
978 node_name);
979 goto out;
980 }
981
982 /* takes care of avoiding duplicates node names */
983 if (bdrv_find_node(node_name)) {
984 error_setg(errp, "Duplicate node name");
985 goto out;
986 }
987
988 /* copy node name into the bs and insert it into the graph list */
989 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
990 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
991 out:
992 g_free(gen_node_name);
993 }
994
995 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
996 const char *node_name, QDict *options,
997 int open_flags, Error **errp)
998 {
999 Error *local_err = NULL;
1000 int ret;
1001
1002 bdrv_assign_node_name(bs, node_name, &local_err);
1003 if (local_err) {
1004 error_propagate(errp, local_err);
1005 return -EINVAL;
1006 }
1007
1008 bs->drv = drv;
1009 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1010 bs->opaque = g_malloc0(drv->instance_size);
1011
1012 if (drv->bdrv_file_open) {
1013 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1014 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1015 } else if (drv->bdrv_open) {
1016 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1017 } else {
1018 ret = 0;
1019 }
1020
1021 if (ret < 0) {
1022 if (local_err) {
1023 error_propagate(errp, local_err);
1024 } else if (bs->filename[0]) {
1025 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1026 } else {
1027 error_setg_errno(errp, -ret, "Could not open image");
1028 }
1029 goto free_and_fail;
1030 }
1031
1032 ret = refresh_total_sectors(bs, bs->total_sectors);
1033 if (ret < 0) {
1034 error_setg_errno(errp, -ret, "Could not refresh total sector count");
1035 goto free_and_fail;
1036 }
1037
1038 bdrv_refresh_limits(bs, &local_err);
1039 if (local_err) {
1040 error_propagate(errp, local_err);
1041 ret = -EINVAL;
1042 goto free_and_fail;
1043 }
1044
1045 assert(bdrv_opt_mem_align(bs) != 0);
1046 assert(bdrv_min_mem_align(bs) != 0);
1047 assert(is_power_of_2(bs->bl.request_alignment));
1048
1049 return 0;
1050
1051 free_and_fail:
1052 /* FIXME Close bs first if already opened*/
1053 g_free(bs->opaque);
1054 bs->opaque = NULL;
1055 bs->drv = NULL;
1056 return ret;
1057 }
1058
1059 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1060 int flags, Error **errp)
1061 {
1062 BlockDriverState *bs;
1063 int ret;
1064
1065 bs = bdrv_new();
1066 bs->open_flags = flags;
1067 bs->explicit_options = qdict_new();
1068 bs->options = qdict_new();
1069 bs->opaque = NULL;
1070
1071 update_options_from_flags(bs->options, flags);
1072
1073 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1074 if (ret < 0) {
1075 QDECREF(bs->explicit_options);
1076 QDECREF(bs->options);
1077 bdrv_unref(bs);
1078 return NULL;
1079 }
1080
1081 return bs;
1082 }
1083
1084 QemuOptsList bdrv_runtime_opts = {
1085 .name = "bdrv_common",
1086 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1087 .desc = {
1088 {
1089 .name = "node-name",
1090 .type = QEMU_OPT_STRING,
1091 .help = "Node name of the block device node",
1092 },
1093 {
1094 .name = "driver",
1095 .type = QEMU_OPT_STRING,
1096 .help = "Block driver to use for the node",
1097 },
1098 {
1099 .name = BDRV_OPT_CACHE_DIRECT,
1100 .type = QEMU_OPT_BOOL,
1101 .help = "Bypass software writeback cache on the host",
1102 },
1103 {
1104 .name = BDRV_OPT_CACHE_NO_FLUSH,
1105 .type = QEMU_OPT_BOOL,
1106 .help = "Ignore flush requests",
1107 },
1108 {
1109 .name = BDRV_OPT_READ_ONLY,
1110 .type = QEMU_OPT_BOOL,
1111 .help = "Node is opened in read-only mode",
1112 },
1113 {
1114 .name = "detect-zeroes",
1115 .type = QEMU_OPT_STRING,
1116 .help = "try to optimize zero writes (off, on, unmap)",
1117 },
1118 {
1119 .name = "discard",
1120 .type = QEMU_OPT_STRING,
1121 .help = "discard operation (ignore/off, unmap/on)",
1122 },
1123 { /* end of list */ }
1124 },
1125 };
1126
1127 /*
1128 * Common part for opening disk images and files
1129 *
1130 * Removes all processed options from *options.
1131 */
1132 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1133 QDict *options, Error **errp)
1134 {
1135 int ret, open_flags;
1136 const char *filename;
1137 const char *driver_name = NULL;
1138 const char *node_name = NULL;
1139 const char *discard;
1140 const char *detect_zeroes;
1141 QemuOpts *opts;
1142 BlockDriver *drv;
1143 Error *local_err = NULL;
1144
1145 assert(bs->file == NULL);
1146 assert(options != NULL && bs->options != options);
1147
1148 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1149 qemu_opts_absorb_qdict(opts, options, &local_err);
1150 if (local_err) {
1151 error_propagate(errp, local_err);
1152 ret = -EINVAL;
1153 goto fail_opts;
1154 }
1155
1156 update_flags_from_options(&bs->open_flags, opts);
1157
1158 driver_name = qemu_opt_get(opts, "driver");
1159 drv = bdrv_find_format(driver_name);
1160 assert(drv != NULL);
1161
1162 if (file != NULL) {
1163 filename = blk_bs(file)->filename;
1164 } else {
1165 /*
1166 * Caution: while qdict_get_try_str() is fine, getting
1167 * non-string types would require more care. When @options
1168 * come from -blockdev or blockdev_add, its members are typed
1169 * according to the QAPI schema, but when they come from
1170 * -drive, they're all QString.
1171 */
1172 filename = qdict_get_try_str(options, "filename");
1173 }
1174
1175 if (drv->bdrv_needs_filename && !filename) {
1176 error_setg(errp, "The '%s' block driver requires a file name",
1177 drv->format_name);
1178 ret = -EINVAL;
1179 goto fail_opts;
1180 }
1181
1182 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1183 drv->format_name);
1184
1185 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1186
1187 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1188 error_setg(errp,
1189 !bs->read_only && bdrv_is_whitelisted(drv, true)
1190 ? "Driver '%s' can only be used for read-only devices"
1191 : "Driver '%s' is not whitelisted",
1192 drv->format_name);
1193 ret = -ENOTSUP;
1194 goto fail_opts;
1195 }
1196
1197 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
1198 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1199 if (!bs->read_only) {
1200 bdrv_enable_copy_on_read(bs);
1201 } else {
1202 error_setg(errp, "Can't use copy-on-read on read-only device");
1203 ret = -EINVAL;
1204 goto fail_opts;
1205 }
1206 }
1207
1208 discard = qemu_opt_get(opts, "discard");
1209 if (discard != NULL) {
1210 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1211 error_setg(errp, "Invalid discard option");
1212 ret = -EINVAL;
1213 goto fail_opts;
1214 }
1215 }
1216
1217 detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1218 if (detect_zeroes) {
1219 BlockdevDetectZeroesOptions value =
1220 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
1221 detect_zeroes,
1222 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
1223 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1224 &local_err);
1225 if (local_err) {
1226 error_propagate(errp, local_err);
1227 ret = -EINVAL;
1228 goto fail_opts;
1229 }
1230
1231 if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1232 !(bs->open_flags & BDRV_O_UNMAP))
1233 {
1234 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1235 "without setting discard operation to unmap");
1236 ret = -EINVAL;
1237 goto fail_opts;
1238 }
1239
1240 bs->detect_zeroes = value;
1241 }
1242
1243 if (filename != NULL) {
1244 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1245 } else {
1246 bs->filename[0] = '\0';
1247 }
1248 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1249
1250 /* Open the image, either directly or using a protocol */
1251 open_flags = bdrv_open_flags(bs, bs->open_flags);
1252 node_name = qemu_opt_get(opts, "node-name");
1253
1254 assert(!drv->bdrv_file_open || file == NULL);
1255 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1256 if (ret < 0) {
1257 goto fail_opts;
1258 }
1259
1260 qemu_opts_del(opts);
1261 return 0;
1262
1263 fail_opts:
1264 qemu_opts_del(opts);
1265 return ret;
1266 }
1267
1268 static QDict *parse_json_filename(const char *filename, Error **errp)
1269 {
1270 QObject *options_obj;
1271 QDict *options;
1272 int ret;
1273
1274 ret = strstart(filename, "json:", &filename);
1275 assert(ret);
1276
1277 options_obj = qobject_from_json(filename, errp);
1278 if (!options_obj) {
1279 /* Work around qobject_from_json() lossage TODO fix that */
1280 if (errp && !*errp) {
1281 error_setg(errp, "Could not parse the JSON options");
1282 return NULL;
1283 }
1284 error_prepend(errp, "Could not parse the JSON options: ");
1285 return NULL;
1286 }
1287
1288 options = qobject_to_qdict(options_obj);
1289 if (!options) {
1290 qobject_decref(options_obj);
1291 error_setg(errp, "Invalid JSON object given");
1292 return NULL;
1293 }
1294
1295 qdict_flatten(options);
1296
1297 return options;
1298 }
1299
1300 static void parse_json_protocol(QDict *options, const char **pfilename,
1301 Error **errp)
1302 {
1303 QDict *json_options;
1304 Error *local_err = NULL;
1305
1306 /* Parse json: pseudo-protocol */
1307 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1308 return;
1309 }
1310
1311 json_options = parse_json_filename(*pfilename, &local_err);
1312 if (local_err) {
1313 error_propagate(errp, local_err);
1314 return;
1315 }
1316
1317 /* Options given in the filename have lower priority than options
1318 * specified directly */
1319 qdict_join(options, json_options, false);
1320 QDECREF(json_options);
1321 *pfilename = NULL;
1322 }
1323
1324 /*
1325 * Fills in default options for opening images and converts the legacy
1326 * filename/flags pair to option QDict entries.
1327 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1328 * block driver has been specified explicitly.
1329 */
1330 static int bdrv_fill_options(QDict **options, const char *filename,
1331 int *flags, Error **errp)
1332 {
1333 const char *drvname;
1334 bool protocol = *flags & BDRV_O_PROTOCOL;
1335 bool parse_filename = false;
1336 BlockDriver *drv = NULL;
1337 Error *local_err = NULL;
1338
1339 /*
1340 * Caution: while qdict_get_try_str() is fine, getting non-string
1341 * types would require more care. When @options come from
1342 * -blockdev or blockdev_add, its members are typed according to
1343 * the QAPI schema, but when they come from -drive, they're all
1344 * QString.
1345 */
1346 drvname = qdict_get_try_str(*options, "driver");
1347 if (drvname) {
1348 drv = bdrv_find_format(drvname);
1349 if (!drv) {
1350 error_setg(errp, "Unknown driver '%s'", drvname);
1351 return -ENOENT;
1352 }
1353 /* If the user has explicitly specified the driver, this choice should
1354 * override the BDRV_O_PROTOCOL flag */
1355 protocol = drv->bdrv_file_open;
1356 }
1357
1358 if (protocol) {
1359 *flags |= BDRV_O_PROTOCOL;
1360 } else {
1361 *flags &= ~BDRV_O_PROTOCOL;
1362 }
1363
1364 /* Translate cache options from flags into options */
1365 update_options_from_flags(*options, *flags);
1366
1367 /* Fetch the file name from the options QDict if necessary */
1368 if (protocol && filename) {
1369 if (!qdict_haskey(*options, "filename")) {
1370 qdict_put(*options, "filename", qstring_from_str(filename));
1371 parse_filename = true;
1372 } else {
1373 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1374 "the same time");
1375 return -EINVAL;
1376 }
1377 }
1378
1379 /* Find the right block driver */
1380 /* See cautionary note on accessing @options above */
1381 filename = qdict_get_try_str(*options, "filename");
1382
1383 if (!drvname && protocol) {
1384 if (filename) {
1385 drv = bdrv_find_protocol(filename, parse_filename, errp);
1386 if (!drv) {
1387 return -EINVAL;
1388 }
1389
1390 drvname = drv->format_name;
1391 qdict_put(*options, "driver", qstring_from_str(drvname));
1392 } else {
1393 error_setg(errp, "Must specify either driver or file");
1394 return -EINVAL;
1395 }
1396 }
1397
1398 assert(drv || !protocol);
1399
1400 /* Driver-specific filename parsing */
1401 if (drv && drv->bdrv_parse_filename && parse_filename) {
1402 drv->bdrv_parse_filename(filename, *options, &local_err);
1403 if (local_err) {
1404 error_propagate(errp, local_err);
1405 return -EINVAL;
1406 }
1407
1408 if (!drv->bdrv_needs_filename) {
1409 qdict_del(*options, "filename");
1410 }
1411 }
1412
1413 return 0;
1414 }
1415
1416 static int bdrv_child_check_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1417 GSList *ignore_children, Error **errp);
1418 static void bdrv_child_abort_perm_update(BdrvChild *c);
1419 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1420
1421 /*
1422 * Check whether permissions on this node can be changed in a way that
1423 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1424 * permissions of all its parents. This involves checking whether all necessary
1425 * permission changes to child nodes can be performed.
1426 *
1427 * A call to this function must always be followed by a call to bdrv_set_perm()
1428 * or bdrv_abort_perm_update().
1429 */
1430 static int bdrv_check_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1431 uint64_t cumulative_shared_perms,
1432 GSList *ignore_children, Error **errp)
1433 {
1434 BlockDriver *drv = bs->drv;
1435 BdrvChild *c;
1436 int ret;
1437
1438 /* Write permissions never work with read-only images */
1439 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1440 bdrv_is_read_only(bs))
1441 {
1442 error_setg(errp, "Block node is read-only");
1443 return -EPERM;
1444 }
1445
1446 /* Check this node */
1447 if (!drv) {
1448 return 0;
1449 }
1450
1451 if (drv->bdrv_check_perm) {
1452 return drv->bdrv_check_perm(bs, cumulative_perms,
1453 cumulative_shared_perms, errp);
1454 }
1455
1456 /* Drivers that never have children can omit .bdrv_child_perm() */
1457 if (!drv->bdrv_child_perm) {
1458 assert(QLIST_EMPTY(&bs->children));
1459 return 0;
1460 }
1461
1462 /* Check all children */
1463 QLIST_FOREACH(c, &bs->children, next) {
1464 uint64_t cur_perm, cur_shared;
1465 drv->bdrv_child_perm(bs, c, c->role,
1466 cumulative_perms, cumulative_shared_perms,
1467 &cur_perm, &cur_shared);
1468 ret = bdrv_child_check_perm(c, cur_perm, cur_shared, ignore_children,
1469 errp);
1470 if (ret < 0) {
1471 return ret;
1472 }
1473 }
1474
1475 return 0;
1476 }
1477
1478 /*
1479 * Notifies drivers that after a previous bdrv_check_perm() call, the
1480 * permission update is not performed and any preparations made for it (e.g.
1481 * taken file locks) need to be undone.
1482 *
1483 * This function recursively notifies all child nodes.
1484 */
1485 static void bdrv_abort_perm_update(BlockDriverState *bs)
1486 {
1487 BlockDriver *drv = bs->drv;
1488 BdrvChild *c;
1489
1490 if (!drv) {
1491 return;
1492 }
1493
1494 if (drv->bdrv_abort_perm_update) {
1495 drv->bdrv_abort_perm_update(bs);
1496 }
1497
1498 QLIST_FOREACH(c, &bs->children, next) {
1499 bdrv_child_abort_perm_update(c);
1500 }
1501 }
1502
1503 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1504 uint64_t cumulative_shared_perms)
1505 {
1506 BlockDriver *drv = bs->drv;
1507 BdrvChild *c;
1508
1509 if (!drv) {
1510 return;
1511 }
1512
1513 /* Update this node */
1514 if (drv->bdrv_set_perm) {
1515 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1516 }
1517
1518 /* Drivers that never have children can omit .bdrv_child_perm() */
1519 if (!drv->bdrv_child_perm) {
1520 assert(QLIST_EMPTY(&bs->children));
1521 return;
1522 }
1523
1524 /* Update all children */
1525 QLIST_FOREACH(c, &bs->children, next) {
1526 uint64_t cur_perm, cur_shared;
1527 drv->bdrv_child_perm(bs, c, c->role,
1528 cumulative_perms, cumulative_shared_perms,
1529 &cur_perm, &cur_shared);
1530 bdrv_child_set_perm(c, cur_perm, cur_shared);
1531 }
1532 }
1533
1534 static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1535 uint64_t *shared_perm)
1536 {
1537 BdrvChild *c;
1538 uint64_t cumulative_perms = 0;
1539 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1540
1541 QLIST_FOREACH(c, &bs->parents, next_parent) {
1542 cumulative_perms |= c->perm;
1543 cumulative_shared_perms &= c->shared_perm;
1544 }
1545
1546 *perm = cumulative_perms;
1547 *shared_perm = cumulative_shared_perms;
1548 }
1549
1550 static char *bdrv_child_user_desc(BdrvChild *c)
1551 {
1552 if (c->role->get_parent_desc) {
1553 return c->role->get_parent_desc(c);
1554 }
1555
1556 return g_strdup("another user");
1557 }
1558
1559 static char *bdrv_perm_names(uint64_t perm)
1560 {
1561 struct perm_name {
1562 uint64_t perm;
1563 const char *name;
1564 } permissions[] = {
1565 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1566 { BLK_PERM_WRITE, "write" },
1567 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1568 { BLK_PERM_RESIZE, "resize" },
1569 { BLK_PERM_GRAPH_MOD, "change children" },
1570 { 0, NULL }
1571 };
1572
1573 char *result = g_strdup("");
1574 struct perm_name *p;
1575
1576 for (p = permissions; p->name; p++) {
1577 if (perm & p->perm) {
1578 char *old = result;
1579 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1580 g_free(old);
1581 }
1582 }
1583
1584 return result;
1585 }
1586
1587 /*
1588 * Checks whether a new reference to @bs can be added if the new user requires
1589 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1590 * set, the BdrvChild objects in this list are ignored in the calculations;
1591 * this allows checking permission updates for an existing reference.
1592 *
1593 * Needs to be followed by a call to either bdrv_set_perm() or
1594 * bdrv_abort_perm_update(). */
1595 static int bdrv_check_update_perm(BlockDriverState *bs, uint64_t new_used_perm,
1596 uint64_t new_shared_perm,
1597 GSList *ignore_children, Error **errp)
1598 {
1599 BdrvChild *c;
1600 uint64_t cumulative_perms = new_used_perm;
1601 uint64_t cumulative_shared_perms = new_shared_perm;
1602
1603 /* There is no reason why anyone couldn't tolerate write_unchanged */
1604 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1605
1606 QLIST_FOREACH(c, &bs->parents, next_parent) {
1607 if (g_slist_find(ignore_children, c)) {
1608 continue;
1609 }
1610
1611 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1612 char *user = bdrv_child_user_desc(c);
1613 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1614 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1615 "allow '%s' on %s",
1616 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1617 g_free(user);
1618 g_free(perm_names);
1619 return -EPERM;
1620 }
1621
1622 if ((c->perm & new_shared_perm) != c->perm) {
1623 char *user = bdrv_child_user_desc(c);
1624 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1625 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1626 "'%s' on %s",
1627 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1628 g_free(user);
1629 g_free(perm_names);
1630 return -EPERM;
1631 }
1632
1633 cumulative_perms |= c->perm;
1634 cumulative_shared_perms &= c->shared_perm;
1635 }
1636
1637 return bdrv_check_perm(bs, cumulative_perms, cumulative_shared_perms,
1638 ignore_children, errp);
1639 }
1640
1641 /* Needs to be followed by a call to either bdrv_child_set_perm() or
1642 * bdrv_child_abort_perm_update(). */
1643 static int bdrv_child_check_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1644 GSList *ignore_children, Error **errp)
1645 {
1646 int ret;
1647
1648 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
1649 ret = bdrv_check_update_perm(c->bs, perm, shared, ignore_children, errp);
1650 g_slist_free(ignore_children);
1651
1652 return ret;
1653 }
1654
1655 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
1656 {
1657 uint64_t cumulative_perms, cumulative_shared_perms;
1658
1659 c->perm = perm;
1660 c->shared_perm = shared;
1661
1662 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1663 &cumulative_shared_perms);
1664 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1665 }
1666
1667 static void bdrv_child_abort_perm_update(BdrvChild *c)
1668 {
1669 bdrv_abort_perm_update(c->bs);
1670 }
1671
1672 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1673 Error **errp)
1674 {
1675 int ret;
1676
1677 ret = bdrv_child_check_perm(c, perm, shared, NULL, errp);
1678 if (ret < 0) {
1679 bdrv_child_abort_perm_update(c);
1680 return ret;
1681 }
1682
1683 bdrv_child_set_perm(c, perm, shared);
1684
1685 return 0;
1686 }
1687
1688 #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
1689 | BLK_PERM_WRITE \
1690 | BLK_PERM_WRITE_UNCHANGED \
1691 | BLK_PERM_RESIZE)
1692 #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
1693
1694 void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1695 const BdrvChildRole *role,
1696 uint64_t perm, uint64_t shared,
1697 uint64_t *nperm, uint64_t *nshared)
1698 {
1699 if (c == NULL) {
1700 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1701 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1702 return;
1703 }
1704
1705 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1706 (c->perm & DEFAULT_PERM_UNCHANGED);
1707 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1708 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1709 }
1710
1711 void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1712 const BdrvChildRole *role,
1713 uint64_t perm, uint64_t shared,
1714 uint64_t *nperm, uint64_t *nshared)
1715 {
1716 bool backing = (role == &child_backing);
1717 assert(role == &child_backing || role == &child_file);
1718
1719 if (!backing) {
1720 /* Apart from the modifications below, the same permissions are
1721 * forwarded and left alone as for filters */
1722 bdrv_filter_default_perms(bs, c, role, perm, shared, &perm, &shared);
1723
1724 /* Format drivers may touch metadata even if the guest doesn't write */
1725 if (!bdrv_is_read_only(bs)) {
1726 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1727 }
1728
1729 /* bs->file always needs to be consistent because of the metadata. We
1730 * can never allow other users to resize or write to it. */
1731 perm |= BLK_PERM_CONSISTENT_READ;
1732 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
1733 } else {
1734 /* We want consistent read from backing files if the parent needs it.
1735 * No other operations are performed on backing files. */
1736 perm &= BLK_PERM_CONSISTENT_READ;
1737
1738 /* If the parent can deal with changing data, we're okay with a
1739 * writable and resizable backing file. */
1740 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
1741 if (shared & BLK_PERM_WRITE) {
1742 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
1743 } else {
1744 shared = 0;
1745 }
1746
1747 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
1748 BLK_PERM_WRITE_UNCHANGED;
1749 }
1750
1751 *nperm = perm;
1752 *nshared = shared;
1753 }
1754
1755 static void bdrv_replace_child_noperm(BdrvChild *child,
1756 BlockDriverState *new_bs)
1757 {
1758 BlockDriverState *old_bs = child->bs;
1759
1760 if (old_bs && new_bs) {
1761 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
1762 }
1763 if (old_bs) {
1764 if (old_bs->quiesce_counter && child->role->drained_end) {
1765 child->role->drained_end(child);
1766 }
1767 if (child->role->detach) {
1768 child->role->detach(child);
1769 }
1770 QLIST_REMOVE(child, next_parent);
1771 }
1772
1773 child->bs = new_bs;
1774
1775 if (new_bs) {
1776 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
1777 if (new_bs->quiesce_counter && child->role->drained_begin) {
1778 child->role->drained_begin(child);
1779 }
1780
1781 if (child->role->attach) {
1782 child->role->attach(child);
1783 }
1784 }
1785 }
1786
1787 /*
1788 * Updates @child to change its reference to point to @new_bs, including
1789 * checking and applying the necessary permisson updates both to the old node
1790 * and to @new_bs.
1791 *
1792 * NULL is passed as @new_bs for removing the reference before freeing @child.
1793 *
1794 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
1795 * function uses bdrv_set_perm() to update the permissions according to the new
1796 * reference that @new_bs gets.
1797 */
1798 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
1799 {
1800 BlockDriverState *old_bs = child->bs;
1801 uint64_t perm, shared_perm;
1802
1803 if (old_bs) {
1804 /* Update permissions for old node. This is guaranteed to succeed
1805 * because we're just taking a parent away, so we're loosening
1806 * restrictions. */
1807 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
1808 bdrv_check_perm(old_bs, perm, shared_perm, NULL, &error_abort);
1809 bdrv_set_perm(old_bs, perm, shared_perm);
1810 }
1811
1812 bdrv_replace_child_noperm(child, new_bs);
1813
1814 if (new_bs) {
1815 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
1816 bdrv_set_perm(new_bs, perm, shared_perm);
1817 }
1818 }
1819
1820 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
1821 const char *child_name,
1822 const BdrvChildRole *child_role,
1823 uint64_t perm, uint64_t shared_perm,
1824 void *opaque, Error **errp)
1825 {
1826 BdrvChild *child;
1827 int ret;
1828
1829 ret = bdrv_check_update_perm(child_bs, perm, shared_perm, NULL, errp);
1830 if (ret < 0) {
1831 bdrv_abort_perm_update(child_bs);
1832 return NULL;
1833 }
1834
1835 child = g_new(BdrvChild, 1);
1836 *child = (BdrvChild) {
1837 .bs = NULL,
1838 .name = g_strdup(child_name),
1839 .role = child_role,
1840 .perm = perm,
1841 .shared_perm = shared_perm,
1842 .opaque = opaque,
1843 };
1844
1845 /* This performs the matching bdrv_set_perm() for the above check. */
1846 bdrv_replace_child(child, child_bs);
1847
1848 return child;
1849 }
1850
1851 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
1852 BlockDriverState *child_bs,
1853 const char *child_name,
1854 const BdrvChildRole *child_role,
1855 Error **errp)
1856 {
1857 BdrvChild *child;
1858 uint64_t perm, shared_perm;
1859
1860 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
1861
1862 assert(parent_bs->drv);
1863 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
1864 parent_bs->drv->bdrv_child_perm(parent_bs, NULL, child_role,
1865 perm, shared_perm, &perm, &shared_perm);
1866
1867 child = bdrv_root_attach_child(child_bs, child_name, child_role,
1868 perm, shared_perm, parent_bs, errp);
1869 if (child == NULL) {
1870 return NULL;
1871 }
1872
1873 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
1874 return child;
1875 }
1876
1877 static void bdrv_detach_child(BdrvChild *child)
1878 {
1879 if (child->next.le_prev) {
1880 QLIST_REMOVE(child, next);
1881 child->next.le_prev = NULL;
1882 }
1883
1884 bdrv_replace_child(child, NULL);
1885
1886 g_free(child->name);
1887 g_free(child);
1888 }
1889
1890 void bdrv_root_unref_child(BdrvChild *child)
1891 {
1892 BlockDriverState *child_bs;
1893
1894 child_bs = child->bs;
1895 bdrv_detach_child(child);
1896 bdrv_unref(child_bs);
1897 }
1898
1899 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
1900 {
1901 if (child == NULL) {
1902 return;
1903 }
1904
1905 if (child->bs->inherits_from == parent) {
1906 BdrvChild *c;
1907
1908 /* Remove inherits_from only when the last reference between parent and
1909 * child->bs goes away. */
1910 QLIST_FOREACH(c, &parent->children, next) {
1911 if (c != child && c->bs == child->bs) {
1912 break;
1913 }
1914 }
1915 if (c == NULL) {
1916 child->bs->inherits_from = NULL;
1917 }
1918 }
1919
1920 bdrv_root_unref_child(child);
1921 }
1922
1923
1924 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
1925 {
1926 BdrvChild *c;
1927 QLIST_FOREACH(c, &bs->parents, next_parent) {
1928 if (c->role->change_media) {
1929 c->role->change_media(c, load);
1930 }
1931 }
1932 }
1933
1934 static void bdrv_parent_cb_resize(BlockDriverState *bs)
1935 {
1936 BdrvChild *c;
1937 QLIST_FOREACH(c, &bs->parents, next_parent) {
1938 if (c->role->resize) {
1939 c->role->resize(c);
1940 }
1941 }
1942 }
1943
1944 /*
1945 * Sets the backing file link of a BDS. A new reference is created; callers
1946 * which don't need their own reference any more must call bdrv_unref().
1947 */
1948 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
1949 Error **errp)
1950 {
1951 if (backing_hd) {
1952 bdrv_ref(backing_hd);
1953 }
1954
1955 if (bs->backing) {
1956 bdrv_unref_child(bs, bs->backing);
1957 }
1958
1959 if (!backing_hd) {
1960 bs->backing = NULL;
1961 goto out;
1962 }
1963
1964 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
1965 errp);
1966 if (!bs->backing) {
1967 bdrv_unref(backing_hd);
1968 }
1969
1970 bdrv_refresh_filename(bs);
1971
1972 out:
1973 bdrv_refresh_limits(bs, NULL);
1974 }
1975
1976 /*
1977 * Opens the backing file for a BlockDriverState if not yet open
1978 *
1979 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
1980 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1981 * itself, all options starting with "${bdref_key}." are considered part of the
1982 * BlockdevRef.
1983 *
1984 * TODO Can this be unified with bdrv_open_image()?
1985 */
1986 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
1987 const char *bdref_key, Error **errp)
1988 {
1989 char *backing_filename = g_malloc0(PATH_MAX);
1990 char *bdref_key_dot;
1991 const char *reference = NULL;
1992 int ret = 0;
1993 BlockDriverState *backing_hd;
1994 QDict *options;
1995 QDict *tmp_parent_options = NULL;
1996 Error *local_err = NULL;
1997
1998 if (bs->backing != NULL) {
1999 goto free_exit;
2000 }
2001
2002 /* NULL means an empty set of options */
2003 if (parent_options == NULL) {
2004 tmp_parent_options = qdict_new();
2005 parent_options = tmp_parent_options;
2006 }
2007
2008 bs->open_flags &= ~BDRV_O_NO_BACKING;
2009
2010 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2011 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2012 g_free(bdref_key_dot);
2013
2014 /*
2015 * Caution: while qdict_get_try_str() is fine, getting non-string
2016 * types would require more care. When @parent_options come from
2017 * -blockdev or blockdev_add, its members are typed according to
2018 * the QAPI schema, but when they come from -drive, they're all
2019 * QString.
2020 */
2021 reference = qdict_get_try_str(parent_options, bdref_key);
2022 if (reference || qdict_haskey(options, "file.filename")) {
2023 backing_filename[0] = '\0';
2024 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2025 QDECREF(options);
2026 goto free_exit;
2027 } else {
2028 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2029 &local_err);
2030 if (local_err) {
2031 ret = -EINVAL;
2032 error_propagate(errp, local_err);
2033 QDECREF(options);
2034 goto free_exit;
2035 }
2036 }
2037
2038 if (!bs->drv || !bs->drv->supports_backing) {
2039 ret = -EINVAL;
2040 error_setg(errp, "Driver doesn't support backing files");
2041 QDECREF(options);
2042 goto free_exit;
2043 }
2044
2045 if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2046 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
2047 }
2048
2049 backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2050 reference, options, 0, bs, &child_backing,
2051 errp);
2052 if (!backing_hd) {
2053 bs->open_flags |= BDRV_O_NO_BACKING;
2054 error_prepend(errp, "Could not open backing file: ");
2055 ret = -EINVAL;
2056 goto free_exit;
2057 }
2058
2059 /* Hook up the backing file link; drop our reference, bs owns the
2060 * backing_hd reference now */
2061 bdrv_set_backing_hd(bs, backing_hd, &local_err);
2062 bdrv_unref(backing_hd);
2063 if (local_err) {
2064 error_propagate(errp, local_err);
2065 ret = -EINVAL;
2066 goto free_exit;
2067 }
2068
2069 qdict_del(parent_options, bdref_key);
2070
2071 free_exit:
2072 g_free(backing_filename);
2073 QDECREF(tmp_parent_options);
2074 return ret;
2075 }
2076
2077 static BlockDriverState *
2078 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2079 BlockDriverState *parent, const BdrvChildRole *child_role,
2080 bool allow_none, Error **errp)
2081 {
2082 BlockDriverState *bs = NULL;
2083 QDict *image_options;
2084 char *bdref_key_dot;
2085 const char *reference;
2086
2087 assert(child_role != NULL);
2088
2089 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2090 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2091 g_free(bdref_key_dot);
2092
2093 /*
2094 * Caution: while qdict_get_try_str() is fine, getting non-string
2095 * types would require more care. When @options come from
2096 * -blockdev or blockdev_add, its members are typed according to
2097 * the QAPI schema, but when they come from -drive, they're all
2098 * QString.
2099 */
2100 reference = qdict_get_try_str(options, bdref_key);
2101 if (!filename && !reference && !qdict_size(image_options)) {
2102 if (!allow_none) {
2103 error_setg(errp, "A block device must be specified for \"%s\"",
2104 bdref_key);
2105 }
2106 QDECREF(image_options);
2107 goto done;
2108 }
2109
2110 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2111 parent, child_role, errp);
2112 if (!bs) {
2113 goto done;
2114 }
2115
2116 done:
2117 qdict_del(options, bdref_key);
2118 return bs;
2119 }
2120
2121 /*
2122 * Opens a disk image whose options are given as BlockdevRef in another block
2123 * device's options.
2124 *
2125 * If allow_none is true, no image will be opened if filename is false and no
2126 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2127 *
2128 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2129 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2130 * itself, all options starting with "${bdref_key}." are considered part of the
2131 * BlockdevRef.
2132 *
2133 * The BlockdevRef will be removed from the options QDict.
2134 */
2135 BdrvChild *bdrv_open_child(const char *filename,
2136 QDict *options, const char *bdref_key,
2137 BlockDriverState *parent,
2138 const BdrvChildRole *child_role,
2139 bool allow_none, Error **errp)
2140 {
2141 BdrvChild *c;
2142 BlockDriverState *bs;
2143
2144 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2145 allow_none, errp);
2146 if (bs == NULL) {
2147 return NULL;
2148 }
2149
2150 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2151 if (!c) {
2152 bdrv_unref(bs);
2153 return NULL;
2154 }
2155
2156 return c;
2157 }
2158
2159 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2160 int flags,
2161 QDict *snapshot_options,
2162 Error **errp)
2163 {
2164 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
2165 char *tmp_filename = g_malloc0(PATH_MAX + 1);
2166 int64_t total_size;
2167 QemuOpts *opts = NULL;
2168 BlockDriverState *bs_snapshot;
2169 Error *local_err = NULL;
2170 int ret;
2171
2172 /* if snapshot, we create a temporary backing file and open it
2173 instead of opening 'filename' directly */
2174
2175 /* Get the required size from the image */
2176 total_size = bdrv_getlength(bs);
2177 if (total_size < 0) {
2178 error_setg_errno(errp, -total_size, "Could not get image size");
2179 goto out;
2180 }
2181
2182 /* Create the temporary image */
2183 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2184 if (ret < 0) {
2185 error_setg_errno(errp, -ret, "Could not get temporary filename");
2186 goto out;
2187 }
2188
2189 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2190 &error_abort);
2191 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2192 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
2193 qemu_opts_del(opts);
2194 if (ret < 0) {
2195 error_prepend(errp, "Could not create temporary overlay '%s': ",
2196 tmp_filename);
2197 goto out;
2198 }
2199
2200 /* Prepare options QDict for the temporary file */
2201 qdict_put(snapshot_options, "file.driver",
2202 qstring_from_str("file"));
2203 qdict_put(snapshot_options, "file.filename",
2204 qstring_from_str(tmp_filename));
2205 qdict_put(snapshot_options, "driver",
2206 qstring_from_str("qcow2"));
2207
2208 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2209 snapshot_options = NULL;
2210 if (!bs_snapshot) {
2211 ret = -EINVAL;
2212 goto out;
2213 }
2214
2215 /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
2216 * call bdrv_unref() on it), so in order to be able to return one, we have
2217 * to increase bs_snapshot's refcount here */
2218 bdrv_ref(bs_snapshot);
2219 bdrv_append(bs_snapshot, bs, &local_err);
2220 if (local_err) {
2221 error_propagate(errp, local_err);
2222 ret = -EINVAL;
2223 goto out;
2224 }
2225
2226 g_free(tmp_filename);
2227 return bs_snapshot;
2228
2229 out:
2230 QDECREF(snapshot_options);
2231 g_free(tmp_filename);
2232 return NULL;
2233 }
2234
2235 /*
2236 * Opens a disk image (raw, qcow2, vmdk, ...)
2237 *
2238 * options is a QDict of options to pass to the block drivers, or NULL for an
2239 * empty set of options. The reference to the QDict belongs to the block layer
2240 * after the call (even on failure), so if the caller intends to reuse the
2241 * dictionary, it needs to use QINCREF() before calling bdrv_open.
2242 *
2243 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2244 * If it is not NULL, the referenced BDS will be reused.
2245 *
2246 * The reference parameter may be used to specify an existing block device which
2247 * should be opened. If specified, neither options nor a filename may be given,
2248 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2249 */
2250 static BlockDriverState *bdrv_open_inherit(const char *filename,
2251 const char *reference,
2252 QDict *options, int flags,
2253 BlockDriverState *parent,
2254 const BdrvChildRole *child_role,
2255 Error **errp)
2256 {
2257 int ret;
2258 BlockBackend *file = NULL;
2259 BlockDriverState *bs;
2260 BlockDriver *drv = NULL;
2261 const char *drvname;
2262 const char *backing;
2263 Error *local_err = NULL;
2264 QDict *snapshot_options = NULL;
2265 int snapshot_flags = 0;
2266
2267 assert(!child_role || !flags);
2268 assert(!child_role == !parent);
2269
2270 if (reference) {
2271 bool options_non_empty = options ? qdict_size(options) : false;
2272 QDECREF(options);
2273
2274 if (filename || options_non_empty) {
2275 error_setg(errp, "Cannot reference an existing block device with "
2276 "additional options or a new filename");
2277 return NULL;
2278 }
2279
2280 bs = bdrv_lookup_bs(reference, reference, errp);
2281 if (!bs) {
2282 return NULL;
2283 }
2284
2285 bdrv_ref(bs);
2286 return bs;
2287 }
2288
2289 bs = bdrv_new();
2290
2291 /* NULL means an empty set of options */
2292 if (options == NULL) {
2293 options = qdict_new();
2294 }
2295
2296 /* json: syntax counts as explicit options, as if in the QDict */
2297 parse_json_protocol(options, &filename, &local_err);
2298 if (local_err) {
2299 goto fail;
2300 }
2301
2302 bs->explicit_options = qdict_clone_shallow(options);
2303
2304 if (child_role) {
2305 bs->inherits_from = parent;
2306 child_role->inherit_options(&flags, options,
2307 parent->open_flags, parent->options);
2308 }
2309
2310 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2311 if (local_err) {
2312 goto fail;
2313 }
2314
2315 /*
2316 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2317 * Caution: getting a boolean member of @options requires care.
2318 * When @options come from -blockdev or blockdev_add, members are
2319 * typed according to the QAPI schema, but when they come from
2320 * -drive, they're all QString.
2321 */
2322 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2323 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2324 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2325 } else {
2326 flags &= ~BDRV_O_RDWR;
2327 }
2328
2329 if (flags & BDRV_O_SNAPSHOT) {
2330 snapshot_options = qdict_new();
2331 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2332 flags, options);
2333 /* Let bdrv_backing_options() override "read-only" */
2334 qdict_del(options, BDRV_OPT_READ_ONLY);
2335 bdrv_backing_options(&flags, options, flags, options);
2336 }
2337
2338 bs->open_flags = flags;
2339 bs->options = options;
2340 options = qdict_clone_shallow(options);
2341
2342 /* Find the right image format driver */
2343 /* See cautionary note on accessing @options above */
2344 drvname = qdict_get_try_str(options, "driver");
2345 if (drvname) {
2346 drv = bdrv_find_format(drvname);
2347 if (!drv) {
2348 error_setg(errp, "Unknown driver: '%s'", drvname);
2349 goto fail;
2350 }
2351 }
2352
2353 assert(drvname || !(flags & BDRV_O_PROTOCOL));
2354
2355 /* See cautionary note on accessing @options above */
2356 backing = qdict_get_try_str(options, "backing");
2357 if (backing && *backing == '\0') {
2358 flags |= BDRV_O_NO_BACKING;
2359 qdict_del(options, "backing");
2360 }
2361
2362 /* Open image file without format layer. This BlockBackend is only used for
2363 * probing, the block drivers will do their own bdrv_open_child() for the
2364 * same BDS, which is why we put the node name back into options. */
2365 if ((flags & BDRV_O_PROTOCOL) == 0) {
2366 BlockDriverState *file_bs;
2367
2368 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2369 &child_file, true, &local_err);
2370 if (local_err) {
2371 goto fail;
2372 }
2373 if (file_bs != NULL) {
2374 file = blk_new(BLK_PERM_CONSISTENT_READ, BLK_PERM_ALL);
2375 blk_insert_bs(file, file_bs, &local_err);
2376 bdrv_unref(file_bs);
2377 if (local_err) {
2378 goto fail;
2379 }
2380
2381 qdict_put(options, "file",
2382 qstring_from_str(bdrv_get_node_name(file_bs)));
2383 }
2384 }
2385
2386 /* Image format probing */
2387 bs->probed = !drv;
2388 if (!drv && file) {
2389 ret = find_image_format(file, filename, &drv, &local_err);
2390 if (ret < 0) {
2391 goto fail;
2392 }
2393 /*
2394 * This option update would logically belong in bdrv_fill_options(),
2395 * but we first need to open bs->file for the probing to work, while
2396 * opening bs->file already requires the (mostly) final set of options
2397 * so that cache mode etc. can be inherited.
2398 *
2399 * Adding the driver later is somewhat ugly, but it's not an option
2400 * that would ever be inherited, so it's correct. We just need to make
2401 * sure to update both bs->options (which has the full effective
2402 * options for bs) and options (which has file.* already removed).
2403 */
2404 qdict_put(bs->options, "driver", qstring_from_str(drv->format_name));
2405 qdict_put(options, "driver", qstring_from_str(drv->format_name));
2406 } else if (!drv) {
2407 error_setg(errp, "Must specify either driver or file");
2408 goto fail;
2409 }
2410
2411 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2412 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2413 /* file must be NULL if a protocol BDS is about to be created
2414 * (the inverse results in an error message from bdrv_open_common()) */
2415 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2416
2417 /* Open the image */
2418 ret = bdrv_open_common(bs, file, options, &local_err);
2419 if (ret < 0) {
2420 goto fail;
2421 }
2422
2423 if (file) {
2424 blk_unref(file);
2425 file = NULL;
2426 }
2427
2428 /* If there is a backing file, use it */
2429 if ((flags & BDRV_O_NO_BACKING) == 0) {
2430 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2431 if (ret < 0) {
2432 goto close_and_fail;
2433 }
2434 }
2435
2436 bdrv_refresh_filename(bs);
2437
2438 /* Check if any unknown options were used */
2439 if (qdict_size(options) != 0) {
2440 const QDictEntry *entry = qdict_first(options);
2441 if (flags & BDRV_O_PROTOCOL) {
2442 error_setg(errp, "Block protocol '%s' doesn't support the option "
2443 "'%s'", drv->format_name, entry->key);
2444 } else {
2445 error_setg(errp,
2446 "Block format '%s' does not support the option '%s'",
2447 drv->format_name, entry->key);
2448 }
2449
2450 goto close_and_fail;
2451 }
2452
2453 if (!bdrv_key_required(bs)) {
2454 bdrv_parent_cb_change_media(bs, true);
2455 } else if (!runstate_check(RUN_STATE_PRELAUNCH)
2456 && !runstate_check(RUN_STATE_INMIGRATE)
2457 && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
2458 error_setg(errp,
2459 "Guest must be stopped for opening of encrypted image");
2460 goto close_and_fail;
2461 }
2462
2463 QDECREF(options);
2464
2465 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2466 * temporary snapshot afterwards. */
2467 if (snapshot_flags) {
2468 BlockDriverState *snapshot_bs;
2469 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2470 snapshot_options, &local_err);
2471 snapshot_options = NULL;
2472 if (local_err) {
2473 goto close_and_fail;
2474 }
2475 /* We are not going to return bs but the overlay on top of it
2476 * (snapshot_bs); thus, we have to drop the strong reference to bs
2477 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2478 * though, because the overlay still has a reference to it. */
2479 bdrv_unref(bs);
2480 bs = snapshot_bs;
2481 }
2482
2483 return bs;
2484
2485 fail:
2486 blk_unref(file);
2487 if (bs->file != NULL) {
2488 bdrv_unref_child(bs, bs->file);
2489 }
2490 QDECREF(snapshot_options);
2491 QDECREF(bs->explicit_options);
2492 QDECREF(bs->options);
2493 QDECREF(options);
2494 bs->options = NULL;
2495 bdrv_unref(bs);
2496 error_propagate(errp, local_err);
2497 return NULL;
2498
2499 close_and_fail:
2500 bdrv_unref(bs);
2501 QDECREF(snapshot_options);
2502 QDECREF(options);
2503 error_propagate(errp, local_err);
2504 return NULL;
2505 }
2506
2507 BlockDriverState *bdrv_open(const char *filename, const char *reference,
2508 QDict *options, int flags, Error **errp)
2509 {
2510 return bdrv_open_inherit(filename, reference, options, flags, NULL,
2511 NULL, errp);
2512 }
2513
2514 typedef struct BlockReopenQueueEntry {
2515 bool prepared;
2516 BDRVReopenState state;
2517 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
2518 } BlockReopenQueueEntry;
2519
2520 /*
2521 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2522 * reopen of multiple devices.
2523 *
2524 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2525 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2526 * be created and initialized. This newly created BlockReopenQueue should be
2527 * passed back in for subsequent calls that are intended to be of the same
2528 * atomic 'set'.
2529 *
2530 * bs is the BlockDriverState to add to the reopen queue.
2531 *
2532 * options contains the changed options for the associated bs
2533 * (the BlockReopenQueue takes ownership)
2534 *
2535 * flags contains the open flags for the associated bs
2536 *
2537 * returns a pointer to bs_queue, which is either the newly allocated
2538 * bs_queue, or the existing bs_queue being used.
2539 *
2540 */
2541 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2542 BlockDriverState *bs,
2543 QDict *options,
2544 int flags,
2545 const BdrvChildRole *role,
2546 QDict *parent_options,
2547 int parent_flags)
2548 {
2549 assert(bs != NULL);
2550
2551 BlockReopenQueueEntry *bs_entry;
2552 BdrvChild *child;
2553 QDict *old_options, *explicit_options;
2554
2555 if (bs_queue == NULL) {
2556 bs_queue = g_new0(BlockReopenQueue, 1);
2557 QSIMPLEQ_INIT(bs_queue);
2558 }
2559
2560 if (!options) {
2561 options = qdict_new();
2562 }
2563
2564 /* Check if this BlockDriverState is already in the queue */
2565 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2566 if (bs == bs_entry->state.bs) {
2567 break;
2568 }
2569 }
2570
2571 /*
2572 * Precedence of options:
2573 * 1. Explicitly passed in options (highest)
2574 * 2. Set in flags (only for top level)
2575 * 3. Retained from explicitly set options of bs
2576 * 4. Inherited from parent node
2577 * 5. Retained from effective options of bs
2578 */
2579
2580 if (!parent_options) {
2581 /*
2582 * Any setting represented by flags is always updated. If the
2583 * corresponding QDict option is set, it takes precedence. Otherwise
2584 * the flag is translated into a QDict option. The old setting of bs is
2585 * not considered.
2586 */
2587 update_options_from_flags(options, flags);
2588 }
2589
2590 /* Old explicitly set values (don't overwrite by inherited value) */
2591 if (bs_entry) {
2592 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2593 } else {
2594 old_options = qdict_clone_shallow(bs->explicit_options);
2595 }
2596 bdrv_join_options(bs, options, old_options);
2597 QDECREF(old_options);
2598
2599 explicit_options = qdict_clone_shallow(options);
2600
2601 /* Inherit from parent node */
2602 if (parent_options) {
2603 assert(!flags);
2604 role->inherit_options(&flags, options, parent_flags, parent_options);
2605 }
2606
2607 /* Old values are used for options that aren't set yet */
2608 old_options = qdict_clone_shallow(bs->options);
2609 bdrv_join_options(bs, options, old_options);
2610 QDECREF(old_options);
2611
2612 /* bdrv_open() masks this flag out */
2613 flags &= ~BDRV_O_PROTOCOL;
2614
2615 QLIST_FOREACH(child, &bs->children, next) {
2616 QDict *new_child_options;
2617 char *child_key_dot;
2618
2619 /* reopen can only change the options of block devices that were
2620 * implicitly created and inherited options. For other (referenced)
2621 * block devices, a syntax like "backing.foo" results in an error. */
2622 if (child->bs->inherits_from != bs) {
2623 continue;
2624 }
2625
2626 child_key_dot = g_strdup_printf("%s.", child->name);
2627 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2628 g_free(child_key_dot);
2629
2630 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2631 child->role, options, flags);
2632 }
2633
2634 if (!bs_entry) {
2635 bs_entry = g_new0(BlockReopenQueueEntry, 1);
2636 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2637 } else {
2638 QDECREF(bs_entry->state.options);
2639 QDECREF(bs_entry->state.explicit_options);
2640 }
2641
2642 bs_entry->state.bs = bs;
2643 bs_entry->state.options = options;
2644 bs_entry->state.explicit_options = explicit_options;
2645 bs_entry->state.flags = flags;
2646
2647 return bs_queue;
2648 }
2649
2650 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
2651 BlockDriverState *bs,
2652 QDict *options, int flags)
2653 {
2654 return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
2655 NULL, NULL, 0);
2656 }
2657
2658 /*
2659 * Reopen multiple BlockDriverStates atomically & transactionally.
2660 *
2661 * The queue passed in (bs_queue) must have been built up previous
2662 * via bdrv_reopen_queue().
2663 *
2664 * Reopens all BDS specified in the queue, with the appropriate
2665 * flags. All devices are prepared for reopen, and failure of any
2666 * device will cause all device changes to be abandonded, and intermediate
2667 * data cleaned up.
2668 *
2669 * If all devices prepare successfully, then the changes are committed
2670 * to all devices.
2671 *
2672 */
2673 int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
2674 {
2675 int ret = -1;
2676 BlockReopenQueueEntry *bs_entry, *next;
2677 Error *local_err = NULL;
2678
2679 assert(bs_queue != NULL);
2680
2681 aio_context_release(ctx);
2682 bdrv_drain_all_begin();
2683 aio_context_acquire(ctx);
2684
2685 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2686 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
2687 error_propagate(errp, local_err);
2688 goto cleanup;
2689 }
2690 bs_entry->prepared = true;
2691 }
2692
2693 /* If we reach this point, we have success and just need to apply the
2694 * changes
2695 */
2696 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2697 bdrv_reopen_commit(&bs_entry->state);
2698 }
2699
2700 ret = 0;
2701
2702 cleanup:
2703 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
2704 if (ret && bs_entry->prepared) {
2705 bdrv_reopen_abort(&bs_entry->state);
2706 } else if (ret) {
2707 QDECREF(bs_entry->state.explicit_options);
2708 }
2709 QDECREF(bs_entry->state.options);
2710 g_free(bs_entry);
2711 }
2712 g_free(bs_queue);
2713
2714 bdrv_drain_all_end();
2715
2716 return ret;
2717 }
2718
2719
2720 /* Reopen a single BlockDriverState with the specified flags. */
2721 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
2722 {
2723 int ret = -1;
2724 Error *local_err = NULL;
2725 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
2726
2727 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
2728 if (local_err != NULL) {
2729 error_propagate(errp, local_err);
2730 }
2731 return ret;
2732 }
2733
2734
2735 /*
2736 * Prepares a BlockDriverState for reopen. All changes are staged in the
2737 * 'opaque' field of the BDRVReopenState, which is used and allocated by
2738 * the block driver layer .bdrv_reopen_prepare()
2739 *
2740 * bs is the BlockDriverState to reopen
2741 * flags are the new open flags
2742 * queue is the reopen queue
2743 *
2744 * Returns 0 on success, non-zero on error. On error errp will be set
2745 * as well.
2746 *
2747 * On failure, bdrv_reopen_abort() will be called to clean up any data.
2748 * It is the responsibility of the caller to then call the abort() or
2749 * commit() for any other BDS that have been left in a prepare() state
2750 *
2751 */
2752 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
2753 Error **errp)
2754 {
2755 int ret = -1;
2756 Error *local_err = NULL;
2757 BlockDriver *drv;
2758 QemuOpts *opts;
2759 const char *value;
2760
2761 assert(reopen_state != NULL);
2762 assert(reopen_state->bs->drv != NULL);
2763 drv = reopen_state->bs->drv;
2764
2765 /* Process generic block layer options */
2766 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2767 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
2768 if (local_err) {
2769 error_propagate(errp, local_err);
2770 ret = -EINVAL;
2771 goto error;
2772 }
2773
2774 update_flags_from_options(&reopen_state->flags, opts);
2775
2776 /* node-name and driver must be unchanged. Put them back into the QDict, so
2777 * that they are checked at the end of this function. */
2778 value = qemu_opt_get(opts, "node-name");
2779 if (value) {
2780 qdict_put(reopen_state->options, "node-name", qstring_from_str(value));
2781 }
2782
2783 value = qemu_opt_get(opts, "driver");
2784 if (value) {
2785 qdict_put(reopen_state->options, "driver", qstring_from_str(value));
2786 }
2787
2788 /* if we are to stay read-only, do not allow permission change
2789 * to r/w */
2790 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
2791 reopen_state->flags & BDRV_O_RDWR) {
2792 error_setg(errp, "Node '%s' is read only",
2793 bdrv_get_device_or_node_name(reopen_state->bs));
2794 goto error;
2795 }
2796
2797
2798 ret = bdrv_flush(reopen_state->bs);
2799 if (ret) {
2800 error_setg_errno(errp, -ret, "Error flushing drive");
2801 goto error;
2802 }
2803
2804 if (drv->bdrv_reopen_prepare) {
2805 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
2806 if (ret) {
2807 if (local_err != NULL) {
2808 error_propagate(errp, local_err);
2809 } else {
2810 error_setg(errp, "failed while preparing to reopen image '%s'",
2811 reopen_state->bs->filename);
2812 }
2813 goto error;
2814 }
2815 } else {
2816 /* It is currently mandatory to have a bdrv_reopen_prepare()
2817 * handler for each supported drv. */
2818 error_setg(errp, "Block format '%s' used by node '%s' "
2819 "does not support reopening files", drv->format_name,
2820 bdrv_get_device_or_node_name(reopen_state->bs));
2821 ret = -1;
2822 goto error;
2823 }
2824
2825 /* Options that are not handled are only okay if they are unchanged
2826 * compared to the old state. It is expected that some options are only
2827 * used for the initial open, but not reopen (e.g. filename) */
2828 if (qdict_size(reopen_state->options)) {
2829 const QDictEntry *entry = qdict_first(reopen_state->options);
2830
2831 do {
2832 QString *new_obj = qobject_to_qstring(entry->value);
2833 const char *new = qstring_get_str(new_obj);
2834 /*
2835 * Caution: while qdict_get_try_str() is fine, getting
2836 * non-string types would require more care. When
2837 * bs->options come from -blockdev or blockdev_add, its
2838 * members are typed according to the QAPI schema, but
2839 * when they come from -drive, they're all QString.
2840 */
2841 const char *old = qdict_get_try_str(reopen_state->bs->options,
2842 entry->key);
2843
2844 if (!old || strcmp(new, old)) {
2845 error_setg(errp, "Cannot change the option '%s'", entry->key);
2846 ret = -EINVAL;
2847 goto error;
2848 }
2849 } while ((entry = qdict_next(reopen_state->options, entry)));
2850 }
2851
2852 ret = 0;
2853
2854 error:
2855 qemu_opts_del(opts);
2856 return ret;
2857 }
2858
2859 /*
2860 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
2861 * makes them final by swapping the staging BlockDriverState contents into
2862 * the active BlockDriverState contents.
2863 */
2864 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
2865 {
2866 BlockDriver *drv;
2867
2868 assert(reopen_state != NULL);
2869 drv = reopen_state->bs->drv;
2870 assert(drv != NULL);
2871
2872 /* If there are any driver level actions to take */
2873 if (drv->bdrv_reopen_commit) {
2874 drv->bdrv_reopen_commit(reopen_state);
2875 }
2876
2877 /* set BDS specific flags now */
2878 QDECREF(reopen_state->bs->explicit_options);
2879
2880 reopen_state->bs->explicit_options = reopen_state->explicit_options;
2881 reopen_state->bs->open_flags = reopen_state->flags;
2882 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
2883
2884 bdrv_refresh_limits(reopen_state->bs, NULL);
2885 }
2886
2887 /*
2888 * Abort the reopen, and delete and free the staged changes in
2889 * reopen_state
2890 */
2891 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
2892 {
2893 BlockDriver *drv;
2894
2895 assert(reopen_state != NULL);
2896 drv = reopen_state->bs->drv;
2897 assert(drv != NULL);
2898
2899 if (drv->bdrv_reopen_abort) {
2900 drv->bdrv_reopen_abort(reopen_state);
2901 }
2902
2903 QDECREF(reopen_state->explicit_options);
2904 }
2905
2906
2907 static void bdrv_close(BlockDriverState *bs)
2908 {
2909 BdrvAioNotifier *ban, *ban_next;
2910
2911 assert(!bs->job);
2912 assert(!bs->refcnt);
2913
2914 bdrv_drained_begin(bs); /* complete I/O */
2915 bdrv_flush(bs);
2916 bdrv_drain(bs); /* in case flush left pending I/O */
2917
2918 bdrv_release_named_dirty_bitmaps(bs);
2919 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2920
2921 if (bs->drv) {
2922 BdrvChild *child, *next;
2923
2924 bs->drv->bdrv_close(bs);
2925 bs->drv = NULL;
2926
2927 bdrv_set_backing_hd(bs, NULL, &error_abort);
2928
2929 if (bs->file != NULL) {
2930 bdrv_unref_child(bs, bs->file);
2931 bs->file = NULL;
2932 }
2933
2934 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
2935 /* TODO Remove bdrv_unref() from drivers' close function and use
2936 * bdrv_unref_child() here */
2937 if (child->bs->inherits_from == bs) {
2938 child->bs->inherits_from = NULL;
2939 }
2940 bdrv_detach_child(child);
2941 }
2942
2943 g_free(bs->opaque);
2944 bs->opaque = NULL;
2945 bs->copy_on_read = 0;
2946 bs->backing_file[0] = '\0';
2947 bs->backing_format[0] = '\0';
2948 bs->total_sectors = 0;
2949 bs->encrypted = false;
2950 bs->valid_key = false;
2951 bs->sg = false;
2952 QDECREF(bs->options);
2953 QDECREF(bs->explicit_options);
2954 bs->options = NULL;
2955 QDECREF(bs->full_open_options);
2956 bs->full_open_options = NULL;
2957 }
2958
2959 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
2960 g_free(ban);
2961 }
2962 QLIST_INIT(&bs->aio_notifiers);
2963 bdrv_drained_end(bs);
2964 }
2965
2966 void bdrv_close_all(void)
2967 {
2968 block_job_cancel_sync_all();
2969 nbd_export_close_all();
2970
2971 /* Drop references from requests still in flight, such as canceled block
2972 * jobs whose AIO context has not been polled yet */
2973 bdrv_drain_all();
2974
2975 blk_remove_all_bs();
2976 blockdev_close_all_bdrv_states();
2977
2978 assert(QTAILQ_EMPTY(&all_bdrv_states));
2979 }
2980
2981 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
2982 {
2983 BdrvChild *to_c;
2984
2985 if (c->role->stay_at_node) {
2986 return false;
2987 }
2988
2989 if (c->role == &child_backing) {
2990 /* If @from is a backing file of @to, ignore the child to avoid
2991 * creating a loop. We only want to change the pointer of other
2992 * parents. */
2993 QLIST_FOREACH(to_c, &to->children, next) {
2994 if (to_c == c) {
2995 break;
2996 }
2997 }
2998 if (to_c) {
2999 return false;
3000 }
3001 }
3002
3003 return true;
3004 }
3005
3006 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3007 Error **errp)
3008 {
3009 BdrvChild *c, *next;
3010 GSList *list = NULL, *p;
3011 uint64_t old_perm, old_shared;
3012 uint64_t perm = 0, shared = BLK_PERM_ALL;
3013 int ret;
3014
3015 assert(!atomic_read(&from->in_flight));
3016 assert(!atomic_read(&to->in_flight));
3017
3018 /* Make sure that @from doesn't go away until we have successfully attached
3019 * all of its parents to @to. */
3020 bdrv_ref(from);
3021
3022 /* Put all parents into @list and calculate their cumulative permissions */
3023 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3024 if (!should_update_child(c, to)) {
3025 continue;
3026 }
3027 list = g_slist_prepend(list, c);
3028 perm |= c->perm;
3029 shared &= c->shared_perm;
3030 }
3031
3032 /* Check whether the required permissions can be granted on @to, ignoring
3033 * all BdrvChild in @list so that they can't block themselves. */
3034 ret = bdrv_check_update_perm(to, perm, shared, list, errp);
3035 if (ret < 0) {
3036 bdrv_abort_perm_update(to);
3037 goto out;
3038 }
3039
3040 /* Now actually perform the change. We performed the permission check for
3041 * all elements of @list at once, so set the permissions all at once at the
3042 * very end. */
3043 for (p = list; p != NULL; p = p->next) {
3044 c = p->data;
3045
3046 bdrv_ref(to);
3047 bdrv_replace_child_noperm(c, to);
3048 bdrv_unref(from);
3049 }
3050
3051 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3052 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3053
3054 out:
3055 g_slist_free(list);
3056 bdrv_unref(from);
3057 }
3058
3059 /*
3060 * Add new bs contents at the top of an image chain while the chain is
3061 * live, while keeping required fields on the top layer.
3062 *
3063 * This will modify the BlockDriverState fields, and swap contents
3064 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3065 *
3066 * bs_new must not be attached to a BlockBackend.
3067 *
3068 * This function does not create any image files.
3069 *
3070 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3071 * that's what the callers commonly need. bs_new will be referenced by the old
3072 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3073 * reference of its own, it must call bdrv_ref().
3074 */
3075 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3076 Error **errp)
3077 {
3078 Error *local_err = NULL;
3079
3080 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3081 if (local_err) {
3082 error_propagate(errp, local_err);
3083 goto out;
3084 }
3085
3086 bdrv_replace_node(bs_top, bs_new, &local_err);
3087 if (local_err) {
3088 error_propagate(errp, local_err);
3089 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3090 goto out;
3091 }
3092
3093 /* bs_new is now referenced by its new parents, we don't need the
3094 * additional reference any more. */
3095 out:
3096 bdrv_unref(bs_new);
3097 }
3098
3099 static void bdrv_delete(BlockDriverState *bs)
3100 {
3101 assert(!bs->job);
3102 assert(bdrv_op_blocker_is_empty(bs));
3103 assert(!bs->refcnt);
3104
3105 bdrv_close(bs);
3106
3107 /* remove from list, if necessary */
3108 if (bs->node_name[0] != '\0') {
3109 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3110 }
3111 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3112
3113 g_free(bs);
3114 }
3115
3116 /*
3117 * Run consistency checks on an image
3118 *
3119 * Returns 0 if the check could be completed (it doesn't mean that the image is
3120 * free of errors) or -errno when an internal error occurred. The results of the
3121 * check are stored in res.
3122 */
3123 int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
3124 {
3125 if (bs->drv == NULL) {
3126 return -ENOMEDIUM;
3127 }
3128 if (bs->drv->bdrv_check == NULL) {
3129 return -ENOTSUP;
3130 }
3131
3132 memset(res, 0, sizeof(*res));
3133 return bs->drv->bdrv_check(bs, res, fix);
3134 }
3135
3136 /*
3137 * Return values:
3138 * 0 - success
3139 * -EINVAL - backing format specified, but no file
3140 * -ENOSPC - can't update the backing file because no space is left in the
3141 * image file header
3142 * -ENOTSUP - format driver doesn't support changing the backing file
3143 */
3144 int bdrv_change_backing_file(BlockDriverState *bs,
3145 const char *backing_file, const char *backing_fmt)
3146 {
3147 BlockDriver *drv = bs->drv;
3148 int ret;
3149
3150 /* Backing file format doesn't make sense without a backing file */
3151 if (backing_fmt && !backing_file) {
3152 return -EINVAL;
3153 }
3154
3155 if (drv->bdrv_change_backing_file != NULL) {
3156 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3157 } else {
3158 ret = -ENOTSUP;
3159 }
3160
3161 if (ret == 0) {
3162 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3163 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3164 }
3165 return ret;
3166 }
3167
3168 /*
3169 * Finds the image layer in the chain that has 'bs' as its backing file.
3170 *
3171 * active is the current topmost image.
3172 *
3173 * Returns NULL if bs is not found in active's image chain,
3174 * or if active == bs.
3175 *
3176 * Returns the bottommost base image if bs == NULL.
3177 */
3178 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3179 BlockDriverState *bs)
3180 {
3181 while (active && bs != backing_bs(active)) {
3182 active = backing_bs(active);
3183 }
3184
3185 return active;
3186 }
3187
3188 /* Given a BDS, searches for the base layer. */
3189 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3190 {
3191 return bdrv_find_overlay(bs, NULL);
3192 }
3193
3194 /*
3195 * Drops images above 'base' up to and including 'top', and sets the image
3196 * above 'top' to have base as its backing file.
3197 *
3198 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3199 * information in 'bs' can be properly updated.
3200 *
3201 * E.g., this will convert the following chain:
3202 * bottom <- base <- intermediate <- top <- active
3203 *
3204 * to
3205 *
3206 * bottom <- base <- active
3207 *
3208 * It is allowed for bottom==base, in which case it converts:
3209 *
3210 * base <- intermediate <- top <- active
3211 *
3212 * to
3213 *
3214 * base <- active
3215 *
3216 * If backing_file_str is non-NULL, it will be used when modifying top's
3217 * overlay image metadata.
3218 *
3219 * Error conditions:
3220 * if active == top, that is considered an error
3221 *
3222 */
3223 int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
3224 BlockDriverState *base, const char *backing_file_str)
3225 {
3226 BlockDriverState *new_top_bs = NULL;
3227 Error *local_err = NULL;
3228 int ret = -EIO;
3229
3230 if (!top->drv || !base->drv) {
3231 goto exit;
3232 }
3233
3234 new_top_bs = bdrv_find_overlay(active, top);
3235
3236 if (new_top_bs == NULL) {
3237 /* we could not find the image above 'top', this is an error */
3238 goto exit;
3239 }
3240
3241 /* special case of new_top_bs->backing->bs already pointing to base - nothing
3242 * to do, no intermediate images */
3243 if (backing_bs(new_top_bs) == base) {
3244 ret = 0;
3245 goto exit;
3246 }
3247
3248 /* Make sure that base is in the backing chain of top */
3249 if (!bdrv_chain_contains(top, base)) {
3250 goto exit;
3251 }
3252
3253 /* success - we can delete the intermediate states, and link top->base */
3254 backing_file_str = backing_file_str ? backing_file_str : base->filename;
3255 ret = bdrv_change_backing_file(new_top_bs, backing_file_str,
3256 base->drv ? base->drv->format_name : "");
3257 if (ret) {
3258 goto exit;
3259 }
3260
3261 bdrv_set_backing_hd(new_top_bs, base, &local_err);
3262 if (local_err) {
3263 ret = -EPERM;
3264 error_report_err(local_err);
3265 goto exit;
3266 }
3267
3268 ret = 0;
3269 exit:
3270 return ret;
3271 }
3272
3273 /**
3274 * Truncate file to 'offset' bytes (needed only for file protocols)
3275 */
3276 int bdrv_truncate(BdrvChild *child, int64_t offset)
3277 {
3278 BlockDriverState *bs = child->bs;
3279 BlockDriver *drv = bs->drv;
3280 int ret;
3281
3282 /* FIXME: Some format block drivers use this function instead of implicitly
3283 * growing their file by writing beyond its end.
3284 * See bdrv_aligned_pwritev() for an explanation why we currently
3285 * cannot assert this permission in that case. */
3286 // assert(child->perm & BLK_PERM_RESIZE);
3287
3288 if (!drv)
3289 return -ENOMEDIUM;
3290 if (!drv->bdrv_truncate)
3291 return -ENOTSUP;
3292 if (bs->read_only)
3293 return -EACCES;
3294
3295 ret = drv->bdrv_truncate(bs, offset);
3296 if (ret == 0) {
3297 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3298 bdrv_dirty_bitmap_truncate(bs);
3299 bdrv_parent_cb_resize(bs);
3300 ++bs->write_gen;
3301 }
3302 return ret;
3303 }
3304
3305 /**
3306 * Length of a allocated file in bytes. Sparse files are counted by actual
3307 * allocated space. Return < 0 if error or unknown.
3308 */
3309 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3310 {
3311 BlockDriver *drv = bs->drv;
3312 if (!drv) {
3313 return -ENOMEDIUM;
3314 }
3315 if (drv->bdrv_get_allocated_file_size) {
3316 return drv->bdrv_get_allocated_file_size(bs);
3317 }
3318 if (bs->file) {
3319 return bdrv_get_allocated_file_size(bs->file->bs);
3320 }
3321 return -ENOTSUP;
3322 }
3323
3324 /**
3325 * Return number of sectors on success, -errno on error.
3326 */
3327 int64_t bdrv_nb_sectors(BlockDriverState *bs)
3328 {
3329 BlockDriver *drv = bs->drv;
3330
3331 if (!drv)
3332 return -ENOMEDIUM;
3333
3334 if (drv->has_variable_length) {
3335 int ret = refresh_total_sectors(bs, bs->total_sectors);
3336 if (ret < 0) {
3337 return ret;
3338 }
3339 }
3340 return bs->total_sectors;
3341 }
3342
3343 /**
3344 * Return length in bytes on success, -errno on error.
3345 * The length is always a multiple of BDRV_SECTOR_SIZE.
3346 */
3347 int64_t bdrv_getlength(BlockDriverState *bs)
3348 {
3349 int64_t ret = bdrv_nb_sectors(bs);
3350
3351 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
3352 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
3353 }
3354
3355 /* return 0 as number of sectors if no device present or error */
3356 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3357 {
3358 int64_t nb_sectors = bdrv_nb_sectors(bs);
3359
3360 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3361 }
3362
3363 bool bdrv_is_read_only(BlockDriverState *bs)
3364 {
3365 return bs->read_only;
3366 }
3367
3368 bool bdrv_is_sg(BlockDriverState *bs)
3369 {
3370 return bs->sg;
3371 }
3372
3373 bool bdrv_is_encrypted(BlockDriverState *bs)
3374 {
3375 if (bs->backing && bs->backing->bs->encrypted) {
3376 return true;
3377 }
3378 return bs->encrypted;
3379 }
3380
3381 bool bdrv_key_required(BlockDriverState *bs)
3382 {
3383 BdrvChild *backing = bs->backing;
3384
3385 if (backing && backing->bs->encrypted && !backing->bs->valid_key) {
3386 return true;
3387 }
3388 return (bs->encrypted && !bs->valid_key);
3389 }
3390
3391 int bdrv_set_key(BlockDriverState *bs, const char *key)
3392 {
3393 int ret;
3394 if (bs->backing && bs->backing->bs->encrypted) {
3395 ret = bdrv_set_key(bs->backing->bs, key);
3396 if (ret < 0)
3397 return ret;
3398 if (!bs->encrypted)
3399 return 0;
3400 }
3401 if (!bs->encrypted) {
3402 return -EINVAL;
3403 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
3404 return -ENOMEDIUM;
3405 }
3406 ret = bs->drv->bdrv_set_key(bs, key);
3407 if (ret < 0) {
3408 bs->valid_key = false;
3409 } else if (!bs->valid_key) {
3410 /* call the change callback now, we skipped it on open */
3411 bs->valid_key = true;
3412 bdrv_parent_cb_change_media(bs, true);
3413 }
3414 return ret;
3415 }
3416
3417 /*
3418 * Provide an encryption key for @bs.
3419 * If @key is non-null:
3420 * If @bs is not encrypted, fail.
3421 * Else if the key is invalid, fail.
3422 * Else set @bs's key to @key, replacing the existing key, if any.
3423 * If @key is null:
3424 * If @bs is encrypted and still lacks a key, fail.
3425 * Else do nothing.
3426 * On failure, store an error object through @errp if non-null.
3427 */
3428 void bdrv_add_key(BlockDriverState *bs, const char *key, Error **errp)
3429 {
3430 if (key) {
3431 if (!bdrv_is_encrypted(bs)) {
3432 error_setg(errp, "Node '%s' is not encrypted",
3433 bdrv_get_device_or_node_name(bs));
3434 } else if (bdrv_set_key(bs, key) < 0) {
3435 error_setg(errp, QERR_INVALID_PASSWORD);
3436 }
3437 } else {
3438 if (bdrv_key_required(bs)) {
3439 error_set(errp, ERROR_CLASS_DEVICE_ENCRYPTED,
3440 "'%s' (%s) is encrypted",
3441 bdrv_get_device_or_node_name(bs),
3442 bdrv_get_encrypted_filename(bs));
3443 }
3444 }
3445 }
3446
3447 const char *bdrv_get_format_name(BlockDriverState *bs)
3448 {
3449 return bs->drv ? bs->drv->format_name : NULL;
3450 }
3451
3452 static int qsort_strcmp(const void *a, const void *b)
3453 {
3454 return strcmp(*(char *const *)a, *(char *const *)b);
3455 }
3456
3457 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3458 void *opaque)
3459 {
3460 BlockDriver *drv;
3461 int count = 0;
3462 int i;
3463 const char **formats = NULL;
3464
3465 QLIST_FOREACH(drv, &bdrv_drivers, list) {
3466 if (drv->format_name) {
3467 bool found = false;
3468 int i = count;
3469 while (formats && i && !found) {
3470 found = !strcmp(formats[--i], drv->format_name);
3471 }
3472
3473 if (!found) {
3474 formats = g_renew(const char *, formats, count + 1);
3475 formats[count++] = drv->format_name;
3476 }
3477 }
3478 }
3479
3480 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
3481 const char *format_name = block_driver_modules[i].format_name;
3482
3483 if (format_name) {
3484 bool found = false;
3485 int j = count;
3486
3487 while (formats && j && !found) {
3488 found = !strcmp(formats[--j], format_name);
3489 }
3490
3491 if (!found) {
3492 formats = g_renew(const char *, formats, count + 1);
3493 formats[count++] = format_name;
3494 }
3495 }
3496 }
3497
3498 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
3499
3500 for (i = 0; i < count; i++) {
3501 it(opaque, formats[i]);
3502 }
3503
3504 g_free(formats);
3505 }
3506
3507 /* This function is to find a node in the bs graph */
3508 BlockDriverState *bdrv_find_node(const char *node_name)
3509 {
3510 BlockDriverState *bs;
3511
3512 assert(node_name);
3513
3514 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3515 if (!strcmp(node_name, bs->node_name)) {
3516 return bs;
3517 }
3518 }
3519 return NULL;
3520 }
3521
3522 /* Put this QMP function here so it can access the static graph_bdrv_states. */
3523 BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
3524 {
3525 BlockDeviceInfoList *list, *entry;
3526 BlockDriverState *bs;
3527
3528 list = NULL;
3529 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3530 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
3531 if (!info) {
3532 qapi_free_BlockDeviceInfoList(list);
3533 return NULL;
3534 }
3535 entry = g_malloc0(sizeof(*entry));
3536 entry->value = info;
3537 entry->next = list;
3538 list = entry;
3539 }
3540
3541 return list;
3542 }
3543
3544 BlockDriverState *bdrv_lookup_bs(const char *device,
3545 const char *node_name,
3546 Error **errp)
3547 {
3548 BlockBackend *blk;
3549 BlockDriverState *bs;
3550
3551 if (device) {
3552 blk = blk_by_name(device);
3553
3554 if (blk) {
3555 bs = blk_bs(blk);
3556 if (!bs) {
3557 error_setg(errp, "Device '%s' has no medium", device);
3558 }
3559
3560 return bs;
3561 }
3562 }
3563
3564 if (node_name) {
3565 bs = bdrv_find_node(node_name);
3566
3567 if (bs) {
3568 return bs;
3569 }
3570 }
3571
3572 error_setg(errp, "Cannot find device=%s nor node_name=%s",
3573 device ? device : "",
3574 node_name ? node_name : "");
3575 return NULL;
3576 }
3577
3578 /* If 'base' is in the same chain as 'top', return true. Otherwise,
3579 * return false. If either argument is NULL, return false. */
3580 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
3581 {
3582 while (top && top != base) {
3583 top = backing_bs(top);
3584 }
3585
3586 return top != NULL;
3587 }
3588
3589 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
3590 {
3591 if (!bs) {
3592 return QTAILQ_FIRST(&graph_bdrv_states);
3593 }
3594 return QTAILQ_NEXT(bs, node_list);
3595 }
3596
3597 const char *bdrv_get_node_name(const BlockDriverState *bs)
3598 {
3599 return bs->node_name;
3600 }
3601
3602 const char *bdrv_get_parent_name(const BlockDriverState *bs)
3603 {
3604 BdrvChild *c;
3605 const char *name;
3606
3607 /* If multiple parents have a name, just pick the first one. */
3608 QLIST_FOREACH(c, &bs->parents, next_parent) {
3609 if (c->role->get_name) {
3610 name = c->role->get_name(c);
3611 if (name && *name) {
3612 return name;
3613 }
3614 }
3615 }
3616
3617 return NULL;
3618 }
3619
3620 /* TODO check what callers really want: bs->node_name or blk_name() */
3621 const char *bdrv_get_device_name(const BlockDriverState *bs)
3622 {
3623 return bdrv_get_parent_name(bs) ?: "";
3624 }
3625
3626 /* This can be used to identify nodes that might not have a device
3627 * name associated. Since node and device names live in the same
3628 * namespace, the result is unambiguous. The exception is if both are
3629 * absent, then this returns an empty (non-null) string. */
3630 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
3631 {
3632 return bdrv_get_parent_name(bs) ?: bs->node_name;
3633 }
3634
3635 int bdrv_get_flags(BlockDriverState *bs)
3636 {
3637 return bs->open_flags;
3638 }
3639
3640 int bdrv_has_zero_init_1(BlockDriverState *bs)
3641 {
3642 return 1;
3643 }
3644
3645 int bdrv_has_zero_init(BlockDriverState *bs)
3646 {
3647 assert(bs->drv);
3648
3649 /* If BS is a copy on write image, it is initialized to
3650 the contents of the base image, which may not be zeroes. */
3651 if (bs->backing) {
3652 return 0;
3653 }
3654 if (bs->drv->bdrv_has_zero_init) {
3655 return bs->drv->bdrv_has_zero_init(bs);
3656 }
3657
3658 /* safe default */
3659 return 0;
3660 }
3661
3662 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
3663 {
3664 BlockDriverInfo bdi;
3665
3666 if (bs->backing) {
3667 return false;
3668 }
3669
3670 if (bdrv_get_info(bs, &bdi) == 0) {
3671 return bdi.unallocated_blocks_are_zero;
3672 }
3673
3674 return false;
3675 }
3676
3677 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
3678 {
3679 BlockDriverInfo bdi;
3680
3681 if (!(bs->open_flags & BDRV_O_UNMAP)) {
3682 return false;
3683 }
3684
3685 if (bdrv_get_info(bs, &bdi) == 0) {
3686 return bdi.can_write_zeroes_with_unmap;
3687 }
3688
3689 return false;
3690 }
3691
3692 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
3693 {
3694 if (bs->backing && bs->backing->bs->encrypted)
3695 return bs->backing_file;
3696 else if (bs->encrypted)
3697 return bs->filename;
3698 else
3699 return NULL;
3700 }
3701
3702 void bdrv_get_backing_filename(BlockDriverState *bs,
3703 char *filename, int filename_size)
3704 {
3705 pstrcpy(filename, filename_size, bs->backing_file);
3706 }
3707
3708 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
3709 {
3710 BlockDriver *drv = bs->drv;
3711 if (!drv)
3712 return -ENOMEDIUM;
3713 if (!drv->bdrv_get_info)
3714 return -ENOTSUP;
3715 memset(bdi, 0, sizeof(*bdi));
3716 return drv->bdrv_get_info(bs, bdi);
3717 }
3718
3719 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
3720 {
3721 BlockDriver *drv = bs->drv;
3722 if (drv && drv->bdrv_get_specific_info) {
3723 return drv->bdrv_get_specific_info(bs);
3724 }
3725 return NULL;
3726 }
3727
3728 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
3729 {
3730 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
3731 return;
3732 }
3733
3734 bs->drv->bdrv_debug_event(bs, event);
3735 }
3736
3737 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
3738 const char *tag)
3739 {
3740 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
3741 bs = bs->file ? bs->file->bs : NULL;
3742 }
3743
3744 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
3745 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
3746 }
3747
3748 return -ENOTSUP;
3749 }
3750
3751 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
3752 {
3753 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
3754 bs = bs->file ? bs->file->bs : NULL;
3755 }
3756
3757 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
3758 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
3759 }
3760
3761 return -ENOTSUP;
3762 }
3763
3764 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
3765 {
3766 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
3767 bs = bs->file ? bs->file->bs : NULL;
3768 }
3769
3770 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
3771 return bs->drv->bdrv_debug_resume(bs, tag);
3772 }
3773
3774 return -ENOTSUP;
3775 }
3776
3777 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
3778 {
3779 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
3780 bs = bs->file ? bs->file->bs : NULL;
3781 }
3782
3783 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
3784 return bs->drv->bdrv_debug_is_suspended(bs, tag);
3785 }
3786
3787 return false;
3788 }
3789
3790 /* backing_file can either be relative, or absolute, or a protocol. If it is
3791 * relative, it must be relative to the chain. So, passing in bs->filename
3792 * from a BDS as backing_file should not be done, as that may be relative to
3793 * the CWD rather than the chain. */
3794 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3795 const char *backing_file)
3796 {
3797 char *filename_full = NULL;
3798 char *backing_file_full = NULL;
3799 char *filename_tmp = NULL;
3800 int is_protocol = 0;
3801 BlockDriverState *curr_bs = NULL;
3802 BlockDriverState *retval = NULL;
3803 Error *local_error = NULL;
3804
3805 if (!bs || !bs->drv || !backing_file) {
3806 return NULL;
3807 }
3808
3809 filename_full = g_malloc(PATH_MAX);
3810 backing_file_full = g_malloc(PATH_MAX);
3811 filename_tmp = g_malloc(PATH_MAX);
3812
3813 is_protocol = path_has_protocol(backing_file);
3814
3815 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
3816
3817 /* If either of the filename paths is actually a protocol, then
3818 * compare unmodified paths; otherwise make paths relative */
3819 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3820 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3821 retval = curr_bs->backing->bs;
3822 break;
3823 }
3824 /* Also check against the full backing filename for the image */
3825 bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
3826 &local_error);
3827 if (local_error == NULL) {
3828 if (strcmp(backing_file, backing_file_full) == 0) {
3829 retval = curr_bs->backing->bs;
3830 break;
3831 }
3832 } else {
3833 error_free(local_error);
3834 local_error = NULL;
3835 }
3836 } else {
3837 /* If not an absolute filename path, make it relative to the current
3838 * image's filename path */
3839 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3840 backing_file);
3841
3842 /* We are going to compare absolute pathnames */
3843 if (!realpath(filename_tmp, filename_full)) {
3844 continue;
3845 }
3846
3847 /* We need to make sure the backing filename we are comparing against
3848 * is relative to the current image filename (or absolute) */
3849 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3850 curr_bs->backing_file);
3851
3852 if (!realpath(filename_tmp, backing_file_full)) {
3853 continue;
3854 }
3855
3856 if (strcmp(backing_file_full, filename_full) == 0) {
3857 retval = curr_bs->backing->bs;
3858 break;
3859 }
3860 }
3861 }
3862
3863 g_free(filename_full);
3864 g_free(backing_file_full);
3865 g_free(filename_tmp);
3866 return retval;
3867 }
3868
3869 int bdrv_get_backing_file_depth(BlockDriverState *bs)
3870 {
3871 if (!bs->drv) {
3872 return 0;
3873 }
3874
3875 if (!bs->backing) {
3876 return 0;
3877 }
3878
3879 return 1 + bdrv_get_backing_file_depth(bs->backing->bs);
3880 }
3881
3882 void bdrv_init(void)
3883 {
3884 module_call_init(MODULE_INIT_BLOCK);
3885 }
3886
3887 void bdrv_init_with_whitelist(void)
3888 {
3889 use_bdrv_whitelist = 1;
3890 bdrv_init();
3891 }
3892
3893 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
3894 {
3895 BdrvChild *child;
3896 Error *local_err = NULL;
3897 int ret;
3898
3899 if (!bs->drv) {
3900 return;
3901 }
3902
3903 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
3904 return;
3905 }
3906
3907 QLIST_FOREACH(child, &bs->children, next) {
3908 bdrv_invalidate_cache(child->bs, &local_err);
3909 if (local_err) {
3910 error_propagate(errp, local_err);
3911 return;
3912 }
3913 }
3914
3915 bs->open_flags &= ~BDRV_O_INACTIVE;
3916 if (bs->drv->bdrv_invalidate_cache) {
3917 bs->drv->bdrv_invalidate_cache(bs, &local_err);
3918 if (local_err) {
3919 bs->open_flags |= BDRV_O_INACTIVE;
3920 error_propagate(errp, local_err);
3921 return;
3922 }
3923 }
3924
3925 ret = refresh_total_sectors(bs, bs->total_sectors);
3926 if (ret < 0) {
3927 bs->open_flags |= BDRV_O_INACTIVE;
3928 error_setg_errno(errp, -ret, "Could not refresh total sector count");
3929 return;
3930 }
3931 }
3932
3933 void bdrv_invalidate_cache_all(Error **errp)
3934 {
3935 BlockDriverState *bs;
3936 Error *local_err = NULL;
3937 BdrvNextIterator it;
3938
3939 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3940 AioContext *aio_context = bdrv_get_aio_context(bs);
3941
3942 aio_context_acquire(aio_context);
3943 bdrv_invalidate_cache(bs, &local_err);
3944 aio_context_release(aio_context);
3945 if (local_err) {
3946 error_propagate(errp, local_err);
3947 return;
3948 }
3949 }
3950 }
3951
3952 static int bdrv_inactivate_recurse(BlockDriverState *bs,
3953 bool setting_flag)
3954 {
3955 BdrvChild *child;
3956 int ret;
3957
3958 if (!setting_flag && bs->drv->bdrv_inactivate) {
3959 ret = bs->drv->bdrv_inactivate(bs);
3960 if (ret < 0) {
3961 return ret;
3962 }
3963 }
3964
3965 QLIST_FOREACH(child, &bs->children, next) {
3966 ret = bdrv_inactivate_recurse(child->bs, setting_flag);
3967 if (ret < 0) {
3968 return ret;
3969 }
3970 }
3971
3972 if (setting_flag) {
3973 bs->open_flags |= BDRV_O_INACTIVE;
3974 }
3975 return 0;
3976 }
3977
3978 int bdrv_inactivate_all(void)
3979 {
3980 BlockDriverState *bs = NULL;
3981 BdrvNextIterator it;
3982 int ret = 0;
3983 int pass;
3984
3985 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3986 aio_context_acquire(bdrv_get_aio_context(bs));
3987 }
3988
3989 /* We do two passes of inactivation. The first pass calls to drivers'
3990 * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
3991 * the second pass sets the BDRV_O_INACTIVE flag so that no further write
3992 * is allowed. */
3993 for (pass = 0; pass < 2; pass++) {
3994 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
3995 ret = bdrv_inactivate_recurse(bs, pass);
3996 if (ret < 0) {
3997 goto out;
3998 }
3999 }
4000 }
4001
4002 out:
4003 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4004 aio_context_release(bdrv_get_aio_context(bs));
4005 }
4006
4007 return ret;
4008 }
4009
4010 /**************************************************************/
4011 /* removable device support */
4012
4013 /**
4014 * Return TRUE if the media is present
4015 */
4016 bool bdrv_is_inserted(BlockDriverState *bs)
4017 {
4018 BlockDriver *drv = bs->drv;
4019 BdrvChild *child;
4020
4021 if (!drv) {
4022 return false;
4023 }
4024 if (drv->bdrv_is_inserted) {
4025 return drv->bdrv_is_inserted(bs);
4026 }
4027 QLIST_FOREACH(child, &bs->children, next) {
4028 if (!bdrv_is_inserted(child->bs)) {
4029 return false;
4030 }
4031 }
4032 return true;
4033 }
4034
4035 /**
4036 * Return whether the media changed since the last call to this
4037 * function, or -ENOTSUP if we don't know. Most drivers don't know.
4038 */
4039 int bdrv_media_changed(BlockDriverState *bs)
4040 {
4041 BlockDriver *drv = bs->drv;
4042
4043 if (drv && drv->bdrv_media_changed) {
4044 return drv->bdrv_media_changed(bs);
4045 }
4046 return -ENOTSUP;
4047 }
4048
4049 /**
4050 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4051 */
4052 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4053 {
4054 BlockDriver *drv = bs->drv;
4055
4056 if (drv && drv->bdrv_eject) {
4057 drv->bdrv_eject(bs, eject_flag);
4058 }
4059 }
4060
4061 /**
4062 * Lock or unlock the media (if it is locked, the user won't be able
4063 * to eject it manually).
4064 */
4065 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
4066 {
4067 BlockDriver *drv = bs->drv;
4068
4069 trace_bdrv_lock_medium(bs, locked);
4070
4071 if (drv && drv->bdrv_lock_medium) {
4072 drv->bdrv_lock_medium(bs, locked);
4073 }
4074 }
4075
4076 /* Get a reference to bs */
4077 void bdrv_ref(BlockDriverState *bs)
4078 {
4079 bs->refcnt++;
4080 }
4081
4082 /* Release a previously grabbed reference to bs.
4083 * If after releasing, reference count is zero, the BlockDriverState is
4084 * deleted. */
4085 void bdrv_unref(BlockDriverState *bs)
4086 {
4087 if (!bs) {
4088 return;
4089 }
4090 assert(bs->refcnt > 0);
4091 if (--bs->refcnt == 0) {
4092 bdrv_delete(bs);
4093 }
4094 }
4095
4096 struct BdrvOpBlocker {
4097 Error *reason;
4098 QLIST_ENTRY(BdrvOpBlocker) list;
4099 };
4100
4101 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4102 {
4103 BdrvOpBlocker *blocker;
4104 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4105 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4106 blocker = QLIST_FIRST(&bs->op_blockers[op]);
4107 if (errp) {
4108 *errp = error_copy(blocker->reason);
4109 error_prepend(errp, "Node '%s' is busy: ",
4110 bdrv_get_device_or_node_name(bs));
4111 }
4112 return true;
4113 }
4114 return false;
4115 }
4116
4117 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4118 {
4119 BdrvOpBlocker *blocker;
4120 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4121
4122 blocker = g_new0(BdrvOpBlocker, 1);
4123 blocker->reason = reason;
4124 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4125 }
4126
4127 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4128 {
4129 BdrvOpBlocker *blocker, *next;
4130 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4131 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4132 if (blocker->reason == reason) {
4133 QLIST_REMOVE(blocker, list);
4134 g_free(blocker);
4135 }
4136 }
4137 }
4138
4139 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4140 {
4141 int i;
4142 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4143 bdrv_op_block(bs, i, reason);
4144 }
4145 }
4146
4147 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4148 {
4149 int i;
4150 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4151 bdrv_op_unblock(bs, i, reason);
4152 }
4153 }
4154
4155 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4156 {
4157 int i;
4158
4159 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4160 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4161 return false;
4162 }
4163 }
4164 return true;
4165 }
4166
4167 void bdrv_img_create(const char *filename, const char *fmt,
4168 const char *base_filename, const char *base_fmt,
4169 char *options, uint64_t img_size, int flags, bool quiet,
4170 Error **errp)
4171 {
4172 QemuOptsList *create_opts = NULL;
4173 QemuOpts *opts = NULL;
4174 const char *backing_fmt, *backing_file;
4175 int64_t size;
4176 BlockDriver *drv, *proto_drv;
4177 Error *local_err = NULL;
4178 int ret = 0;
4179
4180 /* Find driver and parse its options */
4181 drv = bdrv_find_format(fmt);
4182 if (!drv) {
4183 error_setg(errp, "Unknown file format '%s'", fmt);
4184 return;
4185 }
4186
4187 proto_drv = bdrv_find_protocol(filename, true, errp);
4188 if (!proto_drv) {
4189 return;
4190 }
4191
4192 if (!drv->create_opts) {
4193 error_setg(errp, "Format driver '%s' does not support image creation",
4194 drv->format_name);
4195 return;
4196 }
4197
4198 if (!proto_drv->create_opts) {
4199 error_setg(errp, "Protocol driver '%s' does not support image creation",
4200 proto_drv->format_name);
4201 return;
4202 }
4203
4204 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4205 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4206
4207 /* Create parameter list with default values */
4208 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4209 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4210
4211 /* Parse -o options */
4212 if (options) {
4213 qemu_opts_do_parse(opts, options, NULL, &local_err);
4214 if (local_err) {
4215 error_report_err(local_err);
4216 local_err = NULL;
4217 error_setg(errp, "Invalid options for file format '%s'", fmt);
4218 goto out;
4219 }
4220 }
4221
4222 if (base_filename) {
4223 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
4224 if (local_err) {
4225 error_setg(errp, "Backing file not supported for file format '%s'",
4226 fmt);
4227 goto out;
4228 }
4229 }
4230
4231 if (base_fmt) {
4232 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
4233 if (local_err) {
4234 error_setg(errp, "Backing file format not supported for file "
4235 "format '%s'", fmt);
4236 goto out;
4237 }
4238 }
4239
4240 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4241 if (backing_file) {
4242 if (!strcmp(filename, backing_file)) {
4243 error_setg(errp, "Error: Trying to create an image with the "
4244 "same filename as the backing file");
4245 goto out;
4246 }
4247 }
4248
4249 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4250
4251 // The size for the image must always be specified, with one exception:
4252 // If we are using a backing file, we can obtain the size from there
4253 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
4254 if (size == -1) {
4255 if (backing_file) {
4256 BlockDriverState *bs;
4257 char *full_backing = g_new0(char, PATH_MAX);
4258 int64_t size;
4259 int back_flags;
4260 QDict *backing_options = NULL;
4261
4262 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4263 full_backing, PATH_MAX,
4264 &local_err);
4265 if (local_err) {
4266 g_free(full_backing);
4267 goto out;
4268 }
4269
4270 /* backing files always opened read-only */
4271 back_flags = flags;
4272 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4273
4274 if (backing_fmt) {
4275 backing_options = qdict_new();
4276 qdict_put(backing_options, "driver",
4277 qstring_from_str(backing_fmt));
4278 }
4279
4280 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4281 &local_err);
4282 g_free(full_backing);
4283 if (!bs) {
4284 goto out;
4285 }
4286 size = bdrv_getlength(bs);
4287 if (size < 0) {
4288 error_setg_errno(errp, -size, "Could not get size of '%s'",
4289 backing_file);
4290 bdrv_unref(bs);
4291 goto out;
4292 }
4293
4294 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
4295
4296 bdrv_unref(bs);
4297 } else {
4298 error_setg(errp, "Image creation needs a size parameter");
4299 goto out;
4300 }
4301 }
4302
4303 if (!quiet) {
4304 printf("Formatting '%s', fmt=%s ", filename, fmt);
4305 qemu_opts_print(opts, " ");
4306 puts("");
4307 }
4308
4309 ret = bdrv_create(drv, filename, opts, &local_err);
4310
4311 if (ret == -EFBIG) {
4312 /* This is generally a better message than whatever the driver would
4313 * deliver (especially because of the cluster_size_hint), since that
4314 * is most probably not much different from "image too large". */
4315 const char *cluster_size_hint = "";
4316 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4317 cluster_size_hint = " (try using a larger cluster size)";
4318 }
4319 error_setg(errp, "The image size is too large for file format '%s'"
4320 "%s", fmt, cluster_size_hint);
4321 error_free(local_err);
4322 local_err = NULL;
4323 }
4324
4325 out:
4326 qemu_opts_del(opts);
4327 qemu_opts_free(create_opts);
4328 error_propagate(errp, local_err);
4329 }
4330
4331 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4332 {
4333 return bs->aio_context;
4334 }
4335
4336 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4337 {
4338 aio_co_enter(bdrv_get_aio_context(bs), co);
4339 }
4340
4341 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4342 {
4343 QLIST_REMOVE(ban, list);
4344 g_free(ban);
4345 }
4346
4347 void bdrv_detach_aio_context(BlockDriverState *bs)
4348 {
4349 BdrvAioNotifier *baf, *baf_tmp;
4350 BdrvChild *child;
4351
4352 if (!bs->drv) {
4353 return;
4354 }
4355
4356 assert(!bs->walking_aio_notifiers);
4357 bs->walking_aio_notifiers = true;
4358 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
4359 if (baf->deleted) {
4360 bdrv_do_remove_aio_context_notifier(baf);
4361 } else {
4362 baf->detach_aio_context(baf->opaque);
4363 }
4364 }
4365 /* Never mind iterating again to check for ->deleted. bdrv_close() will
4366 * remove remaining aio notifiers if we aren't called again.
4367 */
4368 bs->walking_aio_notifiers = false;
4369
4370 if (bs->drv->bdrv_detach_aio_context) {
4371 bs->drv->bdrv_detach_aio_context(bs);
4372 }
4373 QLIST_FOREACH(child, &bs->children, next) {
4374 bdrv_detach_aio_context(child->bs);
4375 }
4376
4377 bs->aio_context = NULL;
4378 }
4379
4380 void bdrv_attach_aio_context(BlockDriverState *bs,
4381 AioContext *new_context)
4382 {
4383 BdrvAioNotifier *ban, *ban_tmp;
4384 BdrvChild *child;
4385
4386 if (!bs->drv) {
4387 return;
4388 }
4389
4390 bs->aio_context = new_context;
4391
4392 QLIST_FOREACH(child, &bs->children, next) {
4393 bdrv_attach_aio_context(child->bs, new_context);
4394 }
4395 if (bs->drv->bdrv_attach_aio_context) {
4396 bs->drv->bdrv_attach_aio_context(bs, new_context);
4397 }
4398
4399 assert(!bs->walking_aio_notifiers);
4400 bs->walking_aio_notifiers = true;
4401 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
4402 if (ban->deleted) {
4403 bdrv_do_remove_aio_context_notifier(ban);
4404 } else {
4405 ban->attached_aio_context(new_context, ban->opaque);
4406 }
4407 }
4408 bs->walking_aio_notifiers = false;
4409 }
4410
4411 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
4412 {
4413 AioContext *ctx = bdrv_get_aio_context(bs);
4414
4415 aio_disable_external(ctx);
4416 bdrv_parent_drained_begin(bs);
4417 bdrv_drain(bs); /* ensure there are no in-flight requests */
4418
4419 while (aio_poll(ctx, false)) {
4420 /* wait for all bottom halves to execute */
4421 }
4422
4423 bdrv_detach_aio_context(bs);
4424
4425 /* This function executes in the old AioContext so acquire the new one in
4426 * case it runs in a different thread.
4427 */
4428 aio_context_acquire(new_context);
4429 bdrv_attach_aio_context(bs, new_context);
4430 bdrv_parent_drained_end(bs);
4431 aio_enable_external(ctx);
4432 aio_context_release(new_context);
4433 }
4434
4435 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
4436 void (*attached_aio_context)(AioContext *new_context, void *opaque),
4437 void (*detach_aio_context)(void *opaque), void *opaque)
4438 {
4439 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
4440 *ban = (BdrvAioNotifier){
4441 .attached_aio_context = attached_aio_context,
4442 .detach_aio_context = detach_aio_context,
4443 .opaque = opaque
4444 };
4445
4446 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
4447 }
4448
4449 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
4450 void (*attached_aio_context)(AioContext *,
4451 void *),
4452 void (*detach_aio_context)(void *),
4453 void *opaque)
4454 {
4455 BdrvAioNotifier *ban, *ban_next;
4456
4457 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4458 if (ban->attached_aio_context == attached_aio_context &&
4459 ban->detach_aio_context == detach_aio_context &&
4460 ban->opaque == opaque &&
4461 ban->deleted == false)
4462 {
4463 if (bs->walking_aio_notifiers) {
4464 ban->deleted = true;
4465 } else {
4466 bdrv_do_remove_aio_context_notifier(ban);
4467 }
4468 return;
4469 }
4470 }
4471
4472 abort();
4473 }
4474
4475 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
4476 BlockDriverAmendStatusCB *status_cb, void *cb_opaque)
4477 {
4478 if (!bs->drv->bdrv_amend_options) {
4479 return -ENOTSUP;
4480 }
4481 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque);
4482 }
4483
4484 /* This function will be called by the bdrv_recurse_is_first_non_filter method
4485 * of block filter and by bdrv_is_first_non_filter.
4486 * It is used to test if the given bs is the candidate or recurse more in the
4487 * node graph.
4488 */
4489 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
4490 BlockDriverState *candidate)
4491 {
4492 /* return false if basic checks fails */
4493 if (!bs || !bs->drv) {
4494 return false;
4495 }
4496
4497 /* the code reached a non block filter driver -> check if the bs is
4498 * the same as the candidate. It's the recursion termination condition.
4499 */
4500 if (!bs->drv->is_filter) {
4501 return bs == candidate;
4502 }
4503 /* Down this path the driver is a block filter driver */
4504
4505 /* If the block filter recursion method is defined use it to recurse down
4506 * the node graph.
4507 */
4508 if (bs->drv->bdrv_recurse_is_first_non_filter) {
4509 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
4510 }
4511
4512 /* the driver is a block filter but don't allow to recurse -> return false
4513 */
4514 return false;
4515 }
4516
4517 /* This function checks if the candidate is the first non filter bs down it's
4518 * bs chain. Since we don't have pointers to parents it explore all bs chains
4519 * from the top. Some filters can choose not to pass down the recursion.
4520 */
4521 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
4522 {
4523 BlockDriverState *bs;
4524 BdrvNextIterator it;
4525
4526 /* walk down the bs forest recursively */
4527 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4528 bool perm;
4529
4530 /* try to recurse in this top level bs */
4531 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
4532
4533 /* candidate is the first non filter */
4534 if (perm) {
4535 return true;
4536 }
4537 }
4538
4539 return false;
4540 }
4541
4542 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
4543 const char *node_name, Error **errp)
4544 {
4545 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
4546 AioContext *aio_context;
4547
4548 if (!to_replace_bs) {
4549 error_setg(errp, "Node name '%s' not found", node_name);
4550 return NULL;
4551 }
4552
4553 aio_context = bdrv_get_aio_context(to_replace_bs);
4554 aio_context_acquire(aio_context);
4555
4556 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
4557 to_replace_bs = NULL;
4558 goto out;
4559 }
4560
4561 /* We don't want arbitrary node of the BDS chain to be replaced only the top
4562 * most non filter in order to prevent data corruption.
4563 * Another benefit is that this tests exclude backing files which are
4564 * blocked by the backing blockers.
4565 */
4566 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
4567 error_setg(errp, "Only top most non filter can be replaced");
4568 to_replace_bs = NULL;
4569 goto out;
4570 }
4571
4572 out:
4573 aio_context_release(aio_context);
4574 return to_replace_bs;
4575 }
4576
4577 static bool append_open_options(QDict *d, BlockDriverState *bs)
4578 {
4579 const QDictEntry *entry;
4580 QemuOptDesc *desc;
4581 BdrvChild *child;
4582 bool found_any = false;
4583 const char *p;
4584
4585 for (entry = qdict_first(bs->options); entry;
4586 entry = qdict_next(bs->options, entry))
4587 {
4588 /* Exclude options for children */
4589 QLIST_FOREACH(child, &bs->children, next) {
4590 if (strstart(qdict_entry_key(entry), child->name, &p)
4591 && (!*p || *p == '.'))
4592 {
4593 break;
4594 }
4595 }
4596 if (child) {
4597 continue;
4598 }
4599
4600 /* And exclude all non-driver-specific options */
4601 for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
4602 if (!strcmp(qdict_entry_key(entry), desc->name)) {
4603 break;
4604 }
4605 }
4606 if (desc->name) {
4607 continue;
4608 }
4609
4610 qobject_incref(qdict_entry_value(entry));
4611 qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
4612 found_any = true;
4613 }
4614
4615 return found_any;
4616 }
4617
4618 /* Updates the following BDS fields:
4619 * - exact_filename: A filename which may be used for opening a block device
4620 * which (mostly) equals the given BDS (even without any
4621 * other options; so reading and writing must return the same
4622 * results, but caching etc. may be different)
4623 * - full_open_options: Options which, when given when opening a block device
4624 * (without a filename), result in a BDS (mostly)
4625 * equalling the given one
4626 * - filename: If exact_filename is set, it is copied here. Otherwise,
4627 * full_open_options is converted to a JSON object, prefixed with
4628 * "json:" (for use through the JSON pseudo protocol) and put here.
4629 */
4630 void bdrv_refresh_filename(BlockDriverState *bs)
4631 {
4632 BlockDriver *drv = bs->drv;
4633 QDict *opts;
4634
4635 if (!drv) {
4636 return;
4637 }
4638
4639 /* This BDS's file name will most probably depend on its file's name, so
4640 * refresh that first */
4641 if (bs->file) {
4642 bdrv_refresh_filename(bs->file->bs);
4643 }
4644
4645 if (drv->bdrv_refresh_filename) {
4646 /* Obsolete information is of no use here, so drop the old file name
4647 * information before refreshing it */
4648 bs->exact_filename[0] = '\0';
4649 if (bs->full_open_options) {
4650 QDECREF(bs->full_open_options);
4651 bs->full_open_options = NULL;
4652 }
4653
4654 opts = qdict_new();
4655 append_open_options(opts, bs);
4656 drv->bdrv_refresh_filename(bs, opts);
4657 QDECREF(opts);
4658 } else if (bs->file) {
4659 /* Try to reconstruct valid information from the underlying file */
4660 bool has_open_options;
4661
4662 bs->exact_filename[0] = '\0';
4663 if (bs->full_open_options) {
4664 QDECREF(bs->full_open_options);
4665 bs->full_open_options = NULL;
4666 }
4667
4668 opts = qdict_new();
4669 has_open_options = append_open_options(opts, bs);
4670
4671 /* If no specific options have been given for this BDS, the filename of
4672 * the underlying file should suffice for this one as well */
4673 if (bs->file->bs->exact_filename[0] && !has_open_options) {
4674 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
4675 }
4676 /* Reconstructing the full options QDict is simple for most format block
4677 * drivers, as long as the full options are known for the underlying
4678 * file BDS. The full options QDict of that file BDS should somehow
4679 * contain a representation of the filename, therefore the following
4680 * suffices without querying the (exact_)filename of this BDS. */
4681 if (bs->file->bs->full_open_options) {
4682 qdict_put_obj(opts, "driver",
4683 QOBJECT(qstring_from_str(drv->format_name)));
4684 QINCREF(bs->file->bs->full_open_options);
4685 qdict_put_obj(opts, "file",
4686 QOBJECT(bs->file->bs->full_open_options));
4687
4688 bs->full_open_options = opts;
4689 } else {
4690 QDECREF(opts);
4691 }
4692 } else if (!bs->full_open_options && qdict_size(bs->options)) {
4693 /* There is no underlying file BDS (at least referenced by BDS.file),
4694 * so the full options QDict should be equal to the options given
4695 * specifically for this block device when it was opened (plus the
4696 * driver specification).
4697 * Because those options don't change, there is no need to update
4698 * full_open_options when it's already set. */
4699
4700 opts = qdict_new();
4701 append_open_options(opts, bs);
4702 qdict_put_obj(opts, "driver",
4703 QOBJECT(qstring_from_str(drv->format_name)));
4704
4705 if (bs->exact_filename[0]) {
4706 /* This may not work for all block protocol drivers (some may
4707 * require this filename to be parsed), but we have to find some
4708 * default solution here, so just include it. If some block driver
4709 * does not support pure options without any filename at all or
4710 * needs some special format of the options QDict, it needs to
4711 * implement the driver-specific bdrv_refresh_filename() function.
4712 */
4713 qdict_put_obj(opts, "filename",
4714 QOBJECT(qstring_from_str(bs->exact_filename)));
4715 }
4716
4717 bs->full_open_options = opts;
4718 }
4719
4720 if (bs->exact_filename[0]) {
4721 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
4722 } else if (bs->full_open_options) {
4723 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
4724 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
4725 qstring_get_str(json));
4726 QDECREF(json);
4727 }
4728 }
4729
4730 /*
4731 * Hot add/remove a BDS's child. So the user can take a child offline when
4732 * it is broken and take a new child online
4733 */
4734 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
4735 Error **errp)
4736 {
4737
4738 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
4739 error_setg(errp, "The node %s does not support adding a child",
4740 bdrv_get_device_or_node_name(parent_bs));
4741 return;
4742 }
4743
4744 if (!QLIST_EMPTY(&child_bs->parents)) {
4745 error_setg(errp, "The node %s already has a parent",
4746 child_bs->node_name);
4747 return;
4748 }
4749
4750 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
4751 }
4752
4753 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
4754 {
4755 BdrvChild *tmp;
4756
4757 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
4758 error_setg(errp, "The node %s does not support removing a child",
4759 bdrv_get_device_or_node_name(parent_bs));
4760 return;
4761 }
4762
4763 QLIST_FOREACH(tmp, &parent_bs->children, next) {
4764 if (tmp == child) {
4765 break;
4766 }
4767 }
4768
4769 if (!tmp) {
4770 error_setg(errp, "The node %s does not have a child named %s",
4771 bdrv_get_device_or_node_name(parent_bs),
4772 bdrv_get_device_or_node_name(child->bs));
4773 return;
4774 }
4775
4776 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
4777 }