2 * QEMU System Emulator block driver
4 * Copyright (c) 2003 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 #include "config-host.h"
25 #include "qemu-common.h"
28 #include "block_int.h"
30 #include "qemu-objects.h"
31 #include "qemu-coroutine.h"
34 #include <sys/types.h>
36 #include <sys/ioctl.h>
37 #include <sys/queue.h>
47 static void bdrv_dev_change_media_cb(BlockDriverState
*bs
);
48 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
49 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
50 BlockDriverCompletionFunc
*cb
, void *opaque
);
51 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
52 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
53 BlockDriverCompletionFunc
*cb
, void *opaque
);
54 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
55 BlockDriverCompletionFunc
*cb
, void *opaque
);
56 static BlockDriverAIOCB
*bdrv_aio_noop_em(BlockDriverState
*bs
,
57 BlockDriverCompletionFunc
*cb
, void *opaque
);
58 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
59 uint8_t *buf
, int nb_sectors
);
60 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
61 const uint8_t *buf
, int nb_sectors
);
62 static BlockDriverAIOCB
*bdrv_co_aio_readv_em(BlockDriverState
*bs
,
63 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
64 BlockDriverCompletionFunc
*cb
, void *opaque
);
65 static BlockDriverAIOCB
*bdrv_co_aio_writev_em(BlockDriverState
*bs
,
66 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
67 BlockDriverCompletionFunc
*cb
, void *opaque
);
68 static int coroutine_fn
bdrv_co_readv_em(BlockDriverState
*bs
,
69 int64_t sector_num
, int nb_sectors
,
71 static int coroutine_fn
bdrv_co_writev_em(BlockDriverState
*bs
,
72 int64_t sector_num
, int nb_sectors
,
74 static int coroutine_fn
bdrv_co_flush_em(BlockDriverState
*bs
);
76 static QTAILQ_HEAD(, BlockDriverState
) bdrv_states
=
77 QTAILQ_HEAD_INITIALIZER(bdrv_states
);
79 static QLIST_HEAD(, BlockDriver
) bdrv_drivers
=
80 QLIST_HEAD_INITIALIZER(bdrv_drivers
);
82 /* The device to use for VM snapshots */
83 static BlockDriverState
*bs_snapshots
;
85 /* If non-zero, use only whitelisted block drivers */
86 static int use_bdrv_whitelist
;
89 static int is_windows_drive_prefix(const char *filename
)
91 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
92 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
96 int is_windows_drive(const char *filename
)
98 if (is_windows_drive_prefix(filename
) &&
101 if (strstart(filename
, "\\\\.\\", NULL
) ||
102 strstart(filename
, "//./", NULL
))
108 /* check if the path starts with "<protocol>:" */
109 static int path_has_protocol(const char *path
)
112 if (is_windows_drive(path
) ||
113 is_windows_drive_prefix(path
)) {
118 return strchr(path
, ':') != NULL
;
121 int path_is_absolute(const char *path
)
125 /* specific case for names like: "\\.\d:" */
126 if (*path
== '/' || *path
== '\\')
129 p
= strchr(path
, ':');
135 return (*p
== '/' || *p
== '\\');
141 /* if filename is absolute, just copy it to dest. Otherwise, build a
142 path to it by considering it is relative to base_path. URL are
144 void path_combine(char *dest
, int dest_size
,
145 const char *base_path
,
146 const char *filename
)
153 if (path_is_absolute(filename
)) {
154 pstrcpy(dest
, dest_size
, filename
);
156 p
= strchr(base_path
, ':');
161 p1
= strrchr(base_path
, '/');
165 p2
= strrchr(base_path
, '\\');
177 if (len
> dest_size
- 1)
179 memcpy(dest
, base_path
, len
);
181 pstrcat(dest
, dest_size
, filename
);
185 void bdrv_register(BlockDriver
*bdrv
)
187 if (bdrv
->bdrv_co_readv
) {
188 /* Emulate AIO by coroutines, and sync by AIO */
189 bdrv
->bdrv_aio_readv
= bdrv_co_aio_readv_em
;
190 bdrv
->bdrv_aio_writev
= bdrv_co_aio_writev_em
;
191 bdrv
->bdrv_read
= bdrv_read_em
;
192 bdrv
->bdrv_write
= bdrv_write_em
;
194 bdrv
->bdrv_co_readv
= bdrv_co_readv_em
;
195 bdrv
->bdrv_co_writev
= bdrv_co_writev_em
;
197 if (!bdrv
->bdrv_aio_readv
) {
198 /* add AIO emulation layer */
199 bdrv
->bdrv_aio_readv
= bdrv_aio_readv_em
;
200 bdrv
->bdrv_aio_writev
= bdrv_aio_writev_em
;
201 } else if (!bdrv
->bdrv_read
) {
202 /* add synchronous IO emulation layer */
203 bdrv
->bdrv_read
= bdrv_read_em
;
204 bdrv
->bdrv_write
= bdrv_write_em
;
208 if (!bdrv
->bdrv_aio_flush
)
209 bdrv
->bdrv_aio_flush
= bdrv_aio_flush_em
;
211 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
214 /* create a new block device (by default it is empty) */
215 BlockDriverState
*bdrv_new(const char *device_name
)
217 BlockDriverState
*bs
;
219 bs
= g_malloc0(sizeof(BlockDriverState
));
220 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
221 if (device_name
[0] != '\0') {
222 QTAILQ_INSERT_TAIL(&bdrv_states
, bs
, list
);
227 BlockDriver
*bdrv_find_format(const char *format_name
)
230 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
231 if (!strcmp(drv1
->format_name
, format_name
)) {
238 static int bdrv_is_whitelisted(BlockDriver
*drv
)
240 static const char *whitelist
[] = {
241 CONFIG_BDRV_WHITELIST
246 return 1; /* no whitelist, anything goes */
248 for (p
= whitelist
; *p
; p
++) {
249 if (!strcmp(drv
->format_name
, *p
)) {
256 BlockDriver
*bdrv_find_whitelisted_format(const char *format_name
)
258 BlockDriver
*drv
= bdrv_find_format(format_name
);
259 return drv
&& bdrv_is_whitelisted(drv
) ? drv
: NULL
;
262 int bdrv_create(BlockDriver
*drv
, const char* filename
,
263 QEMUOptionParameter
*options
)
265 if (!drv
->bdrv_create
)
268 return drv
->bdrv_create(filename
, options
);
271 int bdrv_create_file(const char* filename
, QEMUOptionParameter
*options
)
275 drv
= bdrv_find_protocol(filename
);
280 return bdrv_create(drv
, filename
, options
);
284 void get_tmp_filename(char *filename
, int size
)
286 char temp_dir
[MAX_PATH
];
288 GetTempPath(MAX_PATH
, temp_dir
);
289 GetTempFileName(temp_dir
, "qem", 0, filename
);
292 void get_tmp_filename(char *filename
, int size
)
296 /* XXX: race condition possible */
297 tmpdir
= getenv("TMPDIR");
300 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
301 fd
= mkstemp(filename
);
307 * Detect host devices. By convention, /dev/cdrom[N] is always
308 * recognized as a host CDROM.
310 static BlockDriver
*find_hdev_driver(const char *filename
)
312 int score_max
= 0, score
;
313 BlockDriver
*drv
= NULL
, *d
;
315 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
316 if (d
->bdrv_probe_device
) {
317 score
= d
->bdrv_probe_device(filename
);
318 if (score
> score_max
) {
328 BlockDriver
*bdrv_find_protocol(const char *filename
)
335 /* TODO Drivers without bdrv_file_open must be specified explicitly */
338 * XXX(hch): we really should not let host device detection
339 * override an explicit protocol specification, but moving this
340 * later breaks access to device names with colons in them.
341 * Thanks to the brain-dead persistent naming schemes on udev-
342 * based Linux systems those actually are quite common.
344 drv1
= find_hdev_driver(filename
);
349 if (!path_has_protocol(filename
)) {
350 return bdrv_find_format("file");
352 p
= strchr(filename
, ':');
355 if (len
> sizeof(protocol
) - 1)
356 len
= sizeof(protocol
) - 1;
357 memcpy(protocol
, filename
, len
);
358 protocol
[len
] = '\0';
359 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
360 if (drv1
->protocol_name
&&
361 !strcmp(drv1
->protocol_name
, protocol
)) {
368 static int find_image_format(const char *filename
, BlockDriver
**pdrv
)
370 int ret
, score
, score_max
;
371 BlockDriver
*drv1
, *drv
;
373 BlockDriverState
*bs
;
375 ret
= bdrv_file_open(&bs
, filename
, 0);
381 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
382 if (bs
->sg
|| !bdrv_is_inserted(bs
)) {
384 drv
= bdrv_find_format("raw");
392 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
401 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
402 if (drv1
->bdrv_probe
) {
403 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
404 if (score
> score_max
) {
418 * Set the current 'total_sectors' value
420 static int refresh_total_sectors(BlockDriverState
*bs
, int64_t hint
)
422 BlockDriver
*drv
= bs
->drv
;
424 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
428 /* query actual device if possible, otherwise just trust the hint */
429 if (drv
->bdrv_getlength
) {
430 int64_t length
= drv
->bdrv_getlength(bs
);
434 hint
= length
>> BDRV_SECTOR_BITS
;
437 bs
->total_sectors
= hint
;
442 * Set open flags for a given cache mode
444 * Return 0 on success, -1 if the cache mode was invalid.
446 int bdrv_parse_cache_flags(const char *mode
, int *flags
)
448 *flags
&= ~BDRV_O_CACHE_MASK
;
450 if (!strcmp(mode
, "off") || !strcmp(mode
, "none")) {
451 *flags
|= BDRV_O_NOCACHE
| BDRV_O_CACHE_WB
;
452 } else if (!strcmp(mode
, "directsync")) {
453 *flags
|= BDRV_O_NOCACHE
;
454 } else if (!strcmp(mode
, "writeback")) {
455 *flags
|= BDRV_O_CACHE_WB
;
456 } else if (!strcmp(mode
, "unsafe")) {
457 *flags
|= BDRV_O_CACHE_WB
;
458 *flags
|= BDRV_O_NO_FLUSH
;
459 } else if (!strcmp(mode
, "writethrough")) {
460 /* this is the default */
469 * Common part for opening disk images and files
471 static int bdrv_open_common(BlockDriverState
*bs
, const char *filename
,
472 int flags
, BlockDriver
*drv
)
479 bs
->total_sectors
= 0;
482 bs
->open_flags
= flags
;
483 /* buffer_alignment defaulted to 512, drivers can change this value */
484 bs
->buffer_alignment
= 512;
486 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
488 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
)) {
493 bs
->opaque
= g_malloc0(drv
->instance_size
);
495 if (flags
& BDRV_O_CACHE_WB
)
496 bs
->enable_write_cache
= 1;
499 * Clear flags that are internal to the block layer before opening the
502 open_flags
= flags
& ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
505 * Snapshots should be writable.
507 if (bs
->is_temporary
) {
508 open_flags
|= BDRV_O_RDWR
;
511 /* Open the image, either directly or using a protocol */
512 if (drv
->bdrv_file_open
) {
513 ret
= drv
->bdrv_file_open(bs
, filename
, open_flags
);
515 ret
= bdrv_file_open(&bs
->file
, filename
, open_flags
);
517 ret
= drv
->bdrv_open(bs
, open_flags
);
525 bs
->keep_read_only
= bs
->read_only
= !(open_flags
& BDRV_O_RDWR
);
527 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
533 if (bs
->is_temporary
) {
541 bdrv_delete(bs
->file
);
551 * Opens a file using a protocol (file, host_device, nbd, ...)
553 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
555 BlockDriverState
*bs
;
559 drv
= bdrv_find_protocol(filename
);
565 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
576 * Opens a disk image (raw, qcow2, vmdk, ...)
578 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
,
583 if (flags
& BDRV_O_SNAPSHOT
) {
584 BlockDriverState
*bs1
;
587 BlockDriver
*bdrv_qcow2
;
588 QEMUOptionParameter
*options
;
589 char tmp_filename
[PATH_MAX
];
590 char backing_filename
[PATH_MAX
];
592 /* if snapshot, we create a temporary backing file and open it
593 instead of opening 'filename' directly */
595 /* if there is a backing file, use it */
597 ret
= bdrv_open(bs1
, filename
, 0, drv
);
602 total_size
= bdrv_getlength(bs1
) & BDRV_SECTOR_MASK
;
604 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
609 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
611 /* Real path is meaningless for protocols */
613 snprintf(backing_filename
, sizeof(backing_filename
),
615 else if (!realpath(filename
, backing_filename
))
618 bdrv_qcow2
= bdrv_find_format("qcow2");
619 options
= parse_option_parameters("", bdrv_qcow2
->create_options
, NULL
);
621 set_option_parameter_int(options
, BLOCK_OPT_SIZE
, total_size
);
622 set_option_parameter(options
, BLOCK_OPT_BACKING_FILE
, backing_filename
);
624 set_option_parameter(options
, BLOCK_OPT_BACKING_FMT
,
628 ret
= bdrv_create(bdrv_qcow2
, tmp_filename
, options
);
629 free_option_parameters(options
);
634 filename
= tmp_filename
;
636 bs
->is_temporary
= 1;
639 /* Find the right image format driver */
641 ret
= find_image_format(filename
, &drv
);
645 goto unlink_and_fail
;
649 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
651 goto unlink_and_fail
;
654 /* If there is a backing file, use it */
655 if ((flags
& BDRV_O_NO_BACKING
) == 0 && bs
->backing_file
[0] != '\0') {
656 char backing_filename
[PATH_MAX
];
658 BlockDriver
*back_drv
= NULL
;
660 bs
->backing_hd
= bdrv_new("");
662 if (path_has_protocol(bs
->backing_file
)) {
663 pstrcpy(backing_filename
, sizeof(backing_filename
),
666 path_combine(backing_filename
, sizeof(backing_filename
),
667 filename
, bs
->backing_file
);
670 if (bs
->backing_format
[0] != '\0') {
671 back_drv
= bdrv_find_format(bs
->backing_format
);
674 /* backing files always opened read-only */
676 flags
& ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
678 ret
= bdrv_open(bs
->backing_hd
, backing_filename
, back_flags
, back_drv
);
683 if (bs
->is_temporary
) {
684 bs
->backing_hd
->keep_read_only
= !(flags
& BDRV_O_RDWR
);
686 /* base image inherits from "parent" */
687 bs
->backing_hd
->keep_read_only
= bs
->keep_read_only
;
691 if (!bdrv_key_required(bs
)) {
692 bdrv_dev_change_media_cb(bs
);
698 if (bs
->is_temporary
) {
704 void bdrv_close(BlockDriverState
*bs
)
707 if (bs
== bs_snapshots
) {
710 if (bs
->backing_hd
) {
711 bdrv_delete(bs
->backing_hd
);
712 bs
->backing_hd
= NULL
;
714 bs
->drv
->bdrv_close(bs
);
717 if (bs
->is_temporary
) {
718 unlink(bs
->filename
);
724 if (bs
->file
!= NULL
) {
725 bdrv_close(bs
->file
);
728 bdrv_dev_change_media_cb(bs
);
732 void bdrv_close_all(void)
734 BlockDriverState
*bs
;
736 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
741 /* make a BlockDriverState anonymous by removing from bdrv_state list.
742 Also, NULL terminate the device_name to prevent double remove */
743 void bdrv_make_anon(BlockDriverState
*bs
)
745 if (bs
->device_name
[0] != '\0') {
746 QTAILQ_REMOVE(&bdrv_states
, bs
, list
);
748 bs
->device_name
[0] = '\0';
751 void bdrv_delete(BlockDriverState
*bs
)
755 /* remove from list, if necessary */
759 if (bs
->file
!= NULL
) {
760 bdrv_delete(bs
->file
);
763 assert(bs
!= bs_snapshots
);
767 int bdrv_attach_dev(BlockDriverState
*bs
, void *dev
)
768 /* TODO change to DeviceState *dev when all users are qdevified */
777 /* TODO qdevified devices don't use this, remove when devices are qdevified */
778 void bdrv_attach_dev_nofail(BlockDriverState
*bs
, void *dev
)
780 if (bdrv_attach_dev(bs
, dev
) < 0) {
785 void bdrv_detach_dev(BlockDriverState
*bs
, void *dev
)
786 /* TODO change to DeviceState *dev when all users are qdevified */
788 assert(bs
->dev
== dev
);
791 bs
->dev_opaque
= NULL
;
794 /* TODO change to return DeviceState * when all users are qdevified */
795 void *bdrv_get_attached_dev(BlockDriverState
*bs
)
800 void bdrv_set_dev_ops(BlockDriverState
*bs
, const BlockDevOps
*ops
,
804 bs
->dev_opaque
= opaque
;
807 static void bdrv_dev_change_media_cb(BlockDriverState
*bs
)
809 if (bs
->dev_ops
&& bs
->dev_ops
->change_media_cb
) {
810 bs
->dev_ops
->change_media_cb(bs
->dev_opaque
);
814 static void bdrv_dev_resize_cb(BlockDriverState
*bs
)
816 if (bs
->dev_ops
&& bs
->dev_ops
->resize_cb
) {
817 bs
->dev_ops
->resize_cb(bs
->dev_opaque
);
822 * Run consistency checks on an image
824 * Returns 0 if the check could be completed (it doesn't mean that the image is
825 * free of errors) or -errno when an internal error occurred. The results of the
826 * check are stored in res.
828 int bdrv_check(BlockDriverState
*bs
, BdrvCheckResult
*res
)
830 if (bs
->drv
->bdrv_check
== NULL
) {
834 memset(res
, 0, sizeof(*res
));
835 return bs
->drv
->bdrv_check(bs
, res
);
838 #define COMMIT_BUF_SECTORS 2048
840 /* commit COW file into the raw image */
841 int bdrv_commit(BlockDriverState
*bs
)
843 BlockDriver
*drv
= bs
->drv
;
844 BlockDriver
*backing_drv
;
845 int64_t sector
, total_sectors
;
846 int n
, ro
, open_flags
;
847 int ret
= 0, rw_ret
= 0;
850 BlockDriverState
*bs_rw
, *bs_ro
;
855 if (!bs
->backing_hd
) {
859 if (bs
->backing_hd
->keep_read_only
) {
863 backing_drv
= bs
->backing_hd
->drv
;
864 ro
= bs
->backing_hd
->read_only
;
865 strncpy(filename
, bs
->backing_hd
->filename
, sizeof(filename
));
866 open_flags
= bs
->backing_hd
->open_flags
;
870 bdrv_delete(bs
->backing_hd
);
871 bs
->backing_hd
= NULL
;
872 bs_rw
= bdrv_new("");
873 rw_ret
= bdrv_open(bs_rw
, filename
, open_flags
| BDRV_O_RDWR
,
877 /* try to re-open read-only */
878 bs_ro
= bdrv_new("");
879 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
,
883 /* drive not functional anymore */
887 bs
->backing_hd
= bs_ro
;
890 bs
->backing_hd
= bs_rw
;
893 total_sectors
= bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
;
894 buf
= g_malloc(COMMIT_BUF_SECTORS
* BDRV_SECTOR_SIZE
);
896 for (sector
= 0; sector
< total_sectors
; sector
+= n
) {
897 if (drv
->bdrv_is_allocated(bs
, sector
, COMMIT_BUF_SECTORS
, &n
)) {
899 if (bdrv_read(bs
, sector
, buf
, n
) != 0) {
904 if (bdrv_write(bs
->backing_hd
, sector
, buf
, n
) != 0) {
911 if (drv
->bdrv_make_empty
) {
912 ret
= drv
->bdrv_make_empty(bs
);
917 * Make sure all data we wrote to the backing device is actually
921 bdrv_flush(bs
->backing_hd
);
928 bdrv_delete(bs
->backing_hd
);
929 bs
->backing_hd
= NULL
;
930 bs_ro
= bdrv_new("");
931 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
,
935 /* drive not functional anymore */
939 bs
->backing_hd
= bs_ro
;
940 bs
->backing_hd
->keep_read_only
= 0;
946 void bdrv_commit_all(void)
948 BlockDriverState
*bs
;
950 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
958 * -EINVAL - backing format specified, but no file
959 * -ENOSPC - can't update the backing file because no space is left in the
961 * -ENOTSUP - format driver doesn't support changing the backing file
963 int bdrv_change_backing_file(BlockDriverState
*bs
,
964 const char *backing_file
, const char *backing_fmt
)
966 BlockDriver
*drv
= bs
->drv
;
968 if (drv
->bdrv_change_backing_file
!= NULL
) {
969 return drv
->bdrv_change_backing_file(bs
, backing_file
, backing_fmt
);
975 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
980 if (!bdrv_is_inserted(bs
))
986 len
= bdrv_getlength(bs
);
991 if ((offset
> len
) || (len
- offset
< size
))
997 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
1000 return bdrv_check_byte_request(bs
, sector_num
* BDRV_SECTOR_SIZE
,
1001 nb_sectors
* BDRV_SECTOR_SIZE
);
1004 static inline bool bdrv_has_async_rw(BlockDriver
*drv
)
1006 return drv
->bdrv_co_readv
!= bdrv_co_readv_em
1007 || drv
->bdrv_aio_readv
!= bdrv_aio_readv_em
;
1010 static inline bool bdrv_has_async_flush(BlockDriver
*drv
)
1012 return drv
->bdrv_aio_flush
!= bdrv_aio_flush_em
;
1015 /* return < 0 if error. See bdrv_write() for the return codes */
1016 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
1017 uint8_t *buf
, int nb_sectors
)
1019 BlockDriver
*drv
= bs
->drv
;
1024 if (bdrv_has_async_rw(drv
) && qemu_in_coroutine()) {
1026 struct iovec iov
= {
1027 .iov_base
= (void *)buf
,
1028 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
1031 qemu_iovec_init_external(&qiov
, &iov
, 1);
1032 return bdrv_co_readv(bs
, sector_num
, nb_sectors
, &qiov
);
1035 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1038 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1041 static void set_dirty_bitmap(BlockDriverState
*bs
, int64_t sector_num
,
1042 int nb_sectors
, int dirty
)
1045 unsigned long val
, idx
, bit
;
1047 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
1048 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
1050 for (; start
<= end
; start
++) {
1051 idx
= start
/ (sizeof(unsigned long) * 8);
1052 bit
= start
% (sizeof(unsigned long) * 8);
1053 val
= bs
->dirty_bitmap
[idx
];
1055 if (!(val
& (1UL << bit
))) {
1060 if (val
& (1UL << bit
)) {
1062 val
&= ~(1UL << bit
);
1065 bs
->dirty_bitmap
[idx
] = val
;
1069 /* Return < 0 if error. Important errors are:
1070 -EIO generic I/O error (may happen for all errors)
1071 -ENOMEDIUM No media inserted.
1072 -EINVAL Invalid sector number or nb_sectors
1073 -EACCES Trying to write a read-only device
1075 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
1076 const uint8_t *buf
, int nb_sectors
)
1078 BlockDriver
*drv
= bs
->drv
;
1083 if (bdrv_has_async_rw(drv
) && qemu_in_coroutine()) {
1085 struct iovec iov
= {
1086 .iov_base
= (void *)buf
,
1087 .iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
,
1090 qemu_iovec_init_external(&qiov
, &iov
, 1);
1091 return bdrv_co_writev(bs
, sector_num
, nb_sectors
, &qiov
);
1096 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1099 if (bs
->dirty_bitmap
) {
1100 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1103 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
1104 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
1107 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1110 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
1111 void *buf
, int count1
)
1113 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
1114 int len
, nb_sectors
, count
;
1119 /* first read to align to sector start */
1120 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
1123 sector_num
= offset
>> BDRV_SECTOR_BITS
;
1125 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1127 memcpy(buf
, tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), len
);
1135 /* read the sectors "in place" */
1136 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
1137 if (nb_sectors
> 0) {
1138 if ((ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
)) < 0)
1140 sector_num
+= nb_sectors
;
1141 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
1146 /* add data from the last sector */
1148 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1150 memcpy(buf
, tmp_buf
, count
);
1155 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
1156 const void *buf
, int count1
)
1158 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
1159 int len
, nb_sectors
, count
;
1164 /* first write to align to sector start */
1165 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
1168 sector_num
= offset
>> BDRV_SECTOR_BITS
;
1170 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1172 memcpy(tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), buf
, len
);
1173 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
1182 /* write the sectors "in place" */
1183 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
1184 if (nb_sectors
> 0) {
1185 if ((ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
)) < 0)
1187 sector_num
+= nb_sectors
;
1188 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
1193 /* add data from the last sector */
1195 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1197 memcpy(tmp_buf
, buf
, count
);
1198 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
1205 * Writes to the file and ensures that no writes are reordered across this
1206 * request (acts as a barrier)
1208 * Returns 0 on success, -errno in error cases.
1210 int bdrv_pwrite_sync(BlockDriverState
*bs
, int64_t offset
,
1211 const void *buf
, int count
)
1215 ret
= bdrv_pwrite(bs
, offset
, buf
, count
);
1220 /* No flush needed for cache modes that use O_DSYNC */
1221 if ((bs
->open_flags
& BDRV_O_CACHE_WB
) != 0) {
1228 int coroutine_fn
bdrv_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
1229 int nb_sectors
, QEMUIOVector
*qiov
)
1231 BlockDriver
*drv
= bs
->drv
;
1233 trace_bdrv_co_readv(bs
, sector_num
, nb_sectors
);
1238 if (bdrv_check_request(bs
, sector_num
, nb_sectors
)) {
1242 return drv
->bdrv_co_readv(bs
, sector_num
, nb_sectors
, qiov
);
1245 int coroutine_fn
bdrv_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
1246 int nb_sectors
, QEMUIOVector
*qiov
)
1248 BlockDriver
*drv
= bs
->drv
;
1250 trace_bdrv_co_writev(bs
, sector_num
, nb_sectors
);
1255 if (bs
->read_only
) {
1258 if (bdrv_check_request(bs
, sector_num
, nb_sectors
)) {
1262 if (bs
->dirty_bitmap
) {
1263 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1266 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
1267 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
1270 return drv
->bdrv_co_writev(bs
, sector_num
, nb_sectors
, qiov
);
1274 * Truncate file to 'offset' bytes (needed only for file protocols)
1276 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
1278 BlockDriver
*drv
= bs
->drv
;
1282 if (!drv
->bdrv_truncate
)
1286 if (bdrv_in_use(bs
))
1288 ret
= drv
->bdrv_truncate(bs
, offset
);
1290 ret
= refresh_total_sectors(bs
, offset
>> BDRV_SECTOR_BITS
);
1291 bdrv_dev_resize_cb(bs
);
1297 * Length of a allocated file in bytes. Sparse files are counted by actual
1298 * allocated space. Return < 0 if error or unknown.
1300 int64_t bdrv_get_allocated_file_size(BlockDriverState
*bs
)
1302 BlockDriver
*drv
= bs
->drv
;
1306 if (drv
->bdrv_get_allocated_file_size
) {
1307 return drv
->bdrv_get_allocated_file_size(bs
);
1310 return bdrv_get_allocated_file_size(bs
->file
);
1316 * Length of a file in bytes. Return < 0 if error or unknown.
1318 int64_t bdrv_getlength(BlockDriverState
*bs
)
1320 BlockDriver
*drv
= bs
->drv
;
1324 if (bs
->growable
|| bs
->removable
) {
1325 if (drv
->bdrv_getlength
) {
1326 return drv
->bdrv_getlength(bs
);
1329 return bs
->total_sectors
* BDRV_SECTOR_SIZE
;
1332 /* return 0 as number of sectors if no device present or error */
1333 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
1336 length
= bdrv_getlength(bs
);
1340 length
= length
>> BDRV_SECTOR_BITS
;
1341 *nb_sectors_ptr
= length
;
1345 uint8_t boot_ind
; /* 0x80 - active */
1346 uint8_t head
; /* starting head */
1347 uint8_t sector
; /* starting sector */
1348 uint8_t cyl
; /* starting cylinder */
1349 uint8_t sys_ind
; /* What partition type */
1350 uint8_t end_head
; /* end head */
1351 uint8_t end_sector
; /* end sector */
1352 uint8_t end_cyl
; /* end cylinder */
1353 uint32_t start_sect
; /* starting sector counting from 0 */
1354 uint32_t nr_sects
; /* nr of sectors in partition */
1357 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1358 static int guess_disk_lchs(BlockDriverState
*bs
,
1359 int *pcylinders
, int *pheads
, int *psectors
)
1361 uint8_t buf
[BDRV_SECTOR_SIZE
];
1362 int ret
, i
, heads
, sectors
, cylinders
;
1363 struct partition
*p
;
1365 uint64_t nb_sectors
;
1367 bdrv_get_geometry(bs
, &nb_sectors
);
1369 ret
= bdrv_read(bs
, 0, buf
, 1);
1372 /* test msdos magic */
1373 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
1375 for(i
= 0; i
< 4; i
++) {
1376 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
1377 nr_sects
= le32_to_cpu(p
->nr_sects
);
1378 if (nr_sects
&& p
->end_head
) {
1379 /* We make the assumption that the partition terminates on
1380 a cylinder boundary */
1381 heads
= p
->end_head
+ 1;
1382 sectors
= p
->end_sector
& 63;
1385 cylinders
= nb_sectors
/ (heads
* sectors
);
1386 if (cylinders
< 1 || cylinders
> 16383)
1389 *psectors
= sectors
;
1390 *pcylinders
= cylinders
;
1392 printf("guessed geometry: LCHS=%d %d %d\n",
1393 cylinders
, heads
, sectors
);
1401 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
1403 int translation
, lba_detected
= 0;
1404 int cylinders
, heads
, secs
;
1405 uint64_t nb_sectors
;
1407 /* if a geometry hint is available, use it */
1408 bdrv_get_geometry(bs
, &nb_sectors
);
1409 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
1410 translation
= bdrv_get_translation_hint(bs
);
1411 if (cylinders
!= 0) {
1416 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
1418 /* if heads > 16, it means that a BIOS LBA
1419 translation was active, so the default
1420 hardware geometry is OK */
1422 goto default_geometry
;
1427 /* disable any translation to be in sync with
1428 the logical geometry */
1429 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
1430 bdrv_set_translation_hint(bs
,
1431 BIOS_ATA_TRANSLATION_NONE
);
1436 /* if no geometry, use a standard physical disk geometry */
1437 cylinders
= nb_sectors
/ (16 * 63);
1439 if (cylinders
> 16383)
1441 else if (cylinders
< 2)
1446 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
1447 if ((*pcyls
* *pheads
) <= 131072) {
1448 bdrv_set_translation_hint(bs
,
1449 BIOS_ATA_TRANSLATION_LARGE
);
1451 bdrv_set_translation_hint(bs
,
1452 BIOS_ATA_TRANSLATION_LBA
);
1456 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
1460 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
1461 int cyls
, int heads
, int secs
)
1468 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
1470 bs
->translation
= translation
;
1473 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
1474 int *pcyls
, int *pheads
, int *psecs
)
1477 *pheads
= bs
->heads
;
1481 /* Recognize floppy formats */
1482 typedef struct FDFormat
{
1489 static const FDFormat fd_formats
[] = {
1490 /* First entry is default format */
1491 /* 1.44 MB 3"1/2 floppy disks */
1492 { FDRIVE_DRV_144
, 18, 80, 1, },
1493 { FDRIVE_DRV_144
, 20, 80, 1, },
1494 { FDRIVE_DRV_144
, 21, 80, 1, },
1495 { FDRIVE_DRV_144
, 21, 82, 1, },
1496 { FDRIVE_DRV_144
, 21, 83, 1, },
1497 { FDRIVE_DRV_144
, 22, 80, 1, },
1498 { FDRIVE_DRV_144
, 23, 80, 1, },
1499 { FDRIVE_DRV_144
, 24, 80, 1, },
1500 /* 2.88 MB 3"1/2 floppy disks */
1501 { FDRIVE_DRV_288
, 36, 80, 1, },
1502 { FDRIVE_DRV_288
, 39, 80, 1, },
1503 { FDRIVE_DRV_288
, 40, 80, 1, },
1504 { FDRIVE_DRV_288
, 44, 80, 1, },
1505 { FDRIVE_DRV_288
, 48, 80, 1, },
1506 /* 720 kB 3"1/2 floppy disks */
1507 { FDRIVE_DRV_144
, 9, 80, 1, },
1508 { FDRIVE_DRV_144
, 10, 80, 1, },
1509 { FDRIVE_DRV_144
, 10, 82, 1, },
1510 { FDRIVE_DRV_144
, 10, 83, 1, },
1511 { FDRIVE_DRV_144
, 13, 80, 1, },
1512 { FDRIVE_DRV_144
, 14, 80, 1, },
1513 /* 1.2 MB 5"1/4 floppy disks */
1514 { FDRIVE_DRV_120
, 15, 80, 1, },
1515 { FDRIVE_DRV_120
, 18, 80, 1, },
1516 { FDRIVE_DRV_120
, 18, 82, 1, },
1517 { FDRIVE_DRV_120
, 18, 83, 1, },
1518 { FDRIVE_DRV_120
, 20, 80, 1, },
1519 /* 720 kB 5"1/4 floppy disks */
1520 { FDRIVE_DRV_120
, 9, 80, 1, },
1521 { FDRIVE_DRV_120
, 11, 80, 1, },
1522 /* 360 kB 5"1/4 floppy disks */
1523 { FDRIVE_DRV_120
, 9, 40, 1, },
1524 { FDRIVE_DRV_120
, 9, 40, 0, },
1525 { FDRIVE_DRV_120
, 10, 41, 1, },
1526 { FDRIVE_DRV_120
, 10, 42, 1, },
1527 /* 320 kB 5"1/4 floppy disks */
1528 { FDRIVE_DRV_120
, 8, 40, 1, },
1529 { FDRIVE_DRV_120
, 8, 40, 0, },
1530 /* 360 kB must match 5"1/4 better than 3"1/2... */
1531 { FDRIVE_DRV_144
, 9, 80, 0, },
1533 { FDRIVE_DRV_NONE
, -1, -1, 0, },
1536 void bdrv_get_floppy_geometry_hint(BlockDriverState
*bs
, int *nb_heads
,
1537 int *max_track
, int *last_sect
,
1538 FDriveType drive_in
, FDriveType
*drive
)
1540 const FDFormat
*parse
;
1541 uint64_t nb_sectors
, size
;
1542 int i
, first_match
, match
;
1544 bdrv_get_geometry_hint(bs
, nb_heads
, max_track
, last_sect
);
1545 if (*nb_heads
!= 0 && *max_track
!= 0 && *last_sect
!= 0) {
1546 /* User defined disk */
1548 bdrv_get_geometry(bs
, &nb_sectors
);
1551 for (i
= 0; ; i
++) {
1552 parse
= &fd_formats
[i
];
1553 if (parse
->drive
== FDRIVE_DRV_NONE
) {
1556 if (drive_in
== parse
->drive
||
1557 drive_in
== FDRIVE_DRV_NONE
) {
1558 size
= (parse
->max_head
+ 1) * parse
->max_track
*
1560 if (nb_sectors
== size
) {
1564 if (first_match
== -1) {
1570 if (first_match
== -1) {
1573 match
= first_match
;
1575 parse
= &fd_formats
[match
];
1577 *nb_heads
= parse
->max_head
+ 1;
1578 *max_track
= parse
->max_track
;
1579 *last_sect
= parse
->last_sect
;
1580 *drive
= parse
->drive
;
1584 int bdrv_get_translation_hint(BlockDriverState
*bs
)
1586 return bs
->translation
;
1589 void bdrv_set_on_error(BlockDriverState
*bs
, BlockErrorAction on_read_error
,
1590 BlockErrorAction on_write_error
)
1592 bs
->on_read_error
= on_read_error
;
1593 bs
->on_write_error
= on_write_error
;
1596 BlockErrorAction
bdrv_get_on_error(BlockDriverState
*bs
, int is_read
)
1598 return is_read
? bs
->on_read_error
: bs
->on_write_error
;
1601 void bdrv_set_removable(BlockDriverState
*bs
, int removable
)
1603 bs
->removable
= removable
;
1604 if (removable
&& bs
== bs_snapshots
) {
1605 bs_snapshots
= NULL
;
1609 int bdrv_is_removable(BlockDriverState
*bs
)
1611 return bs
->removable
;
1614 int bdrv_is_read_only(BlockDriverState
*bs
)
1616 return bs
->read_only
;
1619 int bdrv_is_sg(BlockDriverState
*bs
)
1624 int bdrv_enable_write_cache(BlockDriverState
*bs
)
1626 return bs
->enable_write_cache
;
1629 int bdrv_is_encrypted(BlockDriverState
*bs
)
1631 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1633 return bs
->encrypted
;
1636 int bdrv_key_required(BlockDriverState
*bs
)
1638 BlockDriverState
*backing_hd
= bs
->backing_hd
;
1640 if (backing_hd
&& backing_hd
->encrypted
&& !backing_hd
->valid_key
)
1642 return (bs
->encrypted
&& !bs
->valid_key
);
1645 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
1648 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
1649 ret
= bdrv_set_key(bs
->backing_hd
, key
);
1655 if (!bs
->encrypted
) {
1657 } else if (!bs
->drv
|| !bs
->drv
->bdrv_set_key
) {
1660 ret
= bs
->drv
->bdrv_set_key(bs
, key
);
1663 } else if (!bs
->valid_key
) {
1665 /* call the change callback now, we skipped it on open */
1666 bdrv_dev_change_media_cb(bs
);
1671 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
1676 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
1680 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
1685 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
1686 it(opaque
, drv
->format_name
);
1690 BlockDriverState
*bdrv_find(const char *name
)
1692 BlockDriverState
*bs
;
1694 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1695 if (!strcmp(name
, bs
->device_name
)) {
1702 BlockDriverState
*bdrv_next(BlockDriverState
*bs
)
1705 return QTAILQ_FIRST(&bdrv_states
);
1707 return QTAILQ_NEXT(bs
, list
);
1710 void bdrv_iterate(void (*it
)(void *opaque
, BlockDriverState
*bs
), void *opaque
)
1712 BlockDriverState
*bs
;
1714 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1719 const char *bdrv_get_device_name(BlockDriverState
*bs
)
1721 return bs
->device_name
;
1724 int bdrv_flush(BlockDriverState
*bs
)
1726 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
1730 if (bs
->drv
&& bdrv_has_async_flush(bs
->drv
) && qemu_in_coroutine()) {
1731 return bdrv_co_flush_em(bs
);
1734 if (bs
->drv
&& bs
->drv
->bdrv_flush
) {
1735 return bs
->drv
->bdrv_flush(bs
);
1739 * Some block drivers always operate in either writethrough or unsafe mode
1740 * and don't support bdrv_flush therefore. Usually qemu doesn't know how
1741 * the server works (because the behaviour is hardcoded or depends on
1742 * server-side configuration), so we can't ensure that everything is safe
1743 * on disk. Returning an error doesn't work because that would break guests
1744 * even if the server operates in writethrough mode.
1746 * Let's hope the user knows what he's doing.
1751 void bdrv_flush_all(void)
1753 BlockDriverState
*bs
;
1755 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1756 if (!bdrv_is_read_only(bs
) && bdrv_is_inserted(bs
)) {
1762 int bdrv_has_zero_init(BlockDriverState
*bs
)
1766 if (bs
->drv
->bdrv_has_zero_init
) {
1767 return bs
->drv
->bdrv_has_zero_init(bs
);
1773 int bdrv_discard(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
)
1778 if (!bs
->drv
->bdrv_discard
) {
1781 return bs
->drv
->bdrv_discard(bs
, sector_num
, nb_sectors
);
1785 * Returns true iff the specified sector is present in the disk image. Drivers
1786 * not implementing the functionality are assumed to not support backing files,
1787 * hence all their sectors are reported as allocated.
1789 * 'pnum' is set to the number of sectors (including and immediately following
1790 * the specified sector) that are known to be in the same
1791 * allocated/unallocated state.
1793 * 'nb_sectors' is the max value 'pnum' should be set to.
1795 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1799 if (!bs
->drv
->bdrv_is_allocated
) {
1800 if (sector_num
>= bs
->total_sectors
) {
1804 n
= bs
->total_sectors
- sector_num
;
1805 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1808 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1811 void bdrv_mon_event(const BlockDriverState
*bdrv
,
1812 BlockMonEventAction action
, int is_read
)
1815 const char *action_str
;
1818 case BDRV_ACTION_REPORT
:
1819 action_str
= "report";
1821 case BDRV_ACTION_IGNORE
:
1822 action_str
= "ignore";
1824 case BDRV_ACTION_STOP
:
1825 action_str
= "stop";
1831 data
= qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1834 is_read
? "read" : "write");
1835 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR
, data
);
1837 qobject_decref(data
);
1840 static void bdrv_print_dict(QObject
*obj
, void *opaque
)
1843 Monitor
*mon
= opaque
;
1845 bs_dict
= qobject_to_qdict(obj
);
1847 monitor_printf(mon
, "%s: removable=%d",
1848 qdict_get_str(bs_dict
, "device"),
1849 qdict_get_bool(bs_dict
, "removable"));
1851 if (qdict_get_bool(bs_dict
, "removable")) {
1852 monitor_printf(mon
, " locked=%d", qdict_get_bool(bs_dict
, "locked"));
1855 if (qdict_haskey(bs_dict
, "inserted")) {
1856 QDict
*qdict
= qobject_to_qdict(qdict_get(bs_dict
, "inserted"));
1858 monitor_printf(mon
, " file=");
1859 monitor_print_filename(mon
, qdict_get_str(qdict
, "file"));
1860 if (qdict_haskey(qdict
, "backing_file")) {
1861 monitor_printf(mon
, " backing_file=");
1862 monitor_print_filename(mon
, qdict_get_str(qdict
, "backing_file"));
1864 monitor_printf(mon
, " ro=%d drv=%s encrypted=%d",
1865 qdict_get_bool(qdict
, "ro"),
1866 qdict_get_str(qdict
, "drv"),
1867 qdict_get_bool(qdict
, "encrypted"));
1869 monitor_printf(mon
, " [not inserted]");
1872 monitor_printf(mon
, "\n");
1875 void bdrv_info_print(Monitor
*mon
, const QObject
*data
)
1877 qlist_iter(qobject_to_qlist(data
), bdrv_print_dict
, mon
);
1880 void bdrv_info(Monitor
*mon
, QObject
**ret_data
)
1883 BlockDriverState
*bs
;
1885 bs_list
= qlist_new();
1887 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1890 bs_obj
= qobject_from_jsonf("{ 'device': %s, 'type': 'unknown', "
1891 "'removable': %i, 'locked': %i }",
1892 bs
->device_name
, bs
->removable
,
1897 QDict
*bs_dict
= qobject_to_qdict(bs_obj
);
1899 obj
= qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1900 "'encrypted': %i }",
1901 bs
->filename
, bs
->read_only
,
1902 bs
->drv
->format_name
,
1903 bdrv_is_encrypted(bs
));
1904 if (bs
->backing_file
[0] != '\0') {
1905 QDict
*qdict
= qobject_to_qdict(obj
);
1906 qdict_put(qdict
, "backing_file",
1907 qstring_from_str(bs
->backing_file
));
1910 qdict_put_obj(bs_dict
, "inserted", obj
);
1912 qlist_append_obj(bs_list
, bs_obj
);
1915 *ret_data
= QOBJECT(bs_list
);
1918 static void bdrv_stats_iter(QObject
*data
, void *opaque
)
1921 Monitor
*mon
= opaque
;
1923 qdict
= qobject_to_qdict(data
);
1924 monitor_printf(mon
, "%s:", qdict_get_str(qdict
, "device"));
1926 qdict
= qobject_to_qdict(qdict_get(qdict
, "stats"));
1927 monitor_printf(mon
, " rd_bytes=%" PRId64
1928 " wr_bytes=%" PRId64
1929 " rd_operations=%" PRId64
1930 " wr_operations=%" PRId64
1931 " flush_operations=%" PRId64
1932 " wr_total_time_ns=%" PRId64
1933 " rd_total_time_ns=%" PRId64
1934 " flush_total_time_ns=%" PRId64
1936 qdict_get_int(qdict
, "rd_bytes"),
1937 qdict_get_int(qdict
, "wr_bytes"),
1938 qdict_get_int(qdict
, "rd_operations"),
1939 qdict_get_int(qdict
, "wr_operations"),
1940 qdict_get_int(qdict
, "flush_operations"),
1941 qdict_get_int(qdict
, "wr_total_time_ns"),
1942 qdict_get_int(qdict
, "rd_total_time_ns"),
1943 qdict_get_int(qdict
, "flush_total_time_ns"));
1946 void bdrv_stats_print(Monitor
*mon
, const QObject
*data
)
1948 qlist_iter(qobject_to_qlist(data
), bdrv_stats_iter
, mon
);
1951 static QObject
* bdrv_info_stats_bs(BlockDriverState
*bs
)
1956 res
= qobject_from_jsonf("{ 'stats': {"
1957 "'rd_bytes': %" PRId64
","
1958 "'wr_bytes': %" PRId64
","
1959 "'rd_operations': %" PRId64
","
1960 "'wr_operations': %" PRId64
","
1961 "'wr_highest_offset': %" PRId64
","
1962 "'flush_operations': %" PRId64
","
1963 "'wr_total_time_ns': %" PRId64
","
1964 "'rd_total_time_ns': %" PRId64
","
1965 "'flush_total_time_ns': %" PRId64
1967 bs
->nr_bytes
[BDRV_ACCT_READ
],
1968 bs
->nr_bytes
[BDRV_ACCT_WRITE
],
1969 bs
->nr_ops
[BDRV_ACCT_READ
],
1970 bs
->nr_ops
[BDRV_ACCT_WRITE
],
1971 bs
->wr_highest_sector
*
1972 (uint64_t)BDRV_SECTOR_SIZE
,
1973 bs
->nr_ops
[BDRV_ACCT_FLUSH
],
1974 bs
->total_time_ns
[BDRV_ACCT_WRITE
],
1975 bs
->total_time_ns
[BDRV_ACCT_READ
],
1976 bs
->total_time_ns
[BDRV_ACCT_FLUSH
]);
1977 dict
= qobject_to_qdict(res
);
1979 if (*bs
->device_name
) {
1980 qdict_put(dict
, "device", qstring_from_str(bs
->device_name
));
1984 QObject
*parent
= bdrv_info_stats_bs(bs
->file
);
1985 qdict_put_obj(dict
, "parent", parent
);
1991 void bdrv_info_stats(Monitor
*mon
, QObject
**ret_data
)
1995 BlockDriverState
*bs
;
1997 devices
= qlist_new();
1999 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
2000 obj
= bdrv_info_stats_bs(bs
);
2001 qlist_append_obj(devices
, obj
);
2004 *ret_data
= QOBJECT(devices
);
2007 const char *bdrv_get_encrypted_filename(BlockDriverState
*bs
)
2009 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
2010 return bs
->backing_file
;
2011 else if (bs
->encrypted
)
2012 return bs
->filename
;
2017 void bdrv_get_backing_filename(BlockDriverState
*bs
,
2018 char *filename
, int filename_size
)
2020 if (!bs
->backing_file
) {
2021 pstrcpy(filename
, filename_size
, "");
2023 pstrcpy(filename
, filename_size
, bs
->backing_file
);
2027 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
2028 const uint8_t *buf
, int nb_sectors
)
2030 BlockDriver
*drv
= bs
->drv
;
2033 if (!drv
->bdrv_write_compressed
)
2035 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
2038 if (bs
->dirty_bitmap
) {
2039 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
2042 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
2045 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
2047 BlockDriver
*drv
= bs
->drv
;
2050 if (!drv
->bdrv_get_info
)
2052 memset(bdi
, 0, sizeof(*bdi
));
2053 return drv
->bdrv_get_info(bs
, bdi
);
2056 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
2057 int64_t pos
, int size
)
2059 BlockDriver
*drv
= bs
->drv
;
2062 if (drv
->bdrv_save_vmstate
)
2063 return drv
->bdrv_save_vmstate(bs
, buf
, pos
, size
);
2065 return bdrv_save_vmstate(bs
->file
, buf
, pos
, size
);
2069 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
2070 int64_t pos
, int size
)
2072 BlockDriver
*drv
= bs
->drv
;
2075 if (drv
->bdrv_load_vmstate
)
2076 return drv
->bdrv_load_vmstate(bs
, buf
, pos
, size
);
2078 return bdrv_load_vmstate(bs
->file
, buf
, pos
, size
);
2082 void bdrv_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
2084 BlockDriver
*drv
= bs
->drv
;
2086 if (!drv
|| !drv
->bdrv_debug_event
) {
2090 return drv
->bdrv_debug_event(bs
, event
);
2094 /**************************************************************/
2095 /* handling of snapshots */
2097 int bdrv_can_snapshot(BlockDriverState
*bs
)
2099 BlockDriver
*drv
= bs
->drv
;
2100 if (!drv
|| !bdrv_is_inserted(bs
) || bdrv_is_read_only(bs
)) {
2104 if (!drv
->bdrv_snapshot_create
) {
2105 if (bs
->file
!= NULL
) {
2106 return bdrv_can_snapshot(bs
->file
);
2114 int bdrv_is_snapshot(BlockDriverState
*bs
)
2116 return !!(bs
->open_flags
& BDRV_O_SNAPSHOT
);
2119 BlockDriverState
*bdrv_snapshots(void)
2121 BlockDriverState
*bs
;
2124 return bs_snapshots
;
2128 while ((bs
= bdrv_next(bs
))) {
2129 if (bdrv_can_snapshot(bs
)) {
2137 int bdrv_snapshot_create(BlockDriverState
*bs
,
2138 QEMUSnapshotInfo
*sn_info
)
2140 BlockDriver
*drv
= bs
->drv
;
2143 if (drv
->bdrv_snapshot_create
)
2144 return drv
->bdrv_snapshot_create(bs
, sn_info
);
2146 return bdrv_snapshot_create(bs
->file
, sn_info
);
2150 int bdrv_snapshot_goto(BlockDriverState
*bs
,
2151 const char *snapshot_id
)
2153 BlockDriver
*drv
= bs
->drv
;
2158 if (drv
->bdrv_snapshot_goto
)
2159 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
2162 drv
->bdrv_close(bs
);
2163 ret
= bdrv_snapshot_goto(bs
->file
, snapshot_id
);
2164 open_ret
= drv
->bdrv_open(bs
, bs
->open_flags
);
2166 bdrv_delete(bs
->file
);
2176 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
2178 BlockDriver
*drv
= bs
->drv
;
2181 if (drv
->bdrv_snapshot_delete
)
2182 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
2184 return bdrv_snapshot_delete(bs
->file
, snapshot_id
);
2188 int bdrv_snapshot_list(BlockDriverState
*bs
,
2189 QEMUSnapshotInfo
**psn_info
)
2191 BlockDriver
*drv
= bs
->drv
;
2194 if (drv
->bdrv_snapshot_list
)
2195 return drv
->bdrv_snapshot_list(bs
, psn_info
);
2197 return bdrv_snapshot_list(bs
->file
, psn_info
);
2201 int bdrv_snapshot_load_tmp(BlockDriverState
*bs
,
2202 const char *snapshot_name
)
2204 BlockDriver
*drv
= bs
->drv
;
2208 if (!bs
->read_only
) {
2211 if (drv
->bdrv_snapshot_load_tmp
) {
2212 return drv
->bdrv_snapshot_load_tmp(bs
, snapshot_name
);
2217 #define NB_SUFFIXES 4
2219 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
2221 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
2226 snprintf(buf
, buf_size
, "%" PRId64
, size
);
2229 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
2230 if (size
< (10 * base
)) {
2231 snprintf(buf
, buf_size
, "%0.1f%c",
2232 (double)size
/ base
,
2235 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
2236 snprintf(buf
, buf_size
, "%" PRId64
"%c",
2237 ((size
+ (base
>> 1)) / base
),
2247 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
2249 char buf1
[128], date_buf
[128], clock_buf
[128];
2259 snprintf(buf
, buf_size
,
2260 "%-10s%-20s%7s%20s%15s",
2261 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
2265 ptm
= localtime(&ti
);
2266 strftime(date_buf
, sizeof(date_buf
),
2267 "%Y-%m-%d %H:%M:%S", ptm
);
2269 localtime_r(&ti
, &tm
);
2270 strftime(date_buf
, sizeof(date_buf
),
2271 "%Y-%m-%d %H:%M:%S", &tm
);
2273 secs
= sn
->vm_clock_nsec
/ 1000000000;
2274 snprintf(clock_buf
, sizeof(clock_buf
),
2275 "%02d:%02d:%02d.%03d",
2277 (int)((secs
/ 60) % 60),
2279 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
2280 snprintf(buf
, buf_size
,
2281 "%-10s%-20s%7s%20s%15s",
2282 sn
->id_str
, sn
->name
,
2283 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
2290 /**************************************************************/
2293 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
2294 QEMUIOVector
*qiov
, int nb_sectors
,
2295 BlockDriverCompletionFunc
*cb
, void *opaque
)
2297 BlockDriver
*drv
= bs
->drv
;
2299 trace_bdrv_aio_readv(bs
, sector_num
, nb_sectors
, opaque
);
2303 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
2306 return drv
->bdrv_aio_readv(bs
, sector_num
, qiov
, nb_sectors
,
2310 typedef struct BlockCompleteData
{
2311 BlockDriverCompletionFunc
*cb
;
2313 BlockDriverState
*bs
;
2316 } BlockCompleteData
;
2318 static void block_complete_cb(void *opaque
, int ret
)
2320 BlockCompleteData
*b
= opaque
;
2322 if (b
->bs
->dirty_bitmap
) {
2323 set_dirty_bitmap(b
->bs
, b
->sector_num
, b
->nb_sectors
, 1);
2325 b
->cb(b
->opaque
, ret
);
2329 static BlockCompleteData
*blk_dirty_cb_alloc(BlockDriverState
*bs
,
2332 BlockDriverCompletionFunc
*cb
,
2335 BlockCompleteData
*blkdata
= g_malloc0(sizeof(BlockCompleteData
));
2339 blkdata
->opaque
= opaque
;
2340 blkdata
->sector_num
= sector_num
;
2341 blkdata
->nb_sectors
= nb_sectors
;
2346 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
2347 QEMUIOVector
*qiov
, int nb_sectors
,
2348 BlockDriverCompletionFunc
*cb
, void *opaque
)
2350 BlockDriver
*drv
= bs
->drv
;
2351 BlockDriverAIOCB
*ret
;
2352 BlockCompleteData
*blk_cb_data
;
2354 trace_bdrv_aio_writev(bs
, sector_num
, nb_sectors
, opaque
);
2360 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
2363 if (bs
->dirty_bitmap
) {
2364 blk_cb_data
= blk_dirty_cb_alloc(bs
, sector_num
, nb_sectors
, cb
,
2366 cb
= &block_complete_cb
;
2367 opaque
= blk_cb_data
;
2370 ret
= drv
->bdrv_aio_writev(bs
, sector_num
, qiov
, nb_sectors
,
2374 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
2375 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
2383 typedef struct MultiwriteCB
{
2388 BlockDriverCompletionFunc
*cb
;
2390 QEMUIOVector
*free_qiov
;
2395 static void multiwrite_user_cb(MultiwriteCB
*mcb
)
2399 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
2400 mcb
->callbacks
[i
].cb(mcb
->callbacks
[i
].opaque
, mcb
->error
);
2401 if (mcb
->callbacks
[i
].free_qiov
) {
2402 qemu_iovec_destroy(mcb
->callbacks
[i
].free_qiov
);
2404 g_free(mcb
->callbacks
[i
].free_qiov
);
2405 qemu_vfree(mcb
->callbacks
[i
].free_buf
);
2409 static void multiwrite_cb(void *opaque
, int ret
)
2411 MultiwriteCB
*mcb
= opaque
;
2413 trace_multiwrite_cb(mcb
, ret
);
2415 if (ret
< 0 && !mcb
->error
) {
2419 mcb
->num_requests
--;
2420 if (mcb
->num_requests
== 0) {
2421 multiwrite_user_cb(mcb
);
2426 static int multiwrite_req_compare(const void *a
, const void *b
)
2428 const BlockRequest
*req1
= a
, *req2
= b
;
2431 * Note that we can't simply subtract req2->sector from req1->sector
2432 * here as that could overflow the return value.
2434 if (req1
->sector
> req2
->sector
) {
2436 } else if (req1
->sector
< req2
->sector
) {
2444 * Takes a bunch of requests and tries to merge them. Returns the number of
2445 * requests that remain after merging.
2447 static int multiwrite_merge(BlockDriverState
*bs
, BlockRequest
*reqs
,
2448 int num_reqs
, MultiwriteCB
*mcb
)
2452 // Sort requests by start sector
2453 qsort(reqs
, num_reqs
, sizeof(*reqs
), &multiwrite_req_compare
);
2455 // Check if adjacent requests touch the same clusters. If so, combine them,
2456 // filling up gaps with zero sectors.
2458 for (i
= 1; i
< num_reqs
; i
++) {
2460 int64_t oldreq_last
= reqs
[outidx
].sector
+ reqs
[outidx
].nb_sectors
;
2462 // This handles the cases that are valid for all block drivers, namely
2463 // exactly sequential writes and overlapping writes.
2464 if (reqs
[i
].sector
<= oldreq_last
) {
2468 // The block driver may decide that it makes sense to combine requests
2469 // even if there is a gap of some sectors between them. In this case,
2470 // the gap is filled with zeros (therefore only applicable for yet
2471 // unused space in format like qcow2).
2472 if (!merge
&& bs
->drv
->bdrv_merge_requests
) {
2473 merge
= bs
->drv
->bdrv_merge_requests(bs
, &reqs
[outidx
], &reqs
[i
]);
2476 if (reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1 > IOV_MAX
) {
2482 QEMUIOVector
*qiov
= g_malloc0(sizeof(*qiov
));
2483 qemu_iovec_init(qiov
,
2484 reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1);
2486 // Add the first request to the merged one. If the requests are
2487 // overlapping, drop the last sectors of the first request.
2488 size
= (reqs
[i
].sector
- reqs
[outidx
].sector
) << 9;
2489 qemu_iovec_concat(qiov
, reqs
[outidx
].qiov
, size
);
2491 // We might need to add some zeros between the two requests
2492 if (reqs
[i
].sector
> oldreq_last
) {
2493 size_t zero_bytes
= (reqs
[i
].sector
- oldreq_last
) << 9;
2494 uint8_t *buf
= qemu_blockalign(bs
, zero_bytes
);
2495 memset(buf
, 0, zero_bytes
);
2496 qemu_iovec_add(qiov
, buf
, zero_bytes
);
2497 mcb
->callbacks
[i
].free_buf
= buf
;
2500 // Add the second request
2501 qemu_iovec_concat(qiov
, reqs
[i
].qiov
, reqs
[i
].qiov
->size
);
2503 reqs
[outidx
].nb_sectors
= qiov
->size
>> 9;
2504 reqs
[outidx
].qiov
= qiov
;
2506 mcb
->callbacks
[i
].free_qiov
= reqs
[outidx
].qiov
;
2509 reqs
[outidx
].sector
= reqs
[i
].sector
;
2510 reqs
[outidx
].nb_sectors
= reqs
[i
].nb_sectors
;
2511 reqs
[outidx
].qiov
= reqs
[i
].qiov
;
2519 * Submit multiple AIO write requests at once.
2521 * On success, the function returns 0 and all requests in the reqs array have
2522 * been submitted. In error case this function returns -1, and any of the
2523 * requests may or may not be submitted yet. In particular, this means that the
2524 * callback will be called for some of the requests, for others it won't. The
2525 * caller must check the error field of the BlockRequest to wait for the right
2526 * callbacks (if error != 0, no callback will be called).
2528 * The implementation may modify the contents of the reqs array, e.g. to merge
2529 * requests. However, the fields opaque and error are left unmodified as they
2530 * are used to signal failure for a single request to the caller.
2532 int bdrv_aio_multiwrite(BlockDriverState
*bs
, BlockRequest
*reqs
, int num_reqs
)
2534 BlockDriverAIOCB
*acb
;
2538 /* don't submit writes if we don't have a medium */
2539 if (bs
->drv
== NULL
) {
2540 for (i
= 0; i
< num_reqs
; i
++) {
2541 reqs
[i
].error
= -ENOMEDIUM
;
2546 if (num_reqs
== 0) {
2550 // Create MultiwriteCB structure
2551 mcb
= g_malloc0(sizeof(*mcb
) + num_reqs
* sizeof(*mcb
->callbacks
));
2552 mcb
->num_requests
= 0;
2553 mcb
->num_callbacks
= num_reqs
;
2555 for (i
= 0; i
< num_reqs
; i
++) {
2556 mcb
->callbacks
[i
].cb
= reqs
[i
].cb
;
2557 mcb
->callbacks
[i
].opaque
= reqs
[i
].opaque
;
2560 // Check for mergable requests
2561 num_reqs
= multiwrite_merge(bs
, reqs
, num_reqs
, mcb
);
2563 trace_bdrv_aio_multiwrite(mcb
, mcb
->num_callbacks
, num_reqs
);
2566 * Run the aio requests. As soon as one request can't be submitted
2567 * successfully, fail all requests that are not yet submitted (we must
2568 * return failure for all requests anyway)
2570 * num_requests cannot be set to the right value immediately: If
2571 * bdrv_aio_writev fails for some request, num_requests would be too high
2572 * and therefore multiwrite_cb() would never recognize the multiwrite
2573 * request as completed. We also cannot use the loop variable i to set it
2574 * when the first request fails because the callback may already have been
2575 * called for previously submitted requests. Thus, num_requests must be
2576 * incremented for each request that is submitted.
2578 * The problem that callbacks may be called early also means that we need
2579 * to take care that num_requests doesn't become 0 before all requests are
2580 * submitted - multiwrite_cb() would consider the multiwrite request
2581 * completed. A dummy request that is "completed" by a manual call to
2582 * multiwrite_cb() takes care of this.
2584 mcb
->num_requests
= 1;
2586 // Run the aio requests
2587 for (i
= 0; i
< num_reqs
; i
++) {
2588 mcb
->num_requests
++;
2589 acb
= bdrv_aio_writev(bs
, reqs
[i
].sector
, reqs
[i
].qiov
,
2590 reqs
[i
].nb_sectors
, multiwrite_cb
, mcb
);
2593 // We can only fail the whole thing if no request has been
2594 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2595 // complete and report the error in the callback.
2597 trace_bdrv_aio_multiwrite_earlyfail(mcb
);
2600 trace_bdrv_aio_multiwrite_latefail(mcb
, i
);
2601 multiwrite_cb(mcb
, -EIO
);
2607 /* Complete the dummy request */
2608 multiwrite_cb(mcb
, 0);
2613 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
2614 reqs
[i
].error
= -EIO
;
2620 BlockDriverAIOCB
*bdrv_aio_flush(BlockDriverState
*bs
,
2621 BlockDriverCompletionFunc
*cb
, void *opaque
)
2623 BlockDriver
*drv
= bs
->drv
;
2625 trace_bdrv_aio_flush(bs
, opaque
);
2627 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
2628 return bdrv_aio_noop_em(bs
, cb
, opaque
);
2633 return drv
->bdrv_aio_flush(bs
, cb
, opaque
);
2636 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
2638 acb
->pool
->cancel(acb
);
2642 /**************************************************************/
2643 /* async block device emulation */
2645 typedef struct BlockDriverAIOCBSync
{
2646 BlockDriverAIOCB common
;
2649 /* vector translation state */
2653 } BlockDriverAIOCBSync
;
2655 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
2657 BlockDriverAIOCBSync
*acb
=
2658 container_of(blockacb
, BlockDriverAIOCBSync
, common
);
2659 qemu_bh_delete(acb
->bh
);
2661 qemu_aio_release(acb
);
2664 static AIOPool bdrv_em_aio_pool
= {
2665 .aiocb_size
= sizeof(BlockDriverAIOCBSync
),
2666 .cancel
= bdrv_aio_cancel_em
,
2669 static void bdrv_aio_bh_cb(void *opaque
)
2671 BlockDriverAIOCBSync
*acb
= opaque
;
2674 qemu_iovec_from_buffer(acb
->qiov
, acb
->bounce
, acb
->qiov
->size
);
2675 qemu_vfree(acb
->bounce
);
2676 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
2677 qemu_bh_delete(acb
->bh
);
2679 qemu_aio_release(acb
);
2682 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
2686 BlockDriverCompletionFunc
*cb
,
2691 BlockDriverAIOCBSync
*acb
;
2693 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2694 acb
->is_write
= is_write
;
2696 acb
->bounce
= qemu_blockalign(bs
, qiov
->size
);
2699 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2702 qemu_iovec_to_buffer(acb
->qiov
, acb
->bounce
);
2703 acb
->ret
= bdrv_write(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2705 acb
->ret
= bdrv_read(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2708 qemu_bh_schedule(acb
->bh
);
2710 return &acb
->common
;
2713 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
2714 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2715 BlockDriverCompletionFunc
*cb
, void *opaque
)
2717 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 0);
2720 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
2721 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2722 BlockDriverCompletionFunc
*cb
, void *opaque
)
2724 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 1);
2728 typedef struct BlockDriverAIOCBCoroutine
{
2729 BlockDriverAIOCB common
;
2733 } BlockDriverAIOCBCoroutine
;
2735 static void bdrv_aio_co_cancel_em(BlockDriverAIOCB
*blockacb
)
2740 static AIOPool bdrv_em_co_aio_pool
= {
2741 .aiocb_size
= sizeof(BlockDriverAIOCBCoroutine
),
2742 .cancel
= bdrv_aio_co_cancel_em
,
2745 static void bdrv_co_rw_bh(void *opaque
)
2747 BlockDriverAIOCBCoroutine
*acb
= opaque
;
2749 acb
->common
.cb(acb
->common
.opaque
, acb
->req
.error
);
2750 qemu_bh_delete(acb
->bh
);
2751 qemu_aio_release(acb
);
2754 static void coroutine_fn
bdrv_co_rw(void *opaque
)
2756 BlockDriverAIOCBCoroutine
*acb
= opaque
;
2757 BlockDriverState
*bs
= acb
->common
.bs
;
2759 if (!acb
->is_write
) {
2760 acb
->req
.error
= bs
->drv
->bdrv_co_readv(bs
, acb
->req
.sector
,
2761 acb
->req
.nb_sectors
, acb
->req
.qiov
);
2763 acb
->req
.error
= bs
->drv
->bdrv_co_writev(bs
, acb
->req
.sector
,
2764 acb
->req
.nb_sectors
, acb
->req
.qiov
);
2767 acb
->bh
= qemu_bh_new(bdrv_co_rw_bh
, acb
);
2768 qemu_bh_schedule(acb
->bh
);
2771 static BlockDriverAIOCB
*bdrv_co_aio_rw_vector(BlockDriverState
*bs
,
2775 BlockDriverCompletionFunc
*cb
,
2780 BlockDriverAIOCBCoroutine
*acb
;
2782 acb
= qemu_aio_get(&bdrv_em_co_aio_pool
, bs
, cb
, opaque
);
2783 acb
->req
.sector
= sector_num
;
2784 acb
->req
.nb_sectors
= nb_sectors
;
2785 acb
->req
.qiov
= qiov
;
2786 acb
->is_write
= is_write
;
2788 co
= qemu_coroutine_create(bdrv_co_rw
);
2789 qemu_coroutine_enter(co
, acb
);
2791 return &acb
->common
;
2794 static BlockDriverAIOCB
*bdrv_co_aio_readv_em(BlockDriverState
*bs
,
2795 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2796 BlockDriverCompletionFunc
*cb
, void *opaque
)
2798 return bdrv_co_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
,
2802 static BlockDriverAIOCB
*bdrv_co_aio_writev_em(BlockDriverState
*bs
,
2803 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2804 BlockDriverCompletionFunc
*cb
, void *opaque
)
2806 return bdrv_co_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
,
2810 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
2811 BlockDriverCompletionFunc
*cb
, void *opaque
)
2813 BlockDriverAIOCBSync
*acb
;
2815 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2816 acb
->is_write
= 1; /* don't bounce in the completion hadler */
2822 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2825 qemu_bh_schedule(acb
->bh
);
2826 return &acb
->common
;
2829 static BlockDriverAIOCB
*bdrv_aio_noop_em(BlockDriverState
*bs
,
2830 BlockDriverCompletionFunc
*cb
, void *opaque
)
2832 BlockDriverAIOCBSync
*acb
;
2834 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2835 acb
->is_write
= 1; /* don't bounce in the completion handler */
2841 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2844 qemu_bh_schedule(acb
->bh
);
2845 return &acb
->common
;
2848 /**************************************************************/
2849 /* sync block device emulation */
2851 static void bdrv_rw_em_cb(void *opaque
, int ret
)
2853 *(int *)opaque
= ret
;
2856 #define NOT_DONE 0x7fffffff
2858 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
2859 uint8_t *buf
, int nb_sectors
)
2862 BlockDriverAIOCB
*acb
;
2866 async_ret
= NOT_DONE
;
2867 iov
.iov_base
= (void *)buf
;
2868 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2869 qemu_iovec_init_external(&qiov
, &iov
, 1);
2870 acb
= bdrv_aio_readv(bs
, sector_num
, &qiov
, nb_sectors
,
2871 bdrv_rw_em_cb
, &async_ret
);
2877 while (async_ret
== NOT_DONE
) {
2886 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
2887 const uint8_t *buf
, int nb_sectors
)
2890 BlockDriverAIOCB
*acb
;
2894 async_ret
= NOT_DONE
;
2895 iov
.iov_base
= (void *)buf
;
2896 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2897 qemu_iovec_init_external(&qiov
, &iov
, 1);
2898 acb
= bdrv_aio_writev(bs
, sector_num
, &qiov
, nb_sectors
,
2899 bdrv_rw_em_cb
, &async_ret
);
2904 while (async_ret
== NOT_DONE
) {
2912 void bdrv_init(void)
2914 module_call_init(MODULE_INIT_BLOCK
);
2917 void bdrv_init_with_whitelist(void)
2919 use_bdrv_whitelist
= 1;
2923 void *qemu_aio_get(AIOPool
*pool
, BlockDriverState
*bs
,
2924 BlockDriverCompletionFunc
*cb
, void *opaque
)
2926 BlockDriverAIOCB
*acb
;
2928 if (pool
->free_aiocb
) {
2929 acb
= pool
->free_aiocb
;
2930 pool
->free_aiocb
= acb
->next
;
2932 acb
= g_malloc0(pool
->aiocb_size
);
2937 acb
->opaque
= opaque
;
2941 void qemu_aio_release(void *p
)
2943 BlockDriverAIOCB
*acb
= (BlockDriverAIOCB
*)p
;
2944 AIOPool
*pool
= acb
->pool
;
2945 acb
->next
= pool
->free_aiocb
;
2946 pool
->free_aiocb
= acb
;
2949 /**************************************************************/
2950 /* Coroutine block device emulation */
2952 typedef struct CoroutineIOCompletion
{
2953 Coroutine
*coroutine
;
2955 } CoroutineIOCompletion
;
2957 static void bdrv_co_io_em_complete(void *opaque
, int ret
)
2959 CoroutineIOCompletion
*co
= opaque
;
2962 qemu_coroutine_enter(co
->coroutine
, NULL
);
2965 static int coroutine_fn
bdrv_co_io_em(BlockDriverState
*bs
, int64_t sector_num
,
2966 int nb_sectors
, QEMUIOVector
*iov
,
2969 CoroutineIOCompletion co
= {
2970 .coroutine
= qemu_coroutine_self(),
2972 BlockDriverAIOCB
*acb
;
2975 acb
= bdrv_aio_writev(bs
, sector_num
, iov
, nb_sectors
,
2976 bdrv_co_io_em_complete
, &co
);
2978 acb
= bdrv_aio_readv(bs
, sector_num
, iov
, nb_sectors
,
2979 bdrv_co_io_em_complete
, &co
);
2982 trace_bdrv_co_io(is_write
, acb
);
2986 qemu_coroutine_yield();
2991 static int coroutine_fn
bdrv_co_readv_em(BlockDriverState
*bs
,
2992 int64_t sector_num
, int nb_sectors
,
2995 return bdrv_co_io_em(bs
, sector_num
, nb_sectors
, iov
, false);
2998 static int coroutine_fn
bdrv_co_writev_em(BlockDriverState
*bs
,
2999 int64_t sector_num
, int nb_sectors
,
3002 return bdrv_co_io_em(bs
, sector_num
, nb_sectors
, iov
, true);
3005 static int coroutine_fn
bdrv_co_flush_em(BlockDriverState
*bs
)
3007 CoroutineIOCompletion co
= {
3008 .coroutine
= qemu_coroutine_self(),
3010 BlockDriverAIOCB
*acb
;
3012 acb
= bdrv_aio_flush(bs
, bdrv_co_io_em_complete
, &co
);
3016 qemu_coroutine_yield();
3020 /**************************************************************/
3021 /* removable device support */
3024 * Return TRUE if the media is present
3026 int bdrv_is_inserted(BlockDriverState
*bs
)
3028 BlockDriver
*drv
= bs
->drv
;
3032 if (!drv
->bdrv_is_inserted
)
3033 return !bs
->tray_open
;
3034 ret
= drv
->bdrv_is_inserted(bs
);
3039 * Return whether the media changed since the last call to this
3040 * function, or -ENOTSUP if we don't know. Most drivers don't know.
3042 int bdrv_media_changed(BlockDriverState
*bs
)
3044 BlockDriver
*drv
= bs
->drv
;
3046 if (drv
&& drv
->bdrv_media_changed
) {
3047 return drv
->bdrv_media_changed(bs
);
3053 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
3055 int bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
3057 BlockDriver
*drv
= bs
->drv
;
3059 if (eject_flag
&& bs
->locked
) {
3063 if (drv
&& drv
->bdrv_eject
) {
3064 drv
->bdrv_eject(bs
, eject_flag
);
3066 bs
->tray_open
= eject_flag
;
3070 int bdrv_is_locked(BlockDriverState
*bs
)
3076 * Lock or unlock the media (if it is locked, the user won't be able
3077 * to eject it manually).
3079 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
3081 BlockDriver
*drv
= bs
->drv
;
3083 trace_bdrv_set_locked(bs
, locked
);
3085 bs
->locked
= locked
;
3086 if (drv
&& drv
->bdrv_set_locked
) {
3087 drv
->bdrv_set_locked(bs
, locked
);
3091 /* needed for generic scsi interface */
3093 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
3095 BlockDriver
*drv
= bs
->drv
;
3097 if (drv
&& drv
->bdrv_ioctl
)
3098 return drv
->bdrv_ioctl(bs
, req
, buf
);
3102 BlockDriverAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
3103 unsigned long int req
, void *buf
,
3104 BlockDriverCompletionFunc
*cb
, void *opaque
)
3106 BlockDriver
*drv
= bs
->drv
;
3108 if (drv
&& drv
->bdrv_aio_ioctl
)
3109 return drv
->bdrv_aio_ioctl(bs
, req
, buf
, cb
, opaque
);
3115 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
3117 return qemu_memalign((bs
&& bs
->buffer_alignment
) ? bs
->buffer_alignment
: 512, size
);
3120 void bdrv_set_dirty_tracking(BlockDriverState
*bs
, int enable
)
3122 int64_t bitmap_size
;
3124 bs
->dirty_count
= 0;
3126 if (!bs
->dirty_bitmap
) {
3127 bitmap_size
= (bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
) +
3128 BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
3129 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
3131 bs
->dirty_bitmap
= g_malloc0(bitmap_size
);
3134 if (bs
->dirty_bitmap
) {
3135 g_free(bs
->dirty_bitmap
);
3136 bs
->dirty_bitmap
= NULL
;
3141 int bdrv_get_dirty(BlockDriverState
*bs
, int64_t sector
)
3143 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
3145 if (bs
->dirty_bitmap
&&
3146 (sector
<< BDRV_SECTOR_BITS
) < bdrv_getlength(bs
)) {
3147 return !!(bs
->dirty_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
3148 (1UL << (chunk
% (sizeof(unsigned long) * 8))));
3154 void bdrv_reset_dirty(BlockDriverState
*bs
, int64_t cur_sector
,
3157 set_dirty_bitmap(bs
, cur_sector
, nr_sectors
, 0);
3160 int64_t bdrv_get_dirty_count(BlockDriverState
*bs
)
3162 return bs
->dirty_count
;
3165 void bdrv_set_in_use(BlockDriverState
*bs
, int in_use
)
3167 assert(bs
->in_use
!= in_use
);
3168 bs
->in_use
= in_use
;
3171 int bdrv_in_use(BlockDriverState
*bs
)
3177 bdrv_acct_start(BlockDriverState
*bs
, BlockAcctCookie
*cookie
, int64_t bytes
,
3178 enum BlockAcctType type
)
3180 assert(type
< BDRV_MAX_IOTYPE
);
3182 cookie
->bytes
= bytes
;
3183 cookie
->start_time_ns
= get_clock();
3184 cookie
->type
= type
;
3188 bdrv_acct_done(BlockDriverState
*bs
, BlockAcctCookie
*cookie
)
3190 assert(cookie
->type
< BDRV_MAX_IOTYPE
);
3192 bs
->nr_bytes
[cookie
->type
] += cookie
->bytes
;
3193 bs
->nr_ops
[cookie
->type
]++;
3194 bs
->total_time_ns
[cookie
->type
] += get_clock() - cookie
->start_time_ns
;
3197 int bdrv_img_create(const char *filename
, const char *fmt
,
3198 const char *base_filename
, const char *base_fmt
,
3199 char *options
, uint64_t img_size
, int flags
)
3201 QEMUOptionParameter
*param
= NULL
, *create_options
= NULL
;
3202 QEMUOptionParameter
*backing_fmt
, *backing_file
, *size
;
3203 BlockDriverState
*bs
= NULL
;
3204 BlockDriver
*drv
, *proto_drv
;
3205 BlockDriver
*backing_drv
= NULL
;
3208 /* Find driver and parse its options */
3209 drv
= bdrv_find_format(fmt
);
3211 error_report("Unknown file format '%s'", fmt
);
3216 proto_drv
= bdrv_find_protocol(filename
);
3218 error_report("Unknown protocol '%s'", filename
);
3223 create_options
= append_option_parameters(create_options
,
3224 drv
->create_options
);
3225 create_options
= append_option_parameters(create_options
,
3226 proto_drv
->create_options
);
3228 /* Create parameter list with default values */
3229 param
= parse_option_parameters("", create_options
, param
);
3231 set_option_parameter_int(param
, BLOCK_OPT_SIZE
, img_size
);
3233 /* Parse -o options */
3235 param
= parse_option_parameters(options
, create_options
, param
);
3236 if (param
== NULL
) {
3237 error_report("Invalid options for file format '%s'.", fmt
);
3243 if (base_filename
) {
3244 if (set_option_parameter(param
, BLOCK_OPT_BACKING_FILE
,
3246 error_report("Backing file not supported for file format '%s'",
3254 if (set_option_parameter(param
, BLOCK_OPT_BACKING_FMT
, base_fmt
)) {
3255 error_report("Backing file format not supported for file "
3256 "format '%s'", fmt
);
3262 backing_file
= get_option_parameter(param
, BLOCK_OPT_BACKING_FILE
);
3263 if (backing_file
&& backing_file
->value
.s
) {
3264 if (!strcmp(filename
, backing_file
->value
.s
)) {
3265 error_report("Error: Trying to create an image with the "
3266 "same filename as the backing file");
3272 backing_fmt
= get_option_parameter(param
, BLOCK_OPT_BACKING_FMT
);
3273 if (backing_fmt
&& backing_fmt
->value
.s
) {
3274 backing_drv
= bdrv_find_format(backing_fmt
->value
.s
);
3276 error_report("Unknown backing file format '%s'",
3277 backing_fmt
->value
.s
);
3283 // The size for the image must always be specified, with one exception:
3284 // If we are using a backing file, we can obtain the size from there
3285 size
= get_option_parameter(param
, BLOCK_OPT_SIZE
);
3286 if (size
&& size
->value
.n
== -1) {
3287 if (backing_file
&& backing_file
->value
.s
) {
3293 ret
= bdrv_open(bs
, backing_file
->value
.s
, flags
, backing_drv
);
3295 error_report("Could not open '%s'", backing_file
->value
.s
);
3298 bdrv_get_geometry(bs
, &size
);
3301 snprintf(buf
, sizeof(buf
), "%" PRId64
, size
);
3302 set_option_parameter(param
, BLOCK_OPT_SIZE
, buf
);
3304 error_report("Image creation needs a size parameter");
3310 printf("Formatting '%s', fmt=%s ", filename
, fmt
);
3311 print_option_parameters(param
);
3314 ret
= bdrv_create(drv
, filename
, param
);
3317 if (ret
== -ENOTSUP
) {
3318 error_report("Formatting or formatting option not supported for "
3319 "file format '%s'", fmt
);
3320 } else if (ret
== -EFBIG
) {
3321 error_report("The image size is too large for file format '%s'",
3324 error_report("%s: error while creating %s: %s", filename
, fmt
,
3330 free_option_parameters(create_options
);
3331 free_option_parameters(param
);