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"
27 #include "block_int.h"
29 #include "qemu-objects.h"
32 #include <sys/types.h>
34 #include <sys/ioctl.h>
35 #include <sys/queue.h>
45 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
46 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
47 BlockDriverCompletionFunc
*cb
, void *opaque
);
48 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
49 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
50 BlockDriverCompletionFunc
*cb
, void *opaque
);
51 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
52 BlockDriverCompletionFunc
*cb
, void *opaque
);
53 static BlockDriverAIOCB
*bdrv_aio_noop_em(BlockDriverState
*bs
,
54 BlockDriverCompletionFunc
*cb
, void *opaque
);
55 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
56 uint8_t *buf
, int nb_sectors
);
57 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
58 const uint8_t *buf
, int nb_sectors
);
60 static QTAILQ_HEAD(, BlockDriverState
) bdrv_states
=
61 QTAILQ_HEAD_INITIALIZER(bdrv_states
);
63 static QLIST_HEAD(, BlockDriver
) bdrv_drivers
=
64 QLIST_HEAD_INITIALIZER(bdrv_drivers
);
66 /* The device to use for VM snapshots */
67 static BlockDriverState
*bs_snapshots
;
69 /* If non-zero, use only whitelisted block drivers */
70 static int use_bdrv_whitelist
;
72 int path_is_absolute(const char *path
)
76 /* specific case for names like: "\\.\d:" */
77 if (*path
== '/' || *path
== '\\')
80 p
= strchr(path
, ':');
86 return (*p
== '/' || *p
== '\\');
92 /* if filename is absolute, just copy it to dest. Otherwise, build a
93 path to it by considering it is relative to base_path. URL are
95 void path_combine(char *dest
, int dest_size
,
96 const char *base_path
,
104 if (path_is_absolute(filename
)) {
105 pstrcpy(dest
, dest_size
, filename
);
107 p
= strchr(base_path
, ':');
112 p1
= strrchr(base_path
, '/');
116 p2
= strrchr(base_path
, '\\');
128 if (len
> dest_size
- 1)
130 memcpy(dest
, base_path
, len
);
132 pstrcat(dest
, dest_size
, filename
);
136 void bdrv_register(BlockDriver
*bdrv
)
138 if (!bdrv
->bdrv_aio_readv
) {
139 /* add AIO emulation layer */
140 bdrv
->bdrv_aio_readv
= bdrv_aio_readv_em
;
141 bdrv
->bdrv_aio_writev
= bdrv_aio_writev_em
;
142 } else if (!bdrv
->bdrv_read
) {
143 /* add synchronous IO emulation layer */
144 bdrv
->bdrv_read
= bdrv_read_em
;
145 bdrv
->bdrv_write
= bdrv_write_em
;
148 if (!bdrv
->bdrv_aio_flush
)
149 bdrv
->bdrv_aio_flush
= bdrv_aio_flush_em
;
151 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
154 /* create a new block device (by default it is empty) */
155 BlockDriverState
*bdrv_new(const char *device_name
)
157 BlockDriverState
*bs
;
159 bs
= qemu_mallocz(sizeof(BlockDriverState
));
160 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
161 if (device_name
[0] != '\0') {
162 QTAILQ_INSERT_TAIL(&bdrv_states
, bs
, list
);
167 BlockDriver
*bdrv_find_format(const char *format_name
)
170 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
171 if (!strcmp(drv1
->format_name
, format_name
)) {
178 static int bdrv_is_whitelisted(BlockDriver
*drv
)
180 static const char *whitelist
[] = {
181 CONFIG_BDRV_WHITELIST
186 return 1; /* no whitelist, anything goes */
188 for (p
= whitelist
; *p
; p
++) {
189 if (!strcmp(drv
->format_name
, *p
)) {
196 BlockDriver
*bdrv_find_whitelisted_format(const char *format_name
)
198 BlockDriver
*drv
= bdrv_find_format(format_name
);
199 return drv
&& bdrv_is_whitelisted(drv
) ? drv
: NULL
;
202 int bdrv_create(BlockDriver
*drv
, const char* filename
,
203 QEMUOptionParameter
*options
)
205 if (!drv
->bdrv_create
)
208 return drv
->bdrv_create(filename
, options
);
211 int bdrv_create_file(const char* filename
, QEMUOptionParameter
*options
)
215 drv
= bdrv_find_protocol(filename
);
217 drv
= bdrv_find_format("file");
220 return bdrv_create(drv
, filename
, options
);
224 void get_tmp_filename(char *filename
, int size
)
226 char temp_dir
[MAX_PATH
];
228 GetTempPath(MAX_PATH
, temp_dir
);
229 GetTempFileName(temp_dir
, "qem", 0, filename
);
232 void get_tmp_filename(char *filename
, int size
)
236 /* XXX: race condition possible */
237 tmpdir
= getenv("TMPDIR");
240 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
241 fd
= mkstemp(filename
);
247 static int is_windows_drive_prefix(const char *filename
)
249 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
250 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
254 int is_windows_drive(const char *filename
)
256 if (is_windows_drive_prefix(filename
) &&
259 if (strstart(filename
, "\\\\.\\", NULL
) ||
260 strstart(filename
, "//./", NULL
))
267 * Detect host devices. By convention, /dev/cdrom[N] is always
268 * recognized as a host CDROM.
270 static BlockDriver
*find_hdev_driver(const char *filename
)
272 int score_max
= 0, score
;
273 BlockDriver
*drv
= NULL
, *d
;
275 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
276 if (d
->bdrv_probe_device
) {
277 score
= d
->bdrv_probe_device(filename
);
278 if (score
> score_max
) {
288 BlockDriver
*bdrv_find_protocol(const char *filename
)
295 /* TODO Drivers without bdrv_file_open must be specified explicitly */
298 * XXX(hch): we really should not let host device detection
299 * override an explicit protocol specification, but moving this
300 * later breaks access to device names with colons in them.
301 * Thanks to the brain-dead persistent naming schemes on udev-
302 * based Linux systems those actually are quite common.
304 drv1
= find_hdev_driver(filename
);
310 if (is_windows_drive(filename
) ||
311 is_windows_drive_prefix(filename
))
312 return bdrv_find_format("file");
315 p
= strchr(filename
, ':');
317 return bdrv_find_format("file");
320 if (len
> sizeof(protocol
) - 1)
321 len
= sizeof(protocol
) - 1;
322 memcpy(protocol
, filename
, len
);
323 protocol
[len
] = '\0';
324 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
325 if (drv1
->protocol_name
&&
326 !strcmp(drv1
->protocol_name
, protocol
)) {
333 static BlockDriver
*find_image_format(const char *filename
)
335 int ret
, score
, score_max
;
336 BlockDriver
*drv1
, *drv
;
338 BlockDriverState
*bs
;
340 ret
= bdrv_file_open(&bs
, filename
, 0);
344 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
345 if (bs
->sg
|| !bdrv_is_inserted(bs
)) {
347 return bdrv_find_format("raw");
350 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
358 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
359 if (drv1
->bdrv_probe
) {
360 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
361 if (score
> score_max
) {
371 * Set the current 'total_sectors' value
373 static int refresh_total_sectors(BlockDriverState
*bs
, int64_t hint
)
375 BlockDriver
*drv
= bs
->drv
;
377 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
381 /* query actual device if possible, otherwise just trust the hint */
382 if (drv
->bdrv_getlength
) {
383 int64_t length
= drv
->bdrv_getlength(bs
);
387 hint
= length
>> BDRV_SECTOR_BITS
;
390 bs
->total_sectors
= hint
;
395 * Common part for opening disk images and files
397 static int bdrv_open_common(BlockDriverState
*bs
, const char *filename
,
398 int flags
, BlockDriver
*drv
)
405 bs
->total_sectors
= 0;
408 bs
->open_flags
= flags
;
409 /* buffer_alignment defaulted to 512, drivers can change this value */
410 bs
->buffer_alignment
= 512;
412 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
414 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
)) {
419 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
422 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
423 * write cache to the guest. We do need the fdatasync to flush
424 * out transactions for block allocations, and we maybe have a
425 * volatile write cache in our backing device to deal with.
427 if (flags
& (BDRV_O_CACHE_WB
|BDRV_O_NOCACHE
))
428 bs
->enable_write_cache
= 1;
431 * Clear flags that are internal to the block layer before opening the
434 open_flags
= flags
& ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
437 * Snapshots should be writeable.
439 if (bs
->is_temporary
) {
440 open_flags
|= BDRV_O_RDWR
;
443 /* Open the image, either directly or using a protocol */
444 if (drv
->bdrv_file_open
) {
445 ret
= drv
->bdrv_file_open(bs
, filename
, open_flags
);
447 ret
= bdrv_file_open(&bs
->file
, filename
, open_flags
);
449 ret
= drv
->bdrv_open(bs
, open_flags
);
457 bs
->keep_read_only
= bs
->read_only
= !(open_flags
& BDRV_O_RDWR
);
459 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
465 if (bs
->is_temporary
) {
473 bdrv_delete(bs
->file
);
476 qemu_free(bs
->opaque
);
483 * Opens a file using a protocol (file, host_device, nbd, ...)
485 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
487 BlockDriverState
*bs
;
491 drv
= bdrv_find_protocol(filename
);
497 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
508 * Opens a disk image (raw, qcow2, vmdk, ...)
510 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
,
516 if (flags
& BDRV_O_SNAPSHOT
) {
517 BlockDriverState
*bs1
;
520 BlockDriver
*bdrv_qcow2
;
521 QEMUOptionParameter
*options
;
522 char tmp_filename
[PATH_MAX
];
523 char backing_filename
[PATH_MAX
];
525 /* if snapshot, we create a temporary backing file and open it
526 instead of opening 'filename' directly */
528 /* if there is a backing file, use it */
530 ret
= bdrv_open(bs1
, filename
, 0, drv
);
535 total_size
= bdrv_getlength(bs1
) & BDRV_SECTOR_MASK
;
537 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
542 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
544 /* Real path is meaningless for protocols */
546 snprintf(backing_filename
, sizeof(backing_filename
),
548 else if (!realpath(filename
, backing_filename
))
551 bdrv_qcow2
= bdrv_find_format("qcow2");
552 options
= parse_option_parameters("", bdrv_qcow2
->create_options
, NULL
);
554 set_option_parameter_int(options
, BLOCK_OPT_SIZE
, total_size
);
555 set_option_parameter(options
, BLOCK_OPT_BACKING_FILE
, backing_filename
);
557 set_option_parameter(options
, BLOCK_OPT_BACKING_FMT
,
561 ret
= bdrv_create(bdrv_qcow2
, tmp_filename
, options
);
562 free_option_parameters(options
);
567 filename
= tmp_filename
;
569 bs
->is_temporary
= 1;
572 /* Find the right image format driver */
574 drv
= find_image_format(filename
);
580 goto unlink_and_fail
;
584 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
586 goto unlink_and_fail
;
591 /* If there is a backing file, use it */
592 if ((flags
& BDRV_O_NO_BACKING
) == 0 && bs
->backing_file
[0] != '\0') {
593 char backing_filename
[PATH_MAX
];
595 BlockDriver
*back_drv
= NULL
;
597 bs
->backing_hd
= bdrv_new("");
598 path_combine(backing_filename
, sizeof(backing_filename
),
599 filename
, bs
->backing_file
);
600 if (bs
->backing_format
[0] != '\0')
601 back_drv
= bdrv_find_format(bs
->backing_format
);
603 /* backing files always opened read-only */
605 flags
& ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
607 ret
= bdrv_open(bs
->backing_hd
, backing_filename
, back_flags
, back_drv
);
612 if (bs
->is_temporary
) {
613 bs
->backing_hd
->keep_read_only
= !(flags
& BDRV_O_RDWR
);
615 /* base image inherits from "parent" */
616 bs
->backing_hd
->keep_read_only
= bs
->keep_read_only
;
620 if (!bdrv_key_required(bs
)) {
621 /* call the change callback */
622 bs
->media_changed
= 1;
624 bs
->change_cb(bs
->change_opaque
);
630 if (bs
->is_temporary
) {
636 void bdrv_close(BlockDriverState
*bs
)
639 if (bs
== bs_snapshots
) {
642 if (bs
->backing_hd
) {
643 bdrv_delete(bs
->backing_hd
);
644 bs
->backing_hd
= NULL
;
646 bs
->drv
->bdrv_close(bs
);
647 qemu_free(bs
->opaque
);
649 if (bs
->is_temporary
) {
650 unlink(bs
->filename
);
656 if (bs
->file
!= NULL
) {
657 bdrv_close(bs
->file
);
660 /* call the change callback */
661 bs
->media_changed
= 1;
663 bs
->change_cb(bs
->change_opaque
);
667 void bdrv_close_all(void)
669 BlockDriverState
*bs
;
671 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
676 void bdrv_delete(BlockDriverState
*bs
)
680 /* remove from list, if necessary */
681 if (bs
->device_name
[0] != '\0') {
682 QTAILQ_REMOVE(&bdrv_states
, bs
, list
);
686 if (bs
->file
!= NULL
) {
687 bdrv_delete(bs
->file
);
690 assert(bs
!= bs_snapshots
);
694 int bdrv_attach(BlockDriverState
*bs
, DeviceState
*qdev
)
703 void bdrv_detach(BlockDriverState
*bs
, DeviceState
*qdev
)
705 assert(bs
->peer
== qdev
);
709 DeviceState
*bdrv_get_attached(BlockDriverState
*bs
)
715 * Run consistency checks on an image
717 * Returns 0 if the check could be completed (it doesn't mean that the image is
718 * free of errors) or -errno when an internal error occured. The results of the
719 * check are stored in res.
721 int bdrv_check(BlockDriverState
*bs
, BdrvCheckResult
*res
)
723 if (bs
->drv
->bdrv_check
== NULL
) {
727 memset(res
, 0, sizeof(*res
));
728 return bs
->drv
->bdrv_check(bs
, res
);
731 /* commit COW file into the raw image */
732 int bdrv_commit(BlockDriverState
*bs
)
734 BlockDriver
*drv
= bs
->drv
;
735 int64_t i
, total_sectors
;
736 int n
, j
, ro
, open_flags
;
737 int ret
= 0, rw_ret
= 0;
738 unsigned char sector
[BDRV_SECTOR_SIZE
];
740 BlockDriverState
*bs_rw
, *bs_ro
;
745 if (!bs
->backing_hd
) {
749 if (bs
->backing_hd
->keep_read_only
) {
753 ro
= bs
->backing_hd
->read_only
;
754 strncpy(filename
, bs
->backing_hd
->filename
, sizeof(filename
));
755 open_flags
= bs
->backing_hd
->open_flags
;
759 bdrv_delete(bs
->backing_hd
);
760 bs
->backing_hd
= NULL
;
761 bs_rw
= bdrv_new("");
762 rw_ret
= bdrv_open(bs_rw
, filename
, open_flags
| BDRV_O_RDWR
, drv
);
765 /* try to re-open read-only */
766 bs_ro
= bdrv_new("");
767 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
, drv
);
770 /* drive not functional anymore */
774 bs
->backing_hd
= bs_ro
;
777 bs
->backing_hd
= bs_rw
;
780 total_sectors
= bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
;
781 for (i
= 0; i
< total_sectors
;) {
782 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
783 for(j
= 0; j
< n
; j
++) {
784 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
789 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
800 if (drv
->bdrv_make_empty
) {
801 ret
= drv
->bdrv_make_empty(bs
);
806 * Make sure all data we wrote to the backing device is actually
810 bdrv_flush(bs
->backing_hd
);
816 bdrv_delete(bs
->backing_hd
);
817 bs
->backing_hd
= NULL
;
818 bs_ro
= bdrv_new("");
819 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
, drv
);
822 /* drive not functional anymore */
826 bs
->backing_hd
= bs_ro
;
827 bs
->backing_hd
->keep_read_only
= 0;
833 void bdrv_commit_all(void)
835 BlockDriverState
*bs
;
837 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
845 * -EINVAL - backing format specified, but no file
846 * -ENOSPC - can't update the backing file because no space is left in the
848 * -ENOTSUP - format driver doesn't support changing the backing file
850 int bdrv_change_backing_file(BlockDriverState
*bs
,
851 const char *backing_file
, const char *backing_fmt
)
853 BlockDriver
*drv
= bs
->drv
;
855 if (drv
->bdrv_change_backing_file
!= NULL
) {
856 return drv
->bdrv_change_backing_file(bs
, backing_file
, backing_fmt
);
862 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
867 if (!bdrv_is_inserted(bs
))
873 len
= bdrv_getlength(bs
);
878 if ((offset
> len
) || (len
- offset
< size
))
884 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
887 return bdrv_check_byte_request(bs
, sector_num
* BDRV_SECTOR_SIZE
,
888 nb_sectors
* BDRV_SECTOR_SIZE
);
891 /* return < 0 if error. See bdrv_write() for the return codes */
892 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
893 uint8_t *buf
, int nb_sectors
)
895 BlockDriver
*drv
= bs
->drv
;
899 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
902 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
905 static void set_dirty_bitmap(BlockDriverState
*bs
, int64_t sector_num
,
906 int nb_sectors
, int dirty
)
909 unsigned long val
, idx
, bit
;
911 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
912 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
914 for (; start
<= end
; start
++) {
915 idx
= start
/ (sizeof(unsigned long) * 8);
916 bit
= start
% (sizeof(unsigned long) * 8);
917 val
= bs
->dirty_bitmap
[idx
];
919 if (!(val
& (1 << bit
))) {
924 if (val
& (1 << bit
)) {
929 bs
->dirty_bitmap
[idx
] = val
;
933 /* Return < 0 if error. Important errors are:
934 -EIO generic I/O error (may happen for all errors)
935 -ENOMEDIUM No media inserted.
936 -EINVAL Invalid sector number or nb_sectors
937 -EACCES Trying to write a read-only device
939 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
940 const uint8_t *buf
, int nb_sectors
)
942 BlockDriver
*drv
= bs
->drv
;
947 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
950 if (bs
->dirty_bitmap
) {
951 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
954 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
955 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
958 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
961 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
962 void *buf
, int count1
)
964 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
965 int len
, nb_sectors
, count
;
970 /* first read to align to sector start */
971 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
974 sector_num
= offset
>> BDRV_SECTOR_BITS
;
976 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
978 memcpy(buf
, tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), len
);
986 /* read the sectors "in place" */
987 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
988 if (nb_sectors
> 0) {
989 if ((ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
)) < 0)
991 sector_num
+= nb_sectors
;
992 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
997 /* add data from the last sector */
999 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1001 memcpy(buf
, tmp_buf
, count
);
1006 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
1007 const void *buf
, int count1
)
1009 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
1010 int len
, nb_sectors
, count
;
1015 /* first write to align to sector start */
1016 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
1019 sector_num
= offset
>> BDRV_SECTOR_BITS
;
1021 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1023 memcpy(tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), buf
, len
);
1024 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
1033 /* write the sectors "in place" */
1034 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
1035 if (nb_sectors
> 0) {
1036 if ((ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
)) < 0)
1038 sector_num
+= nb_sectors
;
1039 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
1044 /* add data from the last sector */
1046 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
1048 memcpy(tmp_buf
, buf
, count
);
1049 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
1056 * Writes to the file and ensures that no writes are reordered across this
1057 * request (acts as a barrier)
1059 * Returns 0 on success, -errno in error cases.
1061 int bdrv_pwrite_sync(BlockDriverState
*bs
, int64_t offset
,
1062 const void *buf
, int count
)
1066 ret
= bdrv_pwrite(bs
, offset
, buf
, count
);
1071 /* No flush needed for cache=writethrough, it uses O_DSYNC */
1072 if ((bs
->open_flags
& BDRV_O_CACHE_MASK
) != 0) {
1080 * Writes to the file and ensures that no writes are reordered across this
1081 * request (acts as a barrier)
1083 * Returns 0 on success, -errno in error cases.
1085 int bdrv_write_sync(BlockDriverState
*bs
, int64_t sector_num
,
1086 const uint8_t *buf
, int nb_sectors
)
1088 return bdrv_pwrite_sync(bs
, BDRV_SECTOR_SIZE
* sector_num
,
1089 buf
, BDRV_SECTOR_SIZE
* nb_sectors
);
1093 * Truncate file to 'offset' bytes (needed only for file protocols)
1095 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
1097 BlockDriver
*drv
= bs
->drv
;
1101 if (!drv
->bdrv_truncate
)
1105 ret
= drv
->bdrv_truncate(bs
, offset
);
1107 ret
= refresh_total_sectors(bs
, offset
>> BDRV_SECTOR_BITS
);
1113 * Length of a file in bytes. Return < 0 if error or unknown.
1115 int64_t bdrv_getlength(BlockDriverState
*bs
)
1117 BlockDriver
*drv
= bs
->drv
;
1121 /* Fixed size devices use the total_sectors value for speed instead of
1122 issuing a length query (like lseek) on each call. Also, legacy block
1123 drivers don't provide a bdrv_getlength function and must use
1125 if (!bs
->growable
|| !drv
->bdrv_getlength
) {
1126 return bs
->total_sectors
* BDRV_SECTOR_SIZE
;
1128 return drv
->bdrv_getlength(bs
);
1131 /* return 0 as number of sectors if no device present or error */
1132 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
1135 length
= bdrv_getlength(bs
);
1139 length
= length
>> BDRV_SECTOR_BITS
;
1140 *nb_sectors_ptr
= length
;
1144 uint8_t boot_ind
; /* 0x80 - active */
1145 uint8_t head
; /* starting head */
1146 uint8_t sector
; /* starting sector */
1147 uint8_t cyl
; /* starting cylinder */
1148 uint8_t sys_ind
; /* What partition type */
1149 uint8_t end_head
; /* end head */
1150 uint8_t end_sector
; /* end sector */
1151 uint8_t end_cyl
; /* end cylinder */
1152 uint32_t start_sect
; /* starting sector counting from 0 */
1153 uint32_t nr_sects
; /* nr of sectors in partition */
1154 } __attribute__((packed
));
1156 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1157 static int guess_disk_lchs(BlockDriverState
*bs
,
1158 int *pcylinders
, int *pheads
, int *psectors
)
1160 uint8_t buf
[BDRV_SECTOR_SIZE
];
1161 int ret
, i
, heads
, sectors
, cylinders
;
1162 struct partition
*p
;
1164 uint64_t nb_sectors
;
1166 bdrv_get_geometry(bs
, &nb_sectors
);
1168 ret
= bdrv_read(bs
, 0, buf
, 1);
1171 /* test msdos magic */
1172 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
1174 for(i
= 0; i
< 4; i
++) {
1175 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
1176 nr_sects
= le32_to_cpu(p
->nr_sects
);
1177 if (nr_sects
&& p
->end_head
) {
1178 /* We make the assumption that the partition terminates on
1179 a cylinder boundary */
1180 heads
= p
->end_head
+ 1;
1181 sectors
= p
->end_sector
& 63;
1184 cylinders
= nb_sectors
/ (heads
* sectors
);
1185 if (cylinders
< 1 || cylinders
> 16383)
1188 *psectors
= sectors
;
1189 *pcylinders
= cylinders
;
1191 printf("guessed geometry: LCHS=%d %d %d\n",
1192 cylinders
, heads
, sectors
);
1200 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
1202 int translation
, lba_detected
= 0;
1203 int cylinders
, heads
, secs
;
1204 uint64_t nb_sectors
;
1206 /* if a geometry hint is available, use it */
1207 bdrv_get_geometry(bs
, &nb_sectors
);
1208 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
1209 translation
= bdrv_get_translation_hint(bs
);
1210 if (cylinders
!= 0) {
1215 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
1217 /* if heads > 16, it means that a BIOS LBA
1218 translation was active, so the default
1219 hardware geometry is OK */
1221 goto default_geometry
;
1226 /* disable any translation to be in sync with
1227 the logical geometry */
1228 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
1229 bdrv_set_translation_hint(bs
,
1230 BIOS_ATA_TRANSLATION_NONE
);
1235 /* if no geometry, use a standard physical disk geometry */
1236 cylinders
= nb_sectors
/ (16 * 63);
1238 if (cylinders
> 16383)
1240 else if (cylinders
< 2)
1245 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
1246 if ((*pcyls
* *pheads
) <= 131072) {
1247 bdrv_set_translation_hint(bs
,
1248 BIOS_ATA_TRANSLATION_LARGE
);
1250 bdrv_set_translation_hint(bs
,
1251 BIOS_ATA_TRANSLATION_LBA
);
1255 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
1259 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
1260 int cyls
, int heads
, int secs
)
1267 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
1270 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
1271 type
== BDRV_TYPE_FLOPPY
));
1274 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
1276 bs
->translation
= translation
;
1279 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
1280 int *pcyls
, int *pheads
, int *psecs
)
1283 *pheads
= bs
->heads
;
1287 int bdrv_get_type_hint(BlockDriverState
*bs
)
1292 int bdrv_get_translation_hint(BlockDriverState
*bs
)
1294 return bs
->translation
;
1297 void bdrv_set_on_error(BlockDriverState
*bs
, BlockErrorAction on_read_error
,
1298 BlockErrorAction on_write_error
)
1300 bs
->on_read_error
= on_read_error
;
1301 bs
->on_write_error
= on_write_error
;
1304 BlockErrorAction
bdrv_get_on_error(BlockDriverState
*bs
, int is_read
)
1306 return is_read
? bs
->on_read_error
: bs
->on_write_error
;
1309 void bdrv_set_removable(BlockDriverState
*bs
, int removable
)
1311 bs
->removable
= removable
;
1312 if (removable
&& bs
== bs_snapshots
) {
1313 bs_snapshots
= NULL
;
1317 int bdrv_is_removable(BlockDriverState
*bs
)
1319 return bs
->removable
;
1322 int bdrv_is_read_only(BlockDriverState
*bs
)
1324 return bs
->read_only
;
1327 int bdrv_is_sg(BlockDriverState
*bs
)
1332 int bdrv_enable_write_cache(BlockDriverState
*bs
)
1334 return bs
->enable_write_cache
;
1337 /* XXX: no longer used */
1338 void bdrv_set_change_cb(BlockDriverState
*bs
,
1339 void (*change_cb
)(void *opaque
), void *opaque
)
1341 bs
->change_cb
= change_cb
;
1342 bs
->change_opaque
= opaque
;
1345 int bdrv_is_encrypted(BlockDriverState
*bs
)
1347 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1349 return bs
->encrypted
;
1352 int bdrv_key_required(BlockDriverState
*bs
)
1354 BlockDriverState
*backing_hd
= bs
->backing_hd
;
1356 if (backing_hd
&& backing_hd
->encrypted
&& !backing_hd
->valid_key
)
1358 return (bs
->encrypted
&& !bs
->valid_key
);
1361 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
1364 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
1365 ret
= bdrv_set_key(bs
->backing_hd
, key
);
1371 if (!bs
->encrypted
) {
1373 } else if (!bs
->drv
|| !bs
->drv
->bdrv_set_key
) {
1376 ret
= bs
->drv
->bdrv_set_key(bs
, key
);
1379 } else if (!bs
->valid_key
) {
1381 /* call the change callback now, we skipped it on open */
1382 bs
->media_changed
= 1;
1384 bs
->change_cb(bs
->change_opaque
);
1389 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
1394 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
1398 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
1403 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
1404 it(opaque
, drv
->format_name
);
1408 BlockDriverState
*bdrv_find(const char *name
)
1410 BlockDriverState
*bs
;
1412 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1413 if (!strcmp(name
, bs
->device_name
)) {
1420 BlockDriverState
*bdrv_next(BlockDriverState
*bs
)
1423 return QTAILQ_FIRST(&bdrv_states
);
1425 return QTAILQ_NEXT(bs
, list
);
1428 void bdrv_iterate(void (*it
)(void *opaque
, BlockDriverState
*bs
), void *opaque
)
1430 BlockDriverState
*bs
;
1432 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1437 const char *bdrv_get_device_name(BlockDriverState
*bs
)
1439 return bs
->device_name
;
1442 void bdrv_flush(BlockDriverState
*bs
)
1444 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
1448 if (bs
->drv
&& bs
->drv
->bdrv_flush
)
1449 bs
->drv
->bdrv_flush(bs
);
1452 void bdrv_flush_all(void)
1454 BlockDriverState
*bs
;
1456 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1457 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1458 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
))) {
1464 int bdrv_has_zero_init(BlockDriverState
*bs
)
1468 if (bs
->drv
->no_zero_init
) {
1470 } else if (bs
->file
) {
1471 return bdrv_has_zero_init(bs
->file
);
1478 * Returns true iff the specified sector is present in the disk image. Drivers
1479 * not implementing the functionality are assumed to not support backing files,
1480 * hence all their sectors are reported as allocated.
1482 * 'pnum' is set to the number of sectors (including and immediately following
1483 * the specified sector) that are known to be in the same
1484 * allocated/unallocated state.
1486 * 'nb_sectors' is the max value 'pnum' should be set to.
1488 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1492 if (!bs
->drv
->bdrv_is_allocated
) {
1493 if (sector_num
>= bs
->total_sectors
) {
1497 n
= bs
->total_sectors
- sector_num
;
1498 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1501 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1504 void bdrv_mon_event(const BlockDriverState
*bdrv
,
1505 BlockMonEventAction action
, int is_read
)
1508 const char *action_str
;
1511 case BDRV_ACTION_REPORT
:
1512 action_str
= "report";
1514 case BDRV_ACTION_IGNORE
:
1515 action_str
= "ignore";
1517 case BDRV_ACTION_STOP
:
1518 action_str
= "stop";
1524 data
= qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1527 is_read
? "read" : "write");
1528 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR
, data
);
1530 qobject_decref(data
);
1533 static void bdrv_print_dict(QObject
*obj
, void *opaque
)
1536 Monitor
*mon
= opaque
;
1538 bs_dict
= qobject_to_qdict(obj
);
1540 monitor_printf(mon
, "%s: type=%s removable=%d",
1541 qdict_get_str(bs_dict
, "device"),
1542 qdict_get_str(bs_dict
, "type"),
1543 qdict_get_bool(bs_dict
, "removable"));
1545 if (qdict_get_bool(bs_dict
, "removable")) {
1546 monitor_printf(mon
, " locked=%d", qdict_get_bool(bs_dict
, "locked"));
1549 if (qdict_haskey(bs_dict
, "inserted")) {
1550 QDict
*qdict
= qobject_to_qdict(qdict_get(bs_dict
, "inserted"));
1552 monitor_printf(mon
, " file=");
1553 monitor_print_filename(mon
, qdict_get_str(qdict
, "file"));
1554 if (qdict_haskey(qdict
, "backing_file")) {
1555 monitor_printf(mon
, " backing_file=");
1556 monitor_print_filename(mon
, qdict_get_str(qdict
, "backing_file"));
1558 monitor_printf(mon
, " ro=%d drv=%s encrypted=%d",
1559 qdict_get_bool(qdict
, "ro"),
1560 qdict_get_str(qdict
, "drv"),
1561 qdict_get_bool(qdict
, "encrypted"));
1563 monitor_printf(mon
, " [not inserted]");
1566 monitor_printf(mon
, "\n");
1569 void bdrv_info_print(Monitor
*mon
, const QObject
*data
)
1571 qlist_iter(qobject_to_qlist(data
), bdrv_print_dict
, mon
);
1574 void bdrv_info(Monitor
*mon
, QObject
**ret_data
)
1577 BlockDriverState
*bs
;
1579 bs_list
= qlist_new();
1581 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1583 const char *type
= "unknown";
1589 case BDRV_TYPE_CDROM
:
1592 case BDRV_TYPE_FLOPPY
:
1597 bs_obj
= qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1598 "'removable': %i, 'locked': %i }",
1599 bs
->device_name
, type
, bs
->removable
,
1604 QDict
*bs_dict
= qobject_to_qdict(bs_obj
);
1606 obj
= qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1607 "'encrypted': %i }",
1608 bs
->filename
, bs
->read_only
,
1609 bs
->drv
->format_name
,
1610 bdrv_is_encrypted(bs
));
1611 if (bs
->backing_file
[0] != '\0') {
1612 QDict
*qdict
= qobject_to_qdict(obj
);
1613 qdict_put(qdict
, "backing_file",
1614 qstring_from_str(bs
->backing_file
));
1617 qdict_put_obj(bs_dict
, "inserted", obj
);
1619 qlist_append_obj(bs_list
, bs_obj
);
1622 *ret_data
= QOBJECT(bs_list
);
1625 static void bdrv_stats_iter(QObject
*data
, void *opaque
)
1628 Monitor
*mon
= opaque
;
1630 qdict
= qobject_to_qdict(data
);
1631 monitor_printf(mon
, "%s:", qdict_get_str(qdict
, "device"));
1633 qdict
= qobject_to_qdict(qdict_get(qdict
, "stats"));
1634 monitor_printf(mon
, " rd_bytes=%" PRId64
1635 " wr_bytes=%" PRId64
1636 " rd_operations=%" PRId64
1637 " wr_operations=%" PRId64
1639 qdict_get_int(qdict
, "rd_bytes"),
1640 qdict_get_int(qdict
, "wr_bytes"),
1641 qdict_get_int(qdict
, "rd_operations"),
1642 qdict_get_int(qdict
, "wr_operations"));
1645 void bdrv_stats_print(Monitor
*mon
, const QObject
*data
)
1647 qlist_iter(qobject_to_qlist(data
), bdrv_stats_iter
, mon
);
1650 static QObject
* bdrv_info_stats_bs(BlockDriverState
*bs
)
1655 res
= qobject_from_jsonf("{ 'stats': {"
1656 "'rd_bytes': %" PRId64
","
1657 "'wr_bytes': %" PRId64
","
1658 "'rd_operations': %" PRId64
","
1659 "'wr_operations': %" PRId64
","
1660 "'wr_highest_offset': %" PRId64
1662 bs
->rd_bytes
, bs
->wr_bytes
,
1663 bs
->rd_ops
, bs
->wr_ops
,
1664 bs
->wr_highest_sector
*
1665 (uint64_t)BDRV_SECTOR_SIZE
);
1666 dict
= qobject_to_qdict(res
);
1668 if (*bs
->device_name
) {
1669 qdict_put(dict
, "device", qstring_from_str(bs
->device_name
));
1673 QObject
*parent
= bdrv_info_stats_bs(bs
->file
);
1674 qdict_put_obj(dict
, "parent", parent
);
1680 void bdrv_info_stats(Monitor
*mon
, QObject
**ret_data
)
1684 BlockDriverState
*bs
;
1686 devices
= qlist_new();
1688 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1689 obj
= bdrv_info_stats_bs(bs
);
1690 qlist_append_obj(devices
, obj
);
1693 *ret_data
= QOBJECT(devices
);
1696 const char *bdrv_get_encrypted_filename(BlockDriverState
*bs
)
1698 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1699 return bs
->backing_file
;
1700 else if (bs
->encrypted
)
1701 return bs
->filename
;
1706 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1707 char *filename
, int filename_size
)
1709 if (!bs
->backing_file
) {
1710 pstrcpy(filename
, filename_size
, "");
1712 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1716 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1717 const uint8_t *buf
, int nb_sectors
)
1719 BlockDriver
*drv
= bs
->drv
;
1722 if (!drv
->bdrv_write_compressed
)
1724 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1727 if (bs
->dirty_bitmap
) {
1728 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1731 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1734 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1736 BlockDriver
*drv
= bs
->drv
;
1739 if (!drv
->bdrv_get_info
)
1741 memset(bdi
, 0, sizeof(*bdi
));
1742 return drv
->bdrv_get_info(bs
, bdi
);
1745 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1746 int64_t pos
, int size
)
1748 BlockDriver
*drv
= bs
->drv
;
1751 if (drv
->bdrv_save_vmstate
)
1752 return drv
->bdrv_save_vmstate(bs
, buf
, pos
, size
);
1754 return bdrv_save_vmstate(bs
->file
, buf
, pos
, size
);
1758 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1759 int64_t pos
, int size
)
1761 BlockDriver
*drv
= bs
->drv
;
1764 if (drv
->bdrv_load_vmstate
)
1765 return drv
->bdrv_load_vmstate(bs
, buf
, pos
, size
);
1767 return bdrv_load_vmstate(bs
->file
, buf
, pos
, size
);
1771 void bdrv_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
1773 BlockDriver
*drv
= bs
->drv
;
1775 if (!drv
|| !drv
->bdrv_debug_event
) {
1779 return drv
->bdrv_debug_event(bs
, event
);
1783 /**************************************************************/
1784 /* handling of snapshots */
1786 int bdrv_can_snapshot(BlockDriverState
*bs
)
1788 BlockDriver
*drv
= bs
->drv
;
1789 if (!drv
|| bdrv_is_removable(bs
) || bdrv_is_read_only(bs
)) {
1793 if (!drv
->bdrv_snapshot_create
) {
1794 if (bs
->file
!= NULL
) {
1795 return bdrv_can_snapshot(bs
->file
);
1803 BlockDriverState
*bdrv_snapshots(void)
1805 BlockDriverState
*bs
;
1808 return bs_snapshots
;
1812 while ((bs
= bdrv_next(bs
))) {
1813 if (bdrv_can_snapshot(bs
)) {
1821 int bdrv_snapshot_create(BlockDriverState
*bs
,
1822 QEMUSnapshotInfo
*sn_info
)
1824 BlockDriver
*drv
= bs
->drv
;
1827 if (drv
->bdrv_snapshot_create
)
1828 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1830 return bdrv_snapshot_create(bs
->file
, sn_info
);
1834 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1835 const char *snapshot_id
)
1837 BlockDriver
*drv
= bs
->drv
;
1842 if (drv
->bdrv_snapshot_goto
)
1843 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1846 drv
->bdrv_close(bs
);
1847 ret
= bdrv_snapshot_goto(bs
->file
, snapshot_id
);
1848 open_ret
= drv
->bdrv_open(bs
, bs
->open_flags
);
1850 bdrv_delete(bs
->file
);
1860 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1862 BlockDriver
*drv
= bs
->drv
;
1865 if (drv
->bdrv_snapshot_delete
)
1866 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1868 return bdrv_snapshot_delete(bs
->file
, snapshot_id
);
1872 int bdrv_snapshot_list(BlockDriverState
*bs
,
1873 QEMUSnapshotInfo
**psn_info
)
1875 BlockDriver
*drv
= bs
->drv
;
1878 if (drv
->bdrv_snapshot_list
)
1879 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1881 return bdrv_snapshot_list(bs
->file
, psn_info
);
1885 #define NB_SUFFIXES 4
1887 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1889 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1894 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1897 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1898 if (size
< (10 * base
)) {
1899 snprintf(buf
, buf_size
, "%0.1f%c",
1900 (double)size
/ base
,
1903 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1904 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1905 ((size
+ (base
>> 1)) / base
),
1915 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1917 char buf1
[128], date_buf
[128], clock_buf
[128];
1927 snprintf(buf
, buf_size
,
1928 "%-10s%-20s%7s%20s%15s",
1929 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1933 ptm
= localtime(&ti
);
1934 strftime(date_buf
, sizeof(date_buf
),
1935 "%Y-%m-%d %H:%M:%S", ptm
);
1937 localtime_r(&ti
, &tm
);
1938 strftime(date_buf
, sizeof(date_buf
),
1939 "%Y-%m-%d %H:%M:%S", &tm
);
1941 secs
= sn
->vm_clock_nsec
/ 1000000000;
1942 snprintf(clock_buf
, sizeof(clock_buf
),
1943 "%02d:%02d:%02d.%03d",
1945 (int)((secs
/ 60) % 60),
1947 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1948 snprintf(buf
, buf_size
,
1949 "%-10s%-20s%7s%20s%15s",
1950 sn
->id_str
, sn
->name
,
1951 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1959 /**************************************************************/
1962 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1963 QEMUIOVector
*qiov
, int nb_sectors
,
1964 BlockDriverCompletionFunc
*cb
, void *opaque
)
1966 BlockDriver
*drv
= bs
->drv
;
1967 BlockDriverAIOCB
*ret
;
1971 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1974 ret
= drv
->bdrv_aio_readv(bs
, sector_num
, qiov
, nb_sectors
,
1978 /* Update stats even though technically transfer has not happened. */
1979 bs
->rd_bytes
+= (unsigned) nb_sectors
* BDRV_SECTOR_SIZE
;
1986 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1987 QEMUIOVector
*qiov
, int nb_sectors
,
1988 BlockDriverCompletionFunc
*cb
, void *opaque
)
1990 BlockDriver
*drv
= bs
->drv
;
1991 BlockDriverAIOCB
*ret
;
1997 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
2000 if (bs
->dirty_bitmap
) {
2001 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
2004 ret
= drv
->bdrv_aio_writev(bs
, sector_num
, qiov
, nb_sectors
,
2008 /* Update stats even though technically transfer has not happened. */
2009 bs
->wr_bytes
+= (unsigned) nb_sectors
* BDRV_SECTOR_SIZE
;
2011 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
2012 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
2020 typedef struct MultiwriteCB
{
2025 BlockDriverCompletionFunc
*cb
;
2027 QEMUIOVector
*free_qiov
;
2032 static void multiwrite_user_cb(MultiwriteCB
*mcb
)
2036 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
2037 mcb
->callbacks
[i
].cb(mcb
->callbacks
[i
].opaque
, mcb
->error
);
2038 if (mcb
->callbacks
[i
].free_qiov
) {
2039 qemu_iovec_destroy(mcb
->callbacks
[i
].free_qiov
);
2041 qemu_free(mcb
->callbacks
[i
].free_qiov
);
2042 qemu_vfree(mcb
->callbacks
[i
].free_buf
);
2046 static void multiwrite_cb(void *opaque
, int ret
)
2048 MultiwriteCB
*mcb
= opaque
;
2050 if (ret
< 0 && !mcb
->error
) {
2054 mcb
->num_requests
--;
2055 if (mcb
->num_requests
== 0) {
2056 multiwrite_user_cb(mcb
);
2061 static int multiwrite_req_compare(const void *a
, const void *b
)
2063 const BlockRequest
*req1
= a
, *req2
= b
;
2066 * Note that we can't simply subtract req2->sector from req1->sector
2067 * here as that could overflow the return value.
2069 if (req1
->sector
> req2
->sector
) {
2071 } else if (req1
->sector
< req2
->sector
) {
2079 * Takes a bunch of requests and tries to merge them. Returns the number of
2080 * requests that remain after merging.
2082 static int multiwrite_merge(BlockDriverState
*bs
, BlockRequest
*reqs
,
2083 int num_reqs
, MultiwriteCB
*mcb
)
2087 // Sort requests by start sector
2088 qsort(reqs
, num_reqs
, sizeof(*reqs
), &multiwrite_req_compare
);
2090 // Check if adjacent requests touch the same clusters. If so, combine them,
2091 // filling up gaps with zero sectors.
2093 for (i
= 1; i
< num_reqs
; i
++) {
2095 int64_t oldreq_last
= reqs
[outidx
].sector
+ reqs
[outidx
].nb_sectors
;
2097 // This handles the cases that are valid for all block drivers, namely
2098 // exactly sequential writes and overlapping writes.
2099 if (reqs
[i
].sector
<= oldreq_last
) {
2103 // The block driver may decide that it makes sense to combine requests
2104 // even if there is a gap of some sectors between them. In this case,
2105 // the gap is filled with zeros (therefore only applicable for yet
2106 // unused space in format like qcow2).
2107 if (!merge
&& bs
->drv
->bdrv_merge_requests
) {
2108 merge
= bs
->drv
->bdrv_merge_requests(bs
, &reqs
[outidx
], &reqs
[i
]);
2111 if (reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1 > IOV_MAX
) {
2117 QEMUIOVector
*qiov
= qemu_mallocz(sizeof(*qiov
));
2118 qemu_iovec_init(qiov
,
2119 reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1);
2121 // Add the first request to the merged one. If the requests are
2122 // overlapping, drop the last sectors of the first request.
2123 size
= (reqs
[i
].sector
- reqs
[outidx
].sector
) << 9;
2124 qemu_iovec_concat(qiov
, reqs
[outidx
].qiov
, size
);
2126 // We might need to add some zeros between the two requests
2127 if (reqs
[i
].sector
> oldreq_last
) {
2128 size_t zero_bytes
= (reqs
[i
].sector
- oldreq_last
) << 9;
2129 uint8_t *buf
= qemu_blockalign(bs
, zero_bytes
);
2130 memset(buf
, 0, zero_bytes
);
2131 qemu_iovec_add(qiov
, buf
, zero_bytes
);
2132 mcb
->callbacks
[i
].free_buf
= buf
;
2135 // Add the second request
2136 qemu_iovec_concat(qiov
, reqs
[i
].qiov
, reqs
[i
].qiov
->size
);
2138 reqs
[outidx
].nb_sectors
= qiov
->size
>> 9;
2139 reqs
[outidx
].qiov
= qiov
;
2141 mcb
->callbacks
[i
].free_qiov
= reqs
[outidx
].qiov
;
2144 reqs
[outidx
].sector
= reqs
[i
].sector
;
2145 reqs
[outidx
].nb_sectors
= reqs
[i
].nb_sectors
;
2146 reqs
[outidx
].qiov
= reqs
[i
].qiov
;
2154 * Submit multiple AIO write requests at once.
2156 * On success, the function returns 0 and all requests in the reqs array have
2157 * been submitted. In error case this function returns -1, and any of the
2158 * requests may or may not be submitted yet. In particular, this means that the
2159 * callback will be called for some of the requests, for others it won't. The
2160 * caller must check the error field of the BlockRequest to wait for the right
2161 * callbacks (if error != 0, no callback will be called).
2163 * The implementation may modify the contents of the reqs array, e.g. to merge
2164 * requests. However, the fields opaque and error are left unmodified as they
2165 * are used to signal failure for a single request to the caller.
2167 int bdrv_aio_multiwrite(BlockDriverState
*bs
, BlockRequest
*reqs
, int num_reqs
)
2169 BlockDriverAIOCB
*acb
;
2173 if (num_reqs
== 0) {
2177 // Create MultiwriteCB structure
2178 mcb
= qemu_mallocz(sizeof(*mcb
) + num_reqs
* sizeof(*mcb
->callbacks
));
2179 mcb
->num_requests
= 0;
2180 mcb
->num_callbacks
= num_reqs
;
2182 for (i
= 0; i
< num_reqs
; i
++) {
2183 mcb
->callbacks
[i
].cb
= reqs
[i
].cb
;
2184 mcb
->callbacks
[i
].opaque
= reqs
[i
].opaque
;
2187 // Check for mergable requests
2188 num_reqs
= multiwrite_merge(bs
, reqs
, num_reqs
, mcb
);
2191 * Run the aio requests. As soon as one request can't be submitted
2192 * successfully, fail all requests that are not yet submitted (we must
2193 * return failure for all requests anyway)
2195 * num_requests cannot be set to the right value immediately: If
2196 * bdrv_aio_writev fails for some request, num_requests would be too high
2197 * and therefore multiwrite_cb() would never recognize the multiwrite
2198 * request as completed. We also cannot use the loop variable i to set it
2199 * when the first request fails because the callback may already have been
2200 * called for previously submitted requests. Thus, num_requests must be
2201 * incremented for each request that is submitted.
2203 * The problem that callbacks may be called early also means that we need
2204 * to take care that num_requests doesn't become 0 before all requests are
2205 * submitted - multiwrite_cb() would consider the multiwrite request
2206 * completed. A dummy request that is "completed" by a manual call to
2207 * multiwrite_cb() takes care of this.
2209 mcb
->num_requests
= 1;
2211 for (i
= 0; i
< num_reqs
; i
++) {
2212 mcb
->num_requests
++;
2213 acb
= bdrv_aio_writev(bs
, reqs
[i
].sector
, reqs
[i
].qiov
,
2214 reqs
[i
].nb_sectors
, multiwrite_cb
, mcb
);
2217 // We can only fail the whole thing if no request has been
2218 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2219 // complete and report the error in the callback.
2223 multiwrite_cb(mcb
, -EIO
);
2229 /* Complete the dummy request */
2230 multiwrite_cb(mcb
, 0);
2235 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
2236 reqs
[i
].error
= -EIO
;
2242 BlockDriverAIOCB
*bdrv_aio_flush(BlockDriverState
*bs
,
2243 BlockDriverCompletionFunc
*cb
, void *opaque
)
2245 BlockDriver
*drv
= bs
->drv
;
2247 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
2248 return bdrv_aio_noop_em(bs
, cb
, opaque
);
2253 return drv
->bdrv_aio_flush(bs
, cb
, opaque
);
2256 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
2258 acb
->pool
->cancel(acb
);
2262 /**************************************************************/
2263 /* async block device emulation */
2265 typedef struct BlockDriverAIOCBSync
{
2266 BlockDriverAIOCB common
;
2269 /* vector translation state */
2273 } BlockDriverAIOCBSync
;
2275 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
2277 BlockDriverAIOCBSync
*acb
=
2278 container_of(blockacb
, BlockDriverAIOCBSync
, common
);
2279 qemu_bh_delete(acb
->bh
);
2281 qemu_aio_release(acb
);
2284 static AIOPool bdrv_em_aio_pool
= {
2285 .aiocb_size
= sizeof(BlockDriverAIOCBSync
),
2286 .cancel
= bdrv_aio_cancel_em
,
2289 static void bdrv_aio_bh_cb(void *opaque
)
2291 BlockDriverAIOCBSync
*acb
= opaque
;
2294 qemu_iovec_from_buffer(acb
->qiov
, acb
->bounce
, acb
->qiov
->size
);
2295 qemu_vfree(acb
->bounce
);
2296 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
2297 qemu_bh_delete(acb
->bh
);
2299 qemu_aio_release(acb
);
2302 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
2306 BlockDriverCompletionFunc
*cb
,
2311 BlockDriverAIOCBSync
*acb
;
2313 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2314 acb
->is_write
= is_write
;
2316 acb
->bounce
= qemu_blockalign(bs
, qiov
->size
);
2319 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2322 qemu_iovec_to_buffer(acb
->qiov
, acb
->bounce
);
2323 acb
->ret
= bdrv_write(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2325 acb
->ret
= bdrv_read(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2328 qemu_bh_schedule(acb
->bh
);
2330 return &acb
->common
;
2333 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
2334 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2335 BlockDriverCompletionFunc
*cb
, void *opaque
)
2337 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 0);
2340 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
2341 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2342 BlockDriverCompletionFunc
*cb
, void *opaque
)
2344 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 1);
2347 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
2348 BlockDriverCompletionFunc
*cb
, void *opaque
)
2350 BlockDriverAIOCBSync
*acb
;
2352 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2353 acb
->is_write
= 1; /* don't bounce in the completion hadler */
2359 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2362 qemu_bh_schedule(acb
->bh
);
2363 return &acb
->common
;
2366 static BlockDriverAIOCB
*bdrv_aio_noop_em(BlockDriverState
*bs
,
2367 BlockDriverCompletionFunc
*cb
, void *opaque
)
2369 BlockDriverAIOCBSync
*acb
;
2371 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2372 acb
->is_write
= 1; /* don't bounce in the completion handler */
2378 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2381 qemu_bh_schedule(acb
->bh
);
2382 return &acb
->common
;
2385 /**************************************************************/
2386 /* sync block device emulation */
2388 static void bdrv_rw_em_cb(void *opaque
, int ret
)
2390 *(int *)opaque
= ret
;
2393 #define NOT_DONE 0x7fffffff
2395 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
2396 uint8_t *buf
, int nb_sectors
)
2399 BlockDriverAIOCB
*acb
;
2403 async_context_push();
2405 async_ret
= NOT_DONE
;
2406 iov
.iov_base
= (void *)buf
;
2407 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2408 qemu_iovec_init_external(&qiov
, &iov
, 1);
2409 acb
= bdrv_aio_readv(bs
, sector_num
, &qiov
, nb_sectors
,
2410 bdrv_rw_em_cb
, &async_ret
);
2416 while (async_ret
== NOT_DONE
) {
2422 async_context_pop();
2426 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
2427 const uint8_t *buf
, int nb_sectors
)
2430 BlockDriverAIOCB
*acb
;
2434 async_context_push();
2436 async_ret
= NOT_DONE
;
2437 iov
.iov_base
= (void *)buf
;
2438 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2439 qemu_iovec_init_external(&qiov
, &iov
, 1);
2440 acb
= bdrv_aio_writev(bs
, sector_num
, &qiov
, nb_sectors
,
2441 bdrv_rw_em_cb
, &async_ret
);
2446 while (async_ret
== NOT_DONE
) {
2451 async_context_pop();
2455 void bdrv_init(void)
2457 module_call_init(MODULE_INIT_BLOCK
);
2460 void bdrv_init_with_whitelist(void)
2462 use_bdrv_whitelist
= 1;
2466 void *qemu_aio_get(AIOPool
*pool
, BlockDriverState
*bs
,
2467 BlockDriverCompletionFunc
*cb
, void *opaque
)
2469 BlockDriverAIOCB
*acb
;
2471 if (pool
->free_aiocb
) {
2472 acb
= pool
->free_aiocb
;
2473 pool
->free_aiocb
= acb
->next
;
2475 acb
= qemu_mallocz(pool
->aiocb_size
);
2480 acb
->opaque
= opaque
;
2484 void qemu_aio_release(void *p
)
2486 BlockDriverAIOCB
*acb
= (BlockDriverAIOCB
*)p
;
2487 AIOPool
*pool
= acb
->pool
;
2488 acb
->next
= pool
->free_aiocb
;
2489 pool
->free_aiocb
= acb
;
2492 /**************************************************************/
2493 /* removable device support */
2496 * Return TRUE if the media is present
2498 int bdrv_is_inserted(BlockDriverState
*bs
)
2500 BlockDriver
*drv
= bs
->drv
;
2504 if (!drv
->bdrv_is_inserted
)
2506 ret
= drv
->bdrv_is_inserted(bs
);
2511 * Return TRUE if the media changed since the last call to this
2512 * function. It is currently only used for floppy disks
2514 int bdrv_media_changed(BlockDriverState
*bs
)
2516 BlockDriver
*drv
= bs
->drv
;
2519 if (!drv
|| !drv
->bdrv_media_changed
)
2522 ret
= drv
->bdrv_media_changed(bs
);
2523 if (ret
== -ENOTSUP
)
2524 ret
= bs
->media_changed
;
2525 bs
->media_changed
= 0;
2530 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2532 int bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
2534 BlockDriver
*drv
= bs
->drv
;
2541 if (!drv
|| !drv
->bdrv_eject
) {
2544 ret
= drv
->bdrv_eject(bs
, eject_flag
);
2546 if (ret
== -ENOTSUP
) {
2555 int bdrv_is_locked(BlockDriverState
*bs
)
2561 * Lock or unlock the media (if it is locked, the user won't be able
2562 * to eject it manually).
2564 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
2566 BlockDriver
*drv
= bs
->drv
;
2568 bs
->locked
= locked
;
2569 if (drv
&& drv
->bdrv_set_locked
) {
2570 drv
->bdrv_set_locked(bs
, locked
);
2574 /* needed for generic scsi interface */
2576 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
2578 BlockDriver
*drv
= bs
->drv
;
2580 if (drv
&& drv
->bdrv_ioctl
)
2581 return drv
->bdrv_ioctl(bs
, req
, buf
);
2585 BlockDriverAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
2586 unsigned long int req
, void *buf
,
2587 BlockDriverCompletionFunc
*cb
, void *opaque
)
2589 BlockDriver
*drv
= bs
->drv
;
2591 if (drv
&& drv
->bdrv_aio_ioctl
)
2592 return drv
->bdrv_aio_ioctl(bs
, req
, buf
, cb
, opaque
);
2598 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
2600 return qemu_memalign((bs
&& bs
->buffer_alignment
) ? bs
->buffer_alignment
: 512, size
);
2603 void bdrv_set_dirty_tracking(BlockDriverState
*bs
, int enable
)
2605 int64_t bitmap_size
;
2607 bs
->dirty_count
= 0;
2609 if (!bs
->dirty_bitmap
) {
2610 bitmap_size
= (bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
) +
2611 BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
2612 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
2614 bs
->dirty_bitmap
= qemu_mallocz(bitmap_size
);
2617 if (bs
->dirty_bitmap
) {
2618 qemu_free(bs
->dirty_bitmap
);
2619 bs
->dirty_bitmap
= NULL
;
2624 int bdrv_get_dirty(BlockDriverState
*bs
, int64_t sector
)
2626 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
2628 if (bs
->dirty_bitmap
&&
2629 (sector
<< BDRV_SECTOR_BITS
) < bdrv_getlength(bs
)) {
2630 return bs
->dirty_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
2631 (1 << (chunk
% (sizeof(unsigned long) * 8)));
2637 void bdrv_reset_dirty(BlockDriverState
*bs
, int64_t cur_sector
,
2640 set_dirty_bitmap(bs
, cur_sector
, nr_sectors
, 0);
2643 int64_t bdrv_get_dirty_count(BlockDriverState
*bs
)
2645 return bs
->dirty_count
;